@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mukta:wght@400;500;600;700;800&family=Sora:wght@100..800&display=swap');

/* bootstrap start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


p {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}


input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pe-50px {
  padding-right: 50px;
}

.px-80 {
  padding: 0 50px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */
:root {
  --font-p: "Mukta", sans-serif;
  --font-h: "Sora", sans-serif;
  --font-2: "Montserrat", sans-serif;
  --blue: #002d62;
  --l-blue: #56a7d8;
  --white: #ffffff;
  --black: #000000;
  --gray: #555555;
}

/* Keep wow/animate fade motions subtle site-wide */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Scrollbar base */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--yellow);
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background-color: var(--blue-green);
  border-radius: 8px;
  border: 3px solid var(--yellow);
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--deep-brown);
}

html {
  scrollbar-color: var(--blue-green) var(--yellow);
  scrollbar-width: thin;
  scroll-behavior: smooth;
  overflow-y: auto;
}

#team-section {
  scroll-margin-top: 90px;
}



a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
  scroll-behavior: smooth;
}

html,
body {
  font-family: var(--font-p);
  background-color: var(--light-yellow);
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

body {
  overflow-y: clip;
}

.site-header {
  background-color: transparent;
}

/* Header styles */
.header_cover {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: transparent;
  background-color: transparent;
  transition: box-shadow 0.35s ease;
  overflow: hidden;
  isolation: isolate;
}

/* Keep fixed header visible even when WOW initializes on refresh mid-page. */
.header_cover.wow {
  visibility: visible !important;
}

.header_cover.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header_cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(-102%);
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 0;
}

.header_cover.scrolled::before {
  transform: translateY(0);
}

.header_cover .header_inner,
.header_cover .header_mobile_phone {
  position: relative;
  z-index: 1;
}

.header_cover .header_inner {
  max-width: 1850px;
  min-height: 112px;
  margin: 0 auto;
  padding: 12px 0px;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 96%;
}

.header_branding {
  flex: 0 0 auto;
  padding-right: 34px;
  position: relative;
}

.header_branding::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
}

.header_cover.scrolled .header_branding::after {
  background: var(--gray);
}

.header_logo_link {
  display: inline-block;
  position: relative;
  width: 220px;
  max-width: 100%;
}

.header_logo_img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

.header_logo_img--default {
  opacity: 1;
}

.header_logo_img--scrolled {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.header_cover.scrolled .header_logo_link.has_scrolled_logo .header_logo_img--default {
  opacity: 0;
}

.header_cover.scrolled .header_logo_link.has_scrolled_logo .header_logo_img--scrolled {
  opacity: 1;
}

.header_cover .main-navigation {
  flex: 1 1 auto;
}

.header_cover .main-navigation ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 20px;
  max-width: 1000px;
}

.header_cover .main-navigation li {
  margin: 0;
}

.header_cover .main-navigation a {
  display: block;
  padding: 10px 17px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  margin: -1px;
  position: relative;
  text-align: center;
  font-size: 20px;
  line-height: 35px;
  font-family: var(--font-p);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.header_cover .main-navigation a::before,
.header_cover .main-navigation a::after {
  position: absolute;
  content: "";
}

.header_cover .main-navigation a::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.header_cover .main-navigation a::after {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease 0.2s;
  z-index: -1;
}

.header_cover .main-navigation a:hover::before,
.header_cover .main-navigation a:focus-visible::before {
  transform: scaleX(1);
}

.header_cover .main-navigation a:hover::after,
.header_cover .main-navigation a:focus-visible::after {
  transform: scaleY(1);
}

.header_cover .main-navigation .current-menu-item>a,
.header_cover .main-navigation .current_page_item>a {
  background: var(--blue);
  color: #fff;
}

.header_cover .main-navigation a:hover,
.header_cover .main-navigation a:focus,
.header_cover .main-navigation a:focus-visible {
  color: #fff;
}

.header_phone_wrap {
  flex: 0 0 auto;
  padding-left: 28px;
  position: relative;
}

.header_phone_wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
}

.header_cover.scrolled .header_phone_wrap::before {
  background: var(--gray);
}

.header_phone_link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 47px;
}

.header_phone_icon {
  width: 35px;
  height: 35px;
  top: 50%;
  left: 0;
  z-index: 1111;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: translateY(-50%);
  filter: invert(97%) sepia(5%) saturate(89%) hue-rotate(67deg) brightness(269%) contrast(100%);
  transition: filter 0.3s ease;
  position: absolute;
}

.header_phone_text {
  font-size: 27px;
  line-height: 35px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  font-family: var(--font-p);
  position: relative;
  transition: 0.5s all;
}

.header_phone_link:hover .header_phone_text,
.header_phone_link:focus .header_phone_text,
.header_phone_link:focus-visible .header_phone_text {
  color: #ffffffa1;
}

.header_cover .menu-toggle {
  display: none;
}

.header_cover.scrolled .header_phone_icon {
  filter: none;
}

.header_cover.scrolled .main-navigation a {
  color: var(--gray);
}

.header_cover.scrolled .main-navigation a:hover,
.header_cover.scrolled .main-navigation a:focus,
.header_cover.scrolled .main-navigation a:focus-visible {
  color: var(--white);
}

.header_cover.scrolled .main-navigation .current-menu-item>a,
.header_cover.scrolled .main-navigation .current_page_item>a,
.header_cover.scrolled .main-navigation .current-menu-ancestor>a,
.header_cover.scrolled .main-navigation .current-page-ancestor>a {
  color: var(--white);
}

.header_cover.scrolled .header_phone_text {
  color: var(--blue);
}

.header_mobile_phone {
  display: none;
}

.mobile_bottom_nav,
.mobile_menu_overlay {
  display: none;
}

.mobile_bottom_nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 75px;
  background: #1f2d5b;
  z-index: 10030;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 0;
}

.mobile_bottom_item {
  width: 20%;
  min-width: 0;
  text-align: center;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--font-p);
  font-size: 14px;
  line-height: 1;
  background: transparent;
  border: 0;
  padding: 3px 0 0;
}

.mobile_bottom_label {
  font-size: 15px;
  line-height: 1;
  margin: 0;
  color: #fff;
  display: block;
  font-family: var(--font-2);
  margin-top: 10px;
}

.mobile_bottom_item:hover,
.mobile_bottom_item:focus,
.mobile_bottom_item:focus-visible {
  color: var(--white);
}

.mobile_bottom_icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile_bottom_icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.mobile_bottom_icon i {
  font-size: 22px;
  line-height: 1;
}

.mobile_bottom_phone_circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -12px;
}

.mobile_bottom_phone_circle svg {
  width: 24px;
  height: 24px;
  fill: #1f2d5b;
}

.mobile_bottom_phone_circle i {
  font-size: 22px;
  line-height: 1;
  color: #1f2d5b;
}

.mobile_menu_overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 10020;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
}

.mobile_menu_overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--l-blue);
  opacity: 0.12;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.45s ease;
  transition-delay: 0.16s;
}

.mobile_menu_overlay.is-active {
  display: block;
  visibility: visible;
  pointer-events: auto;
}

.mobile_menu_overlay.is-open::before {
  transform: scaleX(1);
  opacity: 0.62;
  transition-delay: 0s;
}

.mobile_menu_panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 64px;
  background: #f6f6f6;
  transform: translateX(-100%);
  transition: transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mobile_menu_overlay.is-open .mobile_menu_panel {
  transform: translateX(0);
  transition-delay: 0.24s;
}

.mobile_menu_close {
  position: absolute;
  right: 25px;
  height: 40px;
  width: 40px;
  border: 2px solid #1d2849;
  top: 25px;
  cursor: pointer;
  transition: 0.3s ease-out all;
  background-color: #1d2849;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile_menu_close i {
  font-size: 24px;
  line-height: 1;
}

.mobile_menu_overlay_nav {
  margin-top: 96px;
}

.mobile_menu_overlay_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile_menu_overlay_nav li {
  border-top: 1px solid #1f2d5b;
}

.mobile_menu_overlay_nav li:last-child {
  border-bottom: 1px solid #1f2d5b;
}

.mobile_menu_overlay_nav a {
  display: block;
  text-align: center;
  color: #1f2d5b;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  font-family: var(--font-p);
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 10px;
}

#mobile-overlay-menu li {
  border-bottom: 1px solid #1d2849 !important;
  text-shadow: none !important;
  border-top: 1px solid transparent !important;
}

#mobile-overlay-menu a {
  font-size: 20px;
  color: #1d2849;
  display: block;
  padding: 15px 30px;
  text-transform: uppercase;
}




/* Home styles */
.home_hero_section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.home_hero_media_wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home_hero_video,
.home_hero_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home_hero_fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.home_hero_section.video-started .home_hero_fallback {
  opacity: 0;
  pointer-events: none;
}

.home_hero_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 3;
}

.home_hero_content_wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 20px 78px;
}

.home_hero_content {
  max-width: 100%;
  text-align: center;
}

.home_hero_title,
.home_hero_title p {
  font-size: clamp(30px, 4vw, 60px);
  letter-spacing: -1px;
  line-height: 60px;
  color: #fff;
  font-weight: 300;
  font-family: var(--font-h);
  text-align: center;
}

.home_hero_title p {
  color: #fff;
  font-size: inherit;
  line-height: inherit;
  font-weight: 300;
  font-family: var(--font-h);
  margin: 0;
}

.btn-1 {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  background: var(--blue);
  font-size: 18px;
  border: 2px solid var(--blue);
  margin-top: 50px;
  transition: all 0.3s ease-in-out;
  margin-left: auto;
  margin-right: auto;
}

.btn-1:hover,
.btn-1:focus {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

/* Home stats section */
.home_stats_section {
  background: var(--white);
  padding: 84px 20px;
}

.section_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  background: var(--blue);
  padding: 0 15px;
}

.stats_section_wrapper {
  padding: 100px;
}


.home_stats_heading {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.home_stats_heading,
.home_stats_heading p {
  color: var(--white);
  font-family: var(--font-h);
  font-size: 32px;
  text-align: center;
  font-weight: 300;
  line-height: 1.5;
}

.home_stats_heading p {
  margin: 0;
}

.home_stats_grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1100px;
  margin: 62px auto 0;
}

.home_stat_item {
  text-align: center;
  padding: 0 24px;
}

.home_stat_item+.home_stat_item {
  border-left: 1px solid rgba(86, 167, 216, 0.72);
}

.home_stat_number {
  color: var(--white);
  font-family: var(--font-h);
  font-size: 60px;
  letter-spacing: -1px;
  line-height: 1.2;
  font-weight: 300;
  white-space: nowrap;
  padding-top: 4px;
  padding-bottom: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home_stat_number .odometer {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: baseline;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.home_stat_number .odometer.odometer-auto-theme,
.home_stat_number .odometer.odometer-theme-default {
  display: inline-block;
  overflow: hidden;
}

.home_stat_number .odometer .odometer-inside,
.home_stat_number .odometer .odometer-ribbon,
.home_stat_number .odometer .odometer-ribbon-inner,
.home_stat_number .odometer .odometer-digit,
.home_stat_number .odometer .odometer-digit-inner,
.home_stat_number .odometer .odometer-value {
  line-height: 1.2 !important;
}

.home_stat_number .odometer .odometer-inside,
.home_stat_number .odometer .odometer-ribbon,
.home_stat_number .odometer .odometer-digit,
.home_stat_number .odometer .odometer-digit-inner {
  overflow: hidden !important;
  height: 1.2em;
}

.home_stat_number .odometer .odometer-ribbon-inner,
.home_stat_number .odometer .odometer-value {
  overflow: visible !important;
}

.home_stat_number .odometer .odometer-digit {
  vertical-align: baseline;
}

.home_stat_prefix,
.home_stat_suffix {
  display: inline-block;
  line-height: inherit;
}

.home_stat_name,
.home_stat_name p {
  margin-top: 10px;
  color: var(--white);
  font-family: var(--font-p);
  font-size: 16px;
  text-transform: uppercase;
}

.home_stat_name p {
  margin: 0;
}

/* Home about section */
.home_about_section {
  position: relative;
  background: var(--white);
  padding: 180px 20px;
  overflow: hidden;
}

.home_about_section::after {
  content: '';
  background-image: var(--home-about-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 982px;
  height: 1105px;
  z-index: 1;
}

.home_about_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 51% 35%;
  justify-content: space-between;
  align-items: center;
  column-gap: 0;
  row-gap: 28px;
  position: relative;
  z-index: 1;
}

.home_about_media_wrap {
  position: relative;
  aspect-ratio: 16/9;
}

.home_about_left_overlay {
  position: absolute;
  left: -88px;
  top: -84px;
  width: min(46vw, 660px);
  height: min(45vw, 650px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  pointer-events: none;
}

.home_about_media_frame {
  position: relative;
  z-index: 2;
  background: #d5d5d5;
  overflow: visible;
}

.home_about_media_frame::after {
  content: '';
  background: var(--blue);
  width: 180px;
  height: 301px;
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: -1;
  pointer-events: none;
}

.home_about_media_frame::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 191px;
  background-color: var(--blue);
  bottom: -139px;
  left: 0;
  pointer-events: none;
}

.home_about_media_frame[data-about-video-open] {
  cursor: pointer;
}

.home_about_preview_image {
  width: 100%;
  display: block;
  height: auto;
}

.home_about_video_trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  z-index: 6;
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.home_about_video_trigger:hover,
.home_about_video_trigger:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
}

.home_about_video_trigger_icon {
  position: relative;
  width: 28px;
  height: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home_about_video_trigger_icon::before {
  content: '';
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  height: 70px;
  width: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #fff;
}

.home_about_video_trigger_icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.home_about_video_trigger_fallback {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
  transform: translateX(2px);
}

.home_about_bottom_logo {
  position: absolute;
  bottom: -100px;
  right: -100px;
  z-index: 2;
  width: 182px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.home_about_content_col {
  color: #041428;
}

.home_about_content_col h1,
.home_about_content_col h2,
.home_about_content_col h3,
.home_about_content_col h4,
.home_about_content_col h5,
.home_about_content_col h6 {
  color: #041428;
  font-family: var(--font-h);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.home_about_content_col h2 {
  font-size: 36px;
  padding-right: 0;
  padding-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
}

.home_about_content_col h3 {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 21px;
  line-height: 1.4;
  color: #404040;
  margin-bottom: 0;
}

.home_about_content_col p {
  font-size: 18px;
  line-height: 32px;
  color: #555555;
  font-weight: 400;
  font-family: var(--font-p);
  padding-right: 30px;
  margin: 0;
}

.home_about_content_col p:last-child {
  padding-bottom: 0;
}

.home_about_content_col p strong {
  padding-bottom: 15px;
  font-size: 22px;
  line-height: 36px;
  color: #010101;
  font-weight: 500;
  font-family: var(--font-h);
  display: inline-block;
}

.home_about_video_modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.home_about_video_modal[hidden] {
  display: none !important;
}

.home_about_video_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 68, 96, 0.74);
}

.home_about_video_dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
}

.home_about_video_player_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.home_about_modal_video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home_about_video_close {
  position: absolute;
  top: 0;
  right: -52px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  background: var(--white);
  color: #031630;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.home_about_video_close i {
  line-height: 1;
}

body.home-about-video-open {
  overflow: hidden;
}

/* Home process section */
.home_process_section {
  background: var(--white);
  padding-left: 82px;
  padding-right: 82px;
  padding-top: 178px;
  padding-bottom: 105px;
}

.home_process_section .section_container {
  background: transparent;
  padding: 0;
}

.home_process_inner {
  text-align: center;
}

.home_process_heading {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 21px;
  color: #404040;
}

.home_process_subheading {
  font-size: 50px;
  letter-spacing: -1px;
  line-height: 50px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 33px;
}

.home_process_grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1510px;
  margin: 34px auto;
}

.home_process_item {
  width: 33.33%;
  min-height: 460px;
  padding: 72px 34px 40px;
  border: 1px solid #f4f4f4;
  position: relative;
  transition: 0.5s ease-in-out;
}

.home_process_item:hover {
  box-shadow: 0px 42px 42px -8px rgb(0 0 0 / 6%);
  border: 1px solid transparent;
}

.home_process_item::after {
  content: '\f054';
  font-family: 'FontAwesome';
  background-color: var(--l-blue);
  color: #fff;
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.home_process_item:last-child::after {
  display: none;
}

.home_process_icon_wrap {
  position: relative;
  width: 180px;
  margin: 0 auto;
}

.home_process_icon_circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home_process_icon_img {
  width: 82px;
  max-width: 78%;
  height: auto;
}

.home_process_step {
  position: absolute;
  top: 10px;
  right: 0px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--l-blue);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-p);
}

.home_process_arrow {
  display: none;
}

.home_process_item_title {
  margin-top: 42px;
  font-size: 25px;
  letter-spacing: 0px;
  line-height: 35px;
  color: #000000;
  font-weight: 500;
  font-family: var(--font-h);
  text-align: center;
}

.home_process_item_description,
.home_process_item_description p {
  margin-top: 16px;
  color: #2f2f2f;
  font-family: var(--font-p);
  font-size: 20px;
  line-height: 1.5;
}

.home_process_item_description p {
  margin-bottom: 0;
}

/* Home sticky section */
.home_sticky_bg_section {
  padding: 100px 0;
  background: #cccccc26;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 130px;
}

.home_sticky_bg_section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  top: 0;
  left: 0;
  opacity: 0.83;
}

.home_sticky_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.home_sticky_title,
.home_sticky_title h2 {
  color: #fff;
  font-size: clamp(16px, 2.5vw, 40px);
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto;
  font-family: var(--font-h);
  max-width: 70%;
}

/* Home contact section */
.home_contact_section {
  padding: 0 0 100px;
  background: var(--white);
}

.home_contact_section .section_container {
  background: transparent;
  max-width: 1540px;
  padding: 0 15px;
}

.home_contact_form_wrap {
  background-color: #f9f9f9 !important;
  padding: 60px 60px 60px 60px;
  box-shadow: 0 0px 31px rgb(0 0 0 / 14%), 0 0px 0px rgb(0 0 0 / 24%);
}

.home_contact_form_heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 50px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 33px;
  margin: 0;
}

/* Home locations section */
.home_locations_section {
  width: 100%;
  position: relative;
  background-color: var(--blue);
  background-size: 100% 90%;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 120px 0 0;
}

.home_locations_section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 90%;
  background-color: var(--blue);
  top: 0;
  left: 0;
  opacity: 0.83;
}

.home_locations_inner {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.home_locations_heading {
  font-size: 50px;
  letter-spacing: -1px;
  line-height: 50px;
  color: #ffffff;
  font-weight: 300;
  font-family: var(--font-h);
  text-align: center;
  padding-bottom: 80px;
  margin: 0;
}

.home_locations_cards {
  display: flex;
  flex-wrap: wrap;
  background: #f4f4f4;
}

.home_location_card {
  padding: 43px 50px;
  border-right: 1px solid #002d6233;
  position: relative;
  width: calc(100% / 5 - 0px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 356px;
}

.home_location_card:nth-child(5n) {
  border-right: 0;
}

.home_location_card_content {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

.home_location_top {
  min-height: 95px;
}

.home_location_middle {
  flex: 1;
  display: flex;
  align-items: start;
}

.home_location_bottom {
  margin-top: auto;
}

.home_location_card::before {
  content: '';
  position: absolute;
  height: 0;
  background-color: #56a7d8;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.home_location_card:hover::before {
  opacity: 1;
  height: 4px;
}

.home_location_name {
  font-size: 25px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
  font-family: var(--font-h);
  margin: 0;
}

.home_location_details {
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
  margin-top: 0;
}

.home_location_address {
  display: block;
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 30px;
  color: #555555;
  font-weight: 400;
  font-family: var(--font-p);
  text-decoration: none;
  padding-bottom: 30px;
  margin: 0;
}

.home_location_phone {
  margin-top: 0;
  font-size: 25px;
  letter-spacing: 3px;
  line-height: 40px;
  color: #56a7d8;
  font-weight: 600;
  font-family: var(--font-p);
  text-decoration: none;
  transition: 0.4s ease-in-out;
  white-space: nowrap;
  word-break: keep-all;
  display: inline-block;
}

.home_location_phone:hover {
  color: #c5c5c5;
}



/* About css */

.about_top_section {
  position: relative;
  background: var(--white);
  padding: 230px 20px 120px;
  overflow: visible;
  z-index: 2;
}

.about_top_section::after {
  content: '';
  background-image: var(--about-top-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 982px;
  height: 1105px;
  z-index: 1;
}

.about_top_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 51% 35%;
  justify-content: space-between;
  align-items: start;
  column-gap: 0;
  row-gap: 28px;
  position: relative;
  z-index: 1;
}

.about_top_media_wrap {
  position: relative;
  aspect-ratio: 16/9;
}

.about_top_left_overlay {
  position: absolute;
  left: -88px;
  top: -120px;
  width: min(46vw, 660px);
  height: min(45vw, 650px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  pointer-events: none;
}

.about_top_media_frame {
  position: relative;
  z-index: 2;
  background: #d5d5d5;
  overflow: visible;
}

.about_top_media_frame::after {
  content: '';
  background: #002d62;
  width: 180px;
  height: 301px;
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: -1;
  pointer-events: none;
}

.about_top_media_frame::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 191px;
  background-color: var(--blue);
  bottom: -139px;
  left: 0;
  pointer-events: none;
  z-index: 3;
}

.about_top_preview_image {
  width: 100%;
  display: block;
  height: auto;
}

.about_top_content_col {
  color: #041428;
}

.about_top_content_col h2 {
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 50px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 10px;
  margin: 0;
  text-transform: capitalize;
}

.about_top_description,
.about_top_description p {
  font-size: 18px;
  line-height: 30px;
  color: #010101;
  font-weight: 300;
  font-family: var(--font-h);
  max-width: 530px;
  width: 100%;
}

.about_top_description p {
  margin-bottom: 16px;
}

.about_top_description p:last-child {
  margin-bottom: 0;
}

.about_middle_section {
  background: #f7f7f7;
  padding: 150px 0;
  position: relative;
  z-index: 1;
}

.about_middle_section .section_container {
  background: transparent;
}

.about_middle_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
}

.about_middle_item {
  width: 45%;
  text-align: center;
  padding: 60px;
  background: #fff;
  box-shadow: 0px 8px 24px 0px rgba(140, 149, 159, 0.2);
  transition: 0.3s ease-in-out;
}

.about_middle_item:hover {
  transform: scale(1.02);
}

.about_middle_icon_wrap {
  margin: 0 auto 25px;
  background: #002d63;
  padding: 30px;
  width: 140px;
}

.about_middle_icon {
  width: 100%;
  display: block;
  height: auto;
}

.about_middle_title {
  font-size: 40px;
  letter-spacing: -1px;
  line-height: 50px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 25px;
  margin: 0;
}

.about_middle_details,
.about_middle_details p {
  font-size: 19px;
  line-height: 31px;
  color: #010101;
  font-weight: 300;
  font-family: var(--font-h);
  margin: 0;
}

.about_middle_details p {
  margin-bottom: 12px;
}

.about_middle_details p:last-child {
  margin-bottom: 0;
}

.about_end_section {
  background: #fff;
  padding: 110px 0;
  position: relative;
  z-index: 1;
}

.about_end_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60% 35%;
  justify-content: space-between;
  align-items: center;
  column-gap: 0;
  row-gap: 24px;
}

.about_end_content_col h2 {
  font-size: 50px;
  letter-spacing: -1px;
  line-height: 50px;
  color: #000000;
  font-weight: 300;
  font-family: var(--font-h);
  padding-bottom: 33px;
  margin: 0;
  text-transform: uppercase;
}

.about_end_description p,
.about_end_description li {
  font-size: 19px;
  line-height: 31px;
  color: #010101;
  font-weight: 300;
  font-family: var(--font-h);
}

.about_end_description p {
  margin: 0;
  padding-bottom: 30px;
}

.about_end_description p:last-child {
  padding-bottom: 0;
}

.about_end_description ul,
.about_end_description ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about_end_description li {
  position: relative;
  margin: 0;
  padding: 0 0 10px 34px;
}

.about_end_description li:last-child {
  padding-bottom: 0;
}

.about_end_description li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #010101;
  position: absolute;
  left: 0;
  top: 5px;
}

.about_end_media_col {
  width: 100%;
}

.about_end_media_frame {
  width: 100%;
}

.about_end_preview_image {
  width: 100%;
  display: block;
  height: auto;
}

.team_archive_section {
  padding: 70px 0 100px;
  background: var(--white);
}

.team_single_section {
  padding: 60px 0 90px;
  background: #fff;
}

.team_archive_filter_title {
  font-size: 35px;
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  margin: 40px 0px 0px;
}

#locationFilter {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin-top: 26px;
}

#locationFilter .dropdown-toggle {
  width: 100%;
  max-width: 200px;
  min-width: 200px;
  position: relative;
  text-align: left;
  padding: 16px 44px 16px 20px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border: 1px solid #ccc;
  color: var(--blue);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: var(--font-p);
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

#locationFilter .dropdown-toggle i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  pointer-events: none;
  font-size: 16px;
  line-height: 1;
  z-index: 1;
}

#locationFilter .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 200px;
  z-index: 9;
}

#locationFilter .location-item {
  width: 100%;
  padding: 10px 20px;
  border-radius: 0;
  box-shadow: none;
  min-width: 200px;
  text-align: left;
  color: #fff;
  background-color: var(--blue);
  border: 1px solid #ccc;
  border-top: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  font-family: var(--font-p);
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

#locationFilter .location-item:hover {
  background: #fff !important;
  color: #002d62 !important;
  border-top: 1px solid #ccc !important;
}

#locationFilter .location-item.active {
  background: #001f4a !important;
  color: #fff !important;
  border-top: 1px solid #ccc !important;
}

.team_archive_grid {
  margin-top: 82px;
  margin-left: -17px;
  margin-right: -17px;
}

.team_archive_card {
  width: 33.333%;
  padding: 0 17px;
  margin-bottom: 34px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
  box-sizing: border-box;
  background: transparent !important;
  box-shadow: none;
  border-radius: 0;
  transition: none;
  will-change: auto;
}

.team_archive_card_inner {
  box-shadow: 0 0px 31px rgb(0 0 0 / 10%), 0 0px 0px rgb(0 0 0 / 24%);
  background: #fff !important;
  border-radius: 10px;
  overflow: hidden;
}

.team_archive_card .team_archive_media {
  padding: 30px 30px 0;
  height: 380px;
}

.team_archive_card .team_archive_content {
  padding: 18px 30px 30px;
}


.team_archive_media {
  display: block;
  overflow: hidden;
}

.team_archive_image,
.team_archive_image_placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.team_archive_image {
  height: 100%;
  border: 1px solid #ccc;
  padding: 10px;
  object-fit: cover;
  object-position: center;
  box-sizing: border-box;
}

.team_archive_image_placeholder {
  background: #dcdcdc;
}

.team_archive_content {
  padding: 18px 30px 30px;
  text-align: center;
}

.team_archive_title {
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  font-size: 35px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
}

.team_archive_title a {
  color: var(--blue);
  text-decoration: none;
}

.team_archive_role {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
}

.team_archive_location {
  margin: 6px 0 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
}

.team_archive_read_more {
  margin-top: 22px;
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  background: var(--blue);
  font-size: 18px;
  border: 2px solid var(--blue);
  line-height: normal;
  transition: all 0.3s ease-in-out;
  font-family: var(--font-p);
}

.team_archive_read_more:hover {
  color: var(--blue);
  background: transparent;
  border: 2px solid var(--blue);
}

.team_archive_pagination {
  margin-top: 42px;
}

.team_archive_empty {
  margin: 0;
  font-size: 20px;
}

.team_single_article {
  margin-top: 50px;
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: visible;
}

.single_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff !important;
  border-radius: 10px;
  -webkit-box-shadow: 0 0px 31px rgb(0 0 0 / 10%), 0 0px 0px rgb(0 0 0 / 24%);
  box-shadow: 0 0px 31px rgb(0 0 0 / 10%), 0 0px 0px rgb(0 0 0 / 24%);
  padding: 40px;
  position: relative;
  width: 100%;
}

.team_single_article::before {
  position: absolute;
  content: '';
  background-color: var(--blue);
  border-radius: 10px;
  left: -12px;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

.team_single_media_wrap {
  width: 30%;
  position: relative;
  padding: 0 10px;
}

.team_single_media {
  width: 100%;
}

.team_single_image {
  width: 100%;
  display: block;
  height: auto;
  border: 1px solid #ccc;
  padding: 10px;
  object-fit: cover;
}

.team_single_content {
  width: 65%;
  padding: 0 10px;
}

.team_single_title {
  margin-bottom: 15px;
  margin-top: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #002d62;
  font-size: 35px;
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
}

.team_single_role {
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
}

.team_single_contact_info {
  margin-bottom: 20px;
}

.team_single_address_link,
.team_single_phone_link,
.team_single_contact_link {
  text-decoration: none;
  display: block;
  margin-right: 0;
  font-family: var(--font-p);
  display: flex;
  align-items: center;
  gap: 5px;
}

.team_single_address_link {
  position: relative;
  line-height: 34px;
  color: var(--blue);
  font-weight: 600;
  font-size: 22px;
}

.team_single_phone_link {
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1;
  letter-spacing: 1px;

}

.team_single_phone_link:hover,
.team_single_contact_link:hover,
.team_single_address_link:hover {
  color: #56a7d8;
}

.team_single_contact_link {
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  line-height: 1;
  letter-spacing: 1px;
}

.team_single_address_link i,
.team_single_phone_link i,
.team_single_contact_link i {
  font-size: 26px;
  display: inline-block;
  text-align: left;
  color: var(--blue);
  margin-right: 6px;
}

.team_single_text {
  margin-top: 50px;
  margin-bottom: 15px;
}

.team_single_text p,
.team_single_text li {
  display: block;
  margin: 15px 0px;
  position: relative;
  line-height: 34px;
  color: #555555;
  font-weight: 400;
  font-family: var(--font-p);
  font-size: 21px;
}

.team_single_text p {
  margin: 0 0 16px;
}

.team_single_text p:last-child {
  margin-bottom: 0;
}

.team_single_nav {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.team_single_nav a {
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}


/* Location pages */
.location_top_banner {
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  position: relative;
  padding-top: 150px;
  padding-bottom: 240px;
  background-position: center;
}

.location_top_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(0, 45, 98, 0.9), rgba(0, 45, 98, 0.95), rgba(0, 45, 98, 0.7), transparent);
}

.location_container {
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  width: 100%;
}

.location_top_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.location_top_left {
  max-width: 580px;
  width: 100%;
}

.location_top_title,
.location_top_title p {
  font-size: 65px;
  line-height: 1.1;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 50px;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 600;
  text-transform: uppercase;
}

.location_top_title p {
  padding-bottom: 0;
  margin-bottom: 0;
}

.location_top_title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 20px 0 0 #fff, 40px 0 0 #fff;
}

.location_top_short_title p {
  font-size: 22px;
  color: rgb(255 255 255 / 80%);
  font-weight: 300;
  font-family: var(--font-h);
  line-height: 1.3;
}

.location_top_right {
  max-width: 590px;
  background: #002d62ad;
  padding: 30px;
  width: 100%;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.location_form_heading p {
  font-size: 30px;
  color: #fff;
  font-weight: 300;
  font-family: var(--font-h);
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.location_form_heading p strong {
  font-weight: 700;
}

.location_company_logo {
  position: absolute;
  bottom: 30px;
  right: 20%;
}

.location_company_logo img {
  max-width: 130px;
  width: 100%;
  height: auto;
  display: block;
}

.location_middle_section {
  position: relative;
  background: var(--white);
  padding: 130px 20px 80px;
  overflow: hidden;
}

.location_middle_section::after {
  content: '';
  background-image: var(--location-middle-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 982px;
  height: 1105px;
  z-index: 0;
}

.location_middle_container {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
  position: relative;
  z-index: 1;
}

.location_middle_media_wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-right: 42px;
  padding-bottom: 72px;
}

.location_middle_left_overlay {
  position: absolute;
  left: -88px;
  top: -84px;
  width: min(46vw, 660px);
  height: min(45vw, 650px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  z-index: 0;
  pointer-events: none;
}

.location_middle_media_frame {
  position: relative;
  z-index: 2;
  background: #d5d5d5;
  overflow: visible;
}

.location_middle_media_frame::after {
  content: '';
  background: var(--blue);
  width: 180px;
  height: 301px;
  position: absolute;
  top: -60px;
  right: -60px;
  z-index: -1;
  pointer-events: none;
}

.location_middle_media_frame::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 191px;
  background-color: var(--blue);
  bottom: -139px;
  left: 0;
  pointer-events: none;
}

.location_middle_media_frame[data-location-video-open] {
  cursor: pointer;
}

.location_middle_preview_image {
  width: 100%;
  display: block;
  height: auto;
}

.location_middle_video_trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border: none;
  border-radius: 0;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  z-index: 6;
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.location_middle_video_trigger:hover,
.location_middle_video_trigger:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
}

.location_middle_video_trigger_icon {
  position: relative;
  width: 28px;
  height: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.location_middle_video_trigger_icon::before {
  content: '';
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  height: 70px;
  width: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #fff;
}

.location_middle_video_trigger_icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.location_middle_video_trigger_fallback {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--white);
  transform: translateX(2px);
}

.location_middle_video_modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.location_middle_video_modal[hidden] {
  display: none !important;
}

.location_middle_video_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 68, 96, 0.74);
}

.location_middle_video_dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
}

.location_middle_video_player_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.location_middle_modal_video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.location_middle_video_close {
  position: absolute;
  top: 0;
  right: -52px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  background: var(--white);
  color: #031630;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.location_middle_video_close i {
  line-height: 1;
}

body.location-middle-video-open {
  overflow: hidden;
}

.location_end_section {
  background: linear-gradient(to right, var(--blue) 50%, var(--white) 50%);
  border-top: 2px solid var(--blue);
}

.location_end_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.location_end_left,
.location_end_right {
  width: 50%;
}

.location_end_left {
  padding: 95px 70px 95px 0;
}

.location_end_right {
  padding: 95px 0 95px 70px;
  text-align: center;
  max-width: 488px;
  margin-left: auto;
}

.location_end_left_content h2,
.location_end_left_content h2 p {
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  padding-bottom: 0;
  margin-bottom: 30px;
  font-size: 50px;
  letter-spacing: -1px;
  font-weight: 300;
  font-family: var(--font-h);
}

.location_end_left_content h2 p {
  margin: 0;
}

.location_end_left_content h2 b {
  font-weight: 700;
}

.location_end_left_content p {
  color: var(--white);
  font-size: 22px;
  font-family: var(--font-p);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.location_end_logo {
  width: 250px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.location_end_locations {
  margin-top: 34px;
}

.location_end_locations ul {
  display: flex;
  gap: 30px;
  row-gap: 30px;
  row-gap: 5px;
  flex-wrap: wrap;
  margin-left: 0;
  padding-left: 0;
  justify-content: center;
}

.location_end_locations ul li:first-child,
.location_end_locations ul li:nth-child(3n) {
  list-style: none;
}

.location_end_locations li {
  font-size: 19px;
  color: var(--blue);
  font-family: var(--font-h);
  font-weight: 600;
  text-transform: uppercase;
}

.location_end_get_in_touch {
  margin-top: 55px;
}

.location_end_touch_title {
  font-size: 20px;
  margin-bottom: 15px;
  text-decoration: underline;
  font-family: var(--font-h);
  color: var(--blue);
  font-weight: bold;
  text-transform: uppercase;
}

.location_end_get_in_touch p,
.location_end_get_in_touch p a {
  font-family: var(--font-h);
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.location_end_get_in_touch p a {
  color: var(--blue);
  transition: all 0.3s ease-in-out;
}

.location_end_get_in_touch p a:hover {
  color: var(--l-blue);
}

/* Process video section */
.process_video_section {
  background: #fff;
  padding: 80px 0;
}

.process_video_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 15px;
}

.process_video_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process_video_title {
  font-size: 42px;
  letter-spacing: 0;
  line-height: 50px;
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-p);
  padding-bottom: 20px;
  margin: 0;
}

.process_video_media_frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d2d2d2;
}

.process_video_media_frame[data-process-video-open] {
  cursor: pointer;
}

.process_video_preview_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process_video_trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.process_video_trigger_icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.process_video_trigger_icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: rgba(2, 11, 25, 0.22);
}

.process_video_trigger_icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.process_video_trigger_fallback {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #fff;
  margin-left: 4px;
  position: relative;
  z-index: 1;
}

.process_video_modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.process_video_modal[hidden] {
  display: none !important;
}

.process_video_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.process_video_dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 96vw);
}

.process_video_player_wrap {
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 9;
}

.process_video_modal_video {
  width: 100%;
  height: 100%;
  display: block;
}

.process_video_close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.process-video-open {
  overflow: hidden;
}

/* Process timeline section */
.process_timeline_section {
  position: relative;
  background: #fff;
  padding: 36px 0 90px;
}

.process_timeline_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 22px;
}

.process_timeline_wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 34px 0;
}

.process_timeline_track {
  background-color: #d2dae6;
  width: 5px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 5px;
}

.process_timeline_track_fill {
  background-color: #002d63;
  position: absolute;
  top: 0;
  left: 50%;
  width: 5px;
  height: 0;
  transform: translateX(-50%);
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.2s ease;
  will-change: height, opacity;
  z-index: 1;
}

.process_timeline_track_fill.is-filled {
  opacity: 1;
}

.process_timeline_wrap::before,
.process_timeline_wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #002d63;
  z-index: 2;
}

.process_timeline_wrap::before {
  top: 0;
}

.process_timeline_wrap::after {
  bottom: 0;
}

.process_timeline_row {
  width: 100%;
  position: relative;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr 92px 1fr;
  align-items: center;
}

.process_timeline_col {
  width: 100%;
  display: flex;
}

.process_timeline_col--left {
  justify-content: flex-end;
  padding-right: 42px;
}

.process_timeline_col--right {
  justify-content: flex-end;
  padding-left: 42px;
}

.process_timeline_center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.process_timeline_step {
  border: 4px solid #002d63;
  font-size: 28px;
  line-height: 1;
  background: #002d63;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--font-p);
  font-weight: 700;
}

.process_timeline_icon_box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
}

.process_timeline_icon {
  width: auto;
  object-fit: contain;
  background: #002d63;
  padding: 50px;
}

.process_timeline_content {
  position: relative;
  background: #cccccc47;
  padding: 40px;
  width: 85%;
  z-index: 2;
}

.process_timeline_col--right .process_timeline_content::before,
.process_timeline_col--left .process_timeline_content::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.process_timeline_col--right .process_timeline_content::before {
  left: -20px;
  border-right: 20px solid #e5e5e5;
}

.process_timeline_col--left .process_timeline_content::before {
  right: -20px;
  border-left: 20px solid #e5e5e5;
}

.process_timeline_title {
  font-size: 35px;
  font-weight: 700;
  font-family: var(--font-p);
  color: #002d62;
  line-height: 1.3;
  margin: 0;
  padding: 0 0 16px;
}

.process_timeline_text,
.process_timeline_text p {
  font-size: 18px;
  display: block;
  margin: 0;
  line-height: 1.88;
  color: #555555;
  font-weight: 400;
  font-family: var(--font-p);
}

.process_timeline_text p+p {
  margin-top: 12px;
}


/* free-consultation-form Style */

.free-consultation-form p br {
  display: none;
}

/* Title */
.free-consultation-form .form-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Required note */
.free-consultation-form .required-note {
  font-size: 14px;
  margin-bottom: 25px;
  color: #333;
}

/* Labels */
.free-consultation-form label {
  display: block;
  color: var(--white);
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-p);
}

.free-consultation-form label span {
  color: red;
}

/* Rows */
.free-consultation-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 0px;
}

.free-consultation-form .field {
  flex: 1;
}

/* Form group spacing */
.free-consultation-form .form-group {
  margin-bottom: 30px;
}

/* Inputs & textarea */
.free-consultation-form input,
.free-consultation-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--white);
  background: transparent;
  padding: 6px 0;
  outline: none;
  font-size: 19px;
  line-height: 22px !important;
  color: var(--white);
  caret-color: var(--white);
  font-weight: 500;
  font-family: var(--font-p);
  border-radius: 0;
}

.free-consultation-form input:focus,
.free-consultation-form textarea:focus {
  color: var(--white);
  caret-color: var(--white);
  font-family: var(--font-p);
}

/* Placeholder */
.free-consultation-form input::placeholder,
.free-consultation-form textarea::placeholder {
  color: var(--white);
}

/* Textarea height */
.free-consultation-form textarea {
  max-height: 80px;
  resize: none;
}

/* Submit button */
.free-consultation-form .form-submit {
  text-align: center;
  margin-top: 40px;
}

.free-consultation-form input[type="submit"] {
  width: fit-content;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 26px;
  color: #002d62;
  font-weight: 500;
  background-color: #fff;
  display: inline-block;
  padding: 15px 45px;
  border: 2px solid #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 0;
}

.free-consultation-form input[type="submit"]:hover {
  background: transparent;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .free-consultation-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

.location_top_right .wpcf7 form.failed .wpcf7-response-output,
.location_top_right .wpcf7 form.invalid .wpcf7-response-output,
.location_top_right .wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid red !important;
  color: red;
  background: #fff !important;
}








/* Contact Page css */

.contact_section {
  padding: 150px 0 100px;
  background: var(--white);
}

.contact_section .section_container {
  background: var(--white);
}

.contact_section .contact_form_heading {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact_section .cf7-contact-form label {
  color: #555555;
  font-family: var(--font-p);
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 500 !important;
}

.contact_section .cf7-contact-form input::placeholder,
.contact_section .cf7-contact-form textarea::placeholder {
  color: #555;
}

/* Survey page form section */
.survey_form_section {
  background: var(--white);
  padding: 100px 0px;
}

.survey_form_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.survey_form_title {
  max-width: 1050px;
  margin: 0 auto 70px;
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  font-size: 35px;
  text-align: center;
}

.survey_form_box {
  background-color: #f9f9f9 !important;
  padding: 60px 60px 60px 60px;
  box-shadow: 0 0px 31px rgb(0 0 0 / 14%), 0 0px 0px rgb(0 0 0 / 24%);
}

.survey_form_box .cf7-contact-form .required-note {
  font-size: 18px;
  display: block;
  margin: 15px 0px;
  position: relative;
  line-height: 34px;
  color: var(--gray);
  font-weight: 400;
  font-family: var(--font-p);
}


.survey_form_box .cf7-contact-form label {
  display: block;
  color: var(--gray);
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 500;
  font-family: var(--font-p);
}

.survey_form_box .cf7-contact-form .form-row {
  margin-bottom: 15px;
}


/* Wrapper */
.survey_form_box .cf7-contact-form .form-group {
  position: relative;
}

/* CF7 select wrapper */
.survey_form_box .cf7-contact-form .form-group .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

/* Select field */
.survey_form_box .cf7-contact-form .form-group select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #555555;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  font-size: 21px;
  line-height: 22px !important;
  color: #555555;
  font-weight: 500;
  font-family: var(--font-p);
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 24px 24px;
  padding: 15px 48px 15px 0;
  cursor: pointer;
  line-height: 1.2;
  display: block;
}

/* Focus effect */
.survey_form_box .cf7-contact-form .form-group select:focus {
  border-bottom: 2px solid #555555;
}

.survey_form_box .cf7-contact-form .form-group select option {
  color: #555555;
  background-color: #f9f9f9;
}

.survey_form_box .cf7-contact-form .form-group select option {
  font-style: 16px;
}

.survey_location_section {
  background: #fff;
  padding: 0 15px 100px;
}

.survey_location_section .home_locations_cards{
  filter: drop-shadow(0px 0px 42.5px rgba(0,0,0,0.14));
}

.survey_location_section .home_location_card{
  background: var(--white);
  border-right: 1px solid #002d6233;
}

.survey_location_section .home_location_card:last-child{
  background: var(--white);
  border-right: none;
}






/* Contact locations section */
.contact_locations_section {
  background: var(--white);
  padding-bottom: 100px;
}

.contact_locations_section .section_container {
  background: transparent;
}

.contact_location_box {
  background: var(--blue);
  padding-left: 60px;
  margin-bottom: 40px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contact_location_left {
  width: 25%;
  padding: 45px 0;
}

.contact_location_right {
  width: 70%;
  min-height: 380px;
}

.contact_location_map,
.contact_location_map iframe {
  width: 100%;
  height: 100%;
}

.contact_location_map iframe {
  border: 0;
  display: block;
  min-height: 380px;
}

.contact_location_title {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-p);
}

.contact_location_heading_wrap {
  margin-bottom: 18px;
}

.contact_location_details {
  color: #fff;
  font-size: 25px;
  line-height: 1.3;
  margin: 0;
  font-family: var(--font-p);
}

.contact_location_address {
  font-size: 23px;
  padding-left: 40px;
  color: #fff;
  display: block;
  position: relative;
  text-decoration: none;
  margin-bottom: 24px;
  line-height: 1.45;
}

.contact_location_address::before {
  content: '\f3c5';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
}

.contact_location_phone {
  color: #fff;
  font-family: var(--font-p);
  text-decoration: none;
  font-size: 28px;
  position: relative;
  padding-left: 40px;
  display: inline-block;
}

.contact_location_phone::before {
  content: '\f095';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
}

.contact_location_left a:hover {
  color: #c5c5c5;
}



/* Contact Form */
.cf7-contact-form .red {
  color: red;
}

.cf7-contact-form p br {
  display: none;
}

/* Title */
.cf7-contact-form .form-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Required note */
.cf7-contact-form .required-note {
  font-size: 14px;
  margin-bottom: 25px;
  color: #333;
}

/* Labels */
.cf7-contact-form label {
  display: block;
  color: #404040;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-p);
}

.cf7-contact-form label span {
  color: red;
}

/* Rows */
.cf7-contact-form .form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.cf7-contact-form .field {
  flex: 1;
}

/* Form group spacing */
.cf7-contact-form .form-group {
  margin-bottom: 30px;
}

/* Inputs & textarea */
.cf7-contact-form input,
.cf7-contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #555555;
  background: transparent;
  padding: 15px 0;
  outline: none;
  font-size: 21px;
  line-height: 22px !important;
  color: #555555;
  font-weight: 500;
  font-family: var(--font-p);
  border-radius: 0;
}

/* Placeholder */
.cf7-contact-form input::placeholder,
.cf7-contact-form textarea::placeholder {
  color: #999;
}

/* Textarea height */
.cf7-contact-form textarea {
  max-height: 110px;
  resize: none;
}

/* Submit button */
.cf7-contact-form .form-submit {
  text-align: center;
  margin-top: 40px;
}

.cf7-contact-form input[type="submit"] {
  width: auto !important;
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-p);
  background-color: var(--blue);
  display: inline-block;
  padding: 26px 75px;
  border: 2px solid var(--blue);
  cursor: pointer;

  transition: all 0.3s ease-in-out;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cf7-contact-form input[type="submit"]:hover {
  color: var(--blue);
  background-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .cf7-contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}


.wpcf7-response-output {
  display: block;
  text-align: center;
  background: #e6ffed;
  /* soft green background */
  border: 1px solid #34d399 !important;
  /* green border */
  color: #065f46;
  /* dark green text */
  font-size: 16px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px 0;
  line-height: 1.6;
  /* spacing for <br> lines */
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease forwards;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border: 1px solid red !important;
  color: red;
  background: #ff00001c;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpcf7-spinner {
  display: block !important;
  margin: 10px auto 0 auto !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  float: none !important;
  transform: none !important;
}








/* Footer */
.custom-footer {
  background: var(--blue);
  padding: 72px 20px 28px;
}

.footer_container {
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.footer_top {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.footer_logo_wrap {
  text-align: center;
  margin-bottom: 34px;
}

.footer_logo {
  width: auto;
  max-width: 200px;
  height: auto;
}

.footer_logo_link {
  display: inline-block;
}

.footer_main_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.footer_center_col {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  width: min(100%, 860px);
  margin: 0;
}

.footer_content {
  color: var(--white);
  margin: 0 auto;
  max-width: 528px;
}

.footer_content p {
  font-size: 16px;
  line-height: 28px;
  color: #b5c1d0;
  font-weight: 400;
  font-family: var(--font-p);
}

.footer_follow_block {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
}

.footer_follow_text {
  font-size: 16px;
  line-height: 35px;
  text-transform: uppercase;
  color: var(--l-blue);
  font-weight: 500;
  font-family: var(--font-p);
  padding-bottom: 30px;
}

.footer_socials {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer_social_icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--l-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--l-blue);
  background: transparent;
  transition: 0.35s ease all;
}

.footer_social_icon i {
  font-size: 22px;
  line-height: 1;
}

.footer_social_icon:hover,
.footer_social_icon:focus,
.footer_social_icon:focus-visible {
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.footer_social_icon.linkedin:hover,
.footer_social_icon.linkedin:focus,
.footer_social_icon.linkedin:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.footer_social_icon.facebook:hover,
.footer_social_icon.facebook:focus,
.footer_social_icon.facebook:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #1877f2 0%, #0d5ed7 100%);
}

.footer_social_icon.instagram:hover,
.footer_social_icon.instagram:focus,
.footer_social_icon.instagram:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.footer_right_col {
  grid-column: 3;
  justify-self: end;
  text-align: left;
  padding-top: 6px;
}

.footer_right_image {
  width: auto;
  max-width: 160px;
  height: auto;
  display: inline-block;
}

.footer_image_link {
  display: inline-block;
}

.footer_mobile_image_wrap {
  display: none;
  margin-top: 24px;
}

.footer_bottom {
  margin-top: 58px;
  border-top: 1px solid #ffffff38;
  padding-top: 22px;
}

.footer_copyright {
  font-size: 14px;
  line-height: 35px;
  color: #ffffff;
  font-weight: 400;
  font-family: var(--font-p);
  text-align: center;
  transition: 0.5s all;
}

.footer_copyright a {
  color: var(--l-blue);
}

.footer_copyright a:hover,
.footer_copyright a:focus {
  color: var(--white);
}

body.admin-bar .header_cover {
  top: 32px;
}

/* Inner banner */
.inner_banner_section {
  position: relative;
  z-index: 1;
  min-height: 550px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.inner_banner_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  opacity: 0.4;
  z-index: -1;
}

.section_container.inner_banner_container {
  background: transparent;
  position: relative;
  z-index: 1;
}

.inner_banner_title {
  font-size: 55px;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.inner_banner_breadcrumbs {
  padding: 18px 0px;
  background-color: var(--blue);
  color: rgb(255, 255, 255);
  font-size: 16px;
  position: relative;
  font-weight: 400;
}

.section_container.inner_banner_breadcrumb_container {
  background: transparent;
}

.inner_banner_yoast_breadcrumbs {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.inner_banner_yoast_breadcrumbs a,
.inner_banner_yoast_breadcrumbs span {
  color: #fff;
}

.inner_banner_yoast_breadcrumbs a:hover {
  color: #d5e7ff;
}

/* 404 page */
.error_404_section {
  background: var(--white);
  padding: 100px 20px;
}

.error_404_section .section_container {
  background: transparent;
}

.error_404_section .error-page {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error_404_section .error-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.error_404_section .error-page .err {
  color: var(--blue);
  font-family: var(--font-p);
  font-size: 200px;
  font-weight: 600;
  line-height: 0.73;
}

.error_404_section .error-page .far {
  font-size: 127px;
  color: var(--blue);
  margin: 0 20px;
  line-height: 1.1;
}

.error_404_section .error-page .error-content {
  margin-top: 40px;
}

.error_404_section .error-page .error-content h2 {
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  font-size: 35px;
  margin: 0;
}

.error_404_section .error-page .error-content p {
  font-size: 18px;
  display: block;
  margin: 15px 0 0;
  position: relative;
  line-height: 34px;
  color: #555555;
  font-weight: 400;
  font-family: var(--font-p);
}

.error_404_section .error-page .button_404 {
  margin-top: 20px;
}

.error_404_section .error-page .button_404 .btn-1 {
  margin-top: 0;
  min-width: 218px;
  font-family: var(--font-p);
  letter-spacing: 2px;
  line-height: 1.1;
  padding: 18px 28px;
}

.error_404_section .error-page .button_404 .btn-1:hover,
.error_404_section .error-page .button_404 .btn-1:focus {
  color: var(--blue);
  border-color: var(--blue);
  background: transparent;
}

/* Thank you page */
.thankyou_section {
  background: var(--white);
  padding: 100px 20px;
}

.thankyou_section .section_container {
  background: transparent;
}

.thankyou_section .inner-page {
  text-align: center;
}

.thankyou_section .inner-heading-2 {
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  font-size: 35px;
  margin: 0;
}

.thankyou_section .thanx-icon {
  border: 2px solid #003450;
  border-radius: 50%;
  color: #003450;
  font-size: 80px;
  height: 160px;
  line-height: 150px;
  margin: 30px auto;
  text-align: center;
  width: 160px;
}

.thankyou_section .thanx-icon i {
  line-height: 150px;
}

.thankyou_section .inner-page p {
  font-size: 18px;
  display: block;
  margin: 15px 0 0;
  position: relative;
  line-height: 34px;
  color: var(--gray);
  font-weight: 400;
  font-family: var(--font-p);
  text-align: center;
}

/* Default page content */
.default_page_section {
  padding: 80px 16px;
  background: var(--white);
}

.default_page_section .section_container {
  background: transparent;
}

.default_page_section .page-detail .inner-heading-1,
.default_page_section .page-detail h1,
.default_page_section .page-detail .inner-heading-2,
.default_page_section .page-detail h2,
.default_page_section .page-detail .inner-heading-3,
.default_page_section .page-detail h3,
.default_page_section .page-detail .inner-heading-4,
.default_page_section .page-detail h4,
.default_page_section .page-detail .inner-heading-5,
.default_page_section .page-detail h5,
.default_page_section .page-detail .inner-heading-6,
.default_page_section .page-detail h6 {
  font-weight: 700;
  font-family: var(--font-p);
  color: var(--blue);
  line-height: 1.3;
  margin: 40px 0 0;
}

.default_page_section .page-detail h1 {
  font-size: 40px;
}

.default_page_section .page-detail h2 {
  font-size: 35px;
}

.default_page_section .page-detail h3 {
  font-size: 30px;
}

.default_page_section .page-detail h4 {
  font-size: 28px;
}

.default_page_section .page-detail h5 {
  font-size: 26px;
}

.default_page_section .page-detail h6 {
  font-size: 22px;
}

.default_page_section .page-detail p {
  font-size: 18px;
  display: block;
  margin: 15px 0;
  position: relative;
  line-height: 34px;
  color: var(--gray);
  font-weight: 400;
  font-family: var(--font-p);
}

.default_page_section .page-detail ol {
  padding-left: 20px;
  margin: 0;
}

.default_page_section .page-detail ul {
  display: block;
  width: auto;
  margin: 0;
  padding-left: 0;
}

.default_page_section .page-detail ul li {
  padding: 0 0 0 20px;
  position: relative;
}

.default_page_section .page-detail ul li,
.default_page_section .page-detail p {
  font-size: 18px;
  display: block;
  margin: 15px 0;
  line-height: 34px;
  color: var(--gray);
  font-weight: 400;
  font-family: var(--font-p);
}

.default_page_section .page-detail ol li {
  font-size: 18px;
  margin: 15px 0px;
  position: relative;
  line-height: 34px;
  color: var(--gray);
  font-weight: 400;
  font-family: var(--font-p);
  list-style: decimal;
}

.default_page_section .page-detail ul li::before {
  color: var(--blue);
  content: "";
  font-family: FontAwesome;
  font-size: 7px;
  font-weight: 500;
  left: 0;
  position: absolute;
  top: 14px;
  background: var(--blue);
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.default_page_section .page-detail a {
  color: var(--blue);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  font-weight: 700;
  display: inline-block;
}

.default_page_section .inner-content a:hover {
  color: #55a7d7;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.default_page_section .page-detail .hf-sitemap-list li a {
  text-decoration: underline;
}









/* Scroll to top button */
#scrollToTop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10040;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--l-blue));
  color: var(--white);
  font-size: 17px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Show button */
#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow */
#scrollToTop .arrow {
  position: relative;
  z-index: 2;
  font-family: var(--font-GI);
}

/* Progress ring */
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke: var(--white);
  stroke-linecap: round;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  transition: stroke-dashoffset 0.2s linear;
  opacity: 1;
}

/* Hover */
#scrollToTop:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--l-blue), var(--blue));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 0 0 4px rgba(86, 167, 216, 0.2);
}


@media screen and (max-width: 992px) {
  #scrollToTop {
    right: 15px;
    bottom: 86px;
  }
}