@font-face {
  font-family: 'Manrope';
  src: url(../fonts/Manrope-Regular.ttf) format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url(../fonts/Manrope-Bold.ttf) format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url(../fonts/Manrope-ExtraBold.ttf) format('truetype');
  font-weight: 800;
  font-display: swap;
}

:root {
  font-family: "Manrope", sans-serif;
}

img {
  display: block;
}

h1 {
  line-height: 55px;
  letter-spacing: -2px;
  margin: 0;
  font-weight: 500;
  font-size: 50px;
}

h2 {
  line-height: 55px;
  letter-spacing: -2px;
  margin: 0;
  font-weight: 500;
  font-size: 50px;
}

h3 {
  font-size: 40px;
  margin-top: 0px;
  line-height: 1.1;
}

h4 {
  font-size: 35px;
}

body {
  background-color: #FFF;
  color: #212121;
  margin: 0px;
  font-size: 18px;
  padding-top: 89px;
}

button {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

p {
  margin: 0px;
}

a {
  color: #212121;
  text-decoration: none;
}

form {
  margin: 0;
}

section:not(:first-child) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}


section.visible {
  opacity: 1;
  transform: translateY(0);
}

input,
textarea {
  box-sizing: border-box;
  resize: none;
}

.section-offset {
  margin: 0px auto;
  max-width: 1500px;
  padding: 75px 0px;
}

.border-up {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.border-down {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}


.section-offset--colored-dark {
  background-color: #ECF1F4;
}

.section-offset--colored-light {
  background-color: rgba(236, 241, 244, 0.3);
}

.centered {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.centered p {
  margin-top: 20px;
  width: 100%;
  max-width: 965px;
}

.underlined {
  border-bottom: 1px solid #A8DBD9;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  background: #fff;
  width: 720px;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  animation: fadeIn 0.3s ease;
}


.modal .modal-subhead {
  margin-top: 20px;
  margin-bottom: 40px;
}

.modal-close {
  position: absolute;
  right: 40px;
  top: 33px;
  font-size: 25px;
  cursor: pointer;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 2fr 2fr;
}

.modal-button {
  background-color: #3B738F;
  color: #FFF;
}

#fullReviewModal .modal {
  background-color: #ECF1F4;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #DBE1DD;
}

.modal .custom-checkbox .text {
  color: #212121;
}

.modal .custom-checkbox .text a {
  color: #212121;
}

.modal .custom-checkbox .text a:hover,
.contacts-form-block .text a:hover {
  color: #3B738F;
}

.form-grid-review {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
}


.modal-text {
  font-family: 'Manrope', sans-serif;
  width: 100%;
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 16px;
  border: 1px solid #DBE1DD;
  grid-column: 1 / -1;
}

.modal-button {
  grid-column: 1;
}

#reviewModal .custom-checkbox {
  grid-column: 2;
  align-self: center;
}


#reviewModal .submit-btn {
  background: #3b7ea1;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:disabled {
  background: #aaa;
  cursor: not-allowed;
}

@keyframes fadeIn {
  from {
      transform: translateY(-10px);
      opacity: 0;
  }

  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-sizing: border-box;
}

.header__container {
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
}

.top-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  border-bottom: 1px solid #D1EEEA;
}

.header__location {
  align-items: center;
  display: flex;
  gap: 10px;
}

.header__location__city {
margin: 0;
line-height: 16px;
font-size: 14px;
background-color: transparent;
border: none;
font-weight: inherit;
text-align: left;
padding: 0;
}

.header__location__city:hover {
color: #2E6489;
}

.header__sections {
  display: flex;
  font-weight: 600;
  gap: 30px;
}

.header__sections a:hover {
  color: #2A5674;
}

.header__telephone {
  margin-left: 50px;
  font-weight: 800;
  font-size: 1.3vw;
  color: #2E6489;
}

.header__contacts {
  display: flex;
  gap: 5px;
}

.social-link {
  height: 61px;
  width: 61px;
  background-color: #ECF1F4;
  border-radius: 12px;
  align-content: center;
  text-align: center;
}

.social-link img {
  margin: 0 auto;
}

.btn {
  box-sizing: border-box;
  border-radius: 12px;
  transition: 0.25s all;
  text-align: center;
  align-items: center;
  align-content: center;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
}

.btn:hover {
  background-color: #3B738F;
}

.dark-btn {
  background-color: #2E6489;
  color: #FFF;
}

.light-btn {
  background-color: #FFF;
  border: 1px solid #3B738F;
  color: #3B738F;
}

.light-btn:hover {
  background-color: #3B738F;
  color: #FFF;
}

.btn-with-arrow {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 18px;
}

.header__btn {
  width: 220px;
}

.bottom-header {
  position: relative;
  background: white;
  display: flex;
  justify-content: space-between;
}

.bottom-header__menu-item {
  position: relative;
  display: flex;
  padding: 20px 0px;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
}

.bottom-header__submenu-item a:hover {
  color: #2E6489;
}

.bottom-header__menu-item>a,
.bottom-header__menu-item>p {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.bottom-header__menu-item:hover>a {
  color: #2E6489;
}

.bottom-header__menu-item img {
  height: 12px;
  width: 12px;
  transition: transform 0.3s;
}

.has-submenu:hover img[src*="arrowDown"] {
  transform: rotate(180deg);
}

.has-submenu:hover img[src*="arrowRight"] {
  transform: translateX(3px);
}

.bottom-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 30px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.05);
  z-index: 1001;
  max-height: 500px;
  overflow-y: auto;
}

.bottom-header__submenu-item.has-submenu {
  position: relative;
}

.bottom-header__submenu-item.has-submenu::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 0;
  width: 18px;
  height: 100%;
  z-index: 1002;
}

.has-submenu:hover .bottom-header__submenu:not(.second-level) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bottom-header__submenu-item {
  position: relative;
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  text-decoration: none;
  transform: translateX(10px);
  font-size: 16px;
  transition: all 0.3s;
  white-space: nowrap;
}

.bottom-header__submenu-item:last-child {
  margin-bottom: 0px;
}

.bottom-header__submenu-item:hover {
  color: #2E6489;
}

.bottom-header__submenu.second-level {
  position: absolute;
  top: -30px;
  left: calc(100% + 18px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  padding-left: 10px;
}

.bottom-header__submenu.second-level::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 18px;
  height: calc(100% - 60px);
  z-index: -1;
}

.bottom-header__submenu-item.has-submenu:hover .bottom-header__submenu.second-level {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.bottom-header__submenu:has(.bottom-header__submenu-item.has-submenu:hover > .bottom-header__submenu.third-level),
.bottom-header__submenu:has(.bottom-header__submenu.third-level:hover) {
  overflow: visible;
}

.bottom-header__submenu.second-level:has(.bottom-header__submenu-item.has-submenu:hover > .bottom-header__submenu.third-level),
.bottom-header__submenu.second-level:has(.bottom-header__submenu.third-level:hover) {
  overflow: visible;
}

.bottom-header__submenu.third-level {
  display: none;
  position: absolute;
  left: calc(100% + 8px);
  top: 0;
  background: #fff;
  width: max-content;
  min-width: 280px;
  max-width: min(420px, calc(100vw - 40px));
  max-height: calc(100vh - 120px);
  overflow-x: visible;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 8px 0;
  z-index: 1003;
}

.bottom-header__submenu-item.has-submenu:hover > .bottom-header__submenu.third-level {
  display: block;
}

.bottom-header__submenu.second-level .bottom-header__submenu-item.has-submenu:nth-last-child(-n+3):hover > .bottom-header__submenu.third-level {
  top: auto;
  bottom: 0;
}

.bottom-header__submenu.third-level .bottom-header__submenu-item {
  display: block;
  gap: 0;
  margin-bottom: 0;
  padding: 8px 20px;
  transform: none;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: normal;
  word-wrap: break-word;
}

.bottom-header__submenu.third-level .bottom-header__submenu-item a {
  display: block;
  color: inherit;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
}

.bottom-header__submenu.third-level .bottom-header__submenu-item:hover,
.bottom-header__submenu.third-level .bottom-header__submenu-item a:hover {
  color: #2E6489;
}

.bottom-header__submenu-item.has-submenu:has(.third-level) > a::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('/netcat_template/template/domains/assets/images/arrowRight.svg') no-repeat center;
  background-size: contain;
  margin-left: 8px;
  opacity: 0.6;
  vertical-align: middle;
}

.burger-menu {
  align-items: end;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.burger-menu span:nth-child(2) {
  width: 20px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

.burger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #212121;
  border-radius: 3px;
  transition: 0.3s;
}

.mobile-header__second-row {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #D1EEEA;
}

.mobile-telephone {
  font-weight: 800;
  font-size: 18px;
  color: #2E6489;
  text-decoration: none;
}

.mobile-social {
  display: flex;
  gap: 5px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-social .social-link {
  width: 40px;
  height: 40px;
}

.mobile-logo {
  display: none;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  margin: 0px 10px;
  border-bottom: 1px solid #D1EEEA;
}

.close-menu {
  font-size: 40px;
  background: none;
  border: none;
  color: #2E6489;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu__content {
  padding: 0px 10px;
  padding-bottom: 20px;
}

.mobile-menu__location {
  width: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  padding: 15px;
  background: #ECF1F4;
  border-radius: 12px;
}

.mobile-menu__location img {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  padding: 20px 0px;
  border-bottom: 1px solid #D1EEEA;
}

.mobile-nav__section {
  margin-bottom: 30px;
}

.mobile-nav__section>a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-submenu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
}

.mobile-submenu__header p,
.mobile-submenu__header a {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.mobile-submenu__header span {
  font-size: 16px;
  font-weight: 500;
}

.mobile-submenu__header img,
.mobile-submenu__nested-header img {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mobile-submenu__content {
  display: none;
  margin-top: 20px;
  padding-left: 10px;
}

.mobile-submenu__content.is-open {
  display: block;
}

.mobile-submenu__content a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  text-decoration: none;
}

.mobile-submenu__content a:last-of-type {
  margin-bottom: 0px;
}

.mobile-submenu__nested {
  margin-bottom: 10px;
}

.mobile-submenu__nested:last-child {
  margin-bottom: 0;
}

.mobile-submenu__nested-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  cursor: pointer;
}

.mobile-submenu__nested-header a {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.mobile-submenu__nested-header:has(+ .mobile-submenu__nested-content:empty) img {
  display: none;
}

.mobile-submenu__nested-content {
  display: none;
  padding-left: 15px;
}

.mobile-submenu__nested-content.is-open {
  display: block;
}

.mobile-submenu__nested-content a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  text-decoration: none;
}

.mobile-submenu__nested-content a:last-of-type {
  margin-bottom: 0;
}

.mobile-menu__btn {
  width: 100%;
  padding: 18px;
  margin-top: 30px;
}

.mobile-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.mobile-nav__link:last-of-type {
  padding-bottom: 20px;
  border-bottom: 1px solid #D1EEEA;
}

.mobile-search {
  border-bottom: 1px solid #D1EEEA;
}

.mobile-search input {
  width: 100%;
  padding: 14px 16px;
  padding-left: 35px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid #DBE1DD;
  margin: 20px 0;
  background-image: url(../images/searchIconBlack.svg);
  background-repeat: no-repeat;
  background-position: 10px center;
}

.mobile-search input::placeholder {
  color: #212121;
}

.mobile-search input:focus {
  background-image: none;
}

.mobile-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px;
}

.mobile-footer__btn {
  width: 100%;
  padding: 18px 30px;
  background: #2E6489;
  color: #fff;
  font-size: 18px;
  border-radius: 12px;
  border: none;
}

.breadcrumbs-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #D1EEEA;
  max-width: 1500px;
  margin: 75px auto 0px auto;
}

.breadcrumbs-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumbs-wrapper::-webkit-scrollbar {
  display: none;
}

.breadcrumbs {
  align-items: center;
  font-size: 15px;
  padding: 20px 0px;
  padding-bottom: 0px;
  display: flex;
  flex-wrap: nowrap;
  min-width: min-content;
  white-space: nowrap;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #2E6489;
}

.breadcrumbs .separator {
  margin: 0 13px;
}

.breadcrumbs .separator img {
  height: 11px;
  width: 10px;
}

.promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.promo__image {
  background-color: #2E6489;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}

.promo__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgroundPromo.webp);
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 1;
}

.promo__image>* {
  position: relative;
  z-index: 2;
}

.promo__image img {
  display: unset;
  bottom: -350px;
  right: -55px;
  width: 79%;
  position: absolute;
}

.promo__about-image {
  border-radius: 40px;
}

.promo__about-image img {
  max-height: 640px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
}

.promo__text {
  background-color: #ECF1F4;
  padding: 40px;
  box-sizing: border-box;
  word-wrap: break-word;
  border-radius: 40px;
}

.promo__about-text {
  padding: 0px 40px;
  box-sizing: border-box;
  word-wrap: break-word;
  border-radius: 40px;
}

.promo__content-list,
.promo__service-text ol,
.promo__service-subtext--down ol,
.article__subtext ol {
  margin-top: 5px;
  margin-bottom: 20px;
  padding-left: 26px;
}

.promo__content-list li:not(:last-child),
.promo__service-text ol li:not(:last-child),
.promo__service-subtext--down ol li:not(:last-child),
.article__subtext ol li:not(:last-child) {
  margin-bottom: 5px;
}

.promo__content-list li a,
.promo__service-text ol li a,
.promo__service-subtext--down ol li a,
.article__subtext ol li a,
.article__literature-list ol li a {
  text-decoration: underline;
}

.promo__content-list li a:hover,
.promo__service-text ol li a:hover,
.promo__service-subtext--down ol li a:hover,
.article__subtext ol li a:hover,
.article__literature-list ol li a:hover {
  color: #3B738F;
}

.article__content-list {
  margin-top: 20px;
  margin-bottom: 0px;
  padding-left: 26px;
}

.article__content-list li:not(:last-child) {
  margin-bottom: 5px;
}

.text--colored {
  color: #3B738F;
}

.promo__subtext {
  line-height: 24px;
  color: #1E2A32;
  font-size: 16px;
  margin-top: 40px;
}

.promo__subtext p:not(:last-child) {
  margin-bottom: 15px;
}

.promo__free-consultation {
  max-width: 360px;
  margin-top: 40px;
}

.promo__image-utp-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: 105px;
  left: 40px;
}

.promo__image-utp {
  backdrop-filter: blur(25px);
  width: fit-content;
  position: relative;
  box-sizing: border-box;
  border-radius: 10px;
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 10px 31px;

}

.promo__image-utp::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 10px;
  background-color: #FFF;
  border-radius: 50%;
  width: 11px;
  height: 11px;
}

.circle-1 {
  top: -10px;
  left: 97px;
  position: absolute;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
}

.circle-1::before,
.circle-2::before,
.circle-3::before,
.how__card-circle-1::before,
.how__card-circle-2::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 0;
  backdrop-filter: blur(50px);
  mask: linear-gradient(to bottom,
          rgba(0, 0, 0, 0.2) 10%,
          rgba(0, 0, 0, .9) 15%,
          rgba(0, 0, 0, .9) 15%,
          rgba(0, 0, 0, 1) 100%);
}

.circle-2 {
  top: 41px;
  right: 36px;
  position: absolute;
  width: 154px;
  height: 154px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.circle-3 {
  left: 221px;
  bottom: 208px;
  position: absolute;
  width: 234px;
  height: 234px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.price__table {
  margin: 40px auto;
}

.prices__block--page .prices__head p {
  margin-top: 20px;
  max-width: 965px;
}

.prices__payment-methods {
  background-color: #2A5674;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  padding: 40px;
  border-radius: 20px;
}

.prices__payment-methods span {
  font-size: 20px;
}

.prices__payment-icons {
  display: flex;
  gap: 5px;
}

.prices__payment-icon {
  font-size: 14px;
  align-content: center;
  text-align: center;
  border-radius: 12px;
  width: 105px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
}

.prices__payment-icon img {
  margin: 0 auto;
}

.price__table-header {
  display: grid;
  font-size: 16px;
  grid-template-columns: 1fr 0px 487px;
  background: #ECF1F4;
  padding: 30px;
  border-radius: 15px;
}

.price__table-content {
  margin-top: 10px;
  padding: 40px;
  border: 1px solid #A8DBD9;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.price__table-row {
  display: grid;
  grid-template-columns: 1fr 286px 192px;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid #e3f1f3;
}

.price__table-row a:hover {
  color: #2A5674;
}

.price__table-row:first-child {
  padding-top: 0;
}

.price__table-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.price__table-price {
  background: #ECF1F4;
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
}

.price__table-btn {
  padding: 20px 43px;
}

.how__block {
  display: flex;
  gap: 127px;
}

.how__head h2 {
  font-weight: 500;
  margin-bottom: 40px;
}

.how__head p {
  width: 380px;
}

.how__content {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.how__card {
  position: relative;
  border-radius: 20px;
  padding: 40px;
  z-index: 1;
  overflow: hidden;
}

.how__card--light {
  background-color: #ECF1F4;
}

.how__card--dark {
  background-color: #2A5674;
  color: #FFF;
}

.how__card-circle-1 {
  top: 58px;
  left: 45px;
  position: absolute;
  width: 154px;
  height: 154px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.how__card-circle-2 {
  bottom: 11px;
  right: 55px;
  position: absolute;
  width: 193px;
  height: 193px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.how__card-bg-image {
  width: 1760px;
  opacity: 5%;
  top: 0px;
  left: 0px;
  object-fit: contain;
  object-position: left;
  position: absolute;
  z-index: 1;
}

.how__card-header {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.how__card-text {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.advantages__block {
  overflow: hidden;
  position: relative;
  background-color: #2A5674;
  color: #FFF;
  border-radius: 40px;
  padding: 150px 0px;
}

.advantage__circle-1 {
  top: 30%;
  left: 65px;
  position: absolute;
  width: 377px;
  height: 377px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.advantage__circle-2 {
  top: 120px;
  right: 149px;
  position: absolute;
  width: 508px;
  height: 508px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.advantage__circle-3 {
  bottom: -37%;
  right: 426px;
  position: absolute;
  width: 817px;
  height: 817px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.advantages-offset {
  position: relative;
  z-index: 2;
  padding: 0px !important;
}

.advantages__head {
  padding: 0px 135px;
  margin-bottom: 50px;
}

.advantages__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.advantage {
  align-content: center;
  text-align: center;
}

.advantage img {
  margin: 0 auto;
}

.advantage__head {
  margin: 20px 0px;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -1px;
}

.advantage__text {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.consequences__head h2 {
  max-width: 987px;
}

.consequences__head p {
  margin-top: 20px;
  max-width: 930px;
}

.consequences__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.consequences__card {
  border-radius: 20px;
  border: 1px solid #2A5674;
  padding: 30px 20px;
}

.consequences__percent {
  font-weight: 700;
  font-size: 50px;
  letter-spacing: -2px;
  color: #2A5674;
}

.consequences__text {
  margin: 0;
  margin-top: 13px;
}

.arrive__block {
  display: flex;
  gap: 60px;
}

.arrive__head h2 {
  margin-bottom: 40px;
}

.arrive__head p {
  font-size: 16px;
  margin-bottom: 10px;
}

.arrive__head {
  flex: 0 1 672px
}

.arrive__image {
  flex: 0 1 750px;
  max-width: 750px;
}

.arrive__image img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  max-height: 640px;
  height: 100%;
  border-radius: 20px;
}

.arrive__free-consultation {
  max-width: 360px;
  margin-top: 50px;
}

.problems__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 20px;
}

.problem__card {
  display: flex;
  gap: 30px;
  background-color: #ECF1F4;
  border-radius: 20px;
  padding: 40px;
}

.problem__card img {
  max-width: 250px;
  max-height: 250px;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.problem__card-text-header {
  margin: 0;
  margin-bottom: 20px;
  color: #2A5674;
  font-weight: 700;
  font-size: 25px;
}

.problem__card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem__card-text p {
  margin: 0;
}

.quote {
  background-color: #ECF1F4;
  position: relative;
}

.quote-block {
  position: relative;
  padding: 150px 0px;
  z-index: 2;
}

.quote-content {
  border-radius: 20px;
  background-color: #FFF;
  padding: 40px;
  display: flex;
  gap: 60px;
}

.quote-text-content {
  align-self: center;
}

.quote-text {
  margin: 40px 0px;
}

.quote-author {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  margin-bottom: 10px;

}

.quote-content img {
  height: 360px;
  width: 360px;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.quote-bg-image {
  z-index: 1;
  position: absolute;
  object-fit: cover;
  height: 100%;
  width: 100%;
  opacity: 20%;
}

.doctors__swiper {
  width: 100%;
  max-height: 540px;
  height: 100%;
}

.doctors__swiper .swiper-slide img {
  border-radius: 20px;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.doctor__name {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #2A5674;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
}

.doctors__more {
  width: 100%;
  margin-top: 30px;
}

.doctor__position {
  margin-top: 10px;
  font-size: 16px;
}

.doctors__head,
.articles__head {
  margin-bottom: 50px;
      display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.doctors__subhead,
.articles__subhead {
  display: flex;
  justify-content: space-between;
}

.doctors__subhead p,
.articles__subhead p {
  margin-top: 20px;
  max-width: 965px;
  margin-bottom: 0px;
}

.doctors__navigation,
.articles__navigation {
  justify-content: end;
  width: 272px;
  height: 58px;
  display: flex;
  gap: 10px;
}

.all-doctors__btn,
.all-articles__btn {
  width: 126px;
  margin-right: 10px;
}

.doctors__button,
.articles__button {
  width: 58px !important;
  height: 58px !important;
  border-radius: 12px;
  background-color: #3B738F;
  border: 1px solid #3B738F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.doctors__button:hover,
.articles__button:hover {
  background-color: #ECF1F4;
}

.doctors__button:hover svg path,
.articles__button:hover svg path {
  fill: #3B738F;
}

.doctors__block--page .doctors__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.doctors__block--page .swiper-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctors__block--page .swiper-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
}

.doctors__block--page .swiper-slide .doctor__position {
  margin: 0px;
}

.doctors__block--page .doctors__subhead p {
  max-width: 1026px;
}

.articles__swiper {
  width: 100%;
  max-height: 476px;
  height: 100%;
}

.articles__swiper .swiper-slide img {
  border-radius: 20px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.article__image {
  position: relative;
}

.article__image a {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.article__name {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  color: #2A5674;
}

.article__name:hover {
  text-decoration: underline;
}

.article__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
}

.articles__button--light {
  width: 58px !important;
  height: 58px !important;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  background-color: #ECF1F4;
}

.articles__button--light:hover {
  background-color: #3B738F;
}

.articles__button--light:hover svg path {
  fill: #ECF1F4;
}

.articles__block--page .articles__content {
  display: grid;
  gap: 20px;
  row-gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
}

.article__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}

.article__card .article__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.article__card .article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.article__card .article__image a {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.article__card .article__name {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  color: #2A5674;
  text-decoration: none;
}

.article__card .article__name:hover {
  text-decoration: underline;
}

.article__card .article__text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  flex-grow: 1;
}

.articles__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.article__pagination-btn {
  padding: 0px;
  gap: 10px;
  background-color: transparent;
  color: #424242;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.pagination-pages {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-btn {
  width: 61px;
  height: 61px;
  border-radius: 12px;
  background-color: #ECF1F4;
  border: 1px solid #ECF1F4;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background-color: #FFF;
  border: 1px solid #2E6489;

}

.page-btn.active {
  background-color: #2E6489;
  color: white;
  cursor: default;
}

.license__swiper {
  width: 100%;
  max-height: 512px;
  height: 100%;
}

.license__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.license__swiper .swiper-slide img,
.license__content--page img {
  border-radius: 20px;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.licenses__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.licenses__navigation {
  display: flex;
  gap: 10px;
}

.license__button {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background-color: #3B738F;
  border: 1px solid #3B738F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.license__button:hover {
  background-color: #ECF1F4;
}

.license__button:hover svg path {
  fill: #3B738F;
}

.license__content--page {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #e6f2f7;
  user-select: none;
  text-align: left;
}

.custom-checkbox input {
  display: none;
}

.checkmark {
  border: 1px solid #DBE1DD;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}

.custom-checkbox input:checked+.checkmark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15'><path d='M1.5 7.14706L7.65385 13.5L17.5 1.5' stroke='%23212121' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center / 18px 14px no-repeat;
}

.text {
  color: #FFF;
  font-size: 14px;
}

.text a {
  color: #FFF;
  text-decoration: underline;
}

.text a:hover {
  color: #A8DBD9;
}

.banner__consult-form-telephone {
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 16px;
  width: 100%;
  border: none;
}

.banner__consult-content {
  justify-content: space-between;
  display: flex;
}

.banner__consult-form-block {
  max-width: 447px;
  width: auto;
  position: relative;
  z-index: 2;
}

.banner__consult-form button {
  margin: 20px 0px;
}

.background-banner__consult-image {
  height: 285%;
  left: 50%;
  width: 100%;
  top: 0px;
  object-fit: cover;
  z-index: 1;
  position: absolute;
  opacity: 5%;
}

.banner,
.banner__consult {
  position: relative;
  margin-bottom: 75px;
  background-color: #2A5674;
  padding: 80px 40px;
  border-radius: 20px;
  overflow: hidden;
}

.background-banner {
  z-index: 1;
  top: 0;
  left: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.05;
}

.banner__doctor-image {
  z-index: 3;
  position: absolute;
  top: -25px;
  height: 170%;
  right: 40px;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .banner__doctor-image {
      height: 107%;
  }

  .promotion-card {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      align-items: unset;
  }

  .promotion-card img {
      max-width: 260px;
      max-height: 260px;
  }

  .promotion-card-header {
      font-size: 25px;
      line-height: 25px;
      letter-spacing: -1px;
  }

  .promotion-card-subheader {
      font-size: 16px;
      margin-bottom: 40px;
  }
}

.banner__text {
  color: #FFF;
  z-index: 3;
  max-width: 660px;
  position: relative;
}

.banner__text p {
  margin-top: 20px;
}

.banner__button {
  margin-top: 50px;
  max-width: 447px;
  width: 100%;
  padding: 18px 24px;
  background-color: #3B738F;
  color: #FFF;
}

.photo__grid {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 20px;
}

.photo__block--page .photo__head {
  text-align: left;
}

.clinic-photo {
  max-height: 300px;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  width: 100%;
}

.photo__head {
  text-align: center;
  margin-bottom: 40px;
}

.all-photo__button {
  margin: 0 auto;
  max-width: 360px;
  margin-top: 50px;
}

.hospital__classes {
  margin: 30px 0px;
  cursor: pointer;
  display: grid;
  text-align: center;
  border-radius: 20px;
  grid-template-columns: repeat(3, 1fr);
  background-color: #ECF1F4;
  letter-spacing: -1px;
  font-size: 25px;
  font-weight: 700;
}

.hospital__class.active:nth-child(1) {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.hospital__class.active:nth-child(3) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.hospital__class:nth-child(2) {
  border-left: 1px solid #2A5674;
  border-right: 1px solid #2A5674;
}

.hospital__class {
  transition: .3 all;
  padding: 25px 0px;
}

.hospital__class.active {
  background-color: #2A5674;
  color: #FFF;
}

.hospital__info {
  display: none;

}

.hospital__info.active {
  display: flex;
  gap: 60px;
}

.hospital__photos {
  position: relative;
  max-width: 750px;
  flex: 0 1 auto;
}

.hospital__photos img {
  object-fit: cover;
  width: 750px;
  border-radius: 20px;
  height: 502px;
}

.hospital__swiper {
  position: relative;
  width: 100%;
  height: 100%;
}


.swiper-nav-buttons {
  position: absolute;
  bottom: 55px;
  left: 50%;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
  width: 58px !important;
  height: 58px !important;
  background: #ECF1F4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.swiper-button-prev svg,
.swiper-button-next svg {
  height: 18px !important;
}

.hospital__name {
  font-weight: 500;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -2px;
  margin-bottom: 40px;
}

.hospital__description {
  margin-bottom: 10px;
  color: #2A5674;
  font-weight: 700;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: -1px;
}

.hospital__price {
  font-weight: 700;
  font-size: 45px;
  line-height: 45px;
  letter-spacing: -1px;
  margin-bottom: 0px;
}

.hospital__price--value {
  font-size: 25px;
}

.hospital__options {
  max-width: 493px;
  padding: 0 21px;
  margin-top: 30px;
}

.hospital__options li {
  font-size: 20px;
  margin-top: 10px;
  line-height: 24px;
  letter-spacing: 0%;
}

.hospital__options li::marker {
  color: #3B738F;
}

.hospital__text {
  max-width: 690px;
  flex: 0 1 auto;
}

.reviews__head {
  display: flex;
  justify-content: space-between;
}

.reviews__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.review__card {
  border-radius: 20px;
  background-color: #ECF1F4;
  padding: 40px;
}

.review__card-head {
  align-items: center;
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.review__card-avatar {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.review__card-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.modal .review__card-stars {
  display: none;
}

.review__card-stars {
  gap: 3px;
  display: flex;
  max-height: 19px;
}

.review__card-header p {
  margin: 0;
}

.review__card-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  color: #2A5674;
}

.review__card-text {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.show-full-review__text {
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
}

.show-full-review__text::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #212121;
  transition: width 0.2s ease;
}

.show-full-review__text:hover::after {
  width: 100%;
}

.reviews__block--page .reviews__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.reviews__block--page .reviews__content .review__card-text {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

.full-review__text p:not(:last-child) {
  margin-bottom: 20px;
}

.faq {
  margin-top: 40px;
}

.faq__head {
  max-width: 1026px;
}

.faq__head p,
.prices__head p {
  margin-top: 20px;
  max-width: 965px;
  margin-bottom: 0px;
}

.faq__block--page h2 {
  padding-bottom: 20px;
}

.faq__item {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  transition: .2s all;
}

.faq__question {
  background: #3B738F;
  color: #fff;
  padding: 10px 10px 10px 40px;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  justify-content: space-between;
  font-weight: 700;
  align-items: center;
}

.faq__question:hover {
  background-color: #2A5674;
}

.faq__question .faq__arrow svg {
  transition: transform .3s;
  display: block;
  margin: 0 auto;
}

.faq__question .faq__arrow {
  transition: .3s all;
}

.faq__answer {
  transition: .3s all;
  display: none;
  background: #fff;
  padding: 0px 113px 20px 40px;
  font-size: 16px;
}

.faq__answer p {
  margin: 0;
  margin-bottom: 10px;
}

.faq__item.active .faq__answer {
  display: block;
}

.faq__item.active {
  border: 1px solid #2E6489
}

.faq__item.active .faq__question {
  background-color: white;
  color: #212121;
}

.faq__item.active .faq__question .faq__arrow svg {
  transform: rotate(180deg);
}

.faq__item.active .faq__question .faq__arrow svg path {
  fill: white;
}

.faq__item.active .faq__question .faq__arrow {
  background-color: #2E6489;
}

.faq__arrow-box {
  width: 70px;
}

.faq__arrow {
  margin-left: auto;
  display: block;
  transition: transform .3s;
  border-radius: 12px;
  width: 58px;
  height: 58px;
  background-color: #ECF1F4;
  text-align: center;
  align-items: center;
  align-content: center;
}

footer {
  background-color: #2A5674;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer__top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
}

.footer__contacts {
  align-items: center;
  display: flex;
  gap: 5px;
}

.footer__btn {
  background-color: #3B738F;
  color: #FFF;
  padding: 18px 25px;
}

.footer__btn:hover {
  background-color: #FFF;
  color: #1E2A32;
}

.footer__telephone {
  margin-right: 15px;
  font-weight: 800;
  font-size: 25px;
  color: #FFF;
}

.footer__services-menu {
  color: #FFF;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__service-column p {
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
}

.unique-footer-link {
  display: block;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}


.footer__service-column ul {
  font-size: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__service-column li {
  margin-bottom: 10px;
}

.footer__service-column li a {
  color: #FFF;
}

.footer__service-column li.expand {
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
}

.footer__service-column li.expand:hover {
  text-decoration: underline;
}

.footer__service-column ul li.more-items {
  display: none;
}

.footer__service-column ul.expanded li.more-items {
  display: list-item;
}

.footer__information {
  padding: 30px 0px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer__information-grid {
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  display: flex;
}

.footer__address p {
  font-size: 16px;
  color: #FFF;
  margin: 0;
  margin-bottom: 5px;
}

.footer__address a {
  text-decoration: underline;
  color: #FFF;
}

.footer__payment p {
  margin-top: 0;
}

.footer__payment {
  color: #FFF;
  font-size: 16px;
}

.footer__payment-icons {
  margin-top: 15px;
  display: flex;
  gap: 5px;
}

.footer__payment-icon {
  align-content: center;
  text-align: center;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer__payment-icon img {
  margin: 0 auto;
  display: block;
}

.footer__input {
  background-image: url("../images/searchIcon.svg");
  background-repeat: no-repeat;
  background-position: 10px center;
  width: 100%;
  font-size: 14px;
  padding: 13px 35px;
  background-color: transparent;
  color: #FFF;
  border-radius: 12px;
  border: 1px solid #FFFFFF;
  margin-bottom: 20px;
}

.footer__input::placeholder {
  color: #FFF;
}

.footer__input:focus {
  background-image: none;
}

.footer__additional-options {
  max-width: 384px;
  width: 100%;
}

.footer__additional-buttons {
  gap: 30px;
  display: flex;
}

.footer__additional-button {
  display: flex;
  align-items: center;
}

.footer__additional-button a {
  color: #FFF;
  font-size: 14px;
  margin-left: 15px;
  text-decoration: underline;
  cursor: pointer;
}

.footer__end {
  font-size: 14px;
  color: #FFF;
  display: flex;
  justify-content: space-between;
}

.footer__docs {
  text-decoration: underline;
  display: flex;
  gap: 20px;
}

.footer__docs a {
  color: #FFF;
}

.advantages__mobile {
  display: none;
}

.problems__mobile {
  display: none;
}

.consequences__mobile {
  display: none;
}

.all-promo__text {
  display: none;
}

.all-arrive__text {
  display: none;
}

.mobile-select {
  display: none;
}

.articles__navigation.mobile,
.doctors__navigation.mobile {
  display: none;
}

.photo__mobile {
  display: none;
}

.footer__top-mobile {
  display: none;
}

.footer__mobile-accordion {
  display: none;
}

.contacts-block--page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contacts-head {
  gap: 40px;
  flex-direction: column;
  display: flex;
  max-width: 690px;
}

.contacts-info-block {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  row-gap: 40px;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-info-label {
  font-weight: 500;
  font-size: 25px;
  line-height: 35px;
  letter-spacing: -1px;
}

.contacts-info-value {
  font-size: 20px;
  line-height: 24px;
}

.contacts-info-value a {
  font-size: 20px;
  line-height: 24px;
}

.contacts-info-value a:hover {
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  gap: 5px;
}

.contact-socials .social-link {
  height: 61px;
  width: 61px;
}

.contacts-form-block {
  border-radius: 20px;
  background-color: #ECF1F4;
  padding: 40px;
}

.contacts-form-block h1 {
  margin-bottom: 20px;
}

.contacts-form-block p {
  margin-bottom: 50px;
}

.contacts-form-block .text {
  color: #212121;
}

.contacts-form-block .text a {
  color: #212121;
}

.contacts-form-block input,
.contacts-form-block textarea {
  border: none;
}

#contactsMap {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 500px;
}

.promo__service-image {
  border-radius: 40px;
}

.promo__service-image img {
  max-height: 640px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
}

.promo__service-price-block {
  margin-top: 40px;
  width: fit-content;
  font-size: 18px;
  border-radius: 12px;
  background-color: #ECF1F4;
  padding: 20px;
}

.promo__service-price {
  margin-top: 10px;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #2A5674;
}

.service-right-text-block,
.service-left-text-block {
  gap: 0px;
}

.service-right-text-block .promo__service-text {
  padding-left: 60px;
}

.promo__service-text h2 {
  margin-bottom: 40px;
}

.service-left-text-block .promo__service-text {
  padding-right: 60px;
}

.promo__service-subtext {
  line-height: 24px;
  color: #1E2A32;
  font-size: 16px;
}

.promo__service-subtext p:not(:last-child) {
  margin-bottom: 10px;
}

.promo__service-subtext--down {
  line-height: 24px;
  color: #1E2A32;
  font-size: 16px;
  margin-top: 14px;
}

.promo__service-subtext--down h2 {
  margin-bottom: 20px;
}

.promo__service-subtext--down p:not(:last-child) {
  margin-bottom: 20px;
}

.support-head {
  margin: 0 auto;
  max-width: 907px;
  margin-bottom: 40px;
}

.support-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  overflow: hidden;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 20px;
}

.support-card-header {
  font-size: 30px;
  letter-spacing: -1px;
}

.support-card--light {
  background-color: #ECF1F4;
}

.support-card--dark {
  color: #FFF;
  background-color: #2A5674;
}

.support-card--light .support-card-header {
  color: #2A5674;
}

.support-card-text {
  text-align: center;
  font-size: 18px;
}

.page-content-block {
  padding: 40px;
  background-color: #ECF1F4;
  border-radius: 20px;
}

.page-content-header {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.page-content-list {
  padding-left: 18px;
  color: #3B738F;
  font-size: 16px;
  line-height: 24px;
}

.page-content-list li a {
  color: #3B738F;
}

.page-content-list li a:hover {
  text-decoration: underline;
}

.page-content-list li::marker {
  height: 5px;
  width: 5px;
}

.banner__not-asking-text {
  color: white;
  max-width: 857px;
}

.banner__not-asking-text p {
  font-size: 20px;
}

.banner__not-asking-text p:not(:last-child) {
  margin-bottom: 20px;
}

.banner__not-asking-head {
  margin-bottom: 40px;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.promotion-head {
  max-width: 946px;
}

.promotion-head p {
  margin-top: 20px;
  margin-bottom: 40px;
}

.promotion-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  border-radius: 20px;
  background-color: #ECF1F4;
  align-items: center;
}

.promotion-card img {
  border-radius: 10px;
  max-width: 280px;
  max-height: 280px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promotion-card-header {
  color: #2A5674;
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.promotion-card-subheader {
  font-size: 18px;
  margin-bottom: 74px;
}

.article__section .page-content-block {
  margin-bottom: 30px;
}


.article__section p:not(:first-child) {
  font-size: 16px;
  margin-top: 20px;
}

.article__two-photo img {
  object-position: top;
  max-height: 486px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin: 20px 0px;
}

.article__two-photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.article__subtext {
  line-height: 24px;
  font-size: 16px;
}

.sitemap {
  margin-top: 40px;
  column-count: 3;
  column-gap: 40px;
  height: 1500px;
  column-fill: auto;
}

.sitemap-group {
  break-inside: auto !important;
  page-break-inside: auto !important;
  -webkit-column-break-inside: auto !important;
}

.sitemap-group h3 {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  color: #2E6489;
}

.sitemap-group ul {
  list-style: none;
  padding: 0;
}

.sitemap-group:not(:last-child) {
  margin-bottom: 40px;
}

.sitemap-group li {
  position: relative;
}

.sitemap-group li:not(:last-child) {
  margin-bottom: 12px;
}


.sitemap-group a {
  font-size: 16px;
}

.sitemap-group h3 a {
  font-size: unset;
  color: #2E6489;
}

.sitemap-group a:hover {
  color: #2E6489;
}

.sitemap-menu {
  display: flex;
  gap: 100px;
  padding: 40px 0px;
  border-bottom: 1px solid #DBE1DD;
}

.sitemap-menu a {
  font-weight: 700;
  font-size: 20px;
}

.sitemap-group .sub-level {
  margin-left: 15px;
  margin-top: 15px;
}

.not-found-top {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-bottom: 40px;
}

.not-found-number {
  text-align: end;
  font-weight: 700;
  font-size: 250px;
  line-height: 200px;
  letter-spacing: -20px;
  color: #2E6489;
}

.not-found-top-content {
  max-width: 396px;
}

.not-found-top-content h4 {
  font-weight: 500;
  font-size: 35px;
  line-height: 55px;
  letter-spacing: -2px;
  margin: 0px;
  margin-bottom: 10px;
}

.not-found-top-content p {
  color: #424242;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 18px;
}

.not-found-top-content a {
  box-sizing: border-box;
  max-width: 324px;
}

.not-found-separator {
  border: 1px solid #D1EEEA;
  margin: 20px auto;
  max-width: 905px;
}

.not-found-button {
  padding: 17px 40px;
}

.not-found-bottom p {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.not-found-bottom-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 784px;
  justify-content: center;
  margin: 0px auto;
}

.article__header {
  margin-bottom: 30px;
}

.article__section h2,
.article__section h3,
.article__section h4 {
  margin-top: 50px;
  margin-bottom: 30px;
}

.doctor__page-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.doctor__page-info--left {
  flex: 0 0 360px;
  max-width: 360px;
}

.doctor__page-info--right {
  flex: 1;
  min-width: 0;
}

.doctor__page-info--left img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: top;
}

.doctor__page-work-info {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  padding: 20px 40px;
  border: 1px solid #ECF1F4;
  border-radius: 20px;
}

.doctor__info-text-block {
  margin-top: 40px;
}

.doctor__info-text-block-header {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -1px;
  color: #2A5674;
}

.doctor__info-text {
  font-size: 18px;
  margin-top: 20px;
}

.doctor__info-text-block p {
  font-size: 18px;
  margin-top: 20px;
}

.doctor__page-info-name--mobile {
  display: none;
}

.quote-article {
  margin: 30px 0px;
  border: 1px solid #2A5674
}

.article__table-wrapper {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #1f4e6d;
  background: #fff;
  position: relative;
}

.custom-scrollbar {
  position: relative;
  width: 100%;
  height: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 10px;
  background: #ECF1F4;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 8px;
}

.custom-scrollbar.visible {
  opacity: 1;
}

.custom-scrollbar__track {
  position: relative;
  top: 6px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
  overflow: visible;
}

.custom-scrollbar__thumb {
  position: absolute;
  top: -3px;
  height: 4px;
  background: #2E6489;
  border-radius: 4px;
  cursor: grab;
  transition: transform 0.1s ease, width 0.2s ease;
  min-width: 40px;
}

.custom-scrollbar__thumb:active {
  cursor: grabbing;
}

.article__table,
.article__table-wrapper table {
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
}

.article__table thead th,
.article__table-wrapper table thead th {
  background: #2A5674;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: -1px;
  border-right: 1px solid #D1EEEA;
  white-space: nowrap;
}

.article__table thead th:last-child,
.article__table-wrapper table thead th:last-child {
  border-right: none;
}

.article__table tbody td,
.article__table-wrapper table tbody td {
  font-size: 16px;
  line-height: 24px;
  padding: 20px;
  border-right: 1px solid #D1EEEA;
  vertical-align: top;
}

.article__table tbody tr:nth-child(odd) td,
.article__table-wrapper table tbody tr:nth-child(odd) td {
  background: #ECF1F4;
}

.article__table tbody td:last-child,
.article__table-wrapper table tbody td:last-child {
  border-right: none;
}









table {
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
  border-radius: 20px;
}

table thead th {
  background: #2A5674;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  text-align: left;
  font-weight: 700;
  letter-spacing: -1px;
  border-right: 1px solid #D1EEEA;
  white-space: nowrap;
}

table thead th:last-child {
  border-right: none;
}

table tbody td {
  font-size: 16px;
  line-height: 24px;
  padding: 20px;
  border-right: 1px solid #D1EEEA;
  vertical-align: top;
}

table tbody tr:nth-child(odd) td {
  background: #ECF1F4;
}

table tbody td:last-child {
  border-right: none;
}














.article__literature-list {
  margin-top: 40px;
  background-color: #ECF1F4;
  border-radius: 10px;
  padding: 40px;
}

.review__banner .modal-subhead {
  margin-bottom: 50px;
}

.modal-overlay.open.active {
  display: flex;
}

@media (max-width: 768px) {
  .promo__about-text {
      padding: 0px;
  }

  .full-review__text p:not(:last-child) {
      margin-bottom: 15px;
  }

  .promotions-grid {
      display: flex;
      flex-direction: column;
      gap: 20px
  }

  .promotion-head p {
      margin-top: 20px;
      margin-bottom: 30px;
  }

  .article__table,
  .article__table-wrapper table {
      width: max-content;
  }

  .article__table thead th,
  .article__table tbody td,
  .article__table-wrapper table thead th,
  .article__table-wrapper table tbody td {
      max-width: 500px;
  }





  .review__card-header {
      flex-direction: column;
      gap: 10px;
  }
}

.article__literature-list p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.article__literature-list ol {
  padding-left: 22px;
}

.article__literature-list li {
  padding-left: 3px;
  line-height: 24px;
}

.service__author-block,
.article__author-block {
  margin-top: 40px;
  align-items: center;
  gap: 40px;
  display: flex;
  justify-content: space-between;
}

.service__author-block a,
.article__author-block a {
  display: flex;
  gap: 40px;
  width: fit-content;
  background-color: #ECF1F4;
  border-radius: 10px;
  padding: 40px;
}

.article__author-image {
  flex: 0 0 150px;
}

.article__author-header {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
}

.article__author-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -1px;
  color: #2A5674;
  margin-bottom: 10px;
}

.article__author-position {
  font-size: 16px;
}

.form-grid-article {
  flex-direction: column;
  display: flex;
  align-items: center;
}

.article__author-image img {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.article__banner .banner__text {
  max-width: 670px;
}

.article__banner .banner__content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.article__banner__subhead {
  font-weight: 600;
  margin-bottom: 50px;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -1px;
}

.article__banner__inputs {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-grid-article .btn {
  margin-top: 20px;
  max-width: 325px;
}

.services-grid--page {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card--page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #fff;
  border: 1px solid #A8DBD9;
  border-radius: 20px;
  padding: 40px;
}

.service-left h2 {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.services-count {
  font-size: 18px;
  line-height: 130%;
  display: inline-block;
  padding: 8px 12px;
  background: #ECF1F4;
  border-radius: 4px;
}

.service-right {
  display: flex;
  flex-direction: column;
}

.service-right a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  text-decoration: none;
  border-bottom: 1px solid #C8E9E7;
  font-size: 18px;
}

.service-right a span {
  transition: transform 0.2s ease;
}

.service-right a:hover span {
  transform: rotate(45deg);
}

.service-right a:last-child {
  border-bottom: none;
}

.service-right a:hover {
  color: #2E6489;
}

.scroll-to-top {
  position: fixed;
  bottom: 55px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #3B738F;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.scroll-to-top:hover {
  background: #2980b9;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:active {
  transform: scale(0.95);
}

.search-results {
  position: absolute;
  margin-top: -20px;
  background: #fff;
  border: 1px solid #D1EEEA;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  border-radius: 12px;
}

.search-results::-webkit-scrollbar {
  cursor: grab !important;
  background-color: transparent;
}

.search-results::-webkit-scrollbar {
  cursor: grab !important;
}

.search-results::-webkit-scrollbar-thumb {
  cursor: grab !important;
  background-color: #3B738F;
  border-radius: 10px;
  border: 5px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}

.search-results a {
  border-bottom: 1px solid #D1EEEA;
  display: block;
  margin: 0px 5px;
  padding: 8px 12px;
  text-decoration: none;
}

.search-results a:hover {
  background: #f2f2f2;
}

.search-results a:last-child {
  border-bottom: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none !important;
}

.license__swiper-pagination {
  display: none;
}

.article__pagination-btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.document-text {
  margin-top: 30px;
  font-size: 16px;
}

.document-text ol li {
  margin-bottom: 10px;
}

.text-telephone {
  text-decoration: underline;
}

.promo__about-text .all-promo__text {
  display: none;
}

@media(max-width: 561px) {
  .all-promo__text {
      margin-top: 10px;
      display: block;
      font-weight: 700;
      font-size: 15px;
      line-height: 22px;
      text-decoration: underline;
      color: #1E2A32;
  }
}

@media(max-width: 369px) {
  .promo__about-text .all-promo__text {
      margin-top: 10px;
      display: block;
      font-weight: 700;
      font-size: 15px;
      line-height: 22px;
      text-decoration: underline;
      color: #1E2A32;
  }
}

@media (max-width: 1270px) {
  .header__sections {
      gap: 15px;
  }

  .header__sections a {
      font-size: 1.3vw;
  }

  .header__telephone {
      margin-left: 10px;
  }

  .sitemap-menu {
      gap: 50px;
  }

  .hospital__info.active {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }


  .hospital__name {
      font-size: 30px;
      margin-bottom: 0px;
  }

  .hospital__description {
      margin-bottom: 10px;
      font-size: 18px;
  }

  .hospital__price {
      font-size: 30px;
  }

  .hospital__price--value {
      font-size: 20px;
  }

  .hospital__options {
      margin-top: 10px;
  }

  .hospital__options li {
      font-size: 16px;
  }

  .hospital__photos img {
      width: 100%;
      height: 201px;
  }

  .hospital__classes {
      display: none;
  }

  .hospital__swiper-prev,
  .hospital__swiper-next {
      width: 38px !important;
      height: 38px !important;
  }

  .hospital__swiper-prev svg,
  .hospital__swiper-next svg {
      height: 13px !important;
      width: 18px !important;
  }

  .promo__image img {
      object-fit: contain;
      height: 90%;
      bottom: -245px;
      right: -55px;
      width: 100%;
      position: absolute;
  }

  .promo {
      display: flex;
      flex-direction: column;
  }

  .promo__text {
      padding: 20px;
  }

  .promo__subtext {
      font-size: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 16;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-top: 20px;
  }

  .promo__image {
      position: relative;
      height: 691px;
      text-align: center;
  }

  .promo__image-utp-block {
      top: 20px;
      left: 20px;
      font-size: 15px;
  }

  .promo__image-utp {
      padding: 12px 23px;
  }

  .promo__image-utp::before {
      top: 18px;
      width: 8px;
      height: 8px;
  }

  .promo__image img {
      justify-content: center;
      bottom: -275px;
      object-position: top;
      width: 356px;
      right: 5%;
      height: 100%;
      object-fit: contain;
      position: relative;
  }

  .circle-2 {
      display: none;
  }

  .circle-1::before,
  .circle-2::before,
  .circle-3::before,
  .how__card-circle-1::before,
  .how__card-circle-2::before {
      backdrop-filter: blur(5px);
  }

  .all-arrive__text {
      margin-top: 10px;
      display: block;
      font-weight: 700;
      font-size: 15px;
      line-height: 22px;
      text-decoration: underline;
      color: #1E2A32;
  }

  .review__banner .banner__doctor__image {
      height: 107%;
      right: -150px;
  }

  .problems__grid {
      display: none;
  }

  .advantages__desktop {
      display: none;
  }

}

@media (max-width: 1024px) {

  .consequences__head p,
  .problems__head p,
  .hospital__head p {
      margin-bottom: 20px;
  }

  .breadcrumbs-wrapper {
      width: unset;
      margin: 0 10px;
      margin-top: 39px;
  }

  .breadcrumbs {
      padding: 20px 10px;
  }

  .header__telephone,
  .header__contacts,
  .header__location,
  .bottom-header {
      display: none;
  }

  .burger-menu {
      display: flex;
  }

  .mobile-header__second-row {
      display: flex;
  }

  .mobile-logo {
      display: block;
  }

  .desktop-logo {
      display: none;
  }

  .arrive__block {
      flex-direction: column;
      gap: 30px;
  }

  .arrive__image {
      flex: unset;
  }

  .advantages__mobile {
      display: block;
  }

  .advantages__swiper {
      height: fit-content;
  }

  .advantages__swiper .swiper-pagination {
      position: relative;
      margin-top: 30px;
  }

  .advantages__swiper .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      border: 1px solid#FFF;
      background-color: transparent;
      opacity: 1;
  }

  .advantages__swiper .swiper-pagination-bullet-active {
      background-color: #FFF;
  }

  .how__block {
      flex-direction: column;
      gap: 15px;
  }

  .how__content {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .how__card {
      padding: 20px;
  }

  .how__card-header {
      font-size: 20px;
      line-height: 100%;
      letter-spacing: -1px;

  }

  .how__card-text {
      font-size: 15px;
      line-height: 22px;
  }

  .problems__grid {
      display: none;
  }

  .problems__mobile {
      display: block;
  }

  .problem__button-prev,
  .problem__button-next,
  .consequences__button-prev,
  .consequences__button-next {
      width: 48px !important;
      height: 48px !important;
      border-radius: 12px;
      background-color: #3B738F;
      border: 1px solid #3B738F;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all 0.3s ease;
  }

  .problem__swiper-buttons,
  .consequences__swiper-buttons {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 30px;
      margin-bottom: 40px;
  }

  .problems__swiper .swiper-button-prev:hover,
  .problems__swiper .swiper-button-next:hover {
      background-color: rgba(0, 0, 0, 0.8);
  }

  .problems__swiper .swiper-button-disabled {
      opacity: 0.3;
      cursor: not-allowed;
  }

  .photo__block--page .clinic-photo {
      height: 350px;
      max-height: unset;
  }

  .problem__card {
      padding: 20px;
      flex-direction: column;
      gap: 30px;
  }

  .doctors__block--page .doctors__content {
      display: flex;
      flex-direction: column;
      gap: 30px
  }

  .doctors__block--page .doctors__head {
      margin-bottom: 30px;
  }

  .doctors__block--page .doctor__name {
      margin-top: 20px;
      font-size: 18px;
      margin-bottom: 5px;
  }

  .doctors__block--page .doctor__position {
      font-size: 15px;
  }

  .doctors__block--page .doctors__more {
      margin-top: 20px;
  }

  .doctors__block--page .swiper-slide img {
      height: 100%;
      min-height: 300px;
  }

  .prices__payment-methods span {
      align-self: start;
      font-size: 18px;
  }

  .prices__payment-methods {
      flex-direction: column;
      gap: 15px;
      padding: 20px;
  }

  .prices__payment-icon {
      width: unset;
      height: 65px;
  }

  .prices__payment-icons {
      width: 100%;
      display: grid;
      gap: 5px;
      justify-items: stretch;
      grid-template-columns: repeat(2, 1fr);
  }

  .consequences__grid {
      display: none;
  }

  .consequences__mobile {
      display: block;
      padding-bottom: 40px;
  }

  .consequences__swiper .swiper-pagination {
      bottom: 0;
  }

  .consequences__swiper .swiper-wrapper {
      height: auto;
  }

  .swiper-wrapper {
      height: auto !important;
  }

  .consequences__swiper .swiper-button-prev,
  .consequences__swiper .swiper-button-next {
      width: 40px;
      height: 40px;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      color: white;
      transition: background-color 0.3s ease;
  }

  .consequences__swiper .swiper-button-prev:hover,
  .consequences__swiper .swiper-button-next:hover {
      background-color: rgba(0, 0, 0, 0.8);
  }

  .consequences__swiper .swiper-button-prev {
      left: 10px;
  }

  .consequences__swiper .swiper-button-next {
      right: 10px;
  }

  .consequences__swiper .swiper-button-disabled {
      opacity: 0.3;
      cursor: not-allowed;
  }

  .photo__block .photo__grid {
      display: none;
  }

  .photo__mobile {
      display: block;
  }

  .photo__swiper .swiper-slide {
      height: auto;
  }

  .photo__swiper-pagination {
      display: block;
      margin-top: 30px;
      text-align: center;
  }

  .photo__swiper-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background-color: #FFF;
      opacity: 1;
  }

  .photo__swiper-pagination .swiper-pagination-bullet-active {
      background-color: #2E6489;
  }

  .reviews__content {
      display: flex;
      flex-direction: column;
  }

  .review__card {
      padding: 20px;
  }

  .reviews__block--page .reviews__content {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .header__sections,
  .header__contacts .btn {
      display: none;
  }

  .header__telephone {
      font-size: 20px;
      margin-left: 20px;
  }

  .footer__information-grid {
      gap: 30px;
      flex-direction: column;
      display: flex;
  }

  .footer__top {
      flex-direction: column;
  }

  .footer__top img {
      width: fit-content;
  }
  .popup.city form.search__form {
    max-width: 100%;
  }
}

@media (max-width: 988px) {
  .banner__content {
      position: relative;
      flex-direction: column;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .banner__button {
      max-width: unset;
      width: 100%;
  }

  .banner-offset {
      padding-left: 0px;
      padding-right: 0px;
  }

  .banner__doctor-image {
      position: relative;
      top: 36px;
      object-position: top;
      left: 0;
      height: auto;
      width: 353px;
      object-fit: cover;
      z-index: 1;
  }

  .banner {
      height: 845px;
      padding: 40px 10px;
  }
}

@media (max-width: 768px) {
  .scroll-to-top {
      height: 38px;
      width: 38px;
      left: 10px;
  }

  .article__author-block a {
      flex-direction: column;
      gap: 20px;
  }

  .doctor__page-info-name--desktop {
      display: none;
  }

  .service-card--page {
      display: flex;
      border: none;
      flex-direction: column;
      padding: 0px;
  }

  .service-left h2 {
      font-size: 21px;
      line-height: 26px;
      letter-spacing: -1px;
  }

  .services-count {
      display: none;
  }

  .service-right {
      display: flex;
      flex-direction: column;
  }

  .service-right a {
      padding: 0px;
      margin-top: 8px;
      border: none;
      font-size: 16px;
  }

  .service-right a span {
      display: none;
  }

  .doctor__page-content {
      flex-direction: column;
      gap: unset;
  }

  .doctor__page-info-name--mobile {
      margin-top: 20px;
      display: block;
  }

  .doctor__page-info--right h1 {
      display: none;
  }

  .doctor__page-info--left {
      flex: unset;
      max-width: unset;
  }

  .doctor__page-info--right {
      flex: 1;
      min-width: 0;
  }

  .doctor__page-info--left img {
      height: 100%;
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      object-position: top;
  }

  .doctor__page-work-info {
      margin-top: 20px;
      margin-bottom: 20px;
      gap: 5px;
      font-size: 18px;
      padding: 20px;
  }

  .doctor__info-text-block {
      margin-top: 30px;
  }

  .doctor__info-text-block-header {
      font-size: 20px;
  }

  .doctor__info-text-block p {
      font-size: 16px;
      line-height: 24px;
  }

  .not-found-top {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding-bottom: 30px;
  }

  .not-found-number {
      font-size: 175px;
      line-height: 100px;
      letter-spacing: -15px;
  }

  .not-found-top-content {
      text-align: center;
      max-width: unset;
  }

  .not-found-top-content h4 {
      font-size: 30px;
      line-height: 55px;
      letter-spacing: -1.5px;
  }

  .not-found-top-content p {
      font-size: 16px;
  }

  .not-found-top-content a {
      max-width: unset;
      width: 100%;
  }

  .not-found-button {
      font-size: 16px;
      padding: 13px 12px;
  }

  .not-found-bottom p {
      font-size: 16px;
      margin-top: 30px;
  }

  .not-found-bottom-content {
      display: flex;
      flex-direction: column;
      flex-wrap: unset;
      gap: 10px;
      max-width: unset;
  }

  button {
      font-size: 16px;
  }

  body {
      font-size: 15px;
      padding-top: 80px;
  }

  h1 {
      font-size: 25px;
      line-height: 30px;
      letter-spacing: -1px;
  }

  h2 {
      font-size: 25px;
      line-height: 30px;
      letter-spacing: -1px;
  }

  h3 {
      font-size: 21px;
  }

  h4 {
      font-size: 19px;
  }

  p {
      font-size: 15px;
  }

  .btn {
      font-size: 15px;
  }

  .section-offset {
      width: unset;
      margin: 0px 10px;
      padding: 40px 0px;
  }

  .header {
      margin: 0;
      padding: 10px;
      padding-bottom: 0;
  }

  .top-header {
      justify-content: space-between;
      padding: 0;
      padding-bottom: 10px;
      border-bottom: none;
  }

  .promo__free-consultation,
  .arrive__free-consultation {
      max-width: unset;
      width: 100%;
  }

  .social-link {
      width: 50px;
      height: 50px;
  }

  .social-link img {
      width: 24px;
      height: 24px;
  }

  .mobile-social .social-link img {
      width: 20px;
      height: 20px;
  }

  .prices__head {
      text-align: left !important;
  }

  .price__table-header {
      display: none;
  }

  .price__table-content {
      padding: 20px 10px;
  }

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

  .price__table-btn {
      margin-top: 5px;
      margin-bottom: 10px;
      width: 100%;
      padding: 12px 20px;
      font-size: 16px;
  }

  .price__table-button-container {
      width: 100%;
  }

  .how__block h2 {
      margin-bottom: 20px;
  }

  .arrive__free-consultation {
      margin-top: 30px;
  }

  .advantages__block {
      padding: 80px 10px;
      margin: 40px 0px;
  }

  .advantages__head {
      padding: unset;
  }

  .arrive__image img {
      height: 256px;
  }

  .arrive__text {
      font-size: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 10;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
  }

  .arrive__head {
      flex: unset;
  }

  .banner__consult {
      padding: 40px 10px;
  }

  .banner__consult-content {
      flex-direction: column;
  }

  .banner__text p {
      font-size: 18px;
      margin-top: 10px;
      margin-bottom: 30px;
  }

  .banner {
      height: 607px;
      padding: 40px 10px;
  }

  .form-grid-review {
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .review__banner {
      height: 828px;
  }

  input[type="text"],
  input[type="tel"] {
      font-size: 15px;
  }

  .review__banner .banner__doctor-image {
      width: 312px;
  }

  .review__card-head {
      align-items: flex-start;
  }

  .banner__content {
      position: relative;
      flex-direction: column;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .banner__button {
      max-width: unset;
      width: 100%;
  }

  .banner__offset {
      padding-left: 0px;
      padding-right: 0px;
  }


  .background-banner__consult-image {
      height: 100%;
  }

  .checkmark {
      height: 20px;
      width: 20px;
  }

  .quote-content {
      gap: 30px;
      flex-direction: column;
      padding: 20px;
  }

  .problem__card img {
      max-width: unset;
      max-height: unset;
      min-width: 250px;
      min-height: 250px;
  }

  .quote-content img {
      width: 100%;
      min-height: 260px;
      height: fit-content;
  }

  .quote-author {
      font-size: 18px;
      margin: 0;
  }

  .quote-author-position {
      margin: 0;
  }

  .quote-text-content svg {
      height: 20px;
      width: 50px;
      object-view-box: xywh(0 0 100 40);
  }

  .quote-text {
      margin: 30px 0px;
  }

  .licenses__navigation {
      display: none;
  }

  .license__swiper {
      height: auto;
      max-height: unset;
  }

  .all-photo__button {
      max-width: unset;
      width: 100%;
      margin-top: 30px;
  }

  .license__swiper-pagination {
      display: block;
      margin-top: 30px;
      text-align: center;
  }

  .license__swiper-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background-color: #ECF1F4;
      opacity: 1;
  }

  .license__content--page {
      display: grid;
      gap: 20px;
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 1fr;
  }

  .photo__swiper-pagination .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background-color: #FFF;
      opacity: 1;
  }

  .photo__block--page .photo__grid {
      display: flex;
      gap: 15px;
      flex-direction: column;
  }

  .photo__block--page .clinic-photo {
      height: 200px;
      max-height: unset;
  }

  .license__swiper-pagination .swiper-pagination-bullet-active,
  .photo__swiper-pagination .swiper-pagination-bullet-active {
      background-color: #2E6489;
  }

  .doctors__swiper {
      max-height: unset;
      height: auto;
  }

  .articles__navigation,
  .doctors__navigation {
      display: none;
  }

  .articles__navigation.mobile,
  .doctors__navigation.mobile {
      margin-top: 20px;
      display: flex;
      width: 100%;
      height: auto;
  }

  .articles__navigation.mobile .all-doctors__btn,
  .doctors__navigation.mobile .all-doctors__btn {
      width: 100%;
      height: auto;
      margin-right: 0px;
  }

  .articles__navigation.mobile .articles__button,
  .doctors__navigation.mobile .doctors__button {
      min-width: 48px !important;
      height: 48px !important;
  }

  .articles__navigation.mobile .articles__button svg,
  .doctors__navigation.mobile .doctors__button svg {
      width: 20px !important;
      height: 16px !important;
  }

  .articles__button--light {
      width: 48px !important;
      height: 48px !important;
  }

  .articles__block--page .articles__content {
      display: flex;
      flex-direction: column;
      row-gap: 30px;
  }

  .article__card .article__image {
      height: 200px;
  }

  .article__card .article__text {
      font-size: 15px;
      -webkit-line-clamp: 4;
  }

  .article__card .article__name {
      margin-top: 20px;
      margin-bottom: 10px;
      font-size: 18px;
  }

  .pagination-text {
      display: none;
  }

  .articles__pagination {
      gap: 20px;
  }

  .article__pagination-btn svg {
      height: 14px;
      width: 14px;
  }

  .pagination-pages {
      gap: 5px;
  }

  .page-btn {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      font-size: 16px;
  }

  .how__head p {
      width: 100%;
  }

  .swiper-nav-buttons {
      bottom: 26px;
  }

  .mobile-select {
      display: block;
      position: relative;
      width: 100%;
  }

  .select-header {
      background: #2A5674;
      color: #fff;
      padding: 10px 18px;
      border-radius: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      margin-bottom: 20px;
  }

  .select-current {
      font-size: 18px;
      font-weight: 700;
  }

  .select-arrow {
      transition: transform 0.3s ease;
  }

  .select-header.open .select-arrow {
      transform: rotate(180deg);
  }

  .select-options {
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      right: 0;
      background: #f3f6f9;
      border-radius: 12px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-5px);
      transition: 0.25s;
      z-index: 10;
  }

  .select-options.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .select-option {
      padding: 10px 18px;
      font-weight: 700;
      font-size: 18px;
      cursor: pointer;
      transition: background 0.2s;
  }

  .select-option:hover {
      background: #ECF1F4;
  }

  .select-option+.select-option {
      border-top: 1px solid #2A5674
  }

  .reviews__head .all-doctors__btn {
      display: none;
  }

  .document-text {
      margin-top: 15px;
  }

  @keyframes fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .faq__question {
      padding: 10px;
      font-size: 16px;
      gap: 5px;
  }

  .faq__arrow-box {
      width: 60px;
  }

  .faq__arrow {
      display: block;
      width: 38px;
      height: 38px;
  }

  .faq__arrow svg {
      height: 13px;
  }

  .faq__answer {
      padding: 10px;
  }

  .footer__top-mobile {
      display: block;
  }

  .footer__top {
      display: none;
  }

  .footer__telephone {
      font-size: 18px;
  }

  .footer__contacts {
      margin-bottom: 20px;
  }
  
  @media(max-width: 400px){
      .footer__contacts{
          margin-top: 20px;
          flex-wrap: wrap;
          justify-content: center;
      }
      .footer__telephone{
          margin-bottom: 10px;
          width: 100%;
              text-align: center;
      }
  }

  .footer__top-mobile .footer__btn {
      width: 100%;
      margin-bottom: 40px;
  }

  .footer__services-menu {
      display: none;
  }

  .footer__mobile-accordion {
      display: block;
      padding-bottom: 20px;
      border-bottom: 1px solid #FFFFFF4D;
      width: 100%;
      color: #fff;
      overflow: hidden;
  }

  .footer__mobile-accordion-item a {
      color: #fff;
  }

  .footer__mobile-accordion-header {
      margin-bottom: 20px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .footer__mobile-accordion-content {
      display: none;
  }

  .footer__mobile-accordion-content a {
      display: block;
      margin-bottom: 10px;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
  }

  .footer__mobile-accordion-content a:last-child {
      margin-bottom: 20px;
  }

  .footer__mobile-accordion-content a:hover {
      text-decoration: underline;
  }

  .footer__mobile-accordion .arrow {
      transition: transform 0.3s;
  }

  .footer__mobile-accordion .active .arrow {
      transform: rotate(180deg);
  }

  .footer__additional-buttons {
      flex-direction: column;
      gap: 10px;
  }

  .footer__end {
      flex-direction: column;
      gap: 20px;
  }

  .footer__docs {
      flex-direction: column;
      gap: 10px;
  }

  .footer__address p {
      font-size: 14px;
  }

  .footer__additional-button img {
      width: 25px;
  }

  .footer__payment-icon img {
      width: 20px;
  }

  .footer__payment-icon {
      height: 40px;
      width: 100%;
  }

  .contacts-block--page {
      display: flex;
      flex-direction: column;
      gap: 30px;
  }

  .contacts-head {
      gap: 20px;
  }

  .contacts-info-block {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .contacts-info-label {
      line-height: 100%;
      font-size: 20px;
  }

  .contacts-info-value {
      line-height: 100%;
      font-size: 18px;
  }

  .contacts-info-value a {
      font-size: 18px;
  }

  .contacts-form-block {
      padding: 20px 10px;
  }

  .contacts-form-block h1 {
      margin-bottom: 15px;
  }

  .contacts-form-block p {
      font-size: 18px;
      margin-bottom: 30px;
  }

  .contact-socials .social-link {
      height: 58px;
      width: 58px;
  }

  .page-content-block {
      padding: 20px;
  }

  .page-content-header {
      font-size: 16px;
      margin-bottom: 15px;
  }

  .page-content-list {
      margin-bottom: 0px;
      font-size: 15px;
      line-height: 22px;
  }

  .page-content-list li:not(:last-child) {
      margin-bottom: 5px;
  }

  .promo__service-price-block {
      margin-top: 30px;
      width: unset;
      font-size: 16px;
  }

  .promo__service-price {
      font-size: 25px;
  }

  .service-right-text-block .promo__service-text {
      padding-left: 0px;
  }

  .promo__service-text h2 {
      margin-bottom: 20px;
      margin-top: 30px;
  }

  .support-head {
      margin-bottom: 30px;
  }

  .support-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .support-card {
      padding: 20px;
  }

  .support-card-header {
      font-size: 25px;
  }

  .support-card-text {
      font-size: 16px;
  }

  .service-left-text-block .promo__service-text {

      padding-right: 0px;
  }

  .promo__service-text h1 {
      margin-top: 30px;
      margin-bottom: 20px;
  }

  .promo__service-subtext {
      line-height: 22px;
      font-size: 15px;
  }

  .promo__service-image {
      order: -1;
  }

  .promo__service-text {
      order: 2;
  }

  .not-asking-banner {
      height: 998px;
  }

  .banner__not-asking-text p {
      font-size: 18px;
  }

  .not-asking-banner .banner__doctor-image {
      top: 60px;
      min-width: 326px;
      width: 100%;
  }

  .sitemap-menu {
      padding: 30px 0px;
      flex-direction: column;
      gap: 15px;
  }

  .sitemap-menu a {
      font-size: 18px;
  }

  .sitemap {
      column-count: unset;
      margin-top: 30px;
      height: unset;
  }

  .sitemap-group:not(:last-child) {
      margin-bottom: 30px;
  }

  .sitemap-group h3 {
      margin-bottom: 15px;
      font-size: 16px;
  }

  .sitemap-group a {
      font-size: 15px;
  }

  .sitemap-group li:not(:last-child) {
      margin-bottom: 8px;
  }

  .article__section p:not(:first-child) {
      font-size: 15px;
      margin-top: 15px;
  }

  .article__section p:first-child {
      margin-top: 20px;
  }

  .article__subtext {
      font-size: 15px;
  }

  .article__content-list {
      margin-top: 15px;
  }

  .article__section h2,
  .article__section h3,
  .article__section h4 {
      margin-top: 30px;
      margin-bottom: 20px;
  }

  .article__two-photo {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .article__author-block {
      align-items: unset;
      flex-direction: column;
  }

  .article__literature-list,
  .article__author-block {
      padding: 20px;
  }

  .article__author-image {
      flex: unset;
      height: 150px;
      width: 150px;
      min-width: 150px;
  }

  .article__banner__inputs {
      gap: 15px;
      flex-direction: column;
  }

  .article__banner__subhead {
      font-weight: 600;
      font-size: 25px !important;
      line-height: 30px;
      letter-spacing: -1px;
  }

  .article__banner {
      height: unset !important;
  }

  .article__literature-list ol {
      font-size: 14px;
  }

  .article__two-photo img {
      margin: 0;
      height: 200px;
  }

  .article__two-photo img:first-child {
      margin-top: 20px;
  }

  .article__two-photo img:last-child {
      margin-bottom: 20px;
  }

  .article__table thead th,
  .article__table-wrapper table thead th {
      font-size: 18px;
  }

  .article__table tbody td,
  .article__table-wrapper table tbody td {
      font-size: 15px;
  }

  .modal {
      width: 100%;
      padding: 20px 15px;
      margin: 0px 5px;
  }

  .modal h2 {
      width: 90%;
  }

  .modal .form-grid {
      grid-template-columns: unset;
      gap: 15px;
  }

  .modal-close {
      top: 20px;
      right: 15px;
  }
}

.promo__service-text a,
.promo__service-subtext--down a,
.article__section a {
  transition: color 0.3s ease;
  color: #3B738F;
  text-decoration: underline;
  font-weight: 600;
}

.promo__service-text a:hover,
.promo__service-subtext--down a:hover,
.article__section a:hover {
  color: #2E6489;
}

.service-right-text-block .promo__service-text.text_new {
  padding-left: 0;
}

.table-baseWrapper {
  overflow: auto;
}

@media (max-width: 768px) {

  .article__literature-list,
  .article__author-block {
      padding: 20px;
  }

  .service__author-block a,
  .article__author-block a {
      padding: 20px;
      width: calc(100% - 40px);
      flex-direction: row;
  }
}

@media (max-width: 520px) {
  .article__author-block a {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
  }
}

.bottom-info__wrapper {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 11500;
  color: #fff;
  font: inherit;
  background-color: rgba(0,0,0,.73);
  opacity: 0;
  transition: opacity .3s;
  height: auto;
}

.bottom-info__wrapper.active {
  opacity: 1;
}

.bottom-info__wrapper .bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px
}

.bottom-info__wrapper .bottom-info__content {
  margin: 0 20px 0 0;
  font-size: 13px;
}

.bottom-info__content a {
  color: #52c5ff;
  transition: color .3s;
  font-size: 13px;
}

.bottom-info__content a:hover {
  color: #296de7;
}

.bottom-info__wrapper .bottom-info__action {
  display: flex;
}

.bottom-info__wrapper .bottom-info__button-agree {
  padding: 10px 28px;
}

.bottom-info__wrapper .bottom-info__content {
  margin: 0 30px 0 0;
}

@media screen and (max-width: 639px) {
  .bottom-info__wrapper .bottom-info__action {
      margin:10px 0 0;
  }
  .bottom-info__wrapper .bottom-info {
      flex-direction:column;
  }

  .bottom-info__content a,
  .bottom-info__wrapper .bottom-info__content p,
  .bottom-info__wrapper .bottom-info__button-agree { 
      font-size: 11px;
  }

  .bottom-info__wrapper .bottom-info__content {
      margin: 0;
      text-align: center;
  }
}

.custom-widget__container {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  margin: 0px auto;
}

.custom-widget__wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  border: 1px solid #D1EEEA;
}

.custom-widget__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: #ECF1F4;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #3B738F;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.custom-widget__button:hover {
  background: #5D89B6;
  color: #FFF;
}

.custom-widget__button:hover svg path,
.custom-widget__opener:hover svg path {
  fill: #FFF;
}

.custom-widget__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-widget__close {
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #595959;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  font-weight: 900;
}

.custom-widget__close:hover {
  color: #000;
}

.custom-widget__wrapper {
  transition: transform .35s ease, opacity .35s ease;
}

.custom-widget__wrapper.hidden {
  transform: translateY(75px);
  pointer-events: none;
}

.custom-widget__opener {
  position: absolute;
  align-self: end;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  right: -25px;
  width: 30px;
  height: 30px;
  background: #FFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(74, 144, 226, .3);
  flex-shrink: 0;
  transform: translateY(40px) scale(.3);
  transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s;
}

.custom-widget__opener:hover {
  background: #5D89B6;
  box-shadow: 0 15px 30px rgba(74, 144, 226, 0.4);
}

.custom-widget__opener.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 968px) {
  .custom-widget__button:not(:first-child) p {
      display: none;
  }
}

@media (max-width: 508px) {
  .custom-widget__container {
      z-index: 10501;
  }
  
  .custom-widget__opener {
      transform: translateY(40px) scale(.3);
  }

  .custom-widget__opener.show {
      bottom: -8px;
  }

  .custom-widget__wrapper.hidden {
      transform: translateY(115px);
      pointer-events: none;
  }

  .custom-widget__wrapper.hidden .custom-widget__close {
      opacity: 0;
  }

  .custom-widget__wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      padding: 6px;
  }

  .custom-widget__button:first-child {
      grid-column: 1 / -1;
      justify-content: center;
       background: #5D89B6;
    color: #FFF;
  }
  
  .custom-widget__button:first-child svg path {
      fill: #FFF;
  }

  .custom-widget__button {
      padding: 13px 14px;
      font-size: 14px;
      justify-content: center;
      text-align: center;
  }

  .custom-widget__icon {
      width: 18px;
      height: 18px;
  }

  .custom-widget__close {
      opacity: 1;
      position: absolute;
      right: -30px;
      top: 0px;
      width: 28px;
      height: 28px;
      margin: 0px;
      border-radius: 50%;
      background: #FFFFFF;
      border: 1px solid #D1EEEA;
  }
}
.popup.city .city__popular ul li a {
          color: inherit;
        }

        .popup.city .popup__title {
          line-height: 55px;
          letter-spacing: -2px;
          margin: 0;
          font-weight: 500;
          font-size: 50px;
          margin-block-end: 35px;
        }

        .popup.city .popup__content {
          max-width: 900px;
          overflow: hidden;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          padding-block-end: 0;
        }

        .popup.city .search__form {
          max-width: 520px;
          width: 100%;
          border-radius: 8px;
          margin-block-end: 20px;
        }

        .popup.city .search__form input {
          height: 50px;
        }

        .popup.city .city__popular {
          padding-block-end: 20px;
          width: 100%;
        }

        .popup.city .city__popular-title {
          font-size: 20px;
          font-weight: 400;
          line-height: 1;
          margin-block-end: 25px;
          display: block;
          background-color: #3b738f;
          border-radius: 8px;
          padding: 12px 8px;
          width: fit-content;
          color: #fff;
        }

        .popup.city .city__popular ul {
          display: grid;
          grid-template-columns: repeat(auto-fit, 200px);
          justify-items: start;
          justify-content: space-between;
          align-items: center;
          gap: 12px;
          margin: 0;
          padding: 0;
        }

        .popup.city .modal-close {
          filter: brightness(1.5);
        }

        .popup.city .city__popular ul li {
          list-style: none;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 8px;
        }

        .popup.city .city__popular ul li::before {
          content: "";
          display: block;
          width: 7px;
          background-color: #fff;
          border-radius: 50%;
          border: 2px solid #3b738f;
          aspect-ratio: 1 / 1;
        }

        .popup.city .city__popular ul li a:hover,
        .text-section__content a {
          color: #3b738f;
        }

        .popup.city .city__search-wrap {
          width: 100%;
        }

        .popup.city .city__list_result {
          display: flex;
          flex-direction: column;
          overflow-y: auto;
          max-height: 280px;
          padding-inline-end: 12px;
        }

        .popup.city .city__list_result::-webkit-scrollbar {
          width: 4px;
        }

        .popup.city .city__list_result::-webkit-scrollbar-track {
          background-color: #dfdfdf;
        }

        .popup.city .city__list_result::-webkit-scrollbar-thumb {
          border-radius: 2px;
          background-color: #3b738f;
        }

        .popup.city .city__list_result li {
          display: flex;
          align-items: center;
          gap: 6px;
          list-style: none;
          border-bottom: 1px solid #dfdfdf73;
        }

        .popup.city .city__list_result li::before {
          content: "";
          display: block;
          width: 7px;
          background-color: #fff;
          border-radius: 50%;
          border: 1px solid #3b738f;
          aspect-ratio: 1 / 1;
        }

        .popup.city .city__list_result li a {
          display: block;
          padding-block: 5px;
        }

        .popup.city .city__list_result li.none {
          display: none;
        }
@media (width<=1200px) {
.popup.city .popup__title {
    line-height: 1;
    font-size: 32px;
}
.popup.city .popup__content {
    align-items: flex-start;
}
.popup.city .city__popular-title {
    font-size: 16px;
}
}

@media (max-width: 768px) {
  .popup.city {
    padding: 10px;
    box-sizing: border-box;
  }

  .popup.city .popup__body {
    display: flex;
    width: 100%;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 24px 16px 16px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .popup.city .popup__content {
    width: 100%;
    min-height: 0;
    max-height: 100%;
    align-items: stretch;
    justify-content: flex-start;
  }

  .popup.city .popup__title {
    flex-shrink: 0;
    padding-right: 40px;
    margin-block-end: 20px;
    font-size: 26px;
  }

  .popup.city .search__form {
    flex-shrink: 0;
    margin-block-end: 16px;
  }

  .popup.city .modal-close {
    top: 18px;
    right: 16px;
  }

  .popup.city .city__popular {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding-block-end: 0;
  }

  .popup.city .city__popular-title {
    flex-shrink: 0;
    margin-block-end: 16px;
  }

  .popup.city .city__popular ul {
    flex: 1;
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 0;
    padding-inline-end: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .popup.city .city__popular ul li {
    justify-content: flex-start;
  }

  .popup.city .city__search-wrap {
    min-height: 0;
    overflow: hidden;
  }

  .popup.city .city__popular.none + .city__search-wrap {
    flex: 1;
  }

  .popup.city .city__search-result {
    height: 100%;
  }

  .popup.city .city__list_result {
    height: 100%;
    max-height: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

.popup.city .city__popular.none {
display: none;
}

.doctors__subhead {
  width: 100%;
  align-items: end;
  gap: 10px;
}

.doctors__head {
  flex-wrap: wrap;
}



.license-title{
  width: 100%;
  max-width: 1000px;
}

.law__inner{
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.law__item{
  width: 100%;
  max-width: 45%;
  border: 1px solid #2A5674;
  padding: 30px 20px;
  border-radius: 20px;
}

@media(max-width: 1140px){
  .law__item{
      max-width: 100%;
  }
}

.law__item h3{
  font-size: 28px
}

.law__item p{
  font-size: 20px
}

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

.law__item p{
  font-size: 16px
}
}
.law__item p a{
  text-decoration: underline;
  color: #3B738F;
}

.law-highlight{
  background: #2E6489;
  color: #fff;
  padding: 2px 10px;
  border-radius: 5px;
}









.google-source-box {
background-color: #ECF1F4;
border: 1px solid #D1EEEA;
border-radius: 20px;
padding: 24px 32px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.google-source-info {
display: flex;
align-items: center;
gap: 20px;
}

.google-source-icon {
width: 52px;
height: 52px;
min-width: 52px;
background-color: #FFFFFF;
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(46, 100, 137, 0.08);
}

.google-source-text {
display: flex;
flex-direction: column;
gap: 4px;
}

.google-source-title {
margin: 0;
font-weight: 700;
font-size: 20px;
line-height: 1.3;
color: #2A5674;
letter-spacing: -0.5px;
}

.google-source-desc {
margin: 0;
font-size: 15px;
line-height: 22px;
color: #424242;
}

.google-source-btn {
background-color: #2E6489;
color: #FFFFFF;
padding: 14px 24px;
border-radius: 12px;
font-size: 16px;
font-weight: 700;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
white-space: nowrap;
flex-shrink: 0;
transition: all 0.25s ease;
border: 1px solid #2E6489;
}

.google-source-btn:hover {
background-color: #3B738F;
border-color: #3B738F;
color: #FFFFFF;
}

.google-source-btn svg {
flex-shrink: 0;
transition: transform 0.2s ease;
}

.google-source-btn:hover svg {
transform: scale(1.15);
}

.google-source-box--compact {
margin-top: 20px;
background-color: #FFFFFF;
border: 1px solid #A8DBD9;
padding: 20px 24px;
}

.google-source-box--compact .google-source-title {
font-size: 18px;
}

.google-source-box--compact .google-source-desc {
font-size: 14px;
line-height: 20px;
}

.google-source-box--compact .google-source-btn {
padding: 12px 20px;
font-size: 15px;
}

@media (max-width: 992px) {
.google-source-box {
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  gap: 20px;
}

.google-source-btn {
  width: 100%;
}
}

@media (max-width: 560px) {
.google-source-info {
  align-items: flex-start;
  gap: 14px;
}

.google-source-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
}

.google-source-icon svg {
  width: 24px;
  height: 24px;
}

.google-source-title {
  font-size: 17px;
}

.google-source-desc {
  font-size: 13px;
  line-height: 19px;
}

.google-source-btn {
  padding: 14px 16px;
  font-size: 15px;
}
}

/* 1. Стили даты */ .article-meta { display: flex; align-items: center; gap: 12px; margin: 12px 0 24px; font-size: 14px; color: #64748b; }

.article-meta__item
{ display: inline-flex; align-items: center; gap: 6px; }

.article-meta__item strong
{ color: #1e293b; font-weight: 500; }

.article-meta__divider
{ color: #cbd5e1; }

/* 2. Стили блока оценки */ .article-rating
{ margin: 40px auto; padding: 24px; max-width: 520px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; text-align: center; }

.article-rating__title
{ font-size: 18px; font-weight: 600; color: #0f172a; margin-bottom: 6px; }

.article-rating__subtitle
{ font-size: 14px; color: #64748b; margin: 0 0 16px; }

.article-rating__stars
{ display: inline-flex; gap: 6px; margin-bottom: 12px; }

.rating-star
{ background: none; border: none; padding: 2px; cursor: pointer; line-height: 0; transition: transform 0.15s ease; }

.rating-star svg
{ width: 30px; height: 30px; fill: #cbd5e1; /* Серые неактивные звезды */ transition: fill 0.15s ease; }

.rating-star:hover
{ transform: scale(1.15); }

/* Активное и ховер состояние звезд */ .rating-star.hovered svg, .rating-star.selected svg
{ fill: #f59e0b; /* Золотые звезды */ }

.article-rating__info
{ font-size: 13px; color: #64748b; }

.article-rating__info strong
{ color: #0f172a; }

.article-rating__thanks
{ display: none; margin-top: 12px; font-size: 14px; font-weight: 500; color: #3B738F; /* Под стиль вашего акцентного цвета */ animation: fadeIn 0.25s ease-in; }

@keyframes fadeIn
{ from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.article__card-meta { display: flex; align-items: center; justify-content: space-between; /* Равномерно разносит дату влево, оценку вправо */ margin-top: 14px; margin-bottom: 8px; font-size: 13px; line-height: 1; }

/* Дата */ .article__card-date
{ display: inline-flex; align-items: center; gap: 6px; color: #64748b; }

.article__card-date svg
{ color: #94a3b8; flex-shrink: 0; }

/* Блок оценки со звездой */ .article__card-rating
{ display: inline-flex; align-items: center; gap: 4px; color: #1e293b; }

.article__card-rating svg
{ color: #f59e0b; /* Золотой цвет звезды */ flex-shrink: 0; }

.article__card-rating strong
{ font-weight: 600; font-size: 13px; }

.article__card-votes
{ color: #94a3b8; font-size: 12px; }


.newArtNavSpoilerBtn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
        margin: 0;
}

.newArtNavSpoiler {
    background-color: #3b738f;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newArtNavSpoiler::before {
    content: "+";
    position: absolute;
    font-size: 18px;
    color: white;
    text-align: center;
}

.newArtNavListWrap {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}


.active.newArtNav .newArtNavSpoiler::before {
    transform: rotate(45deg);
}

.newArtNavListWrap > * {
    margin-top: 20px;
}


.active.newArtNav  .newArtNavListWrap {
    max-height: 2000px;
}






.exit-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 999999;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: #1e293b;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s ease;
      box-sizing: border-box;
    }

    .exit-modal *,
    .exit-modal *::before,
    .exit-modal *::after {
      box-sizing: border-box;
    }

    .exit-modal.is-active {
      display: flex;
      opacity: 1;
    }

    .exit-modal__backdrop {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(4px);
    }

    .exit-modal__window {
      position: relative;
      background: #ffffff;
      border-radius: 14px;
      padding: 32px 30px;
      z-index: 2;
    }

    .exit-modal__close {
      position: absolute;
      top: 14px;
      right: 16px;
      background: transparent;
      border: none;
      font-size: 32px;
      line-height: 1;
      color: #94a3b8;
      cursor: pointer;
      padding: 0;
      transition: color 0.2s;
    }

    .exit-modal__close:hover {
      color: #0f172a;
    }

    .exit-modal__brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .exit-modal__logo {
      max-height: 38px;
      max-width: 180px;
      object-fit: contain;
    }

    .exit-modal__badge {
      background: rgba(46, 100, 137, 0.1);
      color: #2E6489;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .exit-modal__title {
      margin: 0 0 8px 0;
      font-size: 21px;
      font-weight: 700;
      line-height: 1.35;
      color: #0f172a;
    }

    .exit-modal__subtitle {
      margin: 0 0 18px 0;
      font-size: 14px;
      line-height: 1.5;
      color: #475569;
    }

    /* Блок УТП */
    .exit-modal__usp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 20px;
      background: #f8fafc;
      padding: 12px 10px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }

    .exit-modal__usp-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.3;
    }

    .exit-modal__usp-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .exit-modal__usp-item strong {
      display: block;
      color: #0f172a;
      font-size: 12px;
    }

    .exit-modal__usp-item small {
      color: #64748b;
      font-size: 11px;
    }

    /* Форма */
    .exit-modal__form-row {
      display: flex;
      gap: 8px;
      margin-bottom: 6px;
    }

    .exit-modal__input {
      flex: 1;
      padding: 12px 14px;
      border: 1.5px solid #cbd5e1;
      border-radius: 6px;
      font-size: 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .exit-modal__input:focus {
      border-color: #2E6489;
    }

    .exit-modal__submit-btn {
      background: #2E6489;
      color: #ffffff;
      border: none;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      white-space: nowrap;
      transition: background-color 0.2s;
    }

    .exit-modal__submit-btn:hover {
      background: #24506e;
    }

    .exit-modal__privacy {
      margin: 0;
      font-size: 11px;
      color: #94a3b8;
      line-height: 1.4;
    }

    /* Разделитель */
    .exit-modal__divider {
      position: relative;
      text-align: center;
      margin: 18px 0 14px;
    }

    .exit-modal__divider::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #e2e8f0;
    }

    .exit-modal__divider span {
      position: relative;
      background: #ffffff;
      padding: 0 10px;
      font-size: 12px;
      color: #94a3b8;
    }

    /* Контакты */
    .exit-modal__contacts {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .exit-modal__phone-box,
    .exit-modal__tg-box {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .exit-modal__contact-label {
      font-size: 11px;
      color: #64748b;
    }

    .exit-modal__phone-link {
      font-size: 18px;
      font-weight: 700;
      color: #2E6489;
      text-decoration: none;
      transition: color 0.2s;
    }

    .exit-modal__phone-link:hover {
      color: #1d425c;
      text-decoration: underline;
    }

    .exit-modal__tg-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #229ED9;
      color: #ffffff;
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.2s;
    }

    .exit-modal__tg-link:hover {
      background: #1b84b8;
    }

    /* Адаптив */
    @media (max-width: 600px) {
      .exit-modal__window {
        padding: 24px 18px 20px;
      }
      .exit-modal__title {
        font-size: 18px;
      }
      .exit-modal__usp-grid {
        grid-template-columns: 1fr;
        gap: 8px;
      }
      .exit-modal__form-row {
        flex-direction: column;
      }
      .exit-modal__contacts {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    
        @media (max-width: 900px) {
    .articles__head {
    flex-direction: column;
    align-items: flex-start;
}
}