/* fonts */
@font-face {
  font-family: "OpenSans";
  src:
      local("OpenSans Regular"),
      local("OpenSans-Regular"),
      url("../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"),
      url("../fonts/OpenSans/OpenSans-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src:
      local("OpenSans Medium"),
      local("OpenSans-Medium"),
      url("../fonts/OpenSans/OpenSans-Medium.ttf") format("ttf");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  src:
      local("OpenSans Bold"),
      local("OpenSans-Bold"),
      url("../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"),
      url("../fonts/OpenSans/OpenSans-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}

/* reset styles */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

textarea {
  resize: none;
}

button {
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
  margin: 0;
}

picture {
  display: block;
}

label {
  display: block;
}

[type="submit"] {
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* glob */
body {
  font-family: "OpenSans", sans-serif;
  color: #26292f;
  min-width: 320px;
}

body.lock {
  overflow: hidden;
}

main {
  min-height: 100vh;
}

.container {
  max-width: 1350px;
  padding: 0 15px;
  margin: 0 auto;
}

.btn {
  padding: 20px 40px;
  background-color: #18d398;
  border-radius: 34px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition:
      background-color 0.2s ease,
      -webkit-box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      -webkit-box-shadow 0.2s ease;
  -o-transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      -webkit-box-shadow 0.2s ease;
}

.btn:active {
  background-color: rgba(24, 211, 152, 0.6) !important;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(24, 211, 152, 0.3);
  box-shadow: 0px 0px 20px 0px rgba(24, 211, 152, 0.3);
}

.btn-submit {
  padding: 16px 30px;
  border-radius: 30px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  -webkit-transition:
      background-color 0.2s ease,
      -webkit-box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      -webkit-box-shadow 0.2s ease;
  -o-transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      -webkit-box-shadow 0.2s ease;
}

.btn-submit:active {
  background-color: rgba(255, 255, 255, 0.9) !important;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.4);
}

.not-found-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}

span.not-found-code {
  font-size: 300px;
  font-weight: 500;
  color: rgb(0 0 0 / 80%);
}

.not-found-container .btn {
  color: #000;
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 15px 20px;
}

.popup__content {
  width: 587px;
  max-width: 100%;
  position: relative;
  padding: 70px 30px 30px;
  background-color: #1c63ee;
  border-radius: 20px;
}

.popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 100;
}

.popup__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  color: #fff;
  margin-bottom: 35px;
}

.city-popup .popup__content {
  padding: 70px 60px 30px;
  width: 1000px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 67, 255, 0.02)), to(rgba(0, 67, 255, 0.02))), #fff;
  background: -o-linear-gradient(bottom, rgba(0, 67, 255, 0.02) 0%, rgba(0, 67, 255, 0.02) 100%), #fff;
  background: linear-gradient(0deg, rgba(0, 67, 255, 0.02) 0%, rgba(0, 67, 255, 0.02) 100%), #fff;
}

.city-popup .popup__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  color: #1c63ee;
  margin-bottom: 35px;
}

.city-popup__input {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  background-color: rgba(165, 217, 255, 0.5);
  font-size: 18px;
  line-height: 140%;
}

.city-popup__input::-ms-clear {
  display: none;
}

.city-popup__input::-moz-placeholder {
  color: #1897ff;
}

.city-popup__input::-webkit-input-placeholder {
  color: #1897ff;
}

.city-popup__label {
  margin-bottom: 35px;
}

.city-popup__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 80px;
}

.city-popup__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 40px);
  flex: 0 1 calc(50% - 40px);
}

.city-popup__link {
  font-size: 16px;
  line-height: 130%;
  color: #1c63ee;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.city-popup__link:active {
  color: #0072ff !important;
}

.form {
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.form-popup__label {
  margin-bottom: 12px;
}

.form-popup__label:last-child {
  margin-bottom: 0;
}

.form-input {
  padding: 16px 30px;
  width: 100%;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

textarea.form-input {
  height: 95px;
}

.form-input::-ms-clear {
  display: none;
}

.form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-popup__fields {
  margin-bottom: 20px;
}

.form-popup__btn {
  width: 100%;
  margin-bottom: 10px;
}

.form-policy {
  font-size: 14px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
}

.form-policy__link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.form-policy__link:active {
  color: rgba(255, 255, 255, 0.8) !important;
}

.tab {
  background-color: rgba(165, 217, 255, 0.4);
  padding: 12.5px 15px;
  border-radius: 10px;
  color: #363940;
  font-size: 16px;
  line-height: 25px;
  width: 100%;
  text-align: initial;
  -webkit-transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  -o-transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
}

.tab.active {
  font-weight: 600;
  color: #fff;
  background-color: #1c63ee;
  pointer-events: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tabs__active {
  display: none;
}

.tabs__close {
  display: none;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 62px;
}

.page-title_center {
  text-align: center;
}

.section-offset {
  margin-bottom: 120px;
}

.section-offset_padding {
  padding: 80px 0;
}

h1.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 62px;
  margin-bottom: 50px;
}

h2.section-title,
p.section-title,
span.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 52px;
  margin-bottom: 50px;
}

.section-title_white {
  color: rgba(255, 255, 255, 0.9);
}

.section-descr {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #7d8088;
  margin-bottom: 50px;
}

.section-descr_white {
  color: rgba(255, 255, 255, 0.8);
}

.content-body h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 30px;
}

.content-body h2:last-child {
  margin-bottom: 0;
}

.content-body h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 41px;
  margin-bottom: 30px;
}

.content-body h3:last-child {
  margin-bottom: 0;
}

.content-body h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 30px;
}

.content-body h4:last-child {
  margin-bottom: 0;
}

.content-body h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 30px;
}

.content-body h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 30px;
}

.content-body h5:last-child {
  margin-bottom: 0;
}

.content-body p {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 30px;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.content-body_white p {
  color: rgba(255, 255, 255, 0.9);
}

.content-body ul {
  margin-bottom: 30px;
}

.content-body ul:last-child {
  margin-bottom: 0;
}

.content-body ul li {
  position: relative;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 140%;
  padding-left: 34px;
}

.content-body ul li:last-child {
  margin-bottom: 0;
}

.content-body ul li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 10px;
  background-color: #1c63ee;
  width: 24px;
  height: 7px;
}

.content-body ul p {
  margin-bottom: 6px;
}

.content-body ul p:last-child {
  margin-bottom: 0;
}

.content-body ol {
  list-style-type: none;
  counter-reset: my-counter;
  margin-bottom: 30px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  row-gap: 10px;
}

.content-body ol:last-child {
  margin-bottom: 0;
}

.content-body ol li {
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 140%;
  padding-left: 60px;
  min-height: 40px;
}

.content-body ol li:last-child {
  margin-bottom: 0;
}

.content-body ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  position: absolute;
  /*top: -7px;*/
  left: 0;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #013bdd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

.content-body ol p {
  margin-bottom: 6px;
}

.content-body ol p:last-child {
  margin-bottom: 0;
}

.content-body blockquote {
  position: relative;
  border-radius: 8px;
  border-top: 2px solid #18d398;
  border-bottom: 2px solid #18d398;
  padding: 30px 100px;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 30px;
}

.content-body blockquote:last-child {
  margin-bottom: 0;
}

.content-body blockquote::before {
  content: "";
  display: block;
  width: 50px;
  height: 34px;
  position: absolute;
  top: 40px;
  left: 30px;
  background-image: url("../img/icons/blockquote-decor-1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 34px;
}

.content-body blockquote::after {
  content: "";
  display: block;
  width: 50px;
  height: 34px;
  position: absolute;
  bottom: 40px;
  right: 30px;
  background-image: url("../img/icons/blockquote-decor-2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 34px;
}

.content-body a {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: #1c63ee;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.content-body a:active {
  color: #0083ff !important;
}

.reviewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  gap: 50px;
  float: right;
  width: 500px;
  padding: 10px;
  border-radius: 25px;
  border: 2px solid #0072ff;
  margin-left: 40px;
  margin-bottom: 40px;
}

.reviewer__info {
  padding: 15px 0 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.reviewer .reviewer__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: #26292f;
  margin-bottom: 10px;
}

.reviewer .reviewer__name {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #26292f;
}

.reviewer .reviewer__role {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #7d8088;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 10px;
}

.reviewer .reviewer__date-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #26292f;
  margin-bottom: 3px;
}

.reviewer .reviewer__date-descr {
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: #7d8088;
}

.reviewer__picture {
  width: 223px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 223px;
  flex: 0 0 223px;
  border-radius: 20px;
  overflow: hidden;
}

.reviewer__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

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

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

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

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

.slider-wrapper {
  position: relative;
}

.slider-container {
  position: relative;
}

.slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px 10px;
}

.slider-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 10px;
  height: 10px;
  opacity: 1;
  border-radius: 50%;
  background-color: #a5d9ff;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #013bdd;
}

.slider-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0072ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.slider-btn:active {
  background-color: #1c63ee !important;
}

.slider-btn.swiper-button-disabled {
  pointer-events: none;
  background-color: #83c1ff;
}

.slider-btn_prev {
  left: -50px;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

.slider-btn_next {
  right: -50px;
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
}

.photo-zoom {
  position: relative;
  overflow: hidden;
}

.photo-zoom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 114, 255, 0.4);
  background-image: url("../img/icons/photo-zoom.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.accor-full {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease;
  -o-transition: max-height 0.2s ease;
  transition: max-height 0.2s ease;
}

.accor-open-decor {
  position: relative;
  width: 38px;
  height: 38px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.accor.active .accor-open-decor {
  background-color: rgba(255, 255, 255, 0.2);
}

.accor-open-decor::before,
.accor-open-decor::after {
  content: "";
  background-color: #1c63ee;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.accor.active .accor-open-decor::before,
.accor.active .accor-open-decor::after {
  background-color: #fff;
}

.accor-open-decor::before {
  width: 16px;
  height: 2px;
}

.accor-open-decor::after {
  width: 2px;
  height: 16px;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.accor.active .accor-open-decor::after {
  opacity: 0;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 0;
  padding: 30px 0 45px;
}

.breadcrumbs__item {
  position: relative;
  padding-left: 25px;
}

.breadcrumbs__item:first-child {
  padding-left: 0;
}

.breadcrumbs__item::before {
  content: "";
  width: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 5px;
  background-color: rgba(28, 99, 238, 0.5);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.breadcrumbs__item:first-child::before {
  display: none;
}

.breadcrumbs__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: rgba(28, 99, 238, 0.5);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.breadcrumbs__link_active {
  color: #1c63ee;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* contraindications */
.contraindications {
  position: relative;
  z-index: 1000;
  background-color: #1c63ee;
  padding: 14px 0;
}

.contraindications__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contraindications__decor {
  padding: 4px 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 18px;
  line-height: 130%;
  margin-left: 10px;
}

/* header */
.header {
  position: sticky;
  z-index: 1000;
  background-color: #fff;
}

.header__top {
  padding: 25px 0;
}

.header__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: block;
}

.header__top-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header__address-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.header__address-icon path {
  -webkit-transition: stroke 0.2s ease;
  -o-transition: stroke 0.2s ease;
  transition: stroke 0.2s ease;
}

.header__address:active .header__address-icon path {
  stroke: #1897ff !important;
}

.header__address-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
}

.header__phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: #26292f;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header__phone:active {
  color: #1897ff !important;
}

.header__phone:last-child {
  margin-bottom: 0;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.social__link:active {
  -webkit-transform: scale(0.9) !important;
  -ms-transform: scale(0.9) !important;
  transform: scale(0.9) !important;
}

.header__bottom {
  position: relative;
  padding: 20px 0;
  background-color: #0072ff;
}

.header__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header__nav-btn {
  padding: 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background-color: #fff;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.header__nav-btn:active {
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.header__nav-btn-text {
  font-size: 18px;
  line-height: 140%;
  color: #1c63ee;
}

.header__nav-btn-decor {
  position: relative;
  width: 22px;
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__nav-btn-decor::before,
.header__nav-btn-decor::after {
  content: "";
  position: absolute;
  -webkit-transition:
      top 0.2s ease,
      left 0.2s ease,
      width 0.2s ease,
      background-color 0.2s ease,
      -webkit-transform 0.2s ease;
  transition:
      top 0.2s ease,
      left 0.2s ease,
      width 0.2s ease,
      background-color 0.2s ease,
      -webkit-transform 0.2s ease;
  -o-transition:
      transform 0.2s ease,
      top 0.2s ease,
      left 0.2s ease,
      width 0.2s ease,
      background-color 0.2s ease;
  transition:
      transform 0.2s ease,
      top 0.2s ease,
      left 0.2s ease,
      width 0.2s ease,
      background-color 0.2s ease;
  transition:
      transform 0.2s ease,
      top 0.2s ease,
      left 0.2s ease,
      width 0.2s ease,
      background-color 0.2s ease,
      -webkit-transform 0.2s ease;
}

.header__navigation-wrapper.active .header__nav-btn-decor::before,
.header__navigation-wrapper.active .header__nav-btn-decor::after {
  top: 50%;
  left: 50%;
  bottom: auto;
  width: 20px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  background-color: #de004b;
}

.header__nav-btn-decor::before {
  width: 20px;
  top: 0px;
  left: 0;
}

.header__navigation-wrapper.active .header__nav-btn-decor::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__nav-btn-decor::after {
  width: 16px;
  bottom: 0;
  left: 0;
}

.header__navigation-wrapper.active .header__nav-btn-decor::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__nav-btn-decor-line {
  width: 20px;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.header__navigation-wrapper.active .header__nav-btn-decor-line {
  opacity: 0;
  visibility: hidden;
}

.header__nav-btn-decor::before,
.header__nav-btn-decor::after,
.header__nav-btn-decor-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 1px;
  background-color: #1c63ee;
  height: 2px;
}

.search {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 240px;
}

.search__item {
  width: 100%;
  height: 100%;
}

.search__input {
  width: 100%;
  height: 100%;
  padding: 0 56px 0 20px;
  background-color: #013bdd;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.search__input::-ms-clear {
  display: none;
}

.search__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.search__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.search__btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 56px;
  height: 100%;
  background-image: url("../img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 24px 24px 0;
}

.header__bottom-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.background-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
}

.background-close.active {
  opacity: 1;
  visibility: visible;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 50px;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.menu__link:active {
  color: rgba(255, 255, 255, 0.6) !important;
}

.header__navigation-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f4f8ff;
  padding: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
  -webkit-transform: translateX(-110%);
  -ms-transform: translateX(-110%);
  transform: translateX(-110%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.header__navigation-wrapper.active .header__navigation-dropdown {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.header__navigation-content-item {
  margin-bottom: 8px;
}

.header__navigation-content-item:last-child {
  margin-bottom: 0;
}

.header__navigation-tab {
  width: 343px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 28px 20px;
  border-radius: 5px;
  background-color: rgba(165, 217, 255, 0.4);
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.header__navigation-tab:active {
  background-color: rgba(165, 217, 255, 1) !important;
}

.header__navigation-content-item.active .header__navigation-tab {
  background-color: #1c63ee;
}

.header__navigation-tab-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  width: 24px;
  height: 24px;
  background-color: #1c63ee;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 24px 24px;
  mask-size: 24px 24px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.header__navigation-content-item.active .header__navigation-tab-icon {
  background-color: #fff;
}

.header__navigation-tab-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  text-align: initial;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header__navigation-content-item.active .header__navigation-tab-text {
  color: #fff;
}

.header__navigation-list {
  position: absolute;
  top: 8px;
  left: 351px;
  right: 0;
  padding: 40px 40px 8px 100px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 120px;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.header__navigation-content-item.active .header__navigation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
}

.header__navigation-nav-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 calc(50% - 60px);
  flex: 0 1 calc(50% - 60px);
}

.header__navigation-nav-link {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header__navigation-nav-link:active {
  color: rgba(165, 150, 255, 1) !important;
}

.header__phone-mobile {
  display: none;
}

.header__open-menu {
  display: none;
}

.header__navigation-close {
  display: none;
}

.header__nav-btn-arrow {
  display: none;
}

.header__navigation-tab-arrow {
  display: none;
}

.header__bottom-mobile {
  display: none;
}

/* promo */
.promo {
  position: relative;
  background-image: url("../img/sections/promo/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 0 80px;
  overflow: hidden;
}

.promo_service {
  padding: 0 0 80px 0;
  overflow: initial;
}

.promo::after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 67, 255, 0.01)), to(rgba(0, 67, 255, 0.01))), #fff;
  background: -o-linear-gradient(bottom, rgba(0, 67, 255, 0.01) 0%, rgba(0, 67, 255, 0.01) 100%), #fff;
  background: linear-gradient(0deg, rgba(0, 67, 255, 0.01) 0%, rgba(0, 67, 255, 0.01) 100%), #fff;
  -webkit-filter: blur(15px);
  filter: blur(15px);
  position: absolute;
  bottom: -64px;
  left: -60px;
  right: -60px;
  height: 94px;
}

.promo_service::after {
  left: 0;
  right: 0;
}

.promo__title {
  max-width: 932px;
  margin: 0 auto 15px;
}

.promo__descr {
  max-width: 874px;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  margin: 0 auto 50px;
}

.promo__services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  max-width: 960px;
  margin: 0 auto 60px;
}

.promo__service {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 20px;
  background-color: #0072ff;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  color: #fff;
  text-align: center;
  -webkit-transition:
      background-color 0.2s ease,
      -webkit-box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      -webkit-box-shadow 0.2s ease;
  -o-transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease;
  transition:
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      -webkit-box-shadow 0.2s ease;
}

.promo__service:active {
  background-color: #0083ff !important;
}

.promo__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 32px;
  /*background-image: url("../img/sections/promo/advantages-background.jpg");*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.promo__advantage {
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.promo__advantage::after {
  content: "";
  display: block;
  margin: 0 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2px;
  flex: 0 0 2px;
  height: 100%;
  background-color: rgba(2, 6, 16, 0.4);
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
}

.promo__advantage:last-child:after {
  display: none;
}

/* prices */
.prices {
  margin-bottom: 40px;
}

.prices__wrapper {
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #0072ff;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0px 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(1, 59, 221, 0.3);
}

.price:last-child {
  margin-bottom: 0;
  border: initial;
}

.price__info {
  max-width: 692px;
  margin-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.price__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 12px;
}

.price__text {
  font-size: 18px;
  line-height: 140%;
}

.price__send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 30px;
  border: 2px solid #18d398;
  border-radius: 300px;
  height: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 16px 30px;
}

.price__num {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.prices-page {
  margin-bottom: 30px;
}

.prices-page__accor {
  border-radius: 20px;
  border: 2px solid #1c63ee;
  margin-bottom: 20px;
}

.prices-page__accor:last-child {
  margin-bottom: 0;
}

.prices-page__accor-title {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 35px;
}

.prices-page__accor-title-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
}

.prices-page__accor-open {
  padding: 15px 30px;
  background-color: #fff;
  border: 2px solid #1c63ee;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.prices-page__accor-open:active {
  background-color: rgba(28, 99, 238, 0.08) !important;
}

.prices-page__accor.active .prices-page__accor-open {
  background-color: #1c63ee;
}

.prices-page__accor.active .prices-page__accor-open:active {
  background-color: #0083ff !important;
}

.prices-page__accor-open-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #1c63ee;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.prices-page__accor.active .prices-page__accor-open-text {
  color: rgba(255, 255, 255, 0.9);
}

.prices-page__info-wrapper {
  padding: 10px 40px 50px;
}

.prices-page__accor-open-icon {
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.prices-page__accor.active .prices-page__accor-open-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.prices-page__accor-open-icon path {
  -webkit-transition: fill 0.2s ease;
  -o-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}

.prices-page__accor.active .prices-page__accor-open-icon path {
  fill: rgba(255, 255, 255, 0.9);
}

/* consultation */
.consultation__wrapper {
  background-image: url("../img/sections/consultation/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 60px 70px;
}

.consultation_promo {
  position: relative;
  z-index: 10;
  margin-top: 40px;
  overflow: initial;
}

.consultation__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
  color: #fff;
  margin-bottom: 30px;
}

.consultation_promo .consultation__title {
  margin-bottom: 5px;
}

.consultation__form-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.consultation__descr {
  margin-bottom: 30px;
}

/* steps */
.steps__pagination {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 1fr 14px 1fr 14px 1fr 14px 1fr 14px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}

.steps__pagination-btn {
  position: relative;
  margin: 0 !important;
  padding: 28px 28px 20px !important;
  width: initial;
  height: initial;
  border-radius: 10px;
  background-color: #0083ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  border-radius: 16px;
  -webkit-transition:
      background-color 0.2s ease,
      -webkit-transform 0.2s ease;
  transition:
      background-color 0.2s ease,
      -webkit-transform 0.2s ease;
  -o-transition:
      transform 0.2s ease,
      background-color 0.2s ease;
  transition:
      transform 0.2s ease,
      background-color 0.2s ease;
  transition:
      transform 0.2s ease,
      background-color 0.2s ease,
      -webkit-transform 0.2s ease;
}

.steps__pagination-btn:active {
  background-color: #1c63ee !important;
}

.steps__pagination-btn.swiper-pagination-bullet-active {
  background-color: #013bdd;
  pointer-events: none;
}

.steps__pagination-btn-num {
  position: absolute;
  top: 3px;
  left: 3px;
  padding: 7px 15px;
  background-color: #fff;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}

.steps__pagination-btn-img {
  margin-bottom: 20px;
}

.steps__pagination-btn-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #fff;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.step__num {
  font-size: 64px;
  font-weight: 700;
  line-height: 130%;
  margin-right: 30px;
  padding: 3px 22px;
  border: 6px solid #0072ff;
  border-radius: 40px;
}

.step__info {
  margin-right: 80px;
}

.step__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 5px;
}

.step__subtitle {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 15px;
}

.step__descr {
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 27px;
}

.step__picture {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 250px;
  flex: 0 0 250px;
  border-radius: 20px;
  overflow: hidden;
}

.step__img {
  border-radius: 20px;
  border: 8px solid rgba(131, 193, 255, 0.3);
}

/* services */
.services__title {
  margin-bottom: 5px;
}

.service {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0072ff;
  border-radius: 20px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.service:active {
  background-color: #1c63ee !important;
}

.service__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 60px 60px;
  mask-size: 60px 60px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  margin-bottom: 20px;
}

.service__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 10px;
}

.service__descr {
  font-size: 18px;
  line-height: 23px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* callback */
.callback {
  background-image: url("../img/sections/callback/background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.callback__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.callback__wrapper {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 850px;
  margin-right: 24px;
}

.callback__title {
  margin-bottom: 10px;
}

.callback__descr {
  margin-bottom: 30px;
}

.callback__form-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 20px;
}

.callback__picture {
  margin-top: -26px;
}

/* documents */
.documents__slider-container {
  margin-bottom: 60px;
}

.document {
  overflow: hidden;
  border-radius: 10px;
  height: auto;
}

.document__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* gallery */
.gallery__slider-container {
  margin-bottom: 60px;
}

.gallery .gallery__slide {
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.gallery__slide.swiper-slide-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition: -webkit-filter 0.2s ease;
  transition: -webkit-filter 0.2s ease;
  -o-transition: filter 0.2s ease;
  transition: filter 0.2s ease;
  transition: filter 0.2s ease, -webkit-filter 0.2s ease;
}

.gallery__slide.swiper-slide-active .gallery__img {
  -webkit-filter: blur(0);
  filter: blur(0);
}

/* faq */
.question {
  border-radius: 40px;
  overflow: hidden;
  background-color: #1c63ee;
  margin-bottom: 15px;
  padding: 5px;
}

.question:last-child {
  margin-bottom: 0;
}

.question__title {
  width: 100%;
  padding: 15px 40px 15px;
  text-align: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.question__title-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.9);
  margin-right: 20px;
}

.question__info-wrapper {
  padding: 15px 35px;
  border-radius: 35px;
  background-color: #f6f9ff;
}

/* reviews */
.reviews__slider-container {
  margin-bottom: 40px;
}

.review {
  padding: 40px;
  background-color: #0072ff;
  border-radius: 30px;
  opacity: 0.4;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.review_page {
  cursor: initial;
  opacity: 1;
  margin-bottom: 15px;
}

.review_page:last-child {
  margin-bottom: 0;
}

.review.swiper-slide-active {
  opacity: 1;
  cursor: initial;
}

.review__content {
  margin-bottom: 25px;
}

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

.review__user-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

.review__user-age {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.9);
}

.review__date {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.7);
}

/* connection */
.connection__wrapper {
  background-color: #013bdd;
  border-radius: 20px;
  padding: 20px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.connection__form {
  max-width: 814px;
  padding: 40px 60px 40px 0;
  margin-right: 60px;
  border-right: 2px solid #a5d9ff;
}

.connection__form-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5px;
}

.connection__form-descr {
  font-size: 20px;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

.connection__form-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.connection__info {
  padding: 40px 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.connection__info-link {
  text-align: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.connection__info-link:last-child {
  margin-bottom: 0;
}

.connection__info-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.8);
}

/* footer */
.footer {
  padding: 60px 0;
  background-color: #1c63ee;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__logo {
  margin-bottom: 40px;
}

.footer__search .search__input {
  height: 45px;
}

.footer__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer__item-li {
  margin-bottom: 6px;
}

.footer__item-li:last-child {
  margin-bottom: 0;
}

.footer__item-link,
.footer__item ul li a {
  font-size: 18px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer__item-link:active,
.footer__item ul li a:active {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer__phone {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.footer__btn {
  margin-top: 20px;
  margin-bottom: 30px;
}

.footer__socials-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer__socials-list {
  padding: 14px;
  border-radius: 60px;
  background-color: #013bdd;
}

.footer__btns-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.footer__btns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  word-break: break-all;
  text-align: initial;
}

.footer__btns-item svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}

.footer__btns-item:last-child svg {
  margin-right: 0;
  margin-left: 10px;
}

.footer__copyright-text {
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 10px;
}

.footer__copyright-text:last-child {
  margin-bottom: 0;
}

/* doctors */
.doctors__slider-container {
  margin-bottom: 40px;
}

.doctor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  border: 2px solid #1c63ee;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.doctor__preview {
  border-radius: 18px 18px 18px 0px;
  position: relative;
  overflow: hidden;
}

.doctor__picture {
  height: 356px;
}

.doctor__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.doctor__exp {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 20px;
  border-radius: 0px 40px 40px 0px;
  background-color: #1c63ee;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  color: #fff;
}

.doctor__content {
  padding: 20px 30px 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.doctor__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: #26292f;
  margin-bottom: 6px;
}

.doctor__role {
  font-size: 18px;
  line-height: 140%;
  color: #565860;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 25px;
}

.doctor__btn {
  width: 100%;
  position: relative;
  z-index: 10;
}

.doctor__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* promotions */
.promotion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border: 2px solid #1c63ee;
  border-radius: 20px;
  overflow: hidden;
}

.promotion__picture {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 268px;
  flex: 0 0 268px;
  border-radius: 20px;
  overflow: hidden;
}

.promotion__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.promotion__content {
  padding: 20px 40px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.promotion__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  color: #1c63ee;
  margin-bottom: 8px;
}

.promotion__descr {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 24px;
}

/* doctor-detail */
.doctor-detail__preview {
  padding: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  border: 2px solid #1c63ee;
  margin-bottom: 30px;
}

.doctor-detail__picture {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 330px;
  flex: 0 0 330px;
  width: 330px;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 50px;
}

.doctor-detail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.doctor-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30px 50px 30px 0;
}

.doctor-detail__name {
  margin-bottom: 20px;
}

.doctor-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  max-width: 810px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 30px;
}

.doctor-detail__info-title {
  color: #7d8088;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 8px;
}

.doctor-detail__info-descr {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: #1c63ee;
}

.timetable {
  border-radius: 18px;
  padding: 4px;
  background-color: #1c63ee;
}

.timetable__title {
  padding: 16px 26px 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 15px;
}

.timetable__wrapper {
  padding: 20px 30px;
  background-color: #f6f9ff;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.timetable__subtitle {
  font-size: 16px;
  line-height: 130%;
  color: #565860;
  margin-bottom: 8px;
}

.timetable__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  color: #43464d;
}

.exp-doctor__block {
  padding: 20px 30px;
  border-radius: 20px;
  background-color: rgba(28, 99, 238, 0.04);
}

.exp-doctor__item {
  margin-bottom: 15px;
}

.exp-doctor__item:last-child {
  margin-bottom: 0;
}

.exp-doctor__text {
  color: #565860;
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 15px;
}

.exp-doctor__text_color {
  color: #7d8088;
}

.exp-doctor__item .exp-doctor__text {
  margin-bottom: 5px;
}

.exp-doctor__item .exp-doctor__text:last-child {
  margin-bottom: 0;
}

.exp-doctor__title {
  color: #1c63ee;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 5px;
}

/* activity */
.activity__wrapper {
  margin-bottom: 30px;
}

/* search-page */
.search-page .search {
  width: 100%;
  margin-bottom: 24px;
}

.search-page .search:last-child {
  margin-bottom: 0;
}

.search-page .search__input {
  height: 45px;
}

.search-page__not-found {
  font-weight: 800;
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 24px;
}

.search-result__link {
  display: inline-block;
  font-weight: 800;
  font-size: 18px;
  line-height: 160%;
  color: #0072ff;
  text-decoration: underline;
  margin-bottom: 16px;
}

.search-result__text {
  font-size: 18px;
  line-height: 160%;
}

@media (min-width: 1025px) {

  /* glob */
  .btn:hover {
      background-color: rgba(24, 211, 152, 0.8);
      -webkit-box-shadow: 0px 0px 20px 0px rgba(24, 211, 152, 0.3);
      box-shadow: 0px 0px 20px 0px rgba(24, 211, 152, 0.3);
  }

  .city-popup__link:hover {
      color: #0083ff;
  }

  .form-policy__link:hover {
      color: #fff;
  }

  .btn-submit:hover {
      -webkit-box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.4);
      box-shadow: 0px 0px 15px 0px rgba(255, 255, 255, 0.4);
  }

  .content-body a:hover {
      color: #0072ff;
  }

  .slider-btn:hover {
      background-color: #0083ff;
  }

  .photo-zoom:hover::after {
      opacity: 1;
      pointer-events: all;
  }

  .breadcrumbs__link:hover {
      color: #1c63ee;
  }

  /* header */
  .header__address:hover .header__address-icon path {
      stroke: #0072ff;
  }

  .header__phone:hover {
      color: #0072ff;
  }

  .social__link:hover {
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      transform: scale(1.1);
  }

  .menu__link:hover {
      color: rgba(255, 255, 255, 0.8);
  }

  .header__nav-btn:hover {
      background-color: rgba(255, 255, 255, 0.9);
  }

  .header__navigation-tab:hover {
      background-color: rgba(165, 217, 255, 0.7);
  }

  .header__navigation-nav-link:hover {
      color: #1c63ee;
  }

  /* promo */
  .promo__service:hover {
      background-color: #1c63ee;
      -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 114, 255, 0.2);
      box-shadow: 0px 0px 20px 0px rgba(0, 114, 255, 0.2);
  }

  /* steps */
  .steps__pagination-btn:hover {
      background-color: #0072ff;
  }

  /* services */
  .service:hover {
      background-color: #0083ff;
  }

  /* footer */
  .footer__item-link:hover,
  .footer__item ul li a:hover {
      color: rgba(255, 255, 255, 0.9);
  }

  /* prices */
  .prices-page__accor-open:hover {
      background-color: rgba(28, 99, 238, 0.04);
  }

  .prices-page__accor.active .prices-page__accor-open:hover {
      background-color: #0072ff;
  }
}

@media (max-width: 1600px) {

  /* glob */
  .slider-btn {
      display: none;
  }
}

@media (max-width: 1200px) {

  /* glob */
  .grid-4-40-100 {
      gap: 40px;
  }

  /* header */
  .header__address-text {
      display: none;
  }

  .menu__list {
      gap: 20px;
  }

  .header__navigation-list {
      gap: 20px 40px;
  }

  .header__navigation-nav-item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 20px);
      flex: 0 1 calc(50% - 20px);
  }

  .header__navigation-list {
      padding: 40px 40px 8px 40px;
  }

  /* steps */
  .steps__pagination {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  }

  /* promotions */
  .promotion__picture {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
      flex: 0 0 180px;
  }
}

@media (max-width: 1024px) {

  /* glob */
  .btn {
      padding: 12px 24px;
      font-size: 16px;
  }

  .btn-submit {
      font-size: 18px;
  }

  .popup__content {
      padding: 80px 20px 30px;
  }

  .city-popup .popup__content {
      padding: 80px 20px 30px;
  }

  .popup__title {
      font-size: 24px;
      font-weight: 700;
      line-height: 130%;
      margin-bottom: 30px;
  }

  .city-popup .popup__title {
      font-size: 24px;
      font-weight: 700;
      line-height: 130%;
      margin-bottom: 30px;
  }

  .form-input {
      padding: 16px 20px;
      height: 54px;
      font-size: 14px;
      line-height: 130%;
  }

  .city-popup__label {
      margin-bottom: 30px;
  }

  .city-popup__input {
      padding: 0 20px;
      height: 54px;
      font-size: 14px;
      line-height: 130%;
  }

  .city-popup__list {
      gap: 8px 20px;
  }

  .city-popup__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 10px);
      flex: 0 1 calc(50% - 10px);
  }

  .page-title {
      font-size: 32px;
      line-height: 42px;
  }

  .section-offset {
      margin-bottom: 50px;
  }

  .section-offset_padding {
      padding: 30px 0;
  }

  h1.section-title {
      font-size: 34px;
      line-height: 45px;
      margin-bottom: 20px;
  }

  h2.section-title,
  p.section-title,
  span.section-title {
      font-size: 28px;
      line-height: 42px;
      margin-bottom: 20px;
  }

  .section-descr {
      font-size: 16px;
      margin-bottom: 20px;
  }

  .reviewer {
      border-radius: 18px;
     /* max-width: -webkit-fit-content;
      max-width: -moz-fit-content;
      /*max-width: fit-content;*/
      max-width: 100%;
      width: initial;
      float: initial;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      gap: 11px;
      padding: 6px;
      margin-left: 0;
      margin-bottom: 15px;
  }

  .reviewer__info {
      padding: 0;
  }

  .reviewer__picture {
      border-radius: 15px;
      width: 135px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 135px;
      flex: 0 0 135px;
  }

  .reviewer .reviewer__title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 5px;
  }

  .reviewer .reviewer__name {
      font-size: 16px;
      margin-bottom: 2px;
  }

  .reviewer .reviewer__role {
      font-size: 12px;
  }

  .reviewer .reviewer__date-title {
      font-size: 12px;
  }

  .reviewer .reviewer__date-descr {
      font-size: 12px;
  }

  .content-body h2 {
      font-size: 28px;
      line-height: 42px;
      margin-bottom: 20px;
  }

  .content-body h3 {
      font-size: 24px;
      margin-bottom: 20px;
  }

  .content-body h4 {
      font-size: 18px;
      margin-bottom: 20px;
  }

  .content-body h5 {
      font-size: 16px;
      margin-bottom: 20px;
  }

  .content-body h6 {
      font-size: 14px;
      margin-bottom: 20px;
  }

  .content-body p {
      font-size: 14px;
      margin-bottom: 20px;
  }

  .content-body blockquote {
      font-size: 14px;
      padding: 15px 30px;
      border-width: 1px;
      margin-bottom: 20px;
  }

  .content-body blockquote::before {
      top: 15px;
      left: 5px;
      width: 15px;
      height: 10px;
      background-size: 15px 10px;
  }

  .content-body blockquote::after {
      bottom: 15px;
      right: 5px;
      width: 15px;
      height: 10px;
      background-size: 15px 10px;
  }

  .content-body ul {
      margin-bottom: 20px;
  }

  .content-body ul li {
      padding-left: 30px;
      font-size: 14px;
      margin-bottom: 8px;
  }

  .content-body ul li::after {
      width: 20px;
  }

  .content-body ol {
      margin-bottom: 20px;
  }

  .content-body ol li {
      padding-left: 48px;
  }

  .content-body ol li::after {
      width: 36px;
      height: 36px;
      top: 0;
      font-size: 18px;
  }

  .content-body a {
      font-size: 14px;
  }

  .accor-open-decor {
      width: 30px;
      height: 30px;
  }

  .accor-open-decor::after {
      height: 12px;
  }

  .accor-open-decor::before {
      width: 12px;
  }

  .background-close {
      display: none;
  }

  .breadcrumbs {
      padding: 30px 0 20px;
  }

  .grid-2-20-20 {
      gap: 10px;
  }

  .grid-3-20-20 {
      -ms-grid-columns: 1fr 10px 1fr;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }

  .grid-4-40-100 {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  }

  /* contraindications */
  .contraindications__text {
      font-size: 12px;
      font-weight: 400;
      line-height: 130%;
  }

  .contraindications__decor {
      font-size: 14px;
      line-height: 130%;
  }

  /* header */
  .header {
      top: 0 !important;
      border-radius: 0px 0px 10px 10px;
      background-color: #f0f3ff;
      -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  }

  .header__top-container {
      -webkit-box-pack: initial;
      -ms-flex-pack: initial;
      justify-content: initial;
  }

  .header__top-item {
      width: 100%;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      gap: 20px;
  }

  .header__top-item:last-child {
      display: none;
  }

  .header__phone-mobile {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
  }

  .header__open-menu {
      display: block;
  }

  .header__top-item-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 20px;
  }

  .logo__img {
      width: 140px;
  }

  .header__bottom {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 30px 0;
      overflow: auto;
      -webkit-transform: translateX(-110%);
      -ms-transform: translateX(-110%);
      transform: translateX(-110%);
      -webkit-transition: -webkit-transform 0.2s ease;
      transition: -webkit-transform 0.2s ease;
      -o-transition: transform 0.2s ease;
      transition: transform 0.2s ease;
      transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }

  .header.active .header__bottom {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
  }

  .header__bottom-container {
      display: block;
  }

  .header__navigation {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  }

  .header__navigation-close {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      margin-bottom: 24px;
  }

  .search {
      width: 100%;
  }

  .search__input {
      height: 53px;
  }

  .header__navigation-wrapper {
      margin-bottom: 30px;
  }

  .header__nav-btn-arrow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
  }

  .header__nav-btn-decor {
      display: none;
  }

  .header__nav-btn {
      width: 100%;
      border-radius: 30px;
      border: 2px solid rgba(255, 255, 255, 0.9);
      padding: 12px 20px;
      background-color: transparent;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 10px;
  }

  .header__nav-btn-text {
      color: #fff;
  }

  .menu__list {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 20px;
  }

  .menu__item {
      -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 10px);
      flex: 0 1 calc(50% - 10px);
  }

  .header__nav-btn:active {
      background-color: transparent !important;
  }

  .header__navigation-dropdown {
      margin-top: 10px;
      position: initial;
      -webkit-transform: translate(0);
      -ms-transform: translate(0);
      transform: translate(0);
      height: initial !important;
      border-radius: 15px;
      padding: 20px 15px;
      background-color: rgba(255, 255, 255, 0.9);
      display: none;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: opacity 0.2s ease;
      -o-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease;
  }

  .header__navigation-wrapper.active .header__navigation-dropdown {
      display: block;
      opacity: 1;
      visibility: visible;
  }

  .header__navigation-list {
      position: initial;
      display: none;
  }

  .header__navigation-tab {
      padding: 0;
      width: 100%;
      background-color: initial;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      gap: 16px;
  }

  .header__navigation-tab-arrow {
      display: block;
      -webkit-transition: -webkit-transform 0.2s ease;
      transition: -webkit-transform 0.2s ease;
      -o-transition: transform 0.2s ease;
      transition: transform 0.2s ease;
      transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }

  .header__navigation-content-item.active .header__navigation-tab-arrow {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  }

  .header__navigation-tab:active {
      background-color: initial !important;
  }

  .header__navigation-content-item.active .header__navigation-tab {
      background-color: initial;
  }

  .header__navigation-tab-icon {
      display: none;
  }

  .header__navigation-tab-text {
      font-size: 16px;
      font-weight: 500;
      line-height: 130%;
      color: #1c63ee;
  }

  .header__navigation-content-item.active .header__navigation-tab-text {
      color: #1c63ee;
  }

  .header__navigation-list {
      padding: 12px 10px 0;
  }

  .header__navigation-content-item.active .header__navigation-list {
      display: block;
  }

  .header__navigation-nav-link {
      font-size: 14px;
      line-height: 130%;
      color: #0072ff;
  }

  .header__navigation-nav-item {
      margin-bottom: 8px;
  }

  .header__navigation-nav-item:last-child {
      margin-bottom: 0;
  }

  .header__navigation-content-item {
      margin-bottom: 15px;
  }

  .header__navigation-content-item:last-child {
      margin-bottom: 0;
  }

  .header__bottom-mobile {
      display: block;
  }

  .header__menu {
      margin-bottom: 40px;
  }

  .header__mobile-btn {
      font-size: 18px;
      width: 100%;
      margin-bottom: 20px;
      padding: 15px 20px;
  }

  .header__mobile-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      gap: 24px;
  }

  .header__mobile-socials {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 15px;
  }

  .header__mobile-address {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 20px;
  }

  .header__mobile-connection {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
  }

  .header__mobile-address-icon {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      margin-right: 8px;
  }

  .header__mobile-address-text {
      font-size: 16px;
      font-weight: 500;
      line-height: 130%;
      color: rgba(255, 255, 255, 0.9);
  }

  .header__mobile-phone {
      display: block;
      font-size: 20px;
      font-weight: 700;
      line-height: 130%;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 5px;
  }

  .header__mobile-phone:last-child {
      margin-bottom: 0;
  }

  /* promo */
  .promo {
      padding: 40px 0 70px;
  }

  .promo_service {
      padding: 0;
  }

  .promo::after {
      height: 44px;
      bottom: -14px;
  }

  .promo__title {
      margin-bottom: 15px;
  }

  .promo__descr {
      font-size: 16px;
      line-height: 130%;
      margin-bottom: 25px;
  }

  .promo__services {
      gap: 10px;
      margin-bottom: 30px;
  }

  .promo__service {
      border-radius: 15px;
      padding: 15px 30px;
  }

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

  .promo__advantage {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 20px 2px;
      grid-template-columns: 1fr 2px;
      gap: 20px;
  }

  .promo__advantage::after {
      -webkit-transform: initial;
      -ms-transform: initial;
      transform: initial;
      width: 2px;
      margin: 0;
  }

  .promo__advantage:nth-child(3n)::after {
      display: none;
  }

  /* prices */
  .prices {
      margin-bottom: 30px;
  }

  .prices__wrapper {
      border-radius: 15px;
      padding: 20px;
  }

  .price {
      padding: 0;
      border: initial;
      margin-bottom: 30px;
  }

  .price__info {
      margin-right: 20px;
  }

  .price__title {
      font-size: 18px;
      line-height: 23px;
      margin-bottom: 0;
  }

  .price__text {
      font-size: 14px;
      line-height: 130%;
  }

  .price__send {
      padding-left: 20px;
      gap: 10px 20px;
  }

  .price__num {
      font-size: 18px;
      line-height: 23px;
  }

  .prices-page__accor {
      margin-bottom: 10px;
  }

  .prices-page__accor-title {
      padding: 20px;
  }

  .prices-page__accor-title-text {
      font-size: 20px;
      line-height: 28px;
  }

  .prices-page__accor-open {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 36px;
      flex: 0 0 36px;
      width: 36px;
      height: 36px;
      padding: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      border-width: 1px;
  }

  .prices-page__accor-open-text {
      display: none;
  }

  .prices-page__info-wrapper {
      padding: 10px 20px 20px;
  }

  /* consultation */
  .consultation__wrapper {
      margin: 0 -15px;
      border-radius: 15px;
      padding: 30px 15px;
      background: #013bdd;
  }

  .consultation__title {
      font-size: 24px;
  }

  .consultation__form-wrapper {
      gap: 10px;
      margin-bottom: 10px;
  }

  /* steps */
  .steps__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  }

  .steps__pagination {
      margin-bottom: 0;
  }

  .steps__slider {
      margin-bottom: 20px;
      max-width: 100%;
  }

  .step__num {
      font-size: 24px;
      border-radius: 50%;
      padding: 2px 11px;
      margin-right: 10px;
  }

  .step__info {
      margin-right: 0;
  }

  .step__title {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 5px;
  }

  .step__subtitle {
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 10px;
  }

  .step__descr {
      font-size: 14px;
      margin-bottom: 20px;
  }

  .step__picture {
      display: none;
  }

  .step__button {
      padding: 20px;
      width: 100%;
  }

  .steps__pagination {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
  }

  .steps__pagination-btn {
      padding: 5px 9px 3px !important;
      border-radius: 50%;
      background-color: #a5d9ff;
  }

  .steps__pagination-btn.swiper-pagination-bullet-active {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
      background-color: #013bdd;
  }

  .steps__pagination-btn-num {
      position: initial;
      background-color: initial;
      font-size: 12px;
      font-weight: 500;
      border-radius: initial;
      padding: 0;
  }

  .steps__pagination-btn.swiper-pagination-bullet-active .steps__pagination-btn-num {
      color: #fff;
  }

  .steps__pagination-btn-img {
      display: none;
  }

  .steps__pagination-btn-text {
      display: none;
  }

  /* services */
  .services__title {
      margin-bottom: 5px;
  }

  .services__container {
      padding: 0;
  }

  .services__title {
      padding: 0 15px;
  }

  .services__descr {
      padding: 0 15px;
  }

  .services__slider {
      padding: 0 15px;
      margin-bottom: 20px;
  }

  .service {
      padding: 20px;
  }

  .service__title {
      font-size: 18px;
      line-height: 23px;
      margin-bottom: 10px;
  }

  .service__descr {
      font-size: 14px;
      line-height: 18px;
  }

  .services__slider-pagination {
      padding: 0 15px;
  }

  /* callback */
  .callback {
      background: #013bdd;
      border-radius: 15px;
  }

  .callback__picture {
      display: none;
  }

  .callback__wrapper {
      margin-right: 0;
      max-width: initial;
  }

  .callback__form-wrapper {
      gap: 15px;
  }

  .callback__title {
      margin-bottom: 5px;
  }

  /* documents */
  .documents__slider-container {
      margin-bottom: 20px;
  }

  .documents__slider-btn {
      display: none;
  }

  .documents__container {
      padding: 0;
  }

  .documents__title {
      padding: 0 15px;
  }

  .documents__slider {
      padding: 0 15px;
  }

  .documents__slider-pagination {
      padding: 0 15px;
  }

  /* gallery */
  .gallery__container {
      padding: 0;
  }

  .gallery__title {
      padding: 0 15px;
  }

  .gallery__slider-container {
      margin-bottom: 20px;
  }

  .gallery__slider {
      padding: 0 15px;
  }

  .gallery__slider-pagination {
      padding: 0 15px;
  }

  /* faq */
  .question {
      padding: 3px;
      border-radius: 15px;
      margin-bottom: 10px;
  }

  .question:last-child {
      margin-bottom: 0;
  }

  .question__title {
      padding: 12px 17px 15px;
  }

  .question__title-text {
      font-size: 16px;
      line-height: 20px;
  }

  .question__info-wrapper {
      border-radius: 12px;
      padding: 17px;
  }

  /* reviews */
  .reviews__container {
      padding: 0;
  }

  .reviews__title {
      padding: 0 15px;
  }

  .reviews__slider {
      padding: 0 15px;
  }

  .reviews__slider-pagination {
      padding: 0 15px;
  }

  .reviews__slider-container {
      margin-bottom: 20px;
  }

  .review {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      height: auto;
      padding: 20px;
      border-radius: 15px;
  }

  .review_page {
      margin-bottom: 10px;
  }

  .review__content {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      margin-bottom: 15px;
  }

  .review__info {
      display: block;
  }

  .review__user {
      margin-bottom: 10px;
  }

  .review__user-name {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 5px;
  }

  .review__user-age {
      font-size: 14px;
      font-weight: 700;
  }

  .review__date {
      font-size: 14px;
  }

  /* connection */
  .connection__container {
      padding: 0;
  }

  .connection__wrapper {
      padding: 30px 15px;
      display: block;
      border-radius: 15px;
  }

  .connection__title {
      padding: 0 15px;
  }

  .connection__form {
      padding: 0 0 20px 0;
      margin: 0 0 20px 0;
      border-right: none;
      border-bottom: 2px solid #a5d9ff;
      max-width: initial;
  }

  .connection__info {
      padding: 0;
  }

  .connection__info-link {
      margin-bottom: 20px;
  }

  .connection__info-icon {
      width: 20px;
      height: 20px;
  }

  .connection__info-text {
      font-size: 16px;
      font-weight: 500;
      line-height: 130%;
  }

  .connection__form-title {
      font-size: 20px;
      margin-bottom: 10px;
  }

  .connection__form-descr {
      font-size: 16px;
      line-height: 20px;
  }

  /* footer */
  .footer {
      padding: 50px 0;
      border-radius: 15px 15px 0px 0px;
  }

  .footer__logo {
      margin-bottom: 25px;
  }

  .footer__logo .logo__img {
      width: 190px;
  }

  .footer__wrapper {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 30px 1fr;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }

  .footer__item-title {
      margin-bottom: 15px;
  }

  .footer__btns-group {
      gap: 6px;
      margin-bottom: 30px;
  }

  .footer__item-link,
  .footer__item ul li a {
      font-size: 16px;
  }

  .footer__btns-item {
      padding: 10px 20px;
  }

  /* doctors */
  .doctors__container {
      padding: 0;
  }

  .doctors__title {
      padding: 0 15px;
  }

  .doctors__slider {
      padding: 0 15px;
  }

  .doctor__picture {
      height: 308px;
  }

  .doctor__exp {
      padding: 12px 15px;
      font-size: 14px;
  }

  .doctor__content {
      padding: 20px 16px 30px;
  }

  .doctor__name {
      font-size: 20px;
  }

  .doctor__role {
      font-size: 16px;
      margin-bottom: 20px;
  }

  .doctors__slider-container {
      margin-bottom: 30px;
  }

  /* promotions */
  .promotion {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 15px;
  }

  .promotion__picture {
      width: 100%;
  }

  .promotion__content {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      padding: 0 20px 30px;
  }

  .promotion__title {
      font-size: 20px;
  }

  .promotion__descr {
      font-size: 14px;
      margin-bottom: 20px;
  }

  /* doctor-detail */
  .doctor-detail__preview {
      display: block;
  }

  .doctor-detail__picture {
      margin-right: 0;
      margin-bottom: 20px;
  }

  .doctor-detail__content {
      padding: 0 10px 20px;
  }

  .doctor-detail__name {
      margin-bottom: 15px;
  }

  .doctor-detail__info {
      gap: 12px;
  }

  .doctor-detail__info-title {
      font-size: 14px;
      margin-bottom: 2px;
  }

  .doctor-detail__info-descr {
      font-size: 16px;
  }

  .timetable__wrapper {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  }

  .timetable__title {
      font-size: 20px;
      padding: 16px 16px 0;
  }

  .timetable__wrapper {
      padding: 16px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 10px;
  }

  .timetable__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      gap: 8px;
  }

  .timetable__subtitle {
      margin-bottom: 0;
  }

  .timetable__text {
      text-align: right;
  }

  .exp-doctor__block {
      padding: 20px 15px;
  }

  .exp-doctor__text {
      font-size: 14px;
      margin-bottom: 12px;
  }

  .exp-doctor__title {
      font-size: 16px;
  }

  /* activity */
  .activity__wrapper {
      margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .footer__wrapper {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 1fr 30px 1fr;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
}
@media (max-width: 767px) {

  /* glob */
  .grid-4-40-100 {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  }

  /* promo */
  .promo__services {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  }

  .promo__advantages {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  .promo__advantage {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
      text-align: center;
  }

  .promo__advantage::after {
      width: 100%;
      height: 1px;
  }

  .promo__advantage:nth-child(3n)::after {
      display: block;
  }

  .promo__advantage:last-child::after {
      display: none;
  }

  /* prices */
  .price {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
  }

  .price__info {
      margin-right: 0;
      margin-bottom: 15px;
  }

  /* consultation */
  .consultation__form-wrapper {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  span.not-found-code {
      font-size: 250px;
      font-weight: 500;
      color: rgb(0 0 0 / 80%);
  }
}

@media (max-width: 575px) {
  span.not-found-code {
      font-size: 160px;
      font-weight: 500;
      color: rgb(0 0 0 / 80%);
  }

  /* glob */
  .city-popup__list {
      display: block;
  }

  .city-popup__item {
      margin-bottom: 8px;
  }

  .city-popup__item:last-child {
      margin-bottom: 0;
  }

  .grid-2-20-20 {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  .grid-3-20-20 {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  .grid-4-40-100 {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  /* promo */
  .promo__services {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  /* callback */
  .callback__form-wrapper {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
      margin-bottom: 10px;
  }

  /* gallery */
  .gallery .gallery__slide {
      -webkit-transform: initial;
      -ms-transform: initial;
      transform: initial;
  }

  .gallery__img {
      -webkit-filter: blur(0);
      filter: blur(0);
  }

  /* consultation */
  .connection__form-wrapper {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
      gap: 10px;
  }

  /* footer */
  .footer__wrapper {
      -ms-grid-columns: initial;
      grid-template-columns: initial;
  }

  .footer__btns-group {
      display: block;
  }

  .footer__btns-item {
      width: 100%;
      margin-bottom: 6px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
  }

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

  /* doctor-detail */
  .doctor-detail__info {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }

  .doctor-detail__picture {
      width: 100%;
  }

  /* activity */
  .activity__btn {
      width: 100%;
  }
}

.review__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.review__form .consultation__form-wrapper {
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  row-gap: 30px;
}

.review__form .consultation__form-wrapper textarea {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: 2 / 1 / 2 / 4;
}

.review__form button.btn-submit {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0.5em 0;
}

.review__form {
  text-align: center;
}

.review__form .consultation__form-label {
  margin: 0 10px;
}

@media (max-width: 760px) {
  .page-title {
      font-size: 20px;
      line-height: 24px;
  }

  h1.section-title {
      font-size: 32px;
      line-height: 41px;
      margin-bottom: 20px;
  }

  h2.section-title,
  p.section-title,
  span.section-title,
  .content-body h2 {
      font-size: 24px;
      line-height: 31px;
      margin-bottom: 20px;
  }

  .content-body h3 {
      font-size: 20px;
      margin-bottom: 20px;
  }

  .prices-page__accor-title-text {
      font-size: 20px;
      line-height: 23px;
  }
}

.container__flex.flex-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.container__flex.flex-contacts .flex__item_content {
  background: rgba(242, 243, 246, 1);
  border-radius: 30px;
  padding: 50px;
  gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 873px;
}

.container__flex.flex-contacts .flex__item_form {
  background: rgba(1, 59, 221, 1);
  padding: 30px;
  border-radius: 30px;
}

.container__flex.flex-contacts .flex__item_form .consultation__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.container__flex.flex-contacts .flex__item_form .form__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.container__flex.flex-contacts .flex__item_form .consultation__form-policy {
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

.flex__item_content .content__phone a,
.flex__item_content .content__mail a,
.flex__item_content .content__addres span {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  color: #000;
}

.addres__content p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  text-align: left;
  color: #000;
}

.flex-contacts .flex__item_content .phone::before {
  content: url("/netcat_template/template/domains/assets/img/icons/contact-icons/icon-phone.svg");
}

.flex-contacts .flex__item_content .mail::before {
  content: url("/netcat_template/template/domains/assets/img/icons/contact-icons/icon-mail.svg");
}

.flex-contacts .flex__item_content .addres::before {
  content: url("/netcat_template/template/domains/assets/img/icons/contact-icons/icon-addres.svg");
}

.flex-contacts .flex__item_content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 15px;
}

@media (max-width: 980px) {
  .container__flex.flex-contacts {
      gap: 15px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }

  .container__flex.flex-contacts .flex__item_content {
      max-width: -webkit-fit-content;
      max-width: -moz-fit-content;
      max-width: fit-content;
      padding: 20px;
      gap: 20px;
  }

  .flex__item_content .content__phone a,
  .flex__item_content .content__mail a,
  .flex__item_content .content__addres span,
  .addres__content p {
      font-size: 14px;
      line-height: 18px;
  }

  .container__flex.flex-contacts .flex__item_form .form__title {
      font-size: 24px;
      line-height: 31px;
      margin-bottom: 25px;
  }

  .container__flex.flex-contacts .flex__item_form {
      padding: 15px;
  }

  .container__flex.flex-contacts {
      -webkit-box-align: stretch;
      -ms-flex-align: stretch;
      align-items: stretch;
  }
}

.footer__btns-item.btn-submit {
  color: #000;
}

/* programm */
.programm__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1350px;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.programm__item {
  -ms-flex-preferred-size: calc((100% - 15px) / 4);
  flex-basis: calc((100% - 15px) / 4);
  max-width: calc((100% - 15px) / 4);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #0072ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition:
      border-coloe 0.3s ease,
      background-color 0.3s ease,
      color 0.3s ease;
  -o-transition:
      border-coloe 0.3s ease,
      background-color 0.3s ease,
      color 0.3s ease;
  transition:
      border-coloe 0.3s ease,
      background-color 0.3s ease,
      color 0.3s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.programm__item:hover {
  background-color: #0072ff;
  color: #fff;
}

.programm__item:hover .programm__item ul li:before {
  background-color: #fff;
}

.programm__item:hover .programm__item-cost-old::before {
  background-color: #fff;
}

.programm__item:hover .programm__item-cost-old {
  color: rgba(255, 255, 255, 0.8);
}

.programm__item:hover .programm__item-btn {
  background-color: #fff;
}

.programm__item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
}

.programm__item ul li {
  position: relative;
  padding-left: 25px;
}

.programm__item ul li:before {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 5px;
  border-radius: 10px;
  left: 0;
  top: 6px;
  background-color: #1c63ee;
}

.programm__item-title__wrap span {
  font-size: 20px;
  font-weight: 400;
}

.programm__item-title__wrap h3 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 32px;
}

.programm__item-cost__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.programm__item-cost {
  font-size: 24px;
  font-weight: 600;
}

.programm__item-cost-old {
  font-size: 24px;
  font-weight: 400;
  position: relative;
}

.programm__item-cost-old::before {
  content: "";
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #ff0000;
}

.programm__item-btn {
  width: 100%;
}

/* programm media */
@media (max-width: 980px) {
  .programm__item {
      min-width: 275px;
      gap: 15px;
      padding: 10px;
      border-radius: 10px;
  }

  .programm__item {
      -ms-flex-preferred-size: calc((100% - 7.5px) / 4);
      flex-basis: calc((100% - 7.5px) / 4);
      max-width: calc((100% - 7.5px) / 4);
  }

  .programm__inner {
      overflow: auto;
      padding-bottom: 10px;
      gap: 10px;
  }
}

::-webkit-scrollbar-button {
  width: 10px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #0072ff;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #18d398;
}

::-webkit-resizer {
  width: 8px;
  height: 0px;
}

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

/* articles */

.articles__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 100%;
  gap: 20px;
}

.articles__wrapper>* {
  -ms-flex-preferred-size: calc(33.3333% - 13.3333px);
  flex-basis: calc(33.3333% - 13.3333px);
}

.articles__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #d0d3dc;
}

.articles__item picture {
  border-radius: 20px;
  position: relative;
}

.articles__item picture img {
  border-radius: 20px;
  max-height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.articles__tag {
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #ffffff26;
  padding: 10px;
  border-radius: 40px;
  font-size: 26px;
}

.articles__item-content {
  padding: 20px;
}

.articles__item-title {
  font-weight: 700;
  font-size: 20px;
  color: #26292f;
  margin-bottom: 20px;
}

.articles__item-date {
  color: #8a8a8e;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .articles__wrapper>* {
      -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
  }
}

@media (max-width: 550px) {
  .articles__wrapper>* {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  }
}

/* article detail */
.color-bg {
  background-color: #f2f9ff;
}

.article-detail__intro-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 100px;
}

.article-detail__intro-inner>* {
  -ms-flex-preferred-size: calc(50% - 10px);
  flex-basis: calc(50% - 10px);
}

.article-detail__intro-picture {
  border-radius: 20px;
  width: 100%;
  max-height: 420px;
}

.article-detail__intro-picture img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 420px;
}

.article-detail__intro-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #26292f;
  margin-bottom: 40px;
}

.article-detail__intro-text p {
  color: #26292f;
  line-height: 140%;
}

.navigation__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.navigation__container>* {
  -ms-flex-preferred-size: calc(50% - 10px);
  flex-basis: calc(50% - 10px);
}

.doc-check {
  padding: 30px;
  border-radius: 20px;
  background-color: #F2F9FF;
  border: 1px solid #A5D9FF;
  transition: border-color .3s ease;
}

.doc-check:hover {
  border-color: #2D50D8;
}

.doc-check__picture {
  max-width: 80px;
  max-height: 80px;
  border-radius: 8px;
}

.doc-check__picture img {
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
  min-width: 80px;
  min-height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.doc-check__title {
  font-size: 20px;
  font-weight: 700;
}

.doc-check__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.doc-check__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #D5D9E2;
}

.doc-check__top span {
  color: #565860;
  line-height: 140%;
}

.doctor-reviewer__date {
  color: #9A9DA5;
}

.doc-check__name {
  color: #26292F;
  font-size: 16px;
  font-weight: 600;
}

.doc-check__post,
.doc-check__stage {
  position: relative;
  padding-left: 25px;
  line-height: 140%;
  color: #565860;
}

.doc-check__post::before,
.doc-check__stage::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
}

.doc-check__post::before {
  background: url("/netcat_template/template/domains/assets/img/icons/doc-blue.svg") no-repeat center center / 100%;
  width: 14px;
  height: 16px;
}

.doc-check__stage::before {
  background: url("/netcat_template/template/domains/assets/img/icons/calendar-blue.svg") no-repeat center center / 100%;
  width: 16px;
  height: 16px;
}

.doc-check__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.dock-check__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.title-h2 .navigation__link {
  font-weight: 600;
  color: #26292F
}

.title-h3 .navigation__link,
.title-h4 .navigation__link,
.title-h5 .navigation__link,
.title-h6 .navigation__link {
  padding-left: 50px;
  position: relative;
  color: #565860;
}

.title-h3 .navigation__link::before,
.title-h4 .navigation__link::before,
.title-h5 .navigation__link::before,
.title-h6 .navigation__link::before {
  position: absolute;
  display: block;
  content: "";
  left: 25px;
  top: 8px;
  width: 18px;
  height: 3px;
  background-color: #2D50D8;
  border-radius: 10px;
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.warning__content {
  background-color: #F2F9FF;
  border-radius: 0 20px 20px 0;
  border-left: 2px solid #2D50D8;
  padding: 25px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.warning__text {
  font-size: 28px;
  font-weight: 700;
}

.warning__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.warning__content-wrap p {
  line-height: 140%;
}

.warning__phone {
  background-color: #fff;
  color: #2D50D8;
  border-radius: 60px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 21px;
  font-weight: 700;
  padding-left: 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content
}

.warning__phone::before {
  position: absolute;
  display: block;
  content: "";
  width: 15px;
  height: 15px;
  background: url("/netcat_template/template/domains/assets/img/icons/phone-blue.svg") no-repeat center center / 100%;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

}

.text-section__wrap {
  max-width: 500px;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-left: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 999;
}

.text-section__reviewer.reviewer {
  margin-left: 0;
  margin-bottom: 0;
}

.other-service__block {
  border-radius: 10px;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 2px solid #0072FF;
}

.other-service__list-item {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition:
      max-height 0.5s ease,
      opacity 0.5s ease;
  -o-transition:
      max-height 0.5s ease,
      opacity 0.5s ease;
  transition:
      max-height 0.5s ease,
      opacity 0.5s ease;
}

.other-service__list li {
  padding-left: 0 !important;
}

.other-service__list li::after {
  display: none;
}

.other-service__list-item.active {
  max-height: 500px;
  opacity: 1;
}

.other-service__list-item-title {
  padding-left: 15px;
}

.other-service__block h3 {
  background: #0072FF;
  padding: 24px 20px;
  border-radius: 10px;
  color: #fff;
  margin-bottom: 0;
}

.other-service__list {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
}

.other-service__list-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  position: relative;
}
.contact-mail {
  opacity: 0;
}
.other-service__list>li {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.other-service__list>li::before {
  position: absolute;
  content: "";
  width: 111%;
  height: 1px;
  bottom: 0;
  left: -26px;
  right: -20px;
  background-color: #0072FF;

}

.other-service__list>li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.other-service__list>li:last-child::before {
  display: none;
}

.other-service__list-item-title>a {
  font-size: 18px;
  color: #26292F;
  font-weight: 40px;
  font-weight: 400;
}

.other-service__list-item-title>a:hover {
  color: #0072FF;
}

.other-service__text h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.other-service__text h3 {
  margin-bottom: 30px;
}

.other-service__text p {
  margin-bottom: 20px;
}

.other-service__text p:last-child {
  margin-bottom: 0;
}

.other-service-btn {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 40px;
  height: 40px;
}

.other-service-btn.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media (max-width: 810px) {
  .text-section__wrap {
      margin-left: 0;
      margin-bottom: 20px;
  }
}

@media (max-width: 700px) {

  .other-service__block h3 {
      padding: 20px
  }

  .other-service__list {
      padding: 20px;
  }

  .other-service__list-item-title>a {
      font-size: 14px;
  }

  .other-service__list>li::before {
      display: none;
  }
  .promo {
          background: #edf3f8;
  }
}



.literature__inner ol {
  counter-reset: item;
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  padding-right: 60px;
  border-right: 1px solid #D5D9E2;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}

.literature__inner ol li {
  counter-increment: item;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative
}

.literature__inner ol li:before {
  color: #56AEFF;
  content: counter(item);
  font-size: 20px;
  left: 0;
  position: absolute;
  top: 0
}

.ya-share2__badge {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  background-color: #1C63EE !important;
  border: 1px solid transparent;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 26px !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  border-radius: 5px !important;
  justify-content: center !important;
  -webkit-transition: border-color .3s ease;
  -o-transition: border-color .3s ease;
  transition: border-color .3s ease;
  width: 26px !important
}

.ya-share2__badge:hover {
  border-color: #fff;
}


.ya-share2__item_service_telegram .ya-share2__icon {
  background-image: url("/netcat_template/template/domains/assets/img/icons/tg-white.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  height: 12px !important;
  width: 15px !important
}

.ya-share2__item_service_odnoklassniki .ya-share2__icon {
  background-image: url("/netcat_template/template/domains/assets/img/icons/ok-white.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  height: 15px !important;
  width: 9px !important
}

.ya-share2__item_service_vkontakte .ya-share2__icon {
  background-image: url("/netcat_template/template/domains/assets/img/icons/vk-white.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  height: 9px !important;
  width: 14px !important
}

.copy-link {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  background-color: #1C63EE !important;
  border: 1px solid transparent;
  border-radius: 50%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: 26px !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  border-radius: 5px;
  justify-content: center !important;
  position: relative;
  -webkit-transition: border-color .3s ease;
  -o-transition: border-color .3s ease;
  transition: border-color .3s ease;
  width: 26px !important
}

.copy-link:before {
  background-image: url("/netcat_template/template/domains/assets/img/icons/copy-white.svg") !important;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 16px;
  position: absolute;
  width: 16px
}

.copy-link:hover {
  border-color: #fff;
}

.link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}


.literature__other .rating__star {
  font-size: 35px
}

.literature__other .rating__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px
}

.literature__other .rating__star {
  cursor: pointer;
  -webkit-transition: scale .3s ease;
  -o-transition: scale .3s ease;
  transition: scale .3s ease
}

.literature__other .rating__star:hover {
  scale: 1.1
}

.link__inner {
  background-color: rgba(213, 217, 226, 0.15);
  border-radius: 20px;
  padding: 20px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.literature__other .rating {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background-color: rgba(213, 217, 226, 0.15);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  width: 100%;
  font-weight: 700;
}

.literature__other .rating span {
  width: 28px;
  height: 28px;
  display: block;
}

.literature__other .rating span.active {
  background: url("/netcat_template/template/domains/assets/img/icons/rating-star-active.svg") 50% no-repeat;
  background-size: contain
}

.literature__other .rating span {
  background: url("/netcat_template/template/domains/assets/img/icons/rating-star-unactive.svg") 50% no-repeat;
  background-size: contain
}

.literature__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.literature__other {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  padding-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 950px) {
  .navigation__container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }

  .dock-check__inner {
      gap: 10px;
  }

  .warning__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      border-left: none;
      border-top: 2px solid #0072FF;
      border-radius: 0 0 20px 20px;
  }

  .literature__inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
  }

  .literature__inner ol {
      padding-right: 0;
      border-right: none;
  }

  .literature__other {
      padding-left: 0;
  }
}

@media (max-width: 650px) {
  .article-detail__intro-inner {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
  }

  .article-detail__intro-inner>* {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  }

  .article-detail__intro-text h1 {
      font-size: 32px;
      margin-bottom: 20px;
  }

  .article-detail__intro-text p,
  .navigation__inner,
  .dock-check__inner,
  .warning__content,
  .literature {
      font-size: 14px;
  }

  .doc-check {
      padding: 15px;
  }

  .warning__content {
      padding: 20px;
  }

  .warning__text {
      font-size: 18px;
  }

  .warning__phone {
      font-size: 18px;
      padding: 8px 16px;
      padding-left: 30px;
  }

  .literature__other .rating span {
      width: 20px;
      height: 20px;
  }

  .ya-share2__badge,
  .copy-link {
      width: 20px !important;
      height: 20px !important;
  }

  .ya-share2__list {
      white-space: nowrap !important
  }

  .literature__other {
      gap: 10px;
  }

  .literature__inner ol {
      margin-bottom: 10px;
  }
}

@media (max-width: 550px) {

  .article-detail__intro-picture,
  .article-detail__intro-picture img {
      border-radius: 10px;
      max-height: 180px;
  }
}

h3.section-title.title-h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 62px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
h3.section-title.title-h3 {
font-size: 34px;
line-height: 45px;
margin-bottom: 20px;
}
}

@media (max-width: 760px) {
h3.section-title.title-h3 {
font-size: 32px;
line-height: 41px;
margin-bottom: 20px;
}
}

.section__contents {
  padding-bottom: 35px;
}

.section__contents .contents__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
.section__contents .contents__title {
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 20px;
}
}

@media (max-width: 760px) {
.section__contents .contents__title {
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 20px;
}
}

.section__contents .contents__item {
  padding: 25px 0;
}

@media (max-width: 845px) {
.text-section__wrap {
  max-width: none;
  float: none;
}
.other-service__list>li::before {
  width: 100%;
  left: 0px;
  right: 0px;
}
}

.navigation__container .contents__item .item__link {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  color: #1c63ee;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
}

.navigation__container .contents__item .item__link::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 10px;
  background-color: #1c63ee;
  width: 24px;
  height: 7px;
}

.section__contents .contents-section__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

@media (max-width: 1145px) {
.section__contents .contents-section__button {
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
}
}
.footer__wrapper {
  gap: 15px;
}

@media (max-width: 1024px) {
.literature .content-body a {
  font-size: 18px;
}
}


  .sitemap-wrapper {
      --primary-color: #2c3e50;
      --accent-color: #3498db;
      --transition-timing: 0.25s;
  }

  .sitemap-container {
      max-width: 1280px;
      margin: 2rem auto;
      padding: 0 1rem;
  }

  .sitemap-heading {
      font: 500 2rem/1.2 'Segoe UI', system-ui, sans-serif;
      color: var(--primary-color);
      text-align: center;
      position: relative;
      padding-bottom: 1.5rem;
      margin: 0 0 3rem;
  }

  .sitemap-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--accent-color);
  }

  .sitemap-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.2rem;
      padding: 0;
      list-style: none;
  }

  .sitemap-card {
      background: #fff;
      border-radius: 8px;
      padding: 1.2rem;
      transition: transform var(--transition-timing) ease, box-shadow var(--transition-timing) ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      position: relative;
      overflow: hidden;
  }

  .sitemap-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }

  .sitemap-link {
      text-decoration: none;
      color: var(--primary-color);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.05rem;
  }

  .sitemap-link::before {
      content: '›';
      color: var(--accent-color);
      font-size: 1.4em;
      transition: transform var(--transition-timing) ease;
  }

  .sitemap-card:hover .sitemap-link::before {
      transform: translateX(2px);
  }

  @media (max-width: 768px) {
      .sitemap-grid {
          grid-template-columns: 1fr;
      }
      
      .sitemap-heading {
          font-size: 1.75rem;
          margin-bottom: 2rem;
      }
  }

  .geography__list {
    margin: 20px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  @media (max-width: 757px) {
    .geography__list {
      grid-template-columns: 1fr 1fr;
    }
  }

  .block-info {
    margin-block: 40px 60px;
  }
  
  .sitemap-flex {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-block-start: 12px;
  }