:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --dark-color: #000;
  --acent-color: #8ec4a0;
  --blue-color: #6d8ba6;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--acent-color);
  color: var(--light-color);
  text-shadow: none;
}

::selection {
  background-color: var(--acent-color);
  color: var(--light-color);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--acent-color);
  color: var(--light-color);
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #F0F0F0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--blue-color);
  border-radius: 10px;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    gap: 5px;
  }
}
@media (max-width: 576px) {
  .breadcrumbs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.breadcrumbs__link {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.breadcrumbs__link:hover {
  color: var(--dark-color);
}
.breadcrumbs__desc {
  font-size: 14px;
  color: var(--dark-color);
}
.breadcrumbs__current {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: var(--dark-color);
}

.btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 32px;
  background-color: var(--acent-color);
  font-weight: 600;
  font-size: 18px;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.btn-blue {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 32px;
  background-color: var(--blue-color);
  font-weight: 600;
  font-size: 18px;
  color: var(--light-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn-blue:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.btn-ghost {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 32px;
  border: 2px solid var(--acent-color);
  font-weight: 600;
  font-size: 18px;
  color: var(--acent-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.btn-ghost:hover {
  color: var(--light-color);
  background-color: var(--acent-color);
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}

.section {
  padding: 40px 0;
}

.section--bg {
  background: #f5f5f5;
  border-radius: 24px;
}

.section-title {
  margin: 0;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }
}
.section-title::before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #E6F5DB;
  position: absolute;
  top: -15px;
  left: -25px;
  z-index: -1;
}

.form {
  max-width: 496px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
}
@media (max-width: 576px) {
  .form {
    gap: 12px;
  }
}
.form__title {
  margin: 0;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 32px;
  color: var(--light-color);
}
@media (max-width: 768px) {
  .form__title {
    font-size: 20px;
  }
}
.form__input {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  outline: none;
  border: 2px solid var(--acent-color);
  border-radius: 12px;
  padding: 0 20px;
  font-weight: 400;
  font-size: 16px;
  color: var(--dark-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (max-width: 576px) {
  .form__input {
    font-size: 11px;
    padding: 11px 30px;
  }
}
.form__input:focus {
  border-color: var(--blue-color);
}
.form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.form__input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.form__btn {
  width: 100%;
  height: 60px;
}

@media (max-width:768px)  {
  .header {
    background-color: var(--blue-color);
  }
}

.header__top {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width:768px) {
  .header__top {
    padding: 10px 0;
    
  }
}
.header__logo {
  width: 100px;
}

@media (max-width:768px) {
  .header__logo {
    width: 60px;
  }
}
.header__bottom {
  background-color: var(--blue-color);
}

/* @media (max-width: 768px) {
  .header__bottom {
    display: none;
  }
} */
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
}
@media (max-width: 768px) {
  .header__info {
    display: none;
  }
}
.header__address {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 6px;
  font-style: normal;
  font-size: 16px;
}
.header__text {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 6px;
  font-size: 16px;
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 12px;
}

@media (max-width: 768px) {
  .header__contacts {
    display: none;
  }
}
.header__link {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.header__link:hover {
  color: var(--blue-color);
}

.header__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__social-link {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-color);
  transition: all 0.3s ease-in;
}

.header__social-link:hover {
  background-color: var(--acent-color);
}

nav {
  padding: 0;
}

.main-menu {
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
}

@media (max-width: 768px) {
  .nav {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--blue-color);
    width: 100%;
    height: 100vh;
    padding: 20px 0;
    top: 74px;
    overflow: auto;
    }

    .menu--active {
      z-index: 110;
      opacity: 1;
      visibility: visible;
    }

    .main-menu {
      grid-template-columns: repeat(1,1fr);
    }
}





.main-menu > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .main-menu > li {
    align-items: flex-start;
    flex-direction: column;
  }
}

.main-menu > li > a,
.main-menu > li > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--light-color);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  list-style: none;
  padding: 10px 0;
  border: 1px solid #eee;
}


.submenu.show {
  display: block;
}

.submenu li {
  position: relative;
}

.submenu a,
.submenu button {
  display: block;
  width: 100%;
  padding: 10px 20px;
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.submenu .submenu {
  top: 0;
  left: 100%;
}

@media (max-width: 768px) {
  .submenu {
    position: static;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 0;
    max-width: unset;
    background: var(--blue-color);
  }
  .submenu .submenu {
    left: 0;
  }

  .submenu li {
    color: var(--light-color);
  }
   .submenu li a {
    color: var(--light-color);
  }

  .submenu button {
    color: var(--light-color);
  }
}
.hero {
  background-size: cover;
  height: calc(100vh - 195px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.burger {
  display: none;
  position: relative;
  z-index: 120;
  border: none;
  padding: 0;
  width: 30px;
  height: 18px;
  color: var(--light-color);
  cursor: pointer;
}

@media (max-width:768px) {
  .burger {
    display: block;
  }
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--light-color);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  bottom: 0;
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--light-color);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger.active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger.active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger.active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .hero {
    padding: 40px 0;
    height: auto;
  }
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .hero__wrapper {
    flex-direction: column;
  }
}
.hero__left {
  max-width: 60%;
}
.hero__img {
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .hero__left {
    max-width: unset;
  }
  .hero__img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--acent-color);
    border-radius: 12px;
    overflow: hidden;
  }

  .hero__img {
    margin: 0 auto;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 24px;
  }

  .hero__subtitle {
    margin: 0;
    font-size: 18px;
  }
}
.hero__subtitle {
  margin: 0;
  margin-bottom: 16px;
}
.hero__text {
  margin: 0;
  margin-bottom: 32px;
}
.hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .hero__btns {
    flex-direction: column;
    gap: 12px;
  }

  .hero__btns .btn {
    width: 100%;
  }

  .hero__btns .btn-blue {
    width: 100%;
  }
}
.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(30, 41, 59, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal {
  display: none;
  position: relative;
  max-width: 544px;
  border-radius: 12px;
  padding: 24px;
  background-color: var(--light-color);
}
@media (max-width: 768px) {
  .modal {
    margin: 0 15px;
    padding: 16px;
  }
}
.modal--visible {
  display: block;
}
.modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal__close {
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid var(--acent-color);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  background-color: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.modal__title {
  margin: 0;
  margin-bottom: 28px;
  font-weight: 400;
  font-size: 32px;
  color: var(--dark-color);
}
.modal__title span {
  color: var(--blue-color);
}
@media (max-width: 768px) {
  .modal__title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}


.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}
.checkbox__checkmark {
  outline: none;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--acent-color);
  border-radius: 2px;
  margin-right: 16px;
  background-color: var(--acent-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.checkbox--white .checkbox__checkmark {
   border: 2px solid var(--blue-color);
   background-color: var(--blue-color);
}
.checkbox__checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 11px;
  height: 8px;
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.checkbox__text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color);
  line-height: 130%;
}
.checkbox__text a {
  color: var(--acent-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.checkbox__text a:hover {
  color: var(--yellow-color);
}
.checkbox input:checked + .checkbox__checkmark {
  background: var(--acent-color);
  border-color: var(--acent-color);
}
 .checkbox--white input:checked + .checkbox__checkmark {
   border-color: var(--blue-color);
   background-color: var(--blue-color);
}
.checkbox input:checked + .checkbox__checkmark::after {
  opacity: 1;
}
.checkbox:hover input:not(:checked) + .checkbox__checkmark {
  border-color: var(--acent-color);
}

.checkbox--white .checkbox__text {
  color: #fff;
}

.checkbox--white .checkbox__text a {
  color: var(--blue-color);
}
.thx-modal {
  max-width: 815px;
  padding: 0;
  background-color: unset;
}
.thx-modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}
.thx-modal__content {
  position: relative;
  padding: 24px;
  background-color: var(--light-color);
  border-radius: 20px;
}
.thx-modal__title {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .thx-modal__title {
    margin-bottom: 16px;
  }
}
.thx-modal__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color);
}
.thx-modal__img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .thx-modal__img {
    display: none;
  }
}
.thx-modal__btn {
  width: 100%;
}

.single-doctor {
  padding: 40px 0;
}
.single-doctor__wrapper {
  margin: 0 auto;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}
.single-doctor__img {
  border-radius: 24px;
}
.single-doctor__name {
  margin: 0;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 20px;
}
.single-doctor__prof {
  display: block;
  margin: 0;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--acent-color);
}
.single-doctor__text {
  margin: 0;
  margin-bottom: 18px;
  font-size: 16px;
}
.single-doctor__more {
  display: block;
  width: max-content;
  font-size: 16px;
  color: var(--blue-color);
  border-bottom: 2px dotted var(--blue-color);
  transition: all 0.3s ease-in;
}

.single-doctor__more:hover {
  transform: scale(1.02);
  color: var(--acent-color);
  border-color: var(--acent-color);
}

.benefits {
  padding: 40px 0;
}
.benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 48px;
}
@media (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2,1fr);
  }
}
.benefits__grid--small .benefits__item:nth-child(5) {
  display: none;
}
.benefits__grid--small .benefits__item:nth-child(6) {
  display: none;
}
.benefits__grid--small .benefits__item:nth-child(7) {
  display: none;
}
.benefits__grid--small .benefits__item:nth-child(8) {
  display: none;
}
.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.benefits__item:nth-child(odd) .benefits__img {
  background-color: var(--acent-color);
}
.benefits__item:nth-child(even) .benefits__img {
  background-color: var(--blue-color);
}
.benefits__item:nth-child(5) .benefits__img {
  background-color: var(--blue-color);
}
.benefits__item:nth-child(7) .benefits__img {
  background-color: var(--blue-color);
}
.benefits__item:nth-child(6) .benefits__img {
  background-color: var(--acent-color);
}
.benefits__item:nth-child(8) .benefits__img {
  background-color: var(--acent-color);
}
.benefits__img {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 24px;
}
.benefits__img img {
  width: 64px;
  height: 64px;
}
.benefits__text {
  margin: 0;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  line-height: 120%;
}

.stages {
  padding: 40px 0;
}
.stages__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 60px;
}
@media (max-width: 768px) {
  .stages__grid {
    grid-template-columns: repeat(2,1fr);
    row-gap: 20px;
  }
}
.stages__top {
  margin-bottom: 24px;
  position: relative;
}
.stages__icon {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 24px;
  width: 100px;
  height: 100px;
  background-color: var(--acent-color);
}
.stages__number {
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--acent-color);
  font-size: 20px;
  font-weight: 500;
  color: var(--light-color);
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 11px 11px 0 rgba(0, 0, 0, 0.09), 0 25px 15px 0 rgba(0, 0, 0, 0.05), 0 44px 18px 0 rgba(0, 0, 0, 0.01), 0 69px 19px 0 rgba(0, 0, 0, 0);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 11px 11px 0 rgba(0, 0, 0, 0.09), 0 25px 15px 0 rgba(0, 0, 0, 0.05), 0 44px 18px 0 rgba(0, 0, 0, 0.01), 0 69px 19px 0 rgba(0, 0, 0, 0);
}
.stages__text {
  margin: 0;
  text-align: center;
  font-size: 16px;
}

.license {
  padding: 40px 0;
}
.license__row {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.license__row .section-title {
  margin: 0;
}
.license__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.license__prev, .license__next {
  position: relative;
  margin: 0;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--acent-color);
}
.license__prev::after, .license__next::after {
  display: none;
}
.license__slide {
  width: 377px !important;
  border: 2px solid var(--blue-color);
  padding: 5px;
  border-radius: 12px;
}
@media (max-width: 576px) {
  .license__slide {
    width: 320px !important;
  }
}
.license__slide:not(:last-child) {
  margin-right: 20px !important;
}

.callback {
  padding-top: 180px;
}

@media (max-width: 768px) {
  .callback {
    padding-top: 40px;
  }
}
.callback__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 430px;
  background-color: var(--acent-color);
  padding: 24px;
  border-radius: 24px;
}
.callback__img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 910px) {
  .callback__wrapper {
    min-height: unset;
  }
  .callback__img {
    width: 30vw;
    
  }
}

@media (max-width: 768px) {
  .callback__img {
    display: none;
    
  }
}

.doctor__row {
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.doctor__row .section-title {
  margin: 0;
}
.doctor__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.doctor__prev, .doctor__next {
  position: relative;
  margin: 0;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--acent-color);
}
.doctor__prev::after, .doctor__next::after {
  display: none;
}
.doctor__slide {
  position: relative;
  width: 278px !important;
  background-color: var(--acent-color);
  border-radius: 12px;
}
.doctor__slide:not(:last-child) {
  margin-right: 20px;
}
.doctor__img {
  border-radius: 12px;
  width: 100%;
  height: 280px;
}
.doctor__more {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.doctor__info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 5px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: var(--acent-color);
}
.doctor__name {
  margin: 0;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--light-color);
}
.doctor__class {
  position: absolute;
  top: 8px;
  left: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 12px;
  color: var(--blue-color);
  background-color: var(--light-color);
}

.reviews__title {
  margin: 0;
  margin-bottom: 50px;
  font-weight: 700;
  font-size: 64px;
  color: var(--dark-color);
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 42px;
    margin-bottom: 25px;
  }
}
.reviews__slider {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .reviews__slider {
    padding-bottom: 40px;
  }
}
.reviews__slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .reviews__slider .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}
.reviews__slider .swiper-pagination-bullet-active {
  background-color: var(--acent-color);
}
.reviews__slide {
  background-color: var(--blue-color);
  padding: 24px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .reviews__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.reviews__name {
  margin: 0;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  color: var(--light-color);
}
.reviews__text {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 18px;
  line-height: 117%;
  color: var(--light-color);
  width: 100%;
  height: 147px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 768px) {
  .reviews__text {
    font-size: 16px;
  }
}
.reviews__text.active {
  height: auto;
}

.faq__title {
  margin-bottom: 30px;
  color: var(--dark-color);
}

.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.accordion__item {
  padding: 10px 30px;
  border-radius: 12px;
  background: #efefef;
}

@media (max-width: 768px) {
  .accordion__item {
    padding: 10px;
  }
}
.accordion__item.active .accordion__answer {
  margin-top: 15px;
}
.accordion__item.active .accordion__btn {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.accordion__question {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .accordion__question {
    font-size: 16px;
  }
}
.accordion__btn {
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--acent-color);
  border-radius: 100%;
}


.accordion__btn svg {
  width: 38px;
  height: 38px;
}

@media (max-width: 768px) {
  .accordion__btn {
     width: 30px;
    height: 30px;
  }

  .accordion__btn svg {
    width: 15px;
    height: 15px;
  }
 
}
.accordion__answer {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  max-height: 0;
  overflow: hidden;
}
.accordion__answer span {
  font-weight: 700;
  color: var(--dark-color);
}

.footer {
  padding: 40px 0;
  background: var(--blue-color);
}
@media (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__wrapper {
  padding-top: 50px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__wrapper {
    position: relative;
    padding-bottom: 80px;
  }
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 768px) {
  .footer__list {
    width: 48%;
  }
  .footer__list:nth-of-type(3), .footer__list:nth-of-type(4) {
    margin-top: 20px;
  }
}
.footer__list--services {
  max-width: 239px;
}
@media (max-width: 768px) {
  .footer__list--services {
    max-width: none;
  }
}
.footer__list--contacts {
  max-width: 244px;
}
@media (max-width: 768px) {
  .footer__list--contacts {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer__list--navigation {
    position: absolute;
    left: 0;
    top: 310px;
  }
}
.footer__item:not(:last-child) {
  margin-bottom: 20px;
}
.footer__item:first-child {
  margin-bottom: 30px;
}
.footer__item:hover .footer__link, .footer__item:hover .footer__services, .footer__item:hover .footer__contacts {
  color: var(--acent-color);
}
.footer__title {
  margin: 0;
  color: var(--acent-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer__link {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}
.footer__services {
  margin: 0;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
  cursor: pointer;
}
.footer__contacts {
  /* padding-left: 25px; */
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: left center;
}
.footer__contacts--place {
  background-image: url("../img/place.svg");
}
.footer__contacts--phone {
  background-image: url("../img/phone-f.svg");
}
.footer__contacts--email {
  background-image: url("../img/email-f.svg");
}
.footer__contacts--inst {
  background-image: url("../img/inst-f.svg");
}
.footer__contacts--yu {
  background-image: url("../img/y-f.svg");
}
.footer__contacts--tg {
  background-image: url("../img/tg.svg");
}
.footer__contacts--wa {
  background-image: url("../img/wa.svg");
}
.footer__mobile {
  display: none;
  width: 48%;
}
@media (max-width: 768px) {
  .footer__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer-top__logo {
    margin: 0 auto;
  }
}
.footer-top__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .footer-top__copy {
    display: none;
  }
}
.footer-top__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer-top__btns {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-top__btns--mobile {
    margin-top: 20px;
    display: block;
  }
}
.footer-top__btn {
  width: 184px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 26px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: #8b85b1;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: background 0.3s ease-in;
  transition: background 0.3s ease-in;
}
@media (max-width: 768px) {
  .footer-top__btn {
    width: 160px;
    padding: 12px 23px;
    font-size: 14px;
  }
}
.footer-top__btn:hover {
  background: #6e669f;
}
.footer-top__btn:first-of-type {
  margin-right: 9px;
}
@media (max-width: 768px) {
  .footer-top__btn:first-of-type {
    margin-right: 0;
    margin-bottom: 9px;
  }
}
.footer-top__btn--red {
  background: var(--acent-color);
}
.footer-top__btn--red:hover {
  background: #cd3636;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer-bottom__politc {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-bottom__politc {
    display: none;
  }
}
.footer-bottom__politc span {
  margin: 0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .footer-bottom__politc--mobile {
    display: block;
    margin-bottom: 15px;
  }
}
.footer-bottom__name {
  margin: 0;
  display: none;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .footer-bottom__name {
    margin-bottom: 10px;
    display: inline;
  }
}
.footer-bottom__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 768px) {
  .footer-bottom__copy {
    font-size: 12px;
  }
}
.footer-bottom__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-bottom__dev {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 768px) {
  .footer-bottom__dev {
    display: none;
  }
}
@media (max-width: 768px) {
  .footer-bottom__dev--mobile {
    display: inline;
    margin-bottom: 20px;
  }
}

.more-services {
  padding: 40px 0;
}
.more-services__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .more-services__grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 576px) {
  .more-services__grid {
    grid-template-columns: repeat(1,1fr);
    gap: 12px;
  }
}

.services-item {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--acent-color);
  transition: all 0.3s ease-in;
}
.services-item:hover {
  background-color: var(--blue-color);
}
.services-item__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.services-item__wrapper {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.services-item__title {
  margin: 0;
  font-size: 16px;
  color: var(--light-color);
}
.services-item__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 2px solid var(--light-color);
  border-radius: 100%;
  transition: all 0.3s ease-in;
}

.services-item__btn:hover {
  transform: scale(1.02);
}

.sec-info {
  padding: 20px 0;
}

.services-hero {
  padding: 40px 0;
}
.services-hero__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .services-hero__wrapper {
    grid-template-columns: repeat(1,1fr);
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.services-hero__img {
  width: 575px;
  max-height: 400px;
  border-radius: 12px;
}
.services-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 18px;
}
.services-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: 38px;
}
@media (max-width: 768px) {
  .services-hero__title {
    font-size: 24px;
  }
}
.services-hero__text {
  margin: 0;
  font-size: 16px;
  line-height: 130%;
}
.services-hero__text a {
  font-weight: 600;
  color: var(--acent-color);
}
.services-hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .services-hero__btns {
    width: 100%;
    gap: 12px;
    flex-direction: column;
  }

  .services-hero__btns .btn {
    width: 100%;
  }

  .services-hero__btns .btn-blue {
    width: 100%;
  }
}

.services-nav {
  padding: 40px 0;
}
.services-nav__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .services-nav__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}
.services-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.services-nav__link {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-color);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.services-nav__link:hover {
  color: var(--acent-color);
}
.pro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 2px solid var(--blue-color);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .services-nav__column {
    width: 100%;
  }
  .pro {
    width: 100%;
    flex-direction: column;
  }
}
.pro__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.pro__item {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: var(--acent-color);
}
.pro__item span {
  font-weight: 500;
  color: var(--dark-color);
}
.pro__link {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.pro__link:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.price {
  padding: 40px 0;
}
.price__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.price__item {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  background: #f5f5f5;
}
@media (max-width: 768px) {
  .price__item {
    padding: 12px;
    gap: 12px;
  }
}
.price__item--heading {
  background-color: var(--acent-color) !important;
}
.price__item--heading .price__title {
  color: var(--light-color);
}
.price__title {
  margin: 0;
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .price__title {
    font-size: 16px;
    grid-column: 6 span;
  }
}
.price__price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--acent-color);
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  
}

@media (max-width: 768px) {
  .price__price {
    font-size: 16px;
    grid-column: 6 span;
    display: flex;
    justify-content: flex-end;
  }
}
.price__btn {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

@media (max-width: 768px) {
  .price__btn {
    width: 100%;
    font-size: 16px;
    grid-column: 12 span;
  }
}

.services-content {
  padding: 40px 0;
}
.services-content__wrapper p {
  margin: 0;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 130%;
}
.services-content__wrapper a {
  color: var(--acent-color);
} 
.services-content__wrapper blockquote {
  margin: 0;
}
.services-content__wrapper h3 {
  margin: 0;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 130%;
}
.services-content__wrapper ul {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
  list-style: none;
}
.services-content__wrapper li {
  position: relative;
  padding-left: 10px;
}
.services-content__wrapper li:not(:last-child) {
  margin-bottom: 10px;
}
.services-content__wrapper li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--acent-color);
  border-radius: 100%;
  position: absolute;
  top: 7px;
  left: 0;
}
.services-content__wrapper img {
  border-radius: 20px;
  max-height: 320px;
}
.services-content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .services-content__row  {
    flex-direction: column;
  }
}


.news {
  padding: 60px 0;
}
.news__grid {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}
.news__item {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 24px;
  border: 2px solid var(--blue-color);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.news__item:hover {
  border-color: var(--acent-color);
}
@media (max-width: 1024px) {
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .news__item {
    padding: 16px;
  }
}
.news__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.news__date {
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 400;
  font-size: 16px;
  color: var(--yellow-color);
}
@media (max-width: 1024px) {
  .news__date {
    top: 32px;
    right: 32px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 5px 10px;
    border-radius: 12px;
    background-color: var(--light-color);
  }
}
@media (max-width: 768px) {
  .news__date {
    top: 24px;
    right: 24px;
  }
}
.news__img {
  max-width: 407px;
  border-radius: 12px;
  height: 180px;
}
@media (max-width: 1024px) {
  .news__img {
    width: 100%;
    max-width: unset;
    height: 180px;
  }
}
.news__content {
  max-width: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.news__title {
  margin: 0;
  margin-bottom: 16px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: var(--text-color);
}
.news__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--text-color);
}
.news__btn {
  z-index: 2;
}
@media (max-width: 1024px) {
  .news__btn {
    margin-top: 24px;
  }
}
.news__all {
  margin: 0 auto;
}

.main-news {
  padding-top: 40px;
}


.single-news {
  padding: 60px 0;
}
.single-news__grid {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .single-news__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.single-news__content {
  -ms-grid-column-span: 8;
  grid-column: 8 span;
  border: 2px solid var(--blue-color);
  border-radius: 12px;
  padding: 48px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .single-news__content {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}
@media (max-width: 768px) {
  .single-news__content {
    padding: 24px 16px;
  }
}
.single-news__title {
  margin: 0;
  margin-bottom: 12px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: var(--acent-color);
}
.single-news__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-color);
}
.single-news__img {
  border-radius: 12px;
  -ms-grid-column-span: 4;
  grid-column: 4 span;
}
@media (max-width: 1024px) {
  .single-news__img {
    width: 100%;
    display: block;
    margin: 0 auto;
    -ms-grid-column-span: 1;
    grid-column: 1 span;
    max-height: 300px;
  }
}

.main-services {
  padding: 40px 0;
}

.all-services-btn {
  margin: 0 auto;
  margin-top: 32px;
}
.callback-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background-color: #D1664C; /* Ваш акцентный цвет */
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.callback-btn:hover {
  transform: scale(1.05);
}

.contact-button-container {
      position: fixed;
      bottom: 92px;
      right: 24px;
      z-index: 1000;
}

    /* Основная кнопка */
    .contact-toggle {
      width: 56px;
      height: 56px;
      background-color: #C2E8A4; /* Ваш акцентный цвет */
      border: none;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s;
    }

    .contact-toggle:hover {
      transform: scale(1.05);
    }

    /* Меню соцсетей */
    .social-menu {
      position: absolute;
      bottom: 72px;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }

    .social-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .social-link {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background-color: var(--blue-color);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      transition: background-color 0.2s;
    }

    .social-link:hover {
      background-color: #C2E8A4;
      color: #1D1D1F;
    }


.gallery {
  padding: 40px 0;
}
.gallery__img {
  border-radius: 24px;
}

.gallery__row .section-title {
  margin: 0;
}
.gallery__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.gallery__prev, .gallery__next {
  position: relative;
  margin: 0;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--acent-color);
}
.gallery__prev::after, .gallery__next::after {
  display: none;
}
.gallery__slide {
  width: 377px !important;
  cursor: pointer;
}
@media (max-width: 576px) {
  .gallery__slide {
    width: 320px !important;
  }
}
.gallery__slide:not(:last-child) {
  margin-right: 20px !important;
}

.single-doc {
  padding: 40px 0;
}

.single-doc__wrapper {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width:1024px) {
  .single-doc__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
}

.single-doc__img {
  border-radius: 24px;
  height: 500px;
}

.single-doc__text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.single-doc__text span {
  font-weight: 700;
  color: var(--acent-color);
}

.single-doc__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width:768px) {
  .single-doc__btns {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }

  .single-doc__btn {
    width: 100%;
  }
}

.contacts {
  
}

.contacts__wrapper {
  margin-bottom: 60px;
  padding: 24px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.contacts__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contacts__link {
  margin: 0;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;

  transition: all 0.3s ease-in;
}

.contacts__link:hover {
  color: var(--acent-color);
}

.contacts__left-row {
  display: flex;
  align-items: center;
}

.contacts__phone {
  margin-right: 15px;
}

.contacts__title {
  margin: 0;
  margin-bottom: 15px;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
}

.contacts__text {
  margin: 0;
  font-size: 16px;
  color: var(--dark-color);
  line-height: 130%;
}

@media (max-width:600px) {
  .contacts__wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .contacts__title {
    margin-bottom: 10px;
  }
}

.nav-links {
  margin-top: 20px;
}

.page-numbers {
  color: #000;
}

.page-numbers.current {
  color: var(--acent-color);
}

.site-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;

}