:root {
  --primary: #00A99D;
  --primary-dark: #009e98;
  --secondary: #29ABE2;
  --ink: #333333;
  --muted: #6c6c6c;
  --soft: #f5f7fa;
  --map-bg: #ecf8fd;
  --white: #ffffff;
  --text: #696969;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Rubik", Sans-serif;
  color: var(--text);
  background-color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

a {
  text-decoration: none
}

.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.topbar {
  background: var(--primary);
  position: relative;
  z-index: 1050;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  padding: 10px 0;
}

.topbar a {
  color: #fff
}

.topbar a:hover {
  opacity: .8
}

.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  background: transparent;
  pointer-events: none;
  transition: all .35s ease;
}

.main-nav {
  margin: 0 auto;
  min-height: 58px;
  padding: 0;
  pointer-events: auto;
  transition: all .35s ease;
}

.main-header.is-sticky .main-nav {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08) !important;
}

.navbar-brand {
  margin-right: 10px
}

.main-nav .nav-link {
  position: relative;
  margin: 10px 5px !important;
  color: #555 !important;
  font-size: 17px;
  font-weight: 400;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--secondary) !important;
}

.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
}


.brand-seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  display: grid;
  place-items: center;
  position: relative;
  color: #169ec2;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-seal:after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid #71d3cf;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: #18a9a5;
  font-size: 10px;
  letter-spacing: .15px;
}

.brand-copy small {
  color: #1fa9df;
  font-size: 6px;
  margin-top: 4px;
  letter-spacing: .2px;
}


.tracking-nav-btn,
.tracking-submit {
  background: var(--secondary);
  color: #fff;
  border: 0;
  border-radius: 1px;
  font-weight: 600;
  padding: 10px 15px;
  transition: .25s ease;
}

.tracking-nav-btn:hover,
.tracking-submit:hover {
  background: #129cd1;
  color: #fff;
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  min-height: 700px;

  background: url("../images/hero-bg.webp");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

/* Keep hero content above overlay */
.hero-section>* {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 118px;
  max-width: 50%;
  z-index: 1;
}

.hero-content h1 {
  margin: 0 0 10px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.1em;
  color: var(--white);
}

.hero-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
}

.sparkle {
  position: absolute;
  z-index: 3;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 255, 255, .25);
  animation: twinkle 2.6s ease-in-out infinite;
}

.sparkle-one {
  right: 23.5%;
  top: 131px;
  font-size: 45px;
}

.sparkle-two {
  right: 29%;
  top: 106px;
  font-size: 27px;
  animation-delay: .65s;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: .65;
    transform: scale(.92) rotate(0)
  }

  50% {
    opacity: 1;
    transform: scale(1.08) rotate(12deg)
  }
}

.section-title {
  position: relative;
}

.section-kicker {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-kicker span {
  margin-left: 30px;
}

.section-kicker:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--secondary);
  top: 40%;
}

.section-kicker:after {
  content: '';
  position: absolute;
  background: url(../images/plane-icon.svg) no-repeat;
  width: 20px;
  height: 20px;
  background-position: center right;
  background-size: cover;
  top: 2%;
  -webkit-animation-name: float-bob-x3;
  animation-name: float-bob-x3;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes float-bob-x3 {
  0% {
    transform: translateX(30px)
  }

  50% {
    transform: translateX(5px)
  }

  100% {
    transform: translateX(30px)
  }
}

h2 {
  color: var(--primary);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h2 span {
  color: var(--secondary);
  font-style: normal;
}

.about-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.about-section .about-image-1 {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: rotate 45s normal linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.about-section .about-image {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .about-image-2 {
  position: absolute;
  width: 90%;
  max-width: 100%;
  height: auto;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 2; */
}

.about-section p {
  font-size: 18px;
  font-weight: 400;
}

.services-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(232, 237, 242, .34) 25%, transparent 25%) 0 0/190px 190px,
    linear-gradient(315deg, rgba(232, 237, 242, .27) 25%, transparent 25%) 0 0/215px 215px,
    #f7f8fa;
}

.service-card {
  position: relative;
  height: 100%;
  box-shadow: 0 3px 12px rgba(20, 50, 65, .025);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-image {
  width: 100%;
  height: auto;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.055)
}

.service-content {
  position: relative;
  background: #fff;
  margin-top: -160px;
  margin-left: 15px;
  padding: 25px 55px 30px 30px;
}

.service-content::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  background: var(--primary);
  content: "";
}

/* .service-content::after {
  position: absolute;
  bottom: 80px;
  right: -25px;
  width: 25px;
  border-bottom: 20px solid #00211f;
  border-left: 0 solid #fff0;
  border-right: 25px solid #fff0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  content: "";
} */

.service-content h3 {
  margin-bottom: 8px;
  font-size: 26px;
  font-weight: 600;
  color: var(--secondary);
}

.service-content p {
  font-size: 18px;
  font-weight: 400;
}

.service-icon {
  height: 80px;
  width: 80px;
  object-fit: contain;
  margin-right: 0;
  margin-left: auto;
  position: absolute;
  right: -25px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  z-index: 5;
  padding: 10px;
}

.why-section {
  position: relative;
  background: #fff;
}

/* .why-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 1%;
    width: 55%;
    height: 100%;
    background: url(../images/why-visual.webp);
    background-position: center center;
    background-repeat: no-repeat;
} */

.why-image img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  display: block;
}

.why-panel {
  background: var(--primary);
  padding: 35px 55px;
  color: #fff;
}

.why-panel h2 {
  color: var(--white);
}

.why-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-panel li {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}

.why-panel li i {
  margin-right: 5px;
  font-size: 15px;
}

.tracking-section {
  padding-top: 31px;
  padding-bottom: 38px;
}

.tracking-text {
  font-size: 18px;
  font-weight: 400;
}

.tracking-form {
  max-width: 556px;
  margin: 17px auto 0;
}

.tracking-form .form-control {
  border-radius: 0;
  border: 1px solid #ddd;
  min-height: 32px;
  box-shadow: none;
}

.tracking-form .form-control:focus {
  border-color: #85d7f1;
}

.tracking-submit {
  min-width: 88px;
}

.tracking-alert {
  max-width: 556px;
  margin: 7px auto 0;
  color: #c93e3e;
  text-align: left;
  font-size: 16px;
}

.locations-section {
  background: var(--map-bg);
}

.map-wrap {
  margin-top: 7px
}

.map-image {
  max-width: 100%;
}

.banner-one {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1030 / 615;
  min-height: auto;
  padding: 0;
  z-index: 0;
  overflow: visible;
}

.banner-one__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-attachment: scroll;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

/* Location wrapper */
.banner-one__location {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  z-index: 7;
}

/* =========================================
   Location Marker
========================================= */

.banner-one__location-single {
  position: absolute;
  width: 20px;
  height: 20px;
}

.banner-one__location-single .round-box {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background: #00A99D;
  border-radius: 50%;
}

.banner-one__location-single .round-box::before,
.banner-one__location-single .round-box::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: transparent;
  content: "";
  box-shadow: 0 0 0 0 rgb(255 255 255 / 60%);
  animation: ripple 3s infinite;
  transition: all .4s ease;
}

.banner-one__location-single .round-box::after {
  animation-delay: .6s;
}

.banner-one__location-single .round-box .bdr {
  position: absolute;
  top: -7px;
  left: -7px;
  bottom: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00A99D;
  border-radius: 50%;
}

/* Ripple */
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}


/* =========================================
   Location Positions
   Use percentages instead of fixed px
========================================= */

.banner-one__location-single.style1 {
  top: 30%;
  left: 18%;
}

.banner-one__location-single.style2 {
  top: 28%;
  left: 50%;
}

.banner-one__location-single.style4 {
  top: 62%;
  left: 55%;
}

.banner-one__location-single.style5 {
  top: 76%;
  left: 84%;
}

.banner-one__location-single.style6 {
  top: 88%;
  left: 92%;
}


/* =========================================
   Location Popup
========================================= */

.banner-one__location-single .content-box {
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);

  background: #fff;
  padding: 0 15px;
  border: 2px solid #00A99D;
  text-align: center;
  width: max-content;
  max-width: 220px;
  z-index: 100;
  margin: 0;
  border-radius: 2px;
}

/* Popup top arrow */
.banner-one__location-single .content-box::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);

  width: 65px;
  border-bottom: 25px solid #fff;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;

  z-index: 1;
}

.banner-one__location-single .content-box::after {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);

  width: 65px;
  border-bottom: 25px solid #00A99D;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;

  z-index: -1;
}

.banner-one__location-single .content-box .text-box {
  position: relative;
  display: block;
}

.banner-one__location-single .content-box .text-box h4 {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #29ABE2;
  margin: .5rem 0;
}


.counters-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 35%, rgba(255, 255, 255, .09) 1px, transparent 2px) 0 0/34px 34px,
    linear-gradient(90deg, #17b7df 0%, #25afe5 65%, #25aee8 100%);
  clip-path: polygon(0 0, 91.6% 0, 100% 100%, 0 100%);
  padding: 50px 0;
}

.counters-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
  background: url(../images/counter-v3-pattern.webp) no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: .1;
}

.counters-section:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 50px;
  background: #29abe2;
  clip-path: polygon(0 0, 89% 0, 100% 100%, 0% 100%);
  content: "";
  z-index: -1;
  display: block !important
}

.counter-item {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.counter-icon {
  position: relative;
  font-size: 50px;
}

.counter-icon:before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -6px;
  width: 90px;
  border-bottom: 90px solid rgb(255 255 255 / .25);
  border-left: 0 solid #fff0;
  border-right: 90px solid #fff0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.counter-content {
  position: relative;
}

.counter-item strong,
.counter-item b {
  color: #fff;
  font-size: 65px;
  font-weight: 600;
}

.counter-item .counter-content span {
  font-size: 20px;
  font-weight: 600;
  justify-content: start;
}

.contact-section {
  position: relative;
  padding-bottom: 0;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url(../images/contact-page-top-pattern.webp);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  opacity: .05;
}

.contact-lead {
  font-size: 18px;
  font-weight: 400;
}

.contact-card {
  background-color: #FFF;
  box-shadow: 0 12px 32px rgba(28, 65, 82, .045);
}

.contact-block {
  padding: 30px;
  border-right: 1px solid #e7e7e7;
}

.contact-block>i {
  color: var(--primary);
  font-size: 40px;
}

.contact-block h3 {
  margin: 6px 0 5px;
  color: var(--secondary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2em;
}

.contact-block p,
.contact-block a {
  color: var(--text);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.site-footer {
  background: #F2F2F2;
}

.footer-main {
  padding: 44px 0 38px;
}

.footer-logo {
  max-width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 10px;
}

.footer-social a {
  color: var(--secondary);
  font-size: 30px;
}

.copyright {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 12px;
}

.copyright a {
  color: #fff;
  font-weight: 600
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 85px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 1040;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Small laptop / large tablet */
@media (max-width: 1199.98px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .main-nav .nav-link {
    margin: 10px 2px !important;
    font-size: 15px;
  }

  .tracking-nav-btn {
    padding: 9px 12px;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-content {
    top: 105px;
    max-width: 58%;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-content p {
    font-size: 17px;
  }

  h2 {
    font-size: 44px;
  }

  .about-section .about-image {
    min-height: 430px;
  }

  .service-content {
    margin-top: -115px;
    margin-left: 12px;
    padding: 24px 34px 26px 25px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    font-size: 16px;
  }

  .why-panel {
    padding: 32px 40px;
  }

  .counter-item {
    gap: 25px;
  }

  .counter-item strong,
  .counter-item b {
    font-size: 54px;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .main-header {
    position: sticky;
    top: 0;
  }

  .main-nav {
    min-height: 68px;
    padding: 6px 0;
  }

  .navbar-brand img {
    width: auto;
    max-height: 70px;
  }

  .main-nav .navbar-collapse {
    background: #fff;
    margin-top: 6px;
    padding: 8px 0 14px;
  }

  .main-nav .navbar-nav {
    align-items: stretch !important;
  }

  .main-nav .nav-link {
    margin: 0 !important;
    padding: 9px 4px !important;
    font-size: 15px;
  }

  .main-nav .nav-link.active::after {
    left: 4px;
    right: auto;
    width: 30px;
    bottom: 4px;
  }

  .tracking-nav-btn {
    display: block;
    width: 100%;
    margin-top: 7px;
    text-align: center;
  }

  .hero-section {
    min-height: 520px;
    background-position: 65% bottom;
  }

  .hero-content {
    top: 92px;
    left: auto;
    width: 62%;
    max-width: 62%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    width: 100%;
    font-size: 16px;
  }

  .sparkle-one {
    right: 13%;
    top: 150px;
  }

  .sparkle-two {
    right: 20%;
    top: 122px;
  }

  h2 {
    font-size: 38px;
  }

  .about-section .about-image {
    min-height: 390px;
  }

  .about-section .about-image-1,
  .about-section .about-image-2 {
    max-width: 82%;
  }

  .services-section .row {
    --bs-gutter-y: 2rem;
  }

  .service-image {
    overflow: hidden;
  }

  .service-content {
    margin-top: -95px;
    margin-left: 12px;
    padding: 24px 32px 26px 24px;
  }

  .why-section .row {
    --bs-gutter-x: 0;
  }

  .why-section .col-md-6>img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
  }

  .why-panel {
    height: 100%;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
  }

  .counters-section {
    position: relative;
    padding: 42px 0;
  }

  .counter-item {
    gap: 18px;
  }

  .counter-icon {
    font-size: 42px;
  }

  .counter-icon:before {
    left: -15px;
    width: 72px;
    border-bottom-width: 72px;
    border-right-width: 72px;
  }

  .counter-item strong,
  .counter-item b {
    font-size: 45px;
  }

  .counter-item .counter-content span {
    font-size: 15px;
  }

  .contact-block {
    padding: 25px 18px;
  }

  .contact-block h3 {
    font-size: 21px;
  }

  .contact-block p,
  .contact-block a {
    overflow-wrap: anywhere;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .topbar {
    padding: 6px 0;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    text-align: center;
  }

  .topbar-inner>div:first-child {
    justify-content: center;
    gap: 5px 12px !important;
  }

  .topbar-inner a {
    overflow-wrap: anywhere;
  }

  .social-top {
    display: none !important;
  }

  .main-nav {
    min-height: 62px;
  }

  .hero-section {
    min-height: 440px;
    padding-top: 0;
    padding-bottom: 0;
    background-position: 67% center;
  }

  .hero-section .container {
    min-height: 440px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    padding: 45px 0;
  }

  .hero-content h1 {
    max-width: 600px;
    font-size: clamp(31px, 8vw, 40px);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-content p {
    width: 100%;
    max-width: 620px;
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 0;
  }

  .sparkle {
    display: none;
  }

  h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .section-kicker {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .about-section .about-image {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .about-section .about-image-1,
  .about-section .about-image-2 {
    max-width: 82%;
  }

  .about-section p,
  .tracking-text,
  .contact-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .services-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .services-section>.container-fluid {
    padding-left: 0;
    padding-right: 0;
    text-align: left !important;
  }

  .services-section .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 2rem;
  }

  .service-card {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-image {
    min-height: 300px;
  }

  .service-image img {
    min-height: 300px;
    object-fit: cover;
  }

  .service-content {
    margin-top: -72px;
    margin-left: 14px;
    margin-right: 0;
    padding: 24px 28px 25px 22px;
  }

  .service-content h3 {
    font-size: 22px;
  }

  .service-content p {
    margin-bottom: 0;
  }

  .why-section {
    padding-left: 0;
    padding-right: 0;
  }

  .why-section>.container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .why-section .col-12>img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .why-panel {
    min-height: 0;
    height: auto;
    padding: 34px 24px;
  }

  .why-panel li {
    font-size: 16px;
    line-height: 1.8;
  }

  .tracking-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .tracking-form {
    width: 100%;
    max-width: 100%;
  }

  .input-group .btn {
    z-index: 0;
  }

  .tracking-form .input-group {
    flex-wrap: nowrap;
  }

  .tracking-form .form-control {
    min-width: 0;
  }

  .locations-section {
    padding-bottom: 58px;
  }

  .locations-section .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .map-wrap {
    width: 100%;
    padding: 0;
    margin-top: 20px;
    overflow: visible;
  }

  .banner-one {
    width: 100%;
    aspect-ratio: 1030 / 650;
  }

  .banner-one__location-single {
    transform: scale(.62);
    transform-origin: center;
  }

  .counters-section {
    clip-path: none;
    padding: 18px 0;
  }

  .counters-section:before,
  .counters-section:after {
    clip-path: none;
  }

  .counter-item {
    min-height: 120px;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    padding: 22px 25px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .counter-item:last-child {
    border-bottom: 0;
  }

  .counter-icon {
    width: 70px;
    flex: 0 0 70px;
    text-align: center;
    font-size: 42px;
  }

  .counter-item strong,
  .counter-item b {
    font-size: 43px;
    line-height: 1;
  }

  .counter-item .counter-content span {
    display: block;
    margin-top: 5px;
    font-size: 16px;
  }

  .contact-card {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-block {
    padding: 26px 20px;
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }

  .contact-block:last-child {
    border-bottom: 0;
  }

  .contact-block>i {
    font-size: 35px;
  }

  .contact-block h3 {
    font-size: 21px;
  }

  .contact-block p,
  .contact-block a {
    font-size: 16px;
  }

  .footer-spacer {
    height: auto;
  }

  .footer-spacer iframe {
    display: block;
    width: 100%;
    height: 350px;
  }

  .footer-main {
    padding: 35px 15px 30px;
  }

  .footer-logo {
    width: auto;
    max-width: min(100%, 260px);
  }
}

/* Small phones */
@media (max-width: 575.98px) {
  .container {
    --bs-gutter-x: 1.5rem;
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .topbar-inner>div:first-child {
    flex-direction: column;
    gap: 2px !important;
  }

  .hero-section,
  .hero-section .container {
    min-height: 410px;
  }

  .hero-section {
    background-position: 64% center;
  }

  .hero-content {
    padding: 38px 0;
  }

  .hero-content h1 {
    font-size: clamp(28px, 8.7vw, 36px);
  }

  h2 {
    font-size: 29px;
  }

  .section-kicker span {
    margin-left: 28px;
  }

  .about-section .about-image {
    aspect-ratio: 1 / .95;
  }

  .about-section .about-image-1,
  .about-section .about-image-2 {
    max-width: 92%;
  }

  .service-image,
  .service-image img {
    min-height: 250px;
  }

  .service-content {
    margin-top: -55px;
    margin-left: 10px;
    padding: 22px 24px 24px 20px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .why-panel {
    padding: 30px 20px;
  }

  .banner-one {
    aspect-ratio: 1 / .72;
  }

  .banner-one__location-single {
    transform: scale(.50);
  }

  .banner-one__location-single.style1 {
    top: 29%;
    left: 17%;
  }

  .banner-one__location-single.style2 {
    top: 27%;
    left: 49%;
  }

  .banner-one__location-single.style4 {
    top: 61%;
    left: 55%;
  }

  .banner-one__location-single.style5 {
    top: 69%;
    left: 81%;
  }

  .banner-one__location-single.style6 {
    top: 84%;
    left: 89%;
  }

  .counter-item {
    min-height: 108px;
    gap: 20px;
    padding: 20px 18px;
  }

  .counter-icon {
    width: 58px;
    flex-basis: 58px;
    font-size: 36px;
  }

  .counter-icon:before {
    left: -10px;
    bottom: -3px;
    width: 60px;
    border-bottom-width: 60px;
    border-right-width: 60px;
  }

  .counter-item strong,
  .counter-item b {
    font-size: 38px;
  }

  .footer-spacer iframe {
    height: 300px;
  }
}

/* Very small phones */
@media (max-width: 399.98px) {

  .hero-section,
  .hero-section .container {
    min-height: 390px;
  }

  .hero-content h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 26px;
  }

  .service-image,
  .service-image img {
    min-height: 225px;
  }

  .service-content {
    margin-top: -42px;
  }

  .banner-one__location-single {
    transform: scale(.44);
  }

  .counter-item {
    gap: 14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .counter-icon {
    width: 50px;
    flex-basis: 50px;
    font-size: 32px;
  }

  .counter-item strong,
  .counter-item b {
    font-size: 34px;
  }

  .contact-block {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
