/*

.conveyer-belt-hero {
  margin-top: calc(-1 * var(--header-height));
}

.hs-inline-edit .conveyer-belt-hero {
  margin-top: 0!important;
}
*/


@media screen and (max-width: 999px) {
  .conveyer-belt-hero .hide-on-mobile {
    display: none!important;
  }
}

@media screen and (min-width: 1000px) {
  .conveyer-belt-hero .hide-on-desktop {
    display: none!important;
  }
}

.conveyer-belt-hero {
  --background-color: #fff;
  position: relative;
  overflow: hidden;
  margin: auto;
  background-color: var(--background-color);
  padding: 0 var(--margin);
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero {
    padding: var(--space-md) var(--margin);
  }
}

@media screen and (min-width: 1000px) {
  .conveyer-belt-hero__container {
    max-width: var(--container-lg);
    margin: auto;
    display: grid;
    align-items: center;
    grid-gap: var(--margin);
    grid-template-columns: 5fr 4fr;
  }
}

/*
@media screen and (min-width: 1600px) {
  .conveyer-belt-hero__container {
    grid-template-columns: 1fr 45rem;
  }
}
*/

@media screen and (max-width: 999px) {
  .conveyer-belt-hero__text {
    margin-bottom: var(--space-md);
  }
}
.conveyer-belt-hero__text>div {
  max-width: 45rem;
}

.conveyer-belt-hero__text .highlight {
  display: inline;
  background: linear-gradient(to right, #d0a49b 0%, #2742f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.conveyer-belt-hero__wrapper {
  position: relative;
  display: flex;
  gap: 20px;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero__wrapper {
    flex-direction: column;
    gap: 10px;
    margin-left: calc(-1 * var(--margin));
    margin-right: calc(-1 * var(--margin));
  }
}
@media screen and (min-width: 1000px) {
  .conveyer-belt-hero__wrapper {
    margin-left: auto;
    width: 100%;
  }
}
  
.conveyer-belt-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(0deg, var(--background-color) 0%, rgba(0,0,0,0) 33%),
                linear-gradient(0deg, rgba(0,0,0,0) 66%, var(--background-color) 100%);
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero__gradient {
    display: none;
  }
}

.conveyer-belt-hero__row {
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero__row {
    display: flex;
  }
}
@media screen and (min-width: 1000px) {
  .conveyer-belt-hero__row {
    height: calc(65vh + 100px);
    width: 100%;
  }
}

.conveyer-belt-hero__inner {
  animation: 25s linear 0s infinite normal none paused adfW02;
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero__inner {
    display: flex;
    flex-shrink: 0;
  }
  .conveyer-belt-hero__row:nth-child(1) .conveyer-belt-hero__inner {
    align-items: flex-end;
  }
  .conveyer-belt-hero__row:nth-child(2) .conveyer-belt-hero__inner {
    align-items: flex-start;
  }
}

@keyframes adfW02 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@media screen and (max-width: 999px) {
  @keyframes adfW02 {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
}

.conveyer-belt-hero__item {
  padding: 20px 0 0;
  display: block;
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero__item {
    padding: 0 0 0 10px;
  }
}

.conveyer-belt-hero__item img {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 999px) {
  .conveyer-belt-hero__item img {
    width: auto;
  }
}

@media screen and (max-width: 999px) {
  .conveyer-belt-hero__item--size-sm img {
    height: 150px;
  }
  .conveyer-belt-hero__item--size-md img {
    height: 150px;
  }
  .conveyer-belt-hero__item--size-lg img {
    height: 150px;
  }
}
@media screen and (min-width: 1000px) {
  .conveyer-belt-hero__row:nth-child(1) .conveyer-belt-hero__item--size-sm {
    padding-left: 50%;
  }

  .conveyer-belt-hero__row:nth-child(1) .conveyer-belt-hero__item--size-md {
    padding-left: 25%;
  }

  .conveyer-belt-hero__row:nth-child(2) .conveyer-belt-hero__item--size-sm {
    padding-right: 50%;
  }

  .conveyer-belt-hero__row:nth-child(2) .conveyer-belt-hero__item--size-md {
    padding-right: 25%;
  }
}