body {
  background-color: #fff;
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 500;
  color: #162D3F;
}

.container {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .hide-tab {
    display: none !important;
  }
}

.show-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .show-tab {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .hide-mob {
    display: none !important;
  }
}

.show-mob {
  display: none;
}
@media screen and (max-width: 768px) {
  .show-mob {
    display: block !important;
  }
}

.burger-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  text-align: right;
  text-align: -webkit-right;
  z-index: 9;
}
.burger-btn::before, .burger-btn::after, .burger-btn > div {
  background: #152d5b;
  content: "";
  display: block;
  height: 2px;
  border-radius: 2px;
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}
.burger-btn > div {
  width: 20px;
}
.burger-btn::after {
  width: 16px;
}
.burger-btn.active::before {
  transform: translateY(6px) rotate(135deg);
}
.burger-btn.active::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 24px;
}
.burger-btn.active > div {
  transform: scale(0);
}

.mobile-menu {
  opacity: 0;
  position: absolute;
  width: 100vw;
  min-height: 100vh;
  background-color: #fff;
  padding: 84px 20px 20px;
  left: -100%;
  transition: all 0.3s ease-in-out;
  z-index: 8;
}
.mobile-menu.active {
  opacity: 1;
  left: 0;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-menu__list__item__link {
  font-size: 16px;
  font-weight: 700;
  color: #152d5b;
  transition: all 0.3s ease-in-out;
}
.mobile-menu__list__item__link:hover {
  color: #144369;
}

.btn {
  border-radius: 6px;
  width: 100%;
  height: 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background-color: #162D3F;
  outline: 1px solid #162D3F;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.btn:hover {
  background-color: transparent;
  outline-color: #152d5b;
  color: #152d5b;
}

.white-btn {
  border-radius: 6px;
  width: 156px;
  height: 50px;
  color: #152d5b;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #152d5b;
  transition: all 0.3s ease-in-out;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.white-btn:hover {
  background-color: #152d5b;
  border-color: #152d5b;
  color: #fff;
}
@media screen and (max-width: 580px) {
  .white-btn {
    width: 100%;
  }
}

.modal .modal-dialog {
  max-width: 380px;
  margin: 0 auto;
  transform: translate(0, 100px) !important;
}
@media screen and (max-width: 580px) {
  .modal .modal-dialog {
    max-width: 100%;
    padding: 0 20px;
  }
}
.modal .modal-dialog .modal-content {
  max-width: 380px;
  padding: 32px;
  background-color: #f6f7f9;
}
@media screen and (max-width: 580px) {
  .modal .modal-dialog .modal-content {
    max-width: 100%;
    padding: 16px;
  }
}
.modal .modal-dialog .modal-content .btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-bottom: 32px;
  border-bottom: 0;
  padding: 0;
  justify-content: center;
}
@media screen and (max-width: 580px) {
  .modal .modal-dialog .modal-content .modal-header {
    margin-bottom: 16px;
  }
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #144369;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal .modal-dialog .modal-content .modal-body .name-input,
.modal .modal-dialog .modal-content .modal-body .phone-input {
  margin-bottom: 16px;
}
.modal .modal-dialog .modal-content .modal-body label {
  margin-bottom: 7px;
  color: #162D3F;
  font-size: 12px;
  width: 100%;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__input {
  background-color: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
  padding: 14px;
  width: 100%;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__input::-moz-placeholder {
  color: #8D919B;
  font-size: 16px;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__input::placeholder {
  color: #8D919B;
  font-size: 16px;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__input:focus-visible {
  outline-color: #162D3F;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__form-check {
  margin-bottom: 32px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (max-width: 580px) {
  .modal .modal-dialog .modal-content .modal-body .modal-form__form-check {
    margin-bottom: 16px;
  }
}
.modal .modal-dialog .modal-content .modal-body .modal-form__form-check .modal-form__form-check-input {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__form-check .modal-form__form-check-label {
  font-size: 12px;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__form-check .modal-form__form-check-label a {
  color: #152d5b;
  transition: all 0.3s ease-in-out;
}
.modal .modal-dialog .modal-content .modal-body .modal-form__form-check .modal-form__form-check-label a:hover {
  color: #144369;
}

.header__wrapper .header-info {
  display: flex;
  padding: 24px 0;
  border-bottom: 1px solid #e8ecf1;
}
@media screen and (max-width: 1024px) {
  .header__wrapper .header-info {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-bottom: none;
  }
}
.header__wrapper .header-info__logo {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .header__wrapper .header-info__logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header__wrapper .header-info__adress__text {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.header__wrapper .header-info__adress__link {
  font-weight: 600;
  font-size: 14px;
  color: #8D919B;
}
.header__wrapper .header-info__contact-block {
  margin-right: 0;
  margin-left: 40px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .header__wrapper .header-info__contact-block {
    margin-left: 0;
    justify-content: space-between;
    gap: 10px;
  }
}
.header__wrapper .header-info__contact-block__contacts .phone {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .header__wrapper .header-info__contact-block__contacts .phone {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 580px) {
  .header__wrapper .header-info__contact-block__contacts .phone {
    font-size: 18px;
  }
}
.header__wrapper .header-info__contact-block__contacts .mail {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #8D919B;
}
@media screen and (max-width: 580px) {
  .header__wrapper .header-info__contact-block__contacts .mail {
    font-size: 12px;
  }
}
.header__wrapper .header-info__contact-block__call-btn .make-call {
  width: 200px;
  background-color: #152d5b;
  color: #fff;
  outline-color: #152d5b;
}
.header__wrapper .header-info__contact-block__call-btn .make-call:hover {
  background-color: transparent;
  outline-color: #152d5b;
  color: #152d5b;
}
@media screen and (max-width: 1024px) {
  .header__wrapper .header-info__contact-block__call-btn .make-call {
    height: 40px;
    width: 158px;
  }
}
@media screen and (max-width: 580px) {
  .header__wrapper .header-info__contact-block__call-btn .make-call {
    font-size: 12px;
    width: 128px;
  }
}
.header__wrapper .menu {
  padding: 24px 0;
}
.header__wrapper .menu__list {
  display: flex;
  gap: 32px;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .header__wrapper .menu__list {
    gap: 20px;
  }
}
.header__wrapper .menu__list__item__link {
  font-size: 16px;
  font-weight: 700;
  color: #152d5b;
  transition: all 0.3s ease-in-out;
}
.header__wrapper .menu__list__item__link:hover {
  color: #144369;
}

.footer__wrapper__main-block {
  padding: 24px 0;
  border-bottom: 1px solid #e8ecf1;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper__main-block {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__wrapper__main-block .contacts-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper__main-block .contacts-block {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__wrapper__main-block .contacts-block {
    flex-direction: column;
    gap: 16px;
    justify-content: start;
  }
}
.footer__wrapper__main-block .contacts-block__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.footer__wrapper__main-block .contacts-block__contacts a {
  transition: all 0.3s ease-in-out;
}
.footer__wrapper__main-block .contacts-block__contacts a:hover {
  color: #144369;
}
.footer__wrapper__main-block .contacts-block__work-time {
  font-size: 14px;
  font-weight: 600;
}
.footer__wrapper__main-block .footer-menu {
  max-height: 184px;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper__main-block .footer-menu {
    max-height: none;
  }
}
.footer__wrapper__main-block .footer-menu__list {
  list-style-position: inside;
  -moz-column-count: 2;
  column-count: 2;
  max-width: 874px;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper__main-block .footer-menu__list {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .footer__wrapper__main-block .footer-menu__list {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.footer__wrapper__main-block .footer-menu__list__item:not(:last-child) {
  margin-bottom: 16px;
}
.footer__wrapper__main-block .footer-menu__list__item a {
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.footer__wrapper__main-block .footer-menu__list__item a:hover {
  color: #144369;
}
.footer__wrapper__legal-block {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper__legal-block {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__wrapper__legal-block .legal {
  font-size: 14px;
}
.footer__wrapper__legal-block .policy {
  font-size: 14px;
  font-weight: 600;
  color: #152d5b;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper__legal-block .policy {
    order: -1;
  }
}
.footer__wrapper__legal-block .policy a {
  transition: all 0.3s ease-in-out;
}
.footer__wrapper__legal-block .policy a:hover {
  color: #144369;
}

.main-back {
  padding: 200px 0;
  background-image: url("../../img/banner-glavnaya-v2.png");
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .main-back {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .main-back {
    padding: 60px 0 200px;
    background-image: url("../../img/banner-glavnaya-v2.png");
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 480px) {
  .main-back {
    background-position: bottom;
  }
}
.main-back__text-block {
  max-width: 600px;
  text-align: left;
}
.main-back__text-block .title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .main-back__text-block .title {
    font-size: 32px;
    font-weight: 700;
  }
  .main-back__text-block .title br {
    display: none !important;
  }
}
.main-back__text-block .text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  background: rgba(0, 0, 0, 0);
  padding-left: 0;
}
.main-back__text-block h1 {
	margin:0;
}
@media screen and (max-width: 768px) {
  .main-back__text-block .text {
    font-size: 18px;
  }
}
.main-back__text-block .btn {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #152d5b;
  outline: 1px solid #152d5b;
}
.main-back__text-block .btn:hover {
  background-color: transparent;
  color: #152d5b;
  outline: 1px solid #152d5b;
}

.services {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .services {
    margin-bottom: 50px;
  }
}
.services__wrapper__title {
  font-size: 48px;
  font-weight: 700;
  color: #162D3F;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .services__wrapper__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.services__wrapper__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .services__wrapper__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .services__wrapper__cards {
    grid-template-columns: 1fr;
  }
}
.services__wrapper__cards .service-card {
  position: relative;
  background-color: #F6F7F9;
  border-radius: 6px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  padding: 40px;
  height: 245px;
}
@media screen and (max-width: 1024px) {
  .services__wrapper__cards .service-card {
    padding: 20px;
  }
}
.services__wrapper__cards .service-card.one {
  background-image: url("../../us1.jpg");
}
.services__wrapper__cards .service-card.two {
  background-image: url("../../us2.jpg");
}
.services__wrapper__cards .service-card.three {
  background-image: url("../../us3.jpg");
}
.services__wrapper__cards .service-card.four {
  background-image: url("../../us4.jpg");
}
.services__wrapper__cards .service-card.five {
  background-image: url("../../us5.jpg");
}
.services__wrapper__cards .service-card.six {
  background-image: url("../../us6.jpg");
}
.services__wrapper__cards .service-card.seven {
  background-image: url("../../us7.jpg");
}
.services__wrapper__cards .service-card.eight {
  background-image: url("../../us8.jpg");
}
.services__wrapper__cards .service-card.nine {
  background-image: url("../../us9.jpg");
}
.services__wrapper__cards .service-card.ten {
  background-image: url("../../us10.jpg");
}
.services__wrapper__cards .service-card__text {
  font-size: 18px;
  font-weight: 700;
  color: #152d5b;
  margin-bottom: 8px;
}
.services__wrapper__cards .service-card__price {
  font-size: 18px;
  font-weight: 500;
  color: #8D919B;
}
.services__wrapper__cards .service-card__link-image {
  position: absolute;
  bottom: 0;
  left: 0;
}

.choise {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .choise {
    margin-bottom: 50px;
  }
}
.choise__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .choise__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .choise__wrapper {
    grid-template-columns: 1fr;
  }
}
.choise__wrapper .choise-card {
  border-radius: 6px;
  border: 1px solid #E8ECF1;
  padding: 24px;
}
.choise__wrapper .choise-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.choise__wrapper .choise-card__text {
  font-size: 18px;
}
.choise__wrapper .choise-card.title {
  border: none;
  padding: 0;
}
.choise__wrapper .choise-card.title .title {
  font-size: 48px;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .choise__wrapper .choise-card.title .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .choise__wrapper .choise-card.title .title {
    font-size: 24px;
    text-align: center;
  }
  .choise__wrapper .choise-card.title .title br {
    display: none !important;
  }
}

.stages {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .stages {
    margin-bottom: 50px;
  }
}
.stages__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .stages__wrapper__title {
    margin-bottom: 16px;
  }
}
.stages__wrapper__cards {
  display: flex;
  flex-direction: column;
  max-width: 690px;
  margin: 0 auto;
  /*@media screen and (max-width: 1200px) {
    flex-direction: column;
  }

  .stages-card {
    width: 248px;
    padding: 24px;
    background-color: #F6F7F9;
    border-radius: 6px;

    @media screen and (max-width: 1200px) {
      width: 100%;
    }

    &__number {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 24px;
      color: #85c8ff;
    }

    &__text {
      font-size: 18px;
    }
  }

  .line {
    margin-top: 35px;
    width: 20px;
    height: 2px;
    background-color: #e8ecf1;

    @media screen and (max-width: 1200px) {
      margin-top: 0;
      margin-left: 25px;
      width: 2px;
      height: 20px;
    }
  }*/
}
.stages__wrapper__cards .line {
  text-align: center;
  height: 20px;
  display: contents;
}
.stages__wrapper__cards .line .rotate {
  transform: rotate(180deg);
}
.stages__wrapper__cards .stages-double-card {
  display: flex;
  gap: 25px;
}
.stages__wrapper__cards .stages-card {
  width: 100%;
  background-color: #F6F7F9;
  padding: 24px;
  border-radius: 6px;
}
.stages__wrapper__cards .stages-card__number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #85c8ff;
}
.stages__wrapper__cards .stages-card__text {
  font-size: 18px;
}
.stages__wrapper .stages-card-mob .wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.stages__wrapper .stages-card-mob .wrapper .mob-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stages__wrapper .stages-card-mob .wrapper .mob-cards .stages-card__number {
  margin-bottom: 0;
}
.stages__wrapper .stages-card-mob .wrapper .mob-line.left {
  margin-top: -20px;
}
.stages__wrapper .stages-card-mob .wrapper .mob-line.right {
  align-self: flex-end;
  margin-bottom: -20px;
}

.team {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .team {
    margin-bottom: 50px;
  }
}
.team__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 44px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .team__wrapper__title {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
.team__wrapper__cards {
  max-width: 874px;
  margin: 0 auto;
  margin-bottom: 44px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .team__wrapper__cards {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .team__wrapper__cards {
    flex-direction: column;
    gap: 20px;
  }
}
.team__wrapper__cards .team-card {
  text-align: center;
}
.team__wrapper__cards .team-card__image {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .team__wrapper__cards .team-card__image img {
    width: 100px;
  }
}
.team__wrapper__cards .team-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .team__wrapper__cards .team-card__name {
    margin-bottom: 4px;
  }
}
.team__wrapper__cards .team-card__position {
  font-size: 16px;
}

.reviews {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .reviews {
    margin-bottom: 50px;
  }
}
.reviews__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  color: #144369;
}
@media screen and (max-width: 1024px) {
  .reviews__wrapper__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.reviews__wrapper__slider {
  position: relative;
  max-width: 978px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .reviews__wrapper__slider {
    margin-bottom: 24px;
  }
}
.reviews__wrapper__slider .swiper-slide .review-card {
  max-width: 866px;
  margin: 0 auto;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
}
@media screen and (max-width: 1024px) {
  .reviews__wrapper__slider .swiper-slide .review-card {
    margin: 0 30px;
  }
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block {
  padding: 32px;
}
@media screen and (max-width: 1024px) {
  .reviews__wrapper__slider .swiper-slide .review-card__text-block {
    padding: 16px;
  }
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block__text {
  font-size: 16px;
  margin-bottom: 8px;
  height: 289px;
  display: -webkit-box;
  line-clamp: 12;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .reviews__wrapper__slider .swiper-slide .review-card__text-block__text {
    -webkit-line-clamp: 12;
  }
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block__text.show {
  text-overflow: initial;
  overflow: visible;
  height: 100%;
  line-clamp: initial;
  -webkit-line-clamp: initial;
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block__show-more {
  font-size: 16px;
  font-weight: 700;
  color: #152d5b;
  display: flex;
  gap: 4px;
  align-items: center;
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block__show-more img {
  transition: all 0.3s ease-in-out;
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block__show-more:hover img {
  transform: scale(1.1);
}
.reviews__wrapper__slider .swiper-slide .review-card__text-block__show-more.show img {
  transform: rotate(180deg);
}
.reviews__wrapper__slider .swiper-slide .review-card__name {
  padding: 32px;
  background-color: #F6F7F9;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .reviews__wrapper__slider .swiper-slide .review-card__name {
    padding: 16px;
  }
}
.reviews__wrapper__slider .swiper-button-prev-review,
.reviews__wrapper__slider .swiper-button-next-review {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.reviews__wrapper__slider .swiper-button-prev-review:hover,
.reviews__wrapper__slider .swiper-button-next-review:hover {
  transform: translateY(-50%) scale(1.1);
}
.reviews__wrapper__slider .swiper-button-next-review {
  left: auto;
  right: 0;
}

.sert {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .sert {
    margin-bottom: 50px;
  }
}
.sert__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .sert__wrapper__title {
    margin-bottom: 16px;
  }
}
.sert__wrapper__swiper {
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  max-width: 730px;
  margin: 0 auto;
}
.sert__wrapper__swiper .swiper-wrapper {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.sert__wrapper__swiper .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sert__wrapper__swiper .swiper-wrapper .swiper-slide {
    width: 177px !important;
  }
}
.sert__wrapper__swiper .swiper-wrapper .swiper-slide img {
  width: 177px;
  margin: 0 auto;
}
.sert__wrapper__swiper .sert__swiper__pagination {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.sert__wrapper__swiper .sert__swiper__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #e8ecf1;
  margin: 0 5px;
}
.sert__wrapper__swiper .sert__swiper__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #152d5b;
}

.news {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .news {
    margin-bottom: 50px;
  }
}
.news__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .news__wrapper__title {
    margin-bottom: 16px;
  }
}
.news__wrapper__swiper {
  position: relative;
  overflow: hidden;
  padding: 0;
  z-index: 1;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 32px;
}
.news__wrapper__swiper .swiper-wrapper {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  text-align: center;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide .news-card {
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #E8ECF1;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide .news-card__date {
  font-size: 16px;
  color: #8D919B;
  margin-bottom: 16px;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide .news-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: auto;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide .news-card__text {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 60px;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide .news-card__link {
  font-size: 16px;
  font-weight: 700;
  color: #152d5b;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.news__wrapper__swiper .swiper-wrapper .swiper-slide .news-card__link:hover {
  color: #144369;
}
.news__wrapper__swiper .news-swiper-pagination {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.news__wrapper__swiper .news-swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #e8ecf1;
  margin: 0 5px;
}
.news__wrapper__swiper .news-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #152d5b;
}
.news__wrapper__btn {
  width: 224px;
}
@media screen and (max-width: 768px) {
  .news__wrapper__btn {
    width: 100%;
  }
}

.accord {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .accord {
    margin-bottom: 50px;
  }
}
.accord__wrapper {
  max-width: 978px;
  margin: 0 auto;
}
.accord__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .accord__wrapper__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.accord__wrapper__block .accordion-item {
  background-color: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 16px;
}
.accord__wrapper__block .accordion-item .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accord__wrapper__block .accordion-item .accordion-button__text {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  margin-right: 16px;
}
.accord__wrapper__block .accordion-item .accordion-button__icon {
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 14px;
  height: 14px;
}
.accord__wrapper__block .accordion-item .accordion-button__icon .v-line,
.accord__wrapper__block .accordion-item .accordion-button__icon .h-line {
  position: absolute;
  width: 14px;
  height: 2px;
  left: 0;
  top: 7px;
  background-color: #162D3F;
}
.accord__wrapper__block .accordion-item .accordion-button__icon .v-line {
  transform: rotate(90deg);
  left: 0;
  top: 7px;
}
.accord__wrapper__block .accordion-item .accordion-button:not(.collapsed) .v-line {
  display: none;
}
.accord__wrapper__block .accordion-item .accordion-collapse {
  font-size: 16px;
  color: #8D919B;
  padding-top: 16px;
}

.consult {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .consult {
    margin-bottom: 50px;
  }
}
.consult__wrapper {
  border-radius: 6px;
  background-color: #f6f7f9;
  padding: 60px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .consult__wrapper {
    padding: 16px;
  }
}
.consult__wrapper__form {
  max-width: 450px;
}
.consult__wrapper__form .title {
  font-size: 24px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .consult__wrapper__form .title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.consult__wrapper__form .sub-title {
  font-size: 18px;
  color: #144369;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .consult__wrapper__form .sub-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.consult__wrapper__form .modal-form .name-input,
.consult__wrapper__form .modal-form .phone-input {
  margin-bottom: 16px;
}
.consult__wrapper__form .modal-form label {
  margin-bottom: 7px;
  color: #162D3F;
  font-size: 12px;
  width: 100%;
}
.consult__wrapper__form .modal-form .modal-form__input {
  background-color: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
  padding: 14px;
  width: 100%;
}
.consult__wrapper__form .modal-form .modal-form__input::-moz-placeholder {
  color: #8D919B;
  font-size: 16px;
}
.consult__wrapper__form .modal-form .modal-form__input::placeholder {
  color: #8D919B;
  font-size: 16px;
}
.consult__wrapper__form .modal-form .modal-form__input:focus-visible {
  outline-color: #162D3F;
}
.consult__wrapper__form .modal-form .modal-form__form-check {
  margin-bottom: 32px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .consult__wrapper__form .modal-form .modal-form__form-check {
    margin-bottom: 16px;
  }
}
.consult__wrapper__form .modal-form .modal-form__form-check .modal-form__form-check-input {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.consult__wrapper__form .modal-form .modal-form__form-check .modal-form__form-check-label {
  font-size: 12px;
}
.consult__wrapper__form .modal-form .modal-form__form-check .modal-form__form-check-label a {
  color: #152d5b;
  transition: all 0.3s ease-in-out;
}
.consult__wrapper__form .modal-form .modal-form__form-check .modal-form__form-check-label a:hover {
  color: #144369;
}
.consult__wrapper__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}/*# sourceMappingURL=style.css.map */
