@import url("../fonts/font.css");
html,
body {
	min-height: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

body {
	font-family: Libre Franklin, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: normal;
	color: #051c39;
	position: relative;
	z-index: 1;
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(top, rgba(240, 245, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-gradient(
		left top,
		left bottom,
		color-stop(0%, rgba(240, 245, 248, 1)),
		color-stop(15%, rgba(246, 246, 246, 1)),
		color-stop(100%, rgba(255, 255, 255, 1))
	);
	background: -webkit-linear-gradient(top, rgba(240, 245, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
	background: -o-linear-gradient(top, rgba(240, 245, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
	background: -ms-linear-gradient(top, rgba(240, 245, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to bottom, rgba(240, 245, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f5f8', endColorstr='#ffffff', GradientType=0 );
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	font-family: "Montserrat", sans-serif;
	margin: 0;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #02aff1;
	font-size: 16px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

button,
input,
textarea,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
	outline-width: 0 !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

img {
	display: inline-block;
	max-width: 100%;
}

i,
span,
a {
	display: inline-block;
}

ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

table,
th,
tr,
td {
	border: 1px solid #191919;
}

th,
tr,
td {
	padding: 10px;
}

hr {
	border-top: 1px solid #eee;
}

.text-white {
	color: #fff;
}

/*Section Padding CSS*/

.section-padding {
	padding: 30px 0;
}
.btn {
	font-family: "Montserrat", sans-serif;
}
.btn-primary {
	background-color: #02aff1;
	border-color: #02aff1;
}
.btn-secondary {
	background-color: #4d4d4f;
	border-color: #4d4d4f;
}
.main-btn {
	display: inline-block;
	background: #02aff1;
	border: 1px solid #02aff1;
	color: #fff;
	font-size: 14px;
	line-height: 100%;
	font-weight: 400;
	text-transform: uppercase;
	padding: 12px 24px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
}

.main-btn.btn-2 {
	background: transparent;
}
.main-btn.btn-border {
	background: #fff;
	border-color: #02aff1;
	color: #02aff1;
}
.main-btn.btn-black {
	background: #000;
	border-color: #000;
}
.main-btn:hover,
.main-btn.btn-black:hover,
.btn-primary:hover {
	background-color: #fff;
	color: #02aff1;
	border-color: #02aff1;
}
.main-btn.btn-border:hover {
	background-color: #02aff1;
	color: #fff;
}

/* Bacground Color & Overlay CSS 
============== */

.sky-bg {
	background: #ecf0f9;
}

.gray-bg {
	background: #f8f8f8;
}

.white-bg {
	background: #fff;
}

.dark-bg {
	background: #050c1d;
}

.bg-cover {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100%;
}

.overlay {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #00000066;
	top: 0;
	left: 0;
	z-index: -1;
}
/* Sticky CSS 
============== */

.header-area.fixed-header {
	background: #f0f5f7;
	box-shadow: 0 3px 16px -2px #d0cece;
	-webkit-animation: fadeInDown 0.6s forwards;
	animation: fadeInDown 0.6s forwards;
	margin-top: 0;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}
/* Header Area 
============== */

.header-area {
	height: 65px;
	background-color: #f0f5f7;
	width: 100%;
	position: fixed;
	z-index: 10;padding: 10px 0;
}

.header-area .logo {
	text-align: center;
}

.header-area .logo img {
	max-width: 120px;
}

.header-area .main-menu li.nav-item:hover > a {
	color: #02aff1;
}

.header-area .header-btn.main-btn {
	padding: 14px 30px;
}

.header-area.absolute-header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
	padding: 20px 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.header-right-content img {
	max-height: 28px;
}
.header-right-content {
	text-align: right;
}
/* Main Menu 
============== */

.main-menu .navbar {
	padding: 0;
}

.main-menu li.nav-item {
	position: relative;
	margin-right: 30px;
}

.main-menu li.nav-item:last-child {
	margin-right: 0;
}

.main-menu .navbar-nav .nav-link {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	display: block;
	padding: 20px 0;
	font-family: "Montserrat", sans-serif;
}

.main-menu .navbar-nav .nav-link.active {
	color: #02aff1;
}

.main-menu li.nav-item:hover > a {
	color: #02aff1;
}

/*Dropdown Menu */

.sub-menu {
	position: absolute;
	left: 0;
	top: 90px;
	width: 180px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 600ms ease;
	transition: all 600ms ease;
	z-index: 99;
	-webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}
.sub-menu::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 4px;
	top: 0;
	left: 0;
	background: #70c150;
	visibility: hidden;
	opacity: 0;
}

.main-menu li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 90px;
}

.main-menu li:hover .sub-menu::after {
	opacity: 1;
	visibility: visible;
}

.main-menu ul.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-menu .sub-menu li {
	display: block;
	border-bottom: 1px solid #eee;
}

.main-menu .sub-menu li a {
	font-size: 15px;
	font-weight: 400;
	display: block;
	padding: 12px;
	color: #191919;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.main-menu .sub-menu li:hover > a {
	color: #70c150;
}

.dropdown-toggle::after {
	display: none !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
	display: none;
}

/* Slider CSS 
==================*/

.single-slide-item {
	background-size: cover;
	background-position: center bottom;
	background-color: #ddd;
	color: #fff;
	width: 100%;
	height: 890px;
	position: relative;
	z-index: 1;
}

.single-slide-item h1 {
	color: #fff;
	font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 15px;
	max-width: 840px;
}

.homepage-slides .section-title h6 {
	color: #fff;
}

.single-slide-item p {
	color: #ccc7c7;
	font-size: 18px;
	line-height: 30px;
}

.hero-area-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	padding: 50px 0 100px;
}
.tvTextDetails {
	padding: 20px 0;
}
.tvTextDetails h3 {
	margin-bottom: 15px;
	font-size: 22px;
	color: #02aff1;
	font-weight: 500;
}
.tvTextDetails p {
	color: #909090;
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 22px;
}
.pTxt p {
	text-align: center;
	line-height: 1.7;
	letter-spacing: 0.5px;
	margin: 0;
}
.innerPage {
	padding-top: 60px;
}
.badge-theam {
	background-color: #02aff1 !important;
	color: #fff !important;
	font-weight: 400;
	margin-right: 5px;
	font-size: 10px;
	line-height: 1.6;
	letter-spacing: 0.7px;
	margin-bottom: 5px;
	padding: 0.25em 0.8em;
	border-radius: 3px;
	box-shadow: none;
	font-family: "Montserrat", sans-serif;
}
.tvDetails h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.tvDetails p {
	color: #909090;
	font-size: 14px;
	margin-bottom: 10px;
}
.videoBox {
	margin-bottom: 20px;
}
.videoBox video {
	width: 100%;
	height: 100%;
}
.lvListing {
	background-color: #fff;
	margin-bottom: 10px;
	border-radius: 5px;
	padding: 0.5rem;
	display: flex;
	flex-wrap: wrap;
}
.lvVideo {
	width: 190px;
	overflow: hidden;
	border-radius: 5px;
	position: relative;
}
.lvVideo img {
	border-radius: 5px;
}
.lvDetails {
	width: calc(100% - 190px);
	padding-left: 15px;
}
.lvDetails h3 {
	margin-top: 5px;
	font-size: 15px;
	margin-bottom: 5px;
}
.lvDetails p {
	color: #909090;
	font-size: 14px;
	margin-bottom: 10px;
	overflow: hidden;
	max-height: 40px;
}
.lvDetails .btn {
	font-size: 11px;
	padding: 7px 15px;
}
.tabRightbox {
	background: #fff;
	padding: 13px 10px 10px;
	border-radius: 20px;
	box-shadow: 0 7px 5px -7px #d8d8d8;
	height: calc(100vh - 200px);
	min-height: 400px;
}
.tabRightbox .nav-tabs {
	margin-bottom: 10px;
	border: 0;
}
.tabRightbox .nav-tabs .nav-link {
	border: 0;
	border-radius: 20px;
	background-color: #f5f5f5;
	font-weight: 600;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	color: #051c39;
}
.tabRightbox .nav-tabs .nav-item {
	padding: 0 5px;
}
.tabRightbox .nav-tabs .nav-link.active {
	background: #02aff1;
	color: #fff;
}
.videoTextTab {
	width: 100%;
	overflow-x: hidden;
	padding: 0;
	max-height: 100%;
	overflow-y: auto;
	font-size: 13px;
}
.videoTextTab ul li {
	display: flex;
	flex-flow: row;
	align-items: center;
	padding: 2px;
	border-bottom: 1px solid #f5f5f5;
}
.videoTextTab ul li.liHead {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	border-bottom: 1px solid #ddd;
	padding: 5px;
	background: #fff;
	font-weight: 500;
	color: #888;
}
.videoTextTab ul li > span {
	width: 50%;
	text-transform: capitalize;
}
.timeRow {
	padding: 4px 0;
}
.vidTimeEnd,
.vidTimeStart {
	width: 40%;
}
.vidTimePlay a {
	font-size: 24px;
}
.videoLabelsTabList {
	display: flex;
	flex-direction: column;
	padding: 6px 10px;
}
.vtbStatus {
	display: flex;
	justify-content: space-between;
	padding-bottom: 4px;
}
.vtbText {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	font-weight: 500;
}
.progress,
.progress-bar {
	height: 0.5rem !important;
}
.progress-bar {
	background: #02aff1 !important;
	background: linear-gradient(90deg, #c8daf1 0, #02aff1) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dfd7f3",endColorstr="#5b37bf",GradientType=1) !important;
	border-radius: 0 5px 5px 0;
}
.liveadTabsRight .tab-content {
	padding: 20px;
	background-color: #ececec;
}
.liveadTabs .nav-tabs {
	border: 0;
	background-color: #ececec;
}
.liveadTabsRight .nav-item {
	width: 50%;
	text-align: center;
}
.liveadTabs .nav-link {
	border-radius: 0;
	color: #191919;
	font-weight: 500;
	font-family: "Montserrat", sans-serif;
	padding: 14px 15px;
}
.liveadTabs .nav-link.active {
	background-color: #02aff1;
	color: #fff;
}
.liveadTabsleft .nav-link {
	padding: 14px 30px;
}
.liveadTabsleft .tab-content {
	padding: 20px 0;
}
.buttonbox {
	padding: 0 20px 20px;
	background-color: #ececec;
}
.buttonbox .btn {
	width: 48%;
	border-radius: 30px;
}
.adimgbox {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 355px;
	overflow: hidden;
}
.adimgbox {
	max-height: 100%;
}
