@font-face {
  font-family: "Nunito_Sans Bold";
  src: url("../assets/fonts/Nunito_Sans/NunitoSans_10pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Nunito_Sans Regular";
  src: url("../assets/fonts/Nunito_Sans/NunitoSans_10pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter Regular";
  src: url("../assets/fonts/Inter/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: Arial;
}

.body__title-1 {
  font-size: 48px;
  line-height: 57px;
}

.body__text-1 {
  font-size: 16px;
  line-height: 22px;
}

.body__text-2 {
  font-size: 14px;
  line-height: 19px;
}

@media screen and (max-width: 1024px) {
  .body__title-1 {
    font-size: 40px;
    line-height: 47px;
  }
}

@media screen and (max-width: 768px) {
  .body__title-1 {
    font-size: 36px;
    line-height: 47px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.header {
  padding: 30px 0;
  position: relative;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.header__logo {
  max-width: 220px;
  width: 100%;
  height: auto;
}

.nav {
  transition: all ease 0.5s;
}

.header__burger {
  display: none;
}

.nav__menu {
  display: flex;
  gap: 15px;
}

.nav.active {
  transform: translateX(0);
}

.nav__menu__item__link {
  color: black;
  font-size: 16px;
}

@media screen and (max-width: 798px) {
  .header__burger {
    display: block;
  }

  .nav {
    position: fixed;
    transform: translateX(-1000px);
    top: 90px;
    width: 100vw;
    left: 0;
  }

  .nav .nav__menu {
    flex-direction: column;
    background: #ffffff;
    gap: 10px;
    padding: 20px 10px;
  }
}

.hero {
  padding: 72px 0;
  background: url("../assets/img/hero-bg.webp") no-repeat 60%;
  background-size: cover;
}

.hero__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero__content {
  color: #fff;
  max-width: 622px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__title {
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .hero__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.form {
  max-width: 420px;
  width: 100%;
  background: #454545;
  border-radius: 20px;
  padding: 30px 50px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .form {
    padding: 30px 20px;
  }
}

.form__title {
  font-size: 27px;
  text-align: center;
  font-family: "Nunito_Sans Bold";
  font-weight: 700;
  line-height: 33px;
  margin-bottom: 20px;
}

.form__sub-title {
  font-family: "Inter Regular";
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
  max-width: 292px;
  line-height: 16px;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  width: 100%;
}

.form__item {
  width: 100%;
  height: 38px;
}

.form__input {
  background: none !important;
  border: 1px dashed #ffffff !important;
  text-indent: 15px !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-family: "Nunito_Sans Regular" !important;
}

.form__input::placeholder {
  color: #ffffff;
}

.form__btn {
  /* width: 128px !important;
    height: 36px !important; */
  margin-top: 20px !important;
  background: #4caf4f !important;
  border: 1px solid #4caf4f !important;
  border-radius: 100px !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Nunito_Sans Regular";
}

.advantages {
  padding: 40px 0 80px;
}

.advantages__container {
  display: flex;
  gap: 24px;
}

.advantages__card {
  max-width: 276px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.advantages__card__icon {
  width: 49px;
  height: 50px;
}

.advantages__card__title {
  font-size: 24px;
  font-weight: 700;
  min-height: 72px;
  text-wrap: wrap;
}

.advantages__card__text {
  color: #6d767e;
}

@media screen and (max-width: 1024px) {
  .advantages__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.investment {
  background: url("../assets/img/investment-bg.webp") no-repeat center;
  background-size: cover;
  padding: 80px 0;
  color: #ffffff;
}

.investment__cards__row {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}

@media screen and (max-width: 768px) {
  .investment__cards__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .advantages__card__title {
    min-height: auto;
  }
}
.investment__card {
  max-width: 340px;
  width: 100%;
}

.investment__card__step {
  font-size: 22px;
  text-align: center;
}

.investment__card__text {
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  margin-top: 15px;
}

.investment__range {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
}

.investment__title {
  font-size: 40px;
}

.range-container {
  width: 100%;
  margin: 170px auto 0;
  max-width: 1042px;
}

@media screen and (max-width: 1280px) {
  .range-container {
    width: 80%;
  }
}

.range-slider {
  position: relative;
}

.range-slider__thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.range-slider__value {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  width: 171px;
  height: 48px;
  color: #4caf4f;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .range-slider__value {
    left: 40%;
  }
}
@media screen and (max-width: 768px) {
  .range-slider__value {
    width: 98px;
    height: 38px;
    font-size: 16px;
    left: 40% !important;
    top: -50px;
  }
}

.range-slider__track {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #004000 100%);
}

.range__value {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.range__value__item {
  font-size: 16px;
}

.investment__btn {
  max-width: 220px;
  height: 98px;
  width: 100%;
  background: #ffffff;
  color: #4caf4f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 30px;
  font-weight: 700;
  margin-top: 50px;
  text-align: center;
}

.investment__text {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .investment__title {
    text-align: center;
    font-size: 24px;
  }

  .investment__btn {
    width: 164px;
    height: 62px;
    font-size: 20px;
  }

  .investment__text {
    font-size: 16px;
    text-align: center;
  }

  .investment__range {
    margin-top: 40px;
  }

  .range-container {
    margin-top: 120px;
  }
}

.awards {
  padding: 50px 0;
}

.awards__title {
  font-size: 35px;
  text-align: center;
}

.awards__text {
  font-family: "Inter Regular", "Nunito_Sans Regular", Arial, sans-serif;
  color: #2c2c2c;
  font-size: 18px;
  line-height: 1.75;
  max-width: 920px;
  margin: 16px auto;
  padding: 0 16px;
  letter-spacing: 0.2px;
  text-align: center;
}

.awards__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.awards__photo img {
  max-width: 100%;
  height: auto;
}

.awards__cards__row {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .awards__cards__row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .awards__text {
    font-size: 17px;
    line-height: 1.65;
  }
}

@media screen and (max-width: 480px) {
  .awards__cards__row {
    flex-direction: column;
    align-items: center;
  }
  .awards__text {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 12px;
  }
}

.awards__card {
  max-width: 176px;
  width: 100%;
}

.awards__card__img-box {
  min-height: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.awards__card__text {
  margin-top: 15px;
  text-align: center;
  color: #454545;
}

.benefits {
  padding: 50px 0;
}

.benefits__title {
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .benefits__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.benefits__subtitle {
  font-size: 16px;
  text-align: center;
  max-width: 550px;
  margin: 20px auto 0;
}

.benefits__header-mobile {
  display: none;
}

.benefits__rows {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefits__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.benefits__row__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 580px;
  width: 100%;
}

.benefits__row__content__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.benefits__row__content__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefits__row__content-note {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.benefits__row__content__btn {
  border: 1px solid #4caf4f;
  max-width: 530px;
  width: 100%;
  height: 48px;
  color: #4caf4f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.benefits__row-img {
  width: 100%;
  max-width: 556px;
}

.benefits__row-img:nth-child(1) {
  max-width: 556px;
}

.benefits__row-img.mobile {
  display: none;
}

.benefits__row:nth-child(2) .benefits__row__content {
  max-width: 476px;
  margin: 0 auto;
  font-weight: 700;
}

.benefits__row:nth-child(2) .benefits__row-img {
  max-width: 612px;
}

.benefits__row__content__title {
  font-size: 36px;

  line-height: 43px;
}

.benefits__row__content__text {
  font-size: 16px;

  line-height: 24px;
}

.benefits__row__content__text.green {
  color: #4caf4f;
}

.benefits__row:nth-child(3) .benefits__row-img {
  max-width: 476px;
  margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  .benefits__row__content__title {
    font-size: 24px;
  }
  .benefits__rows {
    align-items: center;
  }

  .benefits__header-mobile {
    display: block;
    order: 2;
  }

  .benefits__header-desktop {
    display: none;
  }

  .benefits__row:nth-child(1) .benefits__row-img {
    order: 1;
  }

  .benefits__row:nth-child(1) .benefits__row__content {
    order: 3;
  }

  .benefits__row:nth-child(2) .benefits__row__content {
    text-align: center;
  }

  .benefits__row__content__list {
    gap: 15px;
  }

  .benefits__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 425px) {
  .benefits {
    padding: 0;
  }

  .benefits__row-img.desktop {
    display: none;
  }

  .benefits__row-img.mobile {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .benefits__container {
    padding: 0;
  }

  .benefits__header-desktop,
  .benefits__header-mobile,
  .benefits__row__content {
    padding: 0 10px;
  }
}

.callback {
  padding: 50px 0;
}

.callback__container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.callback__img-box {
  position: relative;
  max-width: 687px;
  margin-left: -15px;
}

.callback__img {
  width: 100%;
}

.callback__img-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000cc;
  z-index: 1;
}

.callback__content-row {
  max-width: 730px;
  width: 100%;
}

.callback__content-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
}

.callback__content-text {
  font-size: 16px;
  line-height: 22px;
  margin-top: 10px;
  text-align: center;
}

.callback__content-btn {
  width: 200px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .callback__content-row {
    max-width: 100%;
  }

  .callback__img-box {
    order: 2;
    max-width: none;
  }

  .callback__content-title {
    font-size: 36px;
  }

  .callback {
    padding: 0;
  }
}

.callback__form {
  padding: 80px 0 120px 0;
  background: url("../assets/img/hero-bg.webp") no-repeat center;
  background-size: cover;
}

.callback__form__container {
  display: flex;
  justify-content: center;
}

.footer {
  padding: 50px 0;
  background: #454545;
  color: #ffffff;
}

.footer__container {
  border-top: 1px solid #e6e6e6;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .footer__container {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 480px) {
  .footer__container {
    flex-direction: column;
  }

  .footer__column:nth-child(4) {
    margin-top: 40px;
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__title {
  font-size: 13px;
  font-weight: 700;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-link {
  font-size: 13px;
  color: #ffffff;
}

.callback__content--temporary {
  position: relative;
  margin: 20px;
  background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
  border-left: 6px solid #ffd54f;
  padding: 28px 36px;
  color: #fff;
  border-radius: 12px;
  transform-origin: center;
  animation: pulseShadow 3s infinite;
  text-align: left;
}

.callback__content--temporary::before {
  content: "⚠";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #b71c1c;
  font-weight: 900;
  font-size: 22px;
  border-radius: 50%;
}

.callback__content--temporary .callback__content-title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  margin: 6px 0 12px 33px;
}

.callback__content--temporary .callback__content-text {
  font-size: 16px;
  line-height: 1.5;
  /* margin-left: 72px; */
  text-align: center;
  color: #fff;
}

.callback__content--temporary .my-spec-time {
  background: #fff;
  color: #b71c1c;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  margin-left: 6px;
}

@keyframes pulseShadow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .callback__content--temporary {
    padding: 16px;
    border-radius: 8px;
    margin: 12px;
  }
  .callback__content--temporary::before {
    left: 12px;
    top: 12px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .callback__content--temporary .callback__content-title {
    font-size: 20px;
  }

  .callback__content--temporary .callback__content-text {
    font-size: 15px;
  }
}

.swiper-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 10px;
}

.swiper-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.swiper {
  width: 100%;
  height: 350px;
  position: relative;
  padding-bottom: 56px;
}

.swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  justify-content: center;
  z-index: 10;
  gap: 8px;
  background: transparent;
  padding: 6px 8px;
  border-radius: 12px;
}

.swiper-pagination-bullet-active {
  background: #0e1e4b !important;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #0e1e4b;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  max-height: 280px;
}
.swiper-avatar {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.swiper-avatar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 96%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.swiper-opinion {
  font-size: 16px;
  line-height: 22px;
}
.ask-question__btn {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-size: 18px;
  line-height: 19.36px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px !important;
  background: #4caf4f !important;
  border: 1px solid #4caf4f !important;
  border-radius: 100px !important;
  color: #ffffff !important;
  cursor: pointer;
  font-family: "Nunito_Sans Regular";
}

@media (max-width: 500px) {
  .ask-question__btn {
    display: flex;
  }
}
