.scrollingBannerWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  padding: 0 0 1.5rem 0;
  animation: scrollingBanner linear infinite;
  animation-duration: 6s;
}
@media (min-width: 768px) {
  .scrollingBannerWrapper {
    animation-duration: 15s;
    padding: 1rem 0;
  }
}
@media (min-width: 1200px) {
  .scrollingBannerWrapper {
    animation-duration: 18s;
  }
}
@media (max-width: 767px) {
  .scrollingBannerWrapper {
    animation-duration: 15s;
    padding: 1rem 0;
  }
}
.scrollingBannerWrapper span {
  font-size: 45px;
  font-family: var(--headings);
  font-weight: 700;
  white-space: nowrap;
  color: var(--dark);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .scrollingBannerWrapper span {
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .scrollingBannerWrapper span {
    font-size: 45px;
  }
}
@media (max-width: 1200px) {
  .scrollingBannerWrapper span {
    font-size: 30px;
  }
}
@keyframes scrollingBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scrollingBannerWrapperRev {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2rem;
  padding: 0 0 1.5rem 0;
  animation: scrollingBannerRev linear infinite;
  animation-duration: 6s;
}
@media (min-width: 768px) {
  .scrollingBannerWrapperRev {
    animation-duration: 15s;
    padding: 1rem 0;
  }
}
@media (min-width: 1200px) {
  .scrollingBannerWrapperRev {
    animation-duration: 18s;
  }
}
@media (max-width: 767px) {
  .scrollingBannerWrapperRev {
    animation-duration: 15s;
    padding: 1rem 0;
  }
}
.scrollingBannerWrapperRev span {
  font-size: 45px;
  font-family: var(--headings);
  font-weight: 700;
  white-space: nowrap;
  color: var(--dark);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .scrollingBannerWrapperRev span {
    font-size: 45px;
  }
}
@media (min-width: 1200px) {
  .scrollingBannerWrapperRev span {
    font-size: 45px;
  }
}
@media (max-width: 1200px) {
  .scrollingBannerWrapperRev span {
    font-size: 30px;
  }
}
@keyframes scrollingBannerRev {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.myScroll {
  background-color: transparent;
  z-index: 1;
}
.myScroll .scroll1 {
  transform: rotate(7deg);
  background-color: var(--light);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  width: 105vw;
  margin-left: -3vw;
}
@media (max-width: 1200px) {
  .myScroll .scroll1 {
    transform: rotate(0deg);
  }
}
.myScroll .scroll2 {
  transform: rotate(-7deg);
  background-color: var(--light);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin-top: -100px;
  width: 105vw;
  margin-left: -3vw;
}
@media (max-width: 1200px) {
  .myScroll .scroll2 {
    transform: rotate(0deg);
    margin-top: 0px;
  }
}
.myScrollLower {
  opacity: 0.35;
}
.myScrollLower .scrollingBannerWrapper {
  justify-content: center;
}
.myScrollLower span {
  font-size: 130px;
  font-family: var(--headings);
  color: white;
  line-height: 1;
  justify-content: center;
  display: flex;
}
.myScrollLower span svg {
  width: 85px;
  height: 100px;
}
@media (max-width: 767px) {
  .myScrollLower span svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .myScrollLower span {
    font-size: 60px;
  }
}
