.hero {
  background-color: var(--color-dark, #161616);
}
.hero-swiper-box {
  width: 100%;
  height: 600px;
  position: relative;
}
.hero__container {
  flex-direction: column;
  height: 100%;
  padding-bottom: 50px;
  display: flex;
  position: relative;
}
@media (width>=1024px) {
  .hero__container {
    padding-top: 50px;
  }
}
.hero-slide {
  height: 600px;
}
.hero-slide__img {
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (width>=1024px) {
  .hero-slide__img {
    width: 100%;
  }
}
.hero-slide__desc {
  backdrop-filter: blur(10px);
  background: #00000080;
  border-radius: 10px;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding: 15px;
  display: flex;
}
@media (width>=480px) {
  .hero-slide__desc {
    max-width: 440px;
  }
}
@media (width>=480px) and (width<=1023px) {
  .hero-slide__desc {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (width>=1280px) {
  .hero-slide__desc {
    max-width: 500px;
    margin: auto 0;
    padding: 60px;
  }
}
.hero-slide__title {
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #d8f5f5 0%, #77b6d4 39.58%) text;
  font-size: 30px;
  font-weight: 900;
}
@media (width>=1280px) {
  .hero-slide__title {
    font-size: 75px;
  }
}
.hero-slide__text {
  color: var(--color-white, #fff);
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
}
@media (width>=1280px) {
  .hero-slide__text {
    font-size: 16px;
  }
}
.hero-slide__link {
  width: fit-content;
}
@media (width>=1280px) {
  .hero-slide__link {
    margin-top: 30px;
  }
}
.hero-swiper-pagination {
  z-index: 1;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%);
}
@media (width<=1279px) {
  .ribbon.hero-slide__desc[data-label]:before,
  .ribbon.hero-slide__desc[data-label]:after {
    content: none;
  }
}
.about {
  color: var(--color-white, #fff);
  background-color: var(--color-dark, #161616);
  background-color: #0000;
  background-image: linear-gradient(#000c 44.5%, #020202 100%), url('../images/about-bg.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll, scroll;
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  padding: 30px 0;
}
@media (width>=1024px) {
  .about {
    padding: 70px 0 80px;
  }
}
.about__container {
  flex-direction: column;
  gap: 70px;
  display: flex;
}
.about__desc {
  flex-direction: column;
  gap: 30px;
  display: flex;
}
.about__title {
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}
.about__text {
  font-size: 16px;
  line-height: 150%;
}
.about-swiper.swiper {
  padding-top: 0;
  padding-bottom: 0;
}
.about-swiper__link {
  width: fit-content;
  max-width: 300px;
  color: var(--color-white, #fff);
  transition: var(--transition--100, 0.1s linear);
  flex-direction: column;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 150%;
  display: flex;
}
.about-swiper__link:hover {
  color: var(--color-accent-primary, #ff6d03);
}
@media (width>=1280px) {
  .about-swiper__link {
    max-width: initial;
  }
}
.about-swiper__img-wrap {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.about-swiper__img-wrap:before,
.about-swiper__img-wrap:after {
  content: '';
  opacity: 0;
  pointer-events: none;
  transition: var(--transition--100, 0.1s linear);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-swiper__img-wrap:before {
  background: linear-gradient(#0006 0% 100%);
  width: 100%;
  height: 100%;
}
.about-swiper__img-wrap:after {
  background: url('../images/icons/icon-play.svg') 50%/100% no-repeat;
  width: 50px;
  height: 50px;
}
.about-swiper__link:hover .about-swiper__img-wrap:before,
.about-swiper__link:hover .about-swiper__img-wrap:after {
  opacity: 1;
}
.about-swiper__img {
  width: 100%;
  max-width: initial;
  object-fit: cover;
  border-radius: 10px;
}
.category {
  background: var(--color-white, #fff);
}
@media (width>=1024px) {
  .products__list {
    --items: 3;
  }
}
@media (width>=1280px) {
  .products__list {
    --gap: 40px;
    --items: 4;
    row-gap: 50px;
  }
}
