.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (max-width: 480px) {
  .hero {
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.hero__img {
  max-width: 680px;
  max-height: 730px;
  border-radius: 40px;
}
@media (min-width: 992px) {
  .hero__img {
    position: sticky;
    top: 114px;
  }
}
@media (max-width: 1500px) {
  .hero__img {
    max-width: 500px;
  }
}
@media (max-width: 1250px) {
  .hero__img {
    max-width: 340px;
  }
}
@media (max-width: 992px) {
  .hero__img {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero__img {
    max-height: 280px;
    border-radius: 20px;
  }
}
@media (max-width: 375px) {
  .hero__img {
    max-height: 180px;
  }
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 40px;
  background-color: var(--bg-primary-second);
}
@media (max-width: 480px) {
  .hero__wrapper {
    border-radius: 20px;
  }
}
.hero__content {
  padding: 50px 50px 0 50px;
}
@media (max-width: 1050px) {
  .hero__content {
    padding: 25px 25px 0 25px;
  }
}
@media (max-width: 375px) {
  .hero__content {
    padding: 15px 15px 0 15px;
  }
}
.hero__title {
  margin-bottom: 20px;
}
.hero__title span {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.hero__title span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 103%;
  height: 100%;
  background-color: rgb(233, 236, 247);
  border-radius: 40px;
  z-index: -1;
}
@media (max-width: 375px) {
  .hero__title {
    margin-bottom: 12px;
  }
}
.hero__descr {
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--text-primary-main);
}
@media (max-width: 375px) {
  .hero__descr {
    margin-bottom: 20px;
  }
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 375px) {
  .hero__inner {
    margin-bottom: 28px;
  }
}
.hero__inner-descr {
  max-width: 190px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 17px;
  line-height: 120%;
  color: var(--text-primary-main);
}
.hero__inner-descr span {
  color: var(--colors-main);
}
.hero__btn {
  padding: 5px 5px 5px 50px;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 375px) {
  .hero__btn {
    padding-left: 60px;
    gap: 10px;
  }
}
.hero__btn-text {
  color: var(--text-alt-head);
}
.hero__btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  min-width: 70px;
  height: 70px;
  background-color: var(--bg-primary-second);
  border-radius: 50%;
}
@media (max-width: 375px) {
  .hero__btn-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}
.hero__btn-svg {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
@media (max-width: 375px) {
  .hero__btn-svg {
    width: 10px;
    min-width: 10px;
    height: 10px;
  }
}
.hero__btn-path {
  fill: var(--colors-main);
}
.hero__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: auto;
  padding: 0 10px 10px 10px;
}
@media (max-width: 1500px) {
  .hero__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .hero__list {
    grid-template-columns: 1fr;
  }
}
.hero__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  min-height: 188px;
  border-radius: 30px;
  background-color: var(--bg-primary-main);
}
@media (max-width: 1500px) {
  .hero__item:nth-child(n+3) {
    grid-column: 1/3;
  }
}
@media (max-width: 480px) {
  .hero__item:nth-child(n+3) {
    grid-column: 1/2;
  }
}
@media (max-width: 480px) {
  .hero__item {
    border-radius: 20px;
  }
}
.hero__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.hero__item-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--bg-primary-second);
  background-color: var(--colors-second);
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
}
.hero__item-descr {
  margin-top: auto;
  padding: 0 5px 5px 5px;
}/*# sourceMappingURL=block.css.map */