/*Общие */
html.lock {
  overflow: hidden;
}

html.burger-lock {
  overflow: hidden;
}

html.burger-lock::before {
  opacity: 1;
}

html::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.compensate-for-scrollbar {
  padding-right: 0 !important;
}

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

body {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  background-color: #fff;
  color: #333;
  font-family: "Roboto", sans-serif;
}

body.lock {
  overflow: hidden;
}

body.burger-lock {
  overflow: hidden;
}

.page {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

a,
button {
  text-decoration: none;
  color: inherit;
  -webkit-transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  -o-transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  background: none;
  font-weight: inherit;
  font-size: inherit;
}

select {
  background-color: inherit;
}

blockquote {
  margin: 0;
}

button {
  border: none;
  font-family: inherit;
  margin: 0;
  padding: 0;
  font-size: inherit;
}

textarea {
  outline: none;
  border: none;
  resize: none;
}

textarea:focus {
  outline-width: 0;
}

input::-webkit-input-placeholder {
  font-size: inherit;
  font-weight: 400;
  font-family: inherit;
  border: none;
  outline: none;
}

input::-moz-placeholder {
  font-size: inherit;
  font-weight: 400;
  font-family: inherit;
  border: none;
  outline: none;
}

input:-ms-input-placeholder {
  font-size: inherit;
  font-weight: 400;
  font-family: inherit;
  border: none;
  outline: none;
}

input::-ms-input-placeholder {
  font-size: inherit;
  font-weight: 400;
  font-family: inherit;
  border: none;
  outline: none;
}

input,
input::placeholder {
  font-size: inherit;
  font-weight: 400;
  font-family: inherit;
  border: none;
  outline: none;
}

input::-webkit-input-placeholder {
  color: inherit;
}

input::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder {
  color: inherit;
}

input::-ms-input-placeholder {
  color: inherit;
}

input::placeholder {
  color: inherit;
}

picture {
  display: block;
}

picture img {
  width: 100%;
  max-width: 100%;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-margin-before: 0;
  margin-block-start: 0;
}

ul li {
  list-style-type: none;
}

ol {
  margin: 0;
  padding: 0;
}

ol li {
  list-style-position: inside;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

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

.section-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 50px;
  padding-bottom: 20px;
  line-height: 1.3;
  text-align: center;
  display: block;
  position: relative;
}

.section-title::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  height: 0.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #24a196;
  width: 30%;
}

.section-title_white {
  color: #fff;
}

.main-title {
  font-size: 64px;
  margin-bottom: 0;
}

.section-top {
  margin-bottom: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-top .section-title {
  margin-bottom: 0;
}

.scale-item {
  scale: 1.1;
  opacity: 0;
  -webkit-transition:
    scale 0.4s ease,
    opacity 0.2s ease;
  -o-transition:
    scale 0.4s ease,
    opacity 0.2s ease;
  transition:
    scale 0.4s ease,
    opacity 0.2s ease;
}

.translate-item {
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  -webkit-transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    -webkit-transform 0.3s ease;
}

.scale-item_sm {
  scale: 0.6;
}

.animation-active.scale-item {
  opacity: 1;
  scale: 1;
}

.animation-active.translate-item {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* btn */
.standart-btn {
  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;
  gap: 10px;
  white-space: nowrap;
  padding: 15px 25px;
  border-radius: 8px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid transparent;
}

.blue-btn {
  border-color: rgb(74, 145, 252);
  color: #fff;
  background-color: rgb(74, 145, 252);
}

@media (hover: hover) {
  .blue-btn:hover {
    background-color: #00bcc9;
    border-color: #00bcc9;
  }
}

.grey-btn {
  background: #00bcc9;
  color: #fff;
  border-color: #00bcc9;
}

@media (hover: hover) {
  .grey-btn:hover {
    background-color: rgb(74, 145, 252);
    border-color: rgb(74, 145, 252);
  }
}

.white-btn {
  color: rgb(74, 145, 252);
  background-color: #fff;
  border-color: #fff;
}

@media (hover: hover) {
  .white-btn:hover {
    color: #fff;
    background-color: transparent;
  }
}

.red-btn {
  background-color: #f4524d;
  border-color: #f4524d;
  color: #fff;
}

@media (hover: hover) {
  .red-btn:hover {
    background-color: #f23630;
    border-color: #f23630;
    color: #f7f7f7;
  }
}

.green-btn {
  background-color: #65bc54;
  border-color: #65bc54;
  color: #fff;
}

@media (hover: hover) {
  .green-btn:hover {
    background-color: transparent;
    border-color: #65bc54;
    color: #65bc54;
  }
}

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

.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 4;
  padding: 4px 6px;
  border: 1px solid #00bcc9;
}

.breadcrumbs ul li {
  color: #00bcc9;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

@media (hover: hover) {
  .breadcrumbs ul li a:hover {
    color: rgb(74, 145, 252);
  }
}

.breadcrumbs ul li::after {
  content: "/";
  display: block;
  font-size: 12px;
  line-height: 10px;
}

.breadcrumbs ul li:last-of-type::after {
  display: none;
}

.img-animation img {
  -webkit-transition: scale 0.4s ease-in-out;
  -o-transition: scale 0.4s ease-in-out;
  transition: scale 0.4s ease-in-out;
}

.img-animation {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.img-animation::before {
  display: block;
  pointer-events: none;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  right: 50%;
  bottom: 0;
  background-color: #00bcc9;
  opacity: 0.5;
  z-index: 2;
  -webkit-transition:
    left 0.4s ease-in-out,
    right 0.4s ease-in-out,
    width 0.4s ease-in-out;
  -o-transition:
    left 0.4s ease-in-out,
    right 0.4s ease-in-out,
    width 0.4s ease-in-out;
  transition:
    left 0.4s ease-in-out,
    right 0.4s ease-in-out,
    width 0.4s ease-in-out;
}

@media (hover: hover) {
  .img-animation:hover img {
    scale: 1.2;
  }

  .img-animation:hover::before {
    left: 0;
    right: 0;
    width: 100%;
  }
}

.logo {
  max-width: 200px;
}

/* tabs */
.tab-content {
  display: none;
}

.tab-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  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;
  right: 20px;
  width: 90px;
  height: 90px;
  z-index: 100;
  background-color: #3fab3c;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transform: translate3d(100px, 100px, 100px);
  transform: translate3d(100px, 100px, 100px);
  opacity: 0;
  -webkit-transition:
    opacity 0.3s ease,
    background-color 0.3s ease,
    -webkit-transform 0.3s ease;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease,
    -webkit-transform 0.3s ease;
  -o-transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease,
    -webkit-transform 0.3s ease;
}

@media (hover: hover) {
  .scroll-top:hover {
    background-color: #fe4a49;
  }
}

.scroll-top__picture {
  max-width: 30px;
}

.scroll-top.active {
  pointer-events: all;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.hide-item__content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.3s ease;
  -o-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  pointer-events: none;
}

.hide-item__content.active {
  pointer-events: all;
}

.inner {
  margin-top: 70px;
}

@media (max-width: 1400px) {
  .main {
    margin-top: 68px;
  }

  .inner {
    margin-top: 0;
    padding-top: 30px;
  }
}

@media (max-width: 1100px) {
  .main {
    margin-top: 60px;
  }
}

@media (max-width: 1020px) {
  .service__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 35px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

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

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 10px;
  }
}

@media (max-width: 390px) {
  .main {
    margin-top: 101px;
  }
}

@media (max-width: 340px) {
  * {
    word-break: break-word;
  }
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 600;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

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

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

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

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

/* swiper CUSTOM */
.swiper {
  width: 100%;
  position: relative;
}

.swiper__outside {
  padding: 0 25px;
}

.swiper-pag {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
}

.swiper-pag_static {
  width: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 20px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 20px)
  );
  border: 3px solid #fff;
  border-radius: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#999999),
    to(#e1e1e1)
  );
  background: -o-linear-gradient(top, #999999 0%, #e1e1e1 100%);
  background: linear-gradient(to bottom, #999999 0%, #e1e1e1 100%);
  -webkit-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #666666;
}

.slider-button {
  width: 50px;
  pointer-events: all;
  min-width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  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: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.slider-button::after {
  width: 10px;
  height: 10px;
  display: block;
  content: "";
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-right: 2px;
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

@media (hover: hover) {
  .slider-button:hover {
    background-color: transparent;
  }

  .slider-button:hover::after {
    border-color: rgb(0, 0, 0);
  }
}

.swiper-button-disabled {
  cursor: auto;
  pointer-events: none;
  opacity: 0.6;
}

.slider-button_prev::after {
  margin-right: 0;
  margin-left: 4px;
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

@media (max-width: 1020px) {
  .slider-button {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}

.header__container {
  max-width: 1470px;
}

.header-top {
  background-color: #595959;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.header-top__inner,
.header-top__item,
.header-top__text,
.header__select-city {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-top__item {
  gap: 20px;
}

.header-top__text {
  gap: 8px;
  font-weight: 500;
}

.header-top__picture {
  max-width: 18px;
}

.header__select-city {
  gap: 5px;
}

.header__select-city picture {
  border: 2px solid #fff;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  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;
}

.header__select-city picture img {
  max-width: 8px;
  max-height: 6px;
}

.header__select-city:hover {
  color: #00bcc9;
}

.header-top__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  /* display: flex; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-top__phone:hover {
  color: #00bcc9;
}

.header-wrapper {
  background-color: #fff;
  padding: 30px 0;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
}

.header-wrapper__inner {
  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;
  gap: 20px;
}

.header__nav {
  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;
  font-size: 16px;
  font-weight: 500;
}

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

.header__submenu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.header__submenu-btn::after {
  display: block;
  content: "";
  width: 8px;
  height: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../assets/img/icons/arrow-bottom_dark.svg") center center
    no-repeat;
  -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;
}

@supports not (background: url("../assets/img/icons/arrow-bottom_dark.svg")) {
  .header__submenu-btn::after {
    background: url("../assets/img/icons/arrow-bottom_dark.png") center center
      no-repeat;
  }
}

.header__btn::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../assets/img/icons/call2.svg") center center no-repeat;
}

@supports not (background: url("../assets/img/icons/call2.svg")) {
  .header__btn::before {
    background: url("../assets/img/icons/call2.png") center center no-repeat;
  }
}

.header-top__bottom {
  font-weight: 700;
  margin-top: 10px;
}

@media (max-width: 1450px) {
  .header__nav {
    font-size: 14px;
    gap: 10px;
  }
}

@media (min-width: 1279px) {
  .header-wrapper {
    -webkit-transition: padding 0.2s ease;
    -o-transition: padding 0.2s ease;
    transition: padding 0.2s ease;
    background-color: #fff;
  }

  .header-wrapper.fixed {
    position: fixed;
    padding: 10px 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .header-mobile {
    display: none;
  }
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition:
    transform 400ms,
    -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamRotate180.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.line {
  fill: none;
  -webkit-transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  -o-transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham6 .top {
  stroke-dasharray: 40 172;
}

.ham6 .middle {
  stroke-dasharray: 40 111;
}

.ham6 .bottom {
  stroke-dasharray: 40 172;
}

.ham6.active .top {
  stroke-dashoffset: -132px;
}

.ham6.active .middle {
  stroke-dashoffset: -71px;
}

.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

@media (max-width: 1279px) {
  .header-mobile {
    display: block;
    padding: 10px 0;
  }

  .header-mobile__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  zz .header-mobile__phones a {
    text-decoration: none;
    font-size: 14px;
  }

  .header__select-city {
    font-size: 14px;
  }

  .header__hide {
    display: none;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.4);
    right: 0;
    z-index: 1004;
    background-color: #fff;
  }

  .header__content {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1004;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition:
      transform 0.4s ease,
      -webkit-transform 0.4s ease;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }

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

.header__submenu-link a {
  display: block;
  padding: 5px 0;
}

@media (min-width: 1100px) {
  .header__link > a:hover {
    color: #00bcc9;
  }

  .header__submenu-btn {
    pointer-events: none;
  }

  .header__submenu-body {
    position: absolute;
    opacity: 0;
    top: 100%;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    pointer-events: none;
    -webkit-transition:
      opacity 0.3s ease,
      -webkit-transform 0.25s ease;
    transition:
      opacity 0.3s ease,
      -webkit-transform 0.25s ease;
    -o-transition:
      opacity 0.3s ease,
      transform 0.25s ease;
    transition:
      opacity 0.3s ease,
      transform 0.25s ease;
    transition:
      opacity 0.3s ease,
      transform 0.25s ease,
      -webkit-transform 0.25s ease;

    background-color: #fff;
    padding: 20px 20px;
    border-radius: 4px;
    border: 1px solid #00bcc9;
    z-index: 10;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-height: 40vh;
    overflow-y: auto;
  }

  .header__submenu-body::-webkit-scrollbar {
    width: 4px;
  }

  .header__submenu-body::-webkit-scrollbar-thumb {
    background-color: #00bcc9;
    border-radius: 2px;
  }

  .header__submenu-link {
    max-width: 300px;
  }

  .header__submenu-link a:hover {
    color: #00bcc9;
  }

  .header__submenu {
    position: relative;
  }

  .header__submenu:hover .header__submenu-btn {
    color: #00bcc9;
  }

  .header__submenu:hover .header__submenu-btn::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .header__submenu:hover .header__submenu-body {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
  }

  .header__submenu:last-child .header__submenu-body {
    right: 0;
  }
}

@media (max-width: 1099px) {
  .header__submenu {
    gap: 0;
  }

  .header__btn {
    width: 100%;
  }

  .header__content {
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    pointer-events: none;
    left: auto;
    max-width: 300px;
    border-top: 1px solid #eee;
  }

  .header__content.active {
    pointer-events: all;
  }

  .header-top {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 120px;
  }

  .header-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-bottom: 10px;
    padding-top: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header__nav,
  .header-wrapper__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .header__submenu-body {
    width: 100%;
  }

  .header__link {
    width: 100%;
    max-width: 300px;
  }

  .header-top__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-top {
    color: #333;
    background-color: #fff;
  }

  .header__logo {
    max-width: 100px;
  }

  .header-top__phone {
    font-weight: 700;
    color: #00bcc9;
  }

  .header__link {
    -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;
    border-bottom: 1px solid #eee;
  }

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

  .header__submenu-btn {
    width: 30px;
    height: 30px;
    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;
  }

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

  .header__nav {
    gap: 10px;
  }

  .header-top__text {
    display: inline;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header-top__item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .header-top__inner {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
  }

  .burger__menu {
    height: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 40px;
  }
}

@media (max-width: 500px) {
  .header__logo {
    max-width: 90px;
  }

  .header__select-city,
  .header-mobile__phones a {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .header-mobile__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header__logo {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .burger__menu {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .header-mobile__address {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header-mobile__address,
  .header-mobile__phones {
    -ms-flex-preferred-size: calc(50% - 5px);
    flex-basis: calc(50% - 5px);
  }

  .header-mobile__phones {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .header__logo {
    max-width: calc(100% - 60px);
  }

  .logo__picture {
    max-width: 140px;
  }
}
/* service */
.main-service__container {
  max-width: 1470px;
}

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

.service__title {
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: left;
  width: 100%;
  max-width: 610px;
}

.service__title::before {
  display: none;
}

.service__subtitle {
  font-size: 18px;
  line-height: 1.3;
  color: rgba(51, 51, 51, 0.7882352941);
  max-width: 740px;
}

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

.service__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: 25px;
  padding: 40px 50px;
  border-radius: 5px;
  border: 1px solid rgba(51, 51, 51, 0.4);
  width: 100%;
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
  flex-basis: calc((100% - 40px) / 3);
}

.service__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(36, 161, 150, 0.3);
}

.service__item-title picture {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.service__list 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: 8px;
}

.service__list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.service__list ul li::before {
  display: block;
  content: "";
  background-color: #00bcc9;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.service__list ul li a {
  color: rgb(74, 145, 252);
  position: relative;
}

.service__list ul li a::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: rgb(74, 145, 252);
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
  display: block;
  content: "";
}

.service__list ul li a:hover::before {
  width: 100%;
}

/* service media */
@media (max-width: 1020px) {
  .service__item {
    padding: 20px;
  }

  .service__item-title picture {
    width: 30px;
    height: 30px;
  }

  .service__item-title {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .service__item {
    -ms-flex-preferred-size: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
    gap: 10px;
  }

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

  .service__item-title {
    padding-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .service__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

/* main-service */
.main-service {
  background: url("../assets/img/service/service.webp") center center no-repeat;
  background-size: cover;
  background-position: left;
  color: #fff;
  padding: 110px 0;
  max-width: 1830px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
}

.main-price {
  background: url("../assets/img/service/price.webp") center center no-repeat;
  background-size: cover;
  background-position: left;
}

.main-doctors {
  background: url("../assets/img/doctor/main.webp") center center no-repeat;
  background-size: cover;
  padding-top: 80px;
  background-position: left;
}

.main-articles {
  background: url("../assets/img/service/articles.webp") center center no-repeat;
  background-size: cover;
  background-position: left;
}

.region {
  background: url("../assets/img/service/region.webp") center center no-repeat;
  background-size: cover;
}

.main-service__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: 80px;
}

.main-service__inner 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: 20px;
}

.main-service__inner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.main-service__title {
  line-height: 1.2;
  max-width: 800px;
  text-shadow: rgba(0, 0, 0, 0.25) 5px 5px 5px;
  font-weight: 700;
  font-size: 57px;
}

.main-service__btn {
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 20px 0px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 20px 0px;
}

.main-service__btn::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../assets/img/icons/circle.svg") center center no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
}

@supports not (background: url("../assets/img/icons/circle.svg")) {
  .main-service__btn::before {
    background: url("../assets/img/icons/circle.png") center center no-repeat;
  }
}

.main-service__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-service__cost {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
}

.main-service__picture {
  display: none;
}

.main-service__picture img {
  display: none;
  border-radius: 10px;
}

/* main-service media */
@media (max-width: 1800px) {
  .main-service__container {
    padding-left: 60px;
  }
}

@media (max-width: 1600px) {
  .main-service__container {
    padding-left: 140px;
  }
}

@media (max-width: 800px) {
  .main-service {
    background: none !important;
    background-color: #00bcc9 !important;
    padding: 30px 0;
  }

  .main-service__container {
    padding-left: 140px;
  }

  .main-service__container {
    padding-left: 10px;
  }

  .main-service__title {
    font-size: 40px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .main-service__picture {
    display: block;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .main-service__picture img {
    display: block;
  }
  .main-service__picture img {
    min-height: 170px;
  }
  .main-service__inner ul {
    gap: 15px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .main-service__bottom {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .main-service__inner {
    gap: 30px;
  }

  .main-service__cost {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .main-service__title {
    font-size: 34px;
    text-align: center;
  }

  .main-service__inner {
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .main-service__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}

@media (max-width: 400px) {
  .main-service__title {
    font-size: 30px;
  }
}

/* new-banner media */
.new-banner {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  border-radius: 20px;
  border: 2px solid #00bcc9;
  background: #f4f8fb;
  overflow: hidden;
  padding: 30px 150px;
  margin: 40px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.new-banner::before,
.new-banner::after {
  display: block;
  content: "";
  width: 240px;
  height: 240px;
  background: url("../assets/img/icons/star-bg.png") center center no-repeat;
  position: absolute;
  background-size: cover;
  z-index: 1;
}

.new-banner::before {
  left: -100px;
  top: -20px;
}

.new-banner::after {
  bottom: -30px;
  right: -70px;
  width: 190px;
  height: 190px;
}

.new-banner__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: 10px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.new-banner__title {
  text-align: center;
  position: relative;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  padding: 0 50px;
}

.new-banner__title::before,
.new-banner__title::after {
  display: block;
  content: "";
  width: 38px;
  height: 38px;
  background: url("../assets/img/icons/star-sm.png") center center no-repeat;
  position: absolute;
  background-size: cover;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.new-banner__title::before {
  left: 0;
}

.new-banner__title::after {
  right: 0;
}

.new-banner__picture {
  width: 100%;
  max-width: 100px;
}

.new-banner__picture img {
  width: 100%;
  max-width: 100%;
}

.new-banner__text {
  font-size: 22px;
}

.new-banner__text span {
  font-size: 40px;
  color: #19acb0;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .new-banner {
    gap: 20px;
    padding: 30px 100px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 1023px) {
  .new-banner__title {
    font-size: 24px;
  }

  .new-banner {
    padding: 35px 20px 40px;
    margin: 20px 0;
  }

  .new-banner__item {
    gap: 15px;
  }

  .new-banner__picture {
    display: none;
  }

  .new-banner__text {
    font-size: 18px;
  }

  .new-banner__text span {
    font-size: 24px;
  }
}

@media (max-width: 550px) {
  .new-banner::after {
    display: none;
  }

  .new-banner::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: -100px;
  }
}

@media (max-width: 550px) {
  .new-banner__title {
    padding: 0 40px;
    font-size: 20px;
  }

  .new-banner__title::before {
    left: -10px;
  }

  .new-banner__title::after {
    right: -10px;
  }
}

/* price */
.price__content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.price__table {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.price__item {
  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: 3px;
  padding: 12px 30px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  font-size: 16px;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.3;
  background-color: #f9f9f9;
}

.price__item:nth-child(even) {
  background-color: #fff;
}

.price__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 30px;
  font-weight: 700;
  gap: 20px;
  font-size: 16px;
  color: #fff;
  background-color: #24a196;
}

.price__head td {
  display: block;
}

.price__title,
.price__head td:first-child {
  display: block;
  width: 100%;
  max-width: 70%;
}

.price__cost,
.price__head td:last-child {
  display: block;
  width: 100%;
  max-width: calc(30% - 20px);
}

.price__tabs__wrapper {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: rgba(51, 51, 51, 0.1);
  color: rgba(51, 51, 51, 0.8);
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  font-size: 18px;
  overflow: hidden;
}

.price__tab {
  padding: 20px 40px;
  border: 1px solid transparent;
}

.price__tab:hover {
  border-color: #24a196;
  color: #24a196;
}

.price__tab.active {
  color: #fff;
  background-color: #24a196;
}

.price__full {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
  color: #24a196;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 30px;
}

.price__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
  padding: 28px 40px;
  border-radius: 8px;
  background-color: #24a196;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.price__bottom > span {
  margin-right: auto;
  max-width: 360px;
  font-weight: 700;
}

.price__pay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.price__pay-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid white;
}

.price__pay-item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}
.price__pay-item > span {
  font-size: 14px;
}

.price__pay-picture img {
  max-height: 34px;
  width: auto;
}

.price_tabs__active {
  display: none;
}

.price-service .price__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* price media */
@media (max-width: 1200px) {
  .price__tab {
    padding: 20px;
  }
}

@media (max-width: 930px) {
  .price_tabs__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 20px;
    -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;
    font-size: 18px;
    width: 100%;
    color: #fff;
    border-color: #24a196;
    background-color: #24a196;
    transition: all 0.3s linear;
  }

  .price_tabs__active:hover {
    background-color: #fff;
    color: #24a196;
    border-color: #24a196 !important;
  }

  .price_tabs__active svg {
    transition: all 0.3s linear;
  }
  .price_tabs__active:hover svg path {
    fill: #24a196;
  }
  .price_tabs__container {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10020;
    background-color: #141414;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    overflow-y: auto;
    bottom: 0;
  }

  .price_tabs__content {
    width: 100%;
    min-height: 100%;
    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;
    padding: 60px 20px 20px;
  }

  .price__tabs__wrapper {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    scale: 0.4;
    -webkit-transition: scale 0.4s ease;
    -o-transition: scale 0.4s ease;
    transition: scale 0.4s ease;
  }

  .price_tabs {
    margin-bottom: 10px;
  }

  .price_tabs.active .price__tabs__wrapper {
    scale: 1;
    pointer-events: all;
  }

  .price_tabs.active .price_tabs__container {
    opacity: 1;
    pointer-events: all;
  }

  .price__tab {
    color: #141414;
    padding: 16px 24px;
  }
}

@media (max-width: 550px) {
  .price__full {
    font-size: 14px;
    margin-bottom: 15px;
    padding: 10px 0;
  }

  .price__title {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .price__cost,
  .price__head td:last-child {
    min-width: 100px;
  }

  .price__item {
    padding: 12px 15px;
  }

  .price__head {
    padding: 12px 15px;
  }
}

/* why-we */
.why-we__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.why-we__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: 15px;
}

.why-we__title {
  margin-bottom: 0;
  padding: 0;
  text-align: left;
}

.why-we__title::before {
  display: none;
}

.why-we__subtitle {
  display: block;
  font-size: 18px;
  margin-bottom: 35px;
}

.why-we__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: 30px;
}

.why-we__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.why-we__picture {
  width: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 70px;
  border-radius: 50%;
  background-color: #00bcc9;
  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;
}

.why-we__picture img {
  width: 30px;
  height: 30px;
}

.why-we__text {
  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;
}

.why-we__text span {
  font-weight: 500;
  font-size: 20px;
}

.why-we__text p {
  color: rgba(51, 51, 51, 0.8);
  font-size: 16px;
}

.why-we__form {
  width: 100%;
  max-width: 450px;
  padding: 15px 30px;
  border-radius: 20px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.why-we__form-title {
  text-align: center;
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 340px;
  margin: 0 auto 10px;
}

.why-we__label {
  width: 100%;
  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;
  font-size: 16px;
  color: rgba(51, 51, 51, 0.8);
}

.why-we__input {
  color: rgba(51, 51, 51, 0.8);
  font-size: 16px;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 5px;
  border: 1px solid rgba(51, 51, 51, 0.3);
  margin-bottom: 5px;
}

.why-we__input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}

.why-we__input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.3);
}

.why-we__input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}

.why-we__input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}

.why-we__input::placeholder {
  color: rgba(51, 51, 51, 0.3);
}

.why-we__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.why-we__checkbox input {
  margin-top: 3px;
  cursor: pointer;
  border-color: rgb(74, 145, 252);
  outline-color: rgb(74, 145, 252);
}

.why-we__politic {
  font-size: 14px;
}

.why-we__politic a {
  color: rgb(74, 145, 252);
  text-decoration: underline;
}

.why-we__politic a:hover {
  color: #00bcc9;
}

/* why-we media */
@media (max-width: 950px) {
  .why-we__picture {
    width: 45px;
    height: 45px;
  }

  .why-we__picture img {
    width: 20px;
    height: 20px;
  }

  .why-we__list {
    gap: 20px;
  }

  .why-we__list li {
    gap: 10px;
  }

  .why-we__text p {
    font-size: 14px;
  }

  .why-we__text span {
    font-size: 18px;
    font-weight: 700;
  }

  .why-we__form-title {
    font-size: 20px;
  }

  .why-we__form {
    gap: 10px;
  }

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

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

  .why-we__form {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .why-we__form {
    padding: 15px;
  }
}

/* about */
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about__title {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  color: #00bcc9;
}

.about__slider {
  max-width: 530px;
  position: relative;
  padding-bottom: 60px;
}

.about__pagination {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}

.swiper-pagination-bullets.about__pagination {
  bottom: var(--swiper-pagination-bottom, 20px);
}

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

.about__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

@media (hover: hover) {
  .about__link:hover {
    color: #00bcc9;
  }

  .about__link:hover .about__link-picture {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

.about__link-picture {
  -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;
}

.about__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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* about media */
@media (max-width: 1020px) {
  .about__slider {
    padding-bottom: 0;
  }

  .about__inner {
    -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;
  }

  .about__pagination {
    z-index: 10;
  }

  .about__item {
    gap: 10px;
    padding-bottom: 10px;
  }

  .about__link {
    margin-bottom: 10px;
  }

  .about__link.active {
    color: #00bcc9;
  }

  .about__link.active .about__link-picture {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .about__container {
    display: block;
  }

  .about__slider {
    max-width: 100%;
  }
}

/* doctors */
.doctors__pagination {
  display: none;
}

.doctors__slider {
  position: relative;
}

.doctors__container {
  max-width: 1560px;
}

.doctors__slider {
  padding: 0 80px;
}

.doctors__wrapper {
  padding-bottom: 10px;
}

.doctors__slide {
  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;
  border-radius: 10px;
  height: auto;
  border: 1px solid rgba(0, 88, 133, 0.3);
  background: rgba(0, 88, 133, 0.05);
  padding-bottom: 25px;
  scale: 0.4;
  -webkit-transition:
    background-color 0.2s ease,
    opacity 0.2s ease,
    scale 0.4s ease;
  -o-transition:
    background-color 0.2s ease,
    opacity 0.2s ease,
    scale 0.4s ease;
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease,
    scale 0.4s ease;
}

.doctors__slide:hover {
  background-color: rgb(74, 145, 252);
}

.doctors__slide:hover .doctors__name,
.doctors__slide:hover .doctors__prof {
  color: #fff;
}

.doctors__picture {
  width: 100%;
  margin-bottom: 15px;
  height: 320px;
  overflow: hidden;
}

.doctors__picture img {
  object-position: top;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.doctors__name {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 10px;
  margin-bottom: 8px;
  font-size: 22px;
}

.doctors__prof {
  padding: 0 10px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
  color: rgba(51, 51, 51, 0.7);
  font-size: 16px;
  text-align: center;
}

.main-doctors__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 25px;
}

.main-doctors__slide {
  -ms-flex-preferred-size: calc((100% - 75px) / 4);
  flex-basis: calc((100% - 75px) / 4);
}

/* doctors media */
@media (max-width: 500px) {
  .doctors__picture {
    height: auto;
  }
  .doctors__slider {
    padding: 0;
  }

  .doctors__slider-button {
    z-index: 100;
  }

  .doctors_swiper-pag {
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
  }
}

@media (max-width: 1020px) {
  .main-doctors__slide {
    -ms-flex-preferred-size: calc((100% - 50px) / 3);
    flex-basis: calc((100% - 50px) / 3);
  }
}

@media (max-width: 750px) {
  .main-doctors__slide {
    -ms-flex-preferred-size: calc((100% - 25px) / 2);
    flex-basis: calc((100% - 25px) / 2);
  }
}

@media (max-width: 750px) {
  .main-doctors__slide {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

/* chambers */
.chambers__inner {
  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;
}

.chambers__tabs__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #ebebeb;
  border-radius: 5px 5px 0px 0px;
  border-right: 1px solid #ebebeb;
  background: #f2f7f9;
  border-left: 1px solid #ebebeb;
  overflow: hidden;
}

.chambers__tab {
  padding: 16px 40px;
  background-color: #00bcc9;
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition:
    text-decoration-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  -webkit-transition:
    background-color 0.2s ease,
    color 0.2s ease,
    -webkit-text-decoration-color 0.2s ease;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    -webkit-text-decoration-color 0.2s ease;
  -o-transition:
    text-decoration-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  transition:
    text-decoration-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  transition:
    text-decoration-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    -webkit-text-decoration-color 0.2s ease;
}

.chambers__tab.active {
  background-color: #f2f7f9;
  color: #333;
}

.chambers__tab:hover:not(.active) {
  -webkit-text-decoration-color: inherit;
  text-decoration-color: inherit;
}

.chambers__wrapper {
  width: 100%;
}

.chambers__content {
  gap: 50px;
  padding: 40px;
  border-radius: 0px 5px 5px 5px;
  border: 1px solid #ebebeb;
  background: rgba(0, 88, 133, 0.05);
}

.chambers__content > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.chambers__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: 10px;
}

.chambers__item-title {
  font-weight: 700;
  font-size: 20px;
}

.chambers__cost {
  font-size: 16px;
  color: #00bcc9;
  font-weight: 700;
  margin-bottom: 5px;
}

.chambers__text {
  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;
  color: rgba(51, 51, 51, 0.8);
  margin-bottom: 20px;
}

.chambers__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: 15px;
}

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

.chambers__picture img {
  border-radius: 5px;
}

.chambers_tabs__active {
  display: none;
}

/* chambers media */
@media (max-width: 1100px) {
  .chambers__content {
    gap: 10px;
    padding: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

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

  .chambers__item-title {
    font-size: 18px;
  }

  .chambers__cost {
    margin-bottom: 0;
  }

  .chambers__text {
    margin-bottom: 10px;
  }

  .chambers__list {
    gap: 10px;
  }

  .chambers_tabs__active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 20px;
    -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;
    font-size: 18px;
    width: 100%;
    color: #fff;
  }

  .chambers_tabs__container {
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10020;
    background-color: #141414;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    overflow-y: auto;
    bottom: 0;
  }

  .chambers_tabs__content {
    width: 100%;
    min-height: 100%;
    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;
    padding: 60px 20px 20px;
  }

  .chambers__tabs__wrapper {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    pointer-events: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    scale: 0.4;
    -webkit-transition: scale 0.4s ease;
    -o-transition: scale 0.4s ease;
    transition: scale 0.4s ease;
  }

  .chambers_tabs {
    margin-bottom: 10px;
  }

  .chambers_tabs.active .chambers__tabs__wrapper {
    scale: 1;
    pointer-events: all;
  }

  .chambers_tabs.active .chambers_tabs__container {
    opacity: 1;
    pointer-events: all;
  }

  .chambers__tab {
    width: 100%;
  }

  .chambers_tabs {
    width: 100%;
  }
}

/* certificates */
.certificates {
  position: relative;
  padding: 55px 0;
}

.certificates__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.certificates__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.certificates__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  max-width: 600px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.certificates__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.certificates__btn {
  margin-top: 50px;
  padding-right: 50px;
  padding-left: 50px;
}

.certificates__btn::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: url("../assets/img/icons/list.svg") center center no-repeat;
  background-size: cover;
}

@supports not (background: url("../assets/img/icons/list.svg")) {
  .certificates__btn::before {
    background: url("../assets/img/icons/list.png") center center no-repeat;
    background-size: cover;
  }
}

.certificates__btn:hover {
  color: #fff;
}

/* certificates media */
@media (max-width: 1300px) {
  .certificates {
    background: #013a91;
    background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(#013a91),
      to(#28e7f5)
    );
    background: -o-linear-gradient(bottom, #013a91, #28e7f5);
    background: linear-gradient(0deg, #013a91, #28e7f5);
  }

  .certificates__bg {
    display: none;
  }

  .certificates__bg img {
    display: none;
  }

  .certificates__item {
    margin: 0 auto;
  }

  .certificates__title {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .certificates__btn {
    margin-top: 25px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .certificates {
    padding: 30px 0;
  }
}

/* main-certificates */
.main-certificates__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.main-certificates__item {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
  flex-basis: calc((100% - 60px) / 4);
}

.main-certificates__picture {
  max-width: 100%;
}

.main-certificates__picture img {
  max-width: 100%;
}

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

  .main-certificates__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

/* reviews */
.reviews__slider {
  position: relative;
  padding: 0 60px;
}

.reviews__container {
  max-width: 1560px;
}

.reviews__slide {
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid rgba(0, 88, 133, 0.3);
  background: #f9f9f9;
  height: auto;
}

.reviews__top {
  font-size: 20px;
  font-weight: 700;
  padding-left: 40px;
  position: relative;
  padding-bottom: 10px;
  gap: 5px;
}

.reviews__top::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 31px;
  background: url("../assets/img/icons/heart.png") center center no-repeat;
  line-height: 1;
}

.reviews__city {
  color: rgb(74, 145, 252);
}

.reviews__pagination {
  display: none;
}

.reviews__slide_original {
  padding: 0;
  border: none;
  background-color: transparent;
}

.reviews__text {
  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;
  overflow: hidden;
}

.reviews__text.hidden {
  max-height: 180px;
  position: relative;
}

.reviews__text.hidden::before {
  display: block;
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(249, 249, 249, 0)),
    to(#f9f9f9)
  );
  background: -o-linear-gradient(top, rgba(249, 249, 249, 0), #f9f9f9);
  background: linear-gradient(180deg, rgba(249, 249, 249, 0), #f9f9f9);
}

.reviews__btn {
  display: none;
  font-weight: 700;
  color: rgb(74, 145, 252);
  margin-top: 10px;
}

.reviews__btn.active {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: flex;
}


.reviews__info {
  margin: 16px 0;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}
.reviews__info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
}
.reviews__info-item:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 88, 133, 0.07);
}
.reviews__info-name {
  color: rgba(51, 51, 51, 0.6);
}
.reviews__info-value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(51, 51, 51, 0.9);
}
.reviews__info-stars {
  display: flex;
  gap: 2px;
}
.reviews__info-stars span {
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath fill='%23FFCC00' d='M16.8247 7.73502L13.3208 11.1505L14.1483 15.9745C14.1843 16.1855 14.0977 16.3987 13.9244 16.5246C13.8265 16.5961 13.7101 16.6321 13.5937 16.6321C13.5042 16.6321 13.4142 16.6107 13.3321 16.5674L8.99972 14.2898L4.66791 16.5668C4.47891 16.667 4.24885 16.6507 4.0756 16.5241C3.90235 16.3981 3.81572 16.1849 3.85172 15.974L4.67916 11.15L1.17478 7.73502C1.02178 7.5854 0.966097 7.36152 1.03247 7.15846C1.09885 6.9554 1.27491 6.80634 1.48697 6.7754L6.32954 6.07227L8.49516 1.68365C8.68472 1.29946 9.31472 1.29946 9.50429 1.68365L11.6699 6.07227L16.5125 6.7754C16.7245 6.80634 16.9006 6.95484 16.967 7.15846C17.0333 7.36209 16.9777 7.58484 16.8247 7.73502Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; 
  opacity: 0.25;
}
.reviews__info-stars span.is-active {
  opacity: 1;
}

@media (hover: hover) {
  .reviews__btn:hover {
    color: #00bcc9;
  }
}

/* reviews media */
@media (max-width: 800px) {
  .reviews__slide {
    padding: 20px;
  }

  .reviews__slide_original {
    padding: 0;
  }

  .reviews__top {
    font-size: 18px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .reviews__info {
      margin: 12px 0;
      padding: 12px;
  }
  .reviews__info-item {
      font-size: 14px;
  }
  .reviews__info-item:not(:last-child) {
      padding-bottom: 6px;
      margin-bottom: 6px;
  }
  .reviews__info-name {
      display: none;
  }
  .reviews__info-stars span {
      width: 15px;
      height: 15px;
  }
}

@media (max-width: 550px) {
  .reviews__slider {
    padding: 0 20px;
  }
}

/* main-reviews */
.main-reviews__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.main-reviews__item {
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
  flex-basis: calc((100% - 40px) / 3);
}

@media (max-width: 1200px) {
  .main-reviews__item {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .main-reviews__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.structure {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.structure__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.structure__item {
  -ms-flex-preferred-size: calc((100% - 30px) / 3);
  flex-basis: calc((100% - 30px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 0 20px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.structure__item::before {
  display: block;
  width: 100%;
  content: "";
  height: calc(100% - 60px);
  background-color: #f9f9f9;
  border-radius: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.structure__picture {
  border-radius: 50%;
  background-color: #d2f1f3;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  max-height: 200px;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 20px;
}

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

.structure__name {
  font-weight: 600;
  position: relative;
  z-index: 3;
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
  font-size: 22px;
}

.structure__text {
  font-size: 16px;
  position: relative;
  z-index: 3;
  line-height: 1.2;
  color: #74777b;
  font-weight: 400;
}

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

  .structure__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-bottom: 25px;
  }

  .structure__name {
    font-size: 18px;
  }

  .structure__picture {
    max-width: 150px;
    max-height: 150px;
  }

  .structure__picture img {
    max-width: 120px;
  }

  .structure__text {
    font-size: 14px;
  }

  .structure {
    margin: 40px 0;
  }

  .structure__title {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .structure__title::before {
    width: 120px;
  }
}

/* doctor */
.doctor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.doctor__card {
  max-width: 810px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  gap: 40px;
  border: 2px solid #eee;
  border-radius: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.doctor__picture {
  max-width: 230px;
}

.doctor__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: 25px;
}

.doctor__name {
  font-size: 36px;
  font-weight: 700;
  max-width: 420px;
}

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

.doctor__about p {
  color: #717171;
  font-size: 16px;
}

.doctor__about p span {
  color: #333;
}

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

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

.doctor__social a {
  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;
  border-radius: 4px;
  background-color: #00bcc9;
  width: 31px;
  height: 31px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.doctor__social a picture {
  max-width: 16px;
}

.doctor__social a:hover {
  background-color: rgb(74, 145, 252);
}

.doctor__form {
  width: 100%;
  background-color: #00bcc9;
  max-width: 370px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  color: #fff;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

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

.doctor__form::before {
  display: block;
  content: "";
  width: 284px;
  height: 284px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.doctor__form-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.doctor__cost {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media (max-width: 1200px) {
  .doctor__name {
    font-size: 30px;
  }

  .doctor__card {
    gap: 20px;
  }
}

@media (max-width: 950px) {
  .doctor {
    -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;
  }
}

@media (max-width: 600px) {
  .doctor__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .doctor__info {
    display: contents;
  }

  .doctor__name {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .doctor__picture {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .doctor__about {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .doctor__links {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
}

/* schedule */
.schedule__inner {
  width: 100%;
}

.schedule__inner table {
  width: 100%;
}

.schedule__inner table thead,
.schedule__inner table tbody {
  width: 100%;
}

.schedule__inner th {
  text-align: center;
  background: #00bcc9;
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  padding: 13px 20px;
}

.schedule__inner td {
  text-align: center;
  border: 1px solid #eee;
  color: #717171;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  line-height: 1.5;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  padding: 15px 20px;
}

.schedule__inner th:nth-child(2n) {
  background: #26c6d1;
}

@media (max-width: 1020px) {
  .schedule__container {
    padding: 0;
  }

  .schedule__title {
    padding-left: 10px;
    padding-right: 10px;
  }

  .schedule__inner {
    overflow-x: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .schedule__inner td,
  .schedule__inner th {
    min-width: 130px;
  }
}

/* main-schedule */
.main-schedule__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  border: 2px solid #f2f2f2;
  padding: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.main-schedule__card-text {
  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;
  font-size: 16px;
}

.main-schedule__card-text a,
.main-schedule__card-text button {
  color: #00bcc9;
  font-weight: 700;
}

.main-schedule__card-text a:hover,
.main-schedule__card-text button:hover {
  color: rgb(74, 145, 252);
}

.main-schedule__table table {
  border-collapse: collapse;
  border-spacing: 0;
}

.main-schedule__table td:first-child {
  text-decoration: none;
  text-align: left;
}

@media (max-width: 600px) {
  .main-schedule__card {
    -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;
  }

  .main-schedule__picture {
    max-width: 40px;
  }

  .main-schedule__table td:first-child,
  .main-schedule__table th:first-child {
    min-width: 300px;
  }
}

/* doctor-certificates */
.doctor-certificates__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.doctor-certificates__item {
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
  flex-basis: calc((100% - 40px) / 3);
  padding: 30px 40px;
  background-color: #f7f7f7;
  position: relative;
}

.doctor-certificates__item::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  -webkit-transition: width 0.2s ease;
  -o-transition: width 0.2s ease;
  transition: width 0.2s ease;
  background: #00bcc9;
}

.doctor-certificates__item:hover::before {
  width: 100%;
}

@media (max-width: 900px) {
  .doctor-certificates__item {
    padding: 20px;
  }
}

@media (max-width: 650px) {
  .doctor-certificates__container {
    padding: 0;
  }

  .doctor-certificates__title {
    padding-left: 10px;
    padding-right: 10px;
  }

  .doctor-certificates__inner {
    padding-left: 10px;
    padding-right: 10px;
    overflow-x: auto;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .doctor-certificates__item {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    min-width: 300px;
    max-width: 300px;
  }
}

/* articles */
.main-articles__title {
  margin-bottom: 200px;
}

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

.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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
  flex-basis: calc((100% - 40px) / 3);
  background-color: #f9f9f9;
}

.articles__title,
.articles__text {
  padding: 0 10px;
}

.articles__text {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.articles__title {
  font-size: 24px;
}

.articles__link {
  margin: 0 10px 20px;
  font-size: 14px;
  font-weight: 400;
}

.articles__picture {
  max-width: 100%;
  min-height: 370px;
  width: 100%;
  max-height: 370px;
  overflow: hidden;
}

.articles__picture img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1020px) {
  .articles__item {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 900px) {
  .main-articles__title {
    margin-bottom: 30px;
  }
}

@media (max-width: 650px) {
  .articles__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }

  .articles__picture {
    min-height: 300px;
    max-height: 300px;
  }
}

/* article */
.article {
  padding: 80px 0;
  background-color: rgba(0, 0, 0, 0.04);
}

.article__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.article__title {
  font-size: 34px;
  font-weight: 700;
}

.article__breadcrumbs ul {
  margin-bottom: 0;
  border: none;
  padding: 0;
}

.article__breadcrumbs ul li {
  color: #adafb3;
}

.text__article {
  margin-bottom: 40px;
  position: relative;
}

.text__article-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 8px;
  line-height: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.text__article-date span {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.text__article-date span::after {
  display: block;
  content: "";
  width: 14px;
  height: 2px;
  background-color: #00bcc9;
}

.text__article-date span:nth-child(2) {
  font-size: 22px;
}

.text__article-date span:last-child::after {
  display: none;
}

@media (max-width: 900px) {
  .article__title {
    font-size: 28px;
  }

  .article {
    padding: 30px 0;
  }
}

/* list-articles */
.list-articles__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.list-articles__item {
  -ms-flex-preferred-size: calc((100% - 80px) / 3);
  flex-basis: calc((100% - 80px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.list-articles__item:hover .list-articles__name {
  color: rgb(74, 145, 252);
}

.list-articles__picture {
  max-width: 110px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.list-articles__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;
}

.list-articles__name {
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.list-articles__date {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 900px) {
  .list-articles__inner {
    gap: 20px;
  }

  .list-articles__item {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }
}

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

  .list-articles__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

/* text */
.text__content > * {
  margin-bottom: 10px;
}

.text__content > *:last-child {
  margin-bottom: 0;
}

.text__content h1 {
  margin-bottom: 30px;
  font-size: 38px;
  color: #333;
  font-weight: 700;
  line-height: 1.2;
}

.text__content h2 {
  color: #333;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.text__content h3 {
  color: #333;
  font-size: 32px;
  font-weight: 700;
}

.text__content img {
  border-radius: 10px;
}

.text__content > 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: 10px;
}

.text__content > ul > li {
  position: relative;
  padding-left: 20px;
}

.text__content a {
  color: #00bcc9;
}

.text__content a:hover {
  color: #013a91;
}

.text__content > ul > li::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #00bcc9;
  position: absolute;
  top: 10px;
  left: 0;
}

.text__content > ol {
  counter-reset: list 0;
  list-style-type: none;
  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;
}

.text__content > ol > li {
  position: relative;
  padding-left: 50px;
}

.text__content > ol > li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: counter(list);
  counter-increment: list;
  width: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 1;
  height: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: rgb(74, 145, 252);
  border-radius: 50%;
  background-color: rgba(0, 188, 201, 0.1098039216);
}

.text__content picture {
  margin-top: 40px;
  overflow: hidden;
  margin-bottom: 40px;
}

.text__content blockquote {
  padding: 20px 25px;
  font-size: 16px;
  color: #333;
  font-weight: 700;
  background-color: #e2ecff;
  background-color: rgba(0, 0, 0, 0.04);
}

.float-left {
  float: left;
  margin-right: 20px;
  width: 100%;
  max-width: 500px;
}

.float-right {
  float: right;
  width: 100%;
  margin-left: 20px;
  max-width: 500px;
}

.text__checked {
  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;
  border-radius: 20px;
  border: 2px solid #eee;
  padding: 10px;
  margin-bottom: 40px;
}

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

.text__doctor-picture {
  max-width: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.text__doctor-card {
  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;
}

.text__doctor-title {
  color: #00bcc9;
  font-size: 16px;
}

.text__doctor-name {
  font-size: 24px;
  font-weight: 700;
}

.text__doctor-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 16px;
  color: #717171;
}

.text__doctor-about span {
  color: #333;
}

.text__doctor-link {
  color: rgb(74, 145, 252);
  font-size: 16px;
}

.text__doctor-link:hover {
  color: #00bcc9;
}

.text__checked-link {
  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;
  max-width: 200px;
  margin-right: 20px;
}

.text__checked-link img {
  width: auto;
}

/* text media */
@media (max-width: 1020px) {
  .text__content h1 {
    font-size: 28px;
  }

  .text__content h2 {
    font-size: 26px;
  }

  .text__content h3 {
    font-size: 24px;
  }
}

@media (max-width: 800px) {
  .float-left,
  .float-right {
    max-width: 400px;
  }
}

@media (max-width: 650px) {
  .text__content > ol > li {
    padding-left: 40px;
  }

  .text__content picture {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .float-left,
  .float-right {
    float: none;
    margin: 0 auto;
  }

  .text__checked {
    margin-bottom: 20px;
    -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;
  }

  .text__doctor-name {
    font-size: 18px;
  }

  .text__checked-link {
    margin-right: 0;
    max-width: 180px;
  }
}

@media (max-width: 500px) {
  .text__doctor {
    -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: 20px;
  }
}

/* footer */
.footer {
  background-color: #1a1c20;
  color: #fff;
  padding: 50px 0;
}

.footer__title {
  background: #00bcc9;
  color: #fff;
  padding: 7px 0px 5px 16px;
  text-align: left;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase;
}

.footer__title:not(:first-child) {
  margin-top: 20px;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
  margin-bottom: 20px;
}

.footer__item {
  -ms-flex-preferred-size: calc((100% - 60px) / 4);
  flex-basis: calc((100% - 60px) / 4);
  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-width: 262px;
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__link a:hover {
  color: #00bcc9;
}

.footer__link::before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: url("../assets/img/icons/check.png") center center no-repeat;
  background-size: cover;
}

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

.footer__social-icon {
  max-width: 24px;
  max-height: 24px;
}

.footer__social-icon:hover svg {
  fill: #00bcc9;
  stroke: #00bcc9;
}

.footer__social-icon svg {
  width: 100%;
  max-width: 100%;
  -webkit-transition:
    fill 0.2s ease,
    stroke 0.2s ease;
  -o-transition:
    fill 0.2s ease,
    stroke 0.2s ease;
  transition:
    fill 0.2s ease,
    stroke 0.2s ease;
}

.footer__regions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  padding: 7px 22px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 17px;
  background-color: #00bcc9;
  gap: 10px;
  margin: 0 auto;
  border-radius: 6px;
}

.footer__regions:hover {
  background-color: rgb(74, 145, 252);
}

.footer__regions span {
  display: block;
  width: 17px;
  height: 17px;
  border: 2px solid #fff;
  border-radius: 3px;
  position: relative;
}

.footer__regions span::before {
  display: block;
  content: "";
  width: 6px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  background: url("../assets/img/icons/arrow-bottom.svg") center center
    no-repeat;
}

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

.footer__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: 5px;
  font-size: 14px;
}
.footer__info p a:hover {
  color: #00bcc9;
}
/* footer media */
@media (max-width: 900px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer__item {
    -ms-flex-preferred-size: calc(50% - 10px);
    flex-basis: calc(50% - 10px);
    max-width: none;
  }

  .footer__title {
    font-size: 16px;
  }

  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

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

  .footer {
    padding: 30px 0;
  }

  .footer__pay picture {
    max-width: 200px;
    margin: 0 auto;
  }

  .footer__inner {
    padding-bottom: 20px;
  }

  .footer__clinics-title {
    font-size: 18px;
  }
}

.popup {
  height: 100vh;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  z-index: 1010;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
}

.popup__body {
  width: 100%;
  min-height: 100%;
  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;
  padding: 60px 15px 100px;
}

.popup__body_burger {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 0;
}

.popup.open {
  opacity: 1;
  pointer-events: all;
}

.popup__content {
  width: 100%;
  max-width: 560px;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  padding: 50px 60px;
  scale: 0.3;
  -webkit-transition: scale 0.4s ease;
  -o-transition: scale 0.4s ease;
  transition: scale 0.4s ease;
  background-color: #fff;
}

.popup__answer_content,
.popup__error_content {
  max-width: 360px;
  padding: 50px 30px;
}

.popup.open .popup__content {
  scale: 1;
}

.popup__custom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.popup-answer {
  gap: 5px;
}

.popup__title {
  margin-bottom: 14px;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
}

.popup__input {
  padding: 16px;
  font-size: 16px;
  border-radius: 60px;
  width: 100%;
  color: #9a9a9a;
  background-color: #fff;
  border: 1px solid #000000;
}

.popup__input::-webkit-input-placeholder {
  color: #9a9a9a;
}

.popup__input::-moz-placeholder {
  color: #9a9a9a;
}

.popup__input:-ms-input-placeholder {
  color: #9a9a9a;
}

.popup__input::-ms-input-placeholder {
  color: #9a9a9a;
}

.popup__input::placeholder {
  color: #9a9a9a;
}

.popup__picture {
  width: 100%;
  max-width: 160px;
  margin: 0 auto 10px;
}

.popup__subtitle {
  font-size: 20px;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.popup__form-subtitle {
  display: block;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
  width: 100%;
  text-align: left;
}

.popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 103;
}

.popup__textarea {
  width: 100%;
  border: 1px solid #000;
  height: 120px;
  overflow: auto;
  resize: none;
  color: rgb(154, 154, 154);
  border-radius: 5px;
  padding: 16px;
  font-size: 16px;
}

.popup__textarea::-webkit-input-placeholder {
  color: rgb(154, 154, 154);
}

.popup__textarea::-moz-placeholder {
  color: rgb(154, 154, 154);
}

.popup__textarea:-ms-input-placeholder {
  color: rgb(154, 154, 154);
}

.popup__textarea::-ms-input-placeholder {
  color: rgb(154, 154, 154);
}

.popup__textarea::placeholder {
  color: rgb(154, 154, 154);
}

.popup__textarea::-webkit-scrollbar {
  width: 6px;
}

.popup__textarea::-webkit-scrollbar-thumb {
  background-color: #cc3023;
  border-radius: 6px;
}

.popup__search-wrapper {
  width: 100%;
  margin-bottom: 15px;
}

.popup__search {
  font-size: 12px;
  color: #333333;
}

.popup__search::-webkit-input-placeholder {
  font-size: 12px;
  color: #333333;
}

.popup__search::-moz-placeholder {
  font-size: 12px;
  color: #333333;
}

.popup__search:-ms-input-placeholder {
  font-size: 12px;
  color: #333333;
}

.popup__search::-ms-input-placeholder {
  font-size: 12px;
  color: #333333;
}

.popup__search::placeholder {
  font-size: 12px;
  color: #333333;
}

.popup__btn {
  width: 100%;
}

.popup__politic {
  font-size: 14px;
  font-weight: 300;
  color: #c2c2c2;
  text-align: center;
}

.popup__politic a:hover {
  color: #cc3023;
}

.close-popup {
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 10000;
  width: 40px;
  height: 40px;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  -o-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition:
    transform 0.4s ease-in-out,
    -webkit-transform 0.4s ease-in-out;
}
.close-popup img {
  display: block;
  width: 40px;
  height: 40px;
}
.close-popup:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1hamRotate180);
  transform: scale(1hamRotate180);
}

/* popup MEDIA */
@media (max-width: 550px) {
  .popup__form-subtitle {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .popup__title {
    font-size: 20px;
  }

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

  .close-popup {
    width: 30px;
    height: 30px;
    top: -15px;
    right: -15px;
  }
  .close-popup img {
    width: 30px;
    height: 30px;
  }
}

/* map */
.map__item {
  width: 100%;
  height: 370px;
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  background: url("../assets/img/map.webp") center center no-repeat;
  background-size: cover;
}

.city-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.popup__city-inner {
  margin-top: 20px;
}

.city-item {
  color: #4a91fc;
  -ms-flex-preferred-size: calc((100% - 20px) / 3);
  flex-basis: calc((100% - 20px) / 3);
}

.city-item:hover {
  color: #00bcc9;
}

.popup__content_city {
  max-width: 900px;
}

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

  .city-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

.popup-certificates {
  z-index: 20;
  position: fixed;
  bottom: -37px;
  right: -70px;
  width: 160px;
  height: 160px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right center 0;
  -ms-transform-origin: right center 0;
  transform-origin: right center 0;
  color: #fff;
  background-color: #26c6d1;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.popup-certificates:hover {
  background-color: #013a91;
  bottom: -30px;
  right: -65px;
}
html.bx-touch.crm-widget-button-mobile,
html.bx-touch.crm-widget-button-mobile body {
  height: auto !important;
  overflow-y: hidden;
}
html .b24-widget-button-shadow {
  z-index: 998;
}
html .b24-widget-button-wrapper {
  z-index: 999;
}

@media (max-width: 1120px) {
  .price__bottom {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .price__pay {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 924px) {
  .price__pay {
    flex-wrap: wrap;
    gap: 15px;
  }

  .price__pay-item {
    padding-right: 0;
    margin-right: 0;
    border: none;
  }
  .price__pay > * {
    flex-basis: calc(33.333% - 10px);
  }
}

@media (max-width: 568px) {
  .price__bottom {
    padding: 16px;
  }

  .price__pay {
    gap: 0;
  }

  .price__pay-item {
    position: relative;
    flex: 0 0 50%;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .price__pay-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .price__pay-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
  }
}

.header-phone {
  font-weight: 600;
  align-items: center;
  display: flex;
  gap: 5px;
  transition: color 0.3s linear;
}
.header-phone:hover {
  color: #4a91fc;
}
.header-phone svg path {
  transition: fill 0.3s linear;
}
.header-phone:hover svg path {
  fill: #4a91fc;
}
@media (max-width: 720px) {
  .header-mobile__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .header__logo {
    order: 1;
    max-width: 140px;
  }

  .burger__menu {
    order: 2;
    margin-left: auto;
  }

  .header-mobile__address {
    order: 2;
    flex-basis: auto;
  }

  .header-mobile__phones {
    order: 4;
    flex-basis: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;

  }
  .header-mobile__phones a{
      color: #333333;
      text-decoration: none;
      font-size: 14px;
  }
}
@media (max-width: 720px) {
    .mob_hide{
        display: none;
    }
}
.header-phone{
    font-size: 14px;
}
.header__container{
    max-width: 1520px;
}
@media (max-width: 720px) {
  .header-mobile__phones a{
      font-size: 16px;
  }
}
@media (max-width: 720px) {
  .header-mobile__phones{
      gap: 100px;
  }
}