.hero-block {
  min-height: 900px;
  max-height: 900px;
  padding: 200px 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: 60vw;
  z-index: 0;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-block .hero__container {
  height: 100%;
}
.hero-block .hero__title {
  color: var(--headSecondary);
}
.hero-block .hero__title span {
  position: relative;
  z-index: 0;
}
.hero-block .hero__title span::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 103%;
  transform: translate(-50%, -50%);
  display: block;
  background: var(--fourth);
  border-radius: 5px;
}
.hero-block .hero__descr {
  color: var(--headSecondary);
  max-width: 540px;
}
.hero-block .hero__inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  max-width: 940px;
}
.hero-block .hero__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
.hero-block .hero__bg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(90deg, rgba(0, 0, 0, 0) 28.72%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-block .benefits__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 40px;
}
.hero-block .benefits__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-block .benefits__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-block .benefits__item-title {
  color: var(--headSecondary);
}
.hero-block .benefits__item-descr {
  color: var(--secondaryText);
}
.hero-block .benefits__item-icon {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  background: var(--third);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  position: relative;
}
.hero-block .benefits__item-icon img,
.hero-block .benefits__item-icon svg {
  width: 36px;
  height: 36px;
}
.hero-block .benefits__item-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 70px;
  width: 70px;
  background: rgba(255, 255, 255, 0.0509803922);
  transform: translate(-50%, -50%);
  border-radius: 10px;
}
.hero-block .btns__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 30px;
}
.hero-block .btn__icon {
  max-width: 30px;
  max-height: 30px;
}

@media screen and (max-width: 1200px) {
  .hero-block {
    height: 80vw;
  }
}
@media screen and (max-width: 850px) {
  .hero-block {
    height: -moz-fit-content;
    height: fit-content;
    padding: 150px 0;
  }
}
@media screen and (max-width: 700px) {
  .hero-block {
    padding-top: 110px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 550px) {
  .hero-block .soc-holder {
    flex-direction: column;
  }
  .hero-block .soc-holder .soc-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-block .hero__inner {
    gap: 15px;
  }
  .hero-block .benefits__list {
    gap: 15px;
  }
  .hero-block .hero__title span::after {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .hero-block .benefits__list {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=block.css.map */