/* Frontend styles for Coming Soon Cover Block */

.cscb-cover {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0;
	background: #11163b;
	isolation: isolate;
	--cscb-horizontal-pad: 56px;
	--cscb-contact-badge-size: 112px;
	--cscb-contact-gap: 34px;
}

.cscb-cover .wp-block-cover__background.has-background-dim {
	position: absolute;
	inset: 0;
	background: linear-gradient(var(--cscb-gradient-direction, to bottom), rgba(12, 17, 83, var(--cscb-gradient-start-opacity, 1)) 0%, rgba(12, 17, 83, 0.28) 55%, rgba(12, 17, 83, 0.08) 100%);
	z-index: 1;
	opacity: 1;
}

.cscb-cover.has-overlay-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--cscb-overlay-image);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.4;
	z-index: 2;
	pointer-events: none;
}

.cscb-cover .wp-block-cover__image-background,
.cscb-cover .wp-block-cover__video-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.cscb-cover .wp-block-cover__image-background {
	transition: opacity 0.28s ease;
}

.cscb-cover.is-gallery-fade .wp-block-cover__image-background:not(.is-active) {
	opacity: 0.2;
}

.cscb-right-graphic {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(42vw, 650px);
	z-index: 2;
	pointer-events: none;
	overflow: visible;
}

.cscb-right-graphic img {
	position: absolute;
	left: 100%;
	bottom: -12%;
	height: 110%;
	width: auto;
	max-width: none;
	opacity: 0.43;
	object-fit: contain;

	/* change this to the point inside the image you want pinned */
	--anchor-x: 48%;

	transform: translateX(calc(-1 * var(--anchor-x)));
}

.cscb-cover .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 120px var(--cscb-horizontal-pad) 140px;
}

.cscb-cover.has-contact-bar .wp-block-cover__inner-container {
	padding-bottom: 250px;
	padding-left: 90px;
	padding-right: 90px
}

.cscb-breadcrumb {
	font-size: 16px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 22px;
}

.cscb-breadcrumb a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.cscb-breadcrumb a:hover {
	text-decoration: underline;
}

.cscb-heading {
	max-width: 900px;
	color: #fff;
	font-weight: 300;
	line-height: 0.98;
	font-size: clamp(70px, 8vw, 142px);
	letter-spacing: -0.03em;
	margin: 0 0 34px;
	text-wrap: balance;
}

.cscb-buttons {
	margin: 0;
}

.cscb-button .wp-block-button__link {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.82);
	color: #fff;
	border-radius: 999px;
	padding: 14px 34px;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
}

.cscb-button .wp-block-button__link:hover {
	border-color: #fff;
}

.cscb-contact-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10%;
	z-index: 5;
}

.cscb-contact-bar__inner {
	position: relative;
	width: 100%;
	min-height: 74px;
	display: flex;
	align-items: center;
	padding-left: 90px !important;
	padding: 0 var(--cscb-horizontal-pad);
}

.cscb-contact-bar__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--cscb-contact-bar-color, #4cc6c1) 0%,
		var(--cscb-contact-bar-rgba, rgba(68, 183, 179, 0.86)) 38%,
		var(--cscb-contact-bar-soft, rgba(48, 133, 148, 0.64)) 72%,
		rgba(15, 36, 67, 0.34) 100%
	);
	box-shadow: 0 10px 28px rgba(8, 18, 65, 0.18);
	backdrop-filter: blur(1.5px);
}

.cscb-contact-bar__inner::after {
	content: "";
	position: absolute;
	left: calc(var(--cscb-horizontal-pad) - 58px);
	top: -34px;
	width: 285px;
	height: 155px;
	background: radial-gradient(circle at 42% 56%, rgba(74, 223, 255, 0.46) 0%, rgba(74, 223, 255, 0.16) 34%, rgba(74, 223, 255, 0) 70%);
	pointer-events: none;
	font-family: var(--global-font-headers) !important;
}

.cscb-contact-bar__badge {
	position: relative;
	z-index: 2;
	width: var(--cscb-contact-badge-size);
	height: var(--cscb-contact-badge-size);
	flex: 0 0 var(--cscb-contact-badge-size);
	margin: -19px var(--cscb-contact-gap) -19px 0;
	border-radius: 50%;
	background: #17196d;
	border: 4px solid var(--cscb-contact-bar-color, #27c7ea);
	box-shadow:
		0 0 0 10px #17196d,
		0 0 34px var(--cscb-contact-bar-glow, rgba(56, 223, 255, 0.42));
	display: flex;
	align-items: center;
	justify-content: center;
}



.cscb-contact-bar__badge img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.cscb-contact-bar__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 0;
	color: #ffffff;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
	font-family: var(--global-font-headers);
}

.cscb-contact-bar__line {
	font-size: clamp(16px, 1.45vw, 20px);
	line-height: 1.18;
	font-weight: 700;
	font-family: var(--global-font-headers) !important;
	letter-spacing: -0.015em;
	transition: 0.3s ease-in-out;
}
.cscb-contact-bar__line a{
	transition: 0.3s ease-in-out;
	
}
.cscb-contact-bar__line a:hover{
	color: var(--global-site-color-main) !important;
	text-decoration: none !important;
	
}
.cscb-contact-bar__label {
	font-weight: 700;
	font-family: var(--global-font-headers);
}

.cscb-contact-bar__line a {
	color: inherit;
	text-decoration: none;
}

.cscb-contact-bar__line a:hover {
	text-decoration: underline;
}

.cscb-news-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: #0c1153;
	z-index: 6;
}

.cscb-news-bar__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 12px 40px;
}

.cscb-news-ticker {
	overflow: hidden;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.92);
}

.cscb-news-track {
	display: inline-block;
	animation: cscbTicker 22s linear infinite;
}

.cscb-bottom-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
}

.cscb-bottom-bar__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px 40px;
	color: #fff;
	background: linear-gradient(90deg, rgba(12, 17, 83, 0.88) 0%, rgba(12, 17, 83, 0.48) 100%);
}

.cscb-bottom-icon {
	position: absolute;
	left: 50%;
	bottom: -86px;
	transform: translateX(-50%);
	z-index: 7;
	width: 190px;
	height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.cscb-bottom-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

@keyframes cscbTicker {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 1200px) {
	.cscb-cover {
		--cscb-horizontal-pad: 36px;
	}

	.cscb-cover .wp-block-cover__inner-container {
		padding-top: 112px;
		padding-bottom: 132px;
	}

	.cscb-cover.has-contact-bar .wp-block-cover__inner-container {
		padding-bottom: 228px;
	}
}

@media (max-width: 900px) {
	.cscb-cover {
		--cscb-horizontal-pad: 24px;
		--cscb-contact-badge-size: 104px;
		--cscb-contact-gap: 24px;
	}

	.cscb-right-graphic {
		width: min(54vw, 430px);
	}

	.cscb-right-graphic img {
		right: -28%;
		height: 92%;
		opacity: 0.35;
	}

	.cscb-cover .wp-block-cover__inner-container {
		padding-top: 92px;
		padding-bottom: 110px;
	}

	.cscb-cover.has-contact-bar .wp-block-cover__inner-container {
		padding-bottom: 238px;
	}

	.cscb-heading {
		font-size: clamp(50px, 10vw, 84px);
		max-width: 640px;
	}

	.cscb-contact-bar__inner {
		min-height: 108px;
	}
}

@media (max-width: 767px) {
	.cscb-cover {
		min-height: 720px;
		--cscb-horizontal-pad: 18px;
	}

	.cscb-right-graphic {
		width: 74vw;
	}

	.cscb-right-graphic::before {
		top: 0;
		right: -26%;
		width: 112%;
		height: 84%;
	}

	.cscb-right-graphic img {
		right: -36%;
		bottom: -4%;
		height: 84%;
		opacity: 0.28;
	}

	.cscb-cover .wp-block-cover__inner-container {
		padding-top: 86px;
		padding-bottom: 92px;
	}
	

	.cscb-cover.has-contact-bar .wp-block-cover__inner-container {
		padding-bottom: 284px;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center !important;
	}

	.cscb-heading {
		font-size: clamp(44px, 14vw, 72px);
		line-height: 0.98;
		margin-bottom: 24px;
	}

	.cscb-contact-bar {
		bottom: 10%;
	}

	.cscb-contact-bar__inner {
		display: block;
		padding: 22px 18px 18px;
		min-height: 0;
		padding-left: 0 !important;
	}

	.cscb-contact-bar__inner::before {
		border-radius: 0;
	}

	.cscb-contact-bar__inner::after {
		left: 50%;
		top: -48px;
		transform: translateX(-50%);
	}

	.cscb-contact-bar__badge {
		margin: -72px auto 12px;
		margin-bottom: 15px;
		width: 70px;
		height: 70px;
	}

	.cscb-contact-bar__content {
		padding: 0;
		text-align: center;
	}

	.cscb-contact-bar__line {
		font-size: 20px;
	}
}
@media (max-width: 600px) {
    .t2c-header__top {
        height: fit-content !important;
    }
	.t2c-header__top-right {
    display: flex;
    align-items: center;
		justify-content: center !important;
    flex-wrap: wrap;
		gap: 7px;
}
	.t2c-header__container{
		padding-top: 7px;
		padding-bottom: 7px;
	}
}
@media (max-width: 1000px) {
    .t2c-header__top {
        display: flex !important;
    }
}
@media screen and (max-width: 450px){
	.t2c-header__cta{
		width: 100% !important;
	}
}
@media (max-width: 400px) {
    .cscb-contact-bar__line {
        font-size: 17px;
    }
}