.hero {
  background-color: var(--lightGrayColor);
  overflow: hidden;
  margin-bottom: 45px;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px 60px;
  padding: 0 20px 45px 20px;
}
.hero .button-outline {
  margin: 0 auto;
}

.hero__img {
  flex: 1 300px;
  display: flex;
  justify-content: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  flex: 1 340px;
}

.site-title {
  text-align: center;
  margin-bottom: 18px;
}

.site-desc {
  text-align: center;
  font-size: 15px;
  line-height: 23px;
  color: var(--altText);
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 34px;
  margin-bottom: 45px;
}

.hero__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 20px;
  flex: 1 250px;
}
.hero__benefit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--linesColor);
  padding: 8px;
}
.hero__benefit__text {
  font-size: 15px;
  line-height: 22px;
}

@media screen and (min-width: 1024px) {
  .hero__inner {
    padding-bottom: 0;
    flex-direction: row;
  }
  .hero__text {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 1240px) {
  .hero__inner {
    padding-left: 90px;
    padding-right: 90px;
  }
  .site-desc {
    font-size: 18px;
  }
  .hero__benefit__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .hero {
    margin-bottom: 90px;
  }
  .hero__inner {
    padding-left: 160px;
    padding-right: 160px;
  }
  .hero__text {
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-desc {
    font-size: 24px;
    line-height: 34px;
  }
  .hero__benefits {
    gap: 20px 40px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .hero__benefit__text {
    font-size: 18px;
    line-height: 24px;
  }
  .hero__benefit__icon {
    width: 50px;
    height: 50px;
  }
}
@media screen and (min-width: 1720px) {
  .site-title {
    margin-bottom: 30px;
  }
  .site-desc {
    font-size: 26px;
    line-height: 36px;
  }
  .hero__benefits {
    gap: 52px 90px;
    margin-top: 62px;
    margin-bottom: 75px;
  }
  .hero__benefit__text {
    font-size: 20px;
  }
}