@font-face {
  font-family: Icon Font;
  src: url('../fonts/fa-brands-400.woff2') format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Icon Font 2";
  src: url('../fonts/fa-regular-400.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Icon Font 3";
  src: url('../fonts/fa-solid-900.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Icon Brands;
  src: url('../fonts/fa-brands-400.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Brands 400";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fa Solid 900";
  src: url('../fonts/fa-solid-900.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-black: #131c21;
  --grey: #898e91;
  --primary-red: #ea2f39;
  --white: white;
  --trasperent-grey: #151f3b0a;
  --primary-gray: #131c2199;
  --trasperent-white: #ffffff08;
  --transparent: #0000;
  --secondary-red: #dc0d06;
  --light-white: #f3f5f6;
  --untitled-ui--primary600: #7f56d9;
  --untitled-ui--white: white;
  --untitled-ui--primary700: #6941c6;
  --untitled-ui--primary100: #f4ebff;
  --untitled-ui--gray600: #475467;
  --untitled-ui--gray900: #101828;
  --untitled-ui--gray50: #f9fafb;
  --untitled-ui--gray400: #98a2b3;
  --untitled-ui--gray200: #eaecf0;
  --semi-white: #fff9;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--primary-black);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.5em;
}

h1 {
  color: var(--primary-black);
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1em;
}

h2 {
  color: var(--primary-black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2em;
}

h3 {
  color: var(--primary-black);
  margin-top: 10px;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2em;
}

h4 {
  color: var(--primary-black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2em;
}

h5 {
  color: var(--primary-black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  color: var(--primary-black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  color: var(--grey);
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.7em;
}

a {
  color: var(--primary-red);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

a:hover {
  color: var(--primary-red);
}

ul {
  grid-row-gap: 10px;
  background-color: var(--primary-black);
  color: var(--primary-red);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 400;
  list-style-type: disc;
  display: flex;
}

ol {
  grid-row-gap: 10px;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: decimal;
  display: flex;
}

img {
  max-width: 100%;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid var(--primary-red);
  width: 80%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
}

.button-primary {
  background-color: var(--primary-red);
  text-align: center;
  cursor: pointer;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 21px 32px;
  transition: all .3s;
}

.button-primary:hover {
  opacity: 1;
  color: var(--white);
  background-color: #dc0d06;
}

.button-primary.buy-button {
  justify-content: center;
  align-items: center;
  width: 200px;
  margin-top: 50px;
  display: flex;
}

.button-primary.light-button {
  background-color: var(--white);
  color: var(--primary-red);
  transition: color .3s, background-color .3s;
}

.button-primary.light-button:hover {
  background-color: var(--primary-black);
  opacity: 1;
  color: var(--white);
}

.button-primary.hidden-tablet {
  width: auto;
  padding-left: 44px;
  padding-right: 44px;
}

.button-primary.hidden-tablet.top {
  width: 200px;
}

.button-primary.submit {
  margin-top: 30px;
}

.button-primary.submit.oth {
  margin-top: 0;
}

.button-primary.full-width {
  width: 100%;
}

.home-slider-item-1 {
  background-image: linear-gradient(#000c, #000c), url('../images/Premier-Cover.jpg');
  background-position: 0 0, 50% 0;
  position: relative;
}

.home-slider-item-2 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/warehouse.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.banner-slider {
  flex: 1;
  height: 100vh;
  padding-left: 0;
}

.home-slider-item-3 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/warehouse_containers.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.banner-slider-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1020px;
  height: 100%;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.banner-first-button {
  background-color: var(--primary-red);
  text-align: center;
  letter-spacing: 1px;
  object-fit: fill;
  margin-top: 0;
  padding: 20px 35px;
  font-family: Poppins, sans-serif;
  transition: all .25s;
  overflow: visible;
}

.banner-first-button:hover {
  opacity: 1;
  color: var(--white);
  background-color: #dc0d06;
}

.banner-first-button.light-button {
  color: #131c21;
  background-color: #fafafa;
  margin-left: 20px;
  margin-right: 100px;
  font-family: Poppins, sans-serif;
  transition-duration: .3s;
}

.banner-first-button.light-button:hover {
  background-color: var(--primary-red);
  color: #fff;
}

.banner-first-button.light-button.additional-block-button {
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
  transition: color .3s, background-color .3s;
  position: absolute;
  inset: auto 40px 40px;
}

.banner-first-button.light-button.additional-block-button:hover {
  opacity: 1;
  background-color: #121c45;
}

.banner-first-button.oth {
  margin-top: 50px;
}

.banner-second-button {
  letter-spacing: 1px;
  background-color: #0000;
  border: 1px solid #ff3f39;
  padding: 20px 35px;
  transition: all .25s;
}

.banner-second-button:hover {
  background-color: var(--primary-red);
  opacity: 1;
  color: var(--white);
  border-color: #dc0d06;
}

.banner-buttons {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.slide-nav {
  color: #ff3f39;
  letter-spacing: 1px;
  white-space: normal;
  object-fit: fill;
  object-position: 50% 50%;
  background-color: #0000;
  border: 1px solid #000;
  border-top-color: #fff3;
  flex-wrap: nowrap;
  place-content: space-around center;
  align-items: flex-start;
  height: 60px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  font-size: 41px;
  font-style: normal;
  font-weight: 400;
  line-height: 2px;
  text-decoration: none;
  display: none;
  position: absolute;
  inset: auto 0% 0%;
  overflow: visible;
}

.left-arrow {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  width: 60px;
  height: 60px;
  transition: opacity .4s;
  display: none;
  inset: auto auto 0% 0%;
}

.left-arrow:hover {
  color: #0000;
  background-color: #0000;
}

.right-arrow {
  color: #fff;
  background-color: #0000;
  width: 60px;
  height: 60px;
  margin-left: 60px;
  display: none;
  inset: auto auto 0% 0%;
}

.left-arrow-slider {
  color: #161616;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0;
  padding: 20px 10px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 18px;
  transition: color .4s, background-color .4s;
  display: flex;
}

.left-arrow-slider:hover {
  color: #fff;
  background-color: #ff3f39;
}

.slider-right-arrow {
  background-color: #ff3f39;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0;
  font-family: "Icon Font 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: color .4s, background-color .425s;
  display: flex;
}

.slider-right-arrow:hover {
  color: #000;
  background-color: #fff;
}

.subscribe-form-flex {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.subscribe-form-input {
  background-color: #f3f5f6;
  border: 1px #000;
  border-radius: 0;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.subscribe-form-input:focus {
  color: var(--primary-black);
}

.our-location-text {
  color: var(--grey);
}

.home-container {
  border: 1px #000;
  flex-flow: wrap;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.home-container.testimonials-container {
  max-width: 1500px;
  margin-left: 0%;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.hightlight-dot-title {
  color: var(--primary-red);
  align-items: center;
  margin-bottom: 15px;
  margin-left: 2px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1em;
}

.hightlight-dot-title.oth {
  font-size: 36px;
}

.provide-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.provide-title.other-marg {
  margin-bottom: 0;
}

.provide-title.oth {
  margin-bottom: 60px;
}

.subtitle {
  background-color: var(--primary-red);
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  transform: skew(15deg);
}

.subtitle.banner-top-title {
  color: #fff;
  background-color: #0000;
  width: 150px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  transform: skew(15deg);
}

.subtitle.hover:hover {
  color: var(--primary-black);
}

.subtitle.mobile {
  display: none;
}

.services-item {
  z-index: 1;
  border: 6px solid var(--white);
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  transition: all .3s;
  display: flex;
  position: relative;
  box-shadow: 0 0 50px 7px #2c2d2e0f;
}

.trasport-title {
  color: #131c21;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.transport-images {
  max-width: 64px;
  margin: 0 auto 20px;
  position: static;
  top: -30px;
}

.transport-text {
  color: var(--grey);
  text-align: center;
  margin-top: 0;
}

.services-background {
  background-image: repeating-linear-gradient(-45deg, var(--primary-red) 99.3%, white);
  display: block;
  position: absolute;
  inset: 0%;
}

.home-logistics-section {
  color: red;
  width: 100%;
  max-width: 1720px;
  height: 440px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.title-background {
  background-color: var(--primary-red);
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  transform: skew(-15deg);
}

.title-background.bigger {
  margin-bottom: 0;
}

.text-span {
  padding-left: 20px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 14px;
}

.video-container {
  z-index: 10;
  background-image: url('../images/hydro-tek-pressure-washer_1.webp');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 730px;
  height: 100%;
  max-height: 534px;
  display: flex;
  position: relative;
  overflow: visible;
}

.media-section {
  z-index: 1;
  background-color: var(--primary-red);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 62%;
  max-width: 845px;
  height: 100%;
  max-height: 610px;
  margin-top: 0;
  margin-right: 15px;
  padding: 50px 113px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.media-section-title {
  z-index: 12;
  color: #fff;
  margin-top: 0;
  line-height: 1.2;
  position: relative;
}

.media-section-description {
  z-index: 1;
  color: #fff;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5em;
  position: relative;
}

.video-additional-image {
  width: 100%;
  max-width: 340px;
  position: absolute;
  inset: auto 20px -150px auto;
}

.video-additional-image.size {
  max-width: 300px;
  bottom: -130px;
}

.video-play-button {
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: auto;
  display: flex;
}

.contact-form {
  text-align: center;
  width: 50%;
  max-width: 780px;
  padding: 40px 35px;
  box-shadow: 0 0 50px 14px #0000000a;
}

.contact-form-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: 57px 57px 57px 57px auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 57px;
  grid-auto-columns: 1fr;
  margin-top: 40px;
  display: grid;
}

.contact-info {
  width: 50%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.base-form-field {
  color: var(--grey);
  background-color: #0000;
  border: 1px #000;
  height: 57px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-family: Poppins, sans-serif;
}

.base-form-field:focus {
  color: var(--primary-black);
}

.base-form-field::placeholder {
  color: var(--grey);
}

.textarea-element {
  background-color: #f3f5f6;
  border: 1px #000;
  border-radius: 0;
  min-width: 100%;
  max-width: 100%;
  height: 120px;
  min-height: 120px;
  max-height: 100%;
  margin-bottom: 0;
  padding: 15px 20px 10px;
  font-family: Poppins, sans-serif;
  position: static;
}

.get-in-touch {
  color: var(--primary-red);
  margin-top: 4px;
  font-size: 16px;
  font-weight: 800;
}

.contact-info-title {
  margin-bottom: 30px;
}

.icont {
  background-color: var(--primary-red);
  color: #fff;
  border-radius: 50%;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 13px;
  line-height: 1;
  display: flex;
}

.contact-info-container {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  display: flex;
}

.contact-info-socials {
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.form-social-icon {
  padding-right: 6px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 16px;
}

.link-3 {
  color: #041025;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color .4s;
  display: flex;
}

.link-3:hover {
  color: #ff403a;
  font-weight: 400;
}

.home-slider-item {
  background-color: #0000;
  margin-right: 30px;
  top: 0;
  bottom: 0;
  overflow: visible;
}

.home-2-post-slide {
  color: #fff;
  background-color: #0000;
  width: 100%;
  margin-right: 30px;
}

.home-2-slider {
  background-color: #0000;
  place-content: stretch flex-start;
  width: 100%;
  max-width: 1260px;
  height: 100%;
  max-height: none;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 130px;
  display: flex;
  position: static;
  overflow: hidden;
}

.home-2-slider.get-touch-content {
  padding-bottom: 0;
}

.left-arrow-2 {
  background-color: #0000;
  width: 60px;
  height: 60px;
  inset: auto auto 0% 0%;
}

.left-arrow-2.hidden-slider-arrow {
  display: none;
}

.right-arrow-2 {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-left: 60px;
  inset: auto auto 0% 0%;
}

.right-arrow-2.hidden-slider-arrow {
  display: none;
}

.home-2-slider-container {
  color: #0000;
  background-color: #0000;
  width: 100%;
  max-width: 1720px;
  height: 100%;
  max-height: none;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  overflow: visible;
}

.home-2-slider-container.space-0 {
  margin-bottom: 0;
}

.slide-item-container {
  background-color: #fff;
  flex-flow: column;
  flex: none;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  display: flex;
  box-shadow: 4px 4px 50px #0000000d;
}

.paragraph {
  color: #131c2199;
  text-align: left;
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow: visible;
}

.paragraph.about-slider-item-description {
  color: #ffffffb3;
  text-align: left;
}

.paragraph.item-location-paragraph {
  margin-bottom: 0;
}

.paragraph.item-location-paragraph.dark-text {
  color: #131c21;
}

.slide-item-info {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.cpt-author {
  flex-direction: row;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.cpt-author.spacing {
  margin-top: auto;
  padding-left: 0;
  padding-right: 0;
}

.post-author-name {
  color: #131c21;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  display: flex;
}

.post-author-icon {
  background-image: url('../images/ayo-ogunseinde-6W4F62sN_yI-unsplash-1-1-1-100x100_1ayo-ogunseinde-6W4F62sN_yI-unsplash-1-1-1-100x100.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 20px;
}

.home-2-slider-background {
  z-index: -1;
  background-color: #ebebeb;
  width: 100%;
  height: 100%;
  max-height: 570px;
  position: absolute;
  inset: auto 0% 0%;
}

.home-2-slider-background.home-2-slider-background-image {
  background-image: url('../images/blured_boxes.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter {
  color: #131c21;
  text-align: center;
  font-size: 45px;
  display: block;
}

.counter-title {
  color: #131c21;
  text-align: center;
  margin-bottom: 30px;
}

.progressbar-item {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.home-testimonials {
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.home-testimonials.oth {
  padding-top: 60px;
  padding-bottom: 20px;
}

.home-testimonials.oth.oth2 {
  padding-top: 150px;
}

.home-testimonials.oth.oth3 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.home-testimonials.oth10 {
  padding-bottom: 100px;
}

.testimonials-title {
  color: #131c21;
  padding-right: 20px;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.home-testimonials-item-rev {
  background-color: #fff;
  border: 1px solid #0000000f;
  border-left: 3px solid #ff3f39;
  margin-bottom: 20px;
  padding: 40px 20px 40px 60px;
  box-shadow: 7px 7px 50px #0000001a;
}

.home-testimonials-item-rev.dark-background {
  background-color: #262b31;
  margin-bottom: 30px;
  position: relative;
}

.home-testimonials-item-author {
  margin-top: 20px;
  display: flex;
}

.author-photo {
  border-radius: 50%;
  width: 65px;
  height: 65px;
  margin-right: 30px;
}

.author-photo.author-1 {
  background-image: url('../images/img-5-63x63_1img-5-63x63.png');
  background-position: 50%;
  background-size: cover;
}

.author-photo.author-2 {
  background-image: url('../images/img-3-63x63_1img-3-63x63.png');
  background-position: 50%;
  background-size: cover;
}

.author-info.oth {
  margin-top: 50px;
}

.author-info-position {
  color: #131c2199;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.slide-nav-3 {
  display: none;
}

.slide-nav-3.hidden-navigation {
  overflow: hidden;
}

.home-testimonials-container {
  width: 100%;
  margin-left: 0;
  overflow: visible;
}

.home-pricing-plans {
  padding-left: 15px;
  padding-right: 15px;
}

.pricing-container {
  flex-direction: column;
  width: 100%;
  max-width: 1750px;
  height: 100%;
  max-height: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: visible;
}

.pricing-item {
  z-index: 16;
  background-color: #fff;
  align-items: center;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: 0;
}

.pricing-item.pricing-packs-item {
  background-color: #0000;
  top: auto;
  bottom: 100px;
}

.pricing-item.home-2-pricing-items {
  background-color: #0000;
  top: auto;
  bottom: -250px;
}

.pricing {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  width: 33.333%;
  height: 70%;
  max-height: 550px;
  padding-top: 20px;
  padding-bottom: 45px;
  display: flex;
  box-shadow: 7px 7px 50px #00000014;
}

.pricing.price-item-center {
  z-index: 10;
  background-color: #fff;
  border-top: 4px solid #ff3f39;
  height: auto;
  min-height: auto;
  max-height: none;
  padding-top: 65px;
  padding-bottom: 40px;
  position: static;
}

.pricing.price-item-center.home-4-pricing-item-central {
  border-top-width: 6px;
  padding-bottom: 65px;
}

.pricing.price-item-center.home-4-pricing-item-central:hover {
  border-top-style: solid;
}

.pricing.home-2-pricing-item {
  border-top: 7px solid #000;
  max-height: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}

.pricing.home-4-pricing-item {
  height: auto;
  max-height: none;
  transition: padding .3s;
  position: relative;
}

.pricing.home-4-pricing-item:hover {
  z-index: 100;
  border-top: 6px solid var(--primary-red);
  padding-top: 65px;
  padding-bottom: 65px;
}

.pricing.centered {
  border-top: 7px solid var(--primary-red);
  box-shadow: none;
  background-color: #f3f5f6;
  height: 100%;
  padding-bottom: 40px;
}

.pricing-title {
  margin-bottom: 30px;
  display: flex;
}

.pricing-value {
  color: #334566;
  margin-bottom: 30px;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}

.pricing-value.home-4-pricing-value {
  color: var(--primary-red);
}

.pricing-time {
  color: #71777b;
  margin-bottom: 40px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}

.pricing-time.home-4-pricing-time {
  color: var(--primary-red);
}

.price-title-popular {
  color: var(--primary-red);
  align-items: flex-end;
  padding-left: 10px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
}

.price-title-popular.home-2-pricing-popular {
  color: #041026;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.pricing-background {
  z-index: 1;
  background-color: #000;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
  display: none;
  position: relative;
  bottom: -115px;
  left: auto;
  right: auto;
  overflow: visible;
  box-shadow: 1px 1px 3px #000;
}

.pricing-additional-image-1 {
  position: absolute;
  inset: auto auto -80px 60px;
}

.pricing-additional-image-2 {
  position: absolute;
  inset: auto 60px -80px auto;
}

.subscribe-newsletter {
  background-color: #ff3f39;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 15px;
  display: flex;
}

.subscribe-newsletter.home-2-subscribe {
  background-color: #ebebeb;
}

.form-block {
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin-bottom: 0;
  display: flex;
}

.footer {
  background-color: #000;
  padding-left: 15px;
  padding-right: 15px;
}

.footer-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 50px;
  display: flex;
}

.footer-lists-title {
  color: #fff;
  text-align: left;
  margin-bottom: 30px;
}

.footer-links {
  opacity: .6;
  color: #fff;
  margin-bottom: 20px;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .3s;
  display: block;
}

.footer-links:hover {
  opacity: 1;
  color: #fff;
}

.footer-logo-image {
  width: 150px;
  height: auto;
}

.address {
  color: #9fa3a5;
  margin-top: 27px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
}

.footer-social-link {
  color: #fff;
  background-color: #0000;
  margin-right: 15px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 17px;
  line-height: 1;
  text-decoration: none;
  transition: color .3s;
}

.footer-social-link:hover {
  color: var(--primary-red);
}

.footer-item-container {
  width: 17%;
}

.footer-item-container.item-logo {
  width: 31%;
  padding-right: 20px;
}

.footer-item-container.oth, .footer-item-container._2 {
  width: 24%;
}

.testimonials-slider {
  flex-direction: row;
  width: 100%;
  max-width: 1500px;
  height: 100%;
  max-height: 450px;
  display: flex;
  overflow: hidden;
}

.banner-logo-image {
  width: 100px;
}

.main-banner-section {
  background-image: linear-gradient(#000c, #000c), url('../images/Premier-Cover.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 120px;
  font-family: Poppins, sans-serif;
  display: flex;
  position: relative;
}

.main-banner-section.banner {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/Cargo_ship.jpg');
  background-repeat: repeat, no-repeat;
}

.main-banner-section.padding {
  padding-bottom: 80px;
}

.main-banner-section.repairserv {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/Main-Cover_1.webp');
  background-position: 0 0, 50%;
}

.top-banner-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  display: flex;
}

.top-banner-container.width {
  max-width: 1000px;
}

.top-banner-title-background {
  background-color: #ff3f39;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  height: 30px;
  display: flex;
  transform: skew(-15deg);
}

.banner-bottom-menu {
  z-index: 3;
  border-top: 1px solid #ffffff26;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: -80px;
  display: flex;
  position: sticky;
  inset: 93px auto auto;
  box-shadow: 7px 7px 50px #00000014;
}

.bottom-menu {
  z-index: 9999;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.buttom-menu-link {
  color: #f5f5f5;
  letter-spacing: 1px;
  align-items: center;
  height: 75px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.buttom-menu-link.w--current {
  border-top: 4px solid var(--primary-red);
  color: var(--primary-red);
}

.shipments-title {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grey-large-text {
  color: #131c21b3;
  margin-top: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67em;
}

.grey-large-text.maxw {
  max-width: 790px;
  margin-bottom: 30px;
}

.grey-large-text.width {
  text-align: center;
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.shipments-content {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.columns-6 {
  margin-bottom: 120px;
}

.shipments-progressbar-item {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 33.333%;
  padding: 58px 40px;
  display: flex;
  box-shadow: 7px 7px 50px #00000014;
}

.shipments-progressbar-item.central-item {
  z-index: 10;
  background-color: #fff;
  padding: 85px 40px;
}

.shipments-progressbar-item.central-item.distribution-feature {
  padding-top: 80px;
  padding-bottom: 80px;
}

.shipments-progressbar-item.distribution-feature {
  padding: 50px;
}

.history-section {
  background-color: #131c21;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.history-title {
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
}

.history-item-contents {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.history-slider {
  color: #000;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.history-item-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mask-2 {
  background-color: #131c21;
  width: 100%;
  height: 100%;
  padding-top: 40px;
}

.history-slide {
  height: 100%;
  margin-right: 20px;
  overflow: visible;
}

.history-slide-title {
  color: #fff;
  margin-top: 0;
  margin-bottom: 30px;
}

.history-slider-item-image {
  object-fit: cover;
  width: 460px;
  height: 360px;
  margin-right: 60px;
}

.higlight-text {
  color: #ff3e39;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.slider-additional-image {
  z-index: 100;
  display: none;
  position: absolute;
  inset: auto auto -80px 40px;
}

.optimization-logistics {
  margin-bottom: 60px;
  padding: 40px 15px;
}

.partners-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

.partners-section.home-2-partners {
  margin-top: 0;
  margin-bottom: 0;
}

.partners-section.oth {
  margin-top: 0;
}

.partners-section.oth.oth3 {
  margin-top: 80px;
  margin-bottom: 0;
}

.partners-section-container {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.partners-section-container.oth {
  justify-content: center;
  align-items: center;
}

.partners-section-container.oth.bar {
  justify-content: center;
  align-items: center;
  margin-top: 33px;
  padding-left: 20px;
  padding-right: 20px;
}

.partners-section-container.oth.oth2 {
  margin-bottom: 76px;
}

.partners-section-container.oth.oth3 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 53px;
}

.partners-section-container.oth2 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: center;
  align-items: center;
}

.partner-link {
  filter: brightness(0%) invert();
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  transition: filter .2s;
  display: flex;
}

.partner-link:hover {
  filter: brightness();
}

.partner-link.oth {
  filter: brightness(0%) invert();
  padding-left: 40px;
}

.partner-link.oth:hover {
  filter: none;
  color: var(--primary-red);
}

.partner-link.oth3 {
  margin-left: 54px;
}

.partner-link.reg {
  filter: brightness(0%);
  flex-flow: wrap;
  flex: 0 auto;
}

.partner-link.reg:hover {
  filter: none;
}

.optimization-logistics-container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-title {
  align-items: center;
  width: 50%;
  display: flex;
}

.bottom-subscribe-form {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.progressbar-image {
  height: 165px;
}

.form-select-container {
  background-color: #f3f5f6;
  position: relative;
}

.input-container {
  background-color: #f3f5f6;
}

.support-phone {
  color: #898e91;
  text-decoration: none;
  transition: all .3s;
}

.support-phone:hover {
  opacity: 1;
  color: var(--primary-red);
}

.support-line {
  color: #898e91;
  display: inline;
}

.progressbar-line-container {
  width: 100%;
  position: relative;
}

.progressbar-base-line {
  color: #efefef;
  background-color: #efefef;
  width: 100%;
  height: 5px;
}

.progressbat-line-progress {
  color: #131c21;
  background-color: #ff3f39;
  justify-content: flex-end;
  align-items: flex-start;
  height: 4px;
  display: flex;
  position: absolute;
}

.progressbat-line-progress.black-progress-line {
  background-color: #131c21;
  width: 30%;
}

.progressbat-line-progress.black-progress-line.first-progress-line {
  width: 30%;
}

.progressbat-line-progress.black-progress-line {
  height: 5px;
}

.progressbat-line-progress.first-progress-line, .progressbat-line-progress.second-progress-line, .progressbat-line-progress.third-progress-line {
  width: 0%;
}

.progressbar-line-item {
  flex-direction: column;
  justify-content: space-between;
  height: 47px;
  margin-bottom: 30px;
  display: flex;
}

.progressbar-procent {
  color: #131c21;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  left: auto;
  right: -10px;
}

.progressbar-procent.white-text {
  color: #fff;
  line-height: 1.9;
}

.progressbar-lines-container {
  padding-left: 15px;
  padding-right: 15px;
}

.optimization-logistics-title {
  padding-left: 15px;
  padding-right: 20px;
}

.photos-section-image {
  object-fit: cover;
  width: 25%;
  height: 25vw;
}

.subtitle-grey {
  color: #1b1e23b3;
  text-align: center;
  max-width: 690px;
  margin-top: 10px;
  margin-bottom: 60px;
  font-size: 18px;
  line-height: 1.7em;
}

.subtitle-grey.services-info-text {
  margin-bottom: 0;
}

.subtitle-grey.complete-control-title-text {
  width: 100%;
  max-width: 950px;
}

.subtitle-grey.width {
  max-width: 750px;
  margin-top: 0;
  margin-bottom: 0;
}

.slide-item-link-button {
  color: #131b21;
  letter-spacing: 1.28px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .4s;
  position: absolute;
  bottom: 50px;
}

.slide-item-link-button:hover {
  opacity: .7;
}

.slide-item-link-button.more-info-link {
  color: var(--primary-red);
  position: static;
}

.slider-arrow-icon {
  padding-left: 10px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 14px;
}

.logistic-solutions-item {
  width: 100%;
}

.logistic-solutions-item.central-item {
  margin-top: -25px;
}

.logistic-solution-item-info {
  z-index: 10;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 254px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
}

.logistic-solution-image {
  object-fit: cover;
  width: 100%;
  height: 255px;
}

.logistic-solution-image.central-image {
  object-fit: cover;
  height: 280px;
}

.help-businesses {
  flex-direction: column;
  align-items: center;
  padding-bottom: 130px;
  display: flex;
}

.progressbar-line-item-title {
  color: #131c21;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.mission-top-banner {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/Cargo_ship.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 235px;
  padding-bottom: 230px;
  display: flex;
  position: relative;
}

.our-mission-banner-title {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 80px;
  line-height: 1.2;
  display: inline-block;
}

.icon-5 {
  flex: 0 auto;
  margin-left: 5px;
  margin-right: 0;
  font-size: 11px;
  position: static;
}

.mission-info-drive {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
}

.mission-info-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.mission-info-content.oth {
  order: 0;
}

.our-mission-image {
  object-fit: cover;
  flex: none;
  width: 40%;
  max-height: 420px;
}

.mossion-info-drive-content {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  padding-left: 15px;
  padding-right: 40px;
  display: flex;
}

.mission-info-drive-video {
  background-image: url('../images/pallet_rack.jpeg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: cover;
  width: 50%;
  min-height: 327px;
  margin-left: 40px;
  margin-right: 15px;
  display: flex;
}

.sign-image {
  width: 100%;
  max-width: 170px;
  height: auto;
  margin-left: auto;
  position: static;
  top: 10px;
}

.contact-us-map {
  height: 490px;
}

.contact-location {
  width: 100%;
  margin-bottom: -200px;
  position: relative;
  top: -200px;
}

.contact-location-item {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  box-shadow: 7px 7px 50px #00000014;
}

.contact-location-item.central-item {
  z-index: 10;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.location-info {
  color: #131c2199;
  text-align: center;
  max-width: 250px;
  margin-bottom: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.location-container {
  z-index: 5;
  align-items: center;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.contact-location-container {
  padding-left: 0;
  padding-right: 0;
}

.location-flag {
  margin-bottom: 10px;
}

.contact-location-bacground {
  z-index: 1;
  justify-content: space-between;
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  bottom: 100px;
  left: 0%;
  right: 0%;
}

.subscribe-container {
  justify-content: space-between;
  width: 100%;
  max-width: 1230px;
  display: flex;
}

.list-accordion {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.shipment-progressbar-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.accordion-item-content-text {
  color: #6c7275;
  margin-bottom: 0;
  padding: 10px 40px 40px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.bottom-menu-links {
  font-weight: 500;
  line-height: 1.2;
}

.single-blog-title-container {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.single-blog-content {
  justify-content: center;
  align-items: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 15px 40px;
  display: flex;
}

.single-blog-title {
  color: #fff;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  display: flex;
  position: relative;
}

.blog-title-author-name {
  text-align: center;
  text-transform: capitalize;
  font-family: Poppins, sans-serif;
}

.blog-title-author-image {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.blog-title-info {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-title-author {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.blog-details-title {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  line-height: 1.2;
}

.blog-details-title.size {
  color: var(--white);
  max-width: 750px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.blog-details-data {
  text-align: center;
  font-family: Poppins, sans-serif;
}

.blog-socials-links {
  color: #000;
  font-family: "Fa brands 400", sans-serif;
  text-decoration: none;
  transition: color .2s;
}

.blog-socials-links:hover {
  color: #ff3f39;
}

.blog-socials-links.bottom-social-link {
  border: 1px solid #00000014;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "Fa Brands 400", sans-serif;
  line-height: 1em;
  transition-property: all;
  transition-duration: .3s;
  display: flex;
}

.blog-socials-links.bottom-social-link:hover {
  color: #fff;
  background-color: #ff3f39;
}

.single-blog-socials-links {
  border-top: 1px solid var(--trasperent-grey);
  justify-content: center;
  align-items: center;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  display: flex;
}

.feature-block-item {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.home-feature-block-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-contact-info {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.counter-container {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.counter-container.margin-bottom {
  margin-bottom: 80px;
}

.counter-item {
  width: 100%;
}

.socials-link-item {
  margin-right: 50px;
}

.businesses-graphic {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.businesses-graphic.oth {
  justify-content: space-around;
  align-items: center;
  margin-top: 75px;
}

.businesses-graphic-image {
  align-self: center;
  max-width: 40%;
}

.businesses-graphic-image.oth {
  order: 1;
  margin-top: 0;
}

.businesses-graphic-content {
  align-self: center;
  width: 50%;
  margin-bottom: 40px;
}

.businesses-graphic-content.oth {
  margin-bottom: 0;
}

.feature-block-container {
  width: 100%;
  margin-top: 20px;
  position: relative;
}

.top-baneer-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.home-3-slider-container-3 {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.slider {
  background-color: #0000;
  height: auto;
}

.slider-left-arrow-icon {
  color: #fff;
  background-color: #ff3f39;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 20px 10px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 17px;
  display: flex;
}

.slider-left-arrow-icon.black-slider-arrow {
  background-color: #000;
  transition: all .3s;
}

.slider-left-arrow-icon.black-slider-arrow:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

.left-arrow-4 {
  width: 60px;
  inset: auto auto 60px 0%;
}

.slider-right-arrow-icon {
  color: #000;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 20px 10px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 17px;
  display: flex;
}

.slider-right-arrow-icon.hover {
  transition: all .3s;
}

.slider-right-arrow-icon.hover:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

.right-arrow-4 {
  width: 60px;
  margin-left: 60px;
  inset: auto auto 60px 0%;
}

.home-3-slider-3-item-container {
  display: flex;
}

.slider-image-container {
  justify-content: center;
  align-items: center;
  width: 45%;
  margin-left: 60px;
  display: flex;
}

.slider-content-container {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px;
  display: flex;
}

.slider-background {
  position: absolute;
  inset: 60px 0%;
  box-shadow: 7px 7px 50px #00000012;
}

.slider-background.white-background {
  background-color: #fff;
}

.home-3-slide-image {
  object-fit: cover;
  width: 100%;
  height: 650px;
}

.slide-nav-5 {
  display: none;
}

.home-3-slider-3-slide-item, .mask-3 {
  height: 100%;
}

.slider-content-title {
  margin-bottom: 30px;
  font-size: 45px;
  line-height: 1.2;
}

.slider-content-buttons {
  flex-flow: column wrap;
  margin-top: 30px;
  display: flex;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  margin-left: 0%;
  padding-left: 15px;
  padding-right: 15px;
}

.partner-container {
  display: flex;
}

.testimonials-background-text {
  color: #131c211a;
  padding-left: 5%;
  font-size: 200px;
  position: absolute;
  inset: auto 0% 25%;
}

.testimonials-background-text.home-3-testimonials-backgroud {
  z-index: 1;
  color: #efefef1a;
  width: 100%;
  font-weight: 700;
}

.testimonials-help-businesses {
  position: relative;
}

.background-image-1 {
  width: 25%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.background-image-2 {
  width: 20%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.help-businesses-background {
  z-index: -1;
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 60px;
  left: 0%;
  right: 0%;
}

.home-3-slider {
  background-color: #0000;
  height: 83vh;
}

.home-2-slide-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 83vh;
  display: flex;
}

.mask-banner {
  height: 85vh;
}

.home-2-slider-arrow-left {
  color: #fff;
  background-color: #131c21;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 17px;
  transition: background-color .3s;
  display: flex;
}

.home-2-slider-arrow-left:hover {
  color: #131c21;
  background-color: #f3f5f6;
}

.left-arrow-5 {
  inset: auto auto 0% 0%;
}

.home-2-slider-arrow-rright {
  color: #000;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 17px;
  transition: background-color .3s;
  display: flex;
}

.home-2-slider-arrow-rright:hover {
  background-color: var(--primary-black);
  color: var(--white);
}

.home-2-slider-arrow-rright.home-2-slider-arrow-rright-red {
  color: #fff;
  background-color: #ff0606;
}

.home-2-slider-arrow-rright.home-2-slider-arrow-rright-red:hover {
  background-color: #000;
}

.right-arrow-5 {
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  inset: auto auto 0% 60px;
}

.right-arrow-5:hover {
  background-color: var(--primary-black);
}

.home-2-slide-title {
  color: #fff;
  text-align: center;
  letter-spacing: -.06px;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  line-height: 1.2em;
}

.black-title-dot {
  color: #000;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: 700;
}

.home-3-slider-item-1 {
  background-image: url('../images/Vector-Smart-Object1-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.home-3-slider-item-2 {
  background-image: url('../images/img-copy-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-3-slider-item-3 {
  background-image: url('../images/Vector-Smart-Object1-1.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-3-short-info {
  background-color: #1b1e23;
}

.short-info-container {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 40px;
}

.short-info-images {
  z-index: 10;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 40px;
  display: flex;
  position: relative;
}

.info-image-container {
  width: 33%;
  padding-left: 15px;
  padding-right: 15px;
}

.image-background {
  justify-content: center;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
  display: flex;
}

.image-background.image-background-1 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/airplain.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.image-background.image-background-2 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/Cargo_ship.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.image-background.image-background-3 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/truck.jpeg');
  background-position: 0 0, 75%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.home-3-under-navigation-section {
  border-bottom: 1px solid #0000001a;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.phone-email, .navigation-socials-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.under-navigation-social-link {
  color: #000;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 12px;
  text-decoration: none;
}

.under-navigation-social-link.icon-typo {
  color: #ff3f39;
  padding-right: 25px;
  font-size: 20px;
  transition: opacity .3s;
}

.under-navigation-social-link.white-and-hover {
  color: var(--white);
}

.under-navigation-social-link.white-and-hover:hover {
  color: var(--primary-red);
}

.bold-text-26 {
  color: #1b1e23;
  letter-spacing: .3px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}

.bold-text-26:hover {
  color: #ff3f39;
}

.under-navigation-phone {
  font-family: Raleway, sans-serif;
  font-size: 15px;
}

.under-navigation-email {
  color: #1b1e23;
  font-family: Raleway, sans-serif;
  font-size: 15px;
}

.phone-text {
  color: #000;
  padding-right: 5px;
  font-family: Raleway, sans-serif;
  font-weight: 500;
}

.email-text {
  padding-right: 5px;
  font-family: Raleway, sans-serif;
  font-weight: 500;
}

.email-text.white-text {
  color: var(--white);
}

.under-navigation-container {
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  max-width: 1690px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.bold-text-26 {
  font-family: Raleway, sans-serif;
  font-weight: 400;
}

.number-progressbar-container {
  width: 100%;
  max-width: 1230px;
  margin-bottom: 115px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.number-progressbar-container.oth {
  margin-top: 100px;
  margin-bottom: 0;
}

.title-heading-container {
  width: 50%;
  padding-right: 20px;
}

.title-text-container {
  width: 50%;
}

.get-quote {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 910px;
  margin-top: 90px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.video-slider-container {
  width: 100%;
  max-width: 1720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.slide-nav-7 {
  display: none;
}

.right-arrow-6 {
  width: 60px;
  height: 60px;
  inset: auto auto 60px 60px;
}

.left-arrow-6 {
  width: 60px;
  height: 60px;
  inset: auto auto 60px 0%;
}

.video-slide {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.video-slide.vidoe-slide-image-1 {
  background-image: url('../images/pallet_rack.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 25%;
  padding-bottom: 25%;
}

.video-slide.vidoe-slide-image-2 {
  background-image: url('../images/airplain.jpeg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 25%;
  padding-bottom: 25%;
}

.video-slide.vidoe-slide-image-3 {
  background-image: url('../images/cosco_shipping.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 25%;
  padding-bottom: 25%;
}

.slide-17 {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.mask-space {
  width: 100%;
  max-width: 960px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.home-3-video-slider-2 {
  background-color: #0000;
  height: 100%;
}

.video-slider-background {
  background-color: #f1f1f1;
  position: absolute;
  inset: 60px 0;
}

.video-slider-additional-image-1 {
  display: none;
  position: absolute;
  inset: -25% auto auto 5%;
}

.video-slider-additional-image-2 {
  display: none;
  position: absolute;
  inset: auto 5% -25% auto;
}

.slide-18 {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lists-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.home-3-list-item {
  width: 100%;
}

.list-item-title {
  margin-bottom: 30px;
}

.list-item-content {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.list-item-text {
  color: #131c21b3;
  line-height: 1.7;
}

.home-3-testimonials-slider-container {
  background-color: #1b1e23;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.home-inline-progressbar {
  background-color: #ff3f39;
  padding-top: 130px;
  padding-bottom: 130px;
}

.inline-progressbar-container {
  margin-bottom: 100px;
}

.home-2-top-banner {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/warehouse.jpeg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.top-banner-title-heading {
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 20px;
  font-size: 60px;
  line-height: 1.2;
}

.top-banner-title-text {
  color: #ffffffb3;
  text-align: center;
  max-width: 500px;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.home-2-partners {
  margin-top: 80px;
}

.provide-content-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  width: 100%;
  max-width: 1330px;
  margin: 80px auto;
  display: grid;
}

.provide-content-container.oth {
  align-self: flex-start;
  margin-top: 40px;
}

.provide-item {
  width: 100%;
  display: flex;
}

.provide-item-image-container {
  justify-content: center;
  align-items: flex-start;
  width: 35%;
  max-width: 116px;
  display: flex;
}

.provide-item-text-info {
  width: 65%;
  padding-left: 20px;
}

.prvide-item-title-heading {
  color: #131c21;
  text-align: left;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.provide-item-info-description {
  color: #131c2199;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.provide-item-image {
  object-fit: contain;
  height: 75px;
}

.numbers-progressbar-item {
  width: 25%;
}

.number-title {
  text-align: center;
}

.slider-aditional-image {
  max-width: 280px;
  position: absolute;
  inset: auto 0% -100px auto;
}

.pricing-packs-background {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: url('../images/ship_blur.jpg');
  background-position: 0 0;
  background-size: cover;
  background-clip: border-box;
  width: 100%;
  max-width: 1720px;
  height: 100%;
  max-height: 520px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.pricing-aditional-image {
  width: 100%;
  max-width: 192px;
  position: absolute;
  inset: auto 2% -80px auto;
}

.home-2-cpt-item {
  border: 4px solid var(--white);
  background-color: #fff;
  flex-flow: column;
  height: 100%;
  padding: 30px;
  transition: all .4s;
  display: flex;
  box-shadow: 0 0 7px #0003;
}

.home-2-cpt-item:hover {
  border-color: var(--primary-red);
  transform: translate(-20px, -20px);
}

.post-create-time {
  color: #131c2199;
}

.data-icon {
  margin-right: 10px;
  font-family: "Icon Font 3", sans-serif;
  display: inline-block;
}

.data-text {
  font-family: Poppins, sans-serif;
  display: inline-block;
}

.text-span-20 {
  color: #ff3f39;
}

.services-image {
  max-width: 100%;
  height: 100%;
  max-height: 346px;
  margin-right: 40px;
}

.distribution-slider-container {
  margin-top: 80px;
  margin-bottom: 220px;
  position: relative;
}

.distribution-slider-container.margin {
  margin-top: 50px;
  margin-bottom: 0;
}

.services-list-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 80px;
  display: grid;
}

.services-list-container.oth {
  margin-top: 30px;
  margin-bottom: 120px;
}

.services-list-item {
  width: 100%;
}

.item-title {
  color: #131c21;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.we-mooving-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1230px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.persone-item-container {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.person-item {
  background-color: #3552630d;
}

.person-item-info {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

.career-nimbers-progressbar {
  margin-top: 130px;
}

.team-list-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.team-list-item {
  background-color: #f5f6f7;
  display: flex;
}

.team-list-item-position {
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
}

.team-list-item-location {
  justify-content: flex-start;
  align-items: center;
  width: 20%;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
}

.team-list-item-type {
  justify-content: center;
  align-items: center;
  width: 20%;
  padding-left: 35px;
  padding-right: 35px;
  display: flex;
}

.team-list-button-link {
  color: #ff3f39;
  cursor: pointer;
  background-color: #fff;
  height: 60px;
  padding: 20px 35px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.team-list-button-link:hover {
  opacity: 1;
  color: #fff;
  background-color: #ff3f39;
}

.team-list-item-button {
  justify-content: flex-end;
  align-items: center;
  width: 30%;
  padding: 20px 35px;
  display: flex;
}

.team-list-title {
  display: flex;
}

.team-list-item-title-heading {
  display: none;
}

.certification-item {
  height: 100%;
  box-shadow: 7px 7px 50px #0000001a;
}

.certification-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  flex-flow: column;
  padding: 20px;
  display: flex;
}

.certification-item-container {
  width: 100%;
}

.page-not-found {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/Main-Cover_1.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 160px 15px;
  display: flex;
}

.container-404 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.not-found-header {
  color: #fff;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 225px;
  line-height: 1em;
}

.not-found-text {
  color: #ffffffb3;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
}

.home-4-top-banner {
  width: 100%;
  position: relative;
}

.home-4-top-banner-container {
  z-index: 10;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  min-height: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.home-4-top-banner-heading {
  color: #fff;
  margin-bottom: 40px;
  font-family: Poppins, sans-serif;
  font-size: 60px;
  line-height: 1.2;
}

.top-banner-background-image {
  display: flex;
  position: absolute;
  inset: 0 auto;
}

.content-buttons {
  color: var(--primary-black);
  margin-top: 40px;
}

.home-4-top-banner-slider {
  background-color: #0000;
  width: 100%;
  height: 100%;
}

.background-image-container {
  height: 100%;
}

.top-banner-slider-title {
  width: 100%;
  max-width: 625px;
}

.top-banner-filter-background {
  z-index: 10;
  background-color: #0000001a;
  position: relative;
  inset: 0;
}

.home-4-slide-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-4-logistics-section {
  background-image: url('../images/WorlMap.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.home-4-logistics-container {
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.home-4-logistics-features-blocks {
  z-index: 100;
  margin-bottom: -100px;
  display: flex;
}

.logistics-content-info {
  margin-top: 125px;
  display: flex;
}

.logistics-info-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 50px;
  margin-bottom: 0;
  display: flex;
}

.feature-block-item-container {
  z-index: 100;
  align-items: flex-start;
  width: 33%;
  margin-right: 5px;
  display: flex;
  position: relative;
  top: -100px;
}

.feature-block-item-container.item-1 {
  background-image: url('../images/shelves.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 5px;
}

.feature-block-item-container.item-2 {
  background-image: url('../images/cosco_shipping.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-block-item-container.item-3 {
  background-image: url('../images/aeroport-1.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-block-heading {
  color: #fff;
  margin-top: 0;
  font-family: Poppins, sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.feature-block-icon {
  width: 60px;
  height: 59px;
  margin-right: 20px;
}

.item-container-background {
  background-color: #121c45;
  height: 100%;
  padding: 62px 30px;
  transition: background-color .3s;
  display: flex;
}

.item-container-background:hover {
  background-color: #ff3f39cc;
}

.content-info-title {
  width: 35%;
}

.content-info-text {
  width: 65%;
  position: relative;
}

.info-author {
  color: #989898;
}

.home-4-sign-image {
  position: absolute;
  inset: auto 0% 0% auto;
}

.info-block-container {
  box-shadow: none;
  background-color: #0000;
  width: 33.33%;
}

.info-block-content {
  background-color: var(--white);
  padding: 50px 30px;
  box-shadow: 7px 7px 50px #0000001a;
}

.info-block-content.background-1 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  transition: background-position .3s;
}

.info-block-content.background-1:hover {
  background-image: none;
}

.info-block-content.background-2 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  transition: background-position .3s;
}

.info-block-content.background-2:hover {
  background-image: none;
}

.info-block-content.background-3 {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  transition: background-position .3s;
}

.info-block-content.background-3:hover {
  background-image: none;
}

.info-block-title {
  color: var(--primary-black);
  margin-top: 20px;
  margin-bottom: 20px;
}

.info-block-content-icon {
  object-fit: cover;
  width: 60px;
  height: 60px;
}

.home-4-glogal-shipping {
  background-image: url('../images/shelves.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 210px;
}

.global-shopping-container {
  background-color: #121c45e6;
}

.tab-link-tab-2 {
  color: var(--white);
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
}

.tab-link-tab-2.w--current {
  border-bottom: 4px solid var(--primary-red);
  color: var(--primary-red);
  background-color: #0000;
  margin-bottom: 0;
}

.tab-link-tab-2.w--current:hover {
  opacity: 1;
}

.tab-link-tab-1 {
  color: #fff;
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Poppins, sans-serif;
}

.tab-link-tab-1.w--current {
  border-bottom: 4px solid var(--primary-red);
  color: var(--primary-red);
  background-color: #0000;
  padding-bottom: 0;
}

.tab-link-tab-1.w--current:hover {
  opacity: 1;
}

.tab-title {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 18px;
}

.tabs-menu {
  background-color: #001d67;
}

.tabs {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  top: -120px;
  box-shadow: 7px 7px 50px #0000001a;
}

.contact-form-2 {
  background-color: #fff;
  width: 70%;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 40px;
}

.tab-container {
  display: flex;
}

.tab-aditional-block {
  background-image: url('../images/port.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 30%;
}

.aditional-block-container {
  background-color: #ff3f39e6;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 460px;
  padding: 40px;
  display: flex;
  position: relative;
}

.white-text {
  color: #fff;
  margin-top: 20px;
  font-size: 65px;
}

.white-text.additional-block-title {
  text-align: center;
  margin-bottom: 40px;
}

.white-text.maxw {
  max-width: 400px;
}

.white-text.oth {
  font-size: 61px;
}

.container-5 {
  padding-left: 55px;
}

.paragraph-4 {
  color: var(--white);
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

.inputs-container {
  display: flex;
}

.inputs-container.text-area-container {
  height: 140px;
}

.form-input {
  border: 1px solid #0000001a;
  width: 100%;
  height: 45px;
  margin-bottom: 25px;
  margin-right: 25px;
}

.form-input:focus {
  border: 1px solid #0000001a;
}

.form-input.size-input {
  width: 38%;
}

.form-input.last-in-row {
  margin-right: 0;
}

.form-input.without-space {
  height: auto;
  min-height: 60px;
  margin-bottom: 0;
  margin-right: 0;
}

.form-input.password {
  height: 55px;
  margin-bottom: 15px;
  margin-right: 0;
}

.radio-buttons-block {
  place-content: stretch flex-start;
  margin-bottom: 30px;
  display: flex;
}

.radio-button-field {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-right: 15px;
  display: flex;
}

.radio-button-label {
  font-family: Poppins, sans-serif;
}

.form-block-3 {
  margin-bottom: 0;
}

.radio-button {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.select-field-5 {
  background-color: #0000;
  border: 1px solid #0000001a;
  height: 45px;
  margin-bottom: 25px;
  margin-right: 25px;
  font-family: Poppins, sans-serif;
}

.select-field-5:focus {
  border: 1px solid #0000001a;
}

.select-field-5.home-form-select {
  min-width: 210px;
  max-width: 210px;
  position: relative;
}

.select-field-5.home-form-select:focus {
  border-style: solid;
  border-color: #0000001a;
}

.textarea-2 {
  border: 1px solid #0000001a;
  height: 120px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
}

.textarea-2:focus {
  border: 1px solid #0000001a;
}

.home-form-select {
  width: 100%;
  margin-bottom: 25px;
  margin-right: 25px;
}

.probressbar-container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 220px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.probressbar-container.padding {
  padding-bottom: 80px;
}

.progressbar-title {
  width: 45%;
}

.progressbar-container {
  justify-content: space-between;
  width: 55%;
  display: flex;
}

.progressbar-percent-item {
  width: 100%;
  max-width: 300px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.html-svg {
  justify-content: center;
  align-items: center;
  display: flex;
}

.progressbar-percent {
  z-index: 100;
  color: var(--white);
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.percent-symbol {
  font-size: 18px;
}

.progressbar-percent-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.progressbar-percent-title {
  z-index: 500;
  color: var(--white);
  text-align: center;
  margin-top: 20px;
}

.percent-container {
  position: relative;
}

.home-4-slider-section {
  background-image: url('../images/WorlMap.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid #0000001a;
  margin-bottom: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-4-pricing-policy {
  background-image: url('../images/aeroport-1.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-bottom: 250px;
}

.pricing-policy-container {
  background-color: #121c45e6;
  padding-top: 100px;
  padding-left: 15px;
  padding-right: 15px;
}

.pricing-policy-text-info {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-info-description {
  color: var(--white);
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
}

.pricing-policy-base-container {
  margin-top: -200px;
}

.home-4-we-best-section {
  margin-bottom: 120px;
  padding-top: 130px;
  padding-left: 15px;
  padding-right: 15px;
}

.title-content {
  flex: none;
  width: 50%;
}

.grid-features {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.we-best-feature-item {
  display: flex;
}

.we-best-feature-item-info {
  margin-left: 20px;
}

.feature-item-image {
  object-fit: contain;
  flex: none;
  width: 50px;
  height: 50px;
}

.feature-item-info-title {
  text-align: left;
  margin-top: 0;
}

.dark-background {
  background-color: var(--white);
  position: absolute;
  inset: 0%;
}

.home-4-get-touch {
  background-image: url('../images/WorlMap.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}

.get-touch-title {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.get-touch-content {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.werehouse-services-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.werehouse-services-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  width: 100%;
  margin-top: 25px;
  display: flex;
}

.werehouse-services-content-item {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  align-items: center;
  display: flex;
  position: relative;
}

.werehouse-services-content-item.margin {
  margin-top: 60px;
  margin-bottom: 0;
}

.werehouse-services-content-item.mid {
  margin-bottom: 36px;
}

.werehouse-services-content-item.oth {
  margin-top: 100px;
  margin-bottom: 100px;
}

.content-item-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  width: 60%;
  display: flex;
}

.content-item-info.value-aditional-block-info {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.content-item-image {
  width: 40%;
}

.content-item-image.oth {
  order: -1;
}

.separate-line {
  padding-left: 17px;
}

.form-block-4 {
  margin-bottom: 0;
}

.text-block-52 {
  align-items: center;
}

.distribution-slider {
  margin-top: 80px;
}

.distribution-slider.margin-bottom {
  margin-bottom: 80px;
}

.title-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.title-block.maxw {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.title-block.spacing {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.distribution-feature-item-image {
  height: 163px;
}

.distribution-more-info {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  width: 100%;
  margin-top: 80px;
  display: flex;
}

.distribution-more-info.oth {
  margin-top: 0;
}

.distribution-more-info.oth.top {
  margin-bottom: 80px;
}

.more-info-content {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.more-info-content.oth {
  order: 1;
}

.more-info-image {
  width: 40%;
}

.value-added-item {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  width: 100%;
  margin-top: 50px;
  display: grid;
}

.value-added-item.margin-top-0 {
  margin-top: 0;
}

.value-additional-block-container.margin {
  margin-top: 80px;
  margin-bottom: 80px;
}

.locations-image {
  object-fit: cover;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.not-found-description {
  color: var(--white);
}

.pick-choose-section {
  background-image: url('../images/pressure-washing_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.pick-choose-container {
  background-color: #000c;
  padding: 116px 15px;
}

.style-guide-top-banner-title {
  justify-content: center;
  display: flex;
}

.style-guide-title {
  padding-bottom: 40px;
}

.section-title {
  margin-top: 0;
  padding-bottom: 10px;
}

.style-guide-grid-system {
  padding-top: 30px;
}

.content-title {
  color: #a8a8a8;
  margin-bottom: 20px;
  font-size: 18px;
}

.grid-system-container {
  margin-top: 60px;
}

.grid-system-content-top, .grid-system-content-bottom {
  display: flex;
}

.content-table-top-row-item {
  background-color: var(--primary-red);
  color: var(--white);
  border-bottom: 1px solid #000;
  border-right: 1px solid #0000001a;
  padding: 20px 15px;
  font-size: 18px;
}

.content-table-top-row-item.last-item {
  border-right-style: none;
}

.content-table-top-row-item.content-table-row-item-title {
  width: 190px;
}

.content-table-top-row-item.content-table-row-item-resolution {
  justify-content: center;
  align-items: center;
  width: 160px;
  display: flex;
}

.content-table-bottom-row-item {
  border-right: 1px solid #0000001a;
  padding: 20px 15px;
}

.content-table-bottom-row-item.content-table-row-item-title {
  background-color: var(--white);
  color: var(--primary-black);
  width: 190px;
  font-size: 18px;
}

.content-table-bottom-row-item.content-table-row-item-resolution {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: 160px;
  display: flex;
}

.content-table-bottom-row-item.last-item {
  border-right-style: none;
}

.size-sumbol-container {
  font-family: Raleway, sans-serif;
}

.style-guide-palette {
  display: flex;
}

.colors-palette {
  margin-top: 40px;
  margin-right: 40px;
}

.colors-container {
  margin-top: 40px;
  display: flex;
}

.color-item {
  margin-right: 30px;
}

.color-item-background {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.color-item-background.red-background {
  background-color: var(--primary-red);
}

.color-item-background.darck-background {
  background-color: var(--primary-black);
}

.color-item-background.gray-background {
  background-color: var(--primary-gray);
}

.color-item-background.secondary-gray-background {
  background-color: #ebebeb;
}

.color-item-background.white-background {
  background-color: var(--white);
}

.color-item-background.gold-background {
  background-color: #d9b995;
}

.color-text {
  color: var(--primary-gray);
}

.typography-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.typography-content {
  flex-direction: column;
  width: 34%;
  margin-right: 30px;
  display: flex;
}

.typography-content.licensing-typography {
  width: 50%;
}

.headings-container {
  flex-direction: column;
  margin-top: 30px;
  display: flex;
}

.headings-container.icon-typo-container {
  flex-direction: row;
}

.headings-container.icon-typo-container.icon-licensing {
  margin-bottom: 30px;
}

.headings-container.icon-typo-container.licensing-images {
  flex-flow: wrap;
  place-content: space-between flex-start;
  align-items: stretch;
  margin-top: 0;
  margin-left: -20px;
  margin-right: -20px;
}

.size-sumbols {
  margin-right: 8px;
}

.style-guide-paragraphs {
  display: flex;
}

.style-guide-icon-set-container-item {
  margin-bottom: 60px;
  margin-right: 60px;
}

.style-guide-icon-set-container-item.images-licensing-container {
  margin-top: 40px;
  margin-bottom: 20px;
  margin-right: 0;
}

.style-guide-icon-set-container-item.images-licensing-container.last-element-in-column {
  margin-bottom: 0;
}

.style-guide-icons-container {
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 0;
  display: block;
}

.style-guide-buttons-container {
  margin-top: 60px;
  display: flex;
}

.style-guide-buttons-content-item {
  margin-right: 30px;
}

.news-top-banner {
  background-image: url('../images/adult-beverage.jpeg');
  background-repeat: no-repeat;
  background-size: cover;
}

.news-top-banner.categories-banner {
  background-color: #0410260d;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.news-top-banner-container {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 130px 15px;
  display: flex;
}

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

.section.gray-bg {
  background-color: #fafafa;
}

.section.banner-slider-section {
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
}

.section.red-background {
  background-color: var(--primary-red);
}

.section.gray-background {
  background-color: #fafafa;
}

.section.template-banner {
  background-image: url('../images/adult-beverage.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.section.without-bottom-space {
  padding-bottom: 0;
}

.section.without-space {
  padding-top: 0;
  padding-bottom: 0;
}

.section.banner-landing {
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/WorlMap.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  margin-top: 100px;
  padding-bottom: 0;
  display: flex;
}

.section.dark-bgr {
  background-color: var(--primary-black);
}

.section.backgroung-image {
  background-image: linear-gradient(#ffffff80, #ffffff80), url('../images/WorlMap.png');
  background-position: 0 0, 0%;
  background-repeat: repeat, repeat;
  background-size: auto, auto;
}

.section.white-bgr {
  background-color: var(--white);
}

.section.without-top-space {
  padding-top: 0;
}

.section.oth {
  padding-top: 0;
  padding-bottom: 80px;
}

.section.oth3 {
  padding-bottom: 0;
}

.section.oth4 {
  padding-bottom: 80px;
}

.section.othsec {
  padding-bottom: 40px;
}

.base-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.base-container.row-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.base-container.row-container.oth {
  margin-top: 100px;
}

.base-container.row-container.oth2 {
  justify-content: center;
  align-items: center;
}

.testimonials-slider {
  background-color: #0000;
}

.testimonials-slider.home-3-tstimonials-slider {
  background-color: #131c21;
}

.testimonials-slide {
  margin-right: 30px;
  padding-top: 0;
  padding-bottom: 0;
}

.right-arrow-9, .left-arrow-9, .slide-nav-10 {
  display: none;
}

.home-2-under-navigation {
  border-bottom: 1px solid #ffffff1a;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-3-testimonials {
  position: relative;
}

.row-container {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.white-text-align-left {
  color: var(--white);
}

.white-text-align-left.pick-choose-text {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.white-text-align-left.pick-choose-text.oth {
  font-size: 18px;
}

.white-text-align-left.top-banner-text {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin-top: 10px;
  font-weight: 600;
  line-height: 1.4em;
}

.accordion-item-2 {
  z-index: 1;
  background-color: #f2f3f4;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.dropdown-toggle-2 {
  white-space: normal;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding-left: 40px;
  display: flex;
}

.dropdown-toggle-2.w--open {
  height: 100px;
}

.accordion-item-heading {
  color: #181a20;
  letter-spacing: -.16px;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.dropdown-list-3 {
  background-color: #0000;
  display: block;
  position: static;
}

.dropdown-list-3.w--open {
  padding-top: 0;
  position: static;
}

.bottom-menu-link-container {
  position: relative;
  overflow: hidden;
}

.hover-line {
  background-color: var(--primary-red);
  width: 0%;
  height: 4px;
  position: absolute;
  inset: 0% 0% auto;
}

.history-slider-left-arrow {
  width: 60px;
  height: 60px;
  inset: auto auto 0% 0%;
}

.history-slider-right-arrow {
  width: 60px;
  height: 60px;
  margin-left: 60px;
  inset: auto auto 0% 0%;
}

.map-content {
  height: 450px;
  overflow: hidden;
}

.banner-heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
}

.progressbar-title-heading {
  margin-bottom: 20px;
}

.top-banner-description {
  opacity: 1;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}

.start-save-section {
  background-image: url('../images/truck.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.template-title {
  justify-content: center;
  align-items: center;
  display: flex;
}

.team-list-item-position-title {
  text-align: left;
}

.image-link {
  justify-content: center;
  align-self: center;
  width: 15%;
  font-size: 18px;
  display: flex;
  position: static;
}

.link-container {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border-top: 2px solid #0000001a;
  flex: 0 auto;
  justify-content: flex-end;
  margin-top: 0;
  padding-top: 40px;
  display: flex;
}

.heading {
  justify-content: flex-start;
  width: 70%;
  display: flex;
}

.link-licensing-image {
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.licensing-image {
  object-fit: cover;
  width: 100%;
  height: 245px;
  margin-bottom: 40px;
}

.licensing-image.clear-space, .clear-space {
  margin: 0;
  padding: 0;
}

.primary-red-text {
  color: var(--primary-red);
}

.success-message {
  background-color: var(--trasperent-white);
}

.error-message {
  background-color: var(--transparent);
  color: var(--primary-red);
  padding: 0;
}

.carts-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-bottom: 40px;
  display: flex;
}

.info-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  width: 100%;
  display: flex;
}

.form-info {
  width: 100%;
  margin-bottom: 0;
}

.section-info {
  padding-top: 60px;
  padding-bottom: 0;
}

.block-with-space {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.form-content {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  width: 100%;
  display: flex;
}

.paragraph-large {
  font-size: 18px;
}

.paragraph-large.margin-bottom-60px {
  margin-bottom: 60px;
}

.paragraph-large.oth {
  margin-bottom: 25px;
}

.grey-text {
  color: var(--grey);
  line-height: 1.7em;
}

.grey-link {
  color: var(--grey);
}

.grey-link:hover {
  color: var(--primary-red);
}

.link-image-blog {
  width: 100%;
  height: 280px;
  display: block;
  overflow: hidden;
}

.image-cover {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.image-cover.hover {
  transition: all .8s;
}

.image-cover.hover:hover {
  transform: scale(1.1);
}

.image-cover.oth, .image-cover.oth2 {
  object-fit: contain;
  max-height: 300px;
}

.space {
  margin-top: 20px;
  margin-bottom: 50px;
}

.title-four-heading {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2em;
  display: inline-block;
}

.blog-item {
  width: 100%;
}

.shop-item-link {
  font-size: 25px;
  font-weight: 700;
}

.shop-item-link:hover {
  color: var(--primary-red);
}

.shop-links-wrapper {
  position: relative;
}

.shop-item-price-on-sale {
  color: var(--grey);
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
}

.main-shop-list-item {
  z-index: 1;
  grid-row-gap: 20px;
  border: 4px solid var(--white);
  background-color: var(--white);
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all .3s;
  display: flex;
  position: relative;
  box-shadow: 0 0 20px 10px #2c2d2e0f;
}

.main-shop-list-item:hover {
  border: 4px solid var(--primary-red);
  transform: translate(-10px, -10px);
}

.shop-item-price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}

.shop-price-wrapper {
  grid-column-gap: 15px;
  flex-flow: wrap;
  margin-top: 5px;
  display: flex;
}

.shop-link-block {
  width: 100%;
  height: 250px;
}

.shop-list {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.shop-list.details {
  grid-template-columns: 1fr 1fr 1fr;
}

.shop-item {
  position: relative;
}

.description-product {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.categories-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.categories-list.margin-bottom-0 {
  margin-bottom: 0;
}

.red-link {
  color: var(--primary-red);
  display: inline-block;
}

.red-link:hover {
  color: var(--primary-black);
}

.red-link.white-hover:hover {
  color: var(--white);
}

.hidden {
  display: none;
}

.default-state {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
  display: flex;
}

.quantity {
  border-color: var(--trasperent-grey);
  background-color: var(--trasperent-grey);
  border-radius: 0;
  margin-bottom: 0;
}

.quantity:focus {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.out-of-stock-state {
  background-color: var(--transparent);
  color: var(--primary-red);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.cart-button {
  background-color: var(--transparent);
  color: var(--primary-black);
}

.cart-button.white {
  color: var(--white);
}

.cart-quantity {
  background-color: var(--primary-red);
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-left: 0;
  font-weight: 500;
  display: flex;
  position: absolute;
  inset: -32% 16% auto auto;
}

.button-wrap {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.checkout-form {
  background-color: var(--white);
  min-height: auto;
  padding-top: 160px;
  padding-bottom: 60px;
}

.checkout-input {
  border-color: var(--primary-gray);
  background-color: var(--white);
}

.checkout-input:focus {
  border-color: var(--primary-red);
  color: var(--primary-black);
}

.checkbox {
  margin-top: 0;
}

.checkbox-label {
  margin-bottom: 0;
}

.total-price {
  color: var(--primary-red);
}

.order-item {
  align-items: center;
}

.image-checkout {
  object-fit: cover;
  flex: none;
  height: 60px;
}

.nav-dropdown-link-line {
  background-color: var(--primary-red);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.header-link {
  letter-spacing: 1.24px;
  text-transform: capitalize;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 500;
}

.header-link:hover {
  opacity: 1;
}

.header-link.w--current {
  color: #0e0e0e;
}

.header-link.white {
  color: var(--white);
}

.header-link.white:hover, .header-link.white.w--current {
  color: var(--primary-red);
}

.nav-dropdown-toggle {
  grid-column-gap: 8px;
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 0;
  display: flex;
}

.nav-dropdown-link {
  color: #131c2199;
  text-transform: capitalize;
  align-items: center;
  width: 100%;
  margin-left: -20px;
  padding: 5px 8px 5px 0;
  font-size: 15px;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary-red);
  margin-left: 0;
}

.nav-dropdown-link.w--current {
  color: var(--primary-red);
}

.menu-wrap {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}

.nav-item-title {
  color: var(--primary-black);
  letter-spacing: 1.24px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.nav-item-title.white {
  color: var(--white);
  transition: all .3s;
}

.nav-item-title.white:hover {
  color: var(--primary-red);
}

.nav-dropdown-list {
  background-color: #fff;
  width: 250px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 20px 10px #0000000a;
}

.nav-dropdown-list.megamenu {
  width: 360px;
}

.nav-dropdown-list.megamenu.w--open {
  width: 650px;
  display: flex;
  right: 0;
}

.nav-dropdown-list.smallmenu.w--open {
  width: 215px;
}

.brand-tablet {
  display: none;
}

.navbar-fixed {
  border-bottom: 1px solid var(--trasperent-grey);
  background-color: #fff;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-fixed.bg-transparent {
  border-top: 9px solid var(--primary-red);
  background-color: var(--transparent);
  border-bottom-style: none;
  border-bottom-width: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-fixed.relative {
  position: relative;
}

.navbar-fixed.static {
  background-color: var(--transparent);
  position: relative;
}

.brand-2 {
  flex: none;
}

.brand-2.w--current {
  width: 200px;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-menu-2 {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu-wrapper {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-dropdown-icon {
  margin-left: 0;
  margin-right: 0;
  font-size: 16px;
  position: static;
}

.nav-dropdown-icon.white {
  color: var(--white);
}

.nav-dropdown-column {
  width: 100%;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.nav-container.spacing {
  width: 100%;
  min-width: auto;
  max-width: 1690px;
}

.full-block {
  width: 100%;
}

.sticky-block-checkout {
  top: 120px;
}

.button-tablet {
  display: none;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #fff9;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 15px;
  display: flex;
}

.footer-rights-wrapper {
  grid-column-gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

.footer-rights {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  color: #fff9;
  display: flex;
}

.footer-copyright-link {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
}

.footer-copyright-link:hover {
  color: var(--primary-red);
}

.shop-image-lightbox-link {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.shop-details-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1.12fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.shop-item-price-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  display: flex;
}

.shop-details-image-lightbox {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.shop-details-block {
  grid-row-gap: 25px;
  background-color: #fff;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  padding: 40px 50px 50px;
  display: flex;
  box-shadow: 0 0 20px 10px #0000000d;
}

.shop-details-subtitle {
  color: var(--primary-red);
  font-size: 16px;
  font-weight: 700;
}

.shop-item-info-wrapper {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.rich-text-style ul {
  background-color: var(--grey);
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.rich-text-style ol {
  color: var(--grey);
  margin-top: 20px;
  margin-bottom: 20px;
}

.rich-text-style h2 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 35px;
}

.rich-text-style h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 30px;
}

.rich-text-style img {
  margin-top: 25px;
  margin-bottom: 25px;
}

.rich-text-style h4 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 25px;
}

.shop-details-content-block {
  grid-row-gap: 25px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.shop-text-wrapper {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.shop-details-title {
  margin-top: 0;
  font-size: 42px;
}

.shop-price-on-sale {
  color: #737886;
  text-decoration: line-through;
}

.section-two-side-title-wrapper {
  z-index: 999;
  grid-column-gap: 60px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  position: relative;
}

.details-section {
  padding-top: 180px;
}

.details-section.space-bottom {
  padding-bottom: 80px;
}

.more-images-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.empty-state {
  background-color: var(--transparent);
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.h1-mobile {
  font-size: 45px;
}

.h1-tablet {
  font-size: 65px;
}

.style-guide-body-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 47%;
  display: flex;
}

.link-wrapper {
  width: 50%;
  margin-top: 10px;
}

.style-guide-div {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.h2-mobile {
  font-size: 35px;
}

.headings-container-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.mb-20 {
  margin-bottom: 20px;
}

.typography-hero-wrapper {
  grid-row-gap: 60px;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.style-guide-subtitle {
  margin-bottom: 20px;
}

.h3-mobile {
  font-size: 25px;
}

.headers-wrapper {
  width: 100%;
  margin-top: 10px;
}

.style-guide-content-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: nowrap;
  margin-top: 20px;
  display: flex;
}

.spasing-system-image-mobile {
  max-width: 70%;
}

.middlr-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 29%;
  right: 0;
}

.spacing-wrapper {
  width: 100%;
  margin-top: 30px;
  position: relative;
}

.spacing-wrapper-mobile {
  width: 70%;
  margin-top: 30px;
  position: relative;
}

.spacing-columns {
  margin-top: 40px;
}

.spacing-system-column {
  padding-right: 20px;
}

.top-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  top: 5%;
  right: 0;
}

.typography-wrapper {
  margin-top: 30px;
}

.middle-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: 33% 0% auto auto;
}

.spacing-system-image {
  max-width: 80%;
}

.top-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  top: 8%;
  bottom: auto;
  right: 0;
}

.bottom-style-spacing-desktop {
  font-weight: 700;
  position: absolute;
  inset: auto 0% 10% auto;
}

.bottom-style-spacing-mobile {
  font-weight: 700;
  position: absolute;
  bottom: 7%;
  right: 0;
}

.search-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 20px;
  margin-bottom: 60px;
  display: flex;
}

.small-grey-text {
  color: var(--grey);
  font-size: 13px;
}

.search-result-item {
  grid-row-gap: 5px;
  flex-direction: column;
  display: flex;
}

.search-result-list {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.link-search {
  font-size: 18px;
  font-weight: 500;
}

.dark-button {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 21px 32px;
  transition: all .3s;
}

.dark-button:hover {
  color: var(--white);
  background-color: #2f434e;
}

.dark-text {
  color: var(--primary-black);
}

.figure {
  margin-bottom: 0;
}

.blogs-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blogs-list-wrapper {
  width: 100%;
}

.field-label {
  margin-top: 30px;
  margin-bottom: 10px;
}

.landing-banner-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.landing-title {
  color: #160828;
  max-width: 900px;
  font-size: 60px;
}

.banner-description {
  text-align: center;
  max-width: 560px;
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 18px;
}

.landing-banner-image {
  object-fit: cover;
  width: 100%;
  max-width: 85%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrapper-lp {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.white-left-preloader {
  background-color: #fff;
  width: 0%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.landing-inner-page-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 30px #eef4f8;
}

.landing-inner-page-image-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.landing-home-pages-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.landing-inner-page-overlay {
  z-index: 1;
  background-color: #fff3;
  position: absolute;
  inset: 0%;
}

.landing-inner-page-icon {
  z-index: 10;
  background-color: var(--secondary-red);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 20px;
  display: flex;
  position: absolute;
}

.landing-inner-page-item {
  background-color: var(--primary-red);
  text-align: center;
  width: 100%;
  padding: 6px;
}

.landing-inner-page-title {
  color: var(--primary-black);
  font-size: 20px;
}

.section-lp-title-description {
  text-align: center;
  width: 70%;
  margin-top: 20px;
}

.landing-progress-bar-88 {
  background-color: var(--primary-red);
  border-radius: 10px;
  width: 88%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-92 {
  background-color: var(--primary-red);
  border-radius: 10px;
  width: 92%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-wrapper {
  margin-top: 20px;
}

.section-lp-title-description-2.long-text {
  width: 95%;
}

.landing-progress-bar-gray-line {
  background-color: var(--trasperent-grey);
  border-radius: 10px;
  width: 100%;
  height: 15px;
}

.landing-progress-bar-95 {
  background-color: var(--primary-red);
  border-radius: 10px;
  width: 95%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-performance-item-title {
  color: #160828;
  font-weight: 600;
}

.landing-progress-bar-100 {
  background-color: var(--primary-red);
  border-radius: 10px;
  width: 100%;
  height: 15px;
  margin-top: -15px;
  position: relative;
}

.landing-progress-bar-number {
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  inset: auto 0% 35px auto;
}

.landing-performance-grid {
  grid-column-gap: 120px;
  grid-row-gap: 60px;
  width: 100%;
}

.landing-features-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.section-title-wrapper {
  text-align: center;
  max-width: 740px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.landing-feature-title {
  color: #fff;
  font-weight: 600;
}

.landing-feature-item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.landing-feature-icon {
  color: #fff;
  background-color: #fff3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-feature-text {
  color: #fff;
}

.landing-inner-pages-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.landing-download-block-wrapper {
  background-color: var(--primary-red);
  background-image: url('../images/Frame-47_1Frame 47.webp');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 75px 80px 75px 200px;
  display: flex;
  box-shadow: 0 0 30px #0000004d;
}

.download-button-icon {
  margin-top: 4px;
  margin-right: 10px;
  font-family: "Fa Solid 900", sans-serif;
}

.animation-link {
  font-weight: 500;
}

.animation-link.margin-top {
  margin-top: auto;
}

.animation-link.size {
  font-size: 18px;
}

.animation-link.margin-auto {
  margin-top: auto;
  font-size: 18px;
}

.animation-link.oth {
  margin-top: 20px;
}

.hover-text-wrap {
  height: auto;
  max-height: 23px;
  overflow: hidden;
}

.hover-text-wrap.oth {
  z-index: 1;
  color: var(--white);
  position: relative;
}

.red-label-text {
  color: var(--primary-red);
  margin-top: 0;
  margin-bottom: 0;
}

.red-label-text.oth {
  color: var(--white);
}

.red-label-text-bottom {
  color: var(--primary-red);
  margin-top: 0;
  margin-bottom: 0;
}

.red-label-text-bottom.oth {
  color: var(--white);
}

.play-video {
  color: var(--grey);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: visible;
}

.play-video:hover {
  opacity: 1;
  color: var(--secondary-red);
}

.play-button-icon-2 {
  z-index: 7;
  margin-left: 4px;
  font-family: "Fa Solid 900", sans-serif;
  font-size: 26px;
  position: relative;
}

.play-button-2 {
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  flex-flow: column;
  width: 80px;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
}

.play-button-hover-2 {
  z-index: 10;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 94px;
  height: 94px;
  transition: all .5s;
  position: absolute;
  transform: scale(.85);
}

.play-button-hover-2:hover {
  width: 110px;
  height: 110px;
  transform: scale(1.1);
}

.form-block-5 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 0;
  display: flex;
}

.form {
  width: 100%;
  margin-bottom: auto;
}

.blog-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.blog-list-wrapper {
  width: 100%;
}

.div-block {
  flex-flow: column;
  justify-content: space-between;
  height: auto;
  margin-bottom: auto;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.grid-services {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 20px;
  padding-right: 20px;
  display: grid;
}

.space-top-bottom {
  margin-top: 20px;
  margin-bottom: 30px;
}

.margin-bottom-50 {
  margin-bottom: 50px;
}

.white-bgr-block {
  background-color: var(--light-white);
}

.white-bold-link {
  color: var(--white);
  letter-spacing: .3px;
  font-weight: 500;
}

.white-bold-link:hover {
  color: var(--primary-red);
}

.dark-bold-link {
  color: var(--primary-black);
  letter-spacing: .3px;
  font-weight: 500;
}

.centered-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.mask-9 {
  width: 80%;
  overflow: visible;
}

.grid-info-content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.white-success-message {
  color: var(--white);
  background-color: #ddd0;
  font-weight: 500;
}

.block-flex {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.left-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-30.oth {
  font-size: 34px;
}

.margin-bottom-30.oth2 {
  font-size: 17px;
}

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

.title-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.description-services {
  border-top: 4px solid var(--primary-red);
  background-color: var(--white);
  min-height: 208px;
  margin-top: -30px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  position: relative;
  box-shadow: 0 0 7px #0003;
}

.help-text-content {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.background-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.large-white-text {
  color: var(--white);
  font-size: 18px;
  line-height: 1.7em;
}

.large-white-text.help-text {
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.large-white-text.dark {
  color: var(--primary-black);
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.carts-block {
  margin-top: 25px;
  display: flex;
  position: relative;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.info-section {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.partners-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.dark-error-message {
  background-color: #ffdede00;
  padding: 0;
}

.description-blog {
  background-color: var(--white);
  text-align: left;
  flex-flow: column;
  min-height: 296px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  box-shadow: 0 0 10px #0003;
}

.description-content {
  padding-top: 10px;
}

.icon {
  color: var(--primary-red);
  font-family: "Fa Solid 900", sans-serif;
}

.date-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.dark-opacity {
  background-color: #0009;
  position: absolute;
  inset: 0%;
}

.pricing-wrap {
  margin-top: 100px;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.relative-block {
  position: relative;
}

.counter-block {
  display: flex;
}

.carts-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.content-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.full-content {
  width: 100%;
}

.maxw-title-centered {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.maxw-title-centered.medium {
  max-width: 550px;
}

.maxw-title-centered.oth {
  font-size: 44px;
}

.small-text {
  font-size: 14px;
}

.align-right {
  text-align: right;
}

.medium-block {
  width: 50%;
}

.list-no-dot {
  grid-row-gap: 20px;
  text-align: center;
  padding-left: 0;
  list-style-type: none;
}

.list-no-dot.grey {
  background-color: var(--grey);
}

.hire-popup {
  z-index: 1000;
  background-color: #1c276d;
  border-radius: 4px;
  width: 100%;
  max-width: 290px;
  position: fixed;
  inset: auto auto 5px 5px;
}

.hire-popup-wrap {
  grid-row-gap: 10px;
  flex-direction: column;
  padding: 15px;
  display: flex;
  position: relative;
}

.hire-paragraph {
  color: #fff;
  letter-spacing: normal;
  max-width: 93%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.text-orange {
  color: #f69c20;
}

.hire-buttons-wrap {
  grid-column-gap: 20px;
  display: flex;
}

.hire-buttons {
  color: #fff;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 5px 15px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
}

.hire-buttons:hover {
  color: #ffffffb3;
}

.hire-popup-close {
  cursor: pointer;
  padding: 10px 20px;
  position: absolute;
  top: -7px;
  right: -14px;
}

.close-popup-image {
  width: 12px;
  height: 12px;
}

.more-templates {
  z-index: 1000;
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  width: 140px;
  padding: 6px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
  position: fixed;
  inset: auto 12px 48px auto;
}

.more-templates:hover {
  color: #000;
}

.icon-call-now {
  margin-right: 0;
}

.icon-call-now.desktop {
  margin-right: 10px;
}

.call-now-button {
  z-index: 1000;
  background-color: var(--white);
  color: #000;
  letter-spacing: normal;
  text-transform: none;
  border: 1px #e4e4e4;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  display: flex;
  position: fixed;
  inset: auto 12px 12px auto;
}

.call-now-button:hover {
  color: #000;
}

.call-now-button.mobile {
  display: none;
}

.call-now-button.desktop {
  border-style: solid;
  border-color: #dadada;
  box-shadow: 0 2px 5px #0003;
}

.text-span-22 {
  font-size: 59px;
}

.image {
  z-index: 10;
  object-fit: contain;
  width: auto;
  max-width: 390px;
  margin-top: 0;
  position: relative;
  inset: auto;
}

.text-span-23 {
  color: var(--primary-red);
  font-size: 59px;
}

.text-span-24 {
  padding-right: 7px;
  font-size: 45px;
  font-style: italic;
  text-decoration: underline;
}

.heading-2 {
  margin-top: 0;
}

.text-span-25 {
  color: var(--primary-red);
}

.image-2 {
  width: 200px;
}

.uui-button {
  grid-column-gap: .5rem;
  border: 1px solid var(--untitled-ui--primary600);
  background-color: var(--untitled-ui--primary600);
  color: var(--untitled-ui--white);
  text-align: center;
  white-space: nowrap;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  padding: .625rem 1.125rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 1px 2px #1018280d;
}

.uui-button:hover {
  border-color: var(--untitled-ui--primary700);
  background-color: var(--untitled-ui--primary700);
}

.uui-button:focus {
  background-color: var(--untitled-ui--primary600);
  box-shadow: 0 1px 2px 0 #1018280d, 0 0 0 4px var(--untitled-ui--primary100);
}

.uui-button-row {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.uui-button-row.button-row-center {
  justify-content: center;
}

.uui-space-small {
  width: 100%;
  min-height: 1.5rem;
}

.uui-text-size-large {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.uui-space-xxsmall {
  width: 100%;
  min-height: .5rem;
}

.uui-heading-xxsmall {
  color: var(--untitled-ui--gray900);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-avatar-group_item, .uui-avatar-stack_item {
  border: 2px solid var(--untitled-ui--white);
  background-color: var(--untitled-ui--white);
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -1rem;
}

.uui-avatar-stack_item.featured {
  width: 3.5rem;
  height: 3.5rem;
  position: relative;
}

.avatar-stack_component {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  width: auto;
  margin-bottom: 2rem;
  margin-right: 1rem;
  display: flex;
}

.uui-text-align-center {
  text-align: center;
}

.uui-faq04_cta {
  background-color: var(--untitled-ui--gray50);
  border-radius: 1rem;
  margin-top: 4rem;
  padding: 2rem;
}

.uui-space-medium {
  width: 100%;
  min-height: 2rem;
}

.uui-text-size-medium {
  color: var(--untitled-ui--gray600);
  letter-spacing: normal;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.uui-faq04_answer {
  overflow: hidden;
}

.accordion-icon_vertical-line {
  background-color: var(--untitled-ui--gray400);
  border-radius: 1px;
  width: 2px;
  height: .75rem;
  position: absolute;
}

.accordion-icon_horizontal-line {
  background-color: var(--untitled-ui--gray400);
  border-radius: 1px;
  width: .75rem;
  height: 2px;
  position: absolute;
}

.accordion-icon_component {
  border: 2px solid var(--untitled-ui--gray400);
  color: var(--untitled-ui--gray400);
  border-radius: 50%;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  position: relative;
}

.uui-faq04_icon-wrapper {
  color: var(--untitled-ui--primary600);
}

.uui-faq04_heading {
  color: var(--untitled-ui--gray900);
  letter-spacing: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
}

.uui-faq04_question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
}

.uui-faq04_accordion {
  border-bottom: 1px solid var(--untitled-ui--gray200);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.uui-faq04_accordion.last-item {
  border-bottom-color: #0000;
}

.uui-faq04_layout {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.uui-faq04_component {
  margin-top: 4rem;
}

.uui-space-xsmall {
  width: 100%;
  min-height: 1rem;
}

.uui-heading-medium {
  color: var(--untitled-ui--gray900);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.uui-heading-subheading {
  color: var(--untitled-ui--primary600);
  margin-bottom: .75rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.uui-max-width-large {
  width: 100%;
  max-width: 48rem;
}

.uui-max-width-large.align-center {
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.uui-padding-vertical-xhuge {
  padding-top: 40px;
  padding-bottom: 80px;
}

.uui-padding-vertical-xhuge.btm-none {
  padding-bottom: 0;
}

.uui-container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.uui-page-padding {
  padding-left: 2rem;
  padding-right: 2rem;
}

.paragraph-5 {
  font-size: 17px;
}

.heading-3 {
  font-size: 40px;
}

.text-span-26, .text-span-27 {
  color: var(--primary-red);
}

.heading-4 {
  text-align: center;
  max-width: 800px;
}

.text-span-28, .text-span-29, .text-span-30, .text-span-31, .text-span-32, .text-span-33 {
  color: var(--primary-red);
}

.link-block {
  margin-top: -10px;
}

.grey-link-2 {
  color: #898e91;
}

.grey-link-2:hover {
  color: #ea2f39;
}

.form-block-6 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  margin-bottom: 0;
  display: flex;
}

.grey-text-2 {
  color: #898e91;
  line-height: 1.7em;
}

.error-message-2 {
  color: #ea2f39;
  background-color: #0000;
  padding: 0;
}

.contact-form-3 {
  text-align: center;
  width: 50%;
  max-width: 780px;
  padding: 40px 35px;
  box-shadow: 0 0 50px 14px #0000000a;
}

.button-primary-2 {
  text-align: center;
  cursor: pointer;
  background-color: #ea2f39;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 21px 32px;
  transition: all .3s;
}

.button-primary-2:hover {
  opacity: 1;
  color: #fff;
  background-color: #dc0d06;
}

.button-primary-2.submit {
  margin-top: 30px;
}

.button-primary-2.submit.oth {
  margin-top: 0;
}

.margin-bottom-51 {
  margin-bottom: 30px;
}

.get-in-touch-2 {
  color: var(--primary-red);
  margin-top: 4px;
  font-size: 16px;
  font-weight: 800;
}

.base-form-field-2 {
  color: #898e91;
  background-color: #0000;
  border: 1px #000;
  height: 57px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-family: Poppins, sans-serif;
}

.base-form-field-2:focus {
  color: #131c21;
}

.base-form-field-2::placeholder {
  color: #898e91;
}

.heading-5 {
  margin-top: 0;
}

.icont-2 {
  color: #fff;
  background-color: #ea2f39;
  border-radius: 50%;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  font-family: "Icon Font 3", sans-serif;
  font-size: 13px;
  line-height: 1;
  display: flex;
}

.input-container-2 {
  background-color: #f3f5f6;
}

.success-message-2 {
  background-color: #ffffff08;
}

.text-span-34, .text-span-35, .text-span-36, .text-span-37, .text-span-38, .text-span-39, .text-span-40 {
  color: var(--primary-red);
}

.image-3 {
  height: 33px;
}

.image-3.oth {
  height: 27px;
  margin-bottom: 3px;
}

.paragraph-6 {
  margin-bottom: 15px;
}

.text-span-41, .text-span-42, .text-span-43, .text-span-44 {
  color: var(--primary-red);
}

.image-4 {
  flex: 1;
  height: 30px;
  max-height: 40px;
}

.image-4.oth {
  height: 30px;
  margin-bottom: 5px;
}

.text-span-45, .text-span-46 {
  color: var(--primary-red);
}

.text-span-49, .paragraph-9 {
  font-size: 17px;
}

.text-span-50 {
  color: var(--primary-red);
}

.text-block-53 {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 13px;
}

.text-block-54 {
  font-size: 18px;
}

.text-span-51, .text-span-52, .text-span-53, .text-span-54 {
  color: var(--primary-red);
}

@media screen and (min-width: 1280px) {
  .home-logistics-section {
    justify-content: flex-start;
    align-items: center;
    max-width: 1400px;
    margin-bottom: 100px;
  }

  .video-container {
    width: 55%;
  }

  .media-section {
    padding-left: 100px;
    padding-right: 75px;
  }

  .video-additional-image {
    max-width: 460px;
    bottom: -200px;
  }

  .video-additional-image.size {
    max-width: 360px;
  }

  .home-testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .home-testimonials.oth10 {
    padding-top: 70px;
  }

  .home-testimonials.jo {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .pricing.price-item-center.home-4-pricing-item-central {
    position: relative;
  }

  .pricing-background {
    display: none;
  }

  .main-banner-section {
    padding-top: 210px;
    padding-bottom: 160px;
  }

  .main-banner-section.padding {
    padding-bottom: 130px;
  }

  .bottom-menu {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    width: 100%;
  }

  .history-item-contents {
    height: 100%;
  }

  .slider-additional-image {
    display: none;
  }

  .optimization-logistics {
    margin-bottom: 59px;
  }

  .optimization-logistics-title {
    padding-right: 40px;
  }

  .photos-section {
    width: 100%;
  }

  .photos-section-image {
    width: 25%;
  }

  .logistic-solutions-item.central-item {
    padding-bottom: 25px;
  }

  .logistic-solution-item-info {
    padding-left: 40px;
    padding-right: 40px;
  }

  .our-mission-image {
    width: 50%;
  }

  .single-blog-title-container {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-title-author {
    margin-top: 100px;
  }

  .blog-socials-links.bottom-social-link {
    border: 1px solid #00000014;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    transition: color .4s, background-color .4s;
    display: flex;
  }

  .blog-socials-links.bottom-social-link:hover {
    color: #fff;
    background-color: #ff3f39;
  }

  .single-blog-socials-links {
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: flex;
  }

  .top-baneer-container {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .slider-left-arrow-icon.black-slider-arrow, .slider-right-arrow-icon {
    font-family: "Icon Font 3", sans-serif;
  }

  .slider-content-container {
    padding-left: 60px;
  }

  .slider-content-buttons {
    flex-direction: row;
  }

  .video-slider-additional-image-1, .video-slider-additional-image-2 {
    display: block;
  }

  .provide-content-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .provide-content-container.oth {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .item-container-background {
    padding-left: 52px;
    padding-right: 52px;
  }

  .info-block-content {
    padding-left: 50px;
    padding-right: 50px;
  }

  .probressbar-container.padding {
    padding-bottom: 130px;
  }

  .home-4-slider-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .grid-features {
    grid-template-columns: 1fr 1fr;
  }

  .home-4-get-touch {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .werehouse-services-content-item {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .distribution-slider {
    margin-top: 130px;
  }

  .distribution-slider.margin-bottom {
    margin-bottom: 130px;
  }

  .distribution-more-info {
    margin-top: 130px;
  }

  .headings-container.icon-typo-container.licensing-images {
    justify-content: space-between;
  }

  .style-guide-icon-set-container-item.images-licensing-container {
    margin-bottom: 0;
  }

  .style-guide-buttons-content-item {
    margin-right: 60px;
  }

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

  .section.backgroung-image {
    padding-bottom: 80px;
  }

  .section.small-top {
    padding-top: 0;
  }

  .section.small-top.oth {
    padding-top: 40px;
  }

  .start-save-section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .link-licensing-image {
    width: 33%;
  }

  .shop-list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cart-button {
    padding-left: 40px;
  }

  .menu-wrap {
    grid-column-gap: 40px;
  }

  .nav-menu-2 {
    flex: 1;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .nav-container.spacing {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .shop-details-block {
    margin-top: 120px;
  }

  .details-section.space-bottom {
    padding-bottom: 130px;
  }

  .style-guide-body-wrapper {
    margin-right: 60px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .spacing-system-column {
    padding-right: 30px;
  }

  .landing-title {
    max-width: 1000px;
    font-size: 65px;
  }

  .landing-inner-pages-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid-services {
    grid-template-columns: 1fr 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .white-success-message {
    background-color: #ddd0;
  }

  .description-services {
    min-height: 183px;
  }

  .image {
    flex: 0 auto;
    max-width: 460px;
    position: static;
  }
}

@media screen and (min-width: 1440px) {
  .home-logistics-section {
    max-width: 1400px;
    height: 400px;
    display: flex;
  }

  .video-container {
    width: 56%;
  }

  .media-section {
    width: 100%;
  }

  .video-additional-image.size {
    display: none;
  }

  .home-testimonials.oth10, .home-testimonials.jo {
    justify-content: center;
    align-items: center;
  }

  .pricing-item {
    top: -300px;
  }

  .pricing-background {
    display: block;
  }

  .pricing-additional-image-1, .pricing-additional-image-2 {
    display: none;
  }

  .main-banner-section {
    padding-top: 180px;
    padding-bottom: 140px;
  }

  .slider-additional-image {
    display: inline-block;
    left: 5%;
  }

  .background-image-2 {
    width: 20%;
  }

  .section.small-top {
    padding-top: 0;
  }

  .section.small-top.oth {
    padding-top: 40px;
  }

  .landing-title {
    max-width: none;
    font-size: 70px;
  }
}

@media screen and (min-width: 1920px) {
  .home-slider-item-1 {
    background-size: cover;
  }

  .home-container.testimonials-container {
    flex: 0 auto;
    max-width: 100%;
    overflow: hidden;
  }

  .video-container {
    width: 56%;
  }

  .media-section {
    padding-left: 140px;
  }

  .media-section-description {
    max-width: 570px;
  }

  .video-play-button {
    width: 100px;
    height: 100px;
  }

  .home-2-slider-background.home-2-slider-background-image {
    background-image: url('../images/blured-boxes-2.jpg');
  }

  .home-testimonials {
    padding-top: 110px;
    padding-left: 10%;
  }

  .home-testimonials.oth.oth2 {
    justify-content: center;
    align-items: center;
    padding-left: 0%;
  }

  .home-testimonials.oth.oth3, .home-testimonials.oth._555, .home-testimonials.oth10, .home-testimonials.jo {
    padding-left: 0%;
  }

  .home-testimonials-container {
    background-color: #0000;
    max-width: 1400px;
  }

  .pricing {
    max-height: 550px;
  }

  .pricing-additional-image-1, .pricing-additional-image-2 {
    display: block;
  }

  .main-banner-section {
    background-image: linear-gradient(to bottom, null, null), url('../images/Premier-Cover.jpg');
    background-position: 0 0, 50%;
  }

  .slider-additional-image {
    left: 10%;
  }

  .top-baneer-container {
    min-height: 85vh;
  }

  .testimonials-container {
    margin-left: 15%;
    padding-right: 0;
  }

  .testimonials-background-text {
    position: absolute;
    bottom: 25%;
    left: 0%;
    right: 0%;
  }

  .background-image-1 {
    width: 25%;
  }

  .background-image-2 {
    width: 20%;
  }

  .pricing-packs-background {
    background-image: url('../images/Mask-Group.blured-1.jpg');
    background-position: 0%;
  }

  .distribution-slider-container {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-slider {
    background-color: #0000;
  }

  .testimonials-slider.home-3-tstimonials-slider {
    max-width: 1800px;
  }

  .testimonials-slider.testimonials-page-testimonials {
    max-width: 100%;
  }

  .testimonials-slide {
    box-shadow: none;
    background-color: #0000;
    padding-right: 30px;
  }

  .mask-7 {
    width: 100%;
    max-width: 1000px;
    overflow: visible;
  }

  .slide-nav-10 {
    display: none;
  }

  .nav-container {
    padding-left: 80px;
    padding-right: 80px;
  }

  .landing-title {
    font-size: 75px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 70px;
  }

  blockquote {
    width: 90%;
  }

  .button-primary {
    align-self: flex-start;
  }

  .button-primary.light-button {
    margin-left: 0;
    margin-right: 0;
  }

  .button-primary.hidden-tablet {
    display: none;
  }

  .banner-first-button.light-button {
    margin-right: 0;
  }

  .banner-first-button.light-button.additional-block-button {
    margin-top: 20px;
    position: static;
  }

  .home-container {
    flex-direction: row;
    place-content: space-between center;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .home-container.testimonials-container {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 15px;
  }

  .provide-title {
    margin-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .subtitle {
    background-color: #0000;
  }

  .subtitle.banner-top-title {
    font-size: 17px;
  }

  .trasport-title {
    font-size: 23px;
  }

  .transport-images {
    max-width: 280px;
  }

  .services-background {
    background-color: #0000;
  }

  .home-logistics-section {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
    display: flex;
  }

  .title-background {
    background-color: #ff3f39;
    justify-content: center;
    align-items: center;
    display: flex;
    transform: skew(-15deg);
  }

  .text-span {
    padding-left: 10px;
  }

  .video-container {
    width: 100%;
    max-width: none;
    min-height: 350px;
    max-height: none;
  }

  .media-section {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    max-height: none;
    margin-right: 0;
    padding: 50px;
    position: relative;
  }

  .media-section-description {
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 35px;
    font-size: 18px;
    line-height: 1.5;
  }

  .video-additional-image {
    display: none;
  }

  .contact-form {
    width: 100%;
  }

  .contact-info {
    align-self: center;
    width: 90%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .get-in-touch {
    text-align: center;
  }

  .icont {
    color: #fff;
  }

  .contact-info-container {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .contact-info-socials {
    justify-content: center;
    display: flex;
  }

  .home-slider-item {
    z-index: 100;
  }

  .home-2-slider {
    z-index: 50;
    max-width: none;
  }

  .home-2-slider.get-touch-content {
    padding-left: 0;
    padding-right: 0;
  }

  .right-arrow-2.hidden-slider-arrow {
    display: none;
    overflow: hidden;
  }

  .slide-item-info {
    min-height: auto;
  }

  .counter {
    font-size: 40px;
  }

  .counter-title {
    font-size: 23px;
  }

  .progressbar-item {
    height: auto;
  }

  .home-testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-testimonials.oth.oth2 {
    padding-top: 80px;
  }

  .home-testimonials.oth10 {
    padding-top: 95px;
  }

  .testimonials-title {
    object-fit: fill;
    width: 100%;
    max-width: 750px;
    font-size: 20px;
    display: block;
    overflow: hidden;
  }

  .home-testimonials-item-rev {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .home-testimonials-item-author {
    justify-content: center;
  }

  .home-testimonials-container {
    min-width: auto;
  }

  .pricing-container {
    max-height: none;
    margin-top: 20px;
  }

  .pricing-item {
    z-index: 1;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    place-content: space-around center;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    top: 0;
  }

  .pricing-item.pricing-packs-item {
    bottom: 60px;
  }

  .pricing {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 47.9%;
    height: 100%;
    max-height: none;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
  }

  .pricing.price-item-center {
    border: 1px #000;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    box-shadow: 7px 7px 50px #00000014;
  }

  .pricing.price-item-center.home-4-pricing-item-central {
    border-top-color: var(--primary-red);
    order: 1;
    width: 46%;
    max-width: none;
    margin-left: 0;
    padding-bottom: 45px;
  }

  .pricing.home-2-pricing-item {
    width: 100%;
    max-width: 47%;
  }

  .pricing.home-4-pricing-item {
    width: 45%;
    max-width: none;
    margin-left: 15px;
    margin-right: 15px;
  }

  .pricing.centered {
    padding-top: 20px;
  }

  .pricing-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .pricing-background {
    display: none;
  }

  .subscribe-newsletter {
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-container {
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-lists {
    width: 100%;
    max-width: 198px;
  }

  .footer-lists-title {
    font-size: 18px;
  }

  .footer-item-container {
    width: 15%;
  }

  .footer-item-container.item-logo {
    width: 30%;
  }

  .footer-item-container.oth {
    width: 26%;
  }

  .footer-item-container._2 {
    width: 24%;
  }

  .main-banner-section {
    padding-bottom: 80px;
    position: relative;
  }

  .top-banner-container {
    max-width: 650px;
  }

  .banner-bottom-menu {
    flex-flow: wrap;
    flex: 0 auto;
    align-content: space-between;
    margin-top: 0;
    display: none;
    position: absolute;
    inset: auto 0% 0%;
  }

  .bottom-menu {
    flex-wrap: wrap;
    width: 100%;
    display: none;
    position: absolute;
    inset: auto 0% 0%;
  }

  .shipments-title {
    padding-left: 15px;
    padding-right: 15px;
  }

  .columns-6 {
    margin-bottom: 90px;
  }

  .shipments-progressbar-item {
    background-color: #fff;
    width: 46%;
    height: 544px;
    margin-bottom: 30px;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .shipments-progressbar-item.central-item {
    width: 46%;
    height: 544px;
    margin-left: 15px;
    margin-right: 15px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .shipments-progressbar-item.central-item.distribution-feature {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .shipments-progressbar-item.distribution-feature {
    width: 47.9%;
    height: 440px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 30px;
  }

  .history-section {
    padding-bottom: 100px;
  }

  .history-title {
    padding: 100px 15px 35px;
  }

  .history-item-contents {
    flex-direction: column;
    align-items: center;
  }

  .history-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .history-item-content {
    margin-top: 30px;
  }

  .mask-2 {
    padding-top: 0;
    padding-bottom: 100px;
  }

  .history-slide-title {
    font-size: 23px;
  }

  .history-slider-item-image {
    width: 50%;
    height: 100%;
    margin-right: 20px;
  }

  .slider-additional-image {
    display: none;
  }

  .optimization-logistics {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .partners-section {
    margin-bottom: 60px;
  }

  .partners-section-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: wrap;
    place-content: space-around center;
    align-items: center;
  }

  .partners-section-container.oth {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .partner-link {
    width: auto;
    min-height: auto;
  }

  .partner-link.oth {
    padding-left: 20px;
  }

  .partner-link.oth.reg {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: auto;
    padding-left: 37px;
  }

  .partner-link.reg {
    width: auto;
  }

  .subscribe-title {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40%;
    display: flex;
  }

  .bottom-subscribe-form {
    width: 55%;
  }

  .optimization-logistics-title {
    padding-left: 15px;
    padding-right: 15px;
  }

  .photos-section-image {
    width: 25%;
  }

  .subtitle-grey {
    margin-bottom: 40px;
  }

  .slider-arrow-icon {
    padding-left: 5px;
  }

  .logistic-solutions-item {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
  }

  .logistic-solutions-item.central-item {
    flex: 0 auto;
    order: 1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    margin-top: 0;
    display: flex;
  }

  .logistic-solutions-item.full-width-tablet {
    width: 100%;
  }

  .logistic-solution-item-info {
    min-height: auto;
  }

  .logistic-solution-image.central-image {
    height: 255px;
  }

  .help-businesses {
    padding-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .mission-top-banner {
    padding: 195px 15px 190px;
  }

  .our-mission-banner-title {
    font-size: 65px;
  }

  .icon-5 {
    padding-left: 0;
    font-size: 14px;
  }

  .mission-info-content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .our-mission-image {
    width: 100%;
    height: 300px;
  }

  .mossion-info-drive-content {
    padding-right: 15px;
  }

  .mission-info-drive-video {
    margin-left: 15px;
    margin-right: 0;
  }

  .contact-location-bacground {
    display: none;
  }

  .shipment-progressbar-item {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-wrap: wrap;
    place-content: space-around center;
  }

  .single-blog-content {
    max-width: none;
    padding-top: 60px;
  }

  .single-blog-title {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-details-title {
    font-size: 45px;
  }

  .single-blog-socials-links {
    margin-left: 15px;
    margin-right: 15px;
  }

  .feature-block-item {
    width: 47.9%;
  }

  .feature-block-item.last {
    margin-bottom: 0;
  }

  .home-feature-block-item {
    width: 47.9%;
  }

  .home-contact-info {
    width: 47%;
  }

  .home-contact-info.last {
    width: 100%;
  }

  .counter-container {
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .counter-item {
    width: 47%;
  }

  .socials-link-item {
    margin-left: 50px;
  }

  .graphic-image {
    width: 377px;
  }

  .businesses-graphic {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse;
    align-items: center;
  }

  .businesses-graphic-content {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    display: flex;
  }

  .businesses-graphic-content.oth, .businesses-graphic-content.oth3 {
    order: -1;
  }

  .feature-block-container {
    width: 100%;
    height: 100%;
  }

  .left-arrow-4, .right-arrow-4 {
    top: 420px;
    bottom: auto;
  }

  .home-3-slider-3-item-container {
    flex-direction: column;
  }

  .slider-image-container {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .slider-content-container {
    width: 100%;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }

  .home-3-slide-image {
    object-fit: cover;
    width: 100%;
    height: 480px;
    min-height: auto;
  }

  .slider-content-title {
    font-size: 40px;
  }

  .testimonials-container {
    margin-left: 15px;
    margin-right: 0;
    padding-left: 0;
  }

  .partner-container {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonials-background-text {
    padding-left: 0%;
    font-size: 17vh;
  }

  .testimonials-background-text.home-3-testimonials-backgroud, .help-businesses-background {
    display: none;
  }

  .home-2-slide-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-3-slider-item-1 {
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }

  .home-3-slider-item-2, .home-3-slider-item-3 {
    background-position: 0 0;
  }

  .short-info-container {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .home-3-under-navigation-section {
    display: none;
  }

  .under-navigation-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .number-progressbar-container {
    margin-bottom: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .get-quote {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    margin-top: 0;
  }

  .home-3-video-slider {
    margin-bottom: 70px;
  }

  .right-arrow-6, .left-arrow-6 {
    bottom: -70px;
  }

  .home-3-video-slider-2 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .video-slider-background {
    bottom: -70px;
  }

  .video-slider-additional-image-1, .video-slider-additional-image-2 {
    display: none;
  }

  .lists-container {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .home-3-testimonials-slider-container {
    padding-bottom: 40px;
  }

  .home-inline-progressbar {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .inline-progressbar-container {
    margin-bottom: 40px;
  }

  .top-banner-title-heading {
    font-size: 45px;
  }

  .provide-content-container {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .provide-item-image-container, .numbers-progressbar-item {
    width: 50%;
  }

  .slider-aditional-image {
    z-index: 10;
  }

  .pricing-packs-background {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: none;
    bottom: 0;
  }

  .pricing-aditional-image {
    display: none;
  }

  .home-2-cpt-item:hover {
    transform: translate(-10px, -10px);
  }

  .services-image {
    width: 45%;
    margin-right: 15px;
  }

  .distribution-slider-container {
    margin-top: 65px;
    margin-bottom: 190px;
    position: relative;
  }

  .services-list-container {
    grid-template-columns: 1fr 1fr;
  }

  .services-list-item {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .we-mooving-item {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .person-item-info {
    padding-right: 20px;
  }

  .career-nimbers-progressbar {
    margin-top: 100px;
  }

  .team-list-item-location {
    padding-left: 15px;
    padding-right: 15px;
  }

  .team-list-button-link {
    align-items: center;
  }

  .not-found-header {
    font-size: 180px;
  }

  .button {
    font-size: 14px;
  }

  .home-4-top-banner-heading {
    text-align: center;
  }

  .content-buttons {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .top-banner-slider-title {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .logistics-content-info {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    margin-top: 80px;
  }

  .logistics-info-block {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .feature-block-heading {
    font-size: 20px;
  }

  .feature-block-icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .item-container-background {
    width: 100%;
    height: 100%;
    padding-left: 16px;
    padding-right: 15px;
  }

  .content-info-title, .content-info-text {
    width: 100%;
  }

  .info-block-container {
    width: 47.9%;
  }

  .info-block-content.background-1, .info-block-content.background-2, .info-block-content.background-3 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .home-4-glogal-shipping {
    margin-top: 170px;
  }

  .tabs {
    padding-left: 15px;
    padding-right: 15px;
    top: -80px;
  }

  .contact-form-2 {
    width: 100%;
  }

  .tab-container {
    flex-direction: column;
  }

  .tab-aditional-block {
    width: 100%;
    max-width: 500px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .aditional-block-container {
    flex-direction: column;
    min-height: auto;
    padding: 30px;
  }

  .white-text {
    text-align: center;
    font-size: 50px;
  }

  .white-text.maxw {
    text-align: left;
  }

  .white-text.oth {
    font-size: 50px;
  }

  .probressbar-container {
    flex-direction: column;
    padding-bottom: 190px;
  }

  .progressbar-title {
    width: 100%;
  }

  .progressbar-container {
    width: 100%;
    margin-top: 20px;
  }

  .progressbar-percent-item {
    padding-left: 40px;
    padding-right: 40px;
  }

  .home-4-slider-section {
    margin-bottom: 0;
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-policy-container {
    padding-top: 60px;
  }

  .text-info-description {
    text-align: center;
  }

  .pricing-policy-base-container {
    margin-top: -210px;
  }

  .home-4-we-best-section {
    margin-bottom: 60px;
    padding-top: 60px;
  }

  .title-content {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .grid-features {
    width: 100%;
  }

  .home-4-get-touch {
    padding-top: 70px;
    padding-bottom: 95px;
  }

  .werehouse-services-content {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .werehouse-services-content-item {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .content-item-info {
    order: -1;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 0;
  }

  .content-item-image {
    width: 100%;
  }

  .title-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  .title-block.spacing {
    max-width: 600px;
  }

  .distribution-more-info {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .more-info-image {
    align-items: center;
    display: flex;
  }

  .value-added-item {
    grid-template-columns: 1fr 1fr;
    margin-top: 50px;
  }

  .value-additional-block-container.margin {
    margin-bottom: 0;
  }

  .not-found-description {
    color: var(--white);
    text-align: center;
    font-size: 30px;
  }

  .pick-choose-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .typography-content {
    width: 45%;
  }

  .headings-container.icon-typo-container.licensing-images {
    justify-content: space-between;
  }

  .style-guide-icon-set-container-item.images-licensing-container {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .style-guide-buttons-container {
    flex-wrap: wrap;
  }

  .style-guide-buttons-content-item {
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    margin-bottom: 30px;
    display: flex;
  }

  .base-container.row-container {
    align-items: center;
  }

  .row-container {
    flex-direction: column;
  }

  .white-text-align-left.top-banner-text {
    font-size: 18px;
  }

  .dropdown-toggle-2 {
    justify-content: space-between;
  }

  .accordion-item-heading {
    font-size: 20px;
    line-height: 24px;
  }

  .dropdown-list-3.w--open {
    padding-left: 50px;
    padding-right: 50px;
  }

  .history-slider-left-arrow {
    margin-left: auto;
    margin-right: auto;
    top: auto;
    bottom: 0%;
    right: 60px;
  }

  .history-slider-right-arrow {
    margin-left: auto;
    margin-right: auto;
    inset: auto 0% 0% 60px;
  }

  .banner-heading {
    font-size: 65px;
  }

  .banner-heading.white-text {
    font-size: 62px;
  }

  .link-licensing-image {
    padding-left: 20px;
    padding-right: 20px;
  }

  .carts-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .block-with-space {
    justify-content: space-between;
  }

  .form-content {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column-reverse;
  }

  .paragraph-large.oth {
    text-align: center;
  }

  .image-cover {
    object-fit: contain;
  }

  .image-cover.oth {
    width: 50%;
    max-height: 250px;
  }

  .shop-list.details {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .shop-item.details {
    width: 48%;
  }

  .button-wrap {
    flex: 1;
    justify-content: flex-end;
  }

  .checkout-form {
    padding-top: 140px;
  }

  .row-checkout {
    flex-direction: column;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .header-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .header-link.white {
    color: var(--primary-black);
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
  }

  .menu-wrap {
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: flex;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
  }

  .nav-item-title.white {
    color: var(--primary-black);
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.megamenu {
    width: auto;
    height: 270px;
    padding-left: 20px;
    padding-right: 40px;
    overflow: scroll;
  }

  .brand-tablet {
    display: block;
  }

  .menu-button-2 {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

  .menu-button-2.w--open {
    background-color: #0000;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .nav-menu-2 {
    background-color: #fff;
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-icon {
    margin-right: 1.5px;
    display: block;
    inset: 0% 0 0% auto;
  }

  .nav-dropdown-icon.white {
    color: var(--primary-black);
  }

  .nav-dropdown-column {
    justify-content: center;
    width: 180px;
  }

  .image-burger {
    margin-bottom: 4px;
  }

  .image-burger.invert {
    filter: invert();
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .button-tablet {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    display: flex;
  }

  .shop-image-lightbox-link {
    height: 300px;
  }

  .shop-details-wrapper {
    grid-column-gap: 30px;
  }

  .shop-details-block {
    padding: 30px;
  }

  .details-section {
    padding-top: 160px;
  }

  .more-images-list {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .style-guide-body-wrapper {
    width: 100%;
  }

  .headings-container-2 {
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper {
    grid-row-gap: 20px;
    flex-wrap: wrap;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: nowrap;
  }

  .spasing-system-image-mobile {
    width: 70%;
  }

  .middlr-style-spacing-mobile {
    top: 26%;
  }

  .spacing-wrapper-mobile {
    width: 70%;
  }

  .spacing-columns {
    flex-flow: wrap;
    display: flex;
  }

  .top-style-spacing-mobile {
    top: 3%;
  }

  .spacing-system-title {
    font-size: 25px;
  }

  .middle-style-spacing-desktop {
    top: 30%;
  }

  .spacing-system-image {
    width: 75%;
  }

  .top-style-spacing-desktop {
    top: 4%;
  }

  .bottom-style-spacing-desktop, .bottom-style-spacing-mobile {
    bottom: 6%;
  }

  .landing-banner-title-wrapper {
    width: 90%;
  }

  .landing-title {
    max-width: none;
    font-size: 55px;
  }

  .landing-banner-image {
    max-width: 95%;
  }

  .section-title-wrapper-lp {
    max-width: 560px;
  }

  .landing-home-pages-wrapper {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .landing-inner-page-item.home-screen {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-lp-title-description {
    width: 80%;
  }

  .section-lp-title-description-2.long-text {
    width: 100%;
  }

  .landing-performance-item-title {
    max-width: 220px;
    font-size: 18px;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 60px;
  }

  .landing-features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title-wrapper {
    max-width: 560px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .landing-download-block-wrapper {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px;
  }

  .landing-download-block-wrap {
    text-align: center;
    margin-bottom: 40px;
  }

  .animation-link {
    flex: none;
  }

  .blog-list {
    flex-flow: column;
  }

  .grid-info-content {
    grid-template-columns: 1fr 1fr;
  }

  .block-flex.tablet {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
  }

  .left-block {
    width: 55%;
  }

  .margin-bottom-30 {
    text-align: center;
    font-size: 18px;
  }

  .margin-bottom-30.oth2 {
    font-size: 16px;
  }

  .margin-bottom-30.oth3 {
    font-size: 28px;
  }

  .margin-bottom-30.contact {
    font-size: 35px;
  }

  .partners-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
  }

  .description-services {
    min-height: 183px;
  }

  .carts-block {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .partners-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .description-blog {
    min-height: 377px;
  }

  .pricing-wrap {
    margin-top: 60px;
    margin-bottom: 0;
  }

  .counter-block {
    flex-flow: wrap;
  }

  .carts-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .content-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .image-width {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
    display: flex;
  }

  .medium-block {
    width: 100%;
  }

  .hire-popup {
    max-width: 380px;
  }

  .hire-popup-wrap {
    display: none;
  }

  .call-now-button.mobile {
    background-color: var(--transparent);
    border-style: none;
    padding: 0;
    display: flex;
  }

  .call-now-button.desktop {
    display: none;
  }

  .text-span-22 {
    font-size: 52px;
  }

  .image {
    display: none;
  }

  .text-span-23 {
    font-size: 50px;
  }

  .uui-faq04_layout {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .uui-padding-vertical-xhuge.btm-none {
    padding-top: 3rem;
  }

  .heading-4 {
    font-size: 35px;
  }

  .contact-form-3 {
    width: 100%;
  }

  .margin-bottom-51, .get-in-touch-2 {
    text-align: center;
  }

  .icont-2 {
    color: #fff;
  }

  .image-3.oth {
    height: 27px;
  }

  .image-5 {
    max-width: 64px;
  }

  .paragraph-7 {
    text-align: center;
  }

  .heading-6 {
    font-size: 40px;
  }

  .paragraph-9 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 25px;
  }

  blockquote {
    width: 100%;
  }

  .banner-first-button {
    padding: 12px 20px;
  }

  .banner-first-button.light-button {
    margin-right: 20px;
  }

  .banner-first-button.light-button.additional-block-button {
    margin-top: 20px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .banner-first-button.oth {
    margin-top: 30px;
  }

  .banner-second-button {
    padding: 12px 20px;
  }

  .banner-buttons {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: row;
  }

  .slide-nav {
    display: none;
  }

  .subtitle {
    font-size: 15px;
  }

  .services-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .transport-images {
    max-width: 100%;
  }

  .title-background.bigger {
    padding-left: 20px;
    padding-right: 20px;
  }

  .video-container {
    width: 100%;
  }

  .media-section {
    padding: 30px;
  }

  .media-section-title {
    font-size: 32px;
  }

  .media-section-description {
    font-size: 16px;
  }

  .contact-form {
    padding: 40px 20px;
  }

  .contact-info-socials {
    flex-direction: row;
    justify-content: space-between;
    display: flex;
  }

  .mask {
    width: 100%;
    padding-top: 0;
  }

  .home-testimonials {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home-testimonials-item-author {
    justify-content: center;
  }

  .home-testimonials-container {
    min-width: 100%;
  }

  .pricing-item.pricing-packs-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing {
    width: 100%;
  }

  .pricing.price-item-center.home-4-pricing-item-central {
    width: 100%;
    max-width: none;
    margin-left: 15px;
    margin-right: 15px;
  }

  .pricing.home-2-pricing-item {
    width: 100%;
    max-width: 100%;
  }

  .pricing.home-4-pricing-item {
    width: 100%;
  }

  .pricing-title {
    font-size: 20px;
  }

  .subscribe-newsletter {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
  }

  .footer-socials-link {
    justify-content: space-around;
    display: flex;
  }

  .footer-social-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-item-container {
    width: 17%;
  }

  .footer-item-container.item-logo {
    flex-flow: column wrap;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
  }

  .footer-item-container.oth {
    width: 37%;
  }

  .footer-item-container._2 {
    width: 35%;
  }

  .main-banner-section {
    padding-top: 140px;
  }

  .top-banner-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .grey-large-text {
    text-align: center;
    margin-top: 30px;
  }

  .columns-6 {
    margin-bottom: 50px;
  }

  .shipments-progressbar-item, .shipments-progressbar-item.central-item, .shipments-progressbar-item.distribution-feature {
    width: 100%;
  }

  .history-section {
    padding-bottom: 60px;
  }

  .history-title {
    padding-top: 60px;
  }

  .history-item-contents {
    flex-direction: column;
  }

  .mask-2 {
    padding-bottom: 80px;
  }

  .partners-section {
    margin-top: 60px;
  }

  .partners-section-container.oth {
    justify-content: center;
    align-items: center;
  }

  .partner-link {
    width: auto;
  }

  .partner-link.oth {
    width: auto;
    padding-left: 20px;
  }

  .subscribe-title {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .bottom-subscribe-form {
    width: 100%;
  }

  .optimization-logistics-title {
    padding-bottom: 30px;
  }

  .subtitle-grey {
    font-size: 17px;
  }

  .logistic-solutions-item {
    width: 100%;
  }

  .help-businesses {
    padding-bottom: 60px;
  }

  .mission-info-drive {
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .mission-info-content {
    justify-content: center;
    align-items: center;
  }

  .mossion-info-drive-content {
    align-items: flex-start;
    width: 100%;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .mission-info-drive-video {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-location-item.central-item {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .subscribe-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .accordion-item-content-text {
    padding-left: 20px;
  }

  .single-blog-content {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .single-blog-socials-links {
    margin-bottom: 60px;
  }

  .feature-block-item, .home-feature-block-item {
    width: 100%;
  }

  .businesses-graphic-image {
    justify-content: center;
    align-items: center;
    max-width: 70%;
  }

  .businesses-graphic-image.oth {
    max-width: 70%;
  }

  .businesses-graphic-content {
    width: 100%;
  }

  .top-baneer-container {
    padding-top: 150px;
    padding-bottom: 110px;
  }

  .home-3-slider-container-3 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .left-arrow-4, .right-arrow-4 {
    inset: 290px auto auto 0%;
  }

  .home-3-slider-3-item-container {
    flex-direction: column;
  }

  .slider-image-container {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .slider-content-container {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 30px 30px 40px;
  }

  .slider-background {
    bottom: 0;
  }

  .home-3-slide-image {
    width: 100%;
    height: 350px;
  }

  .slider-content-title {
    font-size: 30px;
  }

  .slider-content-buttons {
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20px;
  }

  .testimonials-section {
    padding-left: 15px;
    padding-right: 0;
  }

  .testimonials-container {
    margin-left: 0;
  }

  .partner-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .testimonials-background-text {
    display: none;
  }

  .short-info-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .short-info-images {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .info-image-container {
    width: 100%;
    padding-bottom: 15px;
  }

  .image-background {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .under-navigation-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .number-progressbar-container {
    flex-direction: column;
    margin-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .title-heading-container, .title-text-container {
    width: 100%;
  }

  .get-quote {
    flex-direction: column;
  }

  .home-3-testimonials-slider-container {
    padding-bottom: 20px;
  }

  .home-inline-progressbar {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .inline-progressbar-container {
    margin-bottom: 20px;
  }

  .top-banner-title-heading {
    font-size: 35px;
  }

  .top-banner-title-text {
    font-size: 17px;
  }

  .home-2-partners {
    margin-top: 60px;
  }

  .provide-content-container {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .provide-item {
    justify-content: center;
    align-items: center;
  }

  .numbers-progressbar-item {
    width: 50%;
  }

  .slider-aditional-image {
    width: 40%;
    max-width: 100%;
  }

  .pricing-packs-background {
    max-height: 100%;
  }

  .services-image {
    width: 100%;
    max-width: 60%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .distribution-slider-container {
    margin-top: 60px;
    margin-bottom: 160px;
  }

  .services-list-container {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .we-mooving-item {
    grid-template-columns: 1fr 1fr;
  }

  .person-image {
    width: 100%;
  }

  .career-nimbers-progressbar {
    margin-top: 60px;
  }

  .team-list-item {
    flex-direction: column;
  }

  .team-list-item-position {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
  }

  .team-list-item-location {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .team-list-item-type {
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .team-list-item-button {
    justify-content: center;
    width: 100%;
  }

  .team-list-title {
    display: none;
  }

  .team-list-item-title {
    color: #131c21;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    line-height: 1.2;
  }

  .team-list-item-title-heading {
    display: block;
  }

  .not-found-header {
    font-size: 110px;
  }

  .home-4-top-banner-container {
    min-height: 650px;
  }

  .home-4-top-banner-heading {
    font-size: 40px;
  }

  .home-4-logistics-section {
    margin-bottom: 100px;
  }

  .home-4-logistics-features-blocks {
    flex-direction: column;
    margin-bottom: -100px;
  }

  .logistics-content-info {
    flex-direction: column;
    margin-top: 55px;
  }

  .logistics-info-block {
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .feature-block-item-container {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
  }

  .feature-block-item-container.item-1 {
    margin-left: 0;
  }

  .feature-block-heading {
    align-items: center;
    display: flex;
  }

  .feature-block-icon {
    margin-right: 20px;
  }

  .item-container-background {
    align-items: center;
  }

  .content-info-title, .content-info-text {
    width: 100%;
  }

  .info-block-container {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .info-block-content {
    padding: 30px 20px;
  }

  .info-block-title {
    font-size: 20px;
  }

  .home-4-glogal-shipping {
    margin-top: 100px;
  }

  .tabs {
    top: -50px;
  }

  .contact-form-2 {
    width: 100%;
    padding: 40px 20px;
  }

  .tab-container {
    flex-direction: column;
  }

  .tab-aditional-block {
    width: 100%;
  }

  .white-text {
    font-size: 40px;
  }

  .white-text.maxw {
    text-align: center;
  }

  .white-text.oth {
    font-size: 46px;
  }

  .container-5 {
    padding-left: 0;
  }

  .probressbar-container {
    padding-bottom: 160px;
  }

  .probressbar-container.padding {
    padding-bottom: 60px;
  }

  .progressbar-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .home-4-slider-section {
    padding-left: 0;
    padding-right: 0;
  }

  .home-4-pricing-policy {
    margin-bottom: 210px;
  }

  .pricing-policy-container {
    padding-top: 35px;
  }

  .home-4-we-best-section {
    margin-bottom: 60px;
    padding-top: 60px;
  }

  .grid-features {
    grid-template-columns: 1fr;
  }

  .home-4-get-touch {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .werehouse-services-content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .distribution-slider {
    margin-top: 60px;
  }

  .distribution-slider.margin-bottom {
    margin-bottom: 60px;
  }

  .distribution-more-info {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column-reverse;
    margin-top: 60px;
  }

  .distribution-more-info.oth.top {
    grid-column-gap: 46px;
    grid-row-gap: 46px;
  }

  .more-info-content {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .more-info-content.oth {
    order: -1;
  }

  .more-info-image {
    width: 100%;
    height: 300px;
  }

  .value-added-item {
    grid-template-columns: 1fr;
  }

  .value-additional-block-container.margin {
    margin-top: 60px;
  }

  .pick-choose-section {
    margin-bottom: 60px;
  }

  .pick-choose-container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-title {
    margin-top: 0;
  }

  .style-guide-palette {
    flex-wrap: wrap;
  }

  .typography-content, .typography-content.licensing-typography {
    width: 100%;
  }

  .style-guide-paragraphs {
    flex-wrap: wrap;
  }

  .style-guide-icon-set-container-item {
    margin-right: 40px;
  }

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

  .base-container.row-container {
    flex-direction: column;
  }

  .testimonials-slide {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-toggle-2 {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropdown-list-3.w--open {
    padding-left: 0;
    padding-right: 0;
  }

  .map-content {
    height: 250px;
  }

  .banner-heading {
    font-size: 45px;
  }

  .banner-heading.white-text {
    font-size: 40px;
  }

  .template-title {
    margin-bottom: 40px;
  }

  .link-licensing-image {
    width: 100%;
  }

  .carts-content {
    margin-bottom: 60px;
  }

  .section-info {
    padding-top: 60px;
  }

  .block-with-space {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    flex-flow: column;
  }

  .image-cover {
    max-height: 340px;
  }

  .shop-list {
    grid-template-columns: 1fr;
  }

  .shop-item.details {
    width: 100%;
  }

  .header-link {
    margin-left: 0;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand-2 {
    padding-left: 0;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
  }

  .shop-details-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .shop-details-image-lightbox {
    max-height: 300px;
  }

  .shop-details-block {
    margin-top: 60px;
  }

  .shop-details-title {
    font-size: 36px;
  }

  .section-two-side-title-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .details-section.space-bottom {
    padding-bottom: 60px;
  }

  .more-images-list {
    grid-template-columns: 1fr;
  }

  .style-guide-body-wrapper {
    width: 100%;
  }

  .link-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }

  .style-guide-div {
    grid-row-gap: 40px;
  }

  .headings-container-2 {
    grid-row-gap: 30px;
  }

  .headings-typography-wrapper {
    width: 100%;
  }

  .typography-hero-wrapper {
    grid-row-gap: 40px;
    margin-top: 20px;
  }

  .headers-wrapper {
    width: 100%;
    margin-top: 10px;
  }

  .middlr-style-spacing-mobile {
    top: 31%;
  }

  .spacing-wrapper, .spacing-wrapper-mobile {
    margin-top: 30px;
  }

  .spacing-columns {
    margin-top: 0;
  }

  .spacing-system-column {
    margin-top: 20px;
  }

  .top-style-spacing-mobile {
    top: 7%;
  }

  .typography-wrapper {
    margin-top: 20px;
  }

  .middle-style-spacing-desktop {
    top: 34%;
  }

  .top-style-spacing-desktop {
    top: 10%;
  }

  .bottom-style-spacing-desktop {
    bottom: 10%;
  }

  .bottom-style-spacing-mobile {
    bottom: 9%;
  }

  .blogs-list {
    grid-template-columns: 1fr;
  }

  .landing-title {
    font-size: 45px;
  }

  .section-title-wrapper-lp {
    margin-bottom: 40px;
  }

  .landing-home-pages-wrapper {
    grid-row-gap: 40px;
  }

  .section-lp-title-description {
    width: 100%;
  }

  .landing-performance-grid {
    grid-column-gap: 80px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .landing-features-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .section-title-wrapper {
    margin-bottom: 40px;
  }

  .landing-inner-pages-wrapper {
    grid-template-columns: 1fr;
  }

  .landing-download-block-wrap {
    margin-bottom: 30px;
  }

  .red-label-text.oth {
    font-size: 16px;
  }

  .grid-services {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .block-flex {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }

  .left-block {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .margin-bottom-30.oth {
    font-size: 26px;
  }

  .description-services {
    min-height: auto;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .description-blog {
    min-height: auto;
  }

  .image-width {
    height: auto;
  }

  .maxw-title-centered {
    font-size: 27px;
  }

  .maxw-title-centered.oth {
    font-size: 30px;
  }

  .hire-popup {
    max-width: 300px;
  }

  .hire-buttons-wrap {
    grid-row-gap: 20px;
    flex-flow: column wrap;
    align-items: stretch;
  }

  .text-span-22 {
    font-size: 32px;
  }

  .text-span-24 {
    font-size: 33px;
  }

  .heading-2 {
    font-size: 28px;
  }

  .uui-button {
    font-size: 1rem;
  }

  .uui-button:hover {
    border-color: var(--untitled-ui--primary600);
    background-color: var(--untitled-ui--primary600);
  }

  .uui-button-row {
    align-self: stretch;
  }

  .uui-button-row.button-row-center.is-reverse-mobile-landscape, .uui-button-row.is-reverse-mobile-landscape {
    flex-direction: column-reverse;
  }

  .uui-space-small {
    min-height: 1.25rem;
  }

  .uui-text-size-large {
    font-size: 1rem;
  }

  .uui-heading-xxsmall {
    font-size: 1.125rem;
  }

  .avatar-stack_component {
    margin-bottom: 1.5rem;
  }

  .uui-faq04_cta {
    margin-top: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .uui-space-medium {
    min-height: 1.5rem;
  }

  .uui-faq04_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .uui-faq04_list.first-col {
    border-bottom: 1px solid var(--untitled-ui--gray200);
  }

  .uui-faq04_layout {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .uui-faq04_component {
    margin-top: 3rem;
  }

  .uui-space-xsmall {
    min-height: .75rem;
  }

  .uui-heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .uui-padding-vertical-xhuge {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .uui-padding-vertical-xhuge.btm-none {
    padding-top: 0;
  }

  .uui-page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-4 {
    font-size: 30px;
  }

  .contact-form-3 {
    padding: 40px 20px;
  }

  .paragraph-8, .heading-7 {
    text-align: center;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 25px;
    line-height: 32px;
  }

  .home-slider-item-1 {
    background-image: linear-gradient(#000000b3, #000000b3), url('../images/Premier-Cover.jpg');
    background-position: 0 0, 44%;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
  }

  .home-slider-item-2 {
    background-image: linear-gradient(#000000b3, #000000b3), url('../images/warehouse.jpeg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .banner-slider {
    height: 100%;
  }

  .home-slider-item-3 {
    background-image: linear-gradient(#000000b3, #000000b3), url('../images/warehouse_containers.jpeg');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
  }

  .banner-slider-container {
    height: 100%;
    min-height: 750px;
    padding-top: 60px;
  }

  .banner-slider-container.home {
    padding-top: 80px;
  }

  .banner-first-button {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
  }

  .banner-first-button.light-button {
    margin-top: 0;
    margin-left: 5px;
    margin-right: 0;
  }

  .banner-first-button.light-button.additional-block-button {
    justify-content: center;
  }

  .banner-second-button {
    text-align: center;
    flex: 0 auto;
    width: 100%;
    display: block;
  }

  .banner-buttons {
    flex-flow: column;
    max-width: 300px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
  }

  .slide-nav {
    justify-content: flex-end;
    display: none;
  }

  .left-arrow, .right-arrow {
    display: block;
  }

  .subscribe-form-flex {
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .subscribe-form-input {
    min-height: 60px;
  }

  .home-container {
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .home-container.testimonials-container {
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hightlight-dot-title {
    font-size: 17px;
  }

  .hightlight-dot-title.oth {
    font-size: 28px;
  }

  .provide-title.home-2-provide-title {
    margin-top: 30px;
  }

  .provide-title.other-marg {
    padding-left: 0;
    padding-right: 0;
  }

  .subtitle {
    font-size: 14px;
  }

  .subtitle.banner-top-title {
    width: 170px;
  }

  .subtitle.desktop {
    display: none;
  }

  .subtitle.mobile {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    display: block;
  }

  .services-item {
    padding-left: 0;
    padding-right: 0;
  }

  .trasport-title {
    margin-top: 0;
    font-size: 20px;
  }

  .transport-images {
    max-width: 100%;
  }

  .home-logistics-section {
    margin-top: 10px;
    margin-bottom: 40px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .title-background.bigger {
    padding-left: 15px;
    padding-right: 15px;
  }

  .media-section {
    padding: 40px 15px;
  }

  .media-section-title {
    font-size: 21px;
    line-height: 1.2;
  }

  .media-section-description {
    font-size: 15px;
  }

  .video-additional-image {
    right: 0;
  }

  .contact-form {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 20px;
  }

  .contact-form-grid {
    grid-template-rows: 57px 57px 57px 57px auto auto auto auto;
    grid-auto-rows: 57px;
    grid-auto-flow: row;
    align-items: start;
  }

  .contact-info {
    width: 100%;
  }

  .get-in-touch {
    font-size: 15px;
  }

  .icont {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .contact-info-container {
    flex-flow: column;
    padding-top: 5px;
    padding-bottom: 15px;
  }

  .contact-info-socials {
    grid-column-gap: 30px;
    grid-row-gap: 15px;
    flex-flow: row;
    justify-content: center;
  }

  .home-2-slider {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .mask {
    width: 100%;
    margin-bottom: 0;
    overflow: hidden;
  }

  .left-arrow-2 {
    bottom: 0%;
  }

  .home-2-slider-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 100px;
    display: flex;
  }

  .paragraph, .paragraph.about-slider-item-description {
    text-align: center;
  }

  .home-2-slider-background {
    max-height: 100%;
    top: 0;
  }

  .home-2-slider-background.home-2-slider-background-image {
    background-image: url('../images/blured_boxes.jpg');
    max-height: 90%;
    top: auto;
    overflow: hidden;
  }

  .counter {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.2;
  }

  .counter-title {
    margin-top: 10px;
    font-size: 20px;
  }

  .progressbar-item {
    margin-top: 20px;
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .home-testimonials {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-testimonials.oth._555 {
    padding-top: 0;
  }

  .home-testimonials.oth10 {
    padding-top: 50px;
  }

  .testimonials-title {
    width: 100%;
    max-width: none;
    font-size: 18px;
  }

  .home-testimonials-item-rev {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .home-testimonials-item-author {
    justify-content: center;
  }

  .author-photo.author-1, .author-photo.author-2 {
    margin-right: 20px;
  }

  .home-testimonials-container {
    min-width: auto;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-testimonials-container.oth {
    padding-left: 0;
    padding-right: 0;
  }

  .home-pricing-plans {
    margin-top: 40px;
  }

  .pricing-item.home-2-pricing-items {
    margin-top: 0;
  }

  .pricing {
    width: 100%;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
  }

  .pricing.price-item-center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .pricing.price-item-center.home-4-pricing-item-central, .pricing.home-2-pricing-item, .pricing.home-4-pricing-item {
    margin-left: 0;
    margin-right: 0;
  }

  .pricing-title {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 260px;
    font-size: 20px;
  }

  .subscribe-newsletter {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer {
    padding-bottom: 20px;
  }

  .footer-container {
    padding-bottom: 0;
  }

  .footer-lists {
    text-align: center;
    display: block;
  }

  .footer-lists-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-links {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-logo-image {
    width: 200px;
  }

  .address {
    font-size: 14px;
  }

  .footer-socials-link {
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .footer-social-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-item-container {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    display: flex;
  }

  .footer-item-container.item-logo {
    align-items: center;
    margin-bottom: 20px;
    padding-right: 0;
  }

  .footer-item-container.oth {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .footer-item-container._2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    display: flex;
  }

  .banner-logo-image {
    max-width: 55px;
    margin-top: 60px;
    display: block;
  }

  .main-banner-section {
    padding-top: 150px;
  }

  .grey-large-text {
    margin-top: 0;
    font-size: 15px;
  }

  .shipments-progressbar-item, .shipments-progressbar-item.central-item {
    height: auto;
    margin-bottom: 20px;
    padding: 10px;
  }

  .shipments-progressbar-item.central-item.distribution-feature {
    padding-left: 30px;
    padding-right: 30px;
  }

  .history-title {
    padding-top: 60px;
    padding-bottom: 25px;
  }

  .history-item-contents {
    flex-direction: column;
    display: flex;
  }

  .history-item-content {
    align-items: center;
    display: flex;
  }

  .mask-2 {
    padding-top: 20px;
    padding-bottom: 100px;
  }

  .history-slide-title {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
  }

  .history-slider-item-image {
    width: 100%;
    height: 230px;
    margin-right: 0;
  }

  .optimization-logistics {
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .partners-section {
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .partners-section.oth.oth3 {
    margin-top: 27px;
  }

  .partners-section-container {
    flex-direction: row;
    align-content: space-around;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .partners-section-container.oth {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .partners-section-container.oth.bar {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    flex-flow: column;
  }

  .partners-section-container.oth2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .partner-link.oth, .partner-link.oth.reg {
    padding-left: 0;
  }

  .form-select-container {
    height: 57px;
  }

  .support-phone {
    margin-top: 10px;
    display: inline-block;
  }

  .optimization-logistics-title {
    padding-bottom: 30px;
  }

  .photos-section-image {
    width: 50%;
    height: 50vw;
  }

  .subtitle-grey {
    font-size: 15px;
  }

  .slide-item-link-button {
    text-align: center;
    position: static;
    bottom: 80px;
  }

  .logistic-solutions-item.central-item, .column-22 {
    margin-bottom: 20px;
  }

  .mission-top-banner {
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .our-mission-banner-title {
    font-size: 45px;
  }

  .mission-info-drive {
    flex-direction: column-reverse;
  }

  .our-mission-image {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .mossion-info-drive-content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 50px;
    padding-right: 0;
  }

  .mission-info-drive-video {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-location {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    top: 0;
  }

  .contact-location-item.central-item {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .location-container {
    flex-direction: column;
    margin-bottom: -150px;
    top: -150px;
  }

  .contact-location-container {
    padding-bottom: 20px;
  }

  .subscribe-container {
    flex-direction: column;
  }

  .accordion-item-content-text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-details-title {
    font-size: 35px;
  }

  .feature-block-item {
    width: 100%;
    height: 480px;
    margin-bottom: 40px;
  }

  .home-feature-block-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .home-contact-info {
    width: 100%;
  }

  .home-contact-info.last {
    margin-top: 10px;
  }

  .counter-item {
    width: 100%;
    margin-left: 0;
  }

  .socials-link-item {
    width: auto;
    margin-left: 7px;
    margin-right: 7px;
    display: flex;
  }

  .businesses-graphic-image {
    max-width: 70%;
  }

  .businesses-graphic-content.oth {
    order: -1;
  }

  .home-3-slider-container-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .left-arrow-4, .right-arrow-4 {
    top: 170px;
    bottom: auto;
  }

  .slider-image-container {
    height: auto;
  }

  .home-3-slide-image {
    height: 230px;
  }

  .slider-content-buttons {
    justify-content: flex-start;
  }

  .testimonials-container {
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .partner-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-2-slide-title {
    font-size: 35px;
  }

  .home-3-slider-item-1 {
    background-position: 100%;
    background-size: cover;
  }

  .home-3-slider-item-2 {
    background-position: 0%;
  }

  .home-3-slider-item-3 {
    background-position: 100%;
  }

  .short-info-container {
    padding-bottom: 45px;
  }

  .phone-email {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .number-progressbar-container {
    margin-bottom: 10px;
  }

  .title-heading-container {
    margin-bottom: 30px;
  }

  .home-3-video-slider-2 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .lists-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .home-3-list-item {
    width: 100%;
    height: 100%;
  }

  .list-item-title {
    margin-bottom: 20px;
  }

  .list-item-content {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .list-item-text {
    position: relative;
  }

  .home-3-testimonials-slider-container {
    padding-bottom: 20px;
  }

  .home-inline-progressbar {
    padding-top: 40px;
  }

  .home-2-top-banner {
    background-image: linear-gradient(to bottom, null, null), url('../images/warehouse.jpeg');
  }

  .home-2-partners {
    margin-top: 25px;
    margin-bottom: 0;
  }

  .provide-content-container.oth {
    margin-top: 0;
  }

  .provide-item {
    flex-flow: column;
    align-items: center;
  }

  .provide-item-image-container {
    align-items: center;
  }

  .provide-item-text-info {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .prvide-item-title-heading, .provide-item-info-description {
    text-align: center;
  }

  .numbers-progressbar-item {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider-aditional-image {
    z-index: 10;
    width: 50%;
    display: none;
    bottom: -30px;
  }

  .pricing-packs-background {
    background-image: url('../images/ship_blur.jpg');
    max-height: 96%;
  }

  .home-2-cpt-item {
    padding: 20px;
  }

  .home-2-cpt-item:hover {
    transform: translate(-10px, -10px);
  }

  .services-image {
    margin-right: 0;
  }

  .distribution-slider-container {
    margin-bottom: 90px;
  }

  .services-list-item {
    flex-direction: column;
    align-items: center;
  }

  .we-mooving-item {
    grid-template-columns: 1fr;
  }

  .persone-item-container, .person-image {
    width: 100%;
  }

  .person-item-info {
    align-items: center;
  }

  .career-nimbers-progressbar {
    margin-top: 20px;
  }

  .home-4-top-banner-container {
    min-height: 750px;
  }

  .home-4-top-banner-heading {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .content-buttons {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .top-banner-slider-title {
    padding-left: 0;
    padding-right: 0;
  }

  .home-4-logistics-section {
    margin-bottom: 60px;
  }

  .logistics-info-block {
    margin-bottom: 10px;
  }

  .feature-block-heading {
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .feature-block-icon {
    margin-right: 20px;
  }

  .home-4-glogal-shipping {
    margin-top: 80px;
  }

  .tabs {
    top: -30px;
  }

  .white-text, .white-text.oth {
    font-size: 30px;
  }

  .container-5 {
    padding-left: 0;
  }

  .inputs-container {
    flex-flow: wrap;
    place-content: space-between;
  }

  .form-input.size-input {
    width: 100%;
  }

  .radio-buttons-block {
    flex-direction: column;
  }

  .radio-button-field {
    width: 100%;
    margin-bottom: 10px;
  }

  .select-field-5 {
    margin-right: 0;
  }

  .select-field-5.home-form-select {
    min-width: auto;
    max-width: none;
  }

  .textarea-2 {
    height: 120px;
    margin-bottom: 0;
  }

  .probressbar-container {
    padding-bottom: 140px;
  }

  .progressbar-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .progressbar-percent-item {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .percent-container {
    width: 220px;
    height: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-4-slider-section {
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-4-pricing-policy {
    margin-bottom: 221px;
  }

  .home-4-we-best-section {
    margin-bottom: 30px;
    padding-top: 50px;
  }

  .we-best-feature-item {
    width: 100%;
  }

  .feature-item-image {
    width: 50px;
  }

  .home-4-get-touch {
    padding-bottom: 55px;
  }

  .werehouse-services-content {
    margin-top: 20px;
  }

  .werehouse-services-content-item.mid {
    margin-top: 43px;
  }

  .form-block-4 {
    margin-bottom: 0;
  }

  .title-block, .title-block.spacing {
    padding-left: 0;
    padding-right: 0;
  }

  .distribution-more-info.oth.top {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
  }

  .more-info-content, .more-info-content.oth {
    justify-content: center;
    align-items: center;
  }

  .not-found-description {
    font-size: 22px;
  }

  .grid-system-container {
    justify-content: center;
    display: flex;
  }

  .grid-system-content-top, .grid-system-content-bottom {
    flex-direction: column;
  }

  .content-table-top-row-item.last-item.content-table-row-item-resolution {
    border-bottom-style: none;
  }

  .content-table-top-row-item.content-table-row-item-title {
    width: 160px;
    height: 80px;
  }

  .content-table-bottom-row-item.content-table-row-item-title {
    border-bottom: 1px solid #0000001a;
    border-right-style: none;
    width: 160px;
    height: 80px;
  }

  .content-table-bottom-row-item.content-table-row-item-resolution {
    border-bottom: 1px solid #0000001a;
    border-right-style: none;
  }

  .headings-container.icon-typo-container.licensing-images {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .style-guide-icon-set-container-item {
    margin-right: 0;
  }

  .style-guide-icons-container {
    flex-direction: column;
  }

  .style-guide-buttons-content-item {
    align-items: flex-start;
    width: 100%;
    margin-right: 0;
  }

  .section.banner-slider-section {
    height: 100%;
    min-height: 550px;
  }

  .section.other {
    padding-bottom: 0;
  }

  .testimonials-slider.home-3-tstimonials-slider {
    background-color: #131c21;
    padding-left: 15px;
  }

  .white-text-align-left {
    text-align: center;
  }

  .white-text-align-left.pick-choose-text.oth {
    font-size: 17px;
  }

  .white-text-align-left.top-banner-text {
    font-size: 16px;
  }

  .dropdown-toggle-2 {
    padding-left: 20px;
  }

  .banner-heading.white-text {
    font-size: 35px;
  }

  .form-input {
    margin-right: 0;
  }

  .top-banner-description {
    max-width: 370px;
    font-size: 16px;
  }

  .team-list-item-position-title {
    text-align: center;
  }

  .image-link {
    width: 50%;
  }

  .link-licensing-image {
    padding-left: 0;
    padding-right: 0;
  }

  .info-wrap {
    grid-row-gap: 20px;
  }

  .block-with-space {
    flex-direction: column;
  }

  .form-content {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .paragraph-large.oth {
    font-size: 16px;
  }

  .categories-list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-wrap: wrap;
  }

  .text-content {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
  }

  .order-item {
    flex-direction: column;
  }

  .block-header {
    flex-direction: column;
    padding-bottom: 14px;
  }

  .header-link {
    width: 99%;
  }

  .nav-dropdown-list.megamenu {
    padding-right: 0;
  }

  .brand-tablet {
    padding-left: 0;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    margin-top: 30px;
    padding-bottom: 0;
  }

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .footer-rights-wrapper {
    grid-row-gap: 5px;
    justify-content: center;
  }

  .footer-rights, .section-two-side-title-wrapper {
    text-align: center;
  }

  .style-guide-content-wrapper.no-wrap {
    flex-wrap: wrap;
  }

  .middlr-style-spacing-mobile {
    top: 28%;
  }

  .top-style-spacing-mobile {
    top: 5%;
  }

  .middle-style-spacing-desktop {
    top: 32%;
  }

  .top-style-spacing-desktop {
    top: 7%;
  }

  .bottom-style-spacing-desktop, .bottom-style-spacing-mobile {
    bottom: 8%;
  }

  .search-wrap {
    flex-direction: column;
  }

  .landing-title {
    font-size: 42px;
  }

  .landing-home-pages-wrapper, .landing-features-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

  .grid-info-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .block-flex.tablet {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .margin-bottom-30 {
    margin-bottom: 30px;
    line-height: 1.5em;
  }

  .margin-bottom-30.oth {
    font-size: 22px;
  }

  .margin-bottom-30.smallmrg {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .margin-bottom-30.oth3 {
    font-size: 20px;
  }

  .margin-bottom-30.contact {
    font-size: 30px;
  }

  .partners-block {
    justify-content: space-around;
    padding-left: 15px;
    padding-right: 15px;
  }

  .title-wrapper {
    text-align: center;
  }

  .image-width {
    height: auto;
  }

  .maxw-title-centered {
    font-size: 25px;
  }

  .maxw-title-centered.oth {
    font-size: 24px;
  }

  .hire-popup {
    bottom: 90px;
    left: auto;
    right: 12px;
  }

  .text-span-22 {
    font-size: 23px;
  }

  .text-span-23 {
    font-size: 20px;
  }

  .text-span-24 {
    font-size: 21px;
  }

  .heading-2 {
    margin-bottom: 0;
    font-size: 25px;
  }

  .image-2 {
    width: 170px;
  }

  .uui-faq04_layout {
    grid-template-columns: 1fr;
  }

  .paragraph-5 {
    font-size: 16px;
  }

  .heading-3 {
    font-size: 26px;
  }

  .heading-4 {
    font-size: 22px;
  }

  .contact-form-3 {
    margin-top: 40px;
    margin-bottom: 0;
    padding-top: 20px;
  }

  .icont-2 {
    margin-right: 20px;
  }

  .text-span-47 {
    font-size: 23px;
  }

  .text-span-48 {
    font-size: 15px;
  }

  .heading-6 {
    font-size: 30px;
  }

  .paragraph-9 {
    font-size: 16px;
  }

  .heading-7 {
    text-align: center;
  }
}

#w-node-_41b234a8-b1c0-11c9-82b5-afd81dc0550c-cf4ddad6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_589d82e2-aa9a-8bd8-117b-3b5207342d16-cf4ddad6, #Message.w-node-_281fa255-bd7f-cd43-d526-a9f1151d12a5-cf4ddad6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e6d8395e-e579-ec1f-283a-c2b5ed0c7722-cf4ddad9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e6d8395e-e579-ec1f-283a-c2b5ed0c7724-cf4ddad9, #Message.w-node-e6d8395e-e579-ec1f-283a-c2b5ed0c7726-cf4ddad9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d1a8d44c-6edd-a8b1-86e9-9b92cab45607-cf4ddadd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d1a8d44c-6edd-a8b1-86e9-9b92cab45609-cf4ddadd, #Message.w-node-d1a8d44c-6edd-a8b1-86e9-9b92cab4560b-cf4ddadd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ad6bcb9c-d9a3-5fbe-8611-e2d6dec4f151-cf4ddaea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ad6bcb9c-d9a3-5fbe-8611-e2d6dec4f153-cf4ddaea, #Message.w-node-ad6bcb9c-d9a3-5fbe-8611-e2d6dec4f155-cf4ddaea {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ce10fd2e-a82f-11d7-2026-651cdc0136a6-cf4ddaef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ce10fd2e-a82f-11d7-2026-651cdc0136a8-cf4ddaef, #Message.w-node-ce10fd2e-a82f-11d7-2026-651cdc0136aa-cf4ddaef {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_382577ee-319c-5261-faad-a956e4b8480d-cf4ddaf0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_382577ee-319c-5261-faad-a956e4b8480f-cf4ddaf0, #Message.w-node-_382577ee-319c-5261-faad-a956e4b84811-cf4ddaf0 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5e8e8542-bdcd-c280-d2ee-614aa999736a-fc766e8b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5e8e8542-bdcd-c280-d2ee-614aa999736c-fc766e8b, #Message.w-node-_5e8e8542-bdcd-c280-d2ee-614aa999736e-fc766e8b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5ded6d52-64f6-2239-9a0a-1a21c321f860-c2369a90 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5ded6d52-64f6-2239-9a0a-1a21c321f862-c2369a90, #Message.w-node-_5ded6d52-64f6-2239-9a0a-1a21c321f864-c2369a90 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f76c1beb-b707-f0a5-98f9-293bf143938a-e6588b7b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f76c1beb-b707-f0a5-98f9-293bf143938c-e6588b7b, #Message.w-node-f76c1beb-b707-f0a5-98f9-293bf143938e-e6588b7b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_733f7f35-07d3-2d50-47f1-5f4265057567-eb8a0faf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_733f7f35-07d3-2d50-47f1-5f4265057569-eb8a0faf, #Message.w-node-_733f7f35-07d3-2d50-47f1-5f426505756b-eb8a0faf {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 991px) {
  #w-node-_3f975d20-da01-df82-17ef-d5c8c6e67356-cf4ddaef {
    place-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a0c1cd23-4682-31d4-4815-522b964ca11f-fc766e8b {
    justify-self: auto;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_41b234a8-b1c0-11c9-82b5-afd81dc05508-cf4ddad6, #w-node-_41b234a8-b1c0-11c9-82b5-afd81dc0550c-cf4ddad6, #w-node-_589d82e2-aa9a-8bd8-117b-3b5207342d16-cf4ddad6, #w-node-e6d8395e-e579-ec1f-283a-c2b5ed0c7720-cf4ddad9, #w-node-e6d8395e-e579-ec1f-283a-c2b5ed0c7722-cf4ddad9, #w-node-e6d8395e-e579-ec1f-283a-c2b5ed0c7724-cf4ddad9, #w-node-d1a8d44c-6edd-a8b1-86e9-9b92cab45605-cf4ddadd, #w-node-d1a8d44c-6edd-a8b1-86e9-9b92cab45607-cf4ddadd, #w-node-d1a8d44c-6edd-a8b1-86e9-9b92cab45609-cf4ddadd, #w-node-ad6bcb9c-d9a3-5fbe-8611-e2d6dec4f14f-cf4ddaea, #w-node-ad6bcb9c-d9a3-5fbe-8611-e2d6dec4f151-cf4ddaea, #w-node-ad6bcb9c-d9a3-5fbe-8611-e2d6dec4f153-cf4ddaea, #w-node-ce10fd2e-a82f-11d7-2026-651cdc0136a4-cf4ddaef, #w-node-ce10fd2e-a82f-11d7-2026-651cdc0136a6-cf4ddaef, #w-node-ce10fd2e-a82f-11d7-2026-651cdc0136a8-cf4ddaef, #w-node-_382577ee-319c-5261-faad-a956e4b8480b-cf4ddaf0, #w-node-_382577ee-319c-5261-faad-a956e4b8480d-cf4ddaf0, #w-node-_382577ee-319c-5261-faad-a956e4b8480f-cf4ddaf0, #w-node-_5e8e8542-bdcd-c280-d2ee-614aa9997368-fc766e8b, #w-node-_5e8e8542-bdcd-c280-d2ee-614aa999736a-fc766e8b, #w-node-_5e8e8542-bdcd-c280-d2ee-614aa999736c-fc766e8b, #w-node-_5ded6d52-64f6-2239-9a0a-1a21c321f85e-c2369a90, #w-node-_5ded6d52-64f6-2239-9a0a-1a21c321f860-c2369a90, #w-node-_5ded6d52-64f6-2239-9a0a-1a21c321f862-c2369a90, #w-node-f76c1beb-b707-f0a5-98f9-293bf1439388-e6588b7b, #w-node-f76c1beb-b707-f0a5-98f9-293bf143938a-e6588b7b, #w-node-f76c1beb-b707-f0a5-98f9-293bf143938c-e6588b7b, #w-node-_733f7f35-07d3-2d50-47f1-5f4265057565-eb8a0faf, #w-node-_733f7f35-07d3-2d50-47f1-5f4265057567-eb8a0faf, #w-node-_733f7f35-07d3-2d50-47f1-5f4265057569-eb8a0faf {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Icon Font';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Icon Font 2';
  src: url('../fonts/fa-regular-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Icon Font 3';
  src: url('../fonts/fa-solid-900.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Icon Brands';
  src: url('../fonts/fa-brands-400.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}