/* Global Styles */
:root {
  --primary-color: #0056b3;
  --secondary-color: #3a6faf; /*  #4178BE  */
  --light-bg: #f8f9fa;
  --text-color: #333;
  --white-text-color: #fff;
  --heading-font: "Montserrat", sans-serif;
  --body-font: Lato, "Open Sans", sans-serif;
  --menu-bg: #ffffff;
  --menu-text: #595959;
  --menu-hover: #0056b3;
  --menu-active: #4d90fe;
  --menu-border: #f0f0f0;
  --menu-shadow: rgba(0, 0, 0, 0.1);
  --menu-transition: all 0.3s ease;
  --menu-highlight: #0056b3;
  --menu-overlay: rgba(0, 0, 0, 0.5);
  --mebs-pointer: #ff8a10;
  --mebs-offices: #234682;
  --mebs-partner: #00a1e9;
  --mebs-blue: #0e579b;
  --mebs-yellow: #ff9900;
  /* Map */
  --arabian: #a8d7f6;
  --europe: #64b5f6;
  --americas: #2196f3;
  --west_africa: #002b62;
  --east_africa: #0d47a1;
  --indopacom: #1976d2;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  background-attachment: fixed;
  overflow-x: hidden;
  max-width: 100%;
  padding-top: 168px;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 50% 25%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  z-index: -1;
  opacity: 0.4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 15px;
}
.container.text-center {
  text-align: center;
}

.empty-space {
  display: block;
  margin-bottom: 40px;
  height: 1px;
}

*:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
}

/* Header */
.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-box {
  display: flex;
}

.show-mobile {
  display: none;
}

.logo img {
  max-width: 100%;
  height: auto;
}

/* colors */
.orange_bg {
  background-color: var(--mebs-pointer);
}
.blue_bg {
  background-color: var(--mebs-partner);
}
.dark_blue_bg {
  background-color: var(--mebs-offices);
}

/* figures */
.round,
.rectangle {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.round {
  border-radius: 29px;
}

.site-tagline {
  width: 222px;
  padding-bottom: 8px;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #1d4597;
  margin-left: 10px;
  display: flex;
  align-items: flex-end;
}

.search-box {
  background: #fff;
  max-width: 720px;
  width: 492px;
  height: 56px;
}

.search-form {
  display: flex;
  position: relative;
}

.search-field {
  width: 100%;
  padding: 4px 15px;
  border: 1px solid #e8f7ff;
  border-radius: 8px;
  font-size: 16px;
  height: 56px;
  line-height: 24px;
  font-family: Lato;
  font-weight: 500;
  color: #1c4497;
  background-color: #f0faff;
}

.search-submit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #1c4497;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}

.search-icon {
  font-size: 18px;
  padding: 20px;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.search-submit:focus {
  outline: none;
}

.search-separator:last-of-type {
  display: none;
}

/* Mobile menu */
.menu-toggle {
  display: flex;
  align-items: center;
}

#hamburger-btn {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  width: 26px;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  gap: 4px;
}

#hamburger-btn span {
  display: block;
  position: relative;
  height: 3px;
  width: 100%;
  background: #00a5e3;
  border-radius: 3px;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#hamburger-btn.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

#hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  /* left: -60px; */
}

#hamburger-btn.open span:nth-child(3) {
  top: -7px;
  transform: rotate(-135deg);
}

.mobile-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100%;
  height: 100%;
  box-shadow: -5px 0 15px var(--menu-shadow);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  z-index: 1999;
  padding: 20px 0;
  background: linear-gradient(191.29deg, #1c4497 8.32%, #091631 65.3%);
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 500px;
  background: url("/wp-content/themes/mebs/images/mobile-bg-left.png") no-repeat
    center center / cover;
}
.mobile-menu .navigation::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 375px;
  background: url("/wp-content/themes/mebs/images/mobile-bg-bottom.png")
    no-repeat center center / cover;
}

.mobile-menu.active {
  transform: translateX(0);
}

.navigation {
  padding: 0 20px;
}

.menu-items-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.menu-items-mobile li {
  position: relative;
  margin-bottom: 3px;
}

.menu-items-mobile li a {
  display: block;
  padding: 10px 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--menu-transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.menu-items-mobile li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--menu-highlight);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.menu-items-mobile li a:hover {
  color: var(--menu-hover);
  background-color: rgba(0, 86, 179, 0.05);
  padding-left: 20px;
}

.menu-items-mobile li a:hover::before {
  transform: scaleY(1);
}

.menu-items-mobile li.current-menu-item a {
  color: #ccc;
  background-color: rgba(0, 86, 179, 0.1);
  font-weight: 600;
}

.menu-items-mobile li.current-menu-item a::before {
  transform: scaleY(1);
  width: 5px;
}

.menu-items-mobile .sub-menu {
  display: block;
  overflow: hidden;
  list-style: none;
  padding-left: 15px;
  margin: 0;
  transition: max-height 0.4s ease;
}

.menu-items-mobile .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.menu-items-mobile .menu-item-has-children.active > a::after {
  transform: translateY(-50%) rotate(45deg);
}

.menu-items-mobile .menu-item-has-children.active .sub-menu {
  max-height: 500px;
}

.menu-items-mobile .sub-menu li a {
  padding: 10px 15px;
  font-size: 0.9em;
  font-weight: 500;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: var(--menu-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .menu-items-mobile li {
  animation: fadeInRight 0.5s ease forwards;
}

.mobile-menu.active .menu-items-mobile li:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(7) {
  animation-delay: 0.7s;
}
.mobile-menu.active .menu-items-mobile li:nth-child(8) {
  animation-delay: 0.8s;
}

/* Default */
.mobile-search {
  display: none;
}

/* Desktop menu */
.main-nav {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  height: 72px;
  display: flex;
  align-items: flex-end;
}
.main-nav-wrap {
  display: flex;
  justify-content: space-between;
}

.desktop-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
}

.desktop-menu li {
  position: relative;
}

.desktop-menu > li > a {
  text-decoration: none;
  color: #173583;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 12px 20px 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  letter-spacing: 3%;
  line-height: 1.222;
  border-radius: 8px 8px 0 0;
}

.desktop-menu > li > a:hover,
.desktop-menu > li > a:active {
  background-color: #173583;
  color: #fff;
}
.desktop-menu > li.current_page_item {
  border-radius: 8px 8px 0 0;
  background-color: #e8f7ff;
}

.desktop-menu .sub-menu,
.desktop-menu .sub-submenu {
  list-style: none;
  padding: 6px;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 56, 117, 0.92);
  backdrop-filter: blur(10px);
  min-width: 210px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.desktop-menu .sub-menu li {
  position: relative;
  /*margin: 2px 0;*/
}

.desktop-menu .sub-menu li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 12px;
  transition: all 0.25s ease;
  font-size: 15px;
  border-radius: 6px;
}

.desktop-menu .sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.desktop-menu .sub-submenu {
  top: 0;
  left: 100%;
  margin-left: 2px;
}

/* Display OFF Top Submenu  */
/* .desktop-menu li:hover > .sub-menu,
.sub-menu li:hover > .sub-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.sub-menu li:hover > .sub-submenu {
  transform: translateX(5px);
} */

.desktop-menu > li.current-menu-item > a::before {
  width: 70%;
  background-color: #ffffff;
}

.contact-us-btn {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 12px 24px 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  letter-spacing: 3%;
  line-height: 1.222;
  margin-right: 46px;
  background-color: #0087cd;
  border-radius: 8px 8px 0 0;
  text-decoration: none;
}

/* Hero section */
.hero-section {
  background: linear-gradient(
      to right,
      rgba(0, 8, 29, 0.37),
      rgba(0, 8, 29, 0.37)
    ),
    url("/wp-content/uploads/2025/11/Hero_Banner.jpg") no-repeat left center;
  width: 100%;
  background-size: cover;
  height: 924px;
  position: relative;
  overflow-x: hidden;
}
.error-page.hero-section {
  height: 560px;
}

/* Gentle moving light */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/mebs/images/World_Map.png") no-repeat
    center center / cover;
  opacity: 14%;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  border-radius: 90px 45px;
  padding: 30px;
  width: 50%;
}
.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    77.03deg,
    rgba(8, 8, 8, 0.18) 43.95%,
    rgba(110, 110, 110, 0) 110.52%
  );
  filter: blur(175px);
  z-index: 2;
}
.hero-content .icon {
  margin-left: 5px;
}

.hero-title {
  font-family: "Times New Roman";
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
  letter-spacing: 1.5%;
}

.page-hero {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  display: flex;
}

.page-hero.global-freight-forwarding {
  height: 824px;
  align-items: flex-end;
  padding-bottom: 100px;
}
.page-hero.global-health-pharma {
  height: 824px;
  align-items: flex-end;
  padding-bottom: 100px;
}
.page-hero.services,
.page-hero.service {
  height: 691px;
  align-items: flex-end;
  padding-bottom: 100px;
}
.page-hero.about-us {
  height: 662px;
}
.page-hero.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 8, 29, 0.41), rgba(0, 8, 29, 0.41));
}
.page-hero.relocation {
  height: 582px;
  margin-bottom: 40px;
}
.page-hero.relocation .hero-content::before {
  display: none;
}

.page-hero.global-freight-forwarding .hero-content {
  position: relative;
  left: 0;
  transform: none;
  text-align: left;
  top: 0%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.page-hero.global-freight-forwarding .hero-title,
.page-hero.global-freight-forwarding .hero-subtitle {
  text-align: left;
}
.child-page-hero {
  height: 600px;
  align-items: flex-end;
  padding-bottom: 100px;
}
.child-hidden {
  display: none;
}

.btn-primary {
  font-family: Lato;
  padding: 18px 24px;
  color: var(--text-light);
  border: none;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 200px;
  background: rgba(0, 135, 205, 1);
  gap: 6px;
  letter-spacing: 3%;
  color: #fff;
}
.btn-primary:hover {
  box-shadow: 0px 14px 22.8px 0px rgba(125, 202, 242, 0.3);
  background: linear-gradient(97.33deg, #7dcaf2 39.21%, #0087cd 100%);
}
.btn-primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(97.33deg, #7dcaf2 39.21%, #0087cd 100%);
  transition: 0.8s;
  z-index: -1;
}
.btn-primary:hover::after {
  left: 100%;
}

.btn-default {
  font-family: Lato;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 3%;
  color: #1c4497;
  background: #ffffff;
  box-shadow: 0px 12px 22.2px 0px #0000000f;
  width: 224px;
  height: 52px;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 26px;
  text-decoration: none;
}
.btn-default.pos-center {
  margin: 0 auto;
}
.btn-default i {
  width: 24px;
  height: auto;
  text-align: center;
}

/* Sections on HP and Team */
.section-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem;
  font-weight: bold;
  font-weight: 700;
  text-align: center;
  color: #1c4497;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-card h1 {
  font-size: 4rem;
  text-align: center;
}

.section-title h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 3.5rem;
  line-height: 4rem;
  margin-bottom: 28px;
  text-transform: uppercase;
  text-align: center;
}

h3.section-title {
  font-family: "Times New Roman", Times, serif;
  font-size: 2rem;
  line-height: 100%;
  margin-bottom: 1.75rem;
  padding: 0;
  text-align: left;
  color: #000;
}

.section-title p {
  color: var(--menu-text);
  margin: 0 auto;
  text-align: center;
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
  margin: 77px auto 0;
}
.section-grid.three-column {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  margin: 0px auto 0;
}
.section-card {
  transition: all 0.3s ease;
  box-shadow: 0px 7px 43.2px 0px #0000000d;
  border-radius: 15px;
  position: relative;
  padding-bottom: 80px;
}

.section-card-member {
  transition: all 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.section-card p {
  text-align: left;
  font-family: Lato;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 1.5%;
  margin: 0;
}

.section-card div {
  text-align: center;
}

/* Services */
.services-section {
  padding: 60px 0 50px;
  background-color: white;
}

.service-image-wrapper {
  height: 242px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section .section-title p {
  max-width: 932px;
}

.service-content {
  padding: 0 28px;
  min-height: 220px;
  margin-bottom: 1rem;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  color: white;
  font-size: 30px;
}

.services-section .btn-services {
  box-shadow: 0px 12px 22.2px 0px #0000000f;
  min-width: auto;
  height: 52px;
  opacity: 1;
  border-radius: 26px;
  padding: 16px 24px;
  background: #ffffff;
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: 3%;
  color: #1c4497;
  margin: 0 28px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  border: none;
}
.services-section .btn-services i {
  color: #1e1e1e;
  margin-left: 10px;
}

/* world map */
.world-map-container {
  margin-bottom: 60px;
}

.world-map-container p {
  max-width: 70vw;
}

.world-map-image-wrapper {
  height: auto;
  width: 100%;
  overflow: hidden;
}

.world-map-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-map-legends-wrapper {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.world-map-legends-wrapper .world-map-legend {
  display: flex;
  font-family: Lato;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 129%;
  letter-spacing: 1.5%;
  text-align: center;
  color: var(--menu-text);
}

/* Testimonials */
.testimonials-section {
  padding: 40px 0;
  background-color: #eef8fd;
  position: relative;
  overflow: hidden;
}
.testimonials-wrapper {
  position: relative;
}

.testimonials-slider {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
  overflow: visible;
  border-radius: 20px;
  padding-top: 60px;
  gap: 30px;
  margin: 30px;
}

.testimonial-item {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 80px 104px 50px;
  border-radius: 10px;
  background: url("/wp-content/themes/mebs/images/Subtract.png") no-repeat top
    center / cover;
  position: relative;
  box-shadow: 0px 0px 20px 0px rgba(240, 240, 240, 0.1);
}
.testimonial-content {
  position: relative;
}

.testimonial-item:before {
  content: "";
  position: absolute;
  top: -64px;
  left: calc(50% - 71px);
  color: rgba(41, 128, 185, 0.1);
  line-height: 1;
  background: url("/wp-content/themes/mebs/images/testimonials-quote.png")
    no-repeat right bottom / cover;
  width: 142px;
  height: 112px;
}

.testimonial-text {
  color: #595959;
  margin-bottom: 34px;
  font-family: Lato;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 129%;
  letter-spacing: 1.5%;
  text-align: center;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.author-image img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4,
.author-info p {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 129%;
  letter-spacing: 1.5%;
  text-align: center;
  margin: 0;
}

.testimonials-section .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #fff;
  color: #007bff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  z-index: 10;
}

.testimonials-section .arrow:hover {
  background: #f0f6ff;
}

.testimonials-section .prev-btn {
  left: 0;
  padding-right: 10px;
}

.testimonials-section .next-btn {
  right: 0;
  padding-left: 10px;
}

/* Connect */
.connect-section {
  margin: 60px 0 108px;
  position: relative;
}
/* .connect-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #eef8fd;
  width: 100%;
  height: 60px;
  display: block;
} */

.connect-wrapper {
  background: linear-gradient(
      to right,
      rgba(0, 8, 29, 0.37),
      rgba(0, 8, 29, 0.37)
    ),
    url("/wp-content/themes/mebs/images/Packaging.jpg") no-repeat left center;
  width: 100%;
  height: 290px;
  border-radius: 16px;
  background-size: cover;
  position: relative;
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  padding: 70px 76px;
  color: #fff;
}

.connect-content h2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0 0 24px 0;
}
.connect-content p {
  font-family: Lato;
  font-weight: 400;
  font-size: 16px;
  line-height: 129%;
  letter-spacing: 3%;
  max-width: 800px;
}
.connect-btn {
  align-items: flex-end;
  display: flex;
  padding: 5px;
}

/* Contact page */
.contact-page {
  height: 653px;
}
.hero-section::before {
  opacity: 4%;
}
.contact-page .hero-content {
  top: 75%;
  transform: translate(-50%, -75%);
}
.contact-section {
  padding: 40px 0;
  background-color: white;
}
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 11px;
  max-width: 1116px;
  margin: 0 auto 80px;
}

/* Accordion */
.accordion-item {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #d9d9d9;
  display: flex;
  flex-direction: column;
}
.accordion-item .accordion-header {
  display: flex;
  justify-content: space-between;
  background: none;
  padding: 16px 24px;
  border: none;
}
.accordion-item.active .accordion-header {
  background: #eaf6ff;
}
.accordion-item h3 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 100%;
  letter-spacing: 3%;
  margin: 0;
}
.accordion-item .acc-icon {
  width: 24px;
  height: 24px;
  text-align: center;
  color: #1c4497;
  line-height: 2;
}
.accordion-item.active .acc-icon {
  transform: rotate(-180deg);
}
.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.accordion-inner {
  display: flex;
  flex-direction: column;
}
.accordion-inner .contact-location {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid #d9d9d9;
  padding: 24px;
}
.accordion-inner .contact-location:last-of-type {
  border-bottom: none;
}
.accordion-inner .contact-location h4 {
  font-family: Lato;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 1.5%;
  text-transform: uppercase;
  color: #ff9900;
  margin: 0;
}
.accordion-inner .contact-location p,
.accordion-inner .contact-location a {
  margin: 0;
  color: #1c4497;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input.form-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #086179;
  outline: none;
  background: transparent;
  transition: border-color 0.3s ease-in-out;
}

input.form-input:focus {
  border-bottom: 2px solid #004466;
}

textarea.form-textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #086179;
  outline: none;
  background: transparent;
  resize: vertical;
  height: 100px;
  transition: border-color 0.3s ease-in-out;
}

textarea.form-textarea:focus {
  border-bottom: 2px solid #004466;
}

.testimonial-container .section-card {
  width: 27%;
}

.section-card .name {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.section-card .position {
  font-size: 16px;
  color: #777;
  margin-bottom: 10px;
}

.section-card .highlight {
  font-weight: bold;
  font-size: 16px;
  color: #086179;
}

@media (min-width: 1200px) {
  .menu-toggle {
    display: none !important;
  }
}

.full-width-container {
  background: linear-gradient(
    135deg,
    #e0f7ff 0%,
    #d7f0fd 25%,
    #c8e6fb 50%,
    #b8ddfa 75%,
    #a8d5f9 100%
  );
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 15px;
}

.full-width-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
  padding: 10px 0;
}

.full-width-wrap h2:first-child {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.full-width-wrap h2:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 3px;
  width: 60px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.full-width-wrap p {
  font-size: 1.1rem;
  text-align: justify;
}

/* Geographic Coverage page */
.geographic-coverage .hero-content {
  position: relative;
  width: auto;
  max-width: 1098px;
  top: 0;
  left: 0;
  transform: none;
  margin: 0 auto;
}
.geographic-coverage .hero-content::before {
  display: none;
}
.geographic-coverage .hero-content .hero-title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4rem;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #1c4497;
}
.geographic-coverage .hero-content p {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
  text-align: center;
  color: #595959;
}
/* World Map Styles */
.world-map {
  position: relative;
  width: 100%;
  margin: 40px 0;
}
.world-map-wrapper,
.locations .container {
  max-width: 968px;
  margin: 0 auto;
  padding: 0;
}
.world-map img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
}
.locations {
  margin-bottom: 60px;
}
.locations hr {
  color: #d7d7d7;
}
.locations .addresses-section {
  display: flex;
  max-width: 852px;
  margin: 0 auto 50px;
}
.location-detail {
  flex: 1;
}
.location-detail h4 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #1c4497;
  margin: 0 0 24px;
}
.location-detail .location {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
  color: #000;
}
.location-detail .location a {
  color: #000;
}
.locations .section-grid {
  margin-top: 50px;
}
.locations .member-img {
  border-radius: 0;
}
.locations .member-img img {
  object-position: top;
  border-radius: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.anchor-target {
  scroll-margin-top: 250px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.anchor-target.active {
  max-height: 5000px;
  opacity: 1;
}

@media (hover: none) {
  .world-map-location:active {
    width: auto;
    height: auto;
    border-radius: 10px;
    background: linear-gradient(135deg, #007bff, #0048a8);
  }

  .world-map-location:active a {
    font-size: 13px;
    padding: 4px 6px;
  }
}

#map {
  width: 100%;
  height: 60vh;
  min-height: 680px;
  margin: auto;
  z-index: 1;
}

.map-label {
  text-align: center;
}

/* Main Content Area */
.page-content {
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: white;
}
.page-content.child-page .main-content {
  padding-bottom: 60px;
  display: flex;
  gap: 30px;
}
.page-content.child-page .main-content .cf h2:first-child {
  margin-top: 0;
}
.page-content.child-page .main-content .cf h2 {
  font-size: 2rem;
  text-align: left;
}
.page-content.child-page .main-content .cf p {
  text-align: left;
}

.content-wrapper {
  display: flex;
  gap: 30px;
}

.main-content {
  flex: 1;
}

.main-content h1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4rem;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #1c4497;
}

.main-content h2,
.main-content .cf h2 {
  font-family: "Times New Roman", Times, serif;
  font-size: 3rem;
  line-height: 100%;
  margin: 40px 0 18px;
  text-transform: uppercase;
  text-align: center;
  color: #1c4497;
}
.main-content h2 a {
  display: block;
  text-align: left;
  font-family: Lato;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #1c4497;
  text-decoration: none;
}

.main-content .cf p {
  color: var(--menu-text);
  margin: 0 auto 8px;
  text-align: center;
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
  max-width: 1280px;
}

.main-content .cf ul {
  margin-bottom: 20px;
  text-align: justify;
}

.main-content .cf ul li {
  margin-top: -5px;
  padding: 5px 0;
  text-align: justify;
  list-style: circle;
}

.main-content hr {
  color: #d7d7d7;
  margin: 16px 0;
}

/* Content from WP */
.main-content.about-content {
  display: flex;
  max-width: 850px;
  margin: 0 auto;
  gap: 40px;
  padding: 58px 0;
}
.main-content.about-content .cf h2 {
  margin: 0px 0 18px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0%;
  text-align: left;
  background-image: linear-gradient(90deg, var(--mebs-blue) 0%, #00a5e3 40%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.main-content.about-content .cf p {
  color: #000;
  text-align: left;
}

.main-content.relocation-content {
  max-width: 802px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-content.relocation-content p {
  text-align: left;
  margin: 0;
  max-width: 690px;
  color: #000000;
}

/* Licenses & Certifications */
.certs-section {
  background-color: #e0f4ff;
  padding-bottom: 80px;
  padding-top: 40px;
}
.certs-section .container {
  display: flex;
  flex-direction: column;
  padding-bottom: 44px;
  gap: 44px;
}
.certs-section .section-title p {
  max-width: 1250px;
}
.certs-section .section-title h2 {
  font-size: 3rem;
}
.certs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 740px;
  margin: 0 auto;
}
.single-cert {
  display: flex;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0px 3px 4.8px 0px rgba(0, 0, 0, 0.08);
  gap: 29px;
  padding: 26px 24px;
  border-radius: 9px;
  border-bottom-width: 1px;
}
.cert-image-wrapper {
  min-width: 80px;
  width: 80px;
  height: 80px;
  margin-right: 12px;
  overflow: hidden;
}
.cert-image-wrapper.big {
  min-width: 92px;
  width: 92px;
  height: 80px;
  margin-right: 0;
}
.cert-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cert-content {
  display: flex;
  align-items: center;
}
.cert-content p {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 129%;
  letter-spacing: 0%;
  margin: 0;
  color: #595959;
}

/* offerings section */
.offerings-section {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.offerings-section .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.offerings-section .section-title p {
  font-size: 1.5rem;
  text-align: center;
  color: #000;
}
.offerings-section .section-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 0;
}
.offerings-section .section-card {
  position: relative;
  border-radius: 16px;
  padding: 18px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.offerings-section .section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.78) 100%
  );
  z-index: 2;
}
.offerings-section .section-grid .section-title {
  font-family: Lato;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
  margin-bottom: 0;
  color: #ececec;
  z-index: 3;
}
.offerings-section .section-image-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.offerings-section .section-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offerings-section .offer-color-line {
  width: 90px;
  z-index: 3;
}
.offer-color-line.offer-yellow {
  border: 2px solid var(--mebs-yellow);
}
.offer-color-line.offer-green {
  border: 2px solid #26ff00;
}
.offer-color-line.offer-blue {
  border: 2px solid #00b9ff;
}
.offer-color-line.offer-orange {
  border: 2px solid #ff6200;
}
.offerings-footer p {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
  text-align: center;
  margin: 16px 0 0;
}
.offerings-btn {
  color: #fff;
}

/* map section */
.map-section {
  background-color: #ebf3f6;
  padding: 100px 0;
}
.map-section h2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  background-image: linear-gradient(90deg, var(--mebs-blue) 0%, #00a5e3 60%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.map-section-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}
.map-section-wrap .btn-primary {
  max-width: 320px;
  margin-top: 40px;
}

/* Our Leadership & Team */
.out-team-section {
  padding: 100px 0;
}
.out-team-wrapper {
  display: flex;
  gap: 75px;
}
.out-team-section .section-title {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 57px;
  margin: 0;
  flex: 1;
}
.out-team-section .section-title h2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  background-image: linear-gradient(90deg, var(--mebs-blue) 0%, #00a5e3 60%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
}
.out-team-section .section-title p {
  color: #000;
  text-align: left;
}
.out-team-section ul > li {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
  text-decoration: none;
  list-style: circle;
  color: #000000;
}
.out-team-section .section-image-wrapper {
  height: 434px;
  width: 578px;
  min-height: 434px;
  min-width: 578px;
  overflow: hidden;
  border-radius: 28px;
  flex: 1;
}
.out-team-section .section-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.out-team-section .btn-primary {
  min-width: 252px;
  margin: 0;
}
.out-team-section .mobile-title {
  display: none;
}

/* quote section */
.quote-section {
  min-height: 680px;
  background: url("/wp-content/themes/mebs/images/need-a-quote.png") no-repeat
    left bottom / 115% auto;
  position: relative;
}
.quote-section.bg {
  background-color: #f0f0f0;
}
.quote-section .section-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 657px;
}
.quote-section .section-title h2 {
  font-size: 3rem;
  margin: 0;
}
.quote-section .section-title .btn-primary {
  max-width: 310px;
}

.cf {
  display: block;
}

.featured-image {
  float: left;
  margin-right: 40px;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 40vh;
  height: auto;
  display: block;
  border-radius: 10px;
}

.featured-image-subpage {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.featured-image-subpage img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.featured-image-subpage:hover img {
  transform: scale(1.03);
}

/* Worldwide Team */
.worldwide-team {
  height: 463px;
}
.worldwide-team.hero-section::before {
  background-position: right top;
}
.page-submenu-section {
  position: sticky;
  top: 168px;
  z-index: 1001;
  background: white;
  transition: box-shadow 0.3s ease;
  box-shadow: 0px 22px 16.3px 0px #0000000d;
}
.page-submenu-section.no-shadow {
  box-shadow: none;
}
.no-sticky {
  position: initial;
}
.tabs {
  display: flex;
  flex-basis: auto;
  justify-content: center;
  gap: 1px;
  overflow: hidden;
}
.tabs.tabs-borders {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  box-shadow: 0px 2px 31.4px 0px #00000014;
  gap: 0;
  display: inline-flex;
}
.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  height: 60px;
  gap: 6px;
  color: #1c4497;
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 3%;
}
.tab > * {
  padding: 18px 24px;
}
.tab a {
  color: #1c4497;
  text-decoration: none;
}
.tabs.tabs-borders .tab {
  border-right: 1px solid #e6e6e6;
}
.tabs.tabs-borders .tab:first-of-type {
  border-left: 1px solid #e6e6e6;
}
.tabs.tabs-borders .tab.active {
  border-right: none;
  border-left: none;
}
.tab.active {
  background-color: var(--mebs-blue);
  color: white;
  position: relative;
}
.tab.active::before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--mebs-yellow);
}
.tab.active a {
  color: white;
}

.tab:hover:not(.active) {
  background-color: #e8f7ff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.team-section {
  padding: 60px 0 40px;
}
.team-location {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.team-location:last-of-type {
  margin-bottom: 0;
}
.team-section .section-title {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background-image: linear-gradient(90deg, var(--mebs-blue) 0%, #00a5e3 80%);

  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 0px 16px;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-radius: 16px;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 1px 2px 0px #0000004d;
  max-width: 363px;
  margin-bottom: 40px;
}
.member-card.executive .member-delails {
  cursor: pointer;
}

.member-img {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  width: 363px;
  height: 528px;
  min-height: 528px;
  max-height: 528px;
  flex: 0 0 auto;
  padding: 0;
  display: block;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.member-delails {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.member-name-link-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.member-name {
  font-family: Roboto;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.member-role,
.member-locate {
  font-family: Lato;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 1.5%;
}
.member-link {
  border: 1px solid #a7a7a7;
  color: #000000;
  width: 36px;
  height: 36px;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-section {
  margin-bottom: 100px;
}
.member-information {
  display: none;
}

.member-info {
  flex: 1 1 300px;
  min-width: 0;
}

.member-info h2 {
  font-family: Times New Roman;
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #000;
  margin: 0 0 2px;
}

.member-info h4 {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.625rem;
  letter-spacing: 1.5%;
  color: #0087cd;
  margin: 0 0 12px;
}

.member-info p {
  font-family: Lato;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 129%;
  letter-spacing: 1.5%;
  text-align: justify;
  color: #595959;
  margin: 0;
}

.contact-btn {
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #005fbf;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #2980b9;
}

/* Statistics section */
.stats-banner {
  color: var(--white-text-color);
  padding: 139px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    64.45% 64.45% at 50% 50%,
    #00a5e3 0%,
    #173583 100%
  );
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-description {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child) {
  border-right: 2px solid #7dcaf2;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: Lato;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.stat-plus {
  margin-left: 5px;
}

.stat-label {
  font-size: 1.1rem;
  text-transform: capitalize;
  font-family: Lato;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 129%;
  letter-spacing: 1.5%;
  color: #e6e6e6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) .stat-number {
  animation-delay: 0.2s;
}

.stat-item:nth-child(2) .stat-number {
  animation-delay: 0.4s;
}

.stat-item:nth-child(3) .stat-number {
  animation-delay: 0.6s;
}

.stat-item:nth-child(4) .stat-number {
  animation-delay: 0.8s;
}

.stat-label {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

/* Popup for pages */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  background: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 9vh 10vh;
  transition: transform 0.45s ease, opacity 0.3s ease, max-height 0.9s ease;
  opacity: 0;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.popup.w750 {
  max-width: 750px;
  max-height: 95vh;
  padding: 60px 28px 28px;
}
.popup-overlay.active .popup {
  opacity: 1;
}
.popup.from-right {
  transform: translateX(100%);
}
.popup-overlay.active .popup.from-right {
  transform: translateX(0);
}
.popup.from-top {
  transform: translateY(-100%);
}
.popup-overlay.active .popup.from-top {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
}
.popup-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
}
.popup-wrapper.column-direction {
  flex-direction: column;
}
.popup.popup-scrollable {
  max-height: calc(90vh - 0px);
  overflow-y: auto;
}
.popup.popup-smallpad {
  padding: 3vh 5vh;
}
.popup-scale-container {
  transform-origin: top center;
  display: block;
  width: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 0 2vw;
}
.popup.popup-scrollable .popup-wrapper {
  align-items: normal;
}
.popup-scale-container {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge */
}
.popup-scale-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}


.popup .popup-image-wrapper {
  height: 620px;
  width: 620px;
  max-height: 498px;
  max-width: 620px;
  overflow: hidden;
  flex: 1;
}
.popup .popup-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup.w750 .popup-image-wrapper {
  width: 100%;
  min-height: 25vh;
  max-height: 40vh;
}
.popup.w750 .popup-image-wrapper img {
  height: auto;
  margin-top: -50px;
}
.popup-content-wrapper {
  flex: 1;
}

.popup h1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 0;
}
.popup h2 {
  font-family: Lato;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 1.5%;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
}
.popup-content {
  display: flex;
  flex-direction: column;
}
.popup p {
  font-family: Lato;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 1.5%;
  margin-top: 0;
  margin-bottom: 8px;
}

.popup.w750 h1 {
  font-size: 2rem;
  margin: 0 0 10px;
}
.popup.w750 h4 {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.313rem;
  line-height: 1.625rem;
  letter-spacing: 1.5%;
  margin: 0 0 10px;
  color: #834474;
}
.popup.w750 p {
  text-align: justify;
  line-height: 120%;
  letter-spacing: 1.5%;
}
.popup.w750 .popup-content {
  font-family: Lato;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 120%;
  letter-spacing: 1.5%;
  text-align: justify;
}

body.popup-open {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  width: 300px;
  flex-shrink: 0;
}

.widget {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid var(--medium-gray);
}

.widget-title {
  margin: 0;
}

.widget-title a {
  display: inline-block;
  width: 100%;
  background: #0087cd;
  color: white;
  padding: 10px 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px 10px 0 0;
}

.widget-content {
  padding: 20px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  border-bottom: 1px solid var(--medium-gray);
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: block;
  padding: 12px 10px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
}

.sidebar-menu a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  display: inline-block;
}

.sidebar-menu a:hover {
  color: var(--primary-color);
  background-color: rgba(0, 133, 204, 0.05);
  padding-left: 15px;
}

.sidebar-menu a:hover::before {
  transform: translateX(3px);
}

.sidebar-menu .active a {
  color: var(--primary-color);
  background-color: rgba(0, 133, 204, 0.1);
  font-weight: 600;
  border-left: 3px solid var(--primary-color);
}

.cta-box {
  background: #0087cd;
  border-radius: 10px;
  padding: 25px;
  color: white;
  text-align: center;
}

.cta-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
}

.cta-box p {
  margin-bottom: 20px;
  opacity: 0.9;
  color: #fff;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: white;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Relocation page */
.dtd-section .container {
  display: flex;
  gap: 116px;
  align-items: center;
  height: 741px;
}
.dtd-section .section-image-wrapper {
  min-width: 638px;
  width: 638px;
  height: auto;
  border-radius: 22px;
  flex: 1;
}
.dtd-section .section-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.dtd-section .section-title {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 0;
  flex: 1;
}
.dtd-section .section-title h2 {
  color: #fff;
  text-align: left;
  margin: 0;
}
.dtd-section .section-title p {
  color: #fff;
  text-align: left;
}
.dtd-section .btn-primary {
  margin: 0;
}
.dtd-section.skewed-gradient {
  position: relative;
  background: linear-gradient(90.74deg, #004581 17.4%, #005dae 97.2%);
  transform: skewY(-1deg);
  transform-origin: top left;
  overflow: hidden;
}
.dtd-section.skewed-gradient > * {
  transform: skewY(1deg);
}
.destination-section {
  padding: 80px 0 60px;
}
.destination-section h2 {
  margin: 0 auto 42px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 42px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}
.destination-content {
  display: flex;
  flex-direction: column;
  max-width: 1180px;
  margin: 0 auto 20px;
}
.destination-content-wrapper {
  display: flex;
  gap: 20px;
  width: auto;
  margin-bottom: 20px;
}
.destination-content-wrapper.h5 {
  max-height: 510px;
}
.destination-content-wrapper.h4 {
  max-height: 406px;
}
.destination-content-wrapper.h3 {
  max-height: 320px;
}
.destination-content .section-image-wrapper {
  max-width: 379px;
  overflow: hidden;
  flex: 1;
  border-radius: 28px;
}
.destination-content .section-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}
.destination-content .f1 {
  flex: 1;
  max-width: 424px;
}
.destination-content .f2 {
  flex: 2;
  max-width: 734px;
}
.destination-description {
  background: #e0f4ff;
  border: 1px solid #000000;
  gap: 24px;
  border-radius: 22px;
  padding: 85px 42px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.destination-subdescription {
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.destination-description h3,
.destination-subdescription h5,
.destination-subdescription p {
  margin: 0;
}
.destination-description h3 {
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 2.625rem;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.destination-subdescription h5 {
  font-family: Lato;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 1.5%;
}

/* About page */
.video-container {
  min-height: 662px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
}

/* Footer */
.footer {
  background: #173583;
  background: url("/wp-content/themes/mebs/images/footer-bg.png") no-repeat
    right bottom / cover;
  color: white;
  padding: 50px 0px 0;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.footer-grid {
  display: flex;
  gap: 66px;
}
.footer-menu {
  display: flex;
  gap: 20px;
}
.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 50px;
  position: relative;
  font-family: Lato;
  font-weight: 600;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  background-color: var(--mebs-yellow);
  margin-top: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #ededed;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-brand img {
  box-shadow: 0px 23px 23.5px 0px #0000000f;
  max-width: 100%;
  height: auto;
}

.footer-slogan {
  margin: 15px 0 0;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 3%;
  text-align: center;
  max-width: 235px;
}

.certs a {
  color: #ededed;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.certs span::after {
  content: "|";
  color: #ededed;
  margin: 0 0 0 6px;
}
.certs span:last-of-type::after {
  display: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.social-links span {
  margin-right: 8px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.social-links a img {
  width: 24px;
  max-width: 100%;
  height: auto;
}

.social-links a:hover {
  /*background-color: rgba(255, 255, 255, 0.15);*/
}

.copyright {
  display: flex;
  align-items: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-family: Roboto;
  letter-spacing: 3%;
  font-weight: normal;
  min-height: 98px;
  position: relative;
}
.copyright::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #034a8c33;
  z-index: 0;
  filter: blur(2px);
  background: url("/wp-content/themes/mebs/images/footer-bg.png") no-repeat
    right bottom / cover;
}
.copyright .container {
  z-index: 2;
}

.copyright p {
  margin: 0;
}

.copyright ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.copyright ul li {
  display: flex;
  gap: 16px;
  padding: 0 16px 0 0;
}
.copyright li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
}

.copyright a,
.copyright span {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #ededed;
}

@media (max-width: 1440px) {
  .desktop-menu {
    gap: 0;
  }
  .desktop-menu > li > a {
    font-size: 1rem;
  }
  .contact-us-btn {
    font-size: 1rem;
    margin-right: 0;
  }

  .popup {
    padding: 4vh 5vh;
  }

  .section-grid {
    gap: 16px;
    margin: 48px auto 0;
  }

  .hero-content {
    width: 70%;
  }
  .hero-section,
  .page-hero.global-freight-forwarding,
  .page-hero.global-health-pharma {
    height: 784px;
  }
  .hero-section.worldwide-team {
    height: 463px;
  }

  .services-section {
    padding-top: 24px;
  }
  .section-card {
    margin-bottom: 24px;
  }

  .main-content.relocation-content {
    max-width: 518px;
  }
  .dtd-section .container {
    gap: 36px;
  }
  .dtd-section .section-image-wrapper {
    min-width: auto;
  }

  .tab {
    font-size: 1rem;
    height: auto;
    gap: 0;
  }
  .tab > * {
    padding: 12px 18px;
  }

  .map-section {
    padding: 40px 0 60px;
  }
  .out-team-wrapper {
    gap: 36px;
  }

  .member-card {
    max-width: 300px;
  }
  .member-img {
    width: 100%;
    height: auto;
    min-width: 282px;
    max-height: 460px;
  }
  .member-role,
  .member-locate {
    font-size: 0.85rem;
    line-height: 1rem;
  }

  .contact-page .hero-content {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1199px) {
  body {
    padding-top: 96px;
  }
  .site-header {
    max-height: 95px;
  }
  .main-nav {
    display: none !important;
  }
  .page-submenu-section {
    top: 95px;
  }

  .search-box {
    margin-left: auto;
    margin-right: 24px;
  }

  h3.section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .hero-content {
    width: 80%;
  }
  .service-content {
    min-height: 140px;
  }
  .services-section .btn-services {
  }
  .stats-banner {
    padding: 80px 0;
  }
  .stat-number {
    font-size: 3.5rem;
  }
  .testimonials-section {
    padding-top: 0;
  }
  .testimonials-slider {
    width: 60%;
  }
  .testimonials-section .arrow {
    width: 70px;
    height: 70px;
  }
  .testimonials-section .prev-btn {
    left: 30px;
  }
  .testimonials-section .next-btn {
    right: 30px;
  }
  .testimonials-track {
    padding-top: 40px;
  }
  .testimonial-item:before {
    width: 106px;
    height: 84px;
    top: -37px;
  }
  .testimonial-item {
    padding: 60px;
    background-size: contain;
    background-color: #fff;
  }
  .testimonial-author {
    gap: 8px;
  }
  .out-team-section .section-image-wrapper {
    width: 50%;
    height: auto;
  }
  .footer-grid {
    gap: 0px;
    flex-direction: column;
    padding: 0 50px;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
  }
  .footer-brand a {
    max-width: 155px;
  }
  .footer-slogan {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1rem;
    max-width: 155px;
    text-align: left;
  }
  .copyright::before {
    display: none;
  }
}

@media (max-width: 1024px) {
  .sidebar,
  .widget {
    display: none !important;
  }
  .hero-content {
    width: 90%;
  }
  .hero-section {
    height: 680px;
  }
  .page-hero.services,
  .page-hero.service {
    height: 480px;
  }
  .hero-section,
  .page-hero.global-freight-forwarding,
  .page-hero.global-health-pharma {
    background-position: left !important;
  }
  .section-title h2 {
    margin-top: 0;
    margin-bottom: 16px;
  }
  .map-section {
    padding: 60px 0;
  }
  .offerings-section .container {
    gap: 32px;
  }
  .map-section h2 {
    margin-top: 0;
  }
  .out-team-section {
    padding: 60px 0;
  }
  .out-team-section .section-image-wrapper {
    height: auto;
    width: 400px;
    min-height: 218px;
    min-width: 400px;
  }
  .tabs {
    flex-wrap: wrap;
  }
  .tabs.tabs-borders {
    border: none;
    box-shadow: none;
  }
  .tabs.tabs-borders .tab {
    border: 1px solid #e6e6e6;
    box-shadow: 5px 2px 27px 0px #aaaaaa14;
    flex: 1 0 auto;
  }
  .world-map .container {
    padding: 0;
  }
  .page-hero.relocation {
    background-position: 150% !important;
  }
  .dtd-section .container {
    height: 560px;
  }
  .destination-description {
    padding: 30px 42px;
  }
  .quote-section {
    min-height: 564px;
  }
  .popup,
  .popup.popup-smallpad {
    padding: 60px 24px;
  }
  .popup-wrapper {
    flex-direction: column;
    overflow: hidden;
  }
  .popup .popup-wrapper .popup-image-wrapper,
  .popup.popup-vertical-content .popup-wrapper .popup-image-wrapper {
    display: flex;
    max-width: 100%;
    width: 100%;
    min-width: auto;
  }
  .popup .popup-wrapper .popup-image-wrapper img,
  .popup.popup-vertical-content .popup-wrapper .popup-image-wrapper img {
    object-position: top;
  }
  .page-content.child-page .main-content {
    padding: 0 40px 40px;
  }
  .testimonials-section {
    padding: 40px 0;
  }
  .connect-content {
    max-width: 75%;
  }
}

@media (max-width: 992px) {
  .hidden-mobile {
    display: none;
  }
  .show-mobile {
    display: inline;
  }
  .show-mobile .hero-subtitle {
    color: #595959;
    margin: 36px 0;
    padding: 0 15px;
    text-align: justify;
  }

  .search-box {
    width: 350px;
  }

  .hero-section,
  .page-hero.global-freight-forwarding,
  .page-hero.global-health-pharma {
    max-height: 600px;
  }
  .page-hero.global-freight-forwarding,
  .page-hero.global-health-pharma {
    padding-bottom: 24px;
  }
  .hero-content {
    padding: 20px;
  }
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 120%;
  }

  .section-title h2 {
    font-size: 2rem;
    line-height: 1;
  }
  .section-title p {
    line-height: 130%;
  }

  .page-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .main-content h2,
  .main-content .cf h2 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 24px;
  }
  .main-content .cf p {
    font-size: 1rem;
    line-height: 120%;
    text-align: justify;
  }

  .member-card {
    width: calc(50% - 20px);
  }
  .section-grid {
    /* display: flex;
    flex-wrap: wrap; */
  }
  .section-grid {
    gap: 23px;
  }
  .section-card {
    flex: 1 2 40%;
    margin-bottom: 0;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .author-image img {
    width: 64px;
    height: 64px;
  }
  .author-info h4,
  .author-info p {
    font-size: 1rem;
  }
  .connect-section {
    margin-bottom: 60px;
  }

  .locations {
    padding: 0 15px;
  }
  .locations .addresses-section {
    max-width: 100%;
  }
  .locations .location-detail {
    padding: 0 20px;
  }
  .section-card-member .member-info {
    min-width: 100%;
  }

  .page-hero.relocation {
    background: none !important;
    display: block;
    overflow: hidden;
    height: auto;
  }
  .page-hero.relocation::before {
    content: "";
    position: relative;
    top: 0;
    display: block;
    min-width: 100%;
    min-height: 358px;
    width: 100%;
    height: 100%;
    background: url("/wp-content/themes/mebs/images/Relocation-Hero.png")
      no-repeat center / cover;
  }
  .main-content.relocation-content {
    max-width: 100%;
  }
  .main-content.relocation-content h1 {
    text-align: center;
    font-size: 3rem;
    line-height: 1;
  }
  .main-content.relocation-content p {
    max-width: 100%;
    text-align: center;
  }

  .popup h1 {
    font-size: 2.25rem;
  }
  .popup .popup-image-wrapper img {
    width: initial;
    height: initial;
    min-width: 100%;
    object-position: top;
  }

  .footer-menu {
    flex-wrap: wrap;
  }
  .footer-col {
    flex: 1 4 45%;
  }
  .footer-col:nth-child(1) {
    order: 1;
  }
  .footer-col:nth-child(2) {
    order: 3;
  }
  .footer-col:nth-child(3) {
    order: 2;
  }
  .footer-col:nth-child(4) {
    order: 4;
  }
  .certs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .certs span::after {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }
  .site-header {
    max-height: 120px;
  }
  .page-submenu-section {
    top: 120px;
  }
  .mobile-search {
    display: block;
    padding: 15px 20px;
  }

  .mobile-search .search-form {
    display: flex;
    position: relative;
    width: 100%;
  }

  .mobile-search .search-field {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 14px;
  }

  .mobile-search .search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
  }
  .site-header .container {
    padding: 0;
  }
  .header-content {
    flex-direction: column;
    align-items: normal;
    position: relative;
  }
  .brand-box {
    border-bottom: 1px solid #ededed;
    padding: 0 15px;
    height: 60px;
    gap: 8px;
  }
  .logo {
    width: 55px;
    height: 52px;
    overflow: hidden;
  }
  .logo a {
    width: 55px;
    height: 52px;
    overflow: hidden;
    display: block;
  }
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
  }
  .site-tagline {
    font-size: 0.75rem;
    letter-spacing: 3%;
    text-transform: capitalize;
    margin-left: 0;
    padding: 0;
    align-items: center;
  }
  .search-box {
    border-bottom: 1px solid #ededed;
    padding: 9px 15px;
    height: auto;
    width: 100%;
    max-width: 100%;
    max-height: 60px;
  }
  .search-field {
    height: 42px;
  }
  .menu-toggle {
    position: absolute;
    top: 20px;
    right: 15px;
  }

  .main-content h1 {
    font-size: 2.3rem;
    line-height: 1;
  }
  .main-content h2 a {
    font-size: 2rem;
    line-height: 1;
  }

  .hero-content {
    padding: 15px;
    border-radius: 40px 20px;
    width: 100%;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-subtitle {
    max-width: 100%;
  }

  .hero-section,
  .page-hero.global-freight-forwarding,
  .page-hero.global-health-pharma {
    background-position: center !important;
  }
  .page-hero.global-freight-forwarding .hero-title,
  .page-hero.global-freight-forwarding .hero-subtitle {
    text-align: center;
  }
  .page-hero.global-freight-forwarding .hero-content {
    margin: 0 auto;
  }
  .page-hero.global-health-pharma,
  .page-hero.services {
    margin-bottom: 36px;
  }
  .page-hero.global-health-pharma .hero-content {
    position: relative;
    left: 0;
    transform: none;
    text-align: left;
    top: 0%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .page-hero.services .hero-content {
    top: 68%;
    transform: translate(-50%, -68%);
  }
  .section-card-member {
    flex-direction: column;
    align-items: center;
  }

  .quote-section {
    min-height: 450px;
  }
  .quote-section .section-title {
    width: 90%;
  }

  .member-info {
    width: 100%;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }
  .section-title p {
    font-size: 1rem;
  }

  .service-content {
    padding: 0 16px;
  }
  .services-section {
    padding: 20px 0 60px;
  }
  .services-section .btn-services {
    margin: 0 16px;
  }

  .testimonials-slider {
    width: 100%;
  }
  .testimonials-track {
    margin-right: 0;
    margin-left: 0;
  }
  .testimonials-wrapper {
    padding-bottom: 64px;
  }
  .testimonials-section .arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    bottom: 0;
    top: inherit;
  }
  .testimonials-section .arrow img {
    width: 10px;
    height: auto;
  }
  .testimonials-section .prev-btn {
    left: 35px;
  }
  .testimonials-section .next-btn {
    right: 35px;
  }
  .testimonial-item {
    padding: 60px 36px;
  }

  .world-map img {
    width: 100%;
  }
  .world-map-container p {
    max-width: 100%;
  }
  .world-map-legends-wrapper {
    flex-wrap: wrap;
    gap: 16px;
  }
  .world-map-legends-wrapper .world-map-legend {
    margin: 0 8px;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.8);
    }
    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  .member-card {
    width: 100%;
  }
  .member-img {
    height: 560px;
  }
  .member-img img {
    object-position: top;
  }

  .stats-banner {
    padding: 80px 0 60px;
  }
  .stat-item:nth-of-type(2) {
    border-right: none;
  }
  .stat-item {
    margin-bottom: 40px;
    flex: 1 4 45%;
  }
  .stat-item::after {
    display: none;
  }

  .connect-wrapper {
    background-position: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 60px;
    height: auto;
  }
  .connect-content {
    text-align: center;
    max-width: 100%;
  }

  .certs-section .container {
    gap: 41px;
    padding-bottom: 0;
  }
  .certs-section .section-title {
    margin: 0;
  }
  .certs-section .section-title h2 {
    font-size: 2rem;
  }
  .certs-section .section-title p {
    font-size: 1rem;
    line-height: 120%;
    text-align: justify;
  }
  .cert-content p {
    font-size: 1rem;
    line-height: 130%;
    letter-spacing: 0;
  }
  .single-cert {
    gap: 20px;
  }
  .quote-section .section-title p {
    font-size: 1rem;
    line-height: 130%;
  }

  .quote-section .section-title h2 {
    font-size: 2rem;
  }

  .destination-description {
    padding: 40px 24px;
  }
  .destination-description h3 {
    font-size: 2rem;
    line-height: 130%;
    text-align: center;
  }
  .destination-subdescription h5 {
    font-size: 1.5rem;
    line-height: 1;
  }
  .destination-subdescription p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 1.5%;
  }
  .destination-content-wrapper.h3 {
    display: none;
  }
  .destination-content-wrapper.h4 {
    flex-direction: column-reverse;
    max-height: 100%;
  }
  .destination-content-wrapper.h5 {
    height: 362px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
  }
  .destination-content-wrapper.h5::-webkit-scrollbar {
    display: none;
  }
  .destination-content .section-image-wrapper {
    flex: 0 0 auto;
    width: 272px;
    height: auto;
    scroll-snap-align: start;
    object-fit: cover;
  }
  .destination-content .f1 {
    max-width: 100%;
    width: 100%;
  }

  .dtd-section .container {
    flex-direction: column;
    padding: 100px 15px 100px;
    height: auto;
  }
  .dtd-section .section-title {
    align-items: center;
  }
  .dtd-section .section-title p {
    text-align: center;
  }
  .dtd-section .section-image-wrapper {
    width: 100%;
  }

  .tab {
    flex: 1 0 auto;
  }
  .video-container .caption {
    transform: translate(-50%, -75%);
    top: 75%;
    width: 80%;
  }
  .main-content.about-content {
    flex-direction: column;
    align-items: center;
    padding-bottom: 0;
  }
  .main-content.about-content .cf h2 {
    text-align: center;
    background-image: linear-gradient(90deg, #0e579b 0%, #00a5e3 100%);
    margin: 0px 0 38px;
  }
  .main-content.about-content .cf p {
    text-align: center;
  }

  .offerings-section {
    padding: 48px 0 60px;
  }
  .offerings-section .container {
    gap: 57px;
  }
  .offerings-section .section-title p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .offerings-section .section-title {
    margin: 0;
  }
  .offerings-section .section-grid {
    display: flex;
    flex-wrap: nowrap;
    height: 234px;
    gap: 16px; /* можно изменить расстояние */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
    scroll-snap-type: x proximity;
    touch-action: pan-x;
  }
  .offerings-section::-webkit-scrollbar {
    display: none;
  }
  .offerings-section .section-card {
    flex: 0 0 auto;
    height: auto;
    scroll-snap-align: start;
    object-fit: cover;
    width: 234px;
    height: 234px;
  }
  .offerings-btn .btn-primary {
    width: 100%;
    max-width: 100%;
  }

  .map-section-wrap p {
    margin-bottom: 16px;
  }
  .out-team-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .out-team-section .section-image-wrapper {
    width: 100%;
    min-width: 100%;
    min-height: auto;
  }
  .out-team-section .section-title {
    align-items: center;
    gap: 42px;
  }
  .out-team-section .btn-primary {
    width: 100%;
    min-width: 100%;
  }
  .out-team-section .desktop-title {
    display: none;
  }
  .out-team-section .mobile-title {
    display: flex;
  }

  .geographic-coverage .hero-content .hero-title {
    font-size: 2.625rem;
    line-height: 1;
  }
  #map {
    height: 300px;
    min-height: 300px;
    border-radius: 0;
  }

  .main-content.relocation-content h1 {
    font-size: 2rem;
    line-height: 1;
  }
  .main-content.relocation-content p {
    font-size: 1rem;
    line-height: 130%;
  }

  .page-hero.about-us {
    height: 600px;
  }
  .video-container {
    min-height: 600px;
  }
  .page-hero.about-us .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .popup.w750 .popup-content {
    font-size: 1rem;
    line-height: 1.25rem;
  }
  .popup.w750 .popup-image-wrapper img {
    margin: 0;
  }
  .popup .wp-block-quote {
    margin: 0;
  }
  .popup-scale-container {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE / Edge */
  }
  .popup-scale-container::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .footer-grid {
    padding: 0 15px;
  }
  .footer-brand {
    justify-content: space-between;
  }
  .footer-col h4 {
    line-height: 120%;
  }
  .footer-col ul li,
  .certs,
  .social-links span {
    font-size: 0.875rem;
    line-height: 1;
    letter-spacing: 3%;
  }
  .copyright ul {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section-card {
    flex: 1 2 75%;
  }
  .world-map-legends-wrapper .world-map-legend {
    font-size: 1rem;
    line-height: 130%;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-label {
    font-size: 1.125rem;
    padding: 0 24px;
  }
  .stats-banner {
    padding: 60px 0 24px;
  }
  .connect-wrapper {
    padding: 60px 0 40px;
  }
  .destination-content .section-image-wrapper {
    max-width: 100%;
  }

  .section-grid.three-column {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .team-location {
    gap: 16px;
  }
  .team-members {
    padding: 0;
  }
  .member-card {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .locations .addresses-section {
    flex-direction: column;
    gap: 40px;
  }
  .location-detail h4 {
    margin-bottom: 16px;
  }

  .out-team-section .section-title h2 {
    font-size: 2rem;
    line-height: 1;
  }

  .popup.w750 {
    overflow-y: auto;
    max-height: 85vh;
  }
}

@media (max-width: 400px) {
  .stats-banner {
    padding: 0;
  }
  .stat-item {
    margin: 0;
    padding: 40px 0;
    margin: 0 20%;
  }
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 2px solid #7dcaf2;
  }
}

@media (max-width: 360px) {
  .site-tagline {
    display: none;
  }

  /* Home page */
}
