@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  overflow-x: hidden;
  transition: all 0.5s ease;
  background-color: #ffffff;
}
body.locked {
  overflow: hidden;
}

p,
small,
span {
  color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222222;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h2 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
}

p {
  font-size: 1rem;
  transition: all 0.5s ease;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  p {
    font-size: 1rem !important;
  }
}

li {
  font-size: 16px;
  transition: all 0.5s ease;
}

input {
  outline: none !important;
  box-shadow: none !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control::placeholder,
input.form-control::placeholder {
  color: #797373;
  font-size: 14px;
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.section__title {
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.section__title h6 {
  font-family: "Inter", sans-serif;
  color: #F26C38;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  text-transform: capitalize;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}
.section__title h6 span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #032642;
  text-transform: uppercase;
}
.section__title h1,
.section__title h2 {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 0;
  color: #032642;
  line-height: clamp(3rem, 5vw, 4.375rem);
}
.section__title h1 span,
.section__title h2 span {
  color: #F26C38;
}
.section__title p {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0.9375rem;
}
.section__title i {
  color: #14e49a;
  margin-right: 0.3125rem;
  font-size: 0.875rem;
}

.social__icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.social__icon li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: all 500ms ease;
  border-radius: 50%;
  height: 1.875rem;
  width: 1.875rem;
  overflow: hidden;
  background-color: #eff8fb;
}
.social__icon li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: #032642;
  transition: all 500ms ease;
  text-decoration: none;
  font-size: 0.9375rem;
}
.social__icon li a i {
  font-size: 0.9375rem;
}
.social__icon li a + a {
  margin-left: 0.5rem;
}
.social__icon li:hover {
  border-color: #F26C38;
}
.social__icon li:hover a {
  color: #F26C38;
}

.breadcrumb__custom {
  align-content: center;
}
.breadcrumb__custom span svg path {
  fill: #F26C38;
}
.breadcrumb__custom span {
  color: #F26C38;
  font-size: 32px;
}
.breadcrumb__custom a {
  font-size: 1.375rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  text-transform: capitalize;
}
.breadcrumb__custom a.active, .breadcrumb__custom a:hover {
  color: #F26C38;
}
.breadcrumb__custom.active a {
  color: #032642;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.pagination .page-link {
  background-color: #032642;
  color: #ffffff;
}
.pagination .page-item.active .page-link {
  background-color: #F26C38;
  border-color: #ffffff;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  transition: all 0.3s ease;
}

.btn__group {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}

.d__flex {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 1rem;
}

.banner__page {
  background-image: url("/static/site-asset/images/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: 6.25rem;
  text-align: center;
}
.banner__page::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__page--content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: auto;
}
.banner__page--content :where(h1, h2, p) {
  color: #ffffff;
}
.banner__page--content h2,
.banner__page--content h1 {
  font-size: 4.375rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.banner__page--crumb {
  position: relative;
  z-index: 1;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 1.5625rem;
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
}
.banner__page--crumb :where(a, span) {
  color: #ffffff !important;
}
.banner__page--crumb a {
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
}
.banner__page--crumb a.active {
  color: #032642 !important;
}
.banner__page--crumb a.link:hover {
  color: #F26C38 !important;
}

.l__button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #ffffff;
  text-transform: capitalize;
  border: 1px solid #003459;
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.625rem;
  background-color: #ffffff;
  transition: all 0.4s ease;
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  display: inline-flex;
}
.l__button i {
  margin-left: 0.3125rem;
}
.l__button span {
  transition: all 0.4s ease;
  color: #ffffff;
}
.l__button svg {
  height: 2.5rem;
  width: 2.5rem;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 0.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0.5625rem;
  transition: all 0.4s ease-in-out;
  margin: 0;
}
.l__button svg path {
  transition: all 0.4s ease-in-out;
  fill: #F26C38;
}
.l__button--primary {
  color: #ffffff;
  border-color: #F26C38;
  background-color: #F26C38;
}
.l__button--primary:hover {
  border-color: #FF8E62;
  color: #ffffff;
  background-color: #FF8E62;
}
.l__button--secondary {
  color: #ffffff;
  background-color: #032642;
  border-color: #032642;
}
.l__button--secondary:hover {
  border-color: #F26C38;
  color: #ffffff;
  background-color: #F26C38;
}
.l__button--transparent {
  color: #F26C38;
  background-color: transparent;
  border-color: #F26C38;
}
.l__button--transparent:hover {
  border-color: #F26C38;
  background-color: #F26C38;
  color: #ffffff;
}
.l__button--border {
  border-color: #C7C7C7;
  color: #032642;
}
.l__button--border:hover {
  color: #F26C38;
  border-color: #F26C38;
  background-color: #F26C38;
  color: #ffffff;
}
.l__button:hover:before {
  width: 100%;
}
@media (max-width: 480px) {
  .l__button {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
  }
}

.tab__buttons {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab__buttons--btn {
  cursor: pointer;
}
.tab__buttons--btn:hover, .tab__buttons--btn.active {
  color: #F26C38;
}
.tab__contents--text {
  display: none;
}
.tab__contents--text.active {
  display: block;
}

.m__tb {
  margin-top: clamp(2.5rem, 6vw, 6.875rem);
  margin-bottom: clamp(2.5rem, 6vw, 6.875rem);
}
.m__tb--t {
  margin-top: clamp(2.5rem, 6vw, 6.875rem);
}
.m__tb--b {
  margin-bottom: clamp(2.5rem, 6vw, 6.875rem);
}

.p {
  padding: clamp(2.5rem, 6vw, 6.875rem);
}
.p__tb {
  padding-top: clamp(2.5rem, 6vw, 6.875rem);
  padding-bottom: clamp(2.5rem, 6vw, 6.875rem);
}
.p__tb--t {
  padding-top: clamp(2.5rem, 6vw, 6.875rem);
}
.p__tb--b {
  padding-bottom: clamp(2.5rem, 6vw, 6.875rem);
}

.l__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem; /* Add padding for inner spacing */
}

/* Increased Bootstrap-like responsive max-widths */
@media (min-width: 576px) {
  .l__container {
    max-width: 600px; /* Increased from 540px */
  }
}
@media (min-width: 768px) {
  .l__container {
    max-width: 800px; /* Increased from 720px */
  }
}
@media (min-width: 992px) {
  .l__container {
    max-width: 1040px; /* Increased from 1000px by 40px */
  }
}
@media (min-width: 1200px) {
  .l__container {
    max-width: 1240px; /* Increased from 1200px by 40px */
  }
}
@media (min-width: 1400px) {
  .l__container {
    max-width: 1320px; /* Changed from 1440px to 1320px */
  }
}
.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
}

@media (min-width: 992px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  position: relative;
}
.main-menu .main-menu__list > li > ul, .main-menu .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 15.625rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(0);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list > li + li {
  margin-left: clamp(1rem, 3vw, 2.5rem);
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 1.5rem;
  }
}
@media (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 1rem;
  }
}
@media (max-width: 1100px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 0.625rem;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: 400;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  color: #032642;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li > a.active, .main-menu .main-menu__list > li > a:hover {
  color: #F26C38 !important;
}
.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 0.9375rem;
}
.main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 52%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-size: 0.875rem;
  color: #032642;
  transform: translateY(-50%);
  font-weight: 700;
  z-index: 1;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.dropdown > a.active::after, .main-menu .main-menu__list > li.dropdown > a:hover::after {
  color: #F26C38;
}
.main-menu .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
}
.main-menu .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}
.main-menu .main-menu__list > li:hover > ul, .main-menu .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > li > ul > li, .main-menu .main-menu__list > li > ul > li > ul > li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(21, 20, 34, 0.1);
}
.main-menu .main-menu__list > li > ul > li:last-child, .main-menu .main-menu__list > li > ul > li > ul > li:last-child {
  border-bottom: 0;
}
.main-menu .main-menu__list > li > ul > li + li, .main-menu .main-menu__list > li > ul > li > ul > li + li {
  border-top: 0;
  margin-top: 0px;
}
.main-menu .main-menu__list > li > ul > li > a, .main-menu .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.875rem;
  color: #151422;
  font-weight: 400;
  display: flex;
  padding: 0.625rem 1.25rem 0.625rem;
  text-transform: capitalize;
}
.main-menu .main-menu__list > li > ul > li.active > a, .main-menu .main-menu__list > li > ul > li:hover > a, .main-menu .main-menu__list > li > ul > li > ul > li:hover > a {
  background-color: #F26C38;
  color: #ffffff;
}

.main-menu .mobile-nav__toggler {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: 500ms;
  display: flex;
  text-decoration: none;
}
.main-menu .mobile-nav__toggler:hover {
  color: #F26C38;
}

.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: all 0.3s ease;
  visibility: hidden;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: all 0.3s ease;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 0.3s ease;
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}
.mobile-nav__content {
  width: 18.75rem;
  background-color: #fdfffc;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 1.875rem 0.9375rem;
  visibility: 0;
  opacity: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .logo-box {
  margin-bottom: 2rem;
  display: inline-block;
}
.mobile-nav__content .logo-box img {
  height: 4rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.mobile-nav__close {
  position: absolute;
  top: 1.25rem;
  right: 0.9375rem;
  font-size: 1.125rem;
  cursor: pointer;
}

.mobile-nav__content .main-menu__list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.mobile-nav__content .main-menu__list > li > ul, .mobile-nav__content .main-menu__list > li > ul > li > ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}
.mobile-nav__content .main-menu__list > li:not(:last-child), .mobile-nav__content .main-menu__list > li > ul > li:not(:last-child), .mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}
.mobile-nav__content .main-menu__list > li > a, .mobile-nav__content .main-menu__list > li > ul > li > a, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  line-height: 1.875rem;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.875rem;
  text-decoration: none;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > a.expanded .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a.expanded {
  color: #F26C38;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: #F26C38;
}
.mobile-nav__content .main-menu__list > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  height: 1.875rem;
  width: 1.875rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: none;
  outline: none;
  text-align: center;
  transition: transform 500ms ease;
  padding: 0;
}
.mobile-nav__content .main-menu__list > li > a > button .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > a > button .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button .fa-minus {
  display: none;
}
.mobile-nav__content .main-menu__list > li > a > button.expanded .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded .fa-minus, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded .fa-minus {
  display: block;
}
.mobile-nav__content .main-menu__list > li > a > button.expanded .fa-plus, .mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded .fa-plus, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded .fa-plus {
  display: none;
}
.mobile-nav__content .main-menu__list {
  /* no menu after 2rd level dropdown */
}
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button, .mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-bottom: 1.875rem;
}
.mobile-nav__top .main-menu__login a {
  color: #F26C38;
}
.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav__social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.mobile-nav__social a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: #ffffff;
  height: 2.25rem;
  width: 2.25rem;
  overflow: hidden;
  min-width: 2.25rem;
  text-align: center;
  border-radius: 50%;
  background-color: #032642;
  transition: all 0.4s linear;
}
.mobile-nav__social a:hover {
  color: #F26C38;
}
.mobile-nav__social a + a {
  margin-left: 1rem;
}
.mobile-nav__contact {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.mobile-nav__contact li {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.mobile-nav__contact li + li {
  margin-top: 0.9375rem;
}
.mobile-nav__contact li a {
  color: #000000;
  text-decoration: none;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: #F26C38;
}
.mobile-nav__contact li > i {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #F26C38;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
  font-size: 0.6875rem;
  margin-right: 0.625rem;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.main-header-two {
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 99999;
  position: relative;
}
.main-header-two__wrapper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-menu-two__wrapper-inner {
  padding-inline: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  z-index: 999;
}
.main-menu-two__wrapper.sticky {
  position: fixed;
  top: 0;
  animation: slideDown 0.5s;
  z-index: 9;
  width: 100%;
  transition: all 0.5s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02);
  background-color: #ffffff;
}
.main-menu-two__logo {
  position: relative;
  display: block;
}
.main-menu-two__logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.main-menu-two__left {
  display: block;
}
.main-menu-two__left .btn__group {
  display: none;
}
.main-menu-two__main-menu-box {
  display: block;
}
.main-menu-two__right {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.main-menu-two__right .trip__btn {
  border: 1px solid #212832;
  border-radius: 0.3125rem;
  padding: 0.5625rem 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  color: #212832;
  text-decoration: none;
  transition: all 0.5s ease;
}
.main-menu-two__right .trip__btn:hover {
  background-color: #032642;
  border-color: #032642;
  color: #ffffff;
}
@media (max-width: 1400px) {
  .main-menu-two__right .trip__btn {
    padding: 0.5rem;
    font-size: 0.9375rem;
  }
}
@media (max-width: 1400px) {
  .main-menu-two__right .trip__btn {
    font-size: 0.9063rem;
  }
}
.main-menu-two__btn-box {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.main-menu-two__btn-box > ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}
.main-menu-two__btn-box > ul li {
  list-style: none;
}
.main-menu-two__btn-box > ul li a {
  text-decoration: none;
  color: #383838;
  display: flex;
  font-size: 1.5rem;
  position: relative;
}
.main-menu-two__btn-box > ul li a span {
  height: 1.0625rem;
  width: 1.0625rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: #F26C38;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 500;
  position: absolute;
  top: -0.3125rem;
  right: -0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.main-menu-two__btn-box > ul li a:hover {
  color: #F26C38;
}
.main-menu-two__btn-box > ul li .profile .icon {
  color: #383838;
  font-size: 1.5rem;
}
.main-menu-two__btn-box > ul li .profile .img {
  cursor: pointer;
}
.main-menu-two__btn-box > ul li .profile .img img {
  height: 1.875rem;
  width: 1.875rem;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
  border-radius: 50%;
}
.main-menu-two__btn-box > ul li .profile > ul {
  padding: 0;
  overflow: hidden;
}
.main-menu-two__btn-box > ul li .profile > ul li a {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.3125rem 0.875rem;
}
.main-menu-two__btn-box > ul li .profile > ul li a:active {
  background-color: #f8f9fa;
  color: #F26C38;
}
.main-menu-two__btn-box > ul li .profile > ul li a:hover {
  color: #F26C38;
}
@media (max-width: 767px) {
  .main-menu-two__btn-box {
    gap: 0.5rem;
  }
  .main-menu-two__btn-box ul {
    gap: 0.5rem;
  }
}

@media (min-width: 992px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}
.main-header-two {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  background-color: #ffffff;
}
.main-menu-two__logo img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}

.main-menu-two__wrapper.sticky .main-menu__list > li > a {
  color: #000000;
}
.main-menu-two__wrapper.sticky .main-menu__list > li > a.active {
  border-color: #000000;
}
.main-menu .main-menu__list > li {
  position: static;
  padding-block: 1.25rem;
  align-content: center;
}
.main-menu .main-menu__list > li .l__button--border {
  border-color: #F26C38;
  color: #F26C38 !important;
  padding: 0.75rem clamp(1.25rem, 3vw, 2.375rem);
}
.main-menu .main-menu__list > li .l__button--border:hover {
  color: #ffffff !important;
}
.main-menu .main-menu__list > li .mega__menu {
  border-radius: 0 0 1.25rem 1.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  transform: scaleY(0);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: #fff;
  min-width: 100%;
}
.main-menu .main-menu__list > li .mega__menu::before {
  content: "";
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  visibility: hidden;
  opacity: 0;
  z-index: 8;
  pointer-events: none;
  transition: 0.3s ease;
}
.main-menu .main-menu__list > li .mega__menu .box {
  padding-block: 3.125rem;
  background-color: #ffffff;
  z-index: 99;
  position: relative;
}
.main-menu .main-menu__list > li .mega__menu--left {
  height: 25rem;
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
}
.main-menu .main-menu__list > li .mega__menu--left img {
  object-fit: cover;
  transition: all 0.3s ease;
}
.main-menu .main-menu__list > li .mega__menu--right {
  padding-left: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0;
  column-gap: 1rem;
  row-gap: 4rem;
  width: 100%;
  flex-wrap: wrap;
}
.main-menu .main-menu__list > li .mega__menu--right .menu {
  width: 40%;
}
.main-menu .main-menu__list > li .mega__menu--right .menu a {
  text-decoration: none;
}
.main-menu .main-menu__list > li .mega__menu--right .menu h5 {
  position: relative;
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #032642;
}
.main-menu .main-menu__list > li .mega__menu--right .menu h5::after {
  content: "\f061";
  color: #032642;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 100%;
  transform: rotate(-45deg);
}
.main-menu .main-menu__list > li .mega__menu--right .menu p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5e676d;
}
.main-menu .main-menu__list > li .mega__menu--right .menu:hover h5, .main-menu .main-menu__list > li .mega__menu--right .menu.active h5 {
  color: #F26C38;
}
.main-menu .main-menu__list > li .mega__menu--right .menu:hover h5::after, .main-menu .main-menu__list > li .mega__menu--right .menu.active h5::after {
  color: #F26C38;
}
.main-menu .main-menu__list > li:hover .mega__menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > li:hover .mega__menu::before {
  visibility: visible;
  opacity: 1;
}
.main-menu .mobile-nav__login,
.main-menu .mobile-nav__toggler {
  height: 3.5rem;
  width: 3.5rem;
  overflow: hidden;
  padding: 0.375rem;
  color: #ffffff !important;
}

.main-menu-two__wrapper-inner {
  position: static;
}
@media (max-width: 991px) {
  .main-menu-two__wrapper-inner {
    padding-block: 1.125rem;
  }
}

.cta {
  text-align: center;
  align-content: center;
  background-color: #0d4068;
  position: relative;
  padding-block: clamp(3.125rem, 5vw, 5rem);
  border-radius: 1.25rem;
}
.cta::before {
  content: "";
  background-image: url(../images/cta-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.cta__box {
  position: relative;
  z-index: 1;
  max-width: 48.125rem;
  width: 100%;
  margin: auto;
}
.cta__box :where(h3, p) {
  color: #fcf6ff;
}
.cta__box h3 {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta__box p {
  font-size: 1rem;
  font-weight: 300;
  margin: auto;
  max-width: 32.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

.footer {
  position: relative;
  padding-top: clamp(3.125rem, 5vw, 5rem);
}
.footer__menu {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .footer__menu {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    margin-bottom: 2rem;
  }
}
.footer__menu .hours p {
  margin-bottom: 0;
}
.footer__menu .navbar-brand {
  display: block;
  margin-bottom: 2rem;
}
.footer__menu .navbar-brand img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.footer__menu ul {
  padding: 0;
  margin: 0;
}
.footer__menu ul li {
  list-style: none;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .footer__menu ul li {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer__menu ul li {
    margin-bottom: 1.125rem;
  }
}
.footer__menu ul li:last-child {
  margin-bottom: 0;
}
.footer__menu ul li i {
  color: #ffffff;
}
.footer__menu ul li a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  color: #011524;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.footer__menu ul li a:hover {
  color: #F26C38;
}
.footer__menu .infos li :where(span, a) {
  display: block;
}
.footer__menu .infos li span {
  color: #011524;
  font-size: 0.75rem;
  font-weight: 300;
}
.footer__menu .infos li a {
  color: #011524;
  font-size: 1rem;
  font-weight: 500;
}
.footer__menu .infos li a.mail {
  text-transform: unset;
}
.footer__menu .text {
  color: #535353;
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem !important;
  max-width: 20.875rem;
  width: 100%;
}
@media (max-width: 991px) {
  .footer__menu .text {
    max-width: 100%;
  }
}
.footer .social__icon li {
  background-color: #ffffff;
  border: 1px solid #F26C38;
}
.footer .social__icon li a {
  color: #F26C38;
}
.footer .social__icon li:hover {
  background-color: #F26C38;
}
.footer .social__icon li:hover a {
  color: #ffffff;
}
.footer__title {
  font-size: 0.875rem !important;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #535353;
}
.footer .copyright {
  margin-top: 3.125rem;
  padding-block: 1.375rem;
  border-top: 1px solid #d2d2d2;
}
.footer .copyright .l__container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer .copyright .l__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer .copyright p {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0;
  margin-bottom: 0;
  color: #535353;
  font-size: 0.75rem;
  font-weight: 300;
}
@media (max-width: 767px) {
  .footer .copyright p {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.footer .copyright ul {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer .copyright ul li a {
  font-size: 0.75rem;
  font-weight: 300;
  color: #535353;
  text-decoration: none;
  text-transform: capitalize;
}
.footer .copyright ul li a:hover {
  color: #F26C38;
}

.whatsapp {
  position: fixed;
  bottom: 3.75rem;
  right: 3%;
  z-index: 1;
  background-color: #25d366;
  height: 3.125rem;
  width: 3.125rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-radius: 50%;
}
.whatsapp i {
  color: #ffffff;
  font-size: 2rem;
}

.service__card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}
.service__card::before {
  content: "";
  background-color: #F26C38;
  background-image: url("../images/service-card-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100% !important;
  width: 100% !important;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.service__card :where(h3, p) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service__card :where(h3, p, span) {
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.service__card span {
  font-size: 0.875rem;
  font-weight: 800;
  display: block;
  color: #F26C38;
  margin-bottom: 0.5rem;
}
.service__card h3 {
  color: #032642;
  font-size: clamp(1.375rem, 3vw, 2.375rem);
  font-weight: 700;
  text-transform: capitalize;
  line-height: clamp(3rem, 3vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.service__card p {
  font-size: 1rem;
  font-weight: 300;
  color: #5e676d;
  line-height: 1.875rem;
  margin-bottom: 5rem;
}
.service__card .l__button--border:hover {
  background-color: #f69365;
  color: #ffffff;
}
.service__card:hover::before {
  visibility: visible;
  opacity: 1;
}
.service__card:hover :where(h3, p, span) {
  color: #ffffff;
}

.integration__card {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  background-color: #ffffff;
  border-radius: 1.25rem;
}
.integration__card--bg {
  background-color: #F6F9FF;
}
.integration__card--icon {
  height: 3.125rem;
  width: 3.125rem;
  overflow: hidden;
  border-radius: 50%;
  align-content: center;
  align-items: center;
  background-color: #19629d;
  margin-bottom: 0.5rem;
}
.integration__card--icon img {
  margin: auto;
  height: 1.375rem;
  width: 1.375rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.integration__card--content span {
  color: #F26C38;
  font-size: 0.875rem;
  font-weight: 800;
}
.integration__card--content h3 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #032642;
  text-transform: capitalize;
}
.integration__card--content p {
  font-size: 1rem;
  font-weight: 400;
  color: #535353;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work__card {
  max-width: 15.375rem;
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
}
.work__card::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 7rem;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 50%;
}
@media (max-width: 1400px) {
  .work__card::before {
    height: 5rem;
  }
}
@media (max-width: 1300px) {
  .work__card::before {
    height: 5rem;
  }
}
@media (max-width: 991px) {
  .work__card::before {
    display: none;
  }
}
.work__card--icon {
  background: var(--primary, linear-gradient(180deg, #f28f38 0%, #ff4700 100%));
  height: clamp(5rem, 8vw, 7.5rem);
  width: clamp(5rem, 8vw, 7.5rem);
  overflow: hidden;
  border-radius: 50%;
  align-content: center;
  margin: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.work__card--icon img {
  height: 2.8125rem;
  width: 2.8125rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  margin: auto;
}
.work__card--content h3 {
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}
.work__card--content p {
  font-size: 1rem;
  font-weight: 400;
  color: #5E676D;
}

.offer__card {
  background-color: #F6F9FF;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
}
.offer__card--icon {
  height: 6.25rem;
  width: 6.25rem;
  overflow: hidden;
  border-radius: 50%;
  align-content: center;
  align-items: center;
  background-color: #19629d;
  margin-bottom: 0.5rem;
}
.offer__card--icon img {
  margin: auto;
  height: 2.25rem;
  width: 2.25rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.offer__card--content h3 {
  font-size: clamp(1.375rem, 3vw, 2.375rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #032642;
  text-transform: capitalize;
}
.offer__card--content p {
  font-size: 1rem;
  font-weight: 300;
  color: #5E676D;
}

.logistic__card {
  background-color: #ffffff;
  padding: clamp(1.25rem, 8vw, 5.75rem) clamp(1.25rem, 3vw, 1.625rem);
  border-radius: 1.25rem;
  text-align: center;
}
.logistic__card--icon {
  height: 7.5rem;
  width: 7.5rem;
  overflow: hidden;
  border-radius: 50%;
  align-content: center;
  align-items: center;
  background: var(--primary, linear-gradient(180deg, #f28f38 0%, #ff4700 100%));
  margin: auto;
  margin-bottom: 2.5rem;
}
.logistic__card--icon img {
  margin: auto;
  height: 2.625rem;
  width: 2.625rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.logistic__card--content h3 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 0;
  color: #000000;
  text-transform: capitalize;
}

.office__card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2rem);
}
.office__card div {
  margin-top: 1.125rem;
}
.office__card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}
.office__card h6 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5E676D;
  margin-bottom: 0.25rem;
}
.office__card p {
  font-size: 1rem;
  font-weight: 400;
  color: #032642;
}

.banner {
  padding-block: 5.9375rem;
  position: relative;
  z-index: 1;
}
.banner::before {
  content: "";
  background-image: url("../images/banner/hero-page-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.banner :where(.banner__left, .banner__right) {
  position: relative;
  z-index: 1;
}
.banner__index::before {
  background-image: url("../images/banner/hero-bg.jpg");
}
.banner__right h1 {
  color: #032642;
  font-size: clamp(3.125rem, 5vw, 4.5rem);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 0;
}
.banner__right h1 span {
  color: #F26C38;
}
.banner__right p {
  margin-top: 1.5rem;
  color: #5e676d;
}
.banner__left img {
  height: 39.625rem;
  width: auto;
  max-width: 100%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .banner__left img {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .banner__left img {
    height: auto;
  }
}
.banner__left .text {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1.375rem 2rem 0 rgba(242, 108, 56, 0.2);
  padding: 1.1875rem 1.875rem;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0.625rem;
  display: inline-flex;
}
.banner__left .text img {
  height: 1.625rem;
  width: 1.625rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.banner__left .text span {
  font-size: 1rem;
  font-weight: 700;
}
.banner__left .text__one {
  position: absolute;
  top: 14rem;
  left: -1.5625rem;
}
.banner__left .text__two {
  position: absolute;
  top: 12rem;
  right: -1.5625rem;
}
.banner__left .text__three {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  transform: translateX(-10%);
}

.service {
  position: relative;
  padding-block: clamp(3.125rem, 5vw, 5rem);
}
.service__index {
  background-image: url("../images/bg/ellipse_1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.service__other {
  padding-top: clamp(3.125rem, 5vw, 5rem);
  padding-bottom: clamp(3.125rem, 4vw, 3.75rem);
}
.service__carousel {
  position: static !important;
}
.service__carousel .owl-stage-outer {
  position: static !important;
  margin-right: -12.5rem;
}
.service__carousel .owl-dots {
  display: flex;
  margin-top: 2.5rem;
}
.service__carousel .owl-dots button {
  width: 100% !important;
}
.service__carousel .owl-dots button span {
  width: 100% !important;
  border-radius: 0 !important;
  height: 2px !important;
}
.service__carousel .owl-dots button.active span {
  background-color: #F26C38 !important;
}
.service__carousel .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
}
.service__carousel .owl-nav button {
  height: 3.75rem;
  width: 3.75rem;
  overflow: hidden;
  border-radius: 0.5rem !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
}
.service__carousel .owl-nav button:hover {
  background-color: #F26C38 !important;
  color: #ffffff !important;
  border-color: #F26C38 !important;
}
.service__carousel .service__card {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.integration {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: clamp(3.125rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}
.integration .section__title {
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}
.integration .section__title h2 {
  font-size: clamp(2.5rem, 3vw, 2.8125rem);
  font-weight: 700;
}
.integration__img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1.25rem;
  min-height: 31.25rem;
}
@media (max-width: 767px) {
  .integration__img {
    height: auto;
  }
}
.integration__img img {
  object-fit: cover;
}

.page__info--error,
.page__info {
  background-image: url("../images/bg/ellipse_3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: clamp(3.125rem, 8vw, 8.5625rem);
  padding-bottom: clamp(3.125rem, 6vw, 6.25rem);
}
.page__info--error p,
.page__info p {
  color: #5E676D;
}

.page__info--error {
  padding-top: clamp(3.125rem, 12vw, 14.375rem);
  padding-bottom: clamp(3.125rem, 13vw, 15.625rem);
}
.page__info--error .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
}
.page__info--error .box span {
  color: #F26C38;
  font-size: 1.625rem;
  font-weight: 700;
}
.page__info--error .box .section__title {
  margin-bottom: 1rem;
}
.page__info--error .box p {
  margin-bottom: 2.5rem;
}

.facility {
  padding-top: clamp(3.125rem, 5vw, 5rem);
  margin-bottom: 1.25rem;
  position: relative;
}
.facility .section__title {
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}
.facility .section__title h2 {
  font-size: clamp(2.5rem, 3vw, 2.8125rem);
  font-weight: 700;
}
.facility .list {
  padding: 0;
  margin: 0;
  margin-top: 4.375rem;
  background-color: #f6f9ff;
  border-radius: 1.25rem;
  padding: 0.625rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .facility .list {
    gap: 1.5rem;
  }
}
@media (max-width: 1300px) {
  .facility .list {
    gap: 1rem;
  }
}
@media (max-width: 1200px) {
  .facility .list {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .facility .list {
    margin-bottom: 1.25rem;
    margin-top: 0;
  }
}
.facility .list li {
  list-style: none;
}
.facility .list__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
}
.facility .list__icon img {
  height: 2.25rem;
  width: 2.25rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.facility .list__icon h6 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #011524;
  margin-bottom: 0;
}
.facility__index .section__title p {
  display: none;
}
.facility__index .list {
  margin-top: 0;
}
.facility__page {
  position: relative;
}
.facility__page::before {
  content: "";
  background-image: url("../images/bg/ellipse_5.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 56.25rem;
  width: 56.25rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -11.25rem;
}

.facility__map {
  position: relative;
}
.facility__map .dropdown {
  position: absolute;
  top: 1.375rem;
  right: 2.75rem;
  z-index: 999;
  width: 15.75rem;
}
@media (max-width: 767px) {
  .facility__map .dropdown {
    right: 1rem;
    width: 12rem;
  }
}
.facility__map .dropdown-toggle {
  padding: 1.3125rem 1.5rem;
  background-color: #ffffff;
  width: 100%;
  border: none;
  border-radius: 0.625rem;
  color: #011524;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.0784313725);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.facility__map .dropdown-toggle img {
  height: 0.75rem;
  width: 1.125rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.facility__map .dropdown-toggle::after {
  display: none;
}
.facility__map .dropdown-menu {
  border: none;
  width: 100%;
  padding: 1.5rem 1.25rem;
  background-color: #ffffff;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.0784313725);
  max-height: 43.75rem;
  overflow-y: auto;
}
.facility__map .dropdown-menu-filter {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0.625rem;
}
.facility__map .dropdown-menu-filter:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.facility__map .dropdown-menu-filter h4 {
  color: #032642;
  font-size: clamp(1.125rem, 3vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.facility__map .dropdown-menu-filter .form-check {
  margin-bottom: 1rem;
}
.facility__map .dropdown-menu-filter .form-check:last-child {
  margin-bottom: 0;
}
.facility__map .dropdown-menu-filter .form-check-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5e676d;
}
.facility__map #map {
  height: 50rem;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .facility__map #map {
    height: 43.75rem;
  }
}
@media (max-width: 991px) {
  .facility__map #map {
    height: 37.5rem;
  }
}
@media (max-width: 767px) {
  .facility__map #map {
    height: 31.25rem;
  }
}
.facility__map .marker-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.facility__map .marker-dot img {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.facility__map .popup-card {
  text-align: center;
}
.facility__map .popup-card-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 0.5rem;
}
.facility__map .popup-card-head img {
  height: 1.5rem;
  width: 1.5rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.facility__map .popup-card-head h3 {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}
.facility__map .popup-card-body h4 {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
}
.facility__map .popup-card-body p {
  font-size: 0.6875rem;
  font-weight: 300;
  margin-top: 0 !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  padding: 1rem 1.25rem;
}

.leaflet-container a.leaflet-popup-close-button {
  display: none;
}

/* SIDE PANEL */
.side-panel {
  position: fixed;
  top: 5.5rem;
  right: -100%;
  max-width: 50%;
  width: 100%;
  height: calc(100vh - 5.5rem);
  overflow-y: auto;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  padding: 4rem;
  padding-right: 4.6875rem;
  transition: 0.35s ease;
  z-index: 9999;
  border-radius: 1.25rem 0 0 1.25rem;
}
@media (max-width: 991px) {
  .side-panel {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .side-panel {
    max-width: 100%;
    padding: 1rem;
  }
}
.side-panel.active {
  right: 0;
}
.side-panel .close-btn {
  height: 2.6875rem;
  width: 2.6875rem;
  overflow: hidden;
  align-content: center;
  text-align: center;
  background-color: #f2f4f7;
  border-radius: 50%;
  position: absolute;
  top: 1.5625rem;
  right: 1.5625rem;
}
.side-panel .title {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #032642;
}
.side-panel .address {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: clamp(2re, 3vw, 2.5rem);
  color: #5e676d;
}
.side-panel .type {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.side-panel .type > div {
  min-width: 9.0625rem;
}
.side-panel .type span {
  color: #5e676d;
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}
.side-panel .type .icon {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
.side-panel .type .icon img {
  height: 1.625rem;
  width: 1.625rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.side-panel .type .icon h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #032642;
  margin-bottom: 0;
  text-transform: capitalize;
}
.side-panel .sidelist h5 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5e676d;
  margin-bottom: 1rem;
}
.side-panel .sidelist ul {
  padding: 0;
  margin: 0;
}
.side-panel .sidelist ul li {
  list-style: none;
  position: relative;
  padding-left: 2.25rem;
  font-size: 1rem;
  font-weight: 400;
  color: #032642;
  margin-bottom: 1.125rem;
}
.side-panel .sidelist ul li::before {
  content: "";
  background-image: url(../images/banner/icon/tick.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.25rem;
  width: 1.25rem;
  overflow: hidden;
  position: absolute;
  top: 0.125rem;
  left: 0;
}
.side-panel .contacts {
  margin-top: 2.5rem;
}
.side-panel .contacts h3 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #5e676d;
  margin-bottom: 1.5rem;
}
.side-panel .contacts_card {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 0.5rem;
}
.side-panel .contacts_card img {
  height: 3.125rem;
  width: 3.125rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  min-width: 3.125rem;
}
.side-panel .contacts_card h5 {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: #5e676d;
}
.side-panel .contacts_card p {
  font-size: clamp(1rem, 3vw, 1.25rem) !important;
  font-weight: 700;
  margin-bottom: 0rem;
  color: #032642;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  cursor: pointer;
}
.overlay-close-label {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%) scale(1);
  padding: 6px 10px;
  pointer-events: none; /* must not block clicks */
  transition: transform 0.12s ease, background-color 0.12s ease, color 0.12s ease;
  will-change: transform;
  opacity: 0;
  z-index: 1001; /* above overlay */
  white-space: nowrap;
  user-select: none;
}
.overlay-close-label.hover-target {
  transform: translate(-50%, -180%) scale(1.12);
  background: #ff3b30;
  color: #fff;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.overlay.active .overlay-close-label {
  opacity: 1;
}

.blur {
  filter: blur(4px);
  pointer-events: none;
}

.about {
  background: linear-gradient(to right, #ffffff, #fffcfb);
}
.about__index {
  background-color: #ffffff;
  padding-block: clamp(3.125rem, 6vw, 6.25rem);
}
.about__index .section__title {
  max-width: 27.8125rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.about__index .section__title h2 {
  font-size: clamp(2.5rem, 4vw, 3.125rem);
  font-weight: 700;
}
.about .text {
  color: #535353;
  font-size: 1rem;
  font-weight: 300;
}
.about__row {
  border-radius: 1.25rem;
  overflow: hidden;
}
.about__row--content {
  height: 20rem;
  width: 100%;
  overflow: hidden;
}
.about__row--content .box {
  height: 100%;
  padding: 1.5rem;
}
.about__row--content .box :where(span, h6) {
  color: #ffffff;
}
.about__row--content .box span {
  display: block;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: clamp(3rem, 5vw, 5rem);
}
.about__row--content .box h6 {
  font-size: 1rem;
  font-weight: 700;
  max-width: 10rem;
}
.about__row--img {
  position: relative;
}
.about__row--img::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.about__row--img img {
  object-fit: cover;
}
.about__row--img .box {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}
.about__row > .row:first-child {
  margin-bottom: 1rem;
}
.about__row > .row:first-child .primary {
  background-color: #19629D;
}
.about__row > .row:first-child .secondary {
  background-color: #E17B53;
}
.about__row > .row:last-child {
  flex-direction: row-reverse;
}
.about__row > .row:last-child .primary {
  background-color: #204F74;
}
.about__row > .row:last-child .secondary {
  background-color: #FB6800;
}

.offer {
  margin-top: clamp(3.125rem, 6vw, 6.25rem);
  margin-bottom: clamp(3.125rem, 5vw, 5rem);
}
.offer .section__title {
  margin-bottom: 2.5rem;
}
.offer .section__title h2 {
  font-size: 2rem;
  font-weight: 700;
}

.logistic {
  padding-bottom: clamp(3.125rem, 6vw, 6.25rem);
  padding-top: clamp(3.125rem, 5vw, 4.75rem);
  background-image: url("../images/banner/logistic-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.logistic .section_title {
  margin-bottom: clamp(3.125rem, 4vw, 3.375rem);
}
.logistic .section_title h2 {
  font-size: clamp(1.25rem, 3vw, 2.8125rem);
  font-weight: 700;
}

.contact {
  background-color: #fffcfb;
  padding-top: 2rem;
}
.contact .section__title {
  margin-bottom: 1.5rem;
}
.contact .section__title h2 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: normal;
}
.contact .form {
  padding-bottom: clamp(3.125rem, 5vw, 5rem);
}
.contact .form__group {
  margin-bottom: 1rem;
}
.contact .form__group .l__button--primary {
  padding: 0.75rem 2.375rem;
}
.contact .form-label {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: #28283c;
}
.contact .form-select, .contact .form-control {
  border-radius: 0.5rem;
  height: 2.625rem;
  line-height: 2.625rem;
  padding: 0 0.9375rem;
}
.contact .form-select::placeholder, .contact .form-control::placeholder {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.3019607843);
}
.contact .form-select {
  color: #6c757d;
}
.contact .form-select option:not([value=""]) {
  color: #000 !important;
}
.contact .form-select:invalid {
  color: #6c757d;
}
.contact .form textarea {
  height: 6.875rem;
}
.contact__info--card {
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.25rem;
}
.contact__info--card .icon {
  height: 3.125rem;
  width: 3.125rem;
  overflow: hidden;
  min-width: 3.125rem;
  background-color: #19629d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.contact__info--card .icon img {
  height: 1.5rem;
  width: 1.5rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
}
.contact__info--card .content h6 {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0;
  color: #5e676d;
}
.contact__info--card .content a {
  font-size: clamp(1rem, 3vw, 1.625rem);
  font-weight: 700;
  color: #032642;
  text-decoration: none;
}

.office {
  background: linear-gradient(to right, #ffffff, #fffcfb);
  padding-top: clamp(3.125rem, 5vw, 4.75rem);
  padding-bottom: clamp(3.125rem, 5vw, 6rem);
  position: relative;
  background-image: url("../images/banner/logistic-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.office .section__title h2 {
  font-size: clamp(2.5rem, 3vw, 2.8125rem);
  font-weight: 700;
}
.office .tab__buttons--carousel .owl-nav {
  position: absolute;
  bottom: -40px;
  left: 0;
  margin-top: 0 !important;
  width: 100%;
}
.office .tab__buttons--carousel .owl-nav button:hover {
  background-color: #F26C38 !important;
}

.tab__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  border-radius: 3.125rem;
  margin-bottom: 3.4375rem;
}
.tab__buttons--btn {
  padding: 1rem clamp(1.25rem, 4vw, 3.5rem);
  color: gray;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 2rem;
  text-transform: capitalize;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .tab__buttons--btn {
    padding-inline: 2rem;
  }
}
.tab__buttons--btn.active {
  background-color: #F26C38;
  color: #ffffff;
}

.detail {
  background-color: rgba(255, 87, 6, 0.03);
  padding-top: clamp(3.125rem, 4vw, 3.375rem);
  padding-bottom: clamp(3.125rem, 5vw, 6.125rem);
  position: relative;
  background-image: url("../images/bg/ellipse_6.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.detail .feature {
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.375rem);
  background-color: #ffffff;
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
}
.detail .feature__left span {
  color: #F26C38;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.detail .feature__left h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #032642;
  margin-bottom: 1.5rem;
}
.detail .feature__left p {
  color: #5e676d;
  font-size: 0.875rem;
  font-weight: 400;
}
.detail .feature__right {
  background-color: #f6f9ff;
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  height: 100%;
}
.detail .feature__right .icon {
  height: 5rem;
  width: 5rem;
  overflow: hidden;
  border-radius: 50%;
  background-color: #19629d;
  align-content: center;
  margin-bottom: 1.5rem;
}
.detail .feature__right .icon img {
  height: 1.75rem;
  width: 1.75rem;
  object-fit: contain;
  transition: all 0.5s ease;
  display: block;
  margin: auto;
}
.detail .feature__right h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #032642;
  text-transform: capitalize;
  margin-bottom: 2rem;
}
.detail .feature__right ul {
  padding: 0;
  margin: 0;
}
.detail .feature__right ul li {
  list-style: none;
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.25rem;
  color: #5e676d;
  font-size: 0.875rem;
  font-weight: 400;
}
.detail .feature__right ul li:last-child {
  margin-bottom: 0;
}
.detail .feature__right ul li::before {
  content: "";
  background-image: url("../images/banner/icon/tick.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 1.25rem;
  width: 1.25rem;
  overflow: hidden;
  position: absolute;
  top: 0.125rem;
  left: 0;
}
.detail .feature__right p {
  color: #5e676d;
  font-size: 0.875rem;
  font-weight: 400;
}

.boxes {
  position: relative;
}
.boxes::before {
  content: "";
  background-image: url("../images/bg/ellipse_2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 1;
}

.work {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border-radius: 1.25rem;
  margin-bottom: clamp(3.125rem, 5vw, 5rem);
  padding-top: clamp(3.125rem, 5vw, 5rem);
  padding-bottom: clamp(3.125rem, 7vw, 6.25rem);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.work .section__title {
  margin-bottom: clamp(2.5rem, 5vw, 4.8125rem);
}
.work .section__title h2 {
  font-size: clamp(2.5rem, 3vw, 2.8125rem);
}
.work__list {
  position: relative;
}
.work__list .col:nth-child(1) .work__card::before {
  background-image: url("../images/icon/work-bg-1.png");
}
.work__list .col:nth-child(2) .work__card::before {
  background-image: url("../images/icon/work-bg-2.png");
}
.work__list .col:nth-child(3) .work__card::before {
  background-image: url("../images/icon/work-bg-3.png");
}

.faq {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-block: clamp(3.125rem, 5vw, 5rem);
  margin-bottom: 2rem;
}
.faq .section__title {
  margin-bottom: clamp(2.5rem, 4vw, 3.75rem);
}
.faq .section__title h2 {
  font-size: clamp(2.5rem, 3vw, 2.8125rem);
  font-weight: 700;
}
.faq .accordion {
  position: relative;
  z-index: 1;
}
.faq .accordion__item {
  background-color: #ffffff;
  margin-bottom: 2rem;
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.faq .accordion__item:last-child {
  margin-bottom: 0;
}
.faq .accordion__item--title {
  position: relative;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  cursor: pointer;
  padding-right: 3rem;
  color: #032642;
}
.faq .accordion__item--title .icon {
  height: 2.25rem;
  width: 2.25rem;
  overflow: hidden;
  min-width: 2.25rem;
  display: block;
  background-color: #F26C38;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: absolute;
  top: 0.3125rem;
  right: 0.625rem;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .faq .accordion__item--title .icon {
    height: 2rem;
    width: 2rem;
    overflow: hidden;
    min-width: 2rem;
    top: 0;
  }
}
.faq .accordion__item--title .icon i {
  font-size: 1.375rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .faq .accordion__item--title .icon i {
    font-size: 1rem;
  }
}
.faq .accordion__item--title .icon i.fa-minus {
  display: none;
}
.faq .accordion__item--content {
  display: none;
}
.faq .accordion__item--content p {
  font-size: 1rem;
  font-weight: 400;
  color: #5E676D;
}
.faq .accordion__item.active .accordion__item--title {
  color: #F26C38;
  margin-bottom: 1rem;
}
.faq .accordion__item.active .accordion__item--title .icon i.fa-minus {
  display: block;
}
.faq .accordion__item.active .accordion__item--title .icon i.fa-plus {
  display: none;
}
.faq .accordion__item.active .accordion__item--title i {
  transform: rotate(180deg);
}
.faq .accordion__item:hover .accordion__item--title .icon {
  background-color: #FFBBA0;
}

/*# sourceMappingURL=style.css.map */
