/**
 * Hero section styles.
 * SCSS: assets/css/section/hero.scss
 * CSS (compiled by IDE): assets/css/section/hero.css
 */
.hero {
  margin-bottom: 20px;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 48px 0;
  background: #050505;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  width: min(100%, 1920px);
  height: 330px;
  background: var(--hero-section-bg, transparent);
  filter: blur(92px);
  opacity: 0.5;
  transform: translateX(-50%) scale(1.08, 1);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, #050505 52%);
  pointer-events: none;
}

.editor-styles-wrapper .hero,
.block-editor-block-list__block .hero {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.hero__slider {
  position: relative;
  z-index: 2;
  width: min(100% - 30px, 1200px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}

.hero__slide {
  position: relative;
  box-sizing: border-box;
  min-height: 520px;
  padding: 80px 60px;
  background-image: var(--hero-bg-image);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 520px;
  min-height: 360px;
  color: var(--text-color);
}

.hero__tag {
  display: inline-block;
  padding: 6px 14px;
  color: var(--additional-c-elements);
  border: 1px solid var(--additional-c-elements);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__title {
  position: relative;
  max-width: 520px;
  margin-bottom: 20px;
  font-size: 62px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--hero-title-color, var(--text-color));
}
.hero__title .title-with-icon__text {
  color: inherit;
}

.hero__text {
  position: relative;
  max-width: 420px;
}

.hero__text p {
  font-size: 24px;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__button {
  background: var(--hero-button-bg, var(--button-bg));
  color: var(--button-text-color);
  border: 0;
  border-radius: 25px;
}

.hero__button--secondary {
  background: var(--hero-additional-button-bg, transparent);
  color: var(--hero-additional-button-color, var(--text-color));
  border: 1px solid currentColor;
}

.hero__slider-pagination {
  position: absolute;
  left: 80px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 8px;
  width: auto !important;
}

.hero__slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: currentColor;
  color: var(--text-color);
  opacity: 0.35;
}

.hero__slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.hero__slider-prev,
.hero__slider-next {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero__slider-prev:hover,
.hero__slider-prev:focus-visible,
.hero__slider-next:hover,
.hero__slider-next:focus-visible {
  border-color: var(--additional-c-elements);
  background: var(--additional-c-elements);
  color: #111;
}

.hero__slider-prev {
  left: 24px;
}

.hero__slider-next {
  right: 24px;
}

.hero__slider-prev::before,
.hero__slider-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero__slider-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.hero__slider-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.hero__slider-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  left: 0px;
  right: 0;
  bottom: 20px;
  justify-content: center;
}

span.swiper-pagination-bullet {
  border-radius: 5px;
  width: 30px !important;
  height: 6px !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--additional-c-elements);
  width: 44px !important;
}

@media screen and (max-width: 992px) {
  .hero__slide {
    min-height: 460px;
    padding: 64px 48px;
  }
  .hero__title {
    font-size: 44px;
  }
  .hero__text p {
    font-size: 20px;
  }
  .hero__slider-pagination {
    left: 48px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 32px 0;
  }
  .hero__slide {
    min-height: 420px;
    padding: 48px 24px 72px;
    background-position: center;
  }
  .hero__slide::before {
    background: rgba(0, 0, 0, 0.58);
  }
  .hero__content {
    min-height: 300px;
    gap: 14px;
  }
  .hero__title {
    font-size: 32px;
  }
  .hero__text p {
    font-size: 16px;
    margin-bottom: 0;
  }
  .hero__slider-pagination {
    left: 24px;
    bottom: 28px;
  }
  .hero__slider-prev,
  .hero__slider-next {
    display: none;
  }
}

/*# sourceMappingURL=hero.css.map */
