:root {
  --indian-red: #ce1137;
  --dim-grey: #525252;
  --white-smoke: #f9f9f9;
  --black-2: var(--black);
  --cream: #eaebe3;
  --off-cream: #e9e9e9;
  --red: #e53935;
  --steel-blue: #1976d2;
  --medium-sea-green: #20c788;
  --black: #2f2e2e;
}

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

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@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: #333;
  font-family: Sen, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

a {
  color: var(--indian-red);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

ul {
  margin-top: 25px;
  margin-bottom: 25px;
  padding-left: 40px;
}

li {
  margin-bottom: 25px;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px solid var(--indian-red);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
}

.banner {
  background-color: var(--dim-grey);
  width: 100%;
  color: var(--white-smoke);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  text-decoration: none;
  display: none;
}

.style-guide-wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.style-left {
  width: 30%;
  padding: 20px 20px 20px 0;
}

.style-right {
  width: 70%;
  padding: 20px;
}

.style-menu {
  position: sticky;
  top: 20px;
}

.style-section {
  margin-bottom: 70px;
  padding-top: 20px;
}

.btn {
  border: 1px solid var(--indian-red);
  background-color: var(--indian-red);
  border-radius: 5px;
  padding: 5px 25px;
  font-weight: 700;
  transition: border-color .3s, background-color .3s;
}

.btn:hover {
  border-color: var(--black-2);
  background-color: var(--black-2);
}

.btn.dark {
  border-color: var(--dim-grey);
  background-color: var(--dim-grey);
}

.btn.dark:hover {
  border-color: var(--indian-red);
  background-color: var(--indian-red);
}

.btn.dark.outline {
  border-color: var(--black-2);
  color: var(--black-2);
}

.btn.dark.outline:hover {
  border-color: var(--black-2);
  background-color: var(--black-2);
}

.btn.dark.outline.cat-menu {
  width: 100%;
}

.btn.dark.outline.cat-menu.w--current {
  background-color: var(--black-2);
  color: var(--white-smoke);
}

.btn.light {
  border-color: var(--white-smoke);
  background-color: var(--white-smoke);
  color: var(--black-2);
}

.btn.light:hover {
  border-color: var(--indian-red);
  background-color: var(--indian-red);
  color: var(--white-smoke);
}

.btn.light.outline {
  background-color: var(--indian-red);
  color: var(--white-smoke);
  text-transform: uppercase;
  border-width: 0;
  border-radius: 40px;
  margin-left: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 500;
}

.btn.light.outline:hover {
  border-color: var(--white-smoke);
  background-color: var(--white-smoke);
  color: var(--indian-red);
}

.btn.light.hero {
  margin-right: 10px;
}

.btn.outline {
  color: var(--indian-red);
  background-color: #0000;
}

.btn.outline:hover {
  border-color: var(--indian-red);
  background-color: var(--indian-red);
  color: var(--white-smoke);
}

.btn.outline:focus {
  border: 1px solid var(--indian-red);
  box-shadow: 0 0 2px 0 var(--indian-red);
}

.color-wrapper {
  justify-content: space-between;
  margin-bottom: 35px;
  display: flex;
}

.color-block {
  background-color: #d1d1d1;
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  width: 100px;
  height: 100px;
  padding: 12px;
  font-size: 12px;
  display: flex;
  position: relative;
}

.color-block.primary {
  background-color: var(--black-2);
  color: var(--white-smoke);
}

.color-block.secondary {
  background-color: var(--indian-red);
  color: var(--white-smoke);
}

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

.color-block.primary-variant {
  background-color: var(--dim-grey);
  color: var(--white-smoke);
}

.color-block.secondary-variant {
  background-color: var(--cream);
  color: var(--white-smoke);
}

.color-block.alert-blocks {
  width: 22%;
}

.color-block.alert-blocks.caution {
  background-color: var(--off-cream);
}

.color-block.alert-blocks.warning {
  background-color: var(--red);
  color: var(--white-smoke);
}

.color-block.alert-blocks.alert {
  background-color: var(--steel-blue);
  color: var(--white-smoke);
}

.color-block.alert-blocks.success {
  background-color: var(--medium-sea-green);
  min-height: auto;
  color: var(--white-smoke);
  padding-top: 0;
}

.separator {
  background-color: var(--dim-grey);
  height: 1px;
  margin-bottom: 20px;
}

.style-link-wrapper {
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 20px;
}

.style-link-wrapper.dark {
  background-color: var(--black-2);
  color: var(--white-smoke);
}

.small {
  margin-bottom: 10px;
  font-size: 10px;
}

.small.caps {
  text-transform: uppercase;
}

.small.footer-small {
  margin-top: 10px;
  font-size: 12px;
}

.page-title-section {
  background-color: var(--black-2);
  color: var(--white-smoke);
  padding-top: 30px;
  padding-bottom: 30px;
}

.container {
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container.contact {
  position: absolute;
  inset: 0%;
}

.container.heading-container {
  margin-left: 0;
  padding-left: 0;
}

.container.what-we-do {
  margin-left: auto;
  margin-right: auto;
}

.container.footer {
  background-color: #0000;
  flex: 0 auto;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
}

.page-title {
  margin-top: 10px;
}

.style-menu-wrapper {
  margin-bottom: 10px;
}

.style-heading {
  margin-top: 0;
}

.input {
  border: 1px solid var(--black-2);
  border-radius: 5px;
}

.input:hover, .input:active, .input:focus {
  border-color: var(--indian-red);
}

.input::placeholder {
  color: var(--dim-grey);
}

.input.cart-quantity {
  margin-bottom: 0;
  margin-right: 5px;
}

.banner-content-wrapper {
  background-color: #33313185;
  justify-content: center;
  align-items: center;
  display: flex;
}

.alert-wrapper {
  background-color: var(--white-smoke);
  border-radius: 5px;
  margin-bottom: 10px;
  padding: 20px;
}

.alert-wrapper.danger {
  background-color: var(--red);
  color: var(--white-smoke);
}

.alert-wrapper.warning {
  background-color: var(--off-cream);
}

.alert-wrapper.success {
  background-color: var(--medium-sea-green);
  min-height: auto;
  color: var(--white-smoke);
  padding-top: 20px;
}

.alert-wrapper.information {
  background-color: var(--steel-blue);
  color: var(--white-smoke);
}

.style-pill-wrapper {
  margin-bottom: 10px;
  display: flex;
}

.style-pill-wrapper.style-page {
  align-items: flex-start;
  display: flex;
}

.pill {
  background-color: var(--steel-blue);
  color: var(--white-smoke);
  border-radius: 20px;
  margin-right: 10px;
  padding: 5px 20px;
}

.pill.warning {
  background-color: var(--red);
  color: var(--white-smoke);
}

.pill.warning.badge {
  border-radius: 0;
}

.pill.caution {
  background-color: var(--off-cream);
  color: var(--black-2);
}

.pill.caution.badge {
  border-radius: 0;
}

.pill.success {
  background-color: var(--medium-sea-green);
  min-height: auto;
  color: var(--white-smoke);
  padding-top: 5px;
}

.pill.success.badge, .pill.badge {
  border-radius: 0;
}

.pill.primary {
  background-color: var(--indian-red);
  font-size: 16px;
}

.hero-section {
  border-bottom: 4px solid var(--indian-red);
  background-image: linear-gradient(#222 8%, #2220 64%);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  min-height: 800px;
}

.hero-section.about-hero {
  background-image: linear-gradient(360deg, #222, #2220), url('../images/felix-rostig-UmV2wr-Vbq8-unsplash.jpg');
  background-position: 0 0, 50% 60%;
  background-size: auto, cover;
}

.hero-section.contact-hero {
  background-image: linear-gradient(360deg, #222, #2220), url('../images/adam-solomon-WHUDOzd5IYU-unsplash-1-1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.hero-section.benefits {
  background-image: linear-gradient(#222, #2220), url('../images/White-Truck.png');
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-section.contact {
  background-image: linear-gradient(#222, #2220), url('../images/Loading-a-Truck.png');
  background-position: 0 0, 0%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.hero-section.solutions {
  background-image: linear-gradient(182deg, #222, #2220), url('../images/Machinery.png');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.hero-section.services {
  background-image: linear-gradient(#222, #2220), url('../images/Fleet-of-Trucks.png');
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.menu-wrapper {
  z-index: 900;
  position: sticky;
  top: 0;
}

.navbar {
  background-color: #0000;
  border-bottom: 0 solid #000;
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-link {
  color: var(--white-smoke);
  border-radius: 5px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 4px 10px;
  transition: all .3s;
}

.nav-link:hover {
  background-color: var(--indian-red);
  color: var(--white-smoke);
  background-image: none;
  border-radius: 20px;
  text-decoration: none;
}

.nav-link:focus {
  background-color: var(--indian-red);
  color: var(--white-smoke);
}

.nav-link.w--current {
  background-color: var(--indian-red);
  color: var(--white-smoke);
  -webkit-text-stroke-color: var(--indian-red);
  border-radius: 20px;
  text-decoration: none;
}

.nav-link.home {
  background-color: var(--indian-red);
  border-radius: 20px;
}

.nav-link.app {
  background-color: var(--white-smoke);
  color: var(--black);
  border-radius: 20px;
  font-weight: 600;
}

.nav-link.app:hover {
  background-color: var(--white-smoke);
  color: var(--indian-red);
}

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

.hero-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 550px;
  display: flex;
}

.hero-heading {
  background-color: var(--indian-red);
  width: 90%;
  color: var(--white-smoke);
  border-radius: 50px;
  margin-bottom: 5px;
  margin-left: -20px;
  margin-right: auto;
  padding-left: 0;
  font-size: 45px;
  line-height: 1.2;
  box-shadow: 2px 5px 5px #0003;
}

.hero-heading.anout-hero-heading {
  width: 40%;
}

.hero-paragraph {
  background-color: var(--black-2);
  width: 85%;
  color: var(--white-smoke);
  text-align: center;
  border-radius: 50px;
  margin-bottom: 35px;
  margin-left: -20px;
  margin-right: auto;
  padding-left: 0;
  font-size: 23px;
  box-shadow: 2px 5px 5px #0003;
}

.hero-paragraph.mobile {
  display: none;
}

.support-section {
  background-color: #fff0;
  padding-top: 65px;
  padding-bottom: 65px;
}

.support-section._2 {
  color: #fff;
  border-top: 0 solid #000;
  border-bottom: 0 solid #000;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: clip;
}

.support-section.contact {
  background-color: var(--cream);
  padding-top: 65px;
  padding-bottom: 65px;
}

.support-section.what-we-do {
  text-align: left;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.support-section.benefits {
  background-color: var(--cream);
  margin-bottom: 0;
  padding-top: 65px;
  padding-bottom: 65px;
}

.support-section.contact-page {
  margin-left: auto;
  margin-right: auto;
}

.support-top-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-bottom: 60px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  display: flex;
  position: static;
}

.support-top-wrapper.right-side {
  justify-content: flex-end;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: -40px;
  overflow: hidden;
}

.support-top-wrapper.right-side.mobile-only {
  display: none;
}

.support-top-wrapper.parent {
  margin-bottom: 5px;
}

.support-top-wrapper.mobile-only {
  display: none;
}

.support-top-left {
  z-index: 2;
  flex-flow: row;
  justify-content: flex-start;
  width: 40%;
  display: flex;
  position: static;
}

.support-top-details-text {
  text-transform: uppercase;
}

.support-top-heading {
  background-color: var(--indian-red);
  max-width: 1200px;
  color: var(--white-smoke);
  text-shadow: 0 3px 3px #0003;
  border-radius: 10px;
  margin: 0;
  padding: 5px 20px 5px 175px;
  font-size: 40px;
  line-height: 1.2;
  position: static;
  box-shadow: 2px 5px 5px #0003;
}

.support-top-heading._2 {
  color: var(--white-smoke);
  -webkit-text-stroke-color: var(--indian-red);
}

.support-top-heading.contact {
  color: var(--indian-red);
}

.support-top-heading.right-side {
  border-radius: 50px;
  max-width: none;
  padding-left: 20px;
  overflow: hidden;
}

.support-top-heading.sub-heading {
  background-color: var(--black);
  font-size: 20px;
}

.support-top-heading.parent {
  max-width: none;
  box-shadow: none;
  text-shadow: none;
  background-color: #ce113700;
  border-radius: 0;
  margin-left: 10vw;
  padding-left: 45px;
}

.support-top-right {
  z-index: 1;
  flex: none;
  width: 45%;
  display: block;
  position: static;
}

.support-wrapper {
  border: 1px solid var(--black-2);
  background-color: var(--white-smoke);
  border-radius: 20px;
  flex-flow: row;
  justify-content: space-between;
  margin-left: 0;
  padding: 20px;
  display: flex;
}

.support-wrapper.what-we-do {
  background-color: var(--white-smoke);
  width: 82%;
  color: var(--indian-red);
  border-radius: 30px;
  flex-flow: column;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 25px;
  box-shadow: 2px 5px 5px #0003;
}

.support-wrapper.what-we-do.image {
  width: 80%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.support-wrapper.contact {
  border-width: 0;
}

.support-wrapper.why-turing {
  background-color: var(--cream);
  border-width: 0;
  flex-flow: column;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.support-wrapper.benefits {
  background-color: var(--white-smoke);
  width: 80%;
  color: var(--black);
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  padding-left: 25px;
  padding-right: 25px;
  box-shadow: 2px 5px 5px #0003;
}

.support-wrapper.contact-page {
  text-align: left;
  border-radius: 30px;
  flex-flow: row;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 2px 5px 5px #0003;
}

.support-wrapper.footer {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0000;
  border-width: 0;
  justify-content: center;
  width: 80%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.support-column {
  color: var(--black-2);
  object-fit: scale-down;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.support-column.list {
  justify-content: center;
  align-items: flex-start;
  padding-left: 0;
}

.support-column.contact {
  padding-left: 0;
  padding-right: 30px;
}

.support-column.why-choose-us {
  background-color: var(--white-smoke);
  border: 2px solid #000;
  border-radius: 30px;
  justify-content: center;
  align-items: flex-start;
  padding-top: 25px;
  box-shadow: 2px 5px 5px #0003;
}

.support-column.why-choose-us.plus-padding {
  padding-top: 45px;
}

.support-column.why-choose-us.services {
  padding-left: 25px;
  padding-right: 25px;
}

.support-column.contact-page {
  min-height: auto;
  padding-left: 0;
  padding-right: 0;
}

.support-column.footer {
  float: left;
  clear: none;
  background-color: #0000;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: inline-block;
}

.support-column.centered {
  align-self: center;
}

.support-column.left {
  justify-content: center;
  align-items: flex-start;
}

.support-square {
  background-color: var(--black-2);
  background-image: url('../images/Industry-Ecosystem-1-1024x731.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  margin-bottom: 45px;
  margin-left: -20px;
  margin-right: 20px;
  padding: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.support-square-number {
  color: var(--white-smoke);
  font-size: 40px;
  font-weight: 700;
  position: absolute;
  inset: 10% auto auto 10%;
}

.support-square-text {
  color: var(--white-smoke);
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.support-square-image {
  position: absolute;
  inset: auto -25% -25% auto;
}

.support-square-image.triangle {
  bottom: -17%;
  right: -11%;
}

.support-square-image.rectangle {
  bottom: -31%;
  right: -14%;
}

.safe-section {
  background-image: linear-gradient(to bottom, #2222222b, var(--black-2)), url('../images/nathan-dumlao-pLoMDKtl-JY-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  min-height: 550px;
}

.safe-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 550px;
  display: flex;
}

.safe-heading {
  width: 45%;
  color: var(--white-smoke);
  text-align: right;
  font-size: 45px;
  line-height: 1.2;
}

.safe-paragraph {
  width: 35%;
  color: var(--white-smoke);
  text-align: right;
  margin-bottom: 25px;
  font-size: 18px;
}

.products-section {
  padding-top: 65px;
  padding-bottom: 65px;
}

.shop-top-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.shop-item-wrapper {
  width: 100%;
  margin-bottom: 40px;
}

.shop-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 5px;
  min-height: 500px;
  margin-bottom: 30px;
}

.shop-image.tumbler-1 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  margin-bottom: 15px;
  position: relative;
}

.shop-image.tumbler-1.narrow-list {
  min-height: 400px;
}

.shop-image.tumbler-1 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
}

.shop-details-wrapper {
  justify-content: space-between;
  display: flex;
}

.shop-details-left {
  width: 100%;
}

.shop-item-name {
  color: var(--black-2);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.shop-item-price {
  color: var(--black-2);
  text-align: left;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 700;
}

.shop-item-price.compare {
  color: var(--indian-red);
  text-decoration: line-through;
}

.shop-local-section {
  padding-top: 65px;
  padding-bottom: 65px;
}

.shop-local-wrapper {
  justify-content: flex-end;
  min-height: 500px;
  display: flex;
  position: relative;
}

.shop-local-left {
  background-image: url('../images/christiann-koepke-dQyS2pMYtok-unsplash-1.jpg');
  background-position: 69% 80%;
  background-size: 270%;
  border-radius: 5px;
  width: 30%;
  height: 0;
  min-height: 440px;
  position: absolute;
  inset: 6% auto 0% 0%;
}

.shop-local-right {
  background-color: var(--dim-grey);
  width: 80%;
  color: var(--white-smoke);
  border-radius: 5px;
  justify-content: flex-end;
  padding: 45px;
  display: flex;
}

.shop-local-content-wrapper {
  width: 80%;
  padding-left: 145px;
  padding-right: 145px;
}

.shop-local-heading {
  margin-top: 0;
  font-size: 45px;
  line-height: 1.2;
}

.footer {
  background-color: var(--black-2);
  padding-top: 0;
  padding-bottom: 10px;
}

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

.social-footer-link {
  margin-left: 20px;
  transition: all .3s;
}

.social-footer-link:hover {
  opacity: .7;
}

.footer-bottom-wrapper {
  color: var(--white-smoke);
  text-align: center;
  flex: 1;
  margin-top: 0;
}

.content-section {
  padding-top: 65px;
  padding-bottom: 65px;
}

.content-section.why-acme-sections, .content-section.featured-section {
  padding-bottom: 0;
}

.why-acme-block {
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.why-acme-small-text {
  text-transform: uppercase;
  font-size: 14px;
}

.why-acme-heading, .why-acme-paragraph {
  text-align: center;
}

.about-columns-wrapper {
  justify-content: space-between;
  display: flex;
}

.about-column {
  width: 22%;
}

.image {
  display: block;
}

.meet-the-owners-wrapper {
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.meet-the-owners-right {
  background-color: var(--black-2);
  width: 70%;
  color: var(--white-smoke);
  border-radius: 5px;
  padding: 90px 55px 90px 245px;
}

.meet-the-owners-left {
  background-image: url('../images/sept-commercial-Cqu3DdNwtKQ-unsplash-1-1.jpg');
  background-position: 50% 100%;
  background-size: cover;
  border-radius: 5px;
  width: 45%;
  height: 90%;
  position: absolute;
  inset: 5% auto 0% 0%;
}

.owners-rich-text h2 {
  margin-top: 0;
}

.owner-bios-wrapper {
  justify-content: space-around;
  display: flex;
}

.owner-avatar-wrapper {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.owner-bio {
  flex-direction: column;
  align-items: center;
  width: 35%;
  display: flex;
}

.owner-bio-paragraph {
  text-align: center;
}

.contact-wrapper {
  flex-flow: column;
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.contact-left {
  width: 30%;
}

.contact-right {
  width: 70%;
  padding-left: 20px;
}

.contact-hero-section {
  background-color: var(--black-2);
  color: var(--white-smoke);
  padding-top: 0;
  padding-bottom: 0;
}

.contact-hero-bg-wrapper {
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.contact-image-div {
  background-image: linear-gradient(to right, var(--black-2), #2222222e 76%), url('../images/vinicius-amano-4mK2KVuYrDs-unsplash-1-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 45%;
  height: 550px;
}

.contact-block-wrapper {
  display: flex;
}

.contact-block {
  background-color: var(--white-smoke);
  width: 30%;
  min-height: 350px;
  color: var(--black-2);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
  margin-right: 20px;
  padding: 40px;
  display: flex;
}

.contact-icon {
  margin-bottom: 30px;
}

.heading {
  margin-top: 55px;
}

.heading.footer {
  float: none;
  width: 100%;
  color: var(--white-smoke);
  text-shadow: 0 2px 3px #0003;
  background-color: #0000;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.heading.footer.quick-links {
  margin-left: 0;
  margin-right: 0;
}

.success {
  background-color: var(--medium-sea-green);
  min-height: 280px;
  color: var(--white-smoke);
  border-radius: 5px;
  padding-top: 125px;
}

.error {
  background-color: var(--red);
  color: var(--white-smoke);
  border-radius: 5px;
}

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

.image-source-wrapper {
  height: 300px;
  overflow: hidden;
}

.limg {
  object-fit: cover;
  object-position: 50% 50%;
  min-height: 400px;
}

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

.price-wrapper {
  border-bottom: 1px #22222214;
  justify-content: center;
  margin-bottom: 15px;
  padding-bottom: 0;
  display: flex;
}

.pill-2 {
  color: #f9f9f9;
  background-color: #1976d2;
  border-radius: 20px;
  margin-right: 10px;
  padding: 5px 20px;
}

.pill-2.badge {
  border-radius: 0;
}

.pill-2.badge.primary.sale {
  background-color: var(--indian-red);
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 14px;
  position: absolute;
  inset: 4% 2% auto auto;
}

.pill-2.badge.primary.featured {
  z-index: 10;
  background-color: var(--white-smoke);
  color: var(--black-2);
  border-radius: 5px;
  position: absolute;
  inset: 8% 1% auto auto;
}

.shop-button-wrapper {
  justify-content: center;
  display: flex;
}

.shop-item-link-wrapper {
  width: 100%;
  text-decoration: none;
}

.shopping-page-wrapper {
  display: flex;
}

.shopping-page-left {
  width: 40%;
}

.shipping-page-right {
  width: 60%;
  padding-left: 60px;
}

.shopping-page-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 5px;
  min-height: 450px;
  position: relative;
}

.page-product-headin {
  margin-top: 0;
}

.shop-item-price-page {
  color: #222;
  text-align: left;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 700;
}

.shop-item-price-page.compare-at {
  color: var(--indian-red);
  text-decoration: line-through;
}

.page-price-wrapping {
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
}

.add-to-cart-page-wrapper {
  margin-top: 15px;
  display: flex;
}

.shop-page-wrapper {
  display: flex;
}

.shop-category-menu {
  width: 20%;
  padding-right: 25px;
}

.shop-list {
  width: 80%;
}

.category-menu-item {
  margin-bottom: 10px;
}

.category-menu-heading {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.5;
}

.empty {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  display: flex;
}

.featured-wrapper {
  width: 100%;
  min-height: 250px;
  color: var(--white-smoke);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 5px;
  text-decoration: none;
  position: relative;
}

.featured-item-name {
  color: var(--white-smoke);
  margin-bottom: 5px;
  position: static;
  inset: auto auto 0% 1%;
}

.featured-price {
  position: static;
  inset: auto auto 0% 0%;
}

.feature-text-wrapper {
  z-index: 10;
  position: absolute;
  inset: auto auto 6% 2%;
}

.featured-gradient-overlay {
  background-image: linear-gradient(#22222238, #222222b0);
  border-radius: 5px;
  position: absolute;
  inset: 0%;
}

.shop-more {
  justify-content: center;
  display: flex;
}

.donate-explainer {
  background-image: linear-gradient(to bottom, #2222228f, var(--black-2)), url('../images/jed-villejo-bEcC0nyIp2g-unsplash-1-1.jpg');
  min-height: 550px;
  color: var(--white-smoke);
  background-position: 0 0, 50% 25%;
  background-size: auto, cover;
  padding-top: 151px;
  padding-bottom: 35px;
}

.donate-heading-1 {
  text-align: center;
  margin-bottom: -5px;
  font-size: 38px;
  font-weight: 800;
}

.donate-heading-2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 30px;
}

.donate-paragraph {
  text-align: center;
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.donate-wrapper {
  border: 2px solid var(--black-2);
  border-radius: 5px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 30px 10px;
}

.donate-link-block {
  background-color: var(--indian-red);
  width: 100%;
  color: var(--white-smoke);
  text-align: center;
  border-radius: 5px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: background-color .3s;
}

.donate-link-block:hover {
  background-color: var(--black-2);
}

.text-block {
  color: var(--white-smoke);
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: 800;
}

.cart {
  background-color: var(--black-2);
  border-radius: 5px;
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
}

.cart-nav-wrapper {
  align-items: center;
  display: flex;
}

.cart-quantity-cart {
  color: var(--black-2);
  background-color: #fff;
  position: absolute;
  top: -7px;
  left: 30px;
}

.cart-icon {
  width: 20px;
  margin-right: 0;
}

.checkout-form, .paypal-checkout-form {
  background-color: #0000;
}

.container-checkout {
  justify-content: center;
  max-width: 1200px;
}

.pay-with-browser, .apple-pay {
  border-radius: 5px;
}

.block-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.block-content {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.order-confirmation {
  background-color: #0000;
}

.cart-image-wrapper {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

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

.utility-page-wrap {
  background-image: linear-gradient(0deg, #2222226b, var(--black-2)), url('../images/background-truck.png');
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  color: var(--white-smoke);
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.alert-empty {
  background-color: #0000;
  display: none;
}

.title {
  text-shadow: 0 3px 3px #0003;
  -webkit-text-fill-color: inherit;
  background-color: #e0e0e000;
  background-clip: border-box;
  margin-left: 10vw;
  margin-right: 0;
  padding-left: 45px;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 48px;
}

.body {
  background-color: var(--cream);
  font-family: Montserrat, sans-serif;
  overflow: visible;
}

.heading-2 {
  text-shadow: 0 2px 2px #0003;
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 30px;
}

.heading-2._2 {
  color: var(--white-smoke);
}

.paragraph {
  letter-spacing: 0;
  white-space: break-spaces;
  word-break: normal;
  overflow-wrap: normal;
  height: auto;
  padding: 15px 15px 15px 0;
  overflow: hidden;
}

.paragraph.contact {
  color: var(--dim-grey);
  padding-top: 15px;
}

.paragraph.our-story {
  padding-bottom: 0;
}

.paragraph.dark {
  margin-top: 10px;
  padding: 0 25px 25px;
}

.paragraph.dark.solutions {
  padding-bottom: 0;
}

.paragraph.dark.benefits-page {
  padding-bottom: 45px;
  padding-left: 85px;
}

.paragraph.beginning {
  padding-right: 30px;
}

.paragraph.benefits {
  color: var(--black);
  text-shadow: 0 2px 3px #0003;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 25px;
  padding-left: 115px;
}

.paragraph.form {
  width: auto;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.paragraph.footer {
  color: var(--white-smoke);
  background-color: #0000;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0 0 0 10px;
  font-size: 16px;
  overflow: visible;
}

.paragraph.footer.quick-links {
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  line-height: 2;
}

.paragraph.footer.phone-numbers {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 2;
}

.paragraph.footer.no-icon {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 30px;
}

.paragraph.footer.contact-person {
  float: left;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: 18px;
  overflow: visible;
}

.heading-3 {
  color: var(--white-smoke);
}

.heading-3.contact {
  color: var(--dim-grey);
}

.div-block {
  display: none;
}

.video {
  margin-top: 15px;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 0;
}

.subtitle {
  text-transform: capitalize;
  text-shadow: 0 2px 3px #0003;
  margin-left: 10vw;
  padding-left: 60px;
}

.subtitle.contact-us {
  padding-left: 0;
}

.subtitle.more-text {
  text-align: left;
  padding-left: 0;
}

.heading-4 {
  text-shadow: 0 2px 3px #0003;
  font-size: 24px;
  line-height: 30px;
}

.heading-4.we-offer {
  margin-top: 0;
  padding-bottom: 15px;
  padding-left: 17px;
  padding-right: 17px;
}

.list-2 {
  padding-left: 0;
  padding-right: 17px;
  list-style-type: none;
}

.list-2.we-offer {
  margin-left: 17px;
  padding-right: 267px;
}

.image-2 {
  margin-top: -50px;
}

.div-block-2 {
  overflow: visible;
}

.text-block-2, .icon {
  color: var(--indian-red);
}

.dropdown {
  width: 100%;
  position: static;
}

.dropdown-list {
  background-color: #ddd3;
  position: static;
}

.dropdown-list.w--open {
  background-color: #ddd0;
}

.dropdown-toggle {
  width: 100%;
}

.image-3 {
  text-align: left;
  margin-top: -35px;
  margin-bottom: -50px;
  padding-top: 0;
  padding-left: 15px;
  padding-right: 0;
  position: sticky;
  top: 100px;
  bottom: 100px;
}

.image-3.scroll {
  margin-top: 50px;
  margin-bottom: -5px;
}

.image-3.aarde {
  background-color: var(--white-smoke);
  border: 2px solid #000;
  border-radius: 30px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 20px;
  padding: 5px;
  position: sticky;
}

.image-3.aarde.services {
  margin-top: auto;
  margin-bottom: auto;
  position: sticky;
}

.image-3.links {
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px 15px 5px 10px;
}

.body-2 {
  font-family: Montserrat, sans-serif;
}

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

.light {
  color: var(--white-smoke);
  text-shadow: 0 3px 3px #0003;
  margin-top: -50px;
  margin-bottom: 80px;
}

.paragraph-2 {
  background-color: var(--black-2);
  width: 100%;
  color: var(--white-smoke);
  text-align: center;
  -webkit-text-stroke-color: var(--indian-red);
  margin-bottom: 0;
}

.paragraph-2.blerp-1 {
  background-color: var(--indian-red);
  color: var(--white-smoke);
  padding-top: 5px;
  padding-bottom: 5px;
}

.paragraph-2.blerp2 {
  background-color: var(--black);
  color: var(--white-smoke);
  padding-top: 5px;
  padding-bottom: 5px;
}

.list-item {
  background-image: url('../images/Bullets.png');
  background-position: 0 1%;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  margin-bottom: 10px;
  padding-left: 30px;
}

.list-item-2, .list-item-3 {
  margin-bottom: 10px;
}

.section {
  border-top: 4px solid var(--indian-red);
  border-bottom: 4px solid var(--indian-red);
  background-image: url('../images/background-truck.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  margin-left: auto;
  display: flex;
}

.section.footer {
  background-color: #2f2e2e;
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/dirty-background-truck.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  border-top-width: 4px;
  border-bottom-width: 0;
  height: auto;
  min-height: 550px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  font-size: 0;
}

.flex {
  align-items: center;
  display: flex;
}

.col {
  flex: 0 60%;
}

.col._40-basis {
  flex-basis: 40%;
  padding-left: 60px;
  padding-right: 60px;
}

.color-block-2 {
  background-image: url('../images/og.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 80vh;
}

.horizontal-trigger {
  position: absolute;
  inset: 0% 0% auto;
}

.container-3 {
  background-color: var(--indian-red);
  border-radius: 50px;
  width: auto;
  max-width: none;
  margin-left: -20px;
  margin-right: auto;
  padding-right: 0;
  position: static;
  box-shadow: 2px 5px 5px #0003;
}

.container-3.right-side {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.heading-5 {
  text-shadow: 0 2px 3px #0003;
  margin-top: 0;
  padding: 25px 25px 5px;
}

.button {
  margin-bottom: 35px;
  margin-left: 25px;
  margin-right: 25px;
}

.button-28 {
  z-index: 1;
  width: 180px;
  color: var(--white-smoke);
  background-color: #d70036;
  border: 1px solid #222;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  margin-left: 25px;
  margin-right: 0;
  padding: 14px 28px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 5px 5px #0003;
}

.button-28.solutions {
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
}

.button-28.solutions.mobile-only {
  display: none;
}

.button-28.benefits {
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 14px;
}

.button-28.benefits.mobile-only {
  display: none;
}

.button-28.nav {
  width: 150px;
  margin-bottom: 0;
  margin-left: 20px;
  margin-right: 20px;
  padding: 4px 10px;
  display: inline-block;
}

.button-text-28 {
  z-index: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 3px #0003;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
}

.backimage-28 {
  z-index: -1;
  border-top: 1px solid var(--black-2);
  background-color: #020101;
  background-image: repeating-linear-gradient(45deg, var(--white-smoke), #fff0 1%, #fff0 0.2%, #fff0 0%, #fff0 0.6%, #fff0 0.9%);
  width: 1000px;
  height: 9px;
  color: var(--black-2);
  position: absolute;
  inset: auto 0% 0%;
}

.image-5 {
  border-radius: 0;
  width: 180px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.image-6 {
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.container-4 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex: 0 auto;
  justify-content: center;
  align-self: auto;
  align-items: flex-start;
  width: auto;
  padding-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.benefits {
  color: var(--black);
  text-shadow: 0 3px 3px #0003;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 5px;
}

.benefits.header {
  padding-top: 0;
  padding-left: 15px;
}

.image-7 {
  width: 50px;
  height: 50px;
}

.icon-container {
  text-shadow: 0 2px 3px #0003;
  flex-flow: row;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.icon-container.footer-container {
  padding-left: 5px;
  padding-right: 5px;
}

.icon-container.footer-container.icon {
  clear: both;
}

.icon-container.footer-container.icon.phone {
  margin-bottom: 10px;
  padding-top: 5px;
}

.icon-container.footer-container.icon.office {
  padding-top: 5px;
}

.icon-container.full-page {
  flex-flow: row;
}

.icons {
  width: 50px;
  height: 50px;
  margin-top: -1px;
  margin-right: 10px;
  padding-top: 0;
}

.icons.smaller {
  width: 45px;
  height: 45px;
  margin-left: 10px;
  margin-right: 15px;
  padding-left: 0;
  padding-right: 0;
}

.icons.communication {
  width: 20px;
  height: 20px;
  margin-top: auto;
  margin-bottom: auto;
  overflow: visible;
}

.icons.communication.unlinked-icon {
  margin-left: -5px;
  margin-right: 5px;
}

.icons.communication.social {
  width: 25px;
  height: 25px;
}

.bold-text-3 {
  color: var(--indian-red);
}

.body-3, .body-4, .body-5 {
  background-color: var(--cream);
}

.form-block {
  width: auto;
  margin-bottom: 0;
  display: none;
}

.text-field {
  border-radius: 10px;
  max-width: 500px;
}

.text-field.nov {
  margin-left: 22px;
}

.two-form-fields {
  flex-flow: column;
  width: 45%;
  display: flex;
}

.two-form-fields.two-field-container {
  flex-flow: row;
  width: auto;
  padding-bottom: 15px;
}

.two-form-fields.two-field-container.one-field {
  flex-flow: column;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.two-form-fields.two-field-container.checkbox {
  flex-flow: column;
  padding-left: 20px;
}

.two-form-fields.checkbox {
  align-self: auto;
  margin-left: 0;
  padding-left: 0;
}

.field-label {
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
}

.form-2 {
  margin-left: auto;
  margin-right: auto;
}

.field-label-2 {
  margin-left: 0;
  margin-right: 0;
}

.textarea {
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
}

.field-label-3 {
  max-width: 940px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.select-field {
  color: var(--black-2);
  border-radius: 10px;
}

.field-label-4 {
  max-width: 940px;
  padding-left: 20px;
}

.select-field-2 {
  width: 80%;
  color: var(--black);
  border-radius: 10px;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 64px;
  padding-right: 0;
}

.submit-button {
  background-color: var(--indian-red);
  border-radius: 50px;
  width: 15%;
  margin-left: 20px;
}

.body-6 {
  background-color: var(--cream);
}

.list-3 {
  color: var(--white-smoke);
  padding-left: 25px;
  list-style-type: none;
}

.image-8 {
  float: none;
  width: 200px;
}

.list-item-4 {
  margin-bottom: 5px;
}

.bottom-bar {
  background-color: #000;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  background-attachment: scroll;
  padding-bottom: 10px;
}

.rich-text-block {
  color: var(--white-smoke);
}

.image-9 {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.link {
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.link.w--current {
  text-decoration: none;
}

.link.w--current:hover {
  text-decoration: underline;
}

.link-2 {
  float: none;
  clear: none;
  color: var(--white-smoke);
  text-decoration: none;
}

.link-2:hover {
  text-decoration: none;
}

.link-2.w--current {
  float: none;
}

.link-block, .link-block-2 {
  margin-top: auto;
  margin-bottom: auto;
}

.link-block-3 {
  margin: auto -5px;
}

.link-block-3.social-icons {
  margin: 5px 10px 5px 0;
}

.link-block-3.no-show {
  display: none;
}

.image-10 {
  width: 100%;
  height: 160px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 25px;
}

.columns {
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.column {
  text-align: center;
}

.column-2 {
  text-align: left;
}

.code-embed {
  width: 100%;
}

.background-video {
  min-height: 800px;
}

.rich-text-block-2 {
  padding-left: 25px;
  padding-right: 25px;
}

.background-video-2 {
  z-index: 1;
  border-radius: 30px;
  width: 100%;
  height: auto;
  min-height: 300px;
  margin-left: 15px;
  padding-top: 0;
  position: sticky;
  top: 100px;
  bottom: 100px;
}

.success-message {
  border-radius: 30px;
}

.text-block-3 {
  text-align: center;
}

.error-message {
  border-radius: 30px;
}

.code-embed-2 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.new-footer {
  border-top: 4px solid var(--indian-red);
  background-image: linear-gradient(0deg, #000, #0000), url('../images/dirty-background-truck.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  min-height: 550px;
  padding-top: 60px;
  padding-bottom: 10px;
}

.new-footer-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.new-footer-columns {
  flex: none;
  width: 80vw;
  margin-left: 0;
  margin-right: 0;
}

.new-footer-column-wrapper {
  max-width: none;
}

.new-footer-header {
  color: var(--white-smoke);
  margin-top: 0;
}

.new-footer-paragraph {
  color: var(--white-smoke);
}

.new-footer-image {
  width: 200px;
}

.div-block-3 {
  padding-top: 5px;
  display: flex;
}

.social-link-footer-2 {
  background-image: url('../images/LinkedIn-Logo.png');
  background-position: 0 0;
  background-size: cover;
}

.social-link-footer-2.facebook {
  background-image: url('../images/Facebook-Logo.png');
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.social-link-footer-2.linkedin {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.social-link-footer-2.instagram {
  background-image: url('../images/instagram.svg');
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.link-block-5 {
  background-image: url('../images/Facebook-Logo.png');
  background-position: 0 0;
  background-size: cover;
}

.image-11 {
  width: 25px;
  height: 25px;
}

.contact-icon-link {
  background-image: url('../images/Mail-Icon.png');
  background-position: 0 0;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  padding-right: 20px;
}

.contact-icon-link.phone {
  background-image: url('../images/Phone-Icon.png');
  background-position: 50%;
}

.contact-icon-link.phone.whatsapp {
  background-image: url('../images/Logo-with-slogan---White-background---1---10---2025-2.svg');
}

.contact-icon-link.location {
  background-image: url('../images/Office-Icon.png');
}

.new-footer-contact-details {
  display: flex;
}

.new-footer-contact-details.office {
  margin-top: 5px;
}

.paragraph-3 {
  color: var(--white-smoke);
}

.background-video-3 {
  z-index: 1;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 30px;
  margin-bottom: 30px;
}

.image-12 {
  border-radius: 30px;
  margin-top: 60px;
  box-shadow: 0 6px 10px 2px #0003;
}

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

.link-3:hover {
  color: var(--medium-sea-green);
}

.paragraph-4 {
  margin-bottom: 0;
}

.footer-link {
  color: var(--white-smoke);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--cream);
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: none;
  }

  .hero-heading {
    width: 80%;
  }

  .hero-paragraph {
    text-align: left;
    width: 75%;
  }

  .support-wrapper.what-we-do {
    width: 75%;
  }

  .support-column.footer {
    float: none;
    display: inline-block;
  }

  .paragraph.form {
    max-width: 940px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph.footer {
    padding-top: 0;
  }

  .paragraph.footer.quick-links {
    margin-bottom: 20px;
  }

  .paragraph.footer.phone-numbers {
    padding-top: 0;
  }

  .subtitle {
    text-align: center;
    padding-left: 60px;
  }

  .subtitle.contact-us {
    padding-left: 65px;
  }

  .subtitle.more-text {
    padding-left: 60px;
  }

  .heading-4.we-offer {
    padding-right: 17px;
  }

  .icon-container.footer-container.icon.phone {
    padding-top: 5px;
  }

  .two-form-fields.two-field-container.checkbox {
    margin-left: auto;
    padding-left: 35px;
  }

  .field-label-3 {
    max-width: 940px;
    padding-left: 20px;
  }

  .field-label-4 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 90px;
  }

  .select-field-2 {
    margin-left: 90px;
    margin-right: 0;
  }

  .submit-button {
    margin-left: 35px;
  }

  .background-video-2 {
    height: auto;
    min-height: 350px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    max-width: none;
  }

  .navbar {
    width: 80vw;
  }

  .hero-paragraph {
    text-align: left;
  }

  .support-wrapper.what-we-do {
    width: 67%;
  }

  .support-wrapper.why-turing {
    flex-flow: row;
  }

  .support-column.footer {
    float: none;
  }

  .support-column.larger-sticky.new-video {
    flex-flow: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .paragraph.form {
    padding-left: 35px;
    padding-right: 35px;
  }

  .subtitle {
    padding-left: 60px;
  }

  .subtitle.contact-us {
    padding-left: 65px;
  }

  .button-28.nav {
    margin-bottom: 0;
    display: inline-block;
  }

  .button-text-28 {
    text-align: center;
  }

  .two-form-fields.two-field-container {
    max-width: none;
  }

  .two-form-fields.two-field-container.one-field {
    padding-left: 35px;
    padding-right: 35px;
  }

  .two-form-fields.two-field-container.checkbox {
    padding-left: 35px;
  }

  .field-label-3, .field-label-4 {
    max-width: none;
    padding-left: 35px;
  }

  .select-field-2, .submit-button {
    margin-left: 35px;
  }

  .link-block-3.social-icons {
    margin: 5px 15px 5px 0;
  }

  .background-video-2 {
    min-height: 350px;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: none;
  }

  .navbar {
    width: 80vw;
  }

  .hero-paragraph {
    text-align: left;
  }

  .support-wrapper.what-we-do {
    width: 50%;
  }

  .support-wrapper.why-turing {
    flex-flow: row;
  }

  .support-column {
    justify-content: center;
    align-items: center;
  }

  .support-column.list, .support-column.left {
    justify-content: center;
    align-items: flex-start;
  }

  .paragraph.form {
    padding-left: 40px;
    padding-right: 40px;
  }

  .subtitle {
    text-align: left;
    padding-left: 65px;
  }

  .image-3.aarde {
    margin-top: 0;
    top: 200px;
    bottom: 200px;
  }

  .button-28.solutions, .button-28.benefits, .image-5, .image-6 {
    width: 220px;
  }

  .container-4, .text-field {
    max-width: none;
  }

  .two-form-fields {
    max-width: none;
    margin-left: 20px;
  }

  .two-form-fields.two-field-container.one-field {
    padding-left: 20px;
  }

  .two-form-fields.two-field-container.checkbox {
    padding-left: 40px;
  }

  .form-2 {
    max-width: 80%;
  }

  .field-label-3, .field-label-4 {
    padding-left: 40px;
  }

  .select-field-2, .submit-button {
    margin-left: 40px;
  }

  .background-video-2 {
    min-height: 450px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container.contact {
    padding-bottom: 35px;
    position: static;
  }

  .container.heading-container {
    margin-right: 0;
    padding-right: 0;
  }

  .container.what-we-do {
    align-self: auto;
  }

  .container.footer {
    flex-flow: column;
    display: flex;
  }

  .hero-section.services {
    background-image: linear-gradient(#222, #2220), url('../images/Fleet-of-Trucks.png');
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .nav-link {
    color: var(--white-smoke);
    text-align: center;
    font-size: 30px;
  }

  .nav-link:hover {
    background-color: var(--dim-grey);
  }

  .hero-wrapper {
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .hero-heading {
    text-align: center;
    width: 110vw;
    margin-left: 0;
    margin-right: 0;
    padding: 5px;
    font-size: 35px;
    overflow: hidden;
  }

  .hero-paragraph {
    width: 110vw;
    margin-left: 0;
    margin-right: 0;
    font-size: 20px;
    overflow: hidden;
  }

  .support-top-wrapper.right-side {
    display: none;
  }

  .support-top-wrapper.right-side.mobile-only {
    display: block;
  }

  .support-top-wrapper.not-mobile {
    display: none;
  }

  .support-top-wrapper.mobile-only {
    display: block;
  }

  .support-wrapper {
    flex-flow: wrap;
  }

  .support-column.list {
    align-self: auto;
  }

  .support-column.why-choose-us.plus-padding {
    padding-right: 5px;
  }

  .support-column.footer {
    float: none;
  }

  .support-column.centered {
    position: sticky;
    top: 100px;
    bottom: 100px;
  }

  .support-square {
    background-color: #fff;
    background-image: url('../images/Industry-Ecosystem-1-1024x731.png');
    background-position: 30%;
    background-repeat: no-repeat;
    background-size: 360px 275px;
    min-height: 330px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .support-square-text {
    font-size: 30px;
  }

  .support-square-image.rectangle {
    bottom: -35%;
  }

  .safe-heading {
    width: 60%;
  }

  .safe-paragraph {
    width: 55%;
  }

  .shop-image.tumbler-1 {
    min-height: 350px;
  }

  .shop-details-wrapper {
    font-size: 14px;
  }

  .shop-details-left {
    margin-right: 25px;
  }

  .shop-local-left {
    top: 8%;
  }

  .shop-local-content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .shop-local-heading {
    margin-top: 0;
  }

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

  .nav-button.w--open {
    z-index: 100;
    background-color: var(--black-2);
    border-radius: 5px;
  }

  .nav-menu {
    background-color: var(--black-2);
    width: 100vw;
    padding-top: 140px;
    padding-bottom: 30px;
  }

  .meet-the-owners-right {
    padding-left: 145px;
  }

  .meet-the-owners-left {
    background-position: 50% 100%;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-right {
    width: 100%;
    padding-left: 0;
  }

  .contact-hero-bg-wrapper {
    flex-direction: column-reverse;
  }

  .contact-image-div {
    background-image: linear-gradient(to top, var(--black-2), #2222222e 76%), url('../images/vinicius-amano-4mK2KVuYrDs-unsplash-1-1.jpg');
    background-position: 0 0, 50% 35%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 100%;
    height: 350px;
  }

  .contact-block-wrapper {
    justify-content: space-between;
  }

  .contact-block {
    width: 48%;
    margin-right: 0;
  }

  .image-grid, .products-list {
    grid-template-columns: 1fr 1fr;
  }

  .shop-page-wrapper {
    flex-direction: column;
  }

  .shop-category-menu {
    width: 100%;
    margin-bottom: 25px;
  }

  .shop-list {
    width: 100%;
  }

  .category-menu-heading {
    line-height: 1.5;
  }

  .row {
    flex-direction: column;
  }

  .title {
    margin-left: 0;
    padding-left: 0;
    font-size: 48px;
  }

  .paragraph.dark.benefits-page {
    padding-left: 70px;
  }

  .subtitle {
    margin-left: 0;
    padding-left: 0;
  }

  .subtitle.more-text {
    font-size: 23px;
  }

  .heading-4.we-offer {
    margin-top: 0;
  }

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

  .icon-2 {
    color: var(--indian-red);
  }

  .image-3.aarde.services {
    padding: 0;
    position: static;
  }

  .light {
    margin-top: 0;
  }

  .container-3 {
    max-width: 680px;
  }

  .image-5, .image-6 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-4 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-bottom: 10px;
  }

  .container-4.mobile-hidden {
    max-width: 728px;
  }

  .benefits.header {
    padding-left: 0;
  }

  .icons.smaller {
    margin-left: 0;
  }

  .icons.smaller.chart {
    margin-left: 5px;
  }

  .columns {
    display: flex;
  }

  .background-video-2 {
    min-height: 175px;
  }

  .new-footer-column-wrapper {
    max-width: none;
  }

  .new-footer-contact-details {
    flex-flow: row;
  }

  .background-video-3 {
    aspect-ratio: 3 / 2;
    object-fit: scale-down;
    width: 550px;
    height: 310px;
  }
}

@media screen and (max-width: 767px) {
  .container.shop-local-container {
    padding-left: 0;
    padding-right: 0;
  }

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

  .hero-section.services {
    background-image: linear-gradient(#222, #2220), url('../images/Fleet-of-Trucks.png');
    background-position: 0 0, 25%;
  }

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

  .hero-heading {
    margin-bottom: 5px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-paragraph {
    margin-right: 0;
    font-size: 18px;
  }

  .hero-paragraph.mobile {
    padding-left: 10vw;
    padding-right: 10vw;
    display: block;
  }

  .hero-paragraph.not-on-mobile {
    display: none;
  }

  .support-section._2.no-margin {
    padding-top: 0;
  }

  .support-section._2.no-margin-botttom {
    padding-bottom: 0;
  }

  .support-top-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .support-top-left {
    margin-bottom: 15px;
  }

  .support-top-heading.right-side.mobile-only, .support-top-heading.parent {
    font-size: 36px;
  }

  .support-top-right {
    width: 100%;
  }

  .support-wrapper, .support-wrapper.why-turing {
    flex-flow: column;
  }

  .support-column {
    width: 100%;
    margin-bottom: 0;
  }

  .support-column.list {
    padding-left: 0;
  }

  .support-column.contact {
    margin-bottom: 0;
  }

  .support-column.footer {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .support-column.centered {
    margin-top: 80px;
    position: static;
  }

  .support-column.hidden {
    display: none;
  }

  .support-column.larger-sticky {
    position: static;
    top: 300px;
    bottom: 0;
  }

  .support-square {
    background-size: cover;
    margin-bottom: 0;
  }

  .support-square-text {
    font-size: 40px;
  }

  .support-square-image {
    right: -18%;
  }

  .safe-wrapper {
    justify-content: flex-end;
    padding-bottom: 25px;
  }

  .shop-top-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-item-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

  .shop-local-wrapper {
    flex-wrap: wrap;
  }

  .shop-local-left {
    border-radius: 0;
    width: 100%;
    position: static;
  }

  .shop-local-right {
    border-radius: 0;
    justify-content: center;
    width: 100%;
  }

  .nav-menu {
    background-color: var(--black-2);
    color: var(--white-smoke);
  }

  .about-columns-wrapper {
    flex-wrap: wrap;
  }

  .about-column {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 45px;
    display: flex;
  }

  .meet-the-owners-wrapper {
    flex-direction: column;
  }

  .meet-the-owners-right {
    border-radius: 0;
    width: 100%;
    padding-left: 45px;
    padding-right: 45px;
  }

  .meet-the-owners-left {
    border-radius: 0;
    width: 100%;
    height: 400px;
    position: static;
  }

  .owner-bios-wrapper {
    flex-flow: column wrap;
  }

  .owner-bio {
    width: 100%;
    margin-bottom: 45px;
  }

  .contact-block-wrapper {
    flex-direction: column;
  }

  .contact-block {
    width: 100%;
  }

  .heading.footer {
    margin-bottom: 0;
  }

  .heading.footer.quick-links {
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .image-grid, .products-list {
    grid-template-columns: 1fr;
  }

  .pill-2.badge.primary.sale {
    right: 2%;
  }

  .shopping-page-wrapper {
    flex-direction: column;
  }

  .shopping-page-left {
    width: 100%;
    margin-bottom: 25px;
  }

  .shipping-page-right {
    width: 100%;
    padding-left: 0;
  }

  .shop-page-wrapper {
    flex-direction: column;
  }

  .shop-category-menu {
    width: 100%;
    margin-bottom: 20px;
  }

  .shop-list {
    width: 100%;
  }

  .donate-wrapper {
    width: 90%;
  }

  .title {
    margin-left: 0;
    font-size: 42px;
  }

  .heading-2 {
    margin-bottom: 0;
  }

  .paragraph.footer {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .paragraph.footer.quick-links {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .paragraph.footer.phone-numbers, .paragraph.footer.phone-numbers.no-icon {
    padding-top: 0;
    padding-bottom: 0;
  }

  .paragraph.footer.no-icon {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 30px;
  }

  .subtitle {
    margin-left: 0;
  }

  .heading-4 {
    margin-bottom: 15px;
  }

  .heading-4.we-offer {
    margin-top: 0;
  }

  .image-2 {
    margin-top: 0;
    display: block;
  }

  .image-3 {
    margin-top: 0;
    padding-left: 0;
  }

  .image-3.scroll {
    margin-top: 60px;
    margin-bottom: 0;
    bottom: 100px;
  }

  .image-3.aarde.services {
    margin-left: 0;
  }

  .section.footer {
    overflow: hidden;
  }

  .button-28.solutions, .button-28.benefits {
    width: 120px;
  }

  .button-text-28 {
    font-size: 14px;
  }

  .image-5, .image-6 {
    width: 120px;
  }

  .container-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 90%;
    max-width: 100%;
  }

  .icon-container.footer-container {
    justify-content: flex-start;
    align-items: center;
    margin-right: 0;
    padding-right: 0;
  }

  .icon-container.footer-container.icon {
    padding-top: 10px;
  }

  .submit-button {
    width: auto;
  }

  .image-8 {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .link-block-3.social-icons {
    margin-right: 0;
  }

  .link-block-3.no-show {
    display: none;
  }

  .columns {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    margin-left: auto;
    margin-right: auto;
  }

  .container-5 {
    padding-left: 0;
  }

  .background-video-2 {
    min-height: 260px;
    margin-top: 40px;
    margin-left: 0;
  }

  .new-footer-contact-details {
    flex-flow: row;
  }

  .background-video-3 {
    width: 420px;
    height: 235px;
  }
}

@media screen and (max-width: 479px) {
  .banner {
    font-size: 15px;
  }

  .btn.light.hero.safe {
    margin-right: 0;
  }

  .container.footer {
    flex-flow: column;
    margin-left: 0;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
  }

  .banner-content-wrapper {
    flex-direction: column;
  }

  .pill.primary.alert-bar {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .hero-section.contact-hero {
    background-position: 0 0, 80%;
  }

  .hero-section.benefits {
    background-image: linear-gradient(#222, #2220), url('../images/White-Truck.png');
    background-position: 0 0, 50% 0;
    background-repeat: repeat, repeat;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-section.contact {
    background-position: 0 0, 50%;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-section.solutions {
    background-position: 0 0, 60% 0;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-section.services {
    background-image: linear-gradient(#222, #2220), url('../images/Fleet-of-Trucks.png');
    background-position: 0 0, 30%;
    min-height: 600px;
    overflow: hidden;
  }

  .nav-link {
    border-radius: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .hero-wrapper {
    justify-content: center;
    align-items: center;
    padding-bottom: 45px;
  }

  .hero-heading {
    text-align: center;
    flex: 0 auto;
    width: 110vw;
    margin-bottom: 15px;
    margin-left: 0;
    font-size: 30px;
    overflow: visible;
  }

  .hero-paragraph {
    flex: 0 auto;
    width: 120vw;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15vw;
    padding-right: 15vw;
    font-size: 18px;
    display: block;
  }

  .hero-paragraph.mobile {
    display: block;
  }

  .support-section._2 {
    width: 100vw;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .support-section._2.no-margin {
    padding-top: 0;
  }

  .support-section._2.no-margin-botttom {
    padding-bottom: 0;
  }

  .support-section.what-we-do {
    width: 100vw;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .support-section.what-we-do.services {
    padding-top: 50px;
    padding-bottom: 30px;
    overflow: auto;
  }

  .support-section.benefits {
    padding-top: 50px;
    padding-bottom: 30px;
    overflow: hidden;
  }

  .support-section.contact-page {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
  }

  .support-top-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
  }

  .support-top-wrapper.right-side {
    width: 100%;
    margin-right: -20px;
    display: none;
  }

  .support-top-wrapper.right-side.mobile-only {
    width: 110%;
    margin-bottom: 40px;
    margin-left: 10%;
    margin-right: 10%;
    display: block;
  }

  .support-top-wrapper.not-mobile {
    display: none;
  }

  .support-top-wrapper.mobile-only {
    text-align: center;
    margin-bottom: 40px;
    display: block;
  }

  .support-top-heading {
    font-size: 30px;
  }

  .support-top-heading.right-side {
    background-color: #0000;
    margin-right: 5px;
    padding-right: 30px;
  }

  .support-top-heading.right-side.mobile-only {
    border-radius: 0;
    padding-right: 40px;
    font-size: 26px;
  }

  .support-top-heading.parent {
    text-align: center;
    width: 100%;
    margin-left: 0;
    padding: 5px 10%;
    font-size: 26px;
  }

  .support-wrapper {
    flex-flow: column;
  }

  .support-wrapper.what-we-do {
    border-width: 2px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .support-wrapper.why-turing {
    padding-top: 0;
    padding-bottom: 0;
  }

  .support-wrapper.contact-page {
    flex-flow: column;
  }

  .support-column {
    margin-bottom: 0;
  }

  .support-column.list {
    padding-left: 0;
  }

  .support-column.why-choose-us {
    padding-top: 0;
  }

  .support-column.why-choose-us.plus-padding {
    margin-bottom: 20px;
  }

  .support-column.why-choose-us.services {
    margin-bottom: 0;
    padding-bottom: 25px;
  }

  .support-column.footer {
    text-align: left;
    min-height: 0;
    margin-left: 0;
  }

  .support-column.centered {
    margin-bottom: 0;
    display: none;
  }

  .support-column.hidden {
    display: none;
  }

  .support-column.larger-sticky {
    min-height: 300px;
    display: block;
  }

  .support-column.larger-sticky.not-mobile {
    display: none;
  }

  .support-column.larger-sticky.new-video {
    min-height: auto;
  }

  .support-square {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-image: url('../images/Industry-Ecosystem-1-1024x731.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-clip: border-box;
  }

  .safe-heading {
    width: 100%;
    font-size: 30px;
  }

  .safe-paragraph {
    width: 70%;
    font-size: 13px;
  }

  .shop-details-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .shop-details-left {
    margin-right: 0;
  }

  .shop-item-name {
    text-align: center;
  }

  .shop-item-price {
    margin-left: 5px;
    margin-right: 5px;
  }

  .shop-local-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .shop-local-right {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-wrapper {
    flex-direction: column;
  }

  .footer-logo-column {
    margin-bottom: 30px;
  }

  .social-footer-link {
    margin-left: 25px;
    margin-right: 25px;
  }

  .nav-menu {
    position: fixed;
  }

  .why-acme-block {
    width: 100%;
  }

  .about-column {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .contact-image-div {
    background-position: 0 0, 50%;
  }

  .heading.footer {
    margin-bottom: 0;
  }

  .heading.footer.quick-links {
    margin-top: 0;
  }

  .price-wrapper {
    justify-content: center;
  }

  .pill-2.badge.primary.sale {
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 14px;
    position: absolute;
    inset: 3% 0% auto auto;
  }

  .shopping-page-image {
    min-height: 350px;
  }

  .shop-item-price-page {
    margin-left: 5px;
    margin-right: 5px;
  }

  .shop-category-menu {
    padding-right: 0;
  }

  .donate-heading-1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .donate-heading-2 {
    font-size: 24px;
  }

  .donate-paragraph {
    width: 80%;
    font-size: 13px;
  }

  .donate-wrapper {
    width: 100%;
  }

  .cart {
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
  }

  .cart-quantity-cart {
    position: absolute;
    inset: -23% 0% auto 27px;
  }

  .cart-icon {
    margin-right: 0;
  }

  .order-item-list {
    flex-direction: column;
    display: flex;
  }

  .cart-image-wrapper.checkout-page {
    margin-bottom: 25px;
  }

  .cart-item {
    flex-direction: row;
  }

  .brand {
    width: 175px;
    padding-left: 0;
  }

  .brand.w--current {
    width: 150px;
    padding-left: 0;
  }

  .cart-menu {
    margin-right: 10px;
  }

  .utility-page-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .order-item-checkoiut {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 45px;
  }

  .order-item-details {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .title {
    text-align: center;
    margin-left: 0;
    padding-left: 0;
    font-size: 30px;
  }

  .body {
    overflow: visible;
  }

  .heading-2 {
    margin-top: 0;
    font-size: 20px;
  }

  .paragraph {
    font-size: 14px;
  }

  .paragraph.dark {
    padding-bottom: 20px;
  }

  .paragraph.dark.benefits-page {
    padding-left: 25px;
  }

  .paragraph.beginning {
    margin-bottom: 15px;
    padding-right: 0;
  }

  .paragraph.form {
    margin-bottom: 20px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph.footer {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .paragraph.footer.quick-links {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-3.contact {
    font-size: 22px;
  }

  .subtitle.more-text {
    font-size: 20px;
  }

  .heading-4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .heading-4.we-offer {
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .list-2 {
    margin-top: 15px;
    padding-right: 0;
  }

  .image-3 {
    margin-top: 40px;
    margin-bottom: -20px;
    padding-left: 0;
  }

  .image-3.scroll {
    margin-bottom: 60px;
    top: 250px;
    bottom: 250px;
  }

  .image-3.aarde {
    margin-left: 0;
    position: static;
  }

  .image-3.aarde.services {
    width: 90vw;
    height: 100%;
    margin-left: 0;
    padding: 0;
  }

  .image-4 {
    flex: 0 auto;
    position: static;
  }

  .light {
    margin: 60px 10vw 20px;
    font-size: 28px;
  }

  .section {
    background-position: 20%;
    width: 100vw;
    height: auto;
    overflow: auto;
  }

  .section.footer {
    flex-flow: column;
    padding-left: 10vw;
    overflow: visible;
  }

  .container-3 {
    text-align: center;
    width: 120%;
    margin-left: -10%;
    margin-right: -10%;
    overflow: visible;
  }

  .container-3.right-side.mobile-only {
    width: 110%;
    padding-right: 20px;
  }

  .heading-5 {
    padding-top: 20px;
    font-size: 20px;
  }

  .button-28 {
    width: 160px;
  }

  .button-28.solutions.mobile-only {
    text-align: center;
    width: 160px;
    margin-bottom: 50px;
    display: block;
  }

  .button-28.benefits {
    margin-bottom: 40px;
  }

  .button-28.benefits.mobile-only {
    text-align: center;
    width: 160px;
    margin-bottom: 50px;
    display: block;
  }

  .button-28.more-mobile-space {
    width: 165px;
    margin-top: 25px;
  }

  .image-5 {
    width: 160px;
    margin-bottom: 0;
  }

  .image-6 {
    width: 160px;
  }

  .container-4 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .container-4.mobile-hidden {
    display: none;
  }

  .benefits.header {
    padding-left: 15px;
    font-size: 18px;
  }

  .icon-container {
    flex-flow: row;
  }

  .icon-container.footer-container {
    padding-left: 0;
    padding-right: 0;
  }

  .icon-container.footer-container.icon {
    padding-top: 0;
  }

  .icon-container.mobile {
    flex-flow: column;
  }

  .icons {
    width: 55px;
    margin-bottom: 10px;
    margin-left: 15px;
  }

  .icons.smaller {
    margin-left: 12px;
  }

  .icons.smaller.chart {
    margin-left: 10px;
  }

  .icons.communication, .icons.communication.unlinked-icon, .icons.communication.social {
    margin-left: 0;
  }

  .text-field {
    margin-bottom: 15px;
  }

  .two-form-fields {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .two-form-fields.two-field-container {
    flex-flow: column;
    margin-left: 0;
    margin-right: 0;
  }

  .two-form-fields.two-field-container.one-field {
    padding-left: 0;
    padding-right: 0;
  }

  .two-form-fields.two-field-container.checkbox, .field-label-3 {
    padding-left: 0;
  }

  .field-label-4 {
    margin-bottom: 15px;
    padding-left: 0;
  }

  .select-field-2 {
    margin-left: 0;
  }

  .submit-button {
    width: auto;
    margin-left: 0;
  }

  .image-8 {
    width: 160px;
    margin-left: -5px;
    margin-right: auto;
    padding-bottom: 0;
  }

  .link-block-3 {
    margin-left: 0;
    margin-right: 0;
  }

  .link-block-3.social-icons {
    margin-right: 5px;
  }

  .image-10 {
    width: 175px;
    max-width: none;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .columns {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    margin-left: 0;
    display: flex;
  }

  .column {
    text-align: left;
    margin-bottom: 0;
  }

  .column-2 {
    margin-top: 45px;
    margin-bottom: 45px;
  }

  .background-video {
    border-bottom: 4px solid var(--indian-red);
    width: 100vw;
    min-height: 600px;
  }

  .column-3 {
    margin-bottom: 30px;
  }

  .background-video-2 {
    min-height: 150px;
    margin-bottom: 40px;
  }

  .contact-icon-link {
    padding-right: 20px;
  }

  .background-video-3 {
    width: 230px;
    height: 120px;
  }

  .image-12 {
    margin-bottom: 60px;
  }
}


