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;
  }
}

.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: #035495;
  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: #035495;
  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: #035495;
  color: #035495;
}

.white-btn {
  border-radius: 6px;
  width: 156px;
  height: 50px;
  color: #035495;
  font-size: 16px;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #035495;
  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: #035495;
  border-color: #035495;
  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: #035495;
  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: 12px;
  }
}
.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: #035495;
  color: #fff;
  outline-color: #035495;
}
.header__wrapper .header-info__contact-block__call-btn .make-call:hover {
  background-color: transparent;
  outline-color: #035495;
  color: #035495;
}
@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: #035495;
  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: #035495;
}
@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-info {
  background-image: url("../../img/mainBackground.png");
  background-size: cover;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .main-info {
    margin: 0 -20px;
    padding: 0 20px;
    margin-bottom: 24px;
  }
}
.main-info__wrapper {
  padding: 90px 0;
  display: flex;
  gap: 90px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .main-info__wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }
}
.main-info__wrapper .text-block {
  max-width: 533px;
}
@media screen and (max-width: 1024px) {
  .main-info__wrapper .text-block {
    max-width: none;
  }
}
.main-info__wrapper .text-block__title {
  font-size: 48px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .main-info__wrapper .text-block__title {
    font-size: 32px;
    margin-bottom: 4px;
  }
}
.main-info__wrapper .text-block__sub-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .main-info__wrapper .text-block__sub-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.main-info__wrapper .text-block__text {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .main-info__wrapper .text-block__text {
    font-size: 16px;
  }
}
.main-info .modal-content {
  max-width: 380px;
  padding: 32px;
  background-color: #f6f7f9;
  border-radius: 6px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .main-info .modal-content {
    padding: 16px;
    max-width: 100%;
  }
}
.main-info .modal-content .modal-header {
  margin-bottom: 32px;
  border-bottom: 0;
  padding: 0;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main-info .modal-content .modal-header {
    margin-bottom: 16px;
  }
}
.main-info .modal-content .modal-header .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #144369;
}
@media screen and (max-width: 768px) {
  .main-info .modal-content .modal-header .modal-title {
    font-size: 18px;
  }
}
.main-info .modal-content .modal-body {
  padding: 0;
}
.main-info .modal-content .modal-body .name-input,
.main-info .modal-content .modal-body .phone-input {
  margin-bottom: 16px;
}
.main-info .modal-content .modal-body label {
  margin-bottom: 7px;
  color: #162D3F;
  font-size: 12px;
  width: 100%;
}
.main-info .modal-content .modal-body .modal-form__input {
  background-color: #fff;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
  padding: 14px;
  width: 100%;
}
.main-info .modal-content .modal-body .modal-form__input::-moz-placeholder {
  color: #8D919B;
  font-size: 16px;
}
.main-info .modal-content .modal-body .modal-form__input::placeholder {
  color: #8D919B;
  font-size: 16px;
}
.main-info .modal-content .modal-body .modal-form__input:focus-visible {
  outline-color: #162D3F;
}
.main-info .modal-content .modal-body .modal-form__form-check {
  margin-bottom: 32px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .main-info .modal-content .modal-body .modal-form__form-check {
    margin-bottom: 16px;
  }
}
.main-info .modal-content .modal-body .modal-form__form-check .modal-form__form-check-input {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.main-info .modal-content .modal-body .modal-form__form-check .modal-form__form-check-label {
  font-size: 12px;
}
.main-info .modal-content .modal-body .modal-form__form-check .modal-form__form-check-label a {
  color: #035495;
  transition: all 0.3s ease-in-out;
}
.main-info .modal-content .modal-body .modal-form__form-check .modal-form__form-check-label a:hover {
  color: #144369;
}

.info {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .info {
    margin-bottom: 50px;
  }
}
.info__wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.info__wrapper__image {
  width: 50%;
}
.info__wrapper__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.info__wrapper__text-block {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .info__wrapper__text-block {
    width: 100%;
  }
}
.info__wrapper__text-block .title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .info__wrapper__text-block .title {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .info__wrapper__text-block .title {
    text-align: left;
    font-size: 24px;
  }
}
.info__wrapper__text-block .mobile-image {
  margin: 0 auto;
  margin-bottom: 24px;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.info__wrapper__text-block .text {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .info__wrapper__text-block .text {
    font-size: 16px;
  }
}

.situation {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .situation {
    margin-bottom: 50px;
  }
}
.situation__wrapper__title {
  font-size: 48px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .situation__wrapper__title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.situation__wrapper__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.situation__wrapper__cards .sit-card {
  max-width: 352px;
  border-radius: 6px;
  background-color: #f6f7f9;
  padding: 24px;
}
.situation__wrapper__cards .sit-card__number {
  font-size: 24px;
  font-weight: 700;
  color: #85c8ff;
  margin-bottom: 24px;
}
.situation__wrapper__cards .sit-card__text {
  font-size: 18px;
  height: 82px;
}

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

.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;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .stages__wrapper__cards {
    flex-direction: column;
  }
}
.stages__wrapper__cards .stages-card {
  width: 300px;
  padding: 24px;
  background-color: #F6F7F9;
  border-radius: 6px;
}
@media screen and (max-width: 1200px) {
  .stages__wrapper__cards .stages-card {
    width: 100%;
  }
}
.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__cards .line {
  margin-top: 35px;
  width: 20px;
  height: 2px;
  background-color: #e8ecf1;
}
@media screen and (max-width: 1200px) {
  .stages__wrapper__cards .line {
    margin-top: 0;
    margin-left: 25px;
    width: 2px;
    height: 20px;
  }
}

.prices {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .prices {
    margin-bottom: 50px;
  }
}
.prices__wrapper__title {
  font-size: 32px;
  font-weight: 700;
  color: #144369;
  margin-bottom: 32px;
  text-align: center;
}
.prices__wrapper__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e8ecf1;
  border-radius: 6px;
}
.prices__wrapper__table .big-cell {
  width: 60%;
}
.prices__wrapper__table th,
.prices__wrapper__table td {
  border: 1px solid #e8ecf1;
  padding: 20px;
  font-size: 16px;
}
.prices__wrapper__table th.center-text,
.prices__wrapper__table td.center-text {
  width: 20%;
  text-align: center;
}

.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: #035495;
  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;
}

.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: #035495;
  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 */

input.error {
    border-color: red !important;
}
