*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

* {
  font-family: "Paralucent", sans-serif;
  font-weight: 300;
  padding: 0;
  margin: 0;
  font-size: 10px;
}

.pointer {
  cursor: pointer;
}

.page-wrapper {
  width: 100%;
  overflow: hidden;
}

/*displays*/

.flex {
  display: flex;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.column {
  flex-direction: column;
}

.flex.column.reverse {
  flex-direction: column-reverse;
}

.flex.row {
  flex-direction: row;
}

.flex.row.reverse {
  flex-direction: row-reverse;
}

.flex.jc-c {
  justify-content: center;
}

.flex-jc-fs {
  justify-content: flex-start;
}

.flex-jc-fe {
  justify-content: flex-end;
}

.flex.jc-sb {
  justify-content: space-between;
}

.flex.jc-se {
  justify-content: space-evenly;
}

.flex.jc-sa {
  justify-content: space-around;
}

.flex.ai-c {
  align-items: center;
}

.flex.ai-fs {
  align-items: flex-start;
}

.flex.ai-fe {
  align-items: flex-end;
}

/*Widts*/
.w100p {
  width: 100%;
}

@media (min-width: 1201px) {
  .desktop-w50p {
    width: 50%;
  }
}

@media (max-width: 1200px) {
  .mobile-column {
    flex-direction: column;
  }

  .mobile-column-reverse {
    flex-direction: column-reverse;
  }

  .desktop-w50p {
    width: 100%;
  }
}

/*Border Radius*/

.br-5 {
  border-radius: 5px;
}

.br-40 {
  border-radius: 40px;
}

/*---------------*/
.button {
  /* width: auto; */
  min-width: 224px;
  padding: 1.5rem 4rem;
  text-align: center;
  border-radius: 40px;
  display: inline-block;
  font-size: 18px;
  transition: 0.5s;
  border: 2px solid transparent;
}

.button.btn-center {
  margin: auto;
}

button {
  border: none;
}

.button.green-bg:hover {
  background-color: #fff;
  border: 2px solid var(--green);
  color: var(--green);
}

/*---------------*/
.wrapper {
  width: 89%;
  margin: auto;
  max-width: 1760px;
}

.wrapper._83p {
  width: 83%;
}

/* New style fixes */
.custom-text-shadow {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1001px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

@media (max-width: 1200px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .left,
  .right {
    width: 100% !important;
    max-width: none !important;
  }

  .button {
    font-size: 16px;
  }

  .wrapper {
    width: 90% !important;
  }
}

.splide {
  visibility: visible !important;
}
.loading-btn {
  color: transparent !important;
  background-image: url(./assets/loading.svg) !important;
  background-size: 20% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Backgrounds for home slider */
.background-1 {
  background-image: url("./assets/shipping2.png");
  background-size: 100% 100%;
  background-position: center;
  @media screen and (max-width: 1000px) {
    background-image: url("./assets/home-slider-imgs/shipping-mobile.png");
    background-size: cover !important;
    background-position: initial !important;
  }
}

.background-2 {
  background-image: url("./assets/truck.png");
  background-size: 100% 100%;
  background-position: center;
  @media screen and (max-width: 1000px) {
    background-image: url("./assets/home-slider-imgs/truck-mobile.png");
    background-size: cover !important;
    background-position: initial !important;
  }
}

.background-3 {
  background-image: url("./assets/plane.png");
  background-size: 100% 100%;
  background-position: center;
  @media screen and (max-width: 1000px) {
    background-image: url("./assets/home-slider-imgs/plane-mobile.png");
    background-size: cover !important;
    background-position: initial !important;
  }
}
