:root {
  --page: #30327b;
  --panel: #1b1d47;
  --panel-soft: #22245a;
  --line: rgba(255, 255, 255, 0.32);
  --muted: #c8c9e3;
  --white: #ffffff;
  --orange: #ff8514;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.service-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 3%, rgba(255, 255, 255, 0.05), transparent 16rem),
    linear-gradient(180deg, #31327b 0%, #2f3179 44%, #21224a 44.1%, #21224a 48%, #30327b 48.1%);
}

.container {
  width: min(1800px, calc(100% - 120px));
  margin-inline: auto;
}

.section-pad {
  padding: 72px 0;
}

.tight-top {
  padding-top: 38px;
}
.tight-top.mb-0 {
	margin-bottom: 0;
}

.hero-section {
  position: relative;
  min-height: 840px;
  padding-top: 108px;
  background:
    linear-gradient(90deg, rgba(48, 50, 123, 0.98), rgba(48, 50, 123, 0.76) 72%, rgba(21, 23, 60, 0.94)),
    radial-gradient(circle at 80% 26%, rgba(122, 127, 215, 0.38), transparent 12rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  align-items: start;
  gap: 80px;
}

.hero-copy h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 5vw, 94px);
  font-weight: 900;
  line-height: 0.99;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 780px;
  margin: 48px 0 28px;
  font-size: clamp(28px, 2.3vw, 42px);
  line-height: 1.16;
  font-family: 'Poppins';
  font-weight: 800;
  text-transform: uppercase;
}

.orange-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.hero-orb {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin-top: 64px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.82;
  /*background:
    radial-gradient(circle at 36% 28%, rgba(136, 144, 231, 0.3), transparent 30%),
    radial-gradient(circle at 50% 56%, rgba(14, 18, 44, 0.86), rgba(65, 70, 145, 0.72) 52%, rgba(131, 139, 231, 0.38) 65%, transparent 70%);*/
  filter: drop-shadow(0 30px 60px rgba(7, 9, 30, 0.52));
}

.hero-orb-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-orb-video[hidden] {
  display: none;
}

/*.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 48% 50%, transparent 0 13px, rgba(151, 158, 235, 0.24) 14px 16px),
    repeating-linear-gradient(60deg, transparent 0 16px, rgba(160, 168, 245, 0.18) 17px 20px),
    repeating-linear-gradient(120deg, transparent 0 16px, rgba(160, 168, 245, 0.14) 17px 20px);
  mask-image: radial-gradient(circle, #000 0 65%, transparent 70%);
}

.hero-orb.has-video::before {
  display: none;
}

.hero-orb::after {
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.12), transparent 24%);
}
*/
@media (prefers-reduced-motion: reduce) {
  .hero-orb-video {
    animation: none;
  }
}

.feature-wrap {
  margin-top: 42px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-row-top {
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  margin-bottom: 20px;
}

.feature-pill {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(31, 34, 83, 0.94), rgba(28, 30, 73, 0.96));
  box-shadow: inset 0 8px 28px rgba(255, 255, 255, 0.05), 0 10px 24px rgba(0, 0, 0, 0.16);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  grid-column: span 2
}

.feature-pill::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.feature-pill:nth-child(1), .feature-pill:nth-child(2) {
	grid-column: span 3;
}

.mega-title {
  margin: 0 0 44px;
  color: var(--orange);
  font-size: clamp(58px, 6.7vw, 118px);
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.outline-panel,
.outline-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(27, 29, 71, 0.64);
  color: var(--muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.outline-panel {
  padding: 60px 62px;
	* {
		text-align: left!important;
	}
}

.intro-panel {
  min-height: 1130px;
}

.outline-panel h3:not(.page_heading),
.section-title,
.final-cta h2,
.faq-section h2 {
  margin: 45px 0 24px;
  color: var(--white);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 900;
  line-height: 1.1;
}

.outline-panel h4,
.outline-card h4 {
  margin: 38px 0 12px;
  color: var(--white);
  font-size: clamp(22px, 1.6vw, 30px);
  font-weight: 900;
  line-height: 1.22;
}

.outline-panel h4:first-child,
.outline-card h4:first-child {
  margin-top: 0;
}

.outline-panel p,
.outline-panel li,
.outline-card p {
  /*font-family: "Helvetica";
    font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 164.286%;
	letter-spacing: 1.16px;
	margin: 0 0 22px;*/
}

.outline-panel ul {
  margin: 0 0 28px 18px;
  padding: 0;
}

.center-action {
  margin-top: 28px;
  text-align: center!important;
}

.tabs-section {
  padding: 0;
  margin-top: 20px;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.tab-button, .side-tab {
  min-height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(49, 51, 124, 0.55);
  color: rgba(255, 255, 255, 0.52);
  font: inherit;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
	opacity: .7;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.tab-button.active,
.side-tab.active {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: transparent!important;
	opacity: 1;
}

.tab-panel,
.side-panel {
  display: none;
}

.tab-panel.active,
.side-panel.active {
  display: block;
}

.tab-panel {
  min-height: 350px;
}

.image-title-band {
	position: relative;
	margin: 0;
}
.image-title-band img {
  width: 100%;
}

.side-tabs {
  padding-top: 0;
}

.side-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 22px;
  align-items: stretch;
}

.side-tab-buttons {
  display: grid;
  gap: 18px;
  align-content: flex-start;
}

.side-tab {
  min-height: 100px;
  border-radius: 26px;
  font-size: 18px;
}

.side-panel {
  min-height: 568px;
}

.slider-section {
  position: relative;
  padding: 54px 0 82px;
  background: #21224a;
  margin: 0;
  padding-bottom: 0;
}
.slider-section {
	.slick-prev, .slick-next {
		background: transparent!important;
		width: 35px;
		height: 35px;
		border-radius: 100%;
		border: 1px solid #fff;
		&:before {
			content: '';
			width: 10px;
			height: 10px;
			border-left: 2px solid #fff;
			border-top: 2px solid #fff;
			background: transparent;
			position: absolute;
            top: 50%;
            left: 18px;
            transform: translate(-50%, -50%) rotate(-45deg);
		}
	}
	.slick-next {
		right: -36px;
		&:before {
			transform: translate(-50%, -50%) rotate(135deg);
			left: 15px;
		}
	}
}

.card-slider {
  width: calc(100% - 160px);
  margin-inline: auto;
}
.card-slider .slick-slide {
	margin-right: 45px;
}
.card-slider:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}

.outline-card {
  min-height: 630px;
  margin: 0 28px;
  padding: 46px 44px;
	* {
		text-align: left!important;
	}
	p {
		 font-family: 'Helvetica' !important;
	}
	h3 {
		margin-bottom: 30px;
	}
}

.card-slider:not(.slick-initialized) .outline-card {
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(26, 28, 70, 0.84);
  color: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.slick-prev {
  left: -84px;
}

.slick-next {
  right: -84px;
}

.slick-prev::before,
.slick-next::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.slick-prev::before {
  content: "<";
}

.slick-next::before {
  content: ">";
}

.accordion-section {
  background: #21224a;
	margin: 0;
}

.accordion-section .outline-panel {
  padding: 46px 62px 58px;
  background: #1a1b3a;
}

.accordion {
  display: grid;
  gap: 22px;
}

.accordion-item,
.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  color: #22264b;
}

.accordion-title,
.faq-title {
  position: relative;
  width: 100%;
  min-height: 92px;
  padding: 0 70px 0 40px;
  border: 0;
  background: transparent;
  color: #25264c;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
	font-family: "Poppins";

}
.outline-panel .accordion-title {
	background: #fff!important;
	color: #21224a!important;
	font-family: "Poppins";
	font-weight: 800;
}

.accordion-title::after {
  content: "";
  position: absolute;
  right: 36px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-right: 4px solid #111;
  border-bottom: 4px solid #111;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.accordion-item.open .accordion-title::after {
  transform: translateY(-20%) rotate(225deg);
}

.accordion-content,
.faq-content {
  display: none;
  padding: 0 40px 34px;
}

.accordion-item.open .accordion-content,
.faq-item.open .faq-content {
  display: block;
}

.accordion-content p {
  margin: 0 0 8px;
  color: #5e6284;
  font-size: 20px;
  line-height: 1.55;
  font-family: 'Roboto' !important;
	font-weight:300;
}

.dark-band {
  background: #30327b;
	margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
}

.cards-grid .outline-card {
  min-height: 360px;
  margin: 0;
}

.cards-grid .tall-card {
  grid-row: span 2;
  min-height: 740px;
}

.stack-panels {
  display: grid;
  gap: 62px;
}

.long-copy .outline-panel {
  min-height: 300px;
  padding: 44px 40px;
}
.long-copy {
	margin: 0;
	background: #21224a;
}

.projects-section {
  padding: 54px 0 74px;
  background: #30327b;
  margin-top: 0;
}

.section-title {
  margin-bottom: 34px;
}

.projects-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}
.projects-slider a {
	display: block;
	padding: 0 21px;
}

.projects-slider.slick-initialized {
  display: block;
}

.projects-slider img {
  width: 100%;
  aspect-ratio: 0.67;
  object-fit: cover;
  object-position: top center;
}

.repeat-accordion {
  padding-top: 68px;
  padding-bottom: 72px;
}

.geo-section {
  background: #21224a;
      margin-top: 0;
}

.geo-panel {
  padding: 48px;
}

.inner-panel {
  margin-bottom: 42px;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(29, 31, 76, 0.76);
}

.geo-panel h3 {
  margin-top: 58px;
}

.geo-layout {
  display: grid;
  grid-template-columns: 1fr 690px;
  gap: 42px 48px;
  align-items: start;
}

.geo-layout img {
  width: 100%;
  min-height: 360px;
  border: 0;
  object-fit: cover;
}

.service-list h4 {
  margin-top: 0;
}

.final-cta {
  background: #30327b;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(36px, 3.6vw, 58px);
  text-transform: uppercase;
}

.compact {
  margin-top: 26px;
  margin-bottom: 48px;
}

.compact .feature-pill {
  min-height: 86px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 70px;
  margin-top: 34px;
  text-align: left;
}

.cta-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.cta-copy h3 {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.rule-dot {
  position: relative;
  height: 24px;
  margin-top: 30px;
}

.rule-dot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.rule-dot::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: #30327b;
}

.faq-section {
  padding: 30px 0 58px;
  background: #30327b;
}

.faq-section h2 {
  margin-bottom: 26px;
  font-size: clamp(52px, 5vw, 72px);
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.faq-title {
  min-height: 66px;
  padding: 0 22px;
  color: var(--muted);
  font-size: 30px;
	    font-weight: 400;
	font-family: Lato;
}

.faq-content {
  padding: 0 22px 18px;
}

.faq-content p {
  margin: 0;
  font-size: 20px;
	font-family: Roboto;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 48px, 980px);
  }

  .hero-grid,
  .side-grid,
  .geo-layout,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-orb {
    display: none;
  }

  .tab-buttons,
  .feature-row,
  .feature-row-top,
  .cards-grid,
  .projects-slider {
    grid-template-columns: 1fr;
  }

  .card-slider {
    width: 100%;
  }

  .card-slider:not(.slick-initialized) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 32px, 560px);
  }

  .section-pad,
  .hero-section {
    padding: 48px 0;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy p {
    margin-top: 28px;
    font-size: 24px;
  }

  .mega-title {
    font-size: 42px;
  }

  .outline-panel,
  .outline-card,
  .geo-panel {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .intro-panel,
  .tab-panel,
  .side-panel,
  .outline-card,
  .cards-grid .tall-card {
    min-height: auto;
  }

  .feature-pill {
    min-height: 78px;
    padding: 0 18px;
    font-size: 16px;
  }

  .feature-pill::before {
    width: 9px;
    height: 9px;
    margin-right: 10px;
  }

  .tab-button,
  .side-tab {
    min-height: 78px;
    font-size: 16px;
  }

  .image-title-band {
    min-height: 420px;
  }

  .accordion-section .outline-panel {
    padding: 28px 18px;
  }

  .accordion-title {
    min-height: 74px;
    padding-left: 22px;
    font-size: 15px;
  }

  .accordion-content {
    padding-inline: 22px;
  }

  .geo-layout img {
    min-height: 250px;
  }

  .cta-copy h3 {
    font-size: 36px;
  }
}





/************************************************/
/* ---------------------------------------------------------------
   Banner section
   Full-bleed photo hero, centred type, orange display heading.

   Fonts: Anton (display) + Montserrat 700/800 (subtext, button).
   Enqueue them in functions.php:

     wp_enqueue_style(
       'banner-fonts',
       'https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@700;800&display=swap',
       array(),
       null
     );
   --------------------------------------------------------------- */

.banner {
	position: relative;
	display: flex;
	margin:0;
	align-items: center;
	justify-content: center;
	min-height: clamp(24rem, 52vw, 40rem);
	padding: clamp(3.5rem, 9vw, 7rem) 1.25rem;
	overflow: hidden;
	background-color: #1b2733;
	text-align: center;
	isolation: isolate;
}

/* Image layer */
.banner__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Even scrim so the photo stays visible but the type still reads */
.banner--has-image::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(18, 27, 38, 0.4);
}

/* Content */
.banner__inner {
	position: relative;
	width: 100%;
	max-width: 60rem;
}

.banner__heading {
	margin: 0; 
	text-transform: uppercase; 	
	color: #FA8511;
	text-align: center;
	font-family: Poppins;
	font-size: 120px;
	font-style: normal;
	font-weight: 800;
	line-height: 90%; /* 90% */
	text-transform: uppercase;
	@media (max-width:1720px){
		font-size: 96px;
	}
	
	@media (max-width:767px){
		font-size: 46px;
	}
}

/* Dashed rule under the heading */
.banner__rule {
	display: block;
	width: min(26rem, 62%);
	margin: 1.1rem auto 0;
	border-top: 2px dashed #8ab6e8;
	opacity: 0.9;
}

.banner__subtext {
	margin: 1.1rem 0 0;	 
	color: #FFF;
	font-family: Poppins;
	font-size: 52px;
	font-style: normal;
	font-weight: 800;
	line-height: 125%; /* 125% */
	text-transform: uppercase;
	@media (max-width:767px){
		font-size: 28px;
	}
}

.banner__button {
	display: inline-block;
	margin-top: 1.75rem;
	padding: 0.8em 2em; 
	
}

.banner__button:hover,
.banner__button:focus-visible {
	background-color: #d96f0d;
	color: #fff;
	transform: translateY(-2px);
}

.banner__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.banner--has-image::after {
		background: rgba(18, 27, 38, 0.55);
	}

	.banner__rule {
		width: 70%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.banner__button {
		transition: none;
	}

	.banner__button:hover,
	.banner__button:focus-visible {
		transform: none;
	}
}

 




.text-block {
	width: 100%;
	padding: 40px 0;  
	margin:0;
	background: #2E3070; 
}
 

.text-block__card {
	padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);	 
	text-align: left;
	
	border-radius: 37.652px;
	border: 1.177px solid rgba(255, 255, 255, 0.61);
	background: rgba(0, 0, 0, 0.22);
}
.text-block__button_box{
	text-align:center;
}
.text-block__copy { 	
	color: #FFF;
	font-family: Roboto;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%; /* 33.6px */
	letter-spacing: 0.24px;
	@media (max-width:1720px){
		font-size:18px;
	}
}

 
.text-block__copy > *:first-child {
	margin-top: 0;
}

.text-block__copy > *:last-child {
	margin-bottom: 0;
}

.text-block__copy p {
	margin: 0;
}

.text-block__copy a {
	color: #f5851f;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.text-block__copy a:hover {
	color: #ffa447;
}

.text-block__copy strong {
	font-weight: 700;
	color: #fff;
}

.text-block__copy ul,
.text-block__copy ol {
	margin: 0.75em 0;
	padding-left: 1.25em;
}

.text-block__button {
	display: inline-block;
	margin-top: clamp(1.5rem, 3vw, 2.25rem);	
}

 



 

.text-group {
	width: 100%;
	margin: 0; /* full bleed out of theme container */
	padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
	background: #21224A; 
}

.text-group__inner { 
	margin:0 auto;
}

.text-group__heading {
	margin: 0;
	color: #fff; 
	 
	font-family: Montserrat;
	font-size: 28px; 
	font-weight: 700;
	line-height: 100%; /* 28px */
	letter-spacing: -0.28px;
	@media (max-width: 1720px){
		font-size: 22px; 
	}
}

.text-group__intro {
	margin: 0.75rem 0 0; 
	
	color: #FFF;
	font-family: Roboto;
	font-size: 18.826px; 
	font-weight: 300;
	line-height: 140%; /* 26.356px */
	letter-spacing: 0.188px;
	@media (max-width: 1720px){
		font-size: 16px; 
	}
}

/* Card stack */
.text-group__list {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 50px;
}

.text-group__item {
	padding: 40px; 
	
	border-radius: 37.652px;
	border: 1.177px solid rgba(255, 255, 255, 0.61);
	background: rgba(55, 55, 55, 0.22);
	@media (max-width: 1720px){
		border-radius: 26px;
	}
}

.text-group__item-heading {
	margin: 0 0 1rem; 
	color: #FFF;
	font-family: Poppins;
	font-size: 24px; 
	font-weight: 700;
	line-height: 130%; /* 130% */
	@media (max-width: 1720px){
		font-size: 20px; 
	}
}

.text-group__item-copy {
	color: #eceefa;  
	font-family: Roboto;
	font-size: 20px; 
	font-weight: 300;
	line-height: 153%; /* 30.6px */
	letter-spacing: 0.2px;
	@media (max-width: 1720px){
		font-size: 16px; 
	}
}

/* Wysiwyg output */
.text-group__item-copy > *:first-child {
	margin-top: 0;
}

.text-group__item-copy > *:last-child {
	margin-bottom: 0;
}

.text-group__item-copy p {
	margin: 0 0 1em;
}

.text-group__item-copy a {
	color: #f5851f;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.text-group__item-copy a:hover {
	color: #ffa447;
}

.text-group__item-copy strong {
	font-weight: 700;
	color: #fff;
}

.text-group__item-copy ul,
.text-group__item-copy ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

.text-group__item-copy li {
	margin-bottom: 0.4em;
}

.text-group__item-copy h2,
.text-group__item-copy h3,
.text-group__item-copy h4 {
	margin: 1.5em 0 0.6em;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
}

.flim_section{
	margin:0 !important;
	position:relative;
	padding:0 !important;
}
.flim__image{
	width:100%;
}
.flim__button_box{
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}



 
.text-section {	 
	 
	padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
	background-color: #21224A; 
	margin:0 !important;
}

.text-section__panel {
	margin-inline: auto;
	padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);  
	
	border-radius: 32px;
	background: rgba(3, 3, 12, 0.20);
}

 
 

.text-section__heading {
	margin: 0 0 0.9rem;  
	
	color: #FFF;
	font-family: Poppins;
	font-size: 24px; 
	font-weight: 700;
	line-height: 130%; /* 130% */
	@media (max-width: 1720px){
		font-size: 20px; 
	}
	@media (max-width: 1720px){
		font-size: 15px; 
	}
}

.text-section__copy {
	color: #eceefa; 
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 153%; /* 30.6px */
	letter-spacing: 0.2px;
	
	@media (max-width: 1720px){
		font-size: 18px; 
	}
	@media (max-width: 1720px){
		font-size: 14px; 
	}
}

/* Wysiwyg output */
.text-section__copy > *:first-child {
	margin-top: 0;
}

.text-section__copy > *:last-child {
	margin-bottom: 0;
}

.text-section__copy p {
	margin: 0 0 1em;
}

.text-section__copy a {
	color: #f5851f;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.text-section__copy a:hover {
	color: #ffa447;
}

.text-section__copy strong {
	font-weight: 700;
	color: #fff;
}

.text-section__copy ul,
.text-section__copy ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

.text-section__copy li {
	margin-bottom: 0.4em;
}

.text-section__copy h2,
.text-section__copy h3,
.text-section__copy h4 {
	margin: 1.5em 0 0.6em;
	color: #fff;
	font-size: 1em;
	font-weight: 700;
}
.text-section__block{
	margin-bottom: 50px;
}




 

.faq {
	width: 100%; 
	padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
	background-color: #2E3070; 
	margin:0 !important;
}

.faq__panel {	 
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 1.25rem;
	background-color: rgba(20, 20, 62, 0.4);
}

.faq__heading {
	margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem); 
	color: #FFF;
	font-family: Montserrat;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 28px */
	letter-spacing: -0.28px;
	@media (max-width:1720px){
		font-size: 22px;
	}
}

/* Two columns: accordion + image */
.faq__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
}

/* Accordion item */
.faq__item {
	border-radius: 0.9rem;
	background-color: #fff;
	box-shadow: 0 4px 14px rgba(8, 8, 30, 0.18);
	overflow: hidden;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.35rem;
	color: #21224A;  
	cursor: pointer;
	list-style: none;
	span, a, p li{
		color: #21224A;
		font-family: Poppins;
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height:  130%; /* 130% */
		@media (max-width:1720px){
			font-size: 20px;
		}
		@media (max-width:767px){
			font-size: 15px;
		}
	}
}

/* Hide the native disclosure triangle */
.faq__question::-webkit-details-marker {
	display: none;
}

.faq__question::marker {
	content: "";
}

.faq__question:focus-visible {
	outline: 3px solid #f5851f;
	outline-offset: -3px;
	border-radius: 0.9rem;
}

.faq__chevron {
	flex: none;
	width: 1.35rem;
	height: 1.35rem;
	color: #1c1b52;
	transition: transform 0.25s ease;
}

.faq__item[open] .faq__chevron {
	transform: rotate(180deg);
}

.faq__answer {
	padding: 0 1.35rem 1.35rem; 
	
	color: #21224A;
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 153%; /* 30.6px */
	letter-spacing: 0.2px;
	@media (max-width:1720px){
		font-size: 18px;
	}
	   @media (max-width:767px){
			font-size: 15px;
		}
	p, a, li, span{
		color: #21224A;
		font-size: 20px;
		@media (max-width:1720px){
			font-size: 18px;
		}
		 @media (max-width:767px){
			font-size: 15px;
		}
	}
}

.faq__answer p {
	margin: 0;
}

/* Image column */
.faq__media {
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	overflow: hidden; 
	background-color: rgba(20, 20, 62, 0.35);
}

.faq__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Stack on smaller screens, image first is usually less useful — keep it last */
@media (max-width: 860px) {
	.faq__layout {
		grid-template-columns: 1fr;
	}

	.faq__media {
		aspect-ratio: 16 / 10;
		max-width: 32rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.faq__chevron {
		transition: none;
	}
}





 

.text-gallery { 
	margin: 0 !important;
	 
	background-color: #2E3070; 
}

.text-gallery__panel {  
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
	border: 1px solid rgba(255, 255, 255, 0.22); 
	border-radius: 32px;
	background: rgba(3, 3, 12, 0.44);
}

.text-gallery__heading {
	margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
	color: #fff; 
	
	color: #FFF;
	font-family: Montserrat;
	font-size: 28px; 
	font-weight: 700;
	line-height: 100%; /* 28px */
	letter-spacing: -0.28px;
	@media (max-width: 1720px){
		font-size: 22px;
	}
	 @media (max-width:767px){
			font-size: 18px;
		}
}

/* --- Grid ------------------------------------------------------ */

/* Fallback: simple two-column grid */
.text-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
}

/* Mosaic: 2 cards / card + image + card / full-width card */
.text-gallery__grid--mosaic {
	grid-template-columns: repeat(12, 1fr);
}

.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(1) {
	grid-column: 1 / span 6;
}

.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(2) {
	grid-column: 7 / span 6;
}

.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(3) {
	grid-column: 1 / span 4;
}

.text-gallery__grid--mosaic .text-gallery__media {
	grid-column: 5 / span 4;
}

.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(4) {
	grid-column: 9 / span 4;
}

.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(5) {
	grid-column: 1 / span 12;
}

/* --- Cards ----------------------------------------------------- */

.text-gallery__card {
	padding: clamp(1.1rem, 2.2vw, 1.6rem);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 0.9rem;
	background-color: rgba(20, 20, 62, 0.45);
}

.text-gallery__title {
	margin: 0 0 1.1rem; 
	
	color: #FFF;
	font-family: Poppins;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 130% ; /* 130% */
	@media (max-width:1720px){
		font-size: 20px;
	}
	 @media (max-width:767px){
			font-size: 15px;
		}
}

.text-gallery__copy {
	color: #ffffff;  
	font-family: Roboto;
	font-size: 20px; 
	font-weight: 300;
	line-height: 153%; /* 30.6px */
	letter-spacing: 0.2px;
	@media (max-width:1720px){
		font-size: 18px;
	}
	 @media (max-width:767px){
			font-size: 15px;
		}
	p{
		color: #ffffff;  
		@media (max-width:1720px){
			font-size: 18px;
		}
		 @media (max-width:767px){
			font-size: 15px;
		}
	}
}

.text-gallery__copy p {
	margin: 0;
}

.text-gallery__copy a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.text-gallery__copy a:hover {
	color: #f5851f;
}

/* --- Image ----------------------------------------------------- */

.text-gallery__media {
	border-radius: 0.9rem;
	overflow: hidden;
	background-color: rgba(20, 20, 62, 0.35);
	min-height: 12rem;
}

.text-gallery__image {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

/* --- Responsive ------------------------------------------------ */

@media (max-width: 900px) {
	/* Collapse the mosaic to two columns */
	.text-gallery__grid--mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(1),
	.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(2),
	.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(3),
	.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(4),
	.text-gallery__grid--mosaic .text-gallery__media {
		grid-column: auto / span 1;
	}

	.text-gallery__grid--mosaic .text-gallery__card:nth-of-type(5) {
		grid-column: 1 / span 2;
	}

	.text-gallery__media {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}
}

@media (max-width: 600px) {
	.text-gallery__grid,
	.text-gallery__grid--mosaic {
		grid-template-columns: 1fr;
	}

	.text-gallery__grid--mosaic .text-gallery__card,
	.text-gallery__grid--mosaic .text-gallery__media {
		grid-column: 1 / -1 !important;
	}
}





 

.multi-text {
	width: 100%;
	margin:0 !important;
	padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
	background-color: #2E3070; 
}

.multi-text__panel { 
	margin-inline: auto;
	padding: clamp(1.5rem, 3.5vw, 2.5rem);
	
	border-radius: 37.652px;
	border: 1.177px solid rgba(255, 255, 255, 0.61);
	background: rgba(0, 0, 0, 0.22);
	@media (max-width:1720px){
		border-radius: 32px;
	}
}

.multi-text__heading {
	margin: 0 0 0.85rem; 
	color: #FFF;
	font-family: Montserrat;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 100%; /* 28px */
	letter-spacing: -0.28px;
	@media (max-width:1720px){
		font-size: 22px;
	}	
	 @media (max-width:767px){
			font-size: 18px;
		}
}

.multi-text__intro {
	color: #c9cae0;
	font-size: clamp(0.78rem, 1vw, 0.875rem);
	font-weight: 500;
	line-height: 1.7;
}

.multi-text__intro p {
	margin: 0;
	color: #FFF;
	font-family: Roboto;
	font-size: 20px;
	font-style: normal;
	font-weight: 300;
	line-height: 153%; /* 30.6px */
	letter-spacing: 0.2px;
	@media (max-width:1720px){
		font-size: 18px;
	}
	 @media (max-width:767px){
			font-size: 15px;
		}
}

/* --- Centred band ---------------------------------------------- */

.multi-text__band {
	margin: clamp(1.25rem, 2.5vw, 1.75rem) 0;
	text-align: center;
	color: #fff;
}

.multi-text__band p {
	margin: 0;
}

.multi-text__eyebrow { 
	
	color: #FFF;
	font-family: Poppins;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 156%; /* 156% */
	text-transform: capitalize;
	@media (max-width:1720px){
		font-size: 18px;
	}
	 @media (max-width:767px){
			font-size: 15px;
		}
}

.multi-text__band-title {
	margin-top: 0.5rem !important; 
	
	color: #FFF;
	text-align: center;
	font-family: Poppins;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 141.818% ; /* 141.818% */
	text-transform: uppercase;
	@media (max-width:1720px){
		font-size: 20px;
	}
	 @media (max-width:767px){
			font-size: 15px;
		}
}

.multi-text__band-tagline {
	margin-top: 0.5rem !important;
	max-width: 100%;
	margin-inline: auto;
	color: #FFF;
	text-align: center;
	font-family: Poppins;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 156%; /* 156% */
	text-transform: capitalize;
	@media (max-width:1720px){
		font-size:18px;
	}
	 @media (max-width:767px){
			font-size: 14px;
		}
}

/* --- Cards ----------------------------------------------------- */

.multi-text__list {
	display: flex;
	flex-direction: column;
	gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.multi-text__card {
	padding: clamp(1.1rem, 2.2vw, 1.5rem) clamp(1.1rem, 2.4vw, 1.75rem);
	border-radius: 0.75rem;
	background-color: #fff;
	box-shadow: 0 4px 14px rgba(8, 8, 30, 0.18);
}

.multi-text__card-title {
	margin: 0 0 0.7rem; 
	color: #21224A;
	font-family: Poppins;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height:  130%; /* 130% */
	@media (max-width:1720px){
		font-size: 20px;
	}
	 @media (max-width:767px){
			font-size: 15px;
		}
}

.multi-text__card-copy { 
	color: #21224A;
	font-family: Roboto;
	font-size: 20px;
	@media (max-width:1720px){
		font-size: 18px;
	}
}

.multi-text__card-copy p {
	margin: 0;
	color: #21224A;
	font-family: Roboto;
	font-size: 20px; 
	font-weight: 300;
	line-height: 153%; /* 30.6px */
	letter-spacing: 0.2px;
	@media (max-width:1720px){
		font-size: 18px;
	}
	 @media (max-width:767px){
			font-size: 14px;
		}
}

 

/* --- CTA ------------------------------------------------------- */

.multi-text__actions {
	margin-top: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
}

.multi-text__button {
	font-size:22px;
}
 
.sgsv_faq_child{
	background: #2E3070;
	margin:0 !important;
	.fqpg_item_heading{
		margin-top:0;
	}
}