/*# sourceMappingURL=block.css.map */
#hero-block {
  position: relative;
  overflow: hidden;
  /* background: var(--bg-alt-main); */
  z-index: 1;
}

#hero-block .hero__wrapper {
  width: 100%;
  height: 100%;
}

#hero-block .slide__top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#hero-block .slide__title-holder {
  display: flex;
  flex-direction: column;
  max-width: 878px;
  width: 100%;
  gap: 20px;
}

#hero-block .swiper-slide {
  box-sizing: border-box;
  height: auto;
}

#hero-block .slide__item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero-block .slide__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#hero-block .slide__bg::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url('images/pattern.png');
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

#hero-block .slide__item-holder {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 100%;
  gap: clamp(2.1875rem, 1.375rem + 4.0625vw, 6.25rem);
  padding: 60px 0 76px 0;
}

#hero-block .btn__title-holder {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#hero-block .slide__title {
  color: var(--text-alt-head);
}

#hero-block .slide__subtitle {
  color: var(--text-alt-main);
}

#hero-block .slide__title span {
  color: var(--colors-main);
}

#hero-block .advant__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: fit-content;
  gap: 30px;
}

#hero-block .advant__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(34, 37, 52, 0.3);
  backdrop-filter: blur(50px);
  border-radius: 10px;
  max-width: 360px;
  padding: clamp(0.9375rem, 0.75rem + 0.9375vw, 1.875rem);
  gap: 30px;
}

#hero-block .advant__title-holder {
  display: flex;
  align-items: center;
  gap: 20px;
}

#hero-block .advant__title {
  color: var(--bg-primary-main);
}

#hero-block .advant__img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

#hero-block .advant__text {
  color: var(--text-alt-head);
}

#hero-block .banner__bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

#hero-block .bottom__nav {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 100px;
  left: 195px;
  z-index: 1;
}

#hero-block .btn__info-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-primary-second);
  border-radius: 10px;
  max-width: 580px;
  padding: 20px;
  width: 100%;
  gap: 20px;
}

#hero-block .hero__btn {
  min-width: 280px;
}

#hero-block .btn__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-primary-main);
}

#hero-block .btn__title span {
  font-weight: 500;
  line-height: 120%;
  color: var(--bg-alt-second);
}

#hero-block .swiper__nav-holder {
  position: absolute;
  right: 195px;
  bottom: 76px;
}

#hero-block .slider__holder {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -18.5728rem + 25.3731vw, 11.875rem);
}

#hero-block .slider-btn.swiper-button-disabled svg path {
  opacity: 1;
}

@media (max-width: 1550px) {
  #hero-block .slide__item-holder {
    padding: 60px 15px 96px 15px;
  }

  #hero-block .swiper__nav-holder {
    right: 15px;
    bottom: 76px;
  }
}

@media (max-width: 1200px) {
  #hero-block .advant__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  #hero-block .swiper__nav-holder {
    bottom: 10px;
  }

  /* #hero-block .slider__holder {
    flex-direction: row-reverse;
    justify-content: flex-end;
  } */
}

@media (max-width: 768px) {
  #hero-block .advant__wrapper {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }

  #hero-block .advant__item {
    max-width: unset;
  }
}


@media (max-width: 500px) {
  #hero-block .btn__info-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
  }

  #hero-block .btn.hero__btn {
    width: 100%;
    min-width: unset;
  }

  #hero-block .swiper__nav-holder {
    width: calc(100% - 30px);
  }

  #hero-block .slider__holder {
    justify-content: space-between;
  }

}