#hero-block .hero__inner {
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
  border: 1px solid var(--bg-primary-stroke);
  overflow: hidden;
  background: url("./images/hero_inner_bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 30px;
}
#hero-block .hero__left {
  padding: 50px;
  flex-basis: 100%;
  max-width: 872px;
}
#hero-block .hero__title {
  margin-bottom: 20px;
}
#hero-block .hero__descr {
  color: var(--text-primary-main);
  margin-bottom: 30px;
}
#hero-block .hero__benefits-left {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
#hero-block .hero__benefit-left {
  padding: 15px;
  border: 1px solid var(--bg-primary-stroke);
  border-radius: 1000px;
  color: var(--text-primary-main);
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--bg-primary-main);
}
#hero-block .hero__benefit-left::before {
  content: "";
  display: flex;
  width: 8px;
  height: 8px;
  background: var(--colors-main);
  border-radius: 50%;
}
#hero-block .hero__img {
  overflow: hidden;
  border-radius: 30px;
  flex-basis: 100%;
  max-width: 930px;
  max-height: 616px;
}
#hero-block .benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
#hero-block .benefits__item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: var(--bg-primary-second);
  border-radius: 30px;
}
#hero-block .benefits__item-icon {
  background: var(--bg-primary-main);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  min-height: 160px;
  width: 145px;
  flex-shrink: 0;
}
#hero-block .benefits__item-icon svg,
#hero-block .benefits__item-icon img {
  width: 70px;
  height: 70px;
}
#hero-block .benefits__item-right {
  padding: 20px;
}
#hero-block .benefits__item-title {
  color: var(--text-primary-head);
  margin-bottom: 20px;
}
#hero-block .benefits__item-descr {
  color: var(--text-primary-main);
}

@media screen and (max-width: 1550px) {
  #hero-block .hero__left {
    padding: 30px;
  }
  #hero-block .hero__img {
    max-height: 100%;
  }
  #hero-block .benefits__list {
    grid-template-columns: 1fr;
  }
  #hero-block .benefits__item-icon {
    min-height: unset;
  }
}
@media screen and (max-width: 840px) {
  #hero-block .hero__inner {
    flex-direction: column;
  }
  #hero-block .hero__img {
    max-height: 60vw;
  }
}
@media screen and (max-width: 600px) {
  #hero-block .benefits__item-right {
    padding: 0;
  }
  #hero-block .benefits__item-title {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  #hero-block .hero__left {
    padding: 15px;
  }
  #hero-block .hero__benefit-left {
    padding: 10px;
  }
}
@media screen and (max-width: 470px) {
  #hero-block .benefits__item-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    min-height: unset;
  }
}
@media screen and (max-width: 410px) {
  #hero-block .benefits__item {
    flex-direction: column;
  }
}/*# sourceMappingURL=block.css.map */