/* =========================================================
COMPONENTS.CSS
Shared Components & Animations
========================================================= */


/* ---------- hero : edge to edge, larger than life ---------- */

.hero-inner, .chero-inner, .ahero-grid {
	position: relative;
	z-index: 5;
	width: 98%;
	/* max-width: 1280px; */
	max-width: 100%;
	margin: 0 auto;
	padding: 120px 40px 80px
}

/* ---------- End hero : edge to edge, larger than life ---------- */


/* =========================
BUTTONS
========================= */

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .55em;

	font-family: var(--body);
	font-weight: 600;
	font-size: .95rem;

	cursor: pointer;
	border: none;

	padding: 15px 28px;
	border-radius: 100px;

	overflow: hidden;
	white-space: nowrap;

	transition:
		transform .35s cubic-bezier(.34, 1.56, .64, 1),
		box-shadow .35s,
		background .3s;
}

.btn .ico {
	transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.btn:hover {
	transform: translateY(-3px) scale(1.02);
}

.btn:active {
	transform: translateY(-1px) scale(.99);
}

.btn:hover .ico {
	transform: translateX(4px);
}

.btn-primary {
	background: var(--coral);
	color: #fff;
	box-shadow: 0 14px 30px -12px rgba(255, 107, 94, .8);
}

.btn-primary::after {
	content: "";
	position: absolute;
	inset: 0;

	background:
		linear-gradient(120deg,
			transparent 30%,
			rgba(255, 255, 255, .45),
			transparent 70%);

	transform: translateX(-120%);
	transition: transform .7s;
}

.btn-primary:hover::after {
	transform: translateX(120%);
}

.btn-light {
	background: #fff;
	color: var(--teal-700);
	box-shadow: var(--shadow-sm);
}

.btn-light:hover {
	background: var(--cyan-50);
}

body .btn-teal {
	background: var(--teal-700);
	color: #fff;
	box-shadow: 0 14px 30px -14px rgba(10, 108, 116, .9);
}

.btn-ghost {
	background: transparent;
	border: 1.5px solid var(--line);
	color: var(--teal-700);
}

.btn-ghost:hover {
	border-color: var(--teal-500);
	background: #fff;
}

/* =========================
HEADER
========================= */

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	transition: all .4s;
	display: flex;
	justify-content: center;
}

.nav {
	margin: 14px auto;
	max-width: 1200px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;

	padding: 10px 14px 10px 22px;

	border-radius: 100px;

	background: rgba(255, 255, 255, .72);
	backdrop-filter: blur(16px);

	border: 1px solid rgba(255, 255, 255, .6);

	box-shadow: var(--shadow-sm);

	transition: all .4s;
}

header.scrolled .nav {
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--shadow-md);
	margin-top: 8px;
}


.nav{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:0;
}

.main-menu{
	display:flex;
	align-items:center;
	gap:35px;
	list-style:none;
	margin:0;
	padding:0;
	flex:1;
	justify-content:center;
}

.main-menu>li{
	position:relative;
}

.main-menu>li>a{
	display:flex;
	align-items:center;
	gap:6px;
	text-decoration:none;
	color:#123f5a;
	font-size:18px;
	font-weight:500;
	padding:15px 0;
}

.main-menu li{
	list-style:none;
}

.main-menu .sub-menu{
	position:absolute;
	top:100%;
	left:0;
	min-width:240px;

	background:#fff;
	border-radius:16px;
	padding:15px 0;

	opacity:0;
	visibility:hidden;
	transform:translateY(15px);

	transition:.3s;
	box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.main-menu li:hover>.sub-menu{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

.main-menu .sub-menu li{
	width:100%;
}

.main-menu .sub-menu a{
	display:block;
	padding:12px 24px;
	color:#123f5a;
	text-decoration:none;
}

.main-menu .sub-menu a:hover{
	background:#F4F7FA;
}

.menu-item-has-children>a::after{
	content:"";
	width:8px;
	height:8px;
	border-right:2px solid currentColor;
	border-bottom:2px solid currentColor;
	transform:rotate(45deg);
	margin-top:-3px;
}

/* =========================
NAVBAR LOGO
========================= */

.navbar-logo,
.custom-logo-link {
	width: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateX(-15px) scale(.9);
	transition: all .45s cubic-bezier(.22, 1, .36, 1);
}

.navbar-logo.show,
.custom-logo-link.show {
	width: 60px;
	opacity: 1;
	transform: translateX(0) scale(1);
}

.navbar-logo img,
.custom-logo-link img {
	width: 50px;
	display: block;
}

/* =========================
LOGO
========================= */

.logo {
	display: flex;
	align-items: center;
	gap: 10px;

	font-family: var(--display);
	font-weight: 800;
	font-size: 1.25rem;

	color: var(--teal-700);

	letter-spacing: -.03em;
}

.logo .mark {
	width: 34px;
	height: 34px;

	border-radius: 11px;

	background:
		linear-gradient(135deg,
			var(--teal-500),
			var(--teal-700));

	position: relative;
	flex: none;

	box-shadow:
		0 6px 14px -6px rgba(10, 108, 116, .7);
}

.logo .mark::before,
.logo .mark::after {
	content: "";
	position: absolute;
	background: #fff;
	border-radius: 2px;
}

.logo .mark::before {
	width: 4px;
	height: 16px;
	top: 9px;
	left: 15px;
}

.logo .mark::after {
	width: 16px;
	height: 4px;
	top: 15px;
	left: 9px;
}

.logo b {
	color: var(--coral);
}

/* =========================
NAV LINKS
========================= */

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 80%;
}

ul#menu-primary-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap:6px;
}

.nav-links {
	display: flex;
	gap: 6px;
	margin-left: 0;
}

.nav-links a {
	font-weight: 500;
	font-size: .92rem;

	color: var(--teal-700);

	padding: 8px 14px;
	border-radius: 100px;

	position: relative;

	transition: all .25s;
}

.nav-links a:hover,
.current-menu-item a {
	color: var(--teal-700);
	background: #cff6f8 !important;
}

.sub-menu .current-menu-item a {
	border-radius: 0;
}

.nav-cta {
	margin-left: auto;
}

/* =========================
BURGER
========================= */

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;

	background: none;
	border: none;

	cursor: pointer;
	padding: 8px;
}

.burger span {
	width: 24px;
	height: 2px;

	/* background: var(--teal-700); */
	background: #d746f2;

	border-radius: 2px;
	transition: .3s;
}





/* =========================
MOBILE NAV
========================= */

@media (max-width: 992px) {

	.burger {
		display: flex;
		margin-left: auto;
		z-index: 1001;
	}

	/* .nav-cta {
	display: none;
} */

	.nav {
		background: transparent;
		border: none;
		backdrop-filter: blur(0);
		box-shadow: none;
	}

	header.scrolled .nav {
		background: transparent;
		border: none;
		backdrop-filter: blur(16px);
		width: 90%;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		left: 20px;
		right: 20px;

		flex-direction: column;
		gap: 8px;

		padding: 20px;

		background: transparent;
		backdrop-filter: blur(20px);

		border-radius: 24px;

		border: 0px solid rgba(255, 255, 255, .7);

		box-shadow: var(--shadow-lg);

		opacity: 0;
		visibility: hidden;

		transform: translateY(-20px);

		transition: all .35s cubic-bezier(.22, 1, .36, 1);

		z-index: 1000;
	}

	ul#menu-primary-menu {
		flex-direction: column;
	}

	li.menu-item {
		display: inline-block;	
		width: 100%;
	}

	.nav-links a {
		width: 100%;
		border-radius: 14px;
		font-size: 1rem;			
		padding: 14px 18px;
		display: inline-block;	
	}

	.nav-links.active{
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		display: flex;
		background: rgba(255, 255, 255, .92);
	}


	ul#menu-primary-menu .current_page_item {
		background: var(--cyan-50);
	}


	.nav-links a:hover {
		background: var(--cyan-50);
	}

	/* Burger Animation */

	.burger.active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.burger.active span:nth-child(2) {
		opacity: 0;
	}

	.burger.active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
	
}


/* Main Menu */
.main-navigation .menu{
	display:flex;
	align-items:center;
	list-style:none;
	margin:0;
	padding:0;
}

.main-navigation .menu > li{
	position:relative;
	list-style:none;
}

.main-navigation .menu > li > a{
	display:flex;
	align-items:center;
	gap:6px;
	padding:10px 15px;
	color:#053B41;
	text-decoration:none;
	font-weight:600;
}

/* Arrow */
.menu-item-has-children > a::after{
	content:"";
	width:7px;
	height:7px;
	border-right:2px solid currentColor;
	border-bottom:2px solid currentColor;
	transform:rotate(45deg);
	margin-top:-3px;
}

/* Dropdown */
.sub-menu{
	position:absolute;
	top:100%;
	left:0;

	min-width:240px;
	padding:12px 0;
	margin:0;

	background:#fff;
	border-radius:15px;
	box-shadow:0 15px 40px rgba(0,0,0,.12);

	list-style:none;

	opacity:0;
	visibility:hidden;
	transform:translateY(12px);

	transition:.3s ease;
	z-index:999;
}

.menu-item-has-children:hover > .sub-menu{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}

.sub-menu li{
	width:100%;
}

.sub-menu a{
	display:block;
	padding:12px 22px;
	color:#053B41;
	text-decoration:none;
}

.sub-menu a:hover{
	background:#F5F8F9;    
	border-radius: 0;
}


@media(max-width:991px){

	.main-navigation{
		display:none;
		width:100%;
	}

	.main-navigation.active{
		display:block;        
		height: 500px;
        overflow-y: scroll;
        z-index: 1;
	}

	.main-navigation .menu{
		display:block;
	}

	.sub-menu{
		display:none;
		position:static;
		opacity:1;
		visibility:visible;
		transform:none;
		box-shadow:none;
		border-radius:0;
		background:#f8f8f8;
		padding-left:15px;
	}

	.menu-item-has-children.open > .sub-menu{
		display:block;
	}

}


















/* =========================
TOUCH BAR
========================= */

.touch-bar {
	position: relative;
	z-index: 5;
	margin-top: 54px;
}

.touch-inner {
	background: var(--teal-900);

	border-radius: var(--r-md);

	padding: 20px 32px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	color: #fff;

	box-shadow: var(--shadow-md);

	position: relative;
	overflow: hidden;
}

.touch-inner::before {
	content: "";
	position: absolute;
	inset: 0;

	background:
		repeating-linear-gradient(45deg,
			rgba(255, 255, 255, .04) 0 14px,
			transparent 14px 28px);
}

.touch-inner h3 {
	font-size: 1.4rem;
	position: relative;
}

.touch-inner .stripes {
	display: flex;
	gap: 6px;
	position: relative;
}

.touch-inner .stripes i {
	width: 34px;
	height: 6px;
	border-radius: 6px;
	display: block;
}

/* =========================
ARROW BUTTON
========================= */

.arrow-btn {
	width: 52px;
	height: 52px;

	border-radius: 50%;

	background: var(--coral);

	display: grid;
	place-items: center;

	color: #fff;
	font-size: 1.3rem;

	flex: none;

	position: relative;

	transition:
		transform .4s cubic-bezier(.34, 1.56, .64, 1);
}

.arrow-btn:hover {
	transform: translateX(6px) scale(1.08);
}

/* =========================
ECOSYSTEM
========================= */

.eco {
	background: var(--teal-900);
	color: #fff;
	overflow: hidden;
}

.eco .sec-head h2 {
	color: #fff;
}

.eco .sec-head p {
	color: rgba(255, 255, 255, .7);
}

.eco .eyebrow {
	color: var(--teal-400);
}

.eco .eyebrow::before {
	background: var(--coral);
}

.eco-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.ecard {
	position: relative;
	overflow: hidden;

	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);

	border-radius: var(--r-md);

	padding: 30px 26px;

	transition:
		all .4s cubic-bezier(.22, 1, .36, 1);
}

.ecard::after {
	content: "";

	position: absolute;
	top: 0;
	left: 0;
	right: 0;

	height: 3px;

	background:
		var(--accent, var(--teal-400));

	transform: scaleX(0);
	transform-origin: left;

	transition: .45s;
}

.ecard:hover {
	background: rgba(255, 255, 255, .09);
	transform: translateY(-6px);
}

.ecard:hover::after {
	transform: scaleX(1);
}

.ecard .eico {
	width: 54px;
	height: 54px;

	border-radius: 15px;

	display: grid;
	place-items: center;

	font-size: 1.4rem;

	margin-bottom: 18px;

	background:
		var(--accent, var(--teal-500));

	color: #053b41;
}

.ecard h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.ecard p {
	font-size: .9rem;
	color: rgba(255, 255, 255, .72);
}

/* =========================
TABS
========================= */

.tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	gap: 10px;
	margin-bottom: 40px;
}

.tab {
	font-family: var(--body);
	font-weight: 600;
	font-size: .9rem;

	padding: 11px 20px;

	border-radius: 100px;

	border: 1.5px solid var(--line);

	background: #fff;
	color: var(--ink-soft);

	cursor: pointer;

	transition: all .3s;
}

.tab:hover {
	border-color: var(--teal-400);
	color: var(--teal-700);
}

.tab.active {
	background: var(--teal-700);
	border-color: var(--teal-700);

	color: #fff;

	box-shadow:
		0 12px 26px -12px rgba(10, 108, 116, .8);
}



/* =========================
NAVBAR LOGO
========================= */

.navbar-logo {
	width: 0;
	opacity: 0;

	overflow: hidden;

	transform: translateX(-15px) scale(.9);

	transition:
		all .45s cubic-bezier(.22, 1, .36, 1);
}

.navbar-logo.show {
	width: 60px;
	opacity: 1;
	transform: translateX(0) scale(1);
	margin-right: 2rem;
}

.navbar-logo img {
	width: 50px;
	display: block;
}


/* =========================
ANIMATIONS
========================= */

@keyframes heroZoom {
	0% {
		opacity: 0;
		transform: scale(1.18);
	}

	100% {
		opacity: 1;
		transform: scale(1.04);
	}
}

@keyframes curtain {
	0% {
		transform: scaleY(1);
	}

	100% {
		transform: scaleY(0);
	}
}

@keyframes lineUp {
	to {
		transform: translateY(0);
	}
}

@keyframes underline {
	to {
		transform: scaleX(1);
	}
}

@keyframes cardIn {
	0% {
		opacity: 0;
		transform: translateY(24px) scale(.9);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes bob {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

@keyframes cue {

	0%,
	100% {
		transform: scaleY(.4);
		opacity: .4;
	}

	50% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.hero-inner {
	position: relative;
	z-index: 5;
	width: 98%;
	/* max-width: 1280px; */
	max-width: 100%;
	margin: 0 auto;
	padding: 120px 40px 80px
}

@media (min-width: 1600px) {
	.hero-banner-logo {
		width: 150px;
	}
}

.hero-banner-logo {
	width: 120px;
}



/*=========================
Login Popup
==========================*/

.loginPopup {
	position: fixed;
	inset: 0;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	background: rgba(0, 0, 0, .77);
}

.loginPopup.show {
	display: flex;
}

.customModal {
	max-width: 560px;
	width: calc(100% - 30px);
}

.modal-content {
	position: relative;
	background: #FBF7EF;
	border: none;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 35px 70px rgba(0, 0, 0, .18);
}

.modal-content:before {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	right: -80px;
	top: -80px;
	border-radius: 50%;
	background: #D6F2F5;
}

.modal-content:after {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	left: -70px;
	bottom: -70px;
	border-radius: 50%;
	background: #FFE8A6;
}

.login-modal {
	position: relative;
	z-index: 2;
	padding: 50px;
}


.login-modal h2 {
	font-family: 'Bricolage Grotesque', sans-serif;
	font-size: 38px;
	line-height: 1.15;
	color: #053B41;
	margin-bottom: 14px;
}

.login-modal p {
	color: #5D6D73;
	margin-bottom: 30px;
	line-height: 1.7;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 700;
	color: #053B41;
	margin-bottom: 8px;
}

.form-group input {
	width: 100%;
	height: 58px;
	border-radius: 16px;
	border: 1px solid #D9E3E4;
	background: #fff;
	padding: 0 20px;
	font-size: 16px;
}

.form-group input:focus {
	outline: none;
	border-color: #0C6972;
	box-shadow: 0 0 0 4px rgba(12, 105, 114, .12);
}

.apollo-btn {
	width: 100%;
	height: 58px;
	border: none;
	border-radius: 100px;
	background: #FF6B5E;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s;
}

.apollo-btn:hover {
	background: #F25546;
	transform: translateY(-2px);
}

.close {
	position: absolute;
	right: 18px;
	top: 18px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
	font-size: 28px;
	color: #053B41;
	cursor: pointer;
	z-index: 10;
}

.close:hover {
	background: #FF6B5E;
	color: #fff;
}

@media(max-width:767px) {

	.login-modal {
		padding: 30px 24px;
	}

	.login-modal h2 {
		font-size: 28px;
		width: 86%;
	}
}



/* ----- Bottom CTA Section  ---- */
.kih-card p {
	margin-bottom: 30px !important;
}






.burger{
	display:none;
	flex-direction:column;
	gap:5px;
	cursor:pointer;
	background:none;
	border:none;
}

.burger span{
	width:24px;
	height:2px;
	background:#123f5a;
	transition:.3s;
}

.burger.active span:nth-child(1){
	transform:translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2){
	opacity:0;
}

.burger.active span:nth-child(3){
	transform:translateY(-7px) rotate(-45deg);
}


.sec-pad.watch .player iframe {
    width: 100%;
    height: 100%;
}

.sec-pad.watch .player::before {
	z-index: -1;
}


a.footer-social-icons svg {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}


