/*! Normalise CSS !*/
@import url(normalize.css);
/*! Google Fonts !*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*! Google Fonts !*/
@import url("../fonts/fonts.css");
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}

* {
  margin: 0rem;
  padding: 0rem;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0rem;
  padding: 0rem;
  scroll-behavior: smooth;
}

body {
  margin: 0rem;
  padding: 0rem;
  color: var(--Text-2, #2f2f2f);
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem; /* 160% */
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 95%;
}

p {
  padding: 0rem;
  margin: 0rem 0 1.5625rem;
  /* Desktop/lg/base/Regular */
  color: var(--Text-2, #2f2f2f);
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem; /* 160% */
}
p:last-child {
  margin: 0;
}

h1 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  color: var(--Primary, #fff);
  /* Page heading */
  font-family: "Avenir Next LT Pro";
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.75rem; /* 118.75% */
}

h2 {
  margin: 0rem 0rem 1.25rem;
  padding: 0rem;
  color: var(--Sea-Blue, #244e70);
  font-family: "Avenir Next LT Pro";
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}

h3 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Text, #1d1d1d);
  font-family: "Avenir Next LT Pro";
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: capitalize;
}

h4 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #fff;
  /* Desktop/lg/Regular */
  color: var(--Text, #1d1d1d);
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

h5 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: #fff;
  /* Desktop/lg/base/Medium */
  color: var(--Text, #1d1d1d);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

h6 {
  margin: 0rem 0rem 1rem;
  padding: 0rem;
  color: var(--Text, #1d1d1d);
  font-family: "Avenir LT Pro";
  font-size: 1.125rem;
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}

a {
  color: var(--Grey, #333);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: #000;
}

.btn {
  position: relative;
  display: inline-flex;
  padding: 0.625rem 1.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--Primary, #fff);
  /* Desktop/lg/base/Medium */
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  border: 0.0625rem solid #244e70;
  border-radius: 3.75rem;
  background: var(--Sea-Blue, #244e70);
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.btn:focus, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 0.0625rem solid #56beed;
  background: #56beed;
  color: #fff;
}
.btn:hover {
  border: 0.0625rem solid #56beed;
  background: #56beed;
  color: #fff;
}
.btn.blueBtn {
  border: 0.0625rem solid #56beed;
  background: #56beed;
}
.btn.blueBtn:focus, .btn.blueBtn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 0.0625rem solid #244e70;
  background: #244e70;
  color: #fff;
}
.btn.blueBtn:hover {
  border: 0.0625rem solid #244e70;
  background: #244e70;
  color: #fff;
}

input:not([type=submit])::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit])::placeholder,
textarea::placeholder,
select::placeholder {
  color: inherit;
  opacity: 1;
  font-size: inherit;
}

input:not([type=submit], [type=checkbox], [type=radio]) {
  border-radius: 0.25rem;
  border: 1px solid var(--Grey, #b3b3b3);
  padding: 1rem;
  display: block;
  width: 100%;
  box-shadow: none;
  /* Desktop/lg/base/Light */
  color: var(--Grey, #b3b3b3);
  /* Desktop/lg/base/Regular */
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
input:not([type=submit], [type=checkbox], [type=radio])::-moz-placeholder {
  color: var(--Body, #b3b3b3);
  opacity: 0.6;
}
input:not([type=submit], [type=checkbox], [type=radio])::placeholder {
  color: var(--Body, #b3b3b3);
  opacity: 0.6;
}
input:not([type=submit], [type=checkbox], [type=radio]):focus {
  outline: none;
  border-color: var(--CTA, #249d8f);
}

textarea {
  resize: none;
  overflow: hidden;
  display: block;
  width: 100%;
  color: var(--Grey, #b3b3b3);
  /* Desktop/lg/base/Regular */
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
  height: 15.375rem;
  padding: 1rem;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
  outline: none;
  line-height: normal;
  border-radius: 0.25rem;
  border: 1px solid var(--Grey, #b3b3b3);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
textarea::-moz-placeholder {
  color: var(--Body, #b3b3b3);
  opacity: 0.6;
}
textarea::placeholder {
  color: var(--Body, #b3b3b3);
  opacity: 0.6;
}

textarea:focus {
  outline: none;
}

select {
  -webkit-appearance: none;
  /* Removes default appearance in Safari */
  -moz-appearance: none;
  /* Removes default appearance in Firefox */
  appearance: none;
  /* Standard */
  outline: none;
  /* Removes the focus outline */
  box-shadow: none;
  /* Removes the box shadow */
  padding: 1.0625rem 3.125rem 1.0625rem 1rem;
  /* Add padding for better UI */
  background-color: transparent;
  /* Background color */
  background-image: url("../images/select-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.75rem;
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(51, 51, 51, 0.35);
  color: rgb(51, 51, 51);
  font-family: Lato;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: auto;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

select:focus {
  border: 0.0625rem solid #cccccc;
  outline: none;
  background-color: transparent;
}

select option {
  color: #a8a8a8;
  font-size: 0.875rem;
  font-weight: normal;
}

label {
  color: var(--Primary, #fff);
  /* Desktop/lg/base/Regular */
  font-family: "Netflix Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
}

input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background: url(../images/tick_circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #249d8f;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  position: relative;
  top: 3px;
}

input[type=checkbox]::before {
  content: "";
  width: 0.75rem;
  height: 0.5625rem;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  background: url(../images/tick-clear.svg) no-repeat;
  background-size: contain;
  /* Windows High Contrast Mode */
  background-color: transparent;
  left: 0.25rem;
  position: relative;
  top: -0.0875rem;
}

input[type=checkbox]:checked {
  background: url(../images/tick_gap.svg);
  background-size: contain;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}

input[type=checkbox]:focus {
  outline: none;
  outline-offset: none;
}

input[type=checkbox]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  -moz-appearance: none;
       appearance: none;
  /* For iOS < 15 */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid #000;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #000;
  /* Windows High Contrast Mode */
  background-color: #fff;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=radio]:focus {
  outline: none;
  outline-offset: none;
}

input[type=radio]:disabled {
  --form-control-color: #ccc;
  color: #ccc;
  cursor: not-allowed;
}

section h1,
section h2,
div h1,
div h2 {
  margin: 0 0 2.5rem;
}
section.defaultPadding,
div.defaultPadding {
  padding: 5rem 0;
}
section.defaultPadding60,
div.defaultPadding60 {
  padding: 3.75rem 0;
}

.repeat-row.type-1 h2 {
  margin-bottom: 12px;
}

.mb16 {
  margin-bottom: 1rem !important;
}

.mb25 {
  margin: 0 0 1.5625rem !important;
}

.mb28-5 {
  margin-bottom: 1.75rem !important;
}

.mb30 {
  margin-bottom: 1.875rem !important;
}

.mb32 {
  margin-bottom: 2rem !important;
}

.mb36 {
  margin-bottom: 2.25rem !important;
}

.mb40 {
  margin-bottom: 2.5rem !important;
}

.mb50 {
  margin-bottom: 3.125rem !important;
}

.mb60 {
  margin-bottom: 3.75rem !important;
}

.mb66 {
  margin-bottom: 4.125rem !important;
}

.mb70 {
  margin-bottom: 4.375rem !important;
}

.mb80 {
  margin-bottom: 5rem !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb180 {
  margin-bottom: 11.25rem !important;
}

.mt30 {
  margin-top: 1.875rem !important;
}

.mt60 {
  margin-top: 3.75rem !important;
}

.overlayBg {
  position: fixed;
  z-index: 1000;
  background-color: #000;
  inset: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

body:has(.openNav) .overlayBg {
  opacity: 0.8;
  visibility: visible;
  pointer-events: all;
}

.stellarnav.mobile.right .close-menu::before,
.stellarnav.mobile.left .close-menu::before {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.25rem;
  color: #5697b4;
  transition: color 0.3s ease;
  position: relative;
  top: 1px;
}
.stellarnav.mobile.right .close-menu:hover::before,
.stellarnav.mobile.left .close-menu:hover::before {
  color: #5697b4;
}

header.header_main {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff; /* Dark background from screenshot */
  padding: 30px 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
header.header_main.sticky {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
header.header_main .infoBuy {
  padding: 8px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #249d8f; /* Teal green */
  text-align: center;
}
header.header_main .infoBuy p {
  margin: 0;
  color: #fff;
  font-family: Lato;
  font-size: 1rem;
  font-weight: 500;
}
header.header_main .infoBuy p a {
  color: #fff;
  text-decoration: underline;
}
header.header_main .infoBuy p a:hover {
  color: #e0e0e0;
}
header.header_main .d_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header_main .logo {
  width: 14.4637rem; /* Adjust width based on your new logo file */
  transition: all 0.3s ease-in-out;
}
header.header_main .logo a {
  display: block;
}
@media (min-width: 991px) {
  header.header_main .main_nav {
    margin: 0 auto; /* Centers the navigation */
  }
  header.header_main .main_nav > ul {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Spacing between nav items */
  }
  header.header_main .main_nav > ul li a {
    display: inline-flex;
    position: relative;
    color: var(--Sea-Blue, #244e70);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem; /* 150% */
    padding: 0.625rem 1.25rem;
    border-radius: 3.125rem;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    gap: 0.375rem;
  }
  header.header_main .main_nav > ul li a:hover {
    color: var(--Sea-Blue, #244e70);
    border: 1px solid #244e70;
  }
  header.header_main .main_nav > ul li.current-menu-item a {
    color: #fff;
    font-weight: 500; /* Bold active state as seen in About */
    background: var(--Sea-Blue, #244e70);
    align-items: center;
  }
  header.header_main .main_nav > ul li.current-menu-item a::before {
    content: " ";
    display: inline-block;
    position: relative;
    width: 0.25rem;
    height: 0.25rem;
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 3.125rem;
  }
}
header.header_main .rig_action_btns {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
header.header_main .rig_action_btns .lang_btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: Lato;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle outline */
  transition: all 0.3s ease;
}
header.header_main .rig_action_btns .lang_btn img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}
header.header_main .rig_action_btns .lang_btn.active, header.header_main .rig_action_btns .lang_btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}
header.header_main .rig_action_btns .lang_btn:not(.active) {
  background: transparent;
  color: #fff;
}
header.header_main .rig_action_btns .user_profile {
  margin-left: 0.8rem;
}
header.header_main .rig_action_btns .user_profile a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
header.header_main .rig_action_btns .user_profile a i.fa-caret-down {
  font-size: 0.8rem;
}
header.header_main .rig_action_btns .user_profile a:hover {
  color: #249d8f;
}
header.header_main .lang_toggle {
  display: inline-flex;
  position: relative;
  background: transparent;
  border: 1px solid #249d8f; /* Your teal border */
  border-radius: 8px; /* Rounded corners like the screenshot */
  padding: 4px;
  width: 340px; /* Fixed width to ensure smooth sliding */
  /* The sliding white pill */
}
header.header_main .lang_toggle .active_bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px); /* Takes up exactly half the container */
  height: calc(100% - 8px);
  background: #fff;
  border-radius: 6px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
header.header_main .lang_toggle {
  /* When English is selected, slide the background to the right */
}
header.header_main .lang_toggle.en-active .active_bg {
  transform: translateX(100%);
}
header.header_main .lang_toggle .lang_btn {
  flex: 1; /* Both buttons take exactly 50% width */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 2; /* Ensure text sits above the sliding background */
  transition: color 0.3s ease;
}
header.header_main .lang_toggle .lang_btn img {
  width: 24px;
  height: auto;
  border-radius: 3px;
}
header.header_main .lang_toggle .lang_btn {
  /* Black text when active/selected */
}
header.header_main .lang_toggle .lang_btn.active {
  color: #141414;
}
header.header_main .user_profile {
  margin-left: 0.8rem;
  position: relative; /* Crucial: anchors the absolute dropdown */
}
header.header_main .user_profile .profile_toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
header.header_main .user_profile .profile_toggle span {
  width: 1.75rem;
  height: 1.75rem;
  aspect-ratio: 1/1;
  padding: 0.2919rem;
}
header.header_main .user_profile .profile_toggle span img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
header.header_main .user_profile .profile_toggle i.fa-caret-down {
  font-size: 0.8rem;
  transition: transform 0.3s ease; /* Smooth arrow rotation */
}
header.header_main .user_profile .profile_toggle:hover, header.header_main .user_profile .profile_toggle.active {
  color: #249d8f;
}
header.header_main .user_profile .profile_toggle {
  /* Rotate arrow when menu is open */
}
header.header_main .user_profile .profile_toggle.active i.fa-caret-down {
  transform: rotate(180deg);
}
header.header_main .user_profile {
  /* Dropdown Styling */
}
header.header_main .user_profile .dropdown_menu {
  position: absolute;
  top: calc(100% + 20px); /* Start slightly lower for animation */
  right: 0;
  background: #fff;
  min-width: 170px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Buttery smooth ease */
  z-index: 1001;
  /* State class toggled by JS */
}
header.header_main .user_profile .dropdown_menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: calc(100% + 10px); /* Final resting position */
}
header.header_main .user_profile .dropdown_menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  /* Line separator before "Log in" */
}
header.header_main .user_profile .dropdown_menu li.divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 0;
}
header.header_main .user_profile .dropdown_menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: #333;
  font-family: Lato;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
header.header_main .user_profile .dropdown_menu li a i {
  font-size: 1.1rem;
  color: #999;
  width: 18px;
  text-align: center;
  transition: color 0.2s ease;
}
header.header_main .user_profile .dropdown_menu li a:hover {
  background: #f8f9fa;
  color: #249d8f;
}
header.header_main .user_profile .dropdown_menu li a:hover i {
  color: #249d8f; /* Icon turns teal on hover */
}

section.hm_banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1;
}
section.hm_banner .container {
  position: relative;
}
section.hm_banner .full_banner {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 77/40;
  height: 100%;
  position: relative;
}
section.hm_banner .full_banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.25%, rgba(0, 0, 0, 0.64) 100%);
  pointer-events: none;
}
section.hm_banner .full_banner img,
section.hm_banner .full_banner video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_banner .middle_caption {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: calc(50% - 3.125rem);
  left: 0;
  transform: translateY(-50%);
}
section.hm_banner .middle_caption .innerTxt {
  position: relative;
  width: 100%;
  max-width: 51.875rem;
  left: 3.5625rem;
}
section.hm_banner .middle_caption h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}
section.hm_banner .middle_caption p {
  color: var(--Body, #b3b3b3);
  text-align: center;
  /* Desktop/lg/base/Medium */
  font-family: "Netflix Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 2rem;
}
section.hm_banner.innerbanner .full_banner {
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hm_banner.innerbanner .full_banner:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.9375rem;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.25%, rgba(0, 0, 0, 0.64) 100%);
}
section.hm_banner.innerbanner .middle_caption {
  inset: 0;
  transform: unset;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
section.hm_banner.innerbanner .middle_caption h1 {
  margin-bottom: 0.75rem;
}
section.hm_banner.innerbanner .middle_caption p {
  text-align: left;
  margin-bottom: 0;
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2rem; /* 160% */
  max-width: 51.8rem;
}

section.inner_banner {
  position: relative;
  height: 372px; /* Adjust based on exact visual height needed */
  display: flex;
  align-items: center; /* Flexbox replaces the old absolute top: 50% */
  background: #141414; /* Dark theme fallback */
  overflow: hidden;
  z-index: 1;
}
section.inner_banner .full_banner {
  position: absolute;
  inset: 0;
  z-index: -1;
}
section.inner_banner .full_banner .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.inner_banner .full_banner .banner_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
section.inner_banner .top {
  position: relative;
  width: 100%;
  z-index: 2;
}
section.inner_banner .top h1 {
  color: #fff; /* Updated to white */
  margin: 0 0 1.25rem; /* Tighter margin to pull breadcrumbs up */
}
section.inner_banner .top .brdcump {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  flex-wrap: wrap;
}
section.inner_banner .top .brdcump li {
  color: #fff; /* Updated to white */
  color: var(--Primary, #fff);
  /* Desktop/lg/Regular */
  font-family: "Netflix Sans";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem; /* 150% */
  position: relative;
  display: flex;
  align-items: center;
  /* Styling for the active page (last item) */
}
section.inner_banner .top .brdcump li:last-child {
  color: #ccc; /* Slightly dimmed to indicate current page */
}
section.inner_banner .top .brdcump li:last-child::after {
  display: none;
}
section.inner_banner .top .brdcump li {
  /* The Breadcrumb Separator */
}
section.inner_banner .top .brdcump li::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  /* transform: rotate(-90deg); */
  aspect-ratio: 1/1;
  /* Pro-Tip: Update your old SVG to a white version, or use CSS mask-image if you want to keep the black SVG and color it via CSS */
  background: url(../images/arrow-right-breadcrumb-white.svg) no-repeat center;
  background-size: contain;
  margin: 0 0.75rem;
}
section.inner_banner .top .brdcump li a {
  color: #fff; /* Updated to white */
  font-weight: 400;
  transition: color 0.3s ease;
}
section.inner_banner .top .brdcump li a:hover {
  color: #249d8f; /* Brand teal on hover */
}

.ticker {
  background-color: #fff;
  padding: 1.5rem 0;
  overflow: hidden;
}
.ticker__slider {
  width: 100%;
}
.ticker__slide {
  width: auto;
  display: flex;
  align-items: center;
  color: var(--Text-2, #2f2f2f);
  text-align: center;
  font-family: "Avenir Next LT Pro";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ticker__slide::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--Sea-Blue, #244e70);
  margin: 0 2rem;
}

.performance {
  background-color: #fff;
  margin-top: 0;
}
.performance__main-row {
  row-gap: 3rem;
}
.performance__banner {
  background-color: #f2fbfd;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
}
.performance h2 {
  margin: 0;
  /* color: var(--Sea-Blue, #244e70); */
  /* font-family: "Avenir Next LT Pro", "Inter", sans-serif; */
  /* font-size: clamp(1.25rem, 3vw, 1.75rem); */
  font-weight: 500;
  color: var(--Sea-Blue, #244e70);
  text-align: center;
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3rem;
}
.performance__media {
  width: 100%;
  aspect-ratio: 151/72;
  height: 100%;
}
.performance__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.performance__content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 992px) {
  .performance__content {
    padding-left: 0.5rem;
  }
}
.performance__item {
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid #d5d5d5;
  transition: border-color 0.3s ease;
  cursor: pointer;
}
.performance__item--active {
  border-left-color: #56beed;
}
.performance h3 {
  margin: 0 0 0.625rem 0;
  color: var(--Text, #1d1d1d);
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.performance p {
  margin: 0;
  color: #898989;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 175% */
}
.performance.performance-edit .performance__media {
  width: 100%;
  aspect-ratio: unset;
  height: unset;
}

.services {
  background-color: #fff;
}
.services__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 992px) {
  .services__layout {
    grid-template-columns: 1fr 2fr;
    gap: 1.87rem;
  }
}
.services .services__header h2 {
  margin: 0 0 0.75rem;
}
.services .services__header p {
  color: var(--Text-2, #2f2f2f);
}
.services__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.services__title {
  margin: 0 0 0.75rem 0;
}
.services__description {
  margin: 0;
  color: var(--Text-2, #2f2f2f);
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.services__card--tall {
  flex: 1;
  min-height: auto;
}
.services__card--tall img {
  aspect-ratio: 17/23;
}
.services__card--tall::after {
  display: none;
}
.services__card-bg {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  aspect-ratio: 3/2.6;
}
.services__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 78, 112, 0) 0%, rgba(26, 61, 90, 0.8) 67.37%, #163651 100%);
  z-index: 2;
}
.services__card:hover .services__card-bg {
  transform: scale(1.08);
}
.services__card .abs {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.services__card-content {
  position: absolute;
  z-index: 3;
  padding: 2.25rem 1.88rem;
  left: 0;
  bottom: 0;
  right: 0;
}
.services h3 {
  margin: 0 0 0.5rem 0;
  color: var(--White, #fff);
  font-family: "Avenir Next LT Pro";
  font-size: 2rem;
  font-style: normal;
  line-height: normal;
  text-transform: capitalize;
  margin: 0 0 0.375rem;
}
.services p {
  margin: 0;
  color: var(--White, #fff);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}

.process {
  background-color: #fff;
}
.process__wrapper {
  background-color: #e8fbff;
  border-radius: 1rem;
  padding: 1.25rem;
}
@media (min-width: 992px) {
  .process__wrapper {
    padding: 3.75rem;
  }
}
.process__layout {
  display: flex;
  gap: 1rem;
}
@media (min-width: 992px) {
  .process__layout {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.process__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 25.125rem;
  position: relative;
}
.process__item:before {
  content: "";
  width: 6.57738rem;
  height: 0.88163rem;
  aspect-ratio: 105.24/14.11;
  background: url(../images/approach-arrow.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: -6.3rem;
  top: 25%;
  transform: translateY(-50%);
}
.process__item:last-child:before {
  display: none;
}
.process__icon {
  width: 6.25rem;
  height: 6.25rem;
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.process__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.process h3 {
  margin: 0 0 1rem 0;
  color: var(--Sea-Blue, #244e70);
  text-align: center;
  font-family: "inter", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.process p {
  margin: 0;
  color: var(--Text-2, #2f2f2f);
  text-align: center;
  font-family: "inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.process__arrow {
  display: none;
}
@media (min-width: 992px) {
  .process__arrow {
    display: block;
    flex-shrink: 0;
    width: 9.075rem;
    margin-top: 2rem;
    height: 1.25663rem;
    position: relative;
    right: -15px;
  }
  .process__arrow svg {
    width: 100%;
    height: auto;
  }
}

.sectors {
  background-color: #fff;
}
.sectors__wrapper {
  background-color: var(--Sea-Blue, #244e70);
  border-radius: 1rem;
  padding: 1.875rem;
}
@media (min-width: 992px) {
  .sectors__wrapper {
    padding: 3.75rem;
  }
}
.sectors__header {
  text-align: center;
  margin: 0 auto 2.5rem auto;
}
.sectors__subtitle {
  display: block;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sectors h2 {
  margin: 0 auto;
  color: #fff;
  font-weight: 300;
  line-height: normal;
  text-transform: none;
  max-width: 1200px;
}
.sectors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 79.875rem;
  margin: auto;
}
@media (min-width: 768px) {
  .sectors__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .sectors__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sectors__card {
  background-color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.sectors__card:hover .sectors__card-img {
  transform: scale(1.05);
}
.sectors__card .abs {
  position: absolute;
  inset: 0;
}
.sectors__card-media {
  position: relative;
  /* padding-top: 60%; */
  overflow: hidden;
  aspect-ratio: 198/126;
  overflow: hidden;
}
.sectors__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.sectors__card-content {
  padding: 1.875rem 1.25rem;
  flex-grow: 1;
}
.sectors h3 {
  margin: 0 0 0.625rem 0;
  color: var(--Text, #1d1d1d);
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.sectors p {
  margin: 0;
  color: #888;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}
.sectors.sectors-edit .sectors__wrapper {
  border-radius: 0.9375rem;
  background: linear-gradient(90deg, #244e70 0%, #4595d6 100%);
}

.outcomes {
  background-color: #fff;
}
.outcomes__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .outcomes__layout {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    max-width: 79.875rem;
    margin: auto;
  }
}
.outcomes__content {
  display: flex;
  flex-direction: column;
}
.outcomes h2 {
  margin: 0 0 0.75rem 0;
}
.outcomes__subtitle {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--Text, #1d1d1d);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.outcomes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.outcomes ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
.outcomes ul li .outcomes__icon {
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  border-radius: 50px;
  overflow: hidden;
}
.outcomes ul li .outcomes__icon img {
  width: 1.33594rem;
}
.outcomes__text {
  margin: 0;
  color: var(--Sea-Blue, #244e70);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.outcomes__media {
  width: 100%;
  position: relative;
  aspect-ratio: 156/95;
  border-radius: 1rem;
  overflow: hidden;
}
.outcomes__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.outcomes.hasbg {
  background: #e8fbff;
}
.outcomes.outcomes-edit ul li .outcomes__icon img {
  width: 2.25rem;
}
.outcomes.outcomes-edit .outcomes__subtitle {
  margin-bottom: 2.5rem;
}
.outcomes.outcomes-edit .outcomes__layout {
  grid-template-columns: 6fr 6fr;
}
.outcomes.outcomes-edit .outcomes__text {
  color: var(--Text, #1d1d1d);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.outcomes.outcomes-edit .outcomes__media {
  aspect-ratio: unset;
}

.cases {
  background-color: #fff;
}
.cases__wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.5rem 1.25rem;
  z-index: 1;
}
.cases__wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (min-width: 992px) {
  .cases__wrapper {
    padding: 3.75rem;
  }
}
.cases__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.cases__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.52) 100%);
  z-index: 2;
}
.cases__content {
  position: relative;
  z-index: 3;
}
.cases__header {
  text-align: center;
}
.cases__subtitle {
  display: block;
  color: var(--White, #fff);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.9375rem;
}
.cases h2 {
  margin: 0;
  color: #fff;
}
.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 79.875rem;
  margin: auto;
}
@media (min-width: 768px) {
  .cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.cases__card {
  display: flex;
  flex-direction: column;
  background-color: #ebf9fd;
  border-radius: 0.75rem;
  border-left: 8px solid #56beed;
  padding: 1.875rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-content: space-between;
  gap: 3.75rem;
}
.cases__card:hover, .cases__card:focus {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.cases__card:hover .cases__card-icon, .cases__card:focus .cases__card-icon {
  transform: translate(3px, -3px);
}
.cases__card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.cases__card-label {
  color: var(--Sea-Blue, #244e70);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
.cases__card-icon {
  width: 24px;
  height: 24px;
  color: var(--Sea-Blue, #244e70);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cases__card-icon svg {
  width: 100%;
  height: 100%;
}
.cases__card-stat {
  color: var(--Sea-Blue, #244e70);
  font-family: "Avenir Next LT Pro";
  font-size: 3rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 0.625rem;
}
.cases p {
  color: var(--Sea-Blue, #244e70);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0;
}
.cases__card-text {
  margin: 0;
  color: var(--Sea-Blue, #244e70);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.agency-intro {
  background-color: #eaf7fc;
}
.agency-intro__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 768px) {
  .agency-intro__layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .agency-intro__layout {
    gap: 5rem;
    max-width: 78rem;
    margin: 0 auto;
  }
}
.agency-intro__media {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.agency-intro__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.agency-intro__content {
  display: flex;
  flex-direction: column;
  max-width: 35rem;
}
.agency-intro h2 {
  margin: 0 0 1.875rem 0;
}
.agency-intro p {
  margin: 0 0 1.25rem 0;
}
.agency-intro p:last-child {
  margin-bottom: 0;
}

.cta {
  background-color: #fff;
}
.cta__wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 480px;
  padding: 2rem 1.5rem;
}
@media (min-width: 992px) {
  .cta__wrapper {
    padding: 6.125rem 3.75rem;
    min-height: 540px;
  }
}
.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.cta__card {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  width: 100%;
  max-width: 43.4375rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
@media (min-width: 992px) {
  .cta__card {
    padding: 2.5rem 2.6875rem;
  }
}
.cta h2 {
  margin: 0 0 0.75rem 0;
}
.cta p {
  margin: 0 0 1.875rem 0;
}
.cta__list {
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cta li {
  position: relative;
  padding-left: 1.25rem;
  color: #898989;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.25rem; /* 180% */
  margin: 0;
}
.cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #888;
}
.cta__btn {
  background-color: var(--Sea-Blue, #244e70);
  border-color: var(--Sea-Blue, #244e70);
  color: #fff;
  padding: 0.875rem 2rem;
}
.cta__btn:hover, .cta__btn:focus {
  background-color: #1a3a54;
  border-color: #1a3a54;
  color: #fff;
}

.footer {
  background: #244e70;
  color: #fff;
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.footer__top {
  position: relative;
  padding-bottom: 5rem;
  margin-bottom: 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  position: relative;
  z-index: 2;
  max-width: 68.75rem;
}
@media (min-width: 576px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.75rem;
  }
}
.footer__col h4 {
  color: #feffea;
  font-family: "Avenir Next LT Pro";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 1.875rem 0;
}
.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.footer__col ul a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__col ul a:hover, .footer__col ul a:focus {
  color: #44beed;
}
.footer__graphic {
  display: none;
}
@media (min-width: 992px) {
  .footer__graphic {
    display: block;
    position: absolute;
    top: -2.5rem;
    right: -3.4rem;
    width: 32.6875rem;
    height: 25.9375rem;
    aspect-ratio: 92/73;
    z-index: 1;
    pointer-events: none;
  }
}
.footer__graphic-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right center;
     object-position: right center;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom p {
  margin: 0;
  color: #a7b8b9;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.footer__legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__legal ul li {
  color: #a7b8b9;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}
.footer__legal ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__legal ul li a:hover {
  color: #fff;
}

.repeat-row .headingblack h2 {
  margin-bottom: 0.75rem;
  color: #000;
}
.repeat-row p {
  color: var(--Text-2, #2f2f2f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 162.5% */
  margin-bottom: 0;
}
.repeat-row .text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.repeat-row .row {
  margin-bottom: 5rem;
}
.repeat-row .row:last-child {
  margin-bottom: 0;
}
.repeat-row .row:nth-child(even) {
  flex-direction: row-reverse;
}
.repeat-row.hasbg {
  background: #e8fbff;
}
.repeat-row.row-rev .row {
  flex-direction: row-reverse;
}

.proof {
  text-align: center;
}
.proof .proof-inner {
  border-radius: 0.9375rem;
  background: linear-gradient(90deg, #244e70 0%, #4595d6 100%);
  overflow: hidden;
  padding-left: 3rem;
  padding-right: 3rem;
}
.proof h6 {
  margin-bottom: 1.25rem;
}
.proof h6.subhead {
  color: var(--White, #fff);
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25rem;
}
.proof h2 {
  color: var(--White, #fff);
  margin-bottom: 2.5rem;
}
.proof .proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.81rem;
}

.proof-card {
  position: relative;
  border-radius: 0.9375rem 15px;
  padding: 1.88rem;
  border-left: 5px solid var(--Light-Blue, #56beed);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #e8fbff;
  height: 16.25rem;
  justify-content: space-between;
  text-align: left;
  max-width: calc(33.3333333333% - 110px);
  width: 100%;
}
.proof-card .proof-top h5 {
  color: var(--Sea-Blue, #244e70);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0;
}
.proof-card .proof-bottom span {
  color: var(--Sea-Blue, #244e70);
  font-family: "Avenir Next LT Pro";
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0.63rem;
  display: block;
}
.proof-card .proof-bottom p {
  color: var(--Sea-Blue, #244e70);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0;
}
.proof-card > img {
  width: 0.6875rem;
  height: 0.6875rem;
  position: absolute;
  top: 2.25rem;
  right: 2.25rem;
}
.proof-card .abs {
  position: absolute;
  inset: 0;
}

.blogs-listing .blogs-bx {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  flex-shrink: 0;
  position: relative;
}
.blogs-listing .blogs-bx .img {
  border-radius: 10px;
  overflow: hidden;
}
.blogs-listing .blogs-bx .img img {
  width: 100%;
  border-radius: 10px;
}
.blogs-listing .blogs-bx .text h4 {
  color: black;
  margin-bottom: 0.75rem;
  font-family: "Avenir Next LT Pro";
  font-weight: 400;
}
.blogs-listing .blogs-bx .text p {
  color: var(--Text-2, #2f2f2f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 0.94rem;
}
.blogs-listing .blogs-bx .text span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  color: var(--Sea-Blue, #244e70);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.blogs-listing .blogs-bx .abs {
  position: absolute;
  inset: 0;
}
.blogs-listing .row {
  gap: 5rem 0;
}
.blogs-listing .pagination-custom {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem;
}
.blogs-listing .pagination-custom ul {
  display: flex;
  width: 6.5625rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.blogs-listing .pagination-custom ul li {
  color: #000;
  font-family: "Avenir Next LT Pro";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 100% */
}
.blogs-listing .pagination-custom ul li button {
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
  border: 1px solid var(--Sea-Blue, #244e70);
  background-color: transparent;
  padding: 0.36rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blogs-listing h2 {
  color: black;
  margin-bottom: 2.5rem;
}
.blogs-listing.relatedpost h2 {
  text-align: center;
}

.date {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}
.date img {
  width: 1.25rem !important;
  height: 1.25rem !important;
  aspect-ratio: 1/1;
  margin: 0 !important;
}
.date {
  color: var(--Text-2, #2f2f2f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 1.25rem;
}

.blog-details h2 {
  color: #000;
  margin-bottom: 10px;
}
.blog-details img {
  border-radius: 0.75rem;
  margin-bottom: 2.5rem;
  width: 100%;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.blog-details p {
  margin-bottom: 2.25rem;
}
.blog-details p:has(+ p, + ul, + ol) {
  margin-bottom: 1rem;
}
.blog-details p:last-of-type {
  margin-bottom: 0;
}
.blog-details .two-column-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.88rem;
  margin-bottom: 2.5rem;
}
.blog-details .two-column-img .img {
  width: 100%;
  height: 25rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.blog-details .two-column-img .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.combine .combine-inner {
  border-radius: 0.9375rem;
  background: #e8fbff;
  padding: 1.25rem;
}
.combine .combine-inner p {
  color: var(--Text, #1d1d1d);
  font-family: "Avenir Next LT Pro";
  font-size: 2.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3rem; /* 133.333% */
  margin-bottom: 0;
}

.services-box {
  text-align: center;
}
.services-box h2 {
  margin-bottom: 0.75rem;
}
.services-box .service-bx {
  position: relative;
}
.services-box .service-bx .img {
  width: 14.4375rem;
  margin: 0 auto 1.56rem;
  border-radius: 14.4375rem;
}
.services-box .service-bx .img img {
  width: 100%;
}
.services-box .service-bx .txt h3 {
  color: var(--Sea-Blue, #244e70);
  margin-bottom: 0.37rem;
}
.services-box .service-bx .txt p {
  color: var(--Text-2, #2f2f2f);
  font-weight: 500;
  line-height: 1.8rem; /* 150% */
}
.services-box .service-bx .abs {
  position: absolute;
  inset: 0;
}

.approach-area {
  text-align: center;
}
.approach-area .approach-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.87rem;
}
.approach-area .approach-row .approach-bx {
  position: relative;
  max-width: calc(25% - 22px);
  width: 100%;
}
.approach-area .approach-row .approach-bx .img {
  width: 5rem;
  margin: 0 auto 2.5rem;
}
.approach-area .approach-row .approach-bx .img img {
  width: 100%;
  aspect-ratio: 1/1;
}
.approach-area .approach-row .approach-bx .text h3 {
  color: var(--Sea-Blue, #244e70);
  margin-bottom: 1rem;
}
.approach-area .approach-row .approach-bx .text p {
  color: var(--Text-2, #2f2f2f);
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.approach-area .approach-row .approach-bx:before {
  content: "";
  width: 6.57738rem;
  height: 0.88163rem;
  aspect-ratio: 105.24/14.11;
  background: url(../images/approach-arrow.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: -4.3rem;
  top: 24%;
  transform: translateY(-50%);
}
.approach-area .approach-row .approach-bx:last-child:before {
  display: none;
}

.demand {
  position: relative;
  padding: 6.2rem 0;
}
.demand .bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.demand .text {
  padding: 5rem 2.5rem;
  max-width: 43.4375rem;
  width: 100%;
  background-color: white;
  position: relative;
  z-index: 1;
  border-radius: 1.88rem;
  overflow: hidden;
}
.demand .text h2 {
  color: var(--Sea-Blue, #244e70);
  margin-bottom: 0.75rem;
}
.demand .text p {
  color: var(--Text-2, #2f2f2f);
  margin-bottom: 2.5rem;
}

.outcome .outcome-inner {
  max-width: 80.5rem;
  width: 100%;
  margin: 0 auto;
}
.outcome .outcome-inner .text {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
  justify-content: center;
}
.outcome .outcome-inner .text ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  align-self: stretch;
}
.outcome .outcome-inner .text ul li {
  color: var(--Text, #1d1d1d);
  font-family: Inter;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  padding-left: 3.25rem;
  position: relative;
}
.outcome .outcome-inner .text ul li img {
  width: 2.25rem;
  height: 2.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  left: 0;
  top: 0;
}

.wedeliver .heading-with-bg {
  border-radius: 0.9375rem;
  background: #e8fbff;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 60px;
}
.wedeliver .heading-with-bg h2 {
  color: var(--Sea-Blue, #244e70);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 3rem; /* 133.333% */
  margin-bottom: 0;
}
.wedeliver .row-within-fit-width.outcomes {
  max-width: 80rem;
  margin: 0 auto;
}
.wedeliver .row-within-fit-width.outcomes h2 {
  margin-bottom: 1.5rem;
}
.wedeliver .row-within-fit-width.outcomes .row {
  margin-bottom: 5rem;
}
.wedeliver .row-within-fit-width.outcomes .row:last-child {
  margin-bottom: 0;
}
.wedeliver .row-within-fit-width.outcomes .row:nth-child(odd) {
  flex-direction: row-reverse;
}
.wedeliver .row-within-fit-width.outcomes .row .text {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.icons-text {
  background-color: #e8fbff;
  margin: 5rem 0;
}
.icons-text .icons {
  text-align: center;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 3.125rem 1.875rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.icons-text .icons .iconsbx {
  max-width: calc(50% - 15px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.icons-text .icons .iconsbx .icon {
  background-color: var(--White, #fff);
  border-radius: 50px;
  border: 1px solid #244e70;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 5.0625rem;
  width: 100%;
  height: 5.0625rem;
}
.icons-text .icons .iconsbx .icon img {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
}
.icons-text .icons .iconsbx .text h4 {
  color: var(--Sea-Blue, #244e70);
  text-align: center;
  font-family: Inter;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.icons-text .icons .iconsbx .text p {
  color: var(--Text-2, #2f2f2f);
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.icons-text .more-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 8px;
}
.icons-text .more-text h2 {
  margin-bottom: 2.5rem;
}
.icons-text .more-text p {
  color: var(--Text-2, #2f2f2f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 175% */
}

.delivery-impact .delivery-impact-wrapper {
  max-width: 76rem;
  margin: 0 auto;
}
.delivery-impact .delivery-impact-wrapper .img img {
  width: 100%;
}
.delivery-impact .delivery-impact-wrapper .text {
  max-width: 32rem;
  width: 100%;
  padding-left: 8px;
}
.delivery-impact .delivery-impact-wrapper .text p {
  color: var(--Text-2, #2f2f2f);
  font-family: Inter;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 175% */
  margin-bottom: 1.5rem;
}

.analyze .proof-card {
  max-width: 100%;
  height: auto;
  padding: 1.25rem;
}
.analyze .proof-card .proof-icon {
  width: 6.25rem;
  height: 6.25rem;
  margin-bottom: 2.5rem;
}
.analyze .proof-card .proof-icon img {
  aspect-ratio: 1/1;
}
.analyze .proof-card .proof-bottom h3 {
  color: var(--Sea-Blue, #244e70);
  margin-bottom: 1rem;
}
.analyze .proof-card .proof-bottom p {
  color: var(--Text-2, #2f2f2f);
}
.analyze .analyze-row {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}
.analyze .analyze-row .analyze-item {
  max-width: calc(33% - 130px);
  width: 100%;
  position: relative;
}
.analyze .analyze-row .analyze-item:before {
  content: "";
  width: 6.57738rem;
  height: 0.88163rem;
  aspect-ratio: 105.24/14.11;
  background: url(../images/approach-arrow.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: -155px;
  top: 50%;
  transform: translateY(-50%);
}

.we-help .img {
  position: relative;
}
.we-help .img > img {
  width: 100%;
}
.we-help .img span {
  position: absolute;
  width: 131px;
  height: 190px;
  background-color: white;
  right: 0;
  border-radius: 0 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.we-help .img span > img {
  width: 145px;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  right: -20px;
  top: -10px;
}
.we-help .img span::before {
  content: "";
  width: 34px;
  height: 36px;
  background: url(../images/curve.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: -34px;
  top: 0;
}
.we-help .img span::after {
  content: "";
  width: 34px;
  height: 36px;
  background: url(../images/curve.png) no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: -36px;
}
.we-help .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

section.cta.defaultPadding ul.mb-40 {
  margin-bottom: 2.5rem;
}

section.contact-sec1 {
  padding: 5rem 0 0;
}
section.contact-sec1 .row {
  justify-content: center;
}
section.contact-sec1 img.side-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
section.contact-sec1 h2 {
  color: #000000;
  margin-bottom: 0.5rem;
}
section.contact-sec1 p {
  color: var(--Text-2, #2f2f2f);
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 1.5rem;
}
section.contact-sec1 .flex-wraper {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  justify-content: space-between;
}
section.contact-sec1 .form-wraper {
  display: block;
  width: 100%;
}
section.contact-sec1 .form-wraper .fild-wraper {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}
section.contact-sec1 .form-wraper .fild-wraper label {
  color: var(--Black, #000);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 0.44rem;
}
section.contact-sec1 .form-wraper .fild-wraper input:not([type=submit]),
section.contact-sec1 .form-wraper .fild-wraper textarea {
  border-radius: 0.25rem;
  border: 1px solid #d5d5d5;
  background: #fff;
  height: 3.125rem;
  width: 100%;
  padding: 0 0.75rem;
  outline: none;
  color: #000000;
}
section.contact-sec1 .form-wraper .fild-wraper input:not([type=submit])::-moz-placeholder, section.contact-sec1 .form-wraper .fild-wraper textarea::-moz-placeholder {
  color: var(--Paragraph, #535353);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.contact-sec1 .form-wraper .fild-wraper input:not([type=submit])::placeholder,
section.contact-sec1 .form-wraper .fild-wraper textarea::placeholder {
  color: var(--Paragraph, #535353);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.contact-sec1 .form-wraper .fild-wraper textarea {
  padding: 1rem 0.75rem;
  min-height: 7.5625rem;
  resize: none;
}
section.contact-sec1 input[type=submit] {
  width: 10.75rem;
  text-align: center;
  padding: 1rem 2rem;
}

@media screen and (max-width: 1199px) {
  section.contact-sec1 h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 991px) {
  section.contact-sec1 {
    padding: 3.75rem 0 0;
  }
  section.contact-sec1 h2 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  section.contact-sec1 {
    padding: 2.5rem 0 0;
  }
  section.contact-sec1 h2 {
    font-size: 1.6rem;
    margin: 1.7rem 0 0.6rem;
  }
  section.contact-sec1 .flex-wraper {
    display: block;
  }
  section.contact-sec1 input[type=submit] {
    padding: 0.7rem 2rem;
  }
  section.contact-sec1 .form-wraper .fild-wraper input:not([type=submit]) {
    height: 2.8rem;
  }
}
.wpcf7-spinner {
  display: none !important;
}

.cases__card-icon {
  display: block;
}

.cases__card-label + .cases__card-icon {
  display: none;
}

.wpcf7-not-valid-tip,
.wpcf7 form .wpcf7-response-output {
  font-size: 0.8rem !important;
}/*# sourceMappingURL=style.css.map */