/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.section-hero__wrapp {
  position: relative;
  z-index: 2;
  background-color: var(--cl-e);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-hero__wrapp::before {
  content: "";
  position: absolute;
  background-image: url("../../img/line.svg");
  background-position: 100% 100%;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.section-hero__title {
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-size: clamp(46px, 7.823vw, 60px);
  line-height: 110%;
  text-align: center;
}
.section-hero__subtitle {
  letter-spacing: -0.5px;
  font-size: clamp(18px, 2.868vw, 22px);
  line-height: clamp(26px, 3.911vw, 39px);
  font-weight: 400;
  text-align: center;
}
.section-hero__stars {
  margin-top: 24px;
  display: flex;
}
.section-hero__list {
  margin-top: 25px;
  display: grid;
}
.section-hero__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-hero__list li svg {
  width: clamp(28px, 4.172vw, 32px);
  height: clamp(28px, 4.172vw, 32px);
}
.section-hero__list li p {
  font-size: clamp(16px, 2.347vw, 18px);
  line-height: 1.667em;
  font-weight: 500;
  color: #586272;
}
.section-hero__contacts {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-hero__contacts-mobile a {
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--cl-c);
  border: 1px solid var(--cl-c);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: clamp(18px, 4.167vw, 24px) clamp(16px, 3.472vw, 20px) clamp(18px, 4.167vw, 24px) clamp(16px, 5.208vw, 30px);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(20px, 3.819vw, 22px);
  line-height: 1.111em;
  font-weight: 700;
  text-wrap: nowrap;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s, color 0.3s;
}
.section-hero__contacts-mobile a svg {
  width: clamp(28px, 5.556vw, 32px);
  height: clamp(28px, 5.556vw, 32px);
}
@media (min-width: 768px) {
  .section-hero__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px 115px;
  }
}
@media (min-width: 992px) {
  .section-hero__contacts-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 36px;
    line-height: 120%;
    font-weight: 800;
    color: #161c24;
  }
  .section-hero__contacts-desktop a {
    transition: all 0.3s ease;
  }
  .section-hero__contacts-mobile {
    display: none;
  }
}
@media (min-width: 992px) and (hover: hover) {
  .section-hero__contacts-desktop a:hover {
    color: var(--cl-c);
  }
}
@media (min-width: 992px) and (hover: none) {
  .section-hero__contacts-desktop a:active {
    color: var(--cl-c);
  }
}
@media (min-width: 1440px) {
  .section-hero__wrapp {
    padding: 90px 64px 200px;
  }
  .section-hero__wrapp::before {
    inset: 0% 8% 0% auto;
  }
}
@media (max-width: 1439px) {
  .section-hero .container {
    padding: 0;
  }
  .section-hero__wrapp {
    padding: 100px 40px 200px;
  }
}
@media (max-width: 991px) {
  .section-hero__wrapp::before {
    display: none;
  }
  .section-hero__contacts-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-hero__contacts-desktop span {
    font-size: clamp(18px, 2.868vw, 22px);
    line-height: 120%;
    font-weight: 400;
    color: #161c24;
  }
  .section-hero__contacts-desktop a {
    font-size: clamp(18px, 2.868vw, 22px);
    line-height: 120%;
    font-weight: 700;
    color: #161c24;
    text-decoration: underline;
    transition: all 0.3s ease;
  }
}
@media (max-width: 991px) and (hover: hover) {
  .section-hero__contacts-desktop a:hover {
    color: var(--cl-c);
  }
}
@media (max-width: 991px) and (hover: none) {
  .section-hero__contacts-desktop a:active {
    color: var(--cl-c);
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .section-hero__wrapp {
    padding: 104px 40px 60px;
  }
}
@media (max-width: 767px) {
  .section-hero__wrapp {
    padding: clamp(40px, 8.344vw, 64px) clamp(24px, 9.909vw, 67px) 40px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .section-hero__list {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }
}
@media (max-width: 575px) {
  .section-hero__wrapp {
    height: calc(100dvh - var(--header-height) + 15px);
  }
}
@media (hover: hover) {
  .section-hero__contacts-mobile a:hover {
    transform: translate3d(0, 3px, 0.01px);
  }
}
@media (hover: none) {
  .section-hero__contacts-mobile a:active {
    transform: translate3d(0, 3px, 0.01px);
  }
}
/*# sourceMappingURL=section-hero.css.map */