:root {
  --font-family: "Wix Madefor Display", sans-serif;
  --container-lg: 1488px;
  --container-sm: 1272px;
  --primary: #00164B;
  --primary-rgb: 0 ,22, 75;
  --gray-500-rgb: 115 ,127, 155;
  --white-rgb: 255 ,255, 255;
  --white: #fff;
  --black: #000;
  --gray-100:#F6F7F9;
  --gray-200:#E8EAEF;
  --gray-300:#D1D5DE;
  --gray-400:#9FA7BA;
  --gray-500:#737F9B;
  --heading-font: 48px;
  --body-font: 24px;
  --font-3xl: 72px;
  --font-xxl: 36px;
  --font-xl: 32px;
  --font-lg: 28px;
  --font-md: 24px;
  --font-sm: 18px;
  --font-xs: 16px;
}

@media (max-width: 991px) {
  :root {
    --heading-font: 26px;
    --body-font: 20px;
    --font-md: 18px;
    --font-3xl: 36px;
    --font-xxl: 24px;
    --font-lg: 18px;
    --font-sm: 16px;
    --font-xs: 16px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--body-font);
  line-height: 1.5;
}

button {
  font-family: var(--font-family);
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col {
  padding: 0 16px;
}

.container-lg {
  max-width: var(--container-lg);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 991px) {
  .container-lg {
    padding: 0;
  }
}

.container {
  max-width: var(--container-sm);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-gray {
  background-color: var(--gray-100);
}

.spacing-y {
  padding: 128px 0 80px;
}
@media (max-width: 1023px) {
  .spacing-y {
    padding: 80px 0 80px;
  }
}
@media (max-width: 991px) {
  .spacing-y {
    padding: 32px 0 57px;
  }
}

.spacing-b {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .spacing-b {
    margin-bottom: 48px;
  }
}

.header-height-bar {
  min-height: 131px;
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--white);
  transition: ease all 0.35s;
}
.scrolled .main-header {
  box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .main-header {
    padding-top: 25px;
    top: -1px;
    padding-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .main-header {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .main-header {
    padding: 2px 0;
  }
}
.main-header img {
  max-width: 106px;
}
@media (max-width: 767px) {
  .main-header img {
    max-width: 55px;
  }
}
.main-header .wh-head-cont {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .main-header .wh-head-cont {
    justify-content: space-between;
    padding: 10px 0;
  }
}
.main-header .wh-navbar {
  margin-left: auto;
}
@media (max-width: 991px) {
  .main-header .wh-navbar {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: rgba(var(--primary-rgb));
    width: 100%;
    height: 100%;
    z-index: 11;
    transition: ease all 0.3s;
    padding: 20px;
    display: block;
    overflow: hidden;
  }
  .main-header .wh-navbar.menu_open {
    top: 66px;
    padding-top: 32px;
    max-width: 100%;
    height: auto;
    bottom: 0;
    overflow-y: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .main-header .wh-navbar.menu_open {
    top: 50px;
  }
}
@media (max-width: 991px) {
  .main-header .wh-navbar.menu_close-ug {
    display: none;
  }
}
@media (min-width: 992px) {
  .main-header .wh-navbar .mb_close_btn {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-header .main-menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.main-header .main-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .main-header .main-menu {
    display: block;
  }
}
.main-header .main-menu > li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .main-header .main-menu > li {
    width: 100%;
    flex-direction: column;
    padding-left: 30px;
  }
  .main-header .main-menu > li::before {
    content: "\ea18";
    font-family: "Eva-Icons";
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: 11px;
    left: 0;
    line-height: 1;
  }
  .main-header .main-menu > li .submenu-toggle {
    position: absolute;
    top: 12px;
    left: 0;
    height: 23px;
    width: 35px;
    opacity: 0;
    z-index: 1;
  }
}
.main-header .main-menu > li:has(.submenu-toggle[aria-expanded=true])::before {
  transform: rotate(90deg);
}
.main-header .main-menu > li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 8px;
  background-color: var(--gray-500);
  transition: all 0.35s;
}
.main-header .main-menu > li.active::after, .main-header .main-menu > li:hover::after {
  width: 100%;
  right: auto;
}
@media (max-width: 991px) {
  .main-header .main-menu > li.active::after, .main-header .main-menu > li:hover::after {
    display: none;
  }
}
.main-header .main-menu > li .submenu-toggle {
  border: none;
  background: none;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}
.main-header .main-menu > li a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(var(--primary-rgb), 0.9);
  text-decoration: none;
  font-size: var(--font-sm);
  font-weight: 600;
  padding: 36px 9px;
}
@media (max-width: 991px) {
  .main-header .main-menu > li a {
    padding: 9px;
    font-size: 18px;
    width: 100%;
    color: var(--white);
  }
}
@media (min-width: 992px) {
  .main-header .main-menu > li + li {
    margin-left: 24px;
  }
}
.main-header .main-menu > li.menu-item-has-children {
  cursor: pointer;
}
.main-header .main-menu > li.menu-item-has-children .sub-menu {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  background: rgba(var(--primary-rgb), 0.9);
  list-style: none;
  min-width: 224px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
}
@media (max-width: 991px) {
  .main-header .main-menu > li.menu-item-has-children .sub-menu {
    position: relative;
    background: transparent;
    min-width: 100%;
  }
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li {
  margin-left: 0;
  width: 100%;
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li::after {
  display: none;
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li a {
  width: 100%;
  color: var(--white);
  font-weight: 500;
  padding: 9px 9px 9px 46px;
  position: relative;
  transition: ease all 0.35s;
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li a::before {
  content: "\ea18";
  font-family: "Eva-Icons";
  font-size: 24px;
  color: var(--gray-400);
  position: absolute;
  top: 11px;
  left: 12px;
  line-height: 1;
  opacity: 0;
  transition: ease all 0.35s;
}
@media (max-width: 991px) {
  .main-header .main-menu > li.menu-item-has-children .sub-menu li a::before {
    opacity: 1;
  }
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li a:hover {
  background: var(--gray-500);
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li a:hover::before {
  opacity: 1;
}
@media (max-width: 991px) {
  .main-header .main-menu > li.menu-item-has-children .sub-menu li a:hover {
    background: transparent;
  }
}
@media (min-width: 992px) {
  .main-header .main-menu > li.menu-item-has-children:hover .sub-menu {
    display: block;
  }
}
.main-header .menu_open ~ .btn-head .menu-open .open {
  display: none;
}
.main-header .menu_open ~ .btn-head .menu-open .close {
  display: block;
}
@media (min-width: 992px) {
  .main-header .menu-open {
    display: none;
  }
}
@media (max-width: 991px) {
  .main-header .menu-open {
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: none;
    position: relative;
  }
  .main-header .menu-open .open {
    display: block;
  }
  .main-header .menu-open .close {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }
  .main-header .menu-open .close::before, .main-header .menu-open .close::after {
    content: "";
    background-color: var(--black);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .main-header .menu-open .close::before {
    height: 22px;
    width: 2px;
  }
  .main-header .menu-open .close::after {
    height: 2px;
    width: 22px;
  }
}

.btn-head {
  height: 17px;
}

.wh-heading {
  font-size: var(--heading-font);
  font-weight: 700;
  line-height: 120%;
  color: rgba(var(--primary-rgb), 0.9);
}
.wh-heading.heading-mb {
  margin-bottom: 128px;
}
@media (max-width: 1023px) {
  .wh-heading.heading-mb {
    margin-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .wh-heading.heading-mb {
    margin-bottom: 34px;
  }
}

.wh-subhead {
  font-size: var(--font-xxl);
  font-weight: 700;
  line-height: 120%;
  color: rgba(var(--primary-rgb), 0.9);
}

.wh-subtxt {
  line-height: 150%;
  font-size: var(--body-font);
  font-weight: 500;
  color: rgba(var(--primary-rgb), 0.9);
}

.swiper .swiper-pagination {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .swiper .swiper-pagination {
    margin-bottom: 12px;
  }
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 20px;
  border-radius: 0;
  background-color: var(--gray-200);
  opacity: 1;
}
.swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 8px;
  }
}
.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--gray-400);
}

.swiper-button-prev,
.swiper-button-next {
  background-color: var(--gray-200) !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 0;
  transition: ease all 0.35s;
  color: var(--gray-500) !important;
}
.swiper-button-prev:hover, .swiper-button-prev:active,
.swiper-button-next:hover,
.swiper-button-next:active {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}
@media (max-width: 1600px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 60px !important;
    height: 60px !important;
  }
}
@media (max-width: 1439px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: auto !important;
    bottom: -90px;
  }
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 48px !important;
    height: 48px !important;
    bottom: 0;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 30px !important;
}
@media (max-width: 991px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 24px !important;
  }
}

.swiper-button-prev::after {
  content: "\ea09" !important;
  font-family: Eva-icons !important;
}

.swiper-button-next::after {
  content: "\ea17" !important;
  font-family: Eva-icons !important;
}

.wh-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 73px;
  text-decoration: none;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  height: 60px;
  background-color: rgba(var(--primary-rgb), 0.9);
  transition: ease all 0.35s;
  cursor: pointer;
}
.wh-icon:hover {
  background-color: var(--white);
  color: var(--primary);
}
@media (max-width: 991px) {
  .wh-icon {
    width: 48px;
    height: 48px;
    font-size: 32px;
  }
}

.wh-light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  gap: 13px;
  font-weight: 700;
  font-size: var(--font-lg);
  background-color: var(--white);
  color: rgba(var(--primary-rgb), 0.9);
  padding: 21px 10px;
  width: 392px;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  position: relative;
  transition: ease all 0.35s;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
}
.wh-light-btn::before {
  content: "\ea17";
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 400;
  color: var(--gray-500);
  font-family: Eva-icons;
}
@media (max-width: 991px) {
  .wh-light-btn::before {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .wh-light-btn {
    width: 250px;
    padding: 13px 10px;
  }
}
.wh-light-btn:hover {
  background: var(--primary);
  color: var(--white);
}
.wh-light-btn:hover::before {
  color: var(--white);
}

.wh-link-btn {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-weight: 700;
  font-size: var(--font-md);
  color: rgba(var(--primary-rgb), 0.9);
  padding: 5px 0;
  text-decoration: none;
  position: relative;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: transparent;
}
.wh-link-btn::after {
  content: "";
  position: absolute;
  left: 46px;
  height: 3px;
  background-color: currentColor;
  width: 0;
  bottom: 0;
  transition: ease all 0.35s;
}
.wh-link-btn::before {
  content: "\ea17";
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: 400;
  color: var(--gray-500);
  font-family: Eva-icons;
}
.wh-link-btn.lg-btn {
  font-size: var(--font-lg);
  line-height: 1;
}
.wh-link-btn.btn-light {
  color: var(--white);
}
.wh-link-btn:hover::after {
  width: calc(100% - 46px);
}

.wh-link-lg-btn {
  display: flex;
  gap: 13px;
  align-items: center;
  font-weight: 700;
  font-size: var(--font-lg);
  color: rgba(var(--primary-rgb), 0.9);
  padding: 5px 10px;
  padding-left: 40px;
  text-decoration: none;
  position: relative;
}
.wh-link-lg-btn::before {
  content: "\ea17";
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  bottom: 0;
  font-size: 32px;
  margin: auto 0;
  position: absolute;
  font-weight: 400;
  color: var(--gray-500);
  font-family: Eva-icons;
}
@media (max-width: 991px) {
  .wh-link-lg-btn::before {
    font-size: 24px;
    padding-left: 33px;
  }
}

.wh-hero {
  position: relative;
}
.wh-hero .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 128px;
  margin: auto;
}
@media (max-width: 991px) {
  .wh-hero .container {
    position: inherit;
    padding-top: 0;
    padding: 0;
  }
}
.wh-hero img {
  display: block;
}
@media (max-width: 767px) {
  .wh-hero img {
    min-height: 334px;
    object-fit: cover;
  }
}
.wh-hero .wh-hcont {
  background-color: rgba(var(--primary-rgb), 0.9);
  padding: 32px;
  max-width: 500px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .wh-hero .wh-hcont {
    max-width: 100%;
    margin: auto;
    padding: 18px;
  }
}
.wh-hero h1,
.wh-hero h2 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 36px;
  line-height: 120%;
}
@media (max-width: 991px) {
  .wh-hero h1,
  .wh-hero h2 {
    margin-bottom: 16px;
  }
}
.wh-hero p {
  color: var(--white);
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .wh-hero p {
    margin-bottom: 16px;
  }
}
.wh-hero .wh-link-btn {
  color: var(--white);
}

.wh-fun-fact .wh-ffact {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  min-height: 800px;
  padding-top: 128px;
  padding-bottom: 128px;
}
@media (max-width: 991px) {
  .wh-fun-fact .wh-ffact {
    padding-top: 50px;
    padding-bottom: 50px;
    min-height: 100%;
  }
}
@media (max-width: 767px) {
  .wh-fun-fact .wh-ffact {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}
.wh-fun-fact .wh-ffact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--primary-rgb), 0.9);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.wh-fun-fact h2 {
  line-height: 125%;
  font-weight: 400;
  color: var(--white);
  max-width: 940px;
  margin-bottom: 68px;
}
@media (max-width: 991px) {
  .wh-fun-fact h2 {
    max-width: 100%;
    margin-bottom: 22px;
  }
}
.wh-fun-fact .wh-fun {
  display: flex;
}
@media (max-width: 991px) {
  .wh-fun-fact .wh-fun {
    flex-wrap: wrap;
  }
}
.wh-fun-fact .wh-fact {
  color: var(--white);
  width: 25%;
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .wh-fun-fact .wh-fact {
    width: 50%;
    flex: 0 0 50%;
  }
}
.wh-fun-fact .wh-fact span {
  display: inline-block;
  width: 74px;
  height: 8px;
  background-color: var(--gray-500);
}
@media (max-width: 767px) {
  .wh-fun-fact .wh-fact span {
    width: 58px;
    margin-bottom: 8px;
  }
}
.wh-fun-fact .wh-fact h4 {
  font-size: var(--font-3xl);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
  padding-top: 10px;
}
@media (max-width: 991px) {
  .wh-fun-fact .wh-fact h4 {
    margin-bottom: 5px;
  }
}
.wh-fun-fact .wh-fact h4 sup {
  font-weight: 600;
  font-size: 44px;
}
@media (max-width: 991px) {
  .wh-fun-fact .wh-fact h4 sup {
    font-size: 20px;
  }
}
.wh-fun-fact .wh-fact p {
  font-weight: 700;
}
@media (max-width: 991px) {
  .wh-fun-fact .wh-fact p {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .wh-industry {
    margin-bottom: 16px;
  }
}
.wh-industry .wh-video {
  position: relative;
}
.wh-industry .wh-indus-cont {
  display: flex;
  color: rgba(var(--primary-rgb), 0.9);
  font-weight: 500;
  padding-top: 128px;
}
@media (max-width: 1023px) {
  .wh-industry .wh-indus-cont {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .wh-industry .wh-indus-cont {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .wh-industry .wh-indus-cont {
    flex-direction: column;
    gap: 30px;
    padding-top: 16px;
  }
}
.wh-industry .wh-link-btn {
  font-size: var(--font-lg);
}
.wh-industry .wh-heading {
  width: 50%;
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .wh-industry .wh-heading {
    width: 100%;
    flex: 0 0 100%;
  }
}
.wh-industry .wh-cont {
  width: 50%;
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .wh-industry .wh-cont {
    width: 100%;
    flex: 0 0 100%;
  }
}
.wh-industry .wh-cont p:has(strong) {
  margin-bottom: 0;
}
.wh-industry .wh-p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wh-industry .wh-p {
    margin-bottom: 16px;
  }
}
.wh-industry p {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wh-industry p {
    margin-bottom: 16px;
  }
}
.wh-industry p + p {
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .wh-industry p + p {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .wh-industry p + p {
    margin-bottom: 16px;
  }
}
.wh-industry ul {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .wh-industry ul {
    margin-bottom: 16px;
  }
}
.wh-industry ul li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  line-height: 150%;
}
.wh-industry ul li::before {
  content: "";
  position: absolute;
  margin: auto 0;
  top: 19px;
  left: 0;
  right: 0;
  width: 12px;
  height: 2px;
  background-color: rgba(var(--primary-rgb), 0.9);
}

.wh-service .wh-ser-load-more {
  display: flex;
  justify-content: center;
}
.wh-service .wh-ser {
  display: none;
  flex-direction: column;
}

.wh-hc {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .wh-hc {
    gap: 19px;
  }
}

.wh-ser {
  width: 50%;
  flex: 0 0 50%;
  padding-bottom: 128px;
}
@media (max-width: 1023px) {
  .wh-ser {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .wh-ser {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .wh-ser {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .wh-ser {
    width: 100%;
    flex: 0 0 100%;
  }
}
.wh-ser .wh-simg {
  margin-bottom: 66px;
}
@media (max-width: 1023px) {
  .wh-ser .wh-simg {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .wh-ser .wh-simg {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .wh-ser .wh-simg img {
    width: 100%;
  }
}
.wh-ser h3 {
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .wh-ser h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }
}
@media (max-width: 991px) {
  .wh-ser h3 {
    margin-bottom: 20px;
  }
}
.wh-ser p {
  margin-bottom: 26px;
}
@media (max-width: 1023px) {
  .wh-ser p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .wh-ser p {
    margin-bottom: 25px;
  }
}

.wh-location {
  padding-top: 128px;
}
@media (max-width: 1023px) {
  .wh-location {
    padding-top: 80px;
  }
}
@media (max-width: 991px) {
  .wh-location {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .wh-location {
    padding-top: 32px;
  }
}
.wh-location .wh-s-cont {
  padding-bottom: 20px;
}

.wh-value .col {
  width: 33.33%;
  flex: 0 0 33.33%;
}
@media (max-width: 767px) {
  .wh-value .col {
    width: 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .wh-value .wh-subtxt {
    margin-bottom: 24px;
  }
}
.wh-value .wh-light-btn {
  display: flex;
}

.wh-testimonial .wh-t {
  background-color: var(--gray-300);
  padding: 121px 0;
}
@media (max-width: 1023px) {
  .wh-testimonial .wh-t {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .wh-testimonial .wh-t {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .wh-testimonial .wh-t {
    padding: 50px 0;
  }
}
.wh-testimonial h3 {
  font-weight: 500;
  margin-bottom: 34px;
  line-height: 1.22;
}
@media (max-width: 767px) {
  .wh-testimonial h3 {
    margin-bottom: 16px;
  }
}
.wh-testimonial .wh-tct {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .wh-testimonial .wh-tct {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.wh-testimonial h5 {
  font-weight: 500;
  font-size: var(--font-md);
  color: rgba(var(--primary-rgb), 0.9);
}
@media (max-width: 767px) {
  .wh-testimonial h5 {
    margin-bottom: 32px;
  }
}

.wh-case {
  position: relative;
}
.wh-case .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 64px;
  margin: auto;
}
@media (max-width: 991px) {
  .wh-case .container {
    position: inherit;
    padding-top: 0;
    padding: 0;
  }
}
.wh-case .wh-case-image {
  width: 100%;
}
.wh-case img {
  display: block;
}
@media (max-width: 767px) {
  .wh-case img {
    min-height: 264px;
    object-fit: cover;
  }
}
.wh-case .wh-hcont {
  background-color: rgba(var(--primary-rgb), 0.9);
  padding: 32px;
  max-width: 456px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .wh-case .wh-hcont {
    max-width: 100%;
    margin: auto;
    padding: 18px;
  }
}
.wh-case h2 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 29px;
  line-height: 120%;
}
@media (max-width: 991px) {
  .wh-case h2 {
    margin-bottom: 12px;
  }
}
.wh-case .wh-ctxt {
  font-size: var(--font-sm);
}
.wh-case p {
  color: var(--white);
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .wh-case p {
    margin-bottom: 14px;
  }
}
.wh-case .wh-link-btn {
  color: var(--white);
}

.wh-question {
  margin: 80px 0;
}
@media (max-width: 767px) {
  .wh-question {
    margin: 16px 0;
  }
}
.wh-question .wh-qt {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  min-height: 576px;
  padding-top: 128px;
  padding-bottom: 128px;
  background-color: var(--gray-500);
}
@media (max-width: 991px) {
  .wh-question .wh-qt {
    padding-top: 32px;
    padding-bottom: 65px;
    min-height: 100%;
  }
}
.wh-question h2 {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 128px;
}
@media (max-width: 767px) {
  .wh-question h2 {
    margin-bottom: 182px;
  }
}
.wh-question .wh-qtxt {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .wh-question .wh-qtxt {
    flex-wrap: wrap;
  }
}
.wh-question .wh-subtxt {
  color: var(--white);
  max-width: 500px;
}
@media (max-width: 767px) {
  .wh-question .wh-subtxt {
    margin-bottom: 56px;
  }
}
.wh-question .wh-link-btn {
  margin-left: auto;
  color: var(--white);
}
.wh-question .wh-link-btn::before {
  color: var(--white);
}
@media (max-width: 767px) {
  .wh-question .wh-link-btn {
    margin-left: 0;
  }
}

.wh-vd .wh-video {
  position: relative;
}
.wh-vd .wh-v {
  display: block;
}
@media (max-width: 767px) {
  .wh-vd .wh-v {
    min-height: 496px;
    object-fit: cover;
  }
}
.wh-vd .wh-partner {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 16px 53px;
  width: 286px;
  margin: 0 0 64px 106px;
  text-align: center;
  background-color: rgba(var(--white-rgb), 0.9);
}
@media (max-width: 767px) {
  .wh-vd .wh-partner {
    width: 180px;
    padding: 8px 10px;
  }
}
.wh-vd p {
  font-size: var(--font-sm);
  color: var(--gray-500);
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  .wh-vd p {
    margin-bottom: 2px;
    font-size: 12px;
  }
}
.wh-vd .wh-v-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .wh-vd .wh-v-logo {
    max-width: 115px;
    margin: auto;
  }
}

.video_popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.video_popup .video_popup_content {
  position: relative;
  background: #000;
  padding: 10px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .video_popup .video_popup_content iframe {
    width: 100%;
    height: auto;
  }
}
.video_popup .close_video {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 24px;
  width: 30px;
  height: 30px;
  font-size: var(--font-xl);
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
}

.wh-service-hero .container {
  position: relative;
}
@media (max-width: 767px) {
  .wh-service-hero img {
    min-height: 560px;
    object-fit: cover;
  }
}
.wh-service-hero .wh-hcont {
  position: absolute;
  bottom: 0;
  padding: 32px;
  left: 0;
  max-width: 816px;
  background-color: var(--white);
}
@media (max-width: 991px) {
  .wh-service-hero .wh-hcont {
    max-width: 100%;
    padding: 16px 16px 16px 16px;
  }
}
.wh-service-hero h1 {
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .wh-service-hero h1 {
    margin-bottom: 22px;
  }
}
@media (max-width: 991px) {
  .wh-service-hero h1 {
    margin-bottom: 16px;
  }
}

.wh-contact,
.wh-contact-img {
  background-color: rgba(var(--primary-rgb), 0.9);
  padding: 128px 0 131px;
}
@media (max-width: 1023px) {
  .wh-contact,
  .wh-contact-img {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .wh-contact,
  .wh-contact-img {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .wh-contact,
  .wh-contact-img {
    padding: 32px 0;
    overflow-x: hidden;
  }
}
.wh-contact .wh-cimg,
.wh-contact-img .wh-cimg {
  margin-bottom: 82px;
}
@media (max-width: 1023px) {
  .wh-contact .wh-cimg,
  .wh-contact-img .wh-cimg {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .wh-contact .wh-cimg,
  .wh-contact-img .wh-cimg {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .wh-contact .wh-cimg,
  .wh-contact-img .wh-cimg {
    margin: 0 -32px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .wh-contact .wh-ccont,
  .wh-contact-img .wh-ccont {
    flex-wrap: wrap;
    gap: 32px;
  }
}
.wh-contact .wh-cttxt,
.wh-contact-img .wh-cttxt {
  max-width: 498px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .wh-contact .wh-cttxt,
  .wh-contact-img .wh-cttxt {
    max-width: 100%;
    padding: 0 16px;
  }
}
.wh-contact h3,
.wh-contact-img h3 {
  color: var(--white);
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .wh-contact h3,
  .wh-contact-img h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .wh-contact h3,
  .wh-contact-img h3 {
    margin-bottom: 16px;
  }
}
.wh-contact p,
.wh-contact-img p {
  color: var(--white);
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .wh-contact p,
  .wh-contact-img p {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .wh-contact p,
  .wh-contact-img p {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .wh-contact p span br,
  .wh-contact-img p span br {
    display: none;
  }
}
.wh-contact a,
.wh-contact-img a {
  color: var(--white);
}

.wh-contact .wh-link-btn::before, .wh-contact .wh-link-btn::after {
  display: none;
}
.wh-contact .wh-ct {
  width: 50%;
  flex: 0 0 50%;
}
@media (max-width: 1024px) {
  .wh-contact .wh-ct {
    padding: 0 26px 0 20px;
  }
}
@media (max-width: 767px) {
  .wh-contact .wh-ct {
    width: 100%;
    flex: 0 0 100%;
    padding: 0 16px;
  }
}

.wh-contact-img {
  padding: 128px 0;
}
@media (max-width: 1023px) {
  .wh-contact-img {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .wh-contact-img {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .wh-contact-img {
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .wh-contact-img .wh-ccont {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.wh-contact-img .wh-cimg {
  margin-bottom: 0;
}

.wh-location-hero {
  overflow-x: hidden;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .wh-location-hero {
    margin-bottom: 32px;
  }
}
.wh-location-hero .row {
  align-items: center;
}
@media (max-width: 991px) {
  .wh-location-hero .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.wh-location-hero .col {
  width: 50%;
  flex: 0 0 50%;
}
@media (max-width: 991px) {
  .wh-location-hero .col {
    width: 100%;
    flex: 0 0 100%;
  }
}
.wh-location-hero h1 {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .wh-location-hero h1 {
    margin-bottom: 16px;
  }
}
.wh-location-hero .wh-ltxt {
  padding-right: 74px;
}
@media (max-width: 991px) {
  .wh-location-hero .wh-ltxt {
    padding-right: 0;
  }
}
.wh-location-hero p {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .wh-location-hero p {
    margin-bottom: 16px;
  }
}
.wh-location-hero .wh-limg {
  display: flex;
  justify-content: flex-start;
}
.wh-location-hero .wh-limg img {
  max-width: inherit;
  width: auto;
}
@media (max-width: 991px) {
  .wh-location-hero .wh-limg img {
    max-width: 100%;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: bottom;
  }
}
@media (max-width: 767px) {
  .wh-location-hero .wh-limg img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: bottom;
  }
}

.wh-cta {
  padding: 127px 0;
  background-color: var(--gray-200);
}
@media (max-width: 1023px) {
  .wh-cta {
    padding: 80px 0;
  }
}
.wh-cta .wh-heading {
  max-width: 82%;
}
@media (max-width: 991px) {
  .wh-cta .wh-heading {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .wh-cta {
    padding: 43px 0;
  }
}

.wh-review {
  background-color: rgba(var(--primary-rgb), 0.9);
  padding: 128px 0;
}
@media (max-width: 1023px) {
  .wh-review {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .wh-review {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .wh-review {
    padding: 32px 16px;
  }
}
.wh-review .wh-rt {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .wh-review .wh-rt {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.wh-review .swiper-slide {
  background-color: var(--gray-300);
}
.wh-review .swiper-slide.swiper-slide-active {
  background-color: var(--white);
}
.wh-review .wh-rw {
  padding: 127px 106px 99px;
}
@media (max-width: 1023px) {
  .wh-review .wh-rw {
    padding: 80px;
  }
}
@media (max-width: 991px) {
  .wh-review .wh-rw {
    padding: 46px 32px;
  }
}
.wh-review .wh-subtxt {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .wh-review .wh-subtxt {
    margin-bottom: 16px;
  }
}
.wh-review .wh-rtxt {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(var(--primary-rgb), 0.9);
}
@media (max-width: 767px) {
  .wh-review .wh-rtxt {
    font-size: 14px;
  }
}
.wh-review .wh-rtxt span {
  font-weight: 500;
}
.wh-review .wh-rimg {
  margin-left: auto;
}
@media (max-width: 767px) {
  .wh-review .wh-rimg {
    margin-left: 0;
  }
}

.global_network {
  padding: 128px 0;
  background-image: url(../img/global-network-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}
@media (max-width: 991px) {
  .global_network {
    padding: 40px 0 65px;
  }
}
.global_network .wh-heading {
  color: var(--white);
}
.global_network-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 991px) {
  .global_network-layout {
    gap: 40px;
  }
}
.global_network-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 991px) {
  .global_network-content {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
}
.global_network-content p {
  max-width: 700px;
  width: 100%;
}
.global_network-content .button-link {
  white-space: nowrap;
  color: inherit;
  font-size: var(--font-md);
}
.global_network-image {
  display: flex;
  justify-content: center;
}

.case_study {
  display: flex;
  flex-direction: column;
  gap: 128px;
}
@media (max-width: 1023px) {
  .case_study {
    gap: 80px;
  }
}
@media (max-width: 991px) {
  .case_study {
    gap: 60px;
  }
}
@media (max-width: 767px) {
  .case_study {
    gap: 25px;
  }
}
.case_study.wh-csty {
  padding: 128px 0;
}
@media (max-width: 1023px) {
  .case_study.wh-csty {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .case_study.wh-csty {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .case_study.wh-csty {
    padding: 26px 0 32px;
  }
}
@media (max-width: 991px) {
  .case_study.wh-csty .case_study-section {
    flex-direction: column-reverse;
  }
}
.case_study .wh-link-btn {
  max-width: max-content;
}
.case_study .container {
  position: relative;
}
@media (max-width: 991px) {
  .case_study .wh-cs-btn-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.case_study .swiper .swiper-pagination {
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .case_study .swiper .swiper-pagination {
    justify-content: center;
  }
}
@media (max-width: 1600px) {
  .case_study .swiper-button-prev {
    left: -50px;
  }
}
@media (max-width: 1439px) {
  .case_study .swiper-button-prev {
    left: 15px;
  }
}
@media (max-width: 1600px) {
  .case_study .swiper-button-next {
    right: -50px;
  }
}
@media (max-width: 1439px) {
  .case_study .swiper-button-next {
    right: 15px;
  }
}
.case_study-section {
  display: flex;
  align-items: center;
  gap: 32px;
}
.case_study-section:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .case_study-section {
    gap: 20px;
    flex-direction: column;
  }
  .case_study-section:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.case_study-img {
  width: 100%;
  height: 100%;
}
.case_study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case_study-content {
  display: flex;
  flex-direction: column;
  gap: 29px;
  max-width: 400px;
  width: 100%;
  color: rgba(var(--primary-rgb), 0.9);
  position: relative;
}
@media (max-width: 991px) {
  .case_study-content {
    gap: 12px;
    max-width: 100%;
  }
  .case_study-content p {
    font-size: 16px;
  }
}
.case_study-content > span {
  display: block;
  font-size: var(--font-sm);
  font-weight: 600;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .case_study-content > span {
    font-size: 14px;
  }
}
.case_study-content h3 {
  font-size: var(--font-xxl);
  font-weight: 700;
}
@media (max-width: 991px) {
  .case_study-content h3 {
    font-size: 24px;
  }
}
.case_study-content .button-link {
  margin-top: 3px;
  font-size: var(--font-md);
  color: inherit;
}
@media (max-width: 991px) {
  .case_study-content .button-link {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .case_study-content .button-link {
    margin-top: 10px;
  }
}
.case_study-icon {
  margin-top: 6px;
  width: auto;
  height: 80px;
  width: fit-content;
}
.case_study-icon img {
  height: 100%;
}
.case_study-button {
  margin-top: 3px;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .case_study-button {
    margin: 0;
  }
}
.case_study-button .button-link {
  font-size: var(--font-lg);
}
@media (max-width: 991px) {
  .case_study-button .button-link {
    font-size: 18px;
  }
}

.case_study-button {
  margin-top: 131px;
}
@media (max-width: 1023px) {
  .case_study-button {
    margin-top: 20px;
  }
}

.faq {
  padding: 127px 0 160px;
}
@media (max-width: 991px) {
  .faq {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 32px 0 56px;
  }
}
.faq button {
  cursor: pointer;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 991px) {
  .accordion {
    gap: 16px;
  }
}
.accordion-item {
  background: var(--white);
}
@media (max-width: 991px) {
  .accordion-item {
    background: transparent;
  }
}
.accordion button {
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .accordion button {
    background: var(--white);
  }
}
.accordion button::after {
  content: "";
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  background-image: url(../img/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(90deg);
}
@media (max-width: 991px) {
  .accordion button::after {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
  }
}
.accordion button .accordion-title {
  padding: 10px 0 10px 32px;
  font-size: var(--font-xxl);
  color: rgba(var(--primary-rgb), 0.9);
}
@media (max-width: 991px) {
  .accordion button .accordion-title {
    font-size: 16px;
    padding: 0 0 0 8px;
  }
}
.accordion button[aria-expanded=true] {
  color: #03b5d2;
}
.accordion button[aria-expanded=true] + .accordion-content {
  padding: 32px 106px 40px;
  opacity: 1;
  max-height: 200px;
}
@media (max-width: 991px) {
  .accordion button[aria-expanded=true] + .accordion-content {
    padding: 16px 0 0;
  }
}
.accordion button[aria-expanded=true]::after {
  transform: rotate(-90deg);
  background-color: var(--gray-200);
}
.accordion-content {
  padding: 0 106px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  will-change: opacity, max-height;
}
@media (max-width: 991px) {
  .accordion-content {
    padding: 0 0;
  }
}
.accordion-content p {
  color: var(--primary);
}

.contact_form {
  padding: 128px 0;
  background-color: var(--gray-100);
  color: rgba(var(--primary-rgb), 0.9);
}
@media (max-width: 1023px) {
  .contact_form {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .contact_form {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .contact_form {
    padding: 32px 0;
  }
}
.contact_form-layout {
  display: flex;
  gap: 73px;
}
@media (max-width: 991px) {
  .contact_form-layout {
    gap: 34px;
  }
}
@media (max-width: 767px) {
  .contact_form-layout {
    flex-direction: column;
  }
}
.contact_form-layout p {
  font-size: var(--font-md);
}
@media (max-width: 767px) {
  .contact_form-layout p {
    font-size: 16px;
  }
}
.contact_form-layout > div:first-child {
  max-width: 351px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact_form-layout > div:first-child {
    max-width: 100%;
  }
}
.contact_form-content {
  margin: 59px 0 0;
}
@media (max-width: 767px) {
  .contact_form-content {
    margin: 0;
  }
}
.contact_form-content h4 {
  font-size: var(--font-xl);
}
@media (max-width: 767px) {
  .contact_form-content h4 {
    font-size: 18px;
  }
}
.contact_form-content ul {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .contact_form-content ul {
    margin-top: 20px;
    gap: 10px;
  }
}
.contact_form-content ul a {
  font-size: var(--font-lg);
}
@media (max-width: 767px) {
  .contact_form-content ul a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .contact_form-content.desktop {
    display: none;
  }
}
.contact_form-content.mobile {
  display: none;
}
@media (max-width: 767px) {
  .contact_form-content.mobile {
    display: block;
  }
}
.contact_form .wpcf7-not-valid-tip {
  font-size: 14px;
}
.contact_form form {
  display: block;
  width: 100%;
  font-size: var(--font-md);
}
.contact_form form .input-field {
  padding: 18px 32px;
}
@media (max-width: 767px) {
  .contact_form form .input-field {
    padding: 15px 10px;
    font-size: 16px;
  }
}
.contact_form form .input-field + span {
  font-size: 14px;
}
.contact_form form select {
  appearance: none;
  color: var(--gray-500);
}
.contact_form form select option {
  color: var(--primary);
}
.contact_form form input[type=number]::-webkit-inner-spin-button,
.contact_form form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.contact_form form .field-item {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .contact_form form .field-item {
    grid-template-columns: repeat(1, 1fr);
    gap: 9px;
  }
}
.contact_form form .field-item:has(textarea) {
  align-items: start;
}
.contact_form form .field-item > *:nth-child(1) {
  grid-column: 1/3;
  width: 100%;
}
@media (max-width: 991px) {
  .contact_form form .field-item > *:nth-child(1) {
    grid-column: 1;
  }
}
.contact_form form .field-item > *:nth-child(2) {
  grid-column: 3/6;
  width: 100%;
}
@media (max-width: 991px) {
  .contact_form form .field-item > *:nth-child(2) {
    grid-column: 1;
  }
}
.contact_form form .field-item:last-child {
  margin-bottom: 0;
}
.contact_form form .field-item label {
  font-weight: 700;
}
.contact_form form .field-item .checkbox-item {
  margin-left: auto;
  display: block;
}
.contact_form form .field-item .checkbox-item input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.contact_form form .field-item .checkbox-item input:checked + label:before {
  background: var(--primary);
  border-color: var(--gray-400);
}
.contact_form form .field-item .checkbox-item label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: var(--font-sm);
}
@media (max-width: 767px) {
  .contact_form form .field-item .checkbox-item label {
    gap: 18px;
  }
}
.contact_form form .field-item .checkbox-item label:before {
  content: "";
  -webkit-appearance: none;
  background-color: var(--gray-200);
  box-sizing: border-box;
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border: 10px solid var(--gray-200);
}
@media (max-width: 767px) {
  .contact_form form .field-item .checkbox-item label:before {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border: 6px solid var(--gray-200);
  }
}
.contact_form form .form-button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .contact_form form .form-button {
    margin-top: 32px;
  }
}
.contact_form form .form-button + .wpcf7-response-output {
  width: fit-content;
}
.contact_form form .form-button .button-link {
  max-width: 392px;
  width: 100%;
  background: var(--white);
  text-align: center;
  justify-content: center;
  padding: 23px;
}
.contact_form form .form-button .button-link:hover {
  outline: 1px solid var(--primary);
}
@media (max-width: 991px) {
  .contact_form form .form-button .button-link {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .contact_form form .form-button .button-link {
    max-width: 148px;
    margin: 0 auto;
    padding: 14px;
  }
}

@media (max-width: 1023px) {
  .contact_form-content ul {
    gap: 16px;
  }
}
.contact-page .wh-ccont .wh-link-btn:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .main-header .main-menu > li.menu-item-has-children.current-menu .sub-menu {
    display: block;
    height: 100%;
    max-height: 100% !important;
  }
  .main-header .main-menu > li .submenu-toggle {
    position: absolute;
    right: 0;
    left: auto;
    opacity: 1;
  }
}
.contact_form form .field-item .checkbox-item input[type=checkbox] {
  appearance: none; /* removes default OS checkbox */
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  left: 0;
  width: 48px;
  height: 100%;
  background: var(--gray-200);
  cursor: pointer;
  display: inline-block;
}

.contact_form form .field-item .checkbox-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  height: 15px;
  width: 30px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  rotate: -45deg;
}

.contact_form form .field-item .checkbox-item input[type=checkbox]:checked {
  background: rgba(var(--primary-rgb));
}

@media (max-width: 767px) {
  .contact_form form .field-item .checkbox-item input[type=checkbox]:checked::after {
    height: 10px;
    width: 20px;
  }
}
.main-header .main-menu > li.menu-item-has-children .sub-menu li a::before {
  color: #fff;
}

.footer-divider {
  border-top: 1px solid var(--gray-300);
  margin: 0;
}
.footer-divider.divider-mobile {
  display: none;
}
@media (max-width: 767px) {
  .footer-divider.divider-mobile {
    display: block;
  }
}
.footer-top {
  padding: 129px 0 96px;
}
@media (max-width: 1023px) {
  .footer-top {
    padding: 80px 0 80px;
  }
}
@media (max-width: 991px) {
  .footer-top {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .footer-top {
    padding: 39px 0 32px;
  }
}
@media (max-width: 767px) {
  .footer-top .container {
    padding: 0;
  }
}
.footer-top--about {
  max-width: 400px;
  width: 100%;
  color: rgba(var(--primary-rgb), 0.9);
}
@media (max-width: 1199px) {
  .footer-top--about {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .footer-top--about {
    padding: 0 16px;
  }
}
.footer-top--about h4 {
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .footer-top--about h4 {
    margin-bottom: 16px;
    line-height: normal;
  }
}
.footer-top--about p {
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .footer-top--about p {
    margin-bottom: 16px;
  }
}
.footer-top--about form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.footer-top--about form > div {
  width: 100%;
}
@media (max-width: 767px) {
  .footer-top--about form {
    gap: 16px;
  }
}
.footer-top--links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}
@media (max-width: 991px) {
  .footer-top--links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .footer-top--links {
    padding: 0 16px;
  }
}
.footer-top--links .link-item {
  font-size: var(--font-sm);
  color: rgba(var(--primary-rgb), 0.9);
}
@media (max-width: 767px) {
  .footer-top--links .link-item {
    font-size: 14px;
  }
}
.footer-top--links .link-item h5 {
  font-weight: 700;
  font-size: inherit;
}
.footer-top--links .link-item ul {
  margin: 50px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
@media (max-width: 991px) {
  .footer-top--links .link-item ul {
    margin: 22px 0 0 0;
  }
}
.footer-top--links .link-item ul li a {
  text-decoration: none;
  font-weight: 500;
  font-size: inherit;
  color: inherit;
  transition: all 0.3s ease;
}
.footer-top--links .link-item ul li a:hover {
  color: var(--gray-400);
}
.footer-top .footer-social-links {
  display: none;
  align-items: end;
}
@media (max-width: 767px) {
  .footer-top .footer-social-links {
    display: flex;
  }
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1199px) {
  .footer-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .footer-content {
    gap: 32px;
  }
}
.footer-bottom {
  padding: 128px 0;
}
@media (max-width: 1023px) {
  .footer-bottom {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .footer-bottom {
    padding: 33px 0 39px;
  }
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
@media (max-width: 991px) {
  .footer-bottom-content {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .footer-bottom .footer-social-links {
    display: none;
  }
}
.footer-logo-section p {
  margin-top: 30px;
  font-size: var(--font-xs);
  line-height: 24px;
  font-weight: 500;
  color: var(--primary);
}
@media (max-width: 767px) {
  .footer-logo-section p {
    font-size: 12px;
    line-height: normal;
  }
}
.footer-logo-section p:not(:first-child) {
  margin-top: 0;
}
.footer-logo {
  max-width: 106px;
  width: 100%;
}
@media (max-width: 767px) {
  .footer-logo {
    max-width: 80px;
  }
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-social-links {
  display: flex;
  justify-content: end;
  gap: 16px;
}
.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
.footer-social-links a:hover {
  opacity: 0.5;
}

.button-link {
  display: flex;
  align-items: center;
  gap: 13px;
  border: none;
  outline: none;
  background: transparent;
  font-size: var(--font-sm);
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  transition: all 0.3s ease;
  position: relative;
}
.button-link:hover {
  color: var(--gray-400) !important;
}
.button-link::before {
  content: "";
  width: 16px;
  height: 14px;
  background-image: url(../img/right-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.input-field {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gray-200);
  font-weight: 500;
  outline: none;
  border: none;
  font-size: var(--body-font);
  width: 100%;
}
@media (max-width: 767px) {
  .input-field {
    padding: 10px 8px;
  }
}
.input-field::placeholder {
  color: var(--gray-500);
  font-family: var(--font-family);
}
@media (max-width: 767px) {
  .input-field::placeholder {
    font-size: 14px;
  }
}
