.hero {
  background: var(--hero-bg);
  color: var(--text-color, #fff);
  padding: 80px 0;
  position: relative;
}
.hero:before {
  content: "";
  background: inherit;
  bottom: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
}
.hero__wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.hero__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
.hero__title {
  margin: 0;
  color: var(--text-color, #fff);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
}
.hero__text {
  color: inherit;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  max-width: 520px;
  opacity: 0.9;
}
.hero__text p {
  margin: 0;
}
.hero__media {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 45%;
}
.hero__image {
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

@media (max-width: 1024px) {
  .hero {
    padding: 56px 0;
  }
  .hero__wrapper {
    padding: 0 28px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 44px 0;
  }
  .hero__wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .hero__content,
  .hero__media {
    width: 100%;
  }
  .hero__content {
    order: 2;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    font-size: 32px;
  }
}
@media (max-width: 568px) {
  .hero {
    padding: 34px 0;
  }
  .hero__wrapper {
    padding: 0 16px;
  }
}/*# sourceMappingURL=hero.css.map */