#hero-block .hero__swiper {
  margin-bottom: 10px;
}
#hero-block .hero__slide {
  position: relative;
  z-index: 0;
  background: var(--card);
}
#hero-block .hero__slide-inner {
  min-height: 680px;
  box-sizing: border-box;
  padding: 140px;
  border-radius: 10px;
  z-index: 0;
}
#hero-block .hero__slide-inner.center {
  padding-top: 80px;
}
#hero-block .hero__slide-inner.center .hero__title,
#hero-block .hero__slide-inner.center .hero__descr {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#hero-block .hero__slide-inner.center .hero__btns {
  justify-content: center;
}
#hero-block .hero__slide-inner.center .hero__title {
  margin-bottom: 10px;
}
#hero-block .hero__title {
  margin-bottom: 20px;
}
#hero-block .hero__descr {
  margin-bottom: 40px;
  max-width: 580px;
}
#hero-block .hero__price {
  margin-bottom: 20px;
}
#hero-block .hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#hero-block .hero__bg {
  position: absolute;
  border-radius: 5px;
  overflow: hidden;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#hero-block .swiper-wrapper {
  height: 100%;
  align-items: stretch;
}
#hero-block .swiper-slide {
  height: auto;
}

@media screen and (max-width: 1100px) {
  #hero-block .hero__slide-inner {
    min-height: 400px;
  }
  #hero-block .hero__bg {
    opacity: 0.5;
  }
}
@media screen and (max-width: 1020px) {
  #hero-block .hero__slide-inner {
    padding: 80px;
  }
}
@media screen and (max-width: 800px) {
  #hero-block .hero__slide-inner {
    padding: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  #hero-block .hero__slide-inner {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
  #hero-block .hero__bg {
    opacity: 1;
    position: static;
    transform: unset;
    height: auto;
    margin-bottom: 40px;
    margin-top: auto;
  }
  #hero-block .hero__descr {
    font-size: 16px;
  }
}/*# sourceMappingURL=block.css.map */