/**
 * Hero section styles.
 * SCSS: assets/css/section/hero.scss
 * CSS (compiled by IDE): assets/css/section/hero.css
 */
.hero {
  position: relative;
  padding: 40px 0;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: var(--block-bg, transparent);
  z-index: -1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__title {
  position: relative;
  text-align: center;
  font-size: 38px;
  text-transform: uppercase;
  max-width: 880px;
  margin-bottom: 20px;
}
.hero__title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

.hero__text {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.hero__button.button {
  background: var(--section-btn-bg, var(--button-bg));
  color: var(--button-text-color);
  border: 0;
  padding: 12px 24px;
  cursor: pointer;
}

.hero__image {
  width: 100%;
  max-width: 900px;
  line-height: 0;
  border-radius: 12px;
}
.hero__image img,
.hero__image .hero__image-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .hero {
    padding-top: 40px;
  }
  .hero__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 568px) {
  .hero__image {
    border-radius: 8px;
  }
  .hero__image img,
  .hero__image .hero__image-img {
    border-radius: 8px;
  }
}/*# sourceMappingURL=hero.css.map */