/* Reset CSS */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Background videos need to fill their container, not auto-height */
.hero-video-bg video,
.footer-video-bg video {
	max-width: none;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

img {
	object-fit: cover;
	object-position: center;
}

a {
	text-decoration: none;
	transition: color 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
	            opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
	color: inherit;
}

button,
input,
textarea {
	font: inherit;
	border: none;
	outline: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

p {
	margin-bottom: 1em;
}


/* Variables */
:root {
	--font-color: #020621;
	--main-color: #3461E1;
	--blue-color: #1147DF;
	--secondary-color: #C6A563;
	--primary-color: #132354;
}

body {
	font-family: 'Switzer', sans-serif;
	font-size: 20px;
	line-height: 1.4;
	color: var(--font-color);
}

.container {
	max-width: 1512px;
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}

.font-inter-tight {
	font-family: "Inter Tight", sans-serif;
}

.full-width {
	width: 100%;
}

.full-screen {
	height: 100dvh;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.text-justify {
	text-align: justify;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-capitalize {
	text-transform: capitalize;
}

.text-lowercase {
	text-transform: lowercase;
}

.text-italic {
	font-style: italic;
}

.text-bold {
	font-weight: 700;
}

.text-semibold {
	font-weight: 600;
}

.text-normal {
	font-weight: normal;
}

.text-light {
	font-weight: 300;
}

.text-underline {
	text-decoration: underline;
}

.text-through {
	text-decoration: line-through;
}

.text-overline {
	text-decoration: overline;
}

.text-line-through {
	text-decoration: line-through;
}

.text-underline-line-through {
	text-decoration: underline line-through;
}

.text-underline-overline {
	text-decoration: underline overline;
}

.text-underline-line-through-overline {
	text-decoration: underline line-through overline;
}

@media (min-width: 768px) {
	.hide-sp {
		display: none;
	}
}

@media (max-width: 767px) {
	.hide-pc {
		display: none;
	}
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Inter Tight", sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

.mb-20 {
	margin-bottom: 20px;
}

.pb-60 {
	padding-bottom: 60px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-80 {
	padding-bottom: 80px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-120 {
	padding-bottom: 120px;
}

/* ── Scroll fade-up ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px) translateZ(0);
  will-change: opacity, transform;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Stagger children inside a group */
.animate-stagger .animate-on-scroll:nth-child(1)  { transition-delay: 0s; }
.animate-stagger .animate-on-scroll:nth-child(2)  { transition-delay: 0.1s; }
.animate-stagger .animate-on-scroll:nth-child(3)  { transition-delay: 0.2s; }
.animate-stagger .animate-on-scroll:nth-child(4)  { transition-delay: 0.3s; }
.animate-stagger .animate-on-scroll:nth-child(5)  { transition-delay: 0.4s; }
.animate-stagger .animate-on-scroll:nth-child(6)  { transition-delay: 0.5s; }
.animate-stagger .animate-on-scroll:nth-child(7)  { transition-delay: 0.6s; }
.animate-stagger .animate-on-scroll:nth-child(8)  { transition-delay: 0.7s; }
.animate-stagger .animate-on-scroll:nth-child(9)  { transition-delay: 0.8s; }

/* ── Hero entrance ── */
.hero-section .hero-content__left > * {
  opacity: 0;
  transform: translateY(20px) translateZ(0);
}
.hero-section.hero-ready .hero-content__left > * {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-section.hero-ready .hero-content__left > *:nth-child(1) { transition-delay: 0.15s; }
.hero-section.hero-ready .hero-content__left > *:nth-child(2) { transition-delay: 0.3s; }
.hero-section.hero-ready .hero-content__left > *:nth-child(3) { transition-delay: 0.45s; }
.hero-section.hero-ready .hero-content__left > *:nth-child(4) { transition-delay: 0.6s; }
.hero-section .hero-content__right {
  opacity: 0;
  transform: translateY(16px) translateZ(0);
}
.hero-section.hero-ready .hero-content__right {
  opacity: 1;
  transform: translateY(0) translateZ(0);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s,
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

/* ── Eyebrow draw-in ── */
.section-intro__eyebrow.animate-on-scroll {
  transform: translateY(10px) translateZ(0);
}
.section-intro__eyebrow.animate-on-scroll::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: currentColor;
  margin-right: 0;
  vertical-align: middle;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s,
              margin-right 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}
.section-intro__eyebrow.animate-on-scroll.is-visible::before {
  width: 32px;
  margin-right: 12px;
}

/* ── Image scale reveal ── */
.animate-image {
  overflow: hidden;
}
.animate-image img {
  transform: scale(1.06) translateZ(0);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-image.is-visible img {
  transform: scale(1) translateZ(0);
}

/* ── Frosted nav ── */
.site-header {
  transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              backdrop-filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              -webkit-backdrop-filter 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.site-header.scrolled {
  position: fixed;
  background: rgba(5, 8, 22, 0.72) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* Mobile menu open: always white, overrides scrolled dark state */
.site-header.open-menu {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.site-header.open-menu .logo-dark {
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header.open-menu .logo-light {
  opacity: 0 !important;
  visibility: hidden !important;
}

.site-header.open-menu .site-nav ul li a {
  color: #132354 !important;
}

.site-header.open-menu .btn-header-outline {
  border-color: rgba(19, 35, 84, 0.3) !important;
  color: #132354 !important;
}

.site-header.open-menu .btn-header-report {
  background-color: #132354 !important;
}

.site-header.open-menu .caret path {
  fill: #132354 !important;
}

.site-header.open-menu .lines {
  background: #000000 !important;
}

/* ── Card hover lift ── */
.tn-what-we-do .tn-card,
.who-we-serve .card,
[class*="service-card"],
[class*="card-item"] {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
              box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tn-what-we-do .tn-card:hover,
.who-we-serve .card:hover,
[class*="service-card"]:hover,
[class*="card-item"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ── Stat counter ── */
.stat-number {
  display: inline-block;
}

/* Button */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 23px;
	font-size: 16px;
	border-radius: 8px;
	line-height: 1.4;
	cursor: pointer;
	transition: background-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            background-image 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
	            box-shadow 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            filter 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
	font-weight: 500;
	overflow: hidden;
	border: 1px solid transparent;
	position: relative;
}

.btn:active {
	transform: scale(0.97);
	transition-duration: 0.1s;
}

/* ── Primary (Gold → Blue) ── */
.btn-primary {
	background: linear-gradient(180deg, #D4B474 0%, #C6A563 50%, #B8974F 100%);
	color: #FFFFFF;
	box-shadow: 0 1px 2px rgba(0,0,0,0.10),
	            inset 0 1px 0 rgba(255,255,255,0.20);
	isolation: isolate;
}

.btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, #4A7AF5 0%, #2D5CE0 50%, #1147DF 100%);
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
	z-index: -1;
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(17,71,223,0.30),
	            0 1px 3px rgba(0,0,0,0.12),
	            inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover::before {
	opacity: 1;
}

/* ── Secondary (Blue → Gold) ── */
.btn-secondary {
	position: relative;
	background: linear-gradient(180deg, #4A7AF5 0%, #2D5CE0 50%, #0F45DE 100%);
	color: #fff;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0,0,0,0.10),
	            inset 0 1px 0 rgba(255,255,255,0.15);
	isolation: isolate;
}

.btn-secondary::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, #D4B474 0%, #C6A563 50%, #B8974F 100%);
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
	z-index: -1;
}

.btn-secondary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(198,165,99,0.35),
	            0 1px 3px rgba(0,0,0,0.12),
	            inset 0 1px 0 rgba(255,255,255,0.20);
}

.btn-secondary:hover::after {
	opacity: 1;
}

/* ── Danger (Red → Blue) ── */
.btn-danger {
	color: #fff;
	background: linear-gradient(180deg, #A31A19 0%, #8F0100 50%, #7B0001 100%);
	border: 1px solid transparent;
	position: relative;
	box-shadow: 0 1px 2px rgba(0,0,0,0.12),
	            inset 0 1px 0 rgba(255,255,255,0.12);
	isolation: isolate;
}

.btn-danger::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, #4A7AF5 0%, #2D5CE0 50%, #1147DF 100%);
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
	z-index: -1;
}

.btn-danger:hover {
	border: 1px solid rgba(74,122,245,0.3);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(17,71,223,0.30),
	            0 1px 3px rgba(0,0,0,0.12),
	            inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-danger:hover::after {
	opacity: 1;
}

/* Header */
.site-header {
	width: 100%;
	transition: background-color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

.site-header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	display: block;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2), #FFF, rgba(255, 255, 255, 0.2));
	opacity: 0.3;
}

.site-logo {
	display: inline-flex;
	width: 100px;
}

.site-nav {
	width: calc(100% - 100px - 130px);
}

.site-logo a {
	display: inline-flex;
	position: relative;
}

.site-logo img {
	max-height: 63px;
	width: auto;
	transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.header-inner__left {
	display: flex;
	column-gap: 140px;
	align-items: center;
	justify-content: space-between;
	width: calc(100% - 320px - 30px);
}

.header-inner__right {
	display: flex;
	gap: 16px;
	width: 320px;
}

.site-nav ul {
	display: flex;
	column-gap: 32px;
	list-style: none;
}

.site-nav ul li a {
	display: inline-flex;
	font-size: 16px;
	line-height: 22px;
	color: var(--font-color);
	padding: 54px 0 47px;
	position: relative;
}

.site-nav ul li a:after {
	content: "";
	position: absolute;
	bottom: 47px;
	left: 0;
	width: 12px;
	height: 1px;
	background-color: var(--main-color);
	transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
	            left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
	opacity: 0;
}

.site-nav .mega-menu ul li a:after {
	bottom: 0;

}

.site-nav ul li:hover>a:after {
	opacity: 1;
	left: calc(50% - 6px);
}

/* Active page indicator — subtle gold bar */
.site-nav ul li.current-page > a:after {
	opacity: 1;
	left: calc(50% - 10px);
	width: 20px;
	height: 2px;
	background-color: var(--secondary-color);
	border-radius: 1px;
}

.header--transparent {
	background-color: transparent;
}

.header--transparent .logo-dark {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.header--transparent:not(.scrolled):hover,
.header--transparent.open-menu {
	background-color: #FFFFFF;
}

.header--transparent:not(.scrolled):hover .logo-dark,
.header--transparent.open-menu .logo-dark {
	opacity: 1;
	visibility: visible;
}

.header--transparent:not(.scrolled):hover .logo-light,
.header--transparent.open-menu .logo-light {
	opacity: 0;
	visibility: hidden;
}

.header--transparent:not(.scrolled):hover .btn-header-outline,
.header--transparent.open-menu .btn-header-outline {
	border-color: rgba(19, 35, 84, 0.3);
	color: #132354;
}

.header--transparent .site-nav ul li a {
	color: #FFFFFF;
}

.header--transparent:not(.scrolled):hover .site-nav ul li a,
.header--transparent.open-menu .site-nav ul li a {
	color: #132354;
}

.header--light {
	background: #fff;
	position: relative;
}

.header--light .logo-light {
	display: none;
}

.header--light .caret path {
	fill: #3461E1;
}

.header--light .btn-header-outline {
	border-color: #1323544D;
	color: #132354;
}

.header--light .btn-header-report {
	background: #132354;
	border: 1px solid transparent !important;
}

.header--light.scrolled {
	position: fixed;
	background: #fff !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header--light.scrolled .logo-light {
	display: none !important;
}

.header--light.scrolled .site-nav ul li a {
	color: #132354 !important;
}

.header--light.scrolled .caret path {
	fill: #3461E1 !important;
}

.header--light.scrolled .btn-header-outline {
	border-color: #1323544D !important;
	color: #132354 !important;
}

.header--light.scrolled .btn-header-report {
	background: #132354 !important;
}

.btn-header-outline {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #FFFFFF;
	transition: background 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            border-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
	            box-shadow 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-header-outline:hover {
	border-color: transparent !important;
	background: linear-gradient(180deg, #D4B474 0%, #C6A563 50%, #B8974F 100%);
	box-shadow: 0 4px 14px rgba(198,165,99,0.25),
	            inset 0 1px 0 rgba(255,255,255,0.20);
}

.btn-header-report {
	background-color: rgba(255, 255, 255, 0.3);
	border-color: transparent;
	color: #FFFFFF;
	position: relative;
	transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
	            box-shadow 0.45s cubic-bezier(0.25, 0.1, 0.25, 1),
	            background-color 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header--transparent:not(.scrolled):hover .btn-header-report {
	background-color: #132354;
}

.btn-header-report {
	isolation: isolate;
}

.btn-header-report::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, #A31A19 0%, #8F0100 50%, #7B0001 100%);
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
	z-index: -1;
}

.btn-header-report:hover {
	border: 1px solid transparent;
	box-shadow: 0 4px 14px rgba(143,1,0,0.30),
	            inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-header-report:hover::after {
	opacity: 1;
}

.menu-item-has-children a {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
}

.menu-item-has-children a .caret {
	display: inline-flex;
	transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);

}

.caret path {
	transition: fill 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
	position: relative;
}

.header--transparent:not(.scrolled):hover .caret path {
	fill: #132354;
}

/* Hero banner */
.hero-section {
	display: flex;
	align-items: flex-end;
	color: #FFF;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 74px 0;
	position: sticky;
	top: 0;
	z-index: 0;
}

/* Content wrapper (created by JS) scrolls over the sticky hero */
.hero-scroll-cover {
	position: relative;
	z-index: 1;
	background: #FFFFFF;
	box-shadow: 0 -20px 40px rgba(0,0,0,0.08);
}

/* Sections with dark backgrounds override the wrapper's white */
.hero-scroll-cover > .deep-dive,
.hero-scroll-cover > .section-contact-us {
	--section-bg: transparent;
}

/* Service hero also sticky */
.cs-services-hero {
	position: sticky;
	top: 0;
	z-index: 0;
}

/* Footer must also cover the hero */
.main-footer {
	position: relative;
	z-index: 1;
}

/* ── Hero video background ── */
.hero-video-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.hero-video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* Hide native play button on iOS Safari */
.hero-video-bg video::-webkit-media-controls-panel,
.hero-video-bg video::-webkit-media-controls-play-button,
.hero-video-bg video::-webkit-media-controls-start-playback-button,
.hero-video-bg video::-webkit-media-controls {
	display: none !important;
	-webkit-appearance: none;
}

.footer-video-bg video::-webkit-media-controls-panel,
.footer-video-bg video::-webkit-media-controls-play-button,
.footer-video-bg video::-webkit-media-controls-start-playback-button,
.footer-video-bg video::-webkit-media-controls {
	display: none !important;
	-webkit-appearance: none;
}

/* When autoplay is blocked, show the poster image */
.hero-video-bg video,
.footer-video-bg video {
	background-size: cover;
	background-position: center;
}

.video-paused video {
	/* Poster already shows via the poster attribute, but this
	   ensures the container doesn't collapse to 0 height */
	min-height: 100%;
}

/* Gradient overlay for text legibility on video backgrounds */
.has-hero-video .hero-video-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0.4) 40%,
		transparent 70%
	);
	z-index: 1;
	pointer-events: none;
}

.has-hero-video > .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 40px;
}

.hero-content__left {
	flex: 1;
}

.hero-content__right {
	width: 200px;
}

.stats {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

.stats__divider {
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2), #FFFFFF, rgba(255, 255, 255, 0.2));
	opacity: 0.2;
}

.stats__item {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

.stats__value {
	color: #BDCEFF;
	font-size: 60px;
	line-height: 1;
	font-weight: 600;
}

.stats__label {
	font-size: 16px;
	line-height: 1.4;
	color: #FFFFFF;
}

.hero-content .banner-title {
	font-size: var(--font-s);
	font-weight: 600;
	line-height: 1;
	margin-bottom: 24px;
	max-width: var(--max-w,1040px);
}

.hero-content .banner-title span {
	color: #BDCEFF;
}

.hero-content .content {
	max-width: var(--max-w);
	font-size: 16px;
	line-height: 1.4;
	margin-bottom: 40px;
}


/* Section intro */
.section-intro {
	max-width: 700px;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

.section-intro__eyebrow {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.2px;
	line-height: 1;
	color: var(--main-color);
}

.section-intro__title {
	font-size: 60px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.6px;
}

.section-intro__desc {
	font-family: Switzer;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;

	color: #fff;
}

.section-intro__title span {
	color: var(--main-color);
}

@media (max-width: 1199px) {
	.section-intro__title {
		font-size: 50px;
		letter-spacing: 0.5px;
	}
}

@media (max-width: 767px) {
	.section-intro__eyebrow {
		font-size: 16px;
	}

	.section-intro {
		max-width: 100%;
		row-gap: 16px;
	}

	.section-intro__title {
		font-size: 40px;
		letter-spacing: 0.4px;
	}

	/* Disable sticky hero on mobile */
	.hero-section,
	.cs-services-hero {
		position: relative;
	}

	.hero-scroll-cover {
		box-shadow: none;
	}

	/* Global mobile font size bump */
	body,
	p,
	.cs-services-hero-desc p,
	.services-grid__description,
	.section-intro p,
	.left-section-intro p {
		font-size: 16px;
		line-height: 1.5;
	}

	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	h3 {
		font-size: 22px;
	}
}

/* Menu */
.site-nav {
	position: relative;
}

.mega-menu {
	position: absolute;
	left: 0;
	top: calc(100%);
	background: #fff;
	padding: 14px 21px 14px 41px;
	border-radius: 0 0 8px 8px;
	min-width: 800px;
	opacity: 0;
	transition: opacity 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
	            visibility 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
	visibility: hidden;
}

@media (min-width:1201px) {
	.site-nav ul li:hover .mega-menu {
		opacity: 1;
		visibility: visible;
	}

	.site-nav ul li:hover .caret {
		transform: rotate(180deg);
	}

}

.site-nav .mega-menu ul li a {
	color: #132354;
	padding: 0;
}

.site-nav ul li {
	line-height: 0;
}

/* .site-nav ul li:not(.menu-item-has-children) {
	position: relative;
} */


.mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-bottom: 19px;
}

.mega-menu__grid--3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.mega-menu__grid .mega-menu__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.mega-menu__title {
	font-family: Inter Tight;
	font-weight: 500;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0.01em;
	color: #132354;
	margin-bottom: 40px;
}

.mega-menu__left {
	width: 100%;
}

.mega-menu__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.mega-menu__featured {
	width: 360px;
	padding: 24px;
	position: relative;
	box-shadow: 0px 4px 8px 0px #95B0F91A;

	box-shadow: 0px 15px 15px 0px #95B0F917;

	box-shadow: 0px 34px 20px 0px #95B0F90D;

	box-shadow: 0px 60px 24px 0px #95B0F903;

	box-shadow: 0px 93px 26px 0px #95B0F900;
	border-radius: 8px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center right;
}

.mega-menu__featured::after {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 8px;
	background: linear-gradient(180deg,
			rgba(189, 206, 255, 0.6) 0%,
			rgba(189, 206, 255, 0) 100%);

	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 0;
}

.mega-menu__featured-label {
	font-family: Inter Tight;
	font-weight: 600;
	font-size: 12px;
	line-height: 120%;
	letter-spacing: 0.01em;
	vertical-align: middle;
	color: var(--main-color);
	margin-bottom: 24px;
	display: block;
}

.mega-menu__featured-title {
	font-family: Inter Tight;
	font-weight: 500;

	font-size: 20px;

	line-height: 120%;
	letter-spacing: 0.01em;
	vertical-align: middle;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.mega-menu__featured-text {
	font-family: Switzer;
	font-weight: 400;
	font-size: 14px;
	line-height: 150%;

	color: #132354CC;
	margin-bottom: 25px;
}

.site-nav ul li .mega-menu__featured-link {
	font-family: Aeonik TRIAL;
	font-weight: 500;

	font-size: 14px;

	line-height: 120%;

	vertical-align: middle;
	color: var(--main-color) !important;
	display: block;
	padding: 0;
}

.mega-menu--col .mega-menu__left {
	width: auto;
}

.mega-menu__featured-content {
	max-width: 243px;
}

/* .site-wrapper {
	overflow: hidden;
} */

.hambuger-mobile {
	display: none;
}

.menu-mobile {
	display: none;
}

@media (max-width:1366px) {
	.header-inner__left {
		gap: 30px;
	}

	.site-nav {
		width: calc(100% - 100px - 30px);
	}
}

@media (max-width:1200px) {


	.hambuger-mobile {
		position: absolute;
		right: 20px;
		top: 50%;
		display: block;
		z-index: 1;
		transform: translateY(-50%);
	}



	.lines {
		width: 24px;
		height: 2px;
		background: #fff;
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -12.5px;
		margin-top: -1.5px;
		-webkit-transition: -webkit-transform 200ms;
		transition: -webkit-transform 200ms;
		transition: transform 200ms;
		transition: transform 200ms, -webkit-transform 200ms;
	}

	.header--transparent:not(.scrolled):hover .lines,
	.header--transparent.open-menu .lines,
	.header--light .lines {
		background: #000000;

	}

	.line-1 {
		-webkit-transform: translate3d(0, -8px, 0);
		transform: translate3d(0, -8px, 0);
	}

	.line-2 {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);

	}

	.line-3 {
		-webkit-transform: translate3d(0, 8px, 0);
		transform: translate3d(0, 8px, 0);
	}

	.hambuger-mobile.exit .line-1 {
		-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
		transform: translate3d(0, 0, 0) rotate(45deg);
	}

	.hambuger-mobile.exit .line-2 {
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
		transform: translate3d(0, 0, 0) scale(0.1, 1);
	}

	.hambuger-mobile.exit .line-3 {
		-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
		transform: translate3d(0, 0, 0) rotate(-45deg);
	}

	.header-inner__right {
		display: none;
	}

	.site-nav {
		display: none;
	}

	.header-inner {
		padding: 20px 0;
	}

	.site-header::after {
		width: calc(100% - 32px);
		left: 16px;
	}

	.menu-mobile {
		height: calc(100dvh - 103px);
		padding: 32px;

	}

	.header-inner__left {
		width: auto;
	}

	.menu-mobile .site-nav {
		display: block;
		width: 100%;
		max-height: calc(100% - 40px - 105px);
		overflow: auto;
	}

	.wrap-menu-mobile {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
	}

	.site-header::after {
		bottom: auto;
		top: 103px;
	}

	.site-header.open-menu::after {
		background: #3461E1;
	}

	.header-inner {
		position: relative;
	}

	.header-inner__right--mobile {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.header-inner__right--mobile .btn {
		display: flex;
	}

	.site-nav ul {
		flex-direction: column;
		gap: 24px;
	}

	.site-nav ul li a {
		padding: 0;
	}

	.site-nav ul li a:after {
		display: none;
	}

	.site-nav ul li a {
		font-weight: 500;
		font-size: 24px;
		line-height: 140%;
		display: flex;
		justify-content: space-between;
	}

	.mega-menu {
		position: initial;
		opacity: 1;
		visibility: visible;
		padding: 32px 0 8px;
		display: none;
		transition: none;
	}

	.mega-menu__title {
		display: none;
	}

	.mega-menu__grid {
		grid-template-columns: 1fr !important;
		gap: 0;
		margin-bottom: 0;
	}

	.mega-menu__grid .mega-menu__list {
		gap: 0;
	}

	.mega-menu__grid .mega-menu__list a img {
		width: 20px;
	}

	.site-nav .mega-menu ul li a {
		font-weight: 400;
		font-size: 16px;
		line-height: 140%;
		color: #132354;
		padding: 12px 0;
		border-top: 1px solid #7E89AD26
	}

	.mega-menu__list:first-child li:first-child a {
		padding-top: 0;
		border: none;
	}

	.mega-menu__wrapper {
		flex-direction: column;
	}

	.mega-menu__wrapper {
		gap: 16px;
	}

	.mega-menu__featured {
		max-width: 376px;
		width: 100%;
	}

	.mega-menu {
		min-width: auto;
	}

	.is-open .caret {
		transform: rotate(90deg);
	}

	.menu-item-has-children a .caret {
		width: 24px;
		display: flex;
		align-items: center;

		justify-content: center;
	}

	.menu-item-has-children a .caret img {
		width: auto;
	}


}