:root,
[data-bs-theme=light] {
  --bs-primary: #F07D00;
  --bs-secondary: #013566;
  --bs-primary-rgb: 240, 125, 0;
  --bs-secondary-rgb: 1, 53, 102;
  --bs-light-rgb: 246, 246, 246;
  --bs-dark-rgb: 23, 23, 23;
  --bs-body-font-family: "Manrope", sans-serif;
  --bs-body-color: #171717;
  --bs-body-color-rgb: 23, 23, 23; }

[data-bs-theme=dark] {
  color-scheme: dark; }

html,
body {
  scroll-behavior: auto !important; }

.wrapper {
  overflow: hidden; }

h1,
.h1 {
  font-size: 56px;
  font-weight: 800; }

h2,
.h2 {
  font-size: 45px;
  font-weight: 800; }

h3,
.h3 {
  font-size: 36px;
  font-weight: 700; }

h4,
.h4 {
  font-size: 24px;
  font-weight: 700; }

.fs-20 {
  font-size: 20px; }

.lead {
  font-size: 1.5rem; }

a {
  color: var(--bs-primary); }
  a:hover {
    color: #d77000; }

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

.img-w100 img {
  width: 100%; }

.lh-eq {
  line-height: 1em; }

.pt-6 {
  padding-top: 6rem !important; }

.pt-65 {
  padding-top: 9rem; }

.pb-6 {
  padding-bottom: 6rem !important; }

.pb-65 {
  padding-bottom: 9rem !important; }

.pb-7 {
  padding-bottom: 12rem !important; }

.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important; }

.mt-6 {
  margin-top: 6rem !important; }

.mb-6 {
  margin-bottom: 6rem !important; }

.mt-n1 {
  margin-top: -0.25rem !important; }

.mt-n5 {
  margin-top: -3rem !important; }

.mx-n2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important; }

.mx-n3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important; }

.mx-n4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important; }

.g-6, .gx-6 {
  --bs-gutter-x: 6rem; }

.mh-100vw {
  min-height: 100vw; }

@media (min-width: 768px) {
  .fs-md-20 {
    font-size: 20px; }

  .pb-md-65 {
    padding-bottom: 9rem !important; }

  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important; }

  .ms-md-n6 {
    margin-left: -6rem !important; }

  .me-md-n6 {
    margin-right: -6rem !important; }

  .mt-md-n5 {
    margin-top: -3rem !important; }

  .mh-md-auto {
    min-height: auto; }

  .w-md-auto {
    width: auto !important; } }
@media (min-width: 992px) {
  .fs-lg-20 {
    font-size: 20px; }

  .mx-lg-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important; }

  .px-lg-6 {
    padding-left: 6rem !important;
    padding-right: 6rem !important; }

  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important; } }
.bg-europe {
  background-image: url("../images/bg-europe-2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto; }

.bg-contact {
  background-image: url("../images/bg-contact.svg");
  background-repeat: no-repeat;
  background-position: 0 0; }

.bg-map {
  background-image: url("../images/map.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto; }

.bg-truck {
  background-image: url("../images/truck-bg.svg");
  background-repeat: no-repeat;
  background-position: left center; }

.p-m-0 p {
  margin: 0; }

.header {
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease; }
  .header .nav > ul {
    margin: 0;
    padding: 0; }
    .header .nav > ul > li {
      list-style: none;
      display: inline-block;
      margin-left: 1.5rem;
      position: relative; }
      .header .nav > ul > li:first-child {
        margin-left: 0; }
      .header .nav > ul > li a {
        display: block;
        font-weight: 700;
        color: var(--bs-body-color);
        text-decoration: none;
        position: relative;
        padding: .35rem 0; }
        .header .nav > ul > li a:after {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 0;
          opacity: 0;
          background-color: var(--bs-secondary);
          -webkit-transition: 0.4s ease;
          -moz-transition: 0.4s ease;
          -o-transition: 0.4s ease;
          transition: 0.4s ease; }
      .header .nav > ul > li a:hover:after,
      .header .nav > ul > li a.mPS2id-highlight-first:after {
        opacity: 1;
        height: 5px; }
      .header .nav > ul > li > ul {
        position: absolute;
        left: 0;
        top: 100%;
        background-color: rgba(255, 255, 255, 0.6);
        padding: 10px;
        margin: 0;
        border-radius: var(--bs-border-radius);
        font-size: 14px;
        width: auto;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(10px);
        -webkit-transition: 0.4s ease;
        -moz-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease; }
        .header .nav > ul > li > ul > li {
          display: block;
          list-style: none;
          white-space: nowrap; }
          .header .nav > ul > li > ul > li a {
            color: var(--bs-body-color);
            text-decoration: none; }
      .header .nav > ul > li.mini-mega > ul {
        position: absolute;
        left: 0;
        top: 100%;
        background-color: rgba(255, 255, 255, 0.6);
        padding: 10px;
        margin: 0;
        border-radius: var(--bs-border-radius);
        font-size: 14px;
        width: 610px;
        display: flex;
        opacity: 0;
        visibility: hidden;
        backdrop-filter: blur(10px); }
        .header .nav > ul > li.mini-mega > ul > li {
          list-style: none;
          min-width: 200px; }
          .header .nav > ul > li.mini-mega > ul > li > ul {
            margin: 0;
            padding: 0; }
            .header .nav > ul > li.mini-mega > ul > li > ul > li {
              list-style: none; }
              .header .nav > ul > li.mini-mega > ul > li > ul > li a {
                font-weight: normal;
                display: inline-block;
                color: var(--bs-body-color) !important; }
          .header .nav > ul > li.mini-mega > ul > li.column-2 ul {
            -webkit-column-count: 2;
            -moz-column-count: 2;
            column-count: 2;
            -webkit-column-gap: 10px;
            -moz-column-gap: 10px;
            column-gap: 10px; }
            .header .nav > ul > li.mini-mega > ul > li.column-2 ul li {
              display: block;
              width: 100%; }
      .header .nav > ul > li:hover > ul {
        visibility: visible;
        opacity: 1; }
  .header .lang {
    position: relative; }
    .header .lang .lang-cur {
      display: block;
      font-weight: 700;
      color: var(--bs-body-color);
      padding: .35rem 0; }
    .header .lang ul {
      position: absolute;
      right: 0;
      top: 100%;
      background-color: rgba(255, 255, 255, 0.6);
      padding: 10px;
      margin: 0;
      border-radius: var(--bs-border-radius);
      font-size: 14px;
      width: auto;
      opacity: 0;
      visibility: hidden;
      backdrop-filter: blur(10px);
      text-align: right;
      -webkit-transition: 0.4s ease;
      -moz-transition: 0.4s ease;
      -o-transition: 0.4s ease;
      transition: 0.4s ease; }
      .header .lang ul li {
        display: block;
        list-style: none;
        white-space: nowrap; }
        .header .lang ul li a {
          color: var(--bs-body-color);
          text-decoration: none; }
    .header .lang:hover ul {
      visibility: visible;
      opacity: 1; }
  .header.white.sticky {
    background-color: var(--bs-body-color); }
  .header.white .nav ul li a {
    color: #fff; }
  .header.white .buri path {
    fill: #fff; }
  .header.sticky {
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); }

.hph {
  height: 100px; }

.modal-header {
  border-bottom: none; }
  .modal-header .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    opacity: 1; }

.modal-body .nav {
  display: block; }
  .modal-body .nav > ul {
    padding: 0; }
  .modal-body .nav ul {
    margin: 0; }
    .modal-body .nav ul li {
      list-style: none;
      margin-bottom: 5px; }
      .modal-body .nav ul li a {
        display: inline-block;
        font-weight: 700;
        color: #fff;
        text-decoration: none;
        position: relative;
        padding: .35rem 0; }
        .modal-body .nav ul li a:after {
          content: '';
          position: absolute;
          left: 0;
          bottom: 0;
          width: 100%;
          height: 0;
          opacity: 0;
          background-color: var(--bs-primary);
          -webkit-transition: 0.4s ease;
          -moz-transition: 0.4s ease;
          -o-transition: 0.4s ease;
          transition: 0.4s ease; }
      .modal-body .nav ul li.current-menu-item a:after,
      .modal-body .nav ul li a:hover:after {
        opacity: 1;
        height: 5px; }

.footer {
  border-radius: 15px 15px 0 0; }
  .footer hr {
    border-top-color: #fff;
    opacity: .2; }
  .footer a {
    color: #fff; }
  .footer .nav ul {
    margin: 0;
    padding: 0; }
    .footer .nav ul li {
      list-style: none; }
      .footer .nav ul li a {
        color: #E4E4E4;
        text-decoration: none;
        display: inline-block;
        padding-left: 20px;
        background-image: url("../images/icon-list.svg");
        background-repeat: no-repeat;
        background-position: 0 center;
        -webkit-transition: 0.4s ease;
        -moz-transition: 0.4s ease;
        -o-transition: 0.4s ease;
        transition: 0.4s ease; }
        .footer .nav ul li a:hover {
          color: #fff;
          background-position: 3px center; }
  .footer .social a {
    display: inline-block;
    width: 30px;
    line-height: 30px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-right: 10px;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease; }
    .footer .social a:hover {
      background-color: rgba(255, 255, 255, 0.2); }

.title {
  position: relative; }
  .title:before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 6px;
    height: 100%;
    background: var(--bs-primary); }

.home-hero:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.256) 61.5%, rgba(0, 0, 0, 0) 100%); }
.home-hero .home-hero-elli {
  position: absolute;
  right: 0;
  top: 0;
  height: 120%;
  width: auto; }
.home-hero .content {
  z-index: 5; }
.home-hero .home-tracker {
  background-color: #fff;
  border-radius: 20px; }
  .home-hero .home-tracker .form-control {
    background-color: #F4F4F4;
    border-color: #F4F4F4; }

.home-slider {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0 !important; }
  .home-slider .slick-list,
  .home-slider .slick-track {
    height: 100%; }
  .home-slider .slick-dots {
    bottom: 30px; }
    .home-slider .slick-dots li {
      text-align: center;
      z-index: 10; }
      .home-slider .slick-dots li button {
        width: 14px;
        height: 14px;
        border: 1px solid #fff;
        border-radius: 50%; }
        .home-slider .slick-dots li button:before {
          content: '';
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #fff;
          opacity: 0;
          left: 3px;
          top: 3px; }
      .home-slider .slick-dots li.slick-active button:before {
        opacity: 1; }

.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  background: url("../images/slick-prev.svg") no-repeat 0 0; }
  .slick-prev:before,
  .slick-next:before {
    display: none; }

.slick-next {
  transform: rotate(180deg); }

.bg-video {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  clip: rect(0, auto, auto, 0); }
  .bg-video video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 177.77777778vh;
    min-width: 100%;
    min-height: 56.25vw; }

.slick-dots > li {
  display: inline-block; }
.slick-dots > li:only-child {
  display: none; }

.icon-box .icon {
  position: relative;
  top: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease; }
.icon-box:hover .icon {
  top: -10px; }

.ref-slider .slick-dots li,
.solution-slider .slick-dots li {
  width: 40px;
  height: 10px; }
  .ref-slider .slick-dots li button,
  .solution-slider .slick-dots li button {
    width: 36px;
    height: 10px;
    background-color: #E4E4E4;
    border-radius: 5px; }
    .ref-slider .slick-dots li button:before,
    .solution-slider .slick-dots li button:before {
      display: none; }
  .ref-slider .slick-dots li.slick-active button,
  .solution-slider .slick-dots li.slick-active button {
    background-color: var(--bs-primary); }

.solution-slider .slick-track,
.ref-slider .slick-track {
  display: flex; }
  .solution-slider .slick-track .slick-slide,
  .ref-slider .slick-track .slick-slide {
    height: inherit; }

.service-box .image {
  position: relative; }
  .service-box .image:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 15px;
    top: 15px;
    border-radius: 4px;
    background-color: var(--bs-primary);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease; }
  .service-box .image img {
    width: 100%;
    display: block;
    position: relative; }
.service-box ul li {
  list-style: none;
  margin-bottom: .5rem;
  position: relative; }
  .service-box ul li:before {
    content: '';
    width: 18px;
    height: 14px;
    display: block;
    background: url("../images/icon-li.svg") no-repeat 0 0;
    position: absolute;
    left: calc(-1rem - 12px);
    top: 5px; }
  .service-box ul li b, .service-box ul li strong {
    color: var(--bs-primary); }
.service-box:hover .image:before {
  left: 5px;
  top: 5px; }

.welcome-row > div:last-child {
  border-right: none !important; }

.why-content {
  margin-top: -6rem;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25); }

.home-ecommerce {
  background-image: url("../images/bg-e-commerce.png"); }

.homecommerce {
  max-width: 30vw; }
  .homecommerce .bg {
    animation: spin 32s linear infinite; }

@keyframes spin {
  100% {
    transform: rotate(360deg); } }
.diff-box {
  max-width: 450px; }
  .diff-box p {
    margin: 0; }

.service-slide {
  max-width: 90vw; }

.hero-tech {
  position: relative; }
  .hero-tech:before {
    content: '';
    width: 694px;
    max-width: 40vw;
    height: 1045px;
    background: url("../images/bg-tech-hero.svg") no-repeat 0 0/100% auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1; }

.accordion {
  border-radius: 0; }
  .accordion .accordion-item {
    border: none;
    background-color: transparent; }
    .accordion .accordion-item:first-of-type, .accordion .accordion-item:last-of-type {
      border-radius: 0; }
    .accordion .accordion-item .accordion-header {
      border-bottom: 1px solid var(--bs-body-color); }
      .accordion .accordion-item .accordion-header .accordion-button {
        font-size: 22px;
        font-weight: 700;
        box-shadow: none;
        background-color: transparent; }
        .accordion .accordion-item .accordion-header .accordion-button:focus {
          box-shadow: none; }
        .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
          background-color: transparent;
          color: var(--bs-primary); }

.accordion.accordion-2 {
  border-radius: 0; }
  .accordion.accordion-2 .accordion-item {
    border: none;
    background-color: transparent; }
    .accordion.accordion-2 .accordion-item:first-of-type, .accordion.accordion-2 .accordion-item:last-of-type {
      border-radius: 0; }
    .accordion.accordion-2 .accordion-item .accordion-header {
      border-bottom: 1px solid var(--bs-body-color); }
      .accordion.accordion-2 .accordion-item .accordion-header .accordion-button {
        font-size: 22px;
        font-weight: 700;
        box-shadow: none;
        background-color: transparent; }
        .accordion.accordion-2 .accordion-item .accordion-header .accordion-button:focus {
          box-shadow: none; }
        .accordion.accordion-2 .accordion-item .accordion-header .accordion-button:not(.collapsed) {
          background-color: transparent;
          color: var(--bs-primary); }

.cta {
  position: relative; }
  .cta:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 125, 0, 0.9); }

.optimized-logistics ul li {
  margin-bottom: 20px; }
  .optimized-logistics ul li::marker {
    color: var(--bs-primary); }

.ecommerce-image {
  position: relative; }
  .ecommerce-image > div {
    border-radius: var(--bs-border-radius) calc(var(--bs-border-radius) * 2) var(--bs-border-radius) var(--bs-border-radius); }
  .ecommerce-image:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    right: -30px;
    bottom: -30px;
    background-color: var(--bs-primary);
    border-radius: var(--bs-border-radius); }

.last-mile-logos {
  display: flex;
  align-items: center;
  justify-content: end; }
  .last-mile-logos img {
    max-height: 20px;
    width: auto;
    margin-left: 10px;
    max-width: 100px; }

a.solution-box {
  color: var(--bs-body-color);
  text-decoration: none;
  margin-bottom: 30px;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease; }
  a.solution-box:hover {
    background-color: #fff !important; }

.hubs-map {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 50vw; }

.hero-career {
  position: relative; }
  .hero-career .career-hero-img {
    width: 1230px;
    height: 1230px;
    max-width: 60vw;
    max-height: 60vw;
    background: url("../images/career-hero.svg") no-repeat center center/100% auto;
    position: absolute;
    top: -10%;
    left: 60%; }
    .hero-career .career-hero-img img {
      border-radius: 50%;
      max-width: 75%; }

.hero-service {
  position: relative;
  min-height: 70vh; }
  .hero-service:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.14) 42.5%, rgba(0, 0, 0, 0.064) 76%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.28) 42.5%, rgba(0, 0, 0, 0.128) 76%, rgba(0, 0, 0, 0) 100%); }

.description-image {
  position: relative; }
  .description-image:before {
    content: '';
    position: absolute;
    left: 90px;
    top: 70px;
    right: -35px;
    bottom: -35px;
    background-color: var(--bs-primary);
    border-radius: var(--bs-border-radius); }

.nav-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--bs-body-color);
  border-radius: 0;
  border-bottom: 1px solid var(--bs-body-color);
  padding: 20px 0;
  text-align: left; }
  .nav-link:hover {
    color: var(--bs-body-color); }
  .nav-link.active {
    color: var(--bs-primary); }

.tab-content {
  border: 1px solid var(--bs-primary);
  border-radius: 20px; }

.about-hero-container {
  width: 90%;
  position: relative; }

.about-hero-bg {
  position: absolute;
  left: 0;
  top: 0; }

.about-hero-image {
  -webkit-mask-image: url("../images/about-hero-mask.svg");
  mask-image: url("../images/about-hero-mask.svg");
  mask-repeat: no-repeat;
  mask-size: 100% auto;
  width: 90%; }

.about-hero-lg {
  font-size: 30px;
  font-weight: bold; }

.about-vision {
  box-shadow: 0 80px 0 -40px var(--bs-primary), 0 -80px 0 -40px var(--bs-primary); }

.milestones {
  overflow-x: auto;
  white-space: nowrap;
  padding-left: 60px; }
  .milestones .milestone {
    display: inline-block;
    width: 250px;
    white-space: normal;
    vertical-align: top; }
    .milestones .milestone .year {
      width: 90px;
      text-align: center;
      position: relative;
      left: -45px; }
      .milestones .milestone .year:after {
        content: '';
        width: 30px;
        height: 30px;
        background-color: var(--bs-primary);
        border-radius: 50%;
        border: 3px solid #fff;
        position: absolute;
        left: 50%;
        margin-left: -15px;
        bottom: -30px; }
    .milestones .milestone .content {
      border-left: 1px solid var(--bs-primary);
      border-top: 1px solid var(--bs-primary);
      margin-top: 15px;
      padding: 40px 20px; }

.bg-comp-image {
  background-color: rgba(0, 0, 0, 0.2); }

.service-hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: .75; }
  .service-hero-bg:before, .service-hero-bg:after {
    content: '';
    width: 300px;
    height: 100%;
    background-image: url("../images/service-hero-bg.svg");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 0 0;
    position: absolute;
    top: 0;
    bottom: 0; }
  .service-hero-bg:before {
    left: 0; }
  .service-hero-bg:after {
    right: 0;
    transform: rotate(180deg); }

.ch-1 {
  background-image: url("../images/contact-hero-1.svg"); }

.ch-2 {
  background-image: url("../images/contact-hero-2.svg"); }

.ch-3 {
  background-image: url("../images/contact-hero-3.svg"); }

.contact-social a {
  display: inline-block;
  width: 36px;
  line-height: 36px;
  border-radius: 3px;
  background-color: var(--bs-body-color);
  text-align: center;
  opacity: 1;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease; }
  .contact-social a:hover {
    opacity: .75; }

.post-box .cats a {
  display: inline-block;
  background-color: #E4E4E4;
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 12px;
  color: var(--bs-body-color);
  border-radius: var(--bs-border-radius);
  text-decoration: none; }
  .post-box .cats a:hover {
    background-color: var(--bs-primary);
    color: #fff; }

.form-control {
  border-radius: 7px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #E6E6E6;
  border-color: #E6E6E6; }

.btn {
  border-radius: 7px;
  font-weight: 700;
  padding: 12px 24px; }
  .btn svg {
    margin-left: .5rem; }
    .btn svg path {
      -webkit-transition: 0.3s ease;
      -moz-transition: 0.3s ease;
      -o-transition: 0.3s ease;
      transition: 0.3s ease; }

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary); }
  .btn-primary:hover {
    background-color: #d77000;
    border-color: #d77000; }
  .btn-primary:active {
    background-color: #bd6200 !important;
    border-color: #bd6200 !important; }
  .btn-primary:disabled, .btn-primary.disabled {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary); }

.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary); }
  .btn-secondary:hover {
    background-color: #01284d;
    border-color: #01284d; }
  .btn-secondary:active {
    background-color: #011b33 !important;
    border-color: #011b33 !important; }
  .btn-secondary:disabled, .btn-secondary.disabled {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary); }

.btn-dark svg path,
.btn-primary svg path {
  fill: #fff; }

.btn-outline-dark {
  background-color: rgba(255, 255, 255, 0.4); }
  .btn-outline-dark:hover svg path {
    fill: #fff; }

.btn-video {
  color: #fff; }
  .btn-video:hover {
    color: #eee; }

.wpcf7 form .wpcf7-response-output {
  border-radius: 7px;
  margin: 1.5em 0 1em;
  padding: .5em 1em;
  text-align: center; }

.checkbox .wpcf7-list-item {
  margin-left: 0; }
.checkbox .wpcf7-list-item-label {
  position: relative;
  line-height: 24px;
  padding: 0 0 0 20px;
  display: block;
  margin-left: 0; }
.checkbox .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--bs-body-color);
  border-radius: 4px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease; }
.checkbox .wpcf7-list-item-label:after {
  width: 16px;
  height: 16px;
  border-radius: 0;
  position: absolute;
  left: 0px;
  top: 4px;
  background: url("../images/checkbox.svg") no-repeat 0 0;
  opacity: 0;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease; }
.checkbox input[type="checkbox"] {
  display: none; }
.checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
  background: var(--bs-body-color); }
.checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  opacity: 1; }

@media (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 42px; }

  h2,
  .h2 {
    font-size: 38px; }

  h3,
  .h3 {
    font-size: 30px; }

  h4,
  .h4 {
    font-size: 22px; }

  .last-mile-logos {
    display: block; } }
@media (max-width: 991px) {
  .home-ecommerce {
    background-image: none; } }
@media (max-width: 767px) {
  .hph {
    height: 80px; }

  .home-slider .slick-dots {
    bottom: 90px; }

  .home-tracker {
    position: absolute;
    transform: translate(-50%, -50%) !important;
    top: 100%;
    left: 50%;
    width: 95%; }

  .bg-video video {
    width: auto; }

  .bg-map {
    background-image: url("../images/map.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 200% auto;
    padding-bottom: 90vw !important; }

  .service-box {
    max-width: 75vw; }
    .service-box.why-content {
      max-width: 100%; }

  .slick-slider .solution-box {
    max-width: 75vw; }

  .hubs-map {
    position: relative;
    right: 0;
    top: 0;
    max-width: 100%; }

  .hero-career .career-hero-img {
    max-width: 150vw;
    max-height: 150vw;
    position: relative;
    left: 10px;
    margin-top: -20px; }

  .service-hero-bg:before, .service-hero-bg:after {
    display: none; } }

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