/* =========================
   			FONTS
========================= */
@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "RobotoMedium";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "RobotoRegular";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "RobotoItalic";
  src: url("../fonts/Roboto-Italic.ttf") format("truetype");
}

/* HACKS */
.top-footer .f-socials {
	display: none !important;
}


/* =========================
   			GENERAL
========================= */
html, body {
    font-family: 'RobotoLight', sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    color: #51687e;
}

a {
	text-decoration: none;
	color: #143351;
}


.main-x-pagination {
	padding-left: 10vw !important;
	padding-right: 10vw !important;
}

.main-y-pagination {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}



/* =========================
   			NAVIGATION
========================= */
.main-navigation {
	padding: 40px 0;
}
.main-navigation .logo-nav {
	display: inline-block;
	width: 250px;
}
.main-navigation .logo-nav img {
	width: 200px;
}
.main-navigation .links-nav {	
	margin-top: 20px;
	display: inline-block;
	float: right;
	color: #22405c;
	font-weight: 600;
}
.main-navigation .links-nav div {
	display: inline-block;
	margin: 0 17px;
	font-size: 18px;
}

.main-navigation .links-nav div a {
	padding-bottom: 5px;
}

.main-navigation .links-nav div a:hover {
	color: #01a1e1;
}

.main-navigation .links-nav div .active-page {
	background-image: linear-gradient(90deg, #33B9FF, #36E5B2);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 3px; /* width x thickness */
  color: #01a1e1;
}

.main-navigation .links-nav div .nav-button {

}

.main-navigation .mobile-nav {
	display: none;
}




.mobile-nav__btn{
  border: none;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.mobile-nav__btn img{
  width: 28px;
  height: 22px;
  display: block;
}

/* modal base */
.mobile-menu-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.mobile-menu-modal.is-open {
  display: block;
}

.mobile-menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 41, 64, 0.55);
}

/* panel */
.mobile-menu-modal__panel{
  position: relative;
  height: 100%;
  background: #ffffff;
  padding: 21px 10vw;
  display: flex;
  flex-direction: column;
}

/* top bar */
.mobile-menu-modal__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu-modal__logo img{
  width: 150px;
  display: block;
}

.mobile-menu-modal__close {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 45px;
  line-height: 50px;
  color: #133351;
}

/* links */
.mobile-menu-modal__nav{ 
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-modal__nav a{
  font-family: 'RobotoRegular', sans-serif;
  color: #133351;
  text-decoration: none;
  font-size: 30px;
  line-height: 40px;
}

.mobile-menu-modal__nav a.active-page, .top-footer .bottom-navigation a.active-page {
	background-image: linear-gradient(90deg, #33B9FF, #36E5B2);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 3px; /* width x thickness */
  padding-bottom: 5px;
  color: #01a1e1;
}

.mobile-menu-modal__nav a:hover{
  opacity: 0.85;
}

/* CTA button inside menu */
.mobile-menu-modal__cta{
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
}

/* footer */
.mobile-menu-modal__footer{
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(19, 51, 81, 0.12);
}

.mobile-menu-modal__footer a{
  font-family: 'RobotoRegular', sans-serif;
  color: #41586b;
  text-decoration: none;
  font-size: 14px;
}




/* =========================
   			FOOTER
========================= */
.top-footer {
  background-color: #fafafa;
  display: flex;
  align-items: flex-start; /* THIS is "top align" in flex */
  justify-content: space-between;
  gap: 50px;
}
.top-footer .company {
  width: 30%;
}
.top-footer .bottom-navigation {
  width: 100%;
  margin-top: 10px;
}
.top-footer .company .f-logo {
	width: 200px;
}
.top-footer .company .f-socials {
	margin-top: 50px;
}
.top-footer .company .f-socials img {
	height: 22px;
	margin-right: 20px;
}
.top-footer .bottom-navigation {
  display: flex;
  gap: 3vw;
  flex-wrap: wrap; /* optional */
  justify-content: right;
}
.top-footer .bottom-navigation .chunk {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.top-footer .bottom-navigation .chunk a {
	display: block;	
	font-size: 18px;
}

.top-footer .bottom-navigation .chunk a:hover {
	color: #01a1e1;
}

.top-footer .bottom-navigation .chunk .footer-btn {
	padding: 10px 25px;
	margin-top: -10px;
}

.bottom-footer {
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 16px;
}
.bottom-footer .x-divider {
	margin: 0 20px;
}
.bottom-footer a {

}









/* =========================
   			HOME PAGE
========================= */
/* SECTION 1 */
.home-main-section {
	background-color: #000000;
	color: #fafafa;
	min-height: 100vh;

	background-image: url("/imagesNew/home/section-1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.home-main-section .section-content {
	padding-left: 10vw;
	padding-top: 25vh;
}
.home-main-section .section-content .section-title h1 {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	width: 100%;
	margin: 0;
}
.home-main-section .section-content .section-text {
	margin: 20px 0;
	width: 100%;
	font-size: 20px;
	line-height: 38px;
	font-weight: 500;
}
.home-main-section .section-content .section-button {	
	margin-top: 40px;
}


.home-main-section .section-content .section-button a {	
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 18px;

	padding: 13px 26px;
	border-radius: 9999px;

	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;

	background: transparent;   /* true transparent */
	border: none;
}

.home-main-section .section-content .section-button a::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px; /* border thickness */

	background: linear-gradient(90deg, #33B9FF, #36E5B2);

	/* cut the middle out so only border remains */
	-webkit-mask:
	linear-gradient(#000 0 0) content-box,
	linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	      mask-composite: exclude;

	pointer-events: none;
}


/* SECTION 2 */
.home-section-2 {
	display: flex;
	align-items: stretch;
	width: 100%;
	height: 100%;           
	gap: 0; 
}
.home-section-2 .left-section {	
	flex: 0 0 40%;
	padding: 17vh 0px;             
	box-sizing: border-box;
	padding-left: 10vw;
	padding-right: 8vw;
}
.home-section-2 .left-section .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	color: #133351;
}
.home-section-2 .left-section .section-text {
	margin: 20px 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}
.home-section-2 .left-section .section-button {
	margin-top: 40px;
}
.home-section-2 .left-section .section-button a {

}
.home-section-2 .right-section {
	flex: 0 0 60%;
	background-image: url("/imagesNew/home/section-2.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* SECTION 3*/
.home-section-3 {
	color: #fafafa;
	min-height: 100vh;
	background-image: url("/imagesNew/home/section-3.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;	
}

.home-section-3 .section-content {
	padding-left: 10vw;
	padding-top: 10vh;
	padding-bottom: 50px;
}
.home-section-3 .section-content .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	margin-bottom: 35px;
}
.home-section-3 .section-content .section-block {
	margin: 20px 0;
	width: 30vw;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-section-3 .section-content .section-block .section-icon img {
	height: 70px;
	display: block;
}

.home-section-3 .section-content .section-button {	
	margin-top: 40px;
}
.home-section-3 .section-content .section-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 18px;
	border-radius: 9999px;
	color: #fff;
	text-decoration: none;
	padding: 13px 26px;
	font-size: 20px;
	font-weight: 500;
	background: transparent;   /* true transparent */
	border: none;
}

.home-section-3 .section-content .section-button a::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px; /* border thickness */

	background: linear-gradient(90deg, #33B9FF, #36E5B2);

	/* cut the middle out so only border remains */
	-webkit-mask:
	linear-gradient(#000 0 0) content-box,
	linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	      mask-composite: exclude;

	pointer-events: none;
}


/* SECTION 4 */
.home-section-4 {
	display: flex;
	align-items: stretch;
	width: 100%;          
	gap: 0; 
}
.home-section-4 .left-section {	
	flex: 0 0 42%;
	padding: 10vh 0px;             
	box-sizing: border-box;
	padding-left: 10vw;
	padding-right: 0vw;
	order: 1;
}
.home-section-4 .left-section .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	color: #133351;
}
.home-section-4 .left-section .section-title span {
	color: #01a1e1;
}

.home-section-4 .left-section .section-text {
	margin: 20px 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}
.home-section-4 .left-section .section-button {
	margin-top: 40px;
}

.home-section-4 .left-section .section-button a {

}

.home-section-4 .right-section {
	flex: 0 0 58%;
	background-image: url("/imagesNew/home/section-4.svg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	order: 2;
}


/* SECTION 5 */
.home-section-5 {
	display: flex;
	align-items: stretch;
	width: 100%;          
	gap: 0; 
}
.home-section-5 .left-section {	
	flex: 0 0 45%;
	padding: 10vh 5vw 10vh 10vw;             
	box-sizing: border-box;
	background:
    radial-gradient(900px 700px at 85% 10%, rgba(255,255,255,0.18), rgba(255,255,255,0) 60%),
    linear-gradient(90deg, #4EA2D9 0%, #53AFCF 45%, #57B9C4 70%, #5CC3A7 100%);
}
.home-section-5 .left-section .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	color: #133351;
}
.home-section-5 .left-section .section-text {
	margin: 20px 0;
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
	color: #000;
}
.home-section-5 .left-section .section-button {
	margin-top: 40px;
}

.home-section-5 .left-section .section-button a {
	
}
.home-section-5 .right-section {
	flex: 0 0 55%;
	background-image: url("/imagesNew/home/section-5.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


/***** SECTION 6 *****/
.home-section-6{
  width: 100%;
  margin: 0;
  background-color: #fafafa; /* section bg */
  color: #000000;
}

/* TOP TEXT */
.home-section-6 .top-content{
  padding-top: 12vh;
  padding-bottom: 50px;
  text-align: center;
}

.home-section-6 .top-content .section-title{
  font-family: 'RobotoMedium', sans-serif;
  font-weight: 500;
  font-size: 65px;
  line-height: 70px;
  margin: 0 auto;
  max-width: 80%;
}

.home-section-6 .top-content .section-title span{
  color: #01a1e1;
}

.home-section-6 .top-content .section-text{
  margin: 0 auto;
  max-width: 80%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: rgba(27,43,68,0.85);
}

/* LAYOUT */
.home-section-6 .two-cards{
  padding: 10px 20px 120px;
}

.home-section-6 .two-cards__wrap{
  max-width: 80vw;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


.home-section-6 .info-card{
  position: relative;
  overflow: hidden;

  background: #ffffff;

  /* normal border + shadow */
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);

  /* YOUR updated padding */
  padding: 54px 20% 44px 15%;
}

/* TOP GRADIENT STRIP */
.home-section-6 .info-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 12px;
  width: 100%;
  background: linear-gradient(90deg, #4EA2D9 0%, #57B9C4 60%, #5CC3A7 100%);
 
  z-index: 1;
}

/* Keep content above the strip */
.home-section-6 .info-card > *{
  position: relative;
  z-index: 2;
}

.home-section-6 .info-card__title{
  margin: 0 0 28px 0;
  font-size: 38px;
  font-weight: 700;
  color: #1b2b44;
}

.home-section-6 .info-card__item{
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  margin: 26px 0;
}

.home-section-6 .info-card__icon{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.home-section-6 .info-card__icon img{
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block; /* removes baseline gap */
}

.home-section-6 .info-card__heading{
  font-weight: 700;
  font-size: 24px;
  color: #1b2b44;
  margin-bottom: 6px;
}

.home-section-6 .info-card__text{
  color: #000000;
  font-size: 20px;
  line-height: 1.55;
}

/* BUTTON */
.home-section-6 .info-card__btn{
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 70px;
}

/* Promo section */
.home-promo-section {	
	color: #fafafa;
	text-align: center;
	padding: 100px 0 120px 0;
	background:
    radial-gradient(900px 520px at 45% 45%, rgba(255,255,255,0.06), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #213b5b 0%, #163453 100%);
}
.home-promo-section .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.home-promo-section .section-title span {
	color: #01a1e1;
}
.home-promo-section .section-text {
	margin: 0;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}


.home-promo-section .section-button {	
	margin-top: 40px;
}
.home-promo-section .section-button a {	
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 18px;

	padding: 13px 26px;
	border-radius: 9999px;

	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;

	background: transparent;   /* true transparent */
	border: none;
}

.home-promo-section .section-button a::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px; /* border thickness */

	background: linear-gradient(90deg, #33B9FF, #36E5B2);

	/* cut the middle out so only border remains */
	-webkit-mask:
	linear-gradient(#000 0 0) content-box,
	linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	      mask-composite: exclude;

	pointer-events: none;
}




/* =========================
   			WHO WE ARE PAGE
========================= */
#who-we-are-main-section {
	background-image: url("/imagesNew/whoweare/main-section.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Leadership section */
.leadership-section {
  background: #fff;
  padding: 10vh 10vw;
}

.leadership-section  .leadership__inner {
  margin: 0 auto;
}

.leadership-section  .leadership__title {
  text-align: center;
  font-family: 'RobotoMedium', sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 70px;
  color: #133351;
  margin: 0 0 70px 0;
}

/* each person row */
.leadership-section  .leader{
  display: flex;
  gap: 60px;
  align-items: flex-start;
  padding: 10px 0;
}

.leader + .leader {
  margin-top: 70px;
}

/* image */
.leadership-section  .leader__photo{
  flex: 0 0 250px;

  height: 300px;
  border-radius: 18px;
  overflow: hidden;
}

.leadership-section  .leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* content */
.leadership-section  .leader__content{
  flex: 1;
  padding-top: 8px; 
}

.leadership-section .leader__name{
  margin: 0 0 14px 0;
  font-size: 26px;
  font-weight: 700;
  color: #1b2b44;
}

.leadership-section .leader__name span{
  font-weight: 500;
  color: rgba(27,43,68,0.65);
}

.leadership-section .leader__bio{
	font-family: 'RobotoLight', sans-serif;
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  color: #133351;
}

/* =========================
   			WHAT WE DO PAGE
========================= */
#what-we-do-main-section {
	background-image: url("/imagesNew/whatwedo/main-section.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* =========================
 			WHO WE SERVICE PAGE
========================= */
#who-we-service-main-section {
	background-image: url("/imagesNew/whoweservice/main-section.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* =========================
 				INSIGHTS PAGE
========================= */
#insights-main-section {
	background-image: url("/imagesNew/insights/main-section.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
}

.insights-list-section .section-title {
	color: #153351;	
	margin: 0;
}

.insights-list-section .section-text {
	color: #0b2940;
}



/* layout wrapper */
.insights-list-section .insights-container{
  max-width: 100%;
  margin: 0 auto;
}

.insights-list-section .insights-grid{
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* card */
.insights-list-section .insights-card{
  background: #fff;
  border: 0;
}

.insights-list-section .insights-card-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* image area */
.insights-list-section .insights-image-wrap{
  width: 100%;
  aspect-ratio: 16 / 9;  
  overflow: hidden;
  position: relative;
  background: #e9eef3;
}

/* thin green strip under image */
.insights-list-section .insights-image-wrap::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 10px;
  background: #2fbf9a;      /* green strip */
}

.insights-list-section .insights-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body */
.insights-list-section .insights-body{
  padding: 10%;    
  background-color: #fafafa;
}

/* eyebrow */
.insights-list-section .insights-eyebrow {
  font-family: 'RobotoBold', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #4f7cff;
  margin-bottom: 10px;
}

/* title */
.insights-list-section .insights-title {
  font-family: 'RobotoBold', sans-serif;
  font-size: 30px;
  line-height: 35px;
  color: #153351;
  margin: 0 0 18px 0;
  
}

/* button */
.insights-list-section .insights-btn-wrapper {
  margin-top: 40px;

}

.insights-list-section .insights-btn-arrow {
  font-size: 16px;
  line-height: 1;
}


/* =========================
 		INSIGHTS DETAILS PAGE
========================= */

#insights-details-main-section {
	width: 100%;
	height: 20px;

	background: linear-gradient(90deg, #51A0E1 0%, #52B2C2 50%, #55C4A4 100%);
}






.insights-details-section .insights-details-container {
  max-width: 100%;
  margin: 0 auto;
}

.insights-details-section .insights-details-grid {
  display: grid;
  grid-template-columns: 1fr 45%;
  gap: 70px;
  align-items: start;
}

/* LEFT */
.insights-details-section .section-title {
  color: #133351;
  margin: 0;
  margin-bottom: 20px;
}

.insights-details-lead {
  font-family: 'RobotoBold', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #41586b;
  margin: 0 0 14px 0;
}

.insights-details-text{
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #41586b;
  margin: 0 0 14px 0;
}

.insights-details-h3{
  font-family: 'RobotoBold', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #153351;
  margin: 14px 0 8px 0;
}

.insights-details-list{
  margin: 8px 0 14px 0;
  padding: 0;
  list-style: none;
}

.insights-details-list li{
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  margin: 10px 0;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #41586b;
}

.insights-details-bullet{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #153351;
  margin-top: 7px;
}

.insights-details-list strong{
  font-family: 'RobotoBold', sans-serif;
  color: #153351;
}

.insights-details-divider{
  margin: 20px 0;
  border: none;
  border-top: 1px solid rgba(21,51,81,0.20);
}

.insights-details-social{
  display: flex;
  align-items: center;
  gap: 20px;
}

.insights-details-social a {
	cursor: pointer;
}

.insights-details-social img {
	height: 20px;	
}

/* RIGHT CARD */
.insights-details-form-card{
  background: #fafafa;
  border-radius: 10px;
  padding: 50px;
}

.insights-details-form-title{
  font-family: 'RobotoBold', sans-serif;
  font-size: 30px;
  line-height: 36px;
  color: #153351;
  margin: 0 0 14px 0;
}

.insights-details-form-topchecks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.insights-details-check {
  display: inline-flex;
  gap: 10px;
  align-items: flex-start;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #41586b;
}

.insights-details-check input{
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

.insights-details-check-inline{
  margin-right: 14px;
  margin-top: 8px;
}

.insights-details-form-fields{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insights-details-input {
  width: 95%;
  height: 38px;
  border-radius: 3px;
  border: 1px solid rgba(21,51,81,0.22);
  padding: 0 14px;
  background: #fff;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  color: #153351;
  outline: none;
}

.insights-details-input::placeholder{
  color: rgba(65,88,107,0.85);
}

.insights-details-input:focus{
  border-color: rgba(58,160,255,0.75);
  box-shadow: 0 0 0 3px rgba(58,160,255,0.12);
}

.insights-details-form-block{
  padding-top: 6px;
}

.insights-details-label{
  font-family: 'RobotoBold', sans-serif;
  font-size: 20px;
  color: #41586b;
  margin: 8px 0 6px 0;
}

.insights-details-upload{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}


.insights-details-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.insights-details-submit {
  border: none;
  font-size: 20px !important;
  cursor: pointer;
}
.insights-details-submit:hover{ }

.insights-details-required{
  font-family: 'RobotoRegular', sans-serif;
  font-size: 14px;
  color: #41586b;
}













/* =========================
 				FAQ PAGE
========================= */
#faq-main-section {
	background-image: url("/imagesNew/faq/main-section.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
}

.faq-questions-section {

}

.faq-questions-section .section-title {	
	color: #133351;
	margin: 0;
}

.faq-questions-section .faq-list {
	padding: 50px 0;
}

/* CARD ROW */
.faq-questions-section .faq-list .faq-item{
  margin: 40px 0;
	padding: 30px 60px;
	background-color: #ffffff;
  overflow: hidden;              
  box-shadow: 0 0 0 rgba(0,0,0,0); 
}

/* REMOVE DEFAULT TRIANGLE */
.faq-questions-section .faq-list .faq-item > summary{
  list-style: none;
}
.faq-questions-section .faq-list .faq-item > summary::-webkit-details-marker{
  display: none;
}

/* SUMMARY ROW LAYOUT */
.faq-questions-section .faq-list .faq-item .faq-summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;        
  font-size: 35px;
	line-height: 40px;
	font-family: 'RobotoMedium', sans-serif;
  color: #133351;
}

/* Keep question from shrinking weird */
.faq-questions-section .faq-list .faq-item .faq-question{
  flex: 1 1 auto;
}

/* ICON: plus/minus on the far right */
.faq-questions-section .faq-list .faq-item .faq-icon{
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-block;
}

/* horizontal line */
.faq-questions-section .faq-list .faq-item .faq-icon::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 40px;
  height: 2px;
  background: rgba(19,51,81,0.55);
  transform: translate(-50%,-50%);
}

/* vertical line (to make +) */
.faq-questions-section .faq-list .faq-item .faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 2px;
  height: 40px;
  background: rgba(19,51,81,0.55);
  transform: translate(-50%,-50%);
}

/* When open -> hide vertical line = minus */
.faq-questions-section .faq-list .faq-item[open] .faq-icon::after{
  opacity: 0;
}

/* CONTENT area */
.faq-questions-section .faq-list .faq-item .faq-content{        
  font-family: 'RobotoRegular', sans-serif;
  color: #0b2940;
  max-width: 85%;
}

.faq-questions-section .faq-list .faq-item .faq-content p {
  margin: 0;
  font-size: 20px;
	line-height: 30px;
	margin-top: 10px;
}

/* Nice focus */
.faq-questions-section .faq-list .faq-item .faq-summary:focus-visible{
  outline: 3px solid rgba(79,163,255,.25);
  outline-offset: 4px;
  border-radius: 6px;
}



/* =========================
 				CONTACT PAGE
========================= */
#contact-main-section {
	background-image: url("/imagesNew/contact/main-section.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000;
}


.contact-form-section .section-title {	
	color: #133351;
	margin: 0;
}

.contact-form-section .section-text {
	color: #41586b;
}

.contact-form-container{
  max-width: 100%;
  margin: 0 auto;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 5%;
  align-items: start;
  margin-top: 55px;
}

/* LEFT */
.contact-subtitle{
  font-family: 'RobotoBold', sans-serif;
  font-size: 32px;
  line-height: 38px;
  color: #133351;
  margin: 0 0 18px 0;
}

.contact-bullets{
  margin: 0 0 26px 0;
  padding-left: 18px;
  color: #41586b;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.contact-bullets li { margin: 6px 0; }

.contact-methods {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-method {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-icon {
  width: 80px;
  height: 80px;
  color: #3aa0ff;
}
.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-method-title {
  font-family: 'RobotoBold', sans-serif;
  color: #133351;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 6px;
}

.contact-method-link {
  display: inline-block;
  font-family: 'RobotoBold', sans-serif;
  color: #01a1e1;
  font-size: 20px;
  line-height: 30px;
}
.contact-method-link:hover { 

}

.contact-method-note {
  font-family: 'RobotoRegular', sans-serif;
  color: #41586b;
  font-size: 20px;
  line-height: 30px;
}

/* RIGHT CARD */
.contact-card{
  background: #fff;
  border-radius: 10px;
  padding: 50px;
}

.contact-card-title{
  font-family: 'RobotoBold', sans-serif;
  font-size: 32px;
  line-height: 38px;
  color: #133351;
  margin: 0 0 20px 0;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-input{
  width: 95%;
  height: 46px;
  border-radius: 4px;
  border: 1px solid rgba(19,51,81,0.25);
  padding: 0 14px;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  color: #133351;
  outline: none;
  background: #fff;
}

.contact-input-textarea {
	width: 95%;
  border-radius: 4px;
  border: 1px solid rgba(19,51,81,0.25);
  padding: 10px 14px;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  color: #133351;
  outline: none;
  background: #fff;
}

.contact-input::placeholder, .contact-input-textarea::placeholder{
  color: rgba(65,88,107,0.85);
}

.contact-input:focus, .contact-input-texarea:focus{
  border-color: rgba(58,160,255,0.75);
  box-shadow: 0 0 0 3px rgba(58,160,255,0.15);
}

.contact-block{
  padding-top: 10px;
}

.contact-label{
  font-family: 'RobotoBold', sans-serif;
  color: #41586b;
  font-size: 20px;
  margin: 6px 0 8px 0;
}

.contact-check{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 18px;
  margin-top: 6px;
  font-family: 'RobotoRegular', sans-serif;
  font-size: 20px;
  color: #41586b;
}

.contact-check input{
  width: 20px;
  height: 20px;
}

.contact-upload{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
}

.contact-upload-text{
  font-family: 'RobotoRegular', sans-serif;
  color: #41586b;
  font-size: 20px;
}


.contact-actions{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.contact-submit{
  border: none;

  font-size: 20px !important;
  cursor: pointer;
}

.contact-submit:hover{
 
}

.contact-required{
  font-family: 'RobotoRegular', sans-serif;
  font-size: 14px;
  color: #41586b;
}







/* =============================================
		REUSED COMPONENTS - MAIN PAGE SECTION
============================================= */
.main-page-section{
  position: relative;
  width: 100vw;
  height: 85vh;

  display: flex;
  align-items: center;
}
.main-page-section .content-holder {
	
}
.main-page-section .content-holder .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	color: #fff;
	margin: 0;
}


/* MAIN PAGE SECTION MINI */
.main-page-section-mini {
  position: relative;
  width: 100vw;
  height: 28vh;

  display: flex;
  align-items: center;
}
.main-page-section-mini .content-holder {
	
}
.main-page-section-mini .content-holder .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	color: #fff;
	margin: 0;
}


/****** MAIN PAGE PROMO **********/
.main-promo-section {
	padding: 10vh 10vw;
  color: #fff;
  background:
    radial-gradient(900px 520px at 35% 35%, rgba(255,255,255,0.06), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #213b5b 0%, #163453 100%);
}
.main-promo-section-inner {
  max-width: 100%;
  margin: 0 auto;

  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT */
.main-promo-section .main-promo-section-inner .left-section {
  flex: 0 0 45%;
}

.main-promo-section .main-promo-section-inner .left-section .title {
	font-family: 'RobotoMedium', sans-serif;
  margin: 0 0 18px 0;
  font-size: 65px;
  line-height: 70px;
  font-weight: 500;
}

.main-promo-section .main-promo-section-inner .left-section .text {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #bfc7d0;
}

/* RIGHT */
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 10px;
}

/* Item row */
.right-section .promo-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.right-section .promo-item .promo-item__icon {
  flex: 0 0 100px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-section .promo-item .promo-item__icon img {
  height: 70px;
  object-fit: contain;
  display: block;
}

.right-section .promo-item .promo-item__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.right-section .promo-item .promo-item__text {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

/****** PAGE SECTION PROMO WHITE **********/
.promo-section-light {
	padding: 10vh 10vw;
  color: #fff;
  background-color: #fafafa;
}
.promo-section-light-inner {
  max-width: 100%;
  margin: 0 auto;

  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT */
.promo-section-light .promo-section-light-inner .left-section {
  flex: 0 0 50%;
}

.promo-section-light .promo-section-light-inner .left-section .title {
	font-family: 'RobotoMedium', sans-serif;
  margin: 0 0 18px 0;
  font-size: 65px;
  line-height: 70px;
  font-weight: 500;
  color: #133351;
}

.promo-section-light .promo-section-light-inner .left-section .text {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #0b2940;
  margin-bottom: 20px;
}
/* RIGHT */
.promo-section-light .right-section{
  flex: 0 0 50%;
  display: flex;
  align-items: flex-end;   /* bottom */
  justify-content: center;
}

.promo-section-light .right-image{
  width: 100%;
  
  height: auto;
  display: block;
}

/********* BOTOM PAGE PROMO ***********/
.bottom-promo-section {
	padding: 10vh 10vw;
  color: #fff;
  background:
    radial-gradient(900px 520px at 35% 35%, rgba(255,255,255,0.06), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #213b5b 0%, #163453 100%);
}
.bottom-promo-section .section-title {
	font-family: 'RobotoMedium', sans-serif;
	font-weight: 500;
	font-size: 65px;
	line-height: 70px;
	color: #fff;
}

.bottom-promo-section .section-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 18px;

	padding: 13px 26px;
	border-radius: 9999px;

	color: #fff;
	text-decoration: none;
	font-size: 20px;
	font-weight: 500;

	background: transparent;   /* true transparent */
	border: none;
}

.bottom-promo-section .section-button a::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 2px; /* border thickness */

	background: linear-gradient(90deg, #33B9FF, #36E5B2);

	/* cut the middle out so only border remains */
	-webkit-mask:
	linear-gradient(#000 0 0) content-box,
	linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	      mask-composite: exclude;

	pointer-events: none;
}


/* =========================
   			HELPERS
========================= */
.font-bolder {
	font-weight: 600;
}
.inline-block {
	display: inline-block;
}
.text-center {
	text-align: center;
}

.blue-color-text {
	color: #01a1e1;
}
.bg-gray {
	background-color: #fafafa;
}

.section-main-title {
	font-family: 'RobotoMedium', sans-serif;
	font-size: 65px;
	line-height: 70px;
	font-weight: 500;
}

.section-main-text {
	font-size: 20px;
	line-height: 30px;
	font-family: 'RobotoRegular', sans-serif;
}

/* =========================
   			BUTTONS
========================= */
.white-button {
	color: #ffffff;	
	border: solid 1px #ffffff;
	border-radius: 9999px;
	padding: 13px 26px;
	font-size: 20px;
	transition: background-color 200ms ease;	
}
.white-button:hover {
	background-color: #fff;
	color: #396989;
}

.blue-button {
	font-size: 20px;
	color: #fff !important;
	background-color: #01a1e1;
	padding: 13px 26px !important;
  border-radius: 9999px;
  font-weight: 300;
  transition: background-color 200ms ease;
}
.blue-button:hover {
	background-color: #20567a;
}

.special-button {
	transition: background-color 200ms ease;
}
.special-button:hover {
	background: #fff !important;
	color: #143351 !important;
}


/* =========================
   			ICONS
========================= */
.icon-hover { display: none; }
.f-socials a:hover .icon-active { display: none; }
.f-socials a:hover .icon-hover { display: inline; }



.icon-hover { display: none; }
.insights-details-social a:hover .icon-active { display: none; }
.insights-details-social a:hover .icon-hover { display: inline; }






/* PRIVACTY POLICY */

/* Modal base */
.privacy-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;               /* hidden by default */
}

.privacy-modal.is-open{
  display: block;
}

.privacy-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(11, 41, 64, 0.60);
}

/* Center dialog */
.privacy-modal__dialog{
  position: relative;
  width: calc(90vw - 0px);
  max-height: calc(90vh - 10px);
  margin: 40px auto;
  background: #fff;
  padding: 28px 28px 24px 28px;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* Title + text */
.privacy-modal__title{
  margin: 0 0 14px 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: 28px;
  line-height: 34px;
  color: #133351;
}

.privacy-modal__content {
  font-family: 'RobotoRegular', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #41586b;
}

.privacy-modal__content p {
  margin: 0 0 12px 0;
}

/* Close button */
.privacy-modal__close{
  position: absolute;
  right: 14px;
  top: 10px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 32px;
  line-height: 40px;
  color: #133351;
}

.privacy-modal__close:hover {
  opacity: 0.75;
}

/* prevent page scroll while modal is open */
body.modal-open{
  overflow: hidden;
}

.privacy-modal__content a {
	color: #01a1e1;
}

.privacy-modal__content a:hover {
	color: #20567a;
}

.insights-details-left #content {
	font-family: 'RobotoRegular', sans-serif;
}

.insights-details-left #content p, .insights-details-left #content ul, .insights-details-left #content ul li  {
	font-size: 20px;
	line-height: 30px;
	color: #41586b;
}


.lds-dual-ring {
	display: none;
	width: 80px;
	height: 80px;
	margin: 20px auto;
}
.lds-dual-ring:after {
	content: " ";
	display: block;
	width: 64px;
	height: 64px;
	margin: 8px;
	border-radius: 50%;
	border: 6px solid #01a1e1;
	border-color: #01a1e1 transparent #01a1e1 transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#message-sent, #message-error {
	display: none;
}

/* =========================
   RESPONSIVE
========================= */

.top-footer .mobile-view {
	display: none;
}
.top-footer .bottom-navigation .mobile-view {
	display: none;
}
.home-main-section-mobile-2 {
	display: none;
}


@media (max-width: 1800px) {

	.main-promo-section .main-promo-section-inner .left-section .title br, 
	.right-section .promo-item .promo-item__text br,
	.main-promo-section .main-promo-section-inner .left-section br,
	.promo-section-light .promo-section-light-inner .left-section .title br,
	.promo-section-light .promo-section-light-inner .left-section .text br {
		display: none;
	}

}


@media (max-width: 1670px) {
	.home-section-2 .left-section {
		padding-right: 3vw;
		flex: 0 0 50%;
	}

	.home-section-2 .right-section {
		flex: 0 0 50%;
	}
	.home-section-5 .left-section {
		flex: 0 0 50%;
	}

	.home-section-4 .left-section .section-text br, .home-section-5 .left-section .section-text br {
		display: none;
	}


	.insights-details-right .insights-details-form-card .insights-details-form-title br {
		display: none;
	}


}


@media (max-width: 1550px) {
	.main-navigation .links-nav div {
		margin: 0 10px;
	}
}


@media (max-width: 1400px) {

	.promo-section-light-inner {
		flex-direction: column;
		gap: 40px;
	}

	.promo-section-light .promo-section-light-inner .left-section {
		order: 2;
	}

	.promo-section-light .right-section {
		order: 1;
		flex: 0 0 100%;
		display: block;
		margin: 0 auto 40px;
	}

	.promo-section-light .right-image {
		width: 60vw;

	}


	.insights-list-section .insights-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 1380px) {
	.main-navigation .links-nav div {
		margin: 0 5px;
	}
	.top-footer .bottom-navigation {
		gap: 2vw;
	}
}

@media (max-width: 1250px) {	

	.main-navigation .logo-nav {
		width: 150px;
	}

	.main-navigation .logo-nav img {
		width: 150px;
	}

	.main-navigation .links-nav {
		margin-top: 10px;
	}
}




@media (max-width: 1150px) {
	.main-navigation {
		padding: 25px 0;
	}

	.main-navigation .links-nav {
		display: none;
	}

	.main-navigation .mobile-nav {
		display: inline-block;
		float: right;
	}

	.main-navigation .mobile-nav img {
		width: 40px;
	}

	.main-y-pagination {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}



	.top-footer {
		display: block;
		text-align: center;
	}
	.top-footer .company {
		width: 100%;
		display: block;
	}
	.top-footer .company .f-logo {
		margin: 0 auto;
		padding-bottom: 30px;
	}
	.top-footer .desktop-view, .top-footer .bottom-navigation .desktop-view {
		display: none !important;
	}

	.top-footer .mobile-view, .top-footer .bottom-navigation .mobile-view  {
		display: block;
	}	

	.top-footer .bottom-navigation {
		display: block;
		width: 100%;
	}

	.top-footer .bottom-navigation .chunk {
		display: block;

	}

	.top-footer .bottom-navigation .chunk a {
		font-size: 20px;
		margin: 15px 0;
		display: inline-block;
	}

	.top-footer .bottom-navigation .chunk .footer-btn {
		display: inline-block;
	}

	.bottom-navigation .f-socials {
		margin-top: 50px;
	}
	.bottom-navigation .f-socials img {
		height: 22px;
		margin: 0 10px;
	}

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

	.bottom-footer .x-divider {
		display: none;
	}

	.bottom-footer a {
		display: block;
		margin-top: 10px;
	}





}


@media (max-width: 1050px) {
	

}


@media (max-width: 1050px) {
	/* HOME PAGE */
	.home-main-section {
			min-height: 100%;
			background-color: #081520; /* fallback */
  		background-image:
	    /* soft blue lift from bottom-left */
	    radial-gradient(circle at 18% 78%,
	      rgba(25, 46, 66, 0.95) 0%,
	      rgba(18, 34, 50, 0.90) 35%,
	      rgba(8, 21, 32, 0.92) 60%,
	      rgba(3, 7, 10, 0.98) 100%
	    ),
	    /* subtle top-right vignette */
	    radial-gradient(circle at 88% 10%,
	      rgba(3, 7, 10, 1) 0%,
	      rgba(3, 7, 10, 0.85) 45%,
	      rgba(3, 7, 10, 0) 72%
	    ),
	    /* overall diagonal base */
	    linear-gradient(135deg,
	      #03070A 0%,
	      #0B1A27 55%,
	      #192E42 100%
	    );
	}
	.home-main-section .section-content {
			padding-top: 10vh;
			padding-bottom: 10vh;
	}

	.home-main-section-mobile-2 {
		display: block;
		background-color: #000000;
		color: #fafafa;
		height: 55vh;
		min-height: 400px;
		background-image: url("/imagesNew/home/section-1.png");
		background-size: cover;
		background-position: center;
		background-position-x: right;
		background-repeat: no-repeat;
	}

	.home-section-2 {
		display: block;
	}


	.home-section-2 .left-section {
		padding: 50px 10vw;
	}

	.home-section-2 .right-section {
		min-height: 330px;
		height: 33vh;
	}



	.home-section-3  {
		min-height: 100%;
			background-color: #195176; /* fallback */
  		background-image: none;
	    
	}

	.home-section-3-mobile-2 {
		display: block;
		background-color: #195176;
		color: #fafafa;
		height: 45vh;
		min-height: 350px;
		background-image: url("/imagesNew/home/section-3.png");
		background-size: cover;
		background-position: center;
		background-position-x: right;
		background-repeat: no-repeat;
	}

	.home-section-3 .section-content {
			padding: 50px 10vw;
	}

	.home-section-3 .section-content .section-block {
		width: 100%;
	}

	.home-section-4 {
		flex-direction: column;
	}

	.home-section-4 .left-section {
		flex: 0 0 100%;
		padding: 50px 10vw;
		order: 2;
		margin-bottom: 50px;
	}

	.home-section-4 .right-section {
		flex: 0 0 100%;
		min-height: 450px;
		order: 1;
		background-position: center;
		padding-top: 0;
	}

	.home-section-4 .left-section .section-title {
		margin-top: 0;
	}


	.home-section-5 {
		flex-direction: column;
	}

	.home-section-5 .left-section {
		flex: 0 0 100%;
		padding: 50px 10vw;
		order: 2;
		background:
  /* soft light spot (top-right) */
  radial-gradient(1000px 800px at 86% 12%,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0.00) 72%
  ),
  /* main color flow: BLUE bottom-left -> GREEN top-right */
  linear-gradient(45deg,
    #4EA2D9 0%,
    #53AFCF 42%,
    #57B9C4 68%,
    #5CC3A7 100%
  );
	}

	.home-section-5 .right-section {
		flex: 0 0 100%;
		min-height: 620px;
		order: 1;
		background-position: center;
		padding-top: 0;
	}







	.home-section-6 .top-content {
		padding-top: 50px;
	}

	.home-section-6 .info-card {
		text-align: center;
	}

	.home-section-6 .two-cards {
		padding: 10px 20px 50px 20px;
	}

	.home-section-6 .info-card__item {
		display: block;
	}
	.home-section-6 .info-card__icon {
		display: block;
		margin: 10px auto;
	}

	.home-section-6 .two-cards__wrap {
    max-width: 90vw;
    gap: 24px;
  }
  .home-section-6 .info-card {
    padding: 44px 34px 34px;
  }

  .home-section-6 .two-cards__wrap {
    grid-template-columns: 1fr;
  }
  
  .home-section-6 .info-card__title {
    font-size: 28px;
  }
  .home-section-6 .info-card__heading,
  .home-section-6 .info-card__text {
    font-size: 18px;
  }
  .home-section-6 .info-card__btn {
    margin-left: 0;
    font-size: 18px;
    padding: 9px 20px;
    margin-bottom: 20px;
    gap: 5px;
  }





  /* WHat we do */
  #what-we-do-main-section {
			min-height: 100%;
			background-color: #081520; /* fallback */
  		background-image:
	    /* soft blue lift from bottom-left */
	    radial-gradient(circle at 18% 78%,
	      rgba(25, 46, 66, 0.95) 0%,
	      rgba(18, 34, 50, 0.90) 35%,
	      rgba(8, 21, 32, 0.92) 60%,
	      rgba(3, 7, 10, 0.98) 100%
	    ),
	    /* subtle top-right vignette */
	    radial-gradient(circle at 88% 10%,
	      rgba(3, 7, 10, 1) 0%,
	      rgba(3, 7, 10, 0.85) 45%,
	      rgba(3, 7, 10, 0) 72%
	    ),
	    /* overall diagonal base */
	    linear-gradient(135deg,
	      #03070A 0%,
	      #0B1A27 55%,
	      #192E42 100%
	    );
	    height: 40vh;
	}

	.what-we-do-main-section-mobile-2 {
		display: block;
		background-color: #000000;
		color: #fafafa;
		height: 30vh;
		min-height: 270px;
		background-image: url("/imagesNew/whatwedo/main-section.png");
		background-size: cover;
		background-position: center;
		background-position-x: right;
		background-repeat: no-repeat;
	}

	/* Who we are */
	#who-we-are-main-section {
			min-height: 100%;
			background-color: #081520; /* fallback */
  		background-image:
	    /* soft blue lift from bottom-left */
	    radial-gradient(circle at 18% 78%,
	      rgba(25, 46, 66, 0.95) 0%,
	      rgba(18, 34, 50, 0.90) 35%,
	      rgba(8, 21, 32, 0.92) 60%,
	      rgba(3, 7, 10, 0.98) 100%
	    ),
	    /* subtle top-right vignette */
	    radial-gradient(circle at 88% 10%,
	      rgba(3, 7, 10, 1) 0%,
	      rgba(3, 7, 10, 0.85) 45%,
	      rgba(3, 7, 10, 0) 72%
	    ),
	    /* overall diagonal base */
	    linear-gradient(135deg,
	      #03070A 0%,
	      #0B1A27 55%,
	      #192E42 100%
	    );
	    height: 40vh;
	}

	.who-we-are-main-section-mobile-2 {
		display: block;
		background-color: #000000;
		color: #fafafa;
		height: 30vh;
		min-height: 270px;
		background-image: url("/imagesNew/whoweare/main-section.png");
		background-size: cover;
		background-position: center;
		background-position-x: right;
		background-repeat: no-repeat;
	}

	/* Who we service */
	#who-we-service-main-section {
			min-height: 100%;
			background-color: #081520; /* fallback */
  		background-image:
	    /* soft blue lift from bottom-left */
	    radial-gradient(circle at 18% 78%,
	      rgba(25, 46, 66, 0.95) 0%,
	      rgba(18, 34, 50, 0.90) 35%,
	      rgba(8, 21, 32, 0.92) 60%,
	      rgba(3, 7, 10, 0.98) 100%
	    ),
	    /* subtle top-right vignette */
	    radial-gradient(circle at 88% 10%,
	      rgba(3, 7, 10, 1) 0%,
	      rgba(3, 7, 10, 0.85) 45%,
	      rgba(3, 7, 10, 0) 72%
	    ),
	    /* overall diagonal base */
	    linear-gradient(135deg,
	      #03070A 0%,
	      #0B1A27 55%,
	      #192E42 100%
	    );
	    height: 40vh;
	}

	.who-we-service-main-section-mobile-2 {
		display: block;
		background-color: #000000;
		color: #fafafa;
		height: 30vh;
		min-height: 270px;
		background-image: url("/imagesNew/whoweservice/main-section.png");
		background-size: cover;
		background-position: center;
		background-position-x: right;
		background-repeat: no-repeat;
	}

	.leadership-section .leader {
		display: block;
	}

	.leadership-section .leader__photo {
		margin-bottom: 20px;
	}

	.leadership-section .leader__photo img {
		width: auto;
	}




	/* INsights */
	.insights-list-section .section-title br, .insights-list-section .section-text br {
		display: none;
	}


  .contact-grid {
  	grid-template-columns: 1fr;
  }

  .contact-right {
  	margin-bottom: 70px;
  }


  .insights-details-section .insights-details-grid {
  	grid-template-columns: 1fr;
  }





  /* Template pages */
  .main-promo-section-inner {
  	display: block;
  }
  .main-promo-section .main-promo-section-inner .left-section {
  	margin-bottom: 40px;
  }

  .main-promo-section .main-promo-section-inner .left-section br {
  	display: none;
  }


}

@media (max-width: 850px) {
	.faq-questions-section .section-title br, .home-section-3 .section-content .section-title br, .bottom-promo-section .section-title br {
		display: none;
	}
}


@media (max-width: 650px) {

	.home-main-section .section-content .section-title h1, .home-section-2 .left-section .section-title, 
	.home-promo-section .section-title, .main-page-section .content-holder .section-title {
		font-size: 34px;
		line-height: 42px;
	}

	.home-main-section .section-content .section-text, .home-section-6 .top-content .section-text {
		font-size: 18px;
		line-height: 25px;
		width: 79%;
	}

	.home-section-6 .top-content .section-text {
		margin-top: 20px;
	}

	.home-main-section .section-content .section-text br, 
	.home-section-2 .left-section .section-text br,
	.home-section-3 .section-content .section-block br,
	.home-section-4 .left-section .section-text br {
		display: none;
	}

	.home-main-section .section-content .section-button a, .home-section-3 .section-content .section-button a {
		font-size: 18px;
		padding: 10px 20px;
	}

	.home-section-2 .left-section .section-text, .home-promo-section .section-text {
		font-size: 18px;
		line-height: 25px;
	}

	.home-section-2 .left-section .section-button a, .home-promo-section .section-button a, 
	.bottom-promo-section .section-button a, .home-section-4 .left-section .section-button a, .home-section-5 .left-section .section-button a {
		font-size: 18px;
		padding: 10px 20px;
	}

	.home-section-6 .top-content .section-title {
		font-size: 34px;
		line-height: 42px;
		max-width: 82%;
	}
	.home-section-6 .top-content {
		padding-top: 5vh;
	}


	.home-promo-section {
		padding: 70px 0;
	}
	




	.home-section-4 .left-section {
		padding: 0 10vw;
	}

	.home-section-4 .right-section {
		min-height: 350px;
	}


	.home-section-5 .right-section {
		min-height: 300px;
	}

	.main-page-section-mini .content-holder .section-title, .section-main-title, .bottom-promo-section .section-title, 
	.home-section-3 .section-content .section-title, .home-section-4 .left-section .section-title, 
	.home-section-5 .left-section .section-title {
		font-size: 34px;
		line-height: 42px;
	}

	.section-main-text, .contact-method-note, .contact-method-link, .contact-input, .contact-input-textarea,
	.contact-label, .contact-check, .faq-questions-section .faq-list .faq-item .faq-content p, 
	.home-section-3 .section-content .section-block, .home-section-4 .left-section .section-text, 
	.home-section-5 .left-section .section-text {
		font-size: 18px !important;
		line-height: 25px;
	}


	.bottom-promo-section {
		padding: 50px 10vw;
	}


	.faq-questions-section .faq-list {
		padding: 30px 0;
	}

	.faq-questions-section .faq-list .faq-item {
		margin: 20px 0;
		padding: 15px 30px;
	}

	.faq-questions-section .faq-list .faq-item .faq-icon {
		width: 20px;
		height: 20px;
		flex: 0 0 20px;
	}
	.faq-questions-section .faq-list .faq-item .faq-icon::before {
		width: 20px;
	}
	.faq-questions-section .faq-list .faq-item .faq-icon::after {
		height: 20px;
	}


	.contact-subtitle, .contact-card-title {
		font-size: 26px;
		line-height: 32px;
	}

	.faq-questions-section .faq-list .faq-item .faq-summary {
		font-size: 20px;
		line-height: 26px;
	}

	.contact-submit {
		font-size: 16px !important;
		line-height: 22px;
		padding: 8px 16px;
	}


	/* Insights */
	.insights-list-section .insights-grid {
		grid-template-columns: repeat(1, 1fr);
	}

	.insights-list-section .insights-title {
		font-size: 20px;
		line-height: 26px;
	}

	.insights-btn {
		font-size: 18px;
		line-height: 25px;
		padding: 10px 20px;
	}

	.privacy-modal__dialog {
		max-height: 100vh;
		margin: 0;
		padding: 30px;
		width: calc(100vw - 60px);
	}

	.privacy-modal__content {
		margin-bottom: 70px;
	}

 /* Template pages */

	.main-promo-section, .promo-section-light {
		padding: 50px 10vw;
	}

	.main-promo-section .main-promo-section-inner .left-section .title, 
	.promo-section-light .promo-section-light-inner .left-section .title {
		font-size: 34px;
		line-height: 42px;
	}

	.main-promo-section .main-promo-section-inner .left-section {
		text-align: center;
	}

	.right-section .promo-item .promo-item__title {
		font-size: 20px;
		line-height: 26px;
	}

	.main-promo-section .main-promo-section-inner .left-section .text, 
	.right-section .promo-item .promo-item__text,
	.promo-section-light .promo-section-light-inner .left-section .text {
		font-size: 18px;
		line-height: 25px;
	}

	.right-section .promo-item {
		display: block;
		text-align: center;
	}

	.right-section .promo-item .promo-item__icon {
		margin: 0 auto 20px;
	}

	.promo-section-light .right-section {
		margin: 0 auto;
	}
	.promo-section-light .right-image {
		width: 80vw;
	}




	.leadership-section {
		padding: 50px 10vw;
	}

	.leadership-section .leadership__title {
		margin-bottom: 40px;
		font-size: 34px;
		line-height: 42px;
	}

	.leadership-section .leader__name span {
		display: block;
	}

	.mobile-hidden {
		display: none !important;
	}

	.leadership-section .leader__photo {
		text-align: center;
		height: 400px;
	}

	.leadership-section .leader__photo img {
		width: 100%;
	}

	.leadership-section .leader__name {
		font-size: 20px;
		line-height: 26px;
	}

	.leadership-section .leader__bio {
		font-size: 18px;
		line-height: 25px;
	}

	.leader + .leader {
		margin-top: 20px;
	}



	.insights-details-section .section-title {
		font-size: 34px;
		line-height: 42px;
	}

	.insights-details-form-title {
		font-size: 20px;
		line-height: 26px;
	}

	.insights-details-check, .insights-details-input, .insights-details-label {
		font-size: 18px;
		line-height: 25px;
	}

	.insights-details-submit {
		font-size: 16px !important;
		line-height: 22px;
		padding: 8px 16px;
	}

	.insights-details-required {
		font-size: 12px;
	}

	.insights-details-form-card {
		padding: 25px;
	}

	.contact-card {
		padding: 25px;
	}

	.contact-input, .contact-input-textarea, .insights-details-input {
		width: 88%;
	}

}


@media (max-height: 500px) {
	.mobile-menu-modal__nav {
		margin-top: 20px;
		gap: 10px;
	}
	.mobile-menu-modal__nav a {
		font-size: 18px;
		line-height: 26px;
	}



}


@media (max-width: 500px)
{

}