.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

#hero-banner-section {
  --hero-desktop-ratio: 1920 / 810;
  --hero-mobile-ratio: 1080 / 1114;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #050505;
}

#hero-slides {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.6s ease;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}

.hero-slide-frame {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: var(--hero-mobile-ratio);
  background-color: #050505;
}
@media (min-width: 768px) {
  .hero-slide-frame {
    aspect-ratio: var(--hero-desktop-ratio);
  }
}

.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.5rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  z-index: 20;
  cursor: pointer;
}
.hero-nav:hover {
  color: #fff;
}
.hero-nav--prev {
  left: 30px;
}
.hero-nav--next {
  right: 30px;
}

.hero-nav__icon {
  font-size: 30px;
  font-weight: 300;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  gap: 15px;
  z-index: 20;
}

.hero-dot {
  height: 4px;
  width: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s;
  cursor: pointer;
}
.hero-dot--active {
  width: 60px;
  background-color: #54D4FF;
}

.desktop-banner-only {
  display: none;
}
@media (min-width: 768px) {
  .desktop-banner-only {
    display: block;
  }
}

.featured-banner {
  width: 100%;
}
.featured-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.awards {
  width: 100%;
  background: #000;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .awards {
    padding: 80px 0;
  }
}

.awards__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
}

.awards__logos {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .awards__logos {
    max-width: 900px;
    margin-bottom: 40px;
  }
}

.awards__title {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 19px;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .awards__title {
    font-size: 42px;
    margin-bottom: 20px;
  }
}

.awards__subtitle {
  color: #fff;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .awards__subtitle {
    font-size: 28px;
  }
}

.reviews {
  position: relative;
  width: 100%;
  padding: 30px 0;
  z-index: 10;
}
@media (min-width: 768px) {
  .reviews {
    padding: 50px 0;
    background: #000;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.15);
  }
}

.desktop-review-title {
  display: none;
}
@media (min-width: 768px) {
  .desktop-review-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
  }
}

.mobile-review-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 5%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .mobile-review-title {
    display: none;
  }
}

.reviews__quote-mark {
  position: absolute;
  line-height: 1;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
}
.reviews__quote-mark--open-mobile {
  top: -15px;
  left: 0;
  font-size: 40px;
}
.reviews__quote-mark--close-mobile {
  bottom: -15px;
  right: 0;
  font-size: 40px;
}
.reviews__quote-mark--open-desktop {
  top: -20px;
  left: -20px;
  font-size: 60px;
}
@media (min-width: 768px) {
  .reviews__quote-mark--open-desktop {
    top: -40px;
    left: -40px;
    font-size: 100px;
  }
}
.reviews__quote-mark--close-desktop {
  bottom: -40px;
  right: -20px;
  font-size: 60px;
}
@media (min-width: 768px) {
  .reviews__quote-mark--close-desktop {
    bottom: -80px;
    right: -40px;
    font-size: 100px;
  }
}

.reviews__quote--mobile {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 0 20px;
  line-height: 1.2;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.reviews__quote--desktop {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  position: relative;
  padding: 0 30px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .reviews__quote--desktop {
    font-size: 49px;
  }
}

.reviews__box {
  width: 100%;
  padding: 40px 0;
  background: #000;
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) {
  .reviews__box {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
}

.reviews__wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (min-width: 768px) {
  .reviews__wrapper {
    flex-direction: row;
    gap: 80px;
  }
}

.reviews__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 0;
  position: relative;
}
@media (min-width: 768px) {
  .reviews__media {
    width: 60%;
  }
}

.reviews__badge {
  width: 200px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .reviews__badge {
    width: 300px;
  }
}

.reviews__carousel {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .reviews__carousel {
    padding: 0;
  }
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #D9D9D9;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
  z-index: 10;
  cursor: pointer;
}
.reviews__nav:hover {
  background: #fff;
}
.reviews__nav svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .reviews__nav {
    width: 50px;
    height: 50px;
  }
  .reviews__nav svg {
    width: 24px;
    height: 24px;
  }
}
.reviews__nav--prev {
  left: -20px;
}
@media (min-width: 768px) {
  .reviews__nav--prev {
    left: -60px;
  }
}
.reviews__nav--next {
  right: -20px;
}
@media (min-width: 768px) {
  .reviews__nav--next {
    right: -60px;
  }
}

.reviews__track {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.reviews__slide {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: center;
  display: flex;
  justify-content: center;
}
.reviews__slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}

.coating {
  padding: 50px 0;
  background: #000;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .coating {
    padding: 100px 0;
  }
}

.coating__wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .coating__wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

.coating__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .coating__media {
    width: 60%;
  }
}
.coating__media img {
  width: 100%;
  max-width: 688px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.coating__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .coating__panel {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .coating__panel {
    width: 40%;
  }
}

.coating__card {
  background: #1C1C1C;
  border-radius: 18px;
  width: 342px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
}
@media (min-width: 768px) {
  .coating__card {
    border-radius: 24px;
    width: 100%;
    height: auto;
    max-width: 503px;
    min-height: 207px;
    text-align: left;
    align-items: flex-start;
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .coating__card {
    margin: 0;
  }
}

.coating__card-title {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .coating__card-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

.coating__card-text {
  color: #BDBEC0;
  font-size: 11px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .coating__card-text {
    font-size: 18px;
  }
}

.hassle {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.hassle__wrapper {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.hassle__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 45%;
  padding: 20px 5px 20px 2%;
}
@media (min-width: 768px) {
  .hassle__content {
    width: 50%;
    padding: 100px 5px 100px 5%;
  }
}
@media (min-width: 1024px) {
  .hassle__content {
    padding-left: 10%;
  }
}

.hassle__title {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .hassle__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.hassle__text {
  color: #BDBEC0;
  font-size: 11px;
  line-height: 1.6;
  max-width: 548px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hassle__text {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.hassle__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (min-width: 768px) {
  .hassle__actions {
    gap: 15px;
  }
}

.hassle__btn {
  display: inline-block;
  background: #FFC000;
  color: #000;
  font-weight: 700;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  text-decoration: none;
}
.hassle__btn:hover {
  transform: scale(1.05);
  color: #000;
}
@media (min-width: 768px) {
  .hassle__btn {
    font-weight: 800;
    font-size: 19px;
    padding: 12px 25px;
    border-radius: 12px;
  }
}

.hassle__media {
  width: 55%;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .hassle__media {
    width: 50%;
  }
}
.hassle__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.bestsellers {
  width: 100%;
  background: #000;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .bestsellers {
    padding: 100px 0;
  }
}

.bestsellers__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
@media (min-width: 768px) {
  .bestsellers__inner {
    padding: 0 5%;
  }
}

.bestsellers__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .bestsellers__title {
    font-size: 45px;
    margin-bottom: 60px;
  }
}

.bestsellers__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .bestsellers__grid {
    gap: 30px;
  }
}

.bestsellers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.333%;
  max-width: 271px;
}
.bestsellers__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .bestsellers__item img {
    border-radius: 20px;
    margin-bottom: 25px;
  }
}

.bestsellers__btn {
  background: #FFC000;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 3px 9px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  text-align: center;
  text-decoration: none;
  max-width: 160px;
  width: 100%;
}
.bestsellers__btn:hover {
  transform: scale(1.05);
  color: #000;
}
@media (min-width: 768px) {
  .bestsellers__btn {
    font-size: 20px;
    padding: 12px 30px;
    border-radius: 10px;
    max-width: 200px;
  }
}

.media-news {
  width: 100%;
  background: #000;
  overflow: hidden;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .media-news {
    padding-bottom: 100px;
  }
}

.media-news__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.media-news__inner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.valued-customers {
  width: 100%;
  background: #000;
  overflow: hidden;
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .valued-customers {
    padding-bottom: 100px;
  }
}

.valued-customers__heading {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .valued-customers__heading {
    margin-bottom: 50px;
  }
}

.valued-customers__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .valued-customers__title {
    font-size: 40px;
  }
}

.valued-customers__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.valued-customers__inner picture {
  display: block;
  width: 100%;
}
.valued-customers__inner img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.video-showcase {
  position: relative;
  width: 100%;
  padding: 40px 0 30px;
}
@media (min-width: 768px) {
  .video-showcase {
    padding: 60px 0 40px;
  }
}

.video-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
}

.video-showcase__bg-top {
  background: #000;
  height: 200px;
  width: 100%;
}
@media (min-width: 768px) {
  .video-showcase__bg-top {
    height: 250px;
  }
}

.video-showcase__bg-bottom {
  background: #F8F8F8;
  flex: 1;
  width: 100%;
}

.video-showcase__heading {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5% 30px;
}
@media (min-width: 768px) {
  .video-showcase__heading {
    padding-bottom: 50px;
  }
}

.video-showcase__title {
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .video-showcase__title {
    font-size: 45px;
  }
}

.video-showcase__track-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5px;
}
@media (min-width: 768px) {
  .video-showcase__track-wrapper {
    padding: 0 70px;
  }
}

.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 30;
  cursor: pointer;
}
.slider-nav-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.slider-nav-btn svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .slider-nav-btn {
    width: 55px;
    height: 55px;
  }
  .slider-nav-btn svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  .slider-nav-btn {
    display: none !important;
  }
}
.slider-nav-btn--prev {
  left: 0;
}
@media (min-width: 768px) {
  .slider-nav-btn--prev {
    left: 5px;
  }
}
.slider-nav-btn--next {
  right: 0;
}
@media (min-width: 768px) {
  .slider-nav-btn--next {
    right: 5px;
  }
}

.video-showcase__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .video-showcase__track {
    gap: 30px;
  }
}

.video-showcase__card {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 175px;
  height: 245px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: #000;
}
.video-showcase__card > div {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .video-showcase__card {
    scroll-snap-align: start;
    width: 270px;
    height: 479px;
  }
}/*# sourceMappingURL=landing.css.map */