@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

body {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-family: Montserrat;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-section {
  height: 957px;
}

.mySwiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-slide {
  background-size: cover;
  background-position: center top;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  color: white;
  pointer-events: none;
}

.hero-overlay * {
  pointer-events: all;
}

/* Header */

.header {
  margin-top: 32px;
}

.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.logo__wrapper {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.text__logo {
  font-size: 20px;
  font-weight: 700;
}

.menu {
  display: flex;
  padding-bottom: 22px;
  border-bottom: 1px solid #c7c7c7c8;
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 27px;
}

.menu__link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: 0.3s linear;
}

.menu__link:hover {
  opacity: 0.7;
}

.contact__wrapper {
  display: flex;
  gap: 22px;
  align-items: center;
}
.phone__wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}

.text-opacity {
  font-size: 14px;
  color: #d5d5d5;
  font-weight: 400;
}

.phone__link {
  font-weight: 600;
}
.account__wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
}
.account__link {
  width: 66px;
  color: #ddf8e5;
  text-decoration: underline #ddf8e5;
  font-size: 15px;
  font-weight: 500;
}

/* Welcome */

.welcome {
  margin-top: 120px;
}

.welcome__content {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.welcome__content-left {
  display: flex;
  flex-direction: column;
  margin-top: 23px;
}
.title__welcome {
  font-size: 40px;
  font-weight: 800;
  max-width: 260px;
  margin-bottom: 8px;
}
.subtitle__welcome {
  color: #9f9f9f;
  font-weight: 600;
  max-width: 260px;
  line-height: 1.4;
}
.calendar__link {
  margin-top: 20px;
  margin-bottom: 20px;
}
.wrapper__textcontent-welcome {
  display: flex;
  flex-direction: column;
  max-width: 230px;
  gap: 33px;
}
.text__description-welcome {
  font-weight: 600;
  line-height: 1.5;
}
.info__text-welcome {
  font-weight: 600;
  line-height: 1.5;
}
.color--green {
  color: #03c825;
}

.calc__card {
  position: relative;
  background-color: #fff;
  padding: 30px 25px;
  padding-bottom: 47px;
  border-radius: 14px;
  width: 390px;
  color: #1c4941;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 3px;
  z-index: 5;
}

.calc__card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  right: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  z-index: -1;
}

.calc__card::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 30px;
  right: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  z-index: -2;
}

.calc__item {
  margin-bottom: 25px;
}

.calc__label {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.calc__label span {
  font-size: 17px;
  font-weight: 700;
}

.calc__value {
  border-bottom: 1px solid #e5e5e5;
  min-width: 100px;
  font-size: 20px !important;
  font-weight: 400 !important;
  padding-bottom: 5px;
  text-align: right;
}

.range__slider {
  -webkit-appearance: none;
  width: 100%;
  height: 2px;
  background-color: #d1dcd6;
  outline: none;
}

.range__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: #fff;
  border: 2.5px solid #21cc66;
  border-radius: 50%;
  cursor: pointer;
}

.btn__primary {
  background: linear-gradient(180deg, #04cc18 0%, #02bc4d 63.54%);
  display: flex;
  justify-content: center;
  box-shadow:
    0px 3px 3px rgba(28, 218, 70, 0.2),
    0px 15px 20px rgba(28, 218, 104, 0.15);
  color: #fff;
  border: none;
  width: 100%;
  padding: 25px;
  border-radius: 45px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 25px;
  transition: 0.3s linear;
}

.btn__primary:hover {
  opacity: 0.7;
}

.benefits__list {
  list-style: none;
  padding: 0;
}

.benefits__list li {
  font-size: 15px;
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 11px;
  font-weight: 500;
  color: #333333;
}

.circle--green {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #0fc621;
}

.calc__welcome-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
}

.calc__tooltip {
  position: absolute;
  bottom: 95%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 292px;
  background: #1c4941f5;
  color: #fff;
  padding: 20px 25px 20px 25px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.calc__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #1c4941f5 transparent transparent transparent;
}

.calc__tooltip span {
  color: #03c825;
  font-weight: bold;
}

.calc__welcome-wrapper:hover .calc__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.calc__welcome-link {
  margin: 0 auto;
  display: block;
  padding-bottom: 1px;
  text-align: center;
  width: 180px;
  border-bottom: 1px solid #919191;
  color: #5a5a5a;
  text-decoration: none;
  font-size: 15px;
  cursor: pointer;
}

/* Info */

.info {
  margin-top: 65px;
}

.title__info {
  margin-bottom: 70px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #1c4941;
}
.cards__wrapper-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.card__info {
  width: 264px;
}
.card__info-images-wrapper {
  display: flex;
  gap: 35px;
  align-items: center;
}

.title__card-info {
  font-size: 18px;
  color: #1c4941;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  margin-top: 25px;
}
.subtitle__card-info {
  font-size: 15px;
  font-weight: 500;
  color: #878d86;
  line-height: 1.4;
}

.card__info-one {
  margin-top: 26px;
}

.card__info-two {
  margin-top: -24px;
}

.card__info-three {
  margin-top: 2px;
}

.title__card-info-two {
  margin-top: 21px;
}

.btn__scroll-top {
  display: flex;
  position: fixed;
  background-color: #fff !important;
  bottom: 10px;
  left: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid #c9dfcc;
  border-radius: 100%;
  background-color: transparent;
  cursor: pointer;
  z-index: 1000;
}

/* Info images */

.info-images {
  margin-top: 35px;
}

.wrapper__cards-info-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card__info-images {
  width: 100%;
  background-color: #ddf8e5;
  padding: 45px 15px 0 15px;
  position: relative;
  border-radius: 2px;
}
.title__card-info-images {
  font-size: 20px;
  color: #1c4941;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
.subtitle__card-info-images {
  font-weight: 700;
  color: #878d86;
  text-align: center;
  max-width: 550px;
  line-height: 1.5;
  padding-bottom: 30px;
  margin: 0 auto;
}

.btn__primary-info {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 292px;
  margin-top: 47px;
}

.block-height {
  height: 250px;
}

.block-height-small {
  height: 170px;
}

.card__info-images-two,
.card__info-images-three {
  background-color: #f1eeff;
}

.card__info-images-one::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 170px;
  background-image: url(images/card-info-images-1.png);
  overflow: hidden;
  background-repeat: no-repeat;
  bottom: -9px;
  left: 22%;
}
.card__info-images-two::after {
  content: "";
  position: absolute;
  width: 535px;
  height: 170px;
  background-image: url(images/card-info-images-2.png);
  overflow: hidden;
  background-repeat: no-repeat;
  bottom: 0px;
  left: 6.5%;
}
.card__info-images-three::after {
  content: "";
  position: absolute;
  width: 255px;
  height: 220px;
  background-image: url(images/card-info-images-3.png);
  overflow: hidden;
  background-repeat: no-repeat;
  bottom: -15px;
  left: 30%;
}
.card__info-images-four::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 250px;
  background-image: url(images/card-info-images-4.png);
  overflow: hidden;
  background-repeat: no-repeat;
  bottom: 0px;
  left: 6.5%;
}

/* Price */

.price {
  margin-top: 80px;
}

.content__top-price {
  position: relative;
  padding: 15px 25px;
  padding-bottom: 20px;
  border: 2px solid #02bc4d;
  width: 400px;
  margin: 0 auto;
  border-radius: 14px;
}

.content__top-price::after {
  content: "";
  position: absolute;
  top: 32%;
  left: -7px;
  background-image: url(images/arrow-box-left.svg);
  background-repeat: no-repeat;
  width: 6px;
  height: 40px;
}

.title__price-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 15px;
}
.title__price {
  font-size: 30px;
  color: #1c4941;
  font-weight: 700;
}
.subtitle__price {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #878d86;
}
.wrapper__cards-price {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 77px;
  padding: 40px 20px 0 20px;
  border: 2px solid #02bc4c61;
  border-radius: 14px 14px 0px 0px;
  border-bottom: none;
  width: 965px;
  margin: 0 auto;
  margin-top: 58px;
}

.wrapper__cards-price::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 9px;
  right: 9px;
  bottom: 0px;
  border: 2px solid #02bc4c32;
  border-radius: 14px 14px 0px 0px;
  pointer-events: none;
  border-bottom: none;
}

.card__price {
  width: 420px;
  border: 1.5px solid #d9d9d9;
  padding: 30px;
  border-radius: 8px 8px 0px 0px;
}
.time__price {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #1c4941;
  margin-bottom: 16px;
  font-family: Inter;
}

.title__card-price {
  text-align: center;
  color: #1c4941;
  font-size: 48px;
  font-weight: 700;
  font-family: Inter;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.text--small {
  font-size: 14px;
  font-weight: 400;
  font-family: Inter;
  margin-top: 15px;
}
.price__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.circle-item-price {
  width: 8px;
  height: 8px;
  background-color: #1c4941;
  border-radius: 100%;
}

.price__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1c4941;
  font-family: Inter;
}
.price__card-btn {
  padding: 12px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  background-color: #0fc621;
  font-family: Inter;
  color: #fff;
  border: none;
}

/* Service */

.service {
  background-color: #02bc4d;
  padding-top: 36px;
  padding-bottom: 115px;
  position: relative;
}

.service::after {
  content: "";
  position: absolute;
  width: 275px;
  height: 145px;
  background-repeat: no-repeat;
  background-image: url(images/service-element-img.png);
  bottom: -2px;
  right: 0;
}

.title__service {
  max-width: 560px;
  margin-bottom: 55px;
  font-size: 44px;
  font-weight: 700;
}
.service__content-bottom {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.box__wrapper-service {
  width: 530px;
  padding: 50px;
  background-color: #fff;
  border-radius: 14px 14px 0px 0px;
  padding-bottom: 100px;
}
.title__box-service {
  font-size: 18px;
  color: #1c4941;
  font-weight: 700;
  margin-bottom: 30px;
}
.subtitle__box-service {
  font-weight: 600;
  color: #878d86;
  line-height: 1.3;
}

.cards__service-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px 30px;
}

.text__service-card {
  font-weight: 700;
  line-height: 1.3;
  color: #ddf8e5;
  margin-top: 15px;
}

.text__service-card-4 {
  margin-top: 12px;
}

.card__service {
  margin-top: 1px;
}

.card__service-5 {
  margin-top: 15px;
}

/* Question */

.question {
  margin-top: 90px;
}

.title__question {
  color: #1c4941;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.faq__list {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 213px;
}

.faq__item {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 12px;
}

.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  padding-bottom: 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  outline: none;
}

.faq__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #02bc4d;
  border-bottom: 2px solid #02bc4d;
  transform: rotate(45deg);
  transition: transform 0.3s ease-out;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq__item.active .faq__arrow {
  transform: rotate(225deg);
}

.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.faq__item.active .faq__content {
  grid-template-rows: 1fr;
}

.faq__inner {
  overflow: hidden;
}

.title__faq {
  font-size: 17px;
  font-weight: 700;
  color: #1c4941;
}

.color--light-green {
  color: #02bc4d !important;
}

.text__faq {
  font-weight: 500;
  color: #878d86;
  line-height: 1.5;
}

.border__question {
  border: 1px solid #daeadb;
}

.btn__question {
  width: 292px;
  display: block;
  margin: 0 auto;
  margin-top: 35px;
  margin-bottom: 48px;
}

/* Footer */

.footer {
  background-color: #02bc4d;
  padding-top: 56px;
  padding-bottom: 218px;
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 215px;
  left: 0;
  bottom: 0px;
  background-repeat: no-repeat;
  background-image: url(images/footer-element.png);
  pointer-events: none;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__info-box {
  display: flex;
  flex-direction: column;
}

.wrapper__logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 27px;
}
.footer__logo-text {
  font-size: 20px;
  font-weight: 700;
}
.footer__email-link {
  padding: 14px 20px;
  color: #ddf8e5;
  font-weight: 600;
  border: 1.6px solid rgb(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-bottom: 20px;
}

.footer__phone-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}

.text--light {
  font-weight: 500;
  margin-left: 8px;
}

.footer__list-title {
  font-size: 18px;
  font-weight: 700;
}
.footer__item {
  width: 205px;
}
.footer__link {
  font-weight: 700;
  color: #ddf8e5;
  text-decoration: underline;
  line-height: 1.4;
  transition: 0.3s linear;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__list-2 {
  margin-top: 20px;
}

.footer__fly-box {
  position: absolute;
  left: 360px;
  bottom: 40px;
  padding: 20px 25px;
  background-color: #fff;
  border-radius: 4px;
}

.footer__fly-box::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 39px;
  bottom: 14px;
  left: -6px;
  background-repeat: no-repeat;
  background-image: url(images/footer-fly-box-el.svg);
}

.fly__box-text {
  color: #02bc4d;
  max-width: 130px;
  font-weight: 700;
  line-height: 1.3;
}

.burger,
.menu__mobile {
  display: none;
}

.images-card__info-img--mobile {
  display: none;
}

.images-card__info-img--mobile-dn {
  display: none;
}

/* Media */

@media (max-width: 1285px) {
  .card__info-images-two::after {
    width: 420px;
    background-size: contain;
    bottom: -34px;
    left: 16.5%;
  }

  .card__info-images-one::after {
    background-size: contain;
    width: 340px;
    bottom: -21px;
    left: 23%;
  }

  .card__info-images-four::after {
    background-size: contain;
    width: 435px;
    height: 230px;
    bottom: 0px;
    left: 15%;
  }

  .card__info-images-three::after {
    background-size: contain;
    width: 220px;
    height: 220px;
    bottom: -42px;
    left: 33%;
  }

  .block-height {
    height: 220px;
  }

  .block-height-small {
    height: 140px;
  }
}

@media (max-width: 1269px) {
  .wrapper__cards-info-images {
    display: flex;
    flex-direction: column;
  }

  .card__info-images-one::after,
  .card__info-images-two::after,
  .card__info-images-three::after,
  .card__info-images-four::after {
    display: none;
  }

  .block-height {
    display: none;
  }

  .block-height-small {
    display: none;
  }

  .images-card__info-img--mobile {
    margin: 0 auto;
    display: block;
  }
}



@media (max-width: 1155px) {
  .service__content-bottom {
    display: flex;
    flex-direction: column;
  }

  .box__wrapper-service {
    width: 100%;
    padding: 50px 30px;
    border-radius: 14px;
  }

  .title__service {
    max-width: 880px;
    margin-bottom: 35px;
  }

  .text__service-card {
    text-align: center;
  }

  .card__service img {
    margin: 0 auto;
  }
}

@media (max-width: 1130px) {
  .menu,
  .contact__wrapper {
    display: none !important;
  }

  .header {
    margin-top: 20px;
  }

  .burger {
    display: block;
    position: relative;
    z-index: 2000;
    cursor: pointer;
  }

  .burger__icon-close {
    display: none;
  }

  .burger.active .burger__icon-open {
    display: none;
  }
  .burger.active .burger__menu-wrapper {
    display: none;
  }
  .burger.active .burger__icon-close {
    display: block;
    margin-right: 13px;
  }

  .menu__mobile {
    display: block;
    position: fixed;
    top: -1px;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(
      149.3deg,
      #02bc4d 33%,
      rgba(4, 204, 24, 0.85) 95.23%
    );
    padding: 80px 30px 35px;
    box-sizing: border-box;
    z-index: 1000;
    border-radius: 0px 0px 14px 14px;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
  }

  .menu__mobile.active {
    transform: translateY(0);
  }

  .menu__mobile .menu__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .menu__mobile .menu__link {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .text--mobile-small {
    color: #ddf8e5;
    font-weight: 500;
    font-size: 15px;
    margin-left: 9px;
  }

  .menu__link-account img {
    margin-right: 9px;
  }

  .menu__link-account {
    text-decoration: underline #fff;
  }

  .burger__icon-open {
    width: 26px;
    height: 26px;
  }

  .burger__menu-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 35.36%,
      rgba(255, 255, 255, 0.2) 100%
    );
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .welcome__content {
    align-items: start;
  }

  .welcome {
    margin-top: 80px;
  }

  .hero-section {
    height: 735px;
  }
}


@media (max-width: 1050px) {

}

@media (max-width: 1000px) {
  .wrapper__cards-price {
    width: 100%;
  }

  .card__price {
    width: 100%;
  }
}

@media (max-width: 940px) {
  .line__img {
    display: none;
  }

  .card__info-img {
    margin-right: auto;
    margin-left: auto;
  }

  .title__card-info {
    text-align: center;
  }

  .subtitle__card-info {
    text-align: center;
  }
}

@media (max-width: 930px) {
  .cards__wrapper-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
  }

  .card__info {
    width: 100%;
  }

  .title__card-info {
    margin-bottom: 10px;
  }

  .card__info-one {
    margin-top: 8px;
  }

  .subtitle__card-info {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
  }

  .title__info {
    margin-bottom: 45px;
  }
}

@media (max-width: 925px) {
  .footer__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__item {
    width: 100%;
  }

  .footer__email-link {
    display: flex;
    justify-content: center;
  }

  .footer__phone-link {
    margin: 0 auto;
  }

  .footer__list {
    text-align: center;
  }

  .footer__link img {
    margin: 0 auto;
  }

  .footer {
    padding-bottom: 235px;
  }
}

@media (max-width: 900px) {
  .service {
    padding-bottom: 155px;
  }
}

@media (max-width: 855px) {
  .wrapper__cards-price {
    gap: 5px;
  }
}

@media (max-width: 850px) {
  .calc__card {
    width: 360px;
  }
}

@media (max-width: 805px) {
  .wrapper__cards-price {
    flex-direction: column;
  }

  .time__price {
    text-align: left;
  }

  .title__card-price {
    text-align: left;
    justify-content: start;
  }

  .card__price {
    border-radius: 14px;
  }
}

@media (max-width: 770px) {
  .welcome__content {
    flex-direction: column;
    gap: 20px;
  }

  .hero-section {
    height: 1135px !important;
    display: flex;
    flex-direction: column;
  }

  .swiper-slide {
    height: 700px !important;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
  }

  .calc__card {
    width: 100%;
  }

  .welcome__content-right {
    width: 100%;
  }

  .title__welcome,
  .subtitle__welcome {
    max-width: none;
    width: 100%;
  }

  .wrapper__textcontent-welcome {
    max-width: none;
    width: 100%;
    gap: 15px;
  }

  .welcome__content-right {
    width: calc(100% + 30px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .info {
    margin-top: -65px;
  }

  .faq__list {
    margin-bottom: 0;
  }

  .border__question {
    display: none;
  }
}

@media (max-width: 700px) {
  .images-card__info-img--mobile-1 {
    width: 300px;
  }

  .images-card__info-img--mobile-2 {
    width: 400px;
  }

  .images-card__info-img--mobile-3 {
    width: 190px;
  }

  .images-card__info-img--mobile-4 {
    width: 400px;
  }

  .subtitle__card-info-images {
    padding-bottom: 20px;
  }
}

@media (max-width: 670px) {
  .cards__wrapper-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .card__info {
    margin-top: 0;
  }

  .title__card-info {
    margin-top: 20px;
  }

  .subtitle__card-info {
    max-width: none; 
  }
}

@media (max-width: 650px) {
  .question {
    margin-top: 55px;
  }

  .title__question {
    margin-bottom: 20px;
    font-size: 26px;
  }
}

@media (max-width: 617px) {
  .info {
    margin-top: -50px;
  }

  .cards__service-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .title__service {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .title__welcome {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .calendar__link {
    margin: 15px 0;
  }

  .btn__primary {
    padding: 18px;
    font-size: 16px;
  }

  .info {
    margin-top: -90px;
  }

  .price {
    margin-top: 45px;
  }

  .btn__question {
    justify-content: center;
    display: flex;
  }

}

@media (max-width: 565px) {
  .title__card-info-images {
    font-size: 17px;
    margin-bottom: 3px;
  }

  .subtitle__card-info-images {
    font-size: 14px;
    padding-bottom: 15px;
  }

  .btn__primary-info {
    margin-top: 30px;
  }

  .wrapper__cards-price {
    margin-top: 35px;
  }
}

@media (max-width: 555px) {
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .footer__link img {
    margin: 0;
  }

  .footer__info-box {
    display: none;
  }

  .footer__list {
    text-align: left;
  }

  .footer__list-2 {
    margin-top: 0;
  }

  .footer {
    padding-bottom: 190px;
    padding-top: 35px;
  }

  .footer::after {
    background-size: contain;
    width: 300px;
    height: 170px;
  }

  .footer__fly-box {
    left: 285px;
    bottom: 35px;
    padding: 15px 20px;
  }

  .question {
    margin-bottom: 30px;
  }
}

@media (max-width: 525px) {
  .title__card-price {
    justify-content: center;
    text-align: center;
  }

  .time__price {
    text-align: center;
  }

  .title__price {
    font-size: 20px;
  }

  .title__price-wrapper {
    gap: 20px;
    margin-bottom: 10px;
  }

  .content__top-price {
    width: 300px;
  }

  .subtitle__price {
    line-height: 1.4;
  }

  .title__service {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .box__wrapper-service {
    padding: 30px;
  }
}

@media (max-width: 485px) {
  .images-card__info-img--mobile-1 {
    width: 260px;
  }

  .images-card__info-img--mobile-2 {
    display: none;
  }

  .images-card__info-img--mobile-3 {
    width: 140px;
  }

  .images-card__info-img--mobile-4 {
    display: none;
  }

  .images-card__info-img--mobile-dn {
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 460px) {
  .footer::after {
    width: 175px;
    height: 101px;
  }

  .fly__box-text {
    font-size: 13px;
    max-width: 101px;
  }

  .footer__fly-box {
    left: 170px;
    bottom: 20px;
  }

  .footer {
    padding-bottom: 125px;
  }
}

@media (max-width: 450px) {
  .title__welcome,
  .subtitle__welcome {
    width: 200px;
  }

  .calc__welcome-link {
    width: 150px;
  }

  .calendar__link {
    margin-top: 24px;
    margin-bottom: 6px;
  }

  .swiper-slide {
    height: 642px !important;
    background-position: bottom;
  }

  .wrapper__textcontent-welcome {
    width: 200px;
    font-size: 13px;
    gap: 20px;
  }

  .calc__card {
    padding: 30px 20px;
    padding-bottom: 30px;
  }

  .menu__link-phone {
    border-top: 1px solid #ffffff72;
    border-bottom: 1px solid #ffffff72;
    padding: 20px 0;
    width: 100%;
  }

  .menu__item {
    width: 100%;
  }

  #mobile-menu {
    padding-right: 0;
    padding-left: 0;
    padding-top: 50px;
  }

  .menu__link {
    padding-left: 30px;
  }

  .welcome {
    margin-top: 30px;
  }

  .welcome__content-left {
    margin-top: 0;
  }

  .text__logo {
    font-size: 16px;
  }

  .card__info-img {
    width: 75px;
    height: 70px;
    object-fit: contain;
  }

  .title__card-info {
    margin-top: 15px;
    margin-bottom: 8px;
  }

  .info {
    margin-top: -65px;
  }

  .cards__wrapper-info {
    gap: 18px;
  }

  .title__info {
    margin-bottom: 30px;
  }

  .subtitle__card-info-images {
    display: none;
  }

  .title__card-info-images {
    padding-bottom: 15px;
    line-height: 1.4;
  }

  .card__info-images {
    padding: 30px 15px 0;
  }

  .wrapper__cards-info-images {
    gap: 15px;
  }

  .info-images {
    margin-top: 20px;
  }

  .btn__primary-info {
    width: 100%;
  }

  .time__price {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .title__card-price {
    font-size: 36px;
  }

  .text--small {
    margin-top: 13px;
  }

  .card__price {
    padding: 0;
    border: none;
    padding-bottom: 30px;
  }

  .wrapper__cards-price {
    padding: 35px 25px 0 25px;
  }

  .cards__service-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .service__content-bottom {
    gap: 40px;
  }

  .service::after {
    background-size: contain;
    width: 190px;
    bottom: -61px;
  }

  .service {
    padding-bottom: 105px;
  }

  .question {
    margin-top: 40px;
  }

  .title__question {
    margin-bottom: 15px;
  }

  .btn__question {
    width: calc(100% - 30px);
  }

  .footer__link img {
    width: 35px;
    height: 35px;
  }

  .swiper-slide-mobile-dn {
    display: none !important; 
  }

  .btn__scroll-top {
    width: 35px;
    height: 35px;
    border-width: 1px;
  }

  .btn__scroll-top img {
    width: 9px;
    height: 4px;
  }

}
