:root {
  --color-white: #FFF;
  --color-white-rgb: 255, 255, 255;
  --color-black: #171717;
  --color-black-rgb: 23, 23, 23;
  --color-blue: #9CC3F4;
  --color-blue-rgb: 156, 195, 244;
  --color-brown: #D4AA84;
  --color-brown-rgb: 212, 170, 132;
  --color-grey: #F8F8F8;
  --color-grey-rgb: 248, 248, 248;
  --color-primaryGrey: #969696;
  --color-primaryGrey-rgb: 150, 150, 150;
  --color-secondaryGrey: #6C6A6A;
  --color-secondaryGrey-rgb: 108, 106, 106;
  --color-red: #D63030;
  --color-red-rgb: 214, 48, 48;
}

@font-face {
  font-family: "Stolzl";
  src: url("../fonts/Stolzl-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/Stolzl-Book.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/Stolzl-Regular.woff2") format("woff2");
  font-weight: 450;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Stolzl";
  src: url("../fonts/Stolzl-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
.title-l {
  font-size: 96px;
  font-weight: 500;
}

.title-m {
  font-size: 56px;
  font-weight: 500;
}

.title-s {
  font-size: 20px;
  font-weight: 450;
}

.title-xs {
  font-size: 18px;
  font-weight: 450;
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-base {
  font-size: 18px;
  font-weight: 300;
}

.text-small {
  font-size: 16px;
  font-weight: 300;
}

.text-editor {
  color: var(--color-black);
}
.text-editor p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
}
.text-editor h3 {
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 500;
}
.text-editor h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.text-editor ul {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
}
.text-editor ul li {
  padding-left: 24px;
  position: relative;
}
.text-editor ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-blue);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus,
:active {
  outline: none;
}

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

body {
  box-sizing: border-box;
}

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

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

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

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
}

p {
  margin: 0;
}

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

input:not([type=checkbox]):not([type=radio]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

* {
  font-family: "Stolzl", sans-serif;
}

body {
  background-color: #fff;
}

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.page--prices, .page--privacy, .page--category, .page--doctor, .page--service, .page--subcategory {
  padding-top: 119px;
  position: relative;
}
.page--prices::before, .page--privacy::before, .page--category::before, .page--doctor::before, .page--service::before, .page--subcategory::before {
  content: "";
  height: 119px;
  background-color: var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.mb-120 {
  margin-bottom: 120px;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 120px;
}

.navigation-wrapper {
  display: flex;
  align-items: center;
}

.navigation-buttons {
  display: flex;
  align-items: center;
}
.navigation-buttons .btn-prev {
  margin-left: 60px;
}
.navigation-buttons .btn-next {
  margin-left: 50px;
}

.header {
  padding: 20px 0;
  transition: transform 0.5s ease-out, background-color 0.2s linear;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header:not(.open).header-out {
  transform: translateY(-100%);
}
.header.active {
  background-color: rgba(var(--color-black-rgb), 0.45);
}
.header.active .header-nav {
  margin-top: 0;
  height: 0;
}
.header--dark {
  background-color: rgba(var(--color-black-rgb), 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-logo {
  display: block;
  width: 309px;
  height: 65px;
  flex-shrink: 0;
  transition: width 0.2s linear, height 0.2s linear;
  position: relative;
}
.header-logo:hover img:nth-child(2) {
  opacity: 1;
}
.header-logo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.header-logo img:nth-child(2) {
  transition: 0.2s linear;
  opacity: 0;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header-content-top {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-tel {
  white-space: nowrap;
  color: var(--color-white);
  fill: var(--color-blue);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  transition: 0.2s linear;
}
.header-tel:hover {
  color: var(--color-blue);
  fill: var(--color-white);
}
.header-tel svg {
  display: none;
}

.header-appointment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  height: 35px;
  border: 1px solid var(--color-white);
  white-space: nowrap;
  color: var(--color-white);
  fill: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  transition: 0.2s linear;
}
.header-appointment:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  fill: var(--color-blue);
}
.header-appointment svg {
  width: 14px;
  height: 10px;
}
.header-search {
  min-width: 18px;
  position: relative;
}

.header-search-btn {
  display: block;
  width: 18px;
  height: 19px;
  fill: var(--color-white);
  transition: 0.2s linear;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.header-search-btn:hover {
  fill: var(--color-blue);
}

.header-search-form {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(10px);
  transition: width 0.2s linear, opacity 0.2s linear;
}
.header-search-form.show {
  width: 208px;
  opacity: 1;
}

.header-search-label {
  display: block;
}

.header-search-input {
  display: block;
  height: 35px;
  width: 100%;
  padding: 8px 30px 8px 12px;
  background-color: transparent;
  border: 1px solid var(--color-white);
  white-space: nowrap;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.header-lang {
  width: 54px;
  flex-shrink: 0;
  position: relative;
}
.header-lang:hover .header-lang-current svg {
  transform: rotate(180deg);
}
.header-lang:hover .header-lang-list {
  opacity: 1;
  visibility: visible;
}

.header-lang-current {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 0;
  cursor: default;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.header-lang-current svg {
  width: 10px;
  height: 9px;
  transition: 0.2s linear;
}
.header-lang-list {
  transition: 0.2s linear;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}

.header-lang-item:not(last-child) {
  border-bottom: 1px solid #E8E8E8;
}

.header-lang-link {
  display: block;
  padding: 8px 0;
  text-align: center;
  color: var(--color-black);
  font-size: 16px;
  font-weight: 450;
  line-height: normal;
  transition: 0.2s linear;
}
.header-lang-link:hover {
  color: var(--color-blue);
}

.header-burger {
  width: 22px;
  height: 17px;
  fill: var(--color-white);
  cursor: pointer;
  transition: 0.2s linear;
}
.header-burger:hover {
  fill: var(--color-blue);
}

.header-nav {
  margin-top: 20px;
  height: 24px;
  overflow: hidden;
  transition: 0.2s linear;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-nav-link {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 450;
  line-height: normal;
  transition: 0.2s linear;
}
.header-nav-link:hover {
  color: var(--color-blue);
}

.header-nav-socials {
  display: flex;
  align-items: center;
  gap: 42px;
}
.header-social {
  display: block;
  width: 24px;
  height: 24px;
  fill: var(--color-white);
  transition: 0.2s linear;
}
.header-social:hover {
  fill: var(--color-blue);
}

.header-menu {
  display: none;
  background: rgba(0, 0, 0, 0.45);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header-menu::-webkit-scrollbar {
  display: none;
}

.header-menu-inner {
  margin-left: auto;
  padding: 70px;
  width: 100%;
  max-width: 1317px;
  height: auto;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.88);
}

.header-menu-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 37px;
}

.header-menu-close {
  color: var(--color-white);
  font-size: 40px;
  font-weight: 300;
  line-height: normal;
  transition: 0.2s linear;
}
.header-menu-close:hover {
  color: var(--color-blue);
}

.header-menu-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 110px;
}

.header-menu-one {
  display: flex;
  flex-direction: column;
}

.header-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-menu-btn {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-menu-btn.open svg {
  transform: rotate(-90deg);
  fill: var(--color-blue);
}
.header-menu-btn svg {
  width: 16px;
  height: 14px;
  transition: 0.2s linear;
  transform: rotate(90deg);
  fill: var(--color-white);
}

.header-menu-link {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
  font-size: 48px;
  font-weight: 500;
  line-height: normal;
}

.header-menu-link {
  transition: 0.2s linear;
}
.header-menu-link:hover {
  color: var(--color-blue);
}

.header-submenu {
  margin-top: 40px;
}

.header-submenu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-submenu-link {
  color: var(--color-blue);
  font-size: 22px;
  font-weight: 400;
  line-height: normal;
  transition: 0.2s linear;
}
.header-submenu-link:hover {
  color: var(--color-white);
}

.header-menu-two {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.header-menu-socials {
  display: flex;
  align-items: center;
  gap: 64px;
}

.header-menu-social {
  display: block;
  width: 35px;
  height: 35px;
  fill: var(--color-blue);
  transition: 0.2s linear;
}
.header-menu-social:hover {
  fill: var(--color-white);
}

.header-menu-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.header-menu-tel {
  display: none;
  fill: var(--color-blue);
}

.btn-border-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: 2px solid var(--color-white);
  fill: var(--color-white);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  transition: 0.2s linear;
}
.btn-border-white:hover {
  border-color: var(--color-blue);
  fill: var(--color-blue);
  color: var(--color-blue);
}
.btn-border-white svg {
  width: 26px;
  height: 19px;
}

.btn-prev,
.btn-next {
  width: 23px;
  height: 17px;
  fill: var(--color-black);
  stroke: var(--color-black);
  transition: 0.2s linear;
}
.btn-prev:not(.swiper-button-disabled):hover,
.btn-next:not(.swiper-button-disabled):hover {
  fill: var(--color-brown);
  stroke: var(--color-brown);
}
.btn-prev.swiper-button-disabled,
.btn-next.swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}
.btn-prev.swiper-button-lock,
.btn-next.swiper-button-lock {
  display: none;
}

.link {
  color: var(--color-brown);
  font-size: 20px;
  font-weight: 450;
  transition: 0.2s linear;
}
.link:hover {
  color: var(--color-blue);
}

.link-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-brown);
  fill: var(--color-brown);
  stroke: var(--color-brown);
  font-size: 20px;
  font-weight: 450;
  transition: 0.2s linear;
}
.link-arrow:hover {
  fill: var(--color-blue);
  color: var(--color-blue);
  stroke: var(--color-blue);
}
.link-arrow svg {
  width: 16px;
  min-width: 16px;
  height: 12px;
}

.btn-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 50px;
  background: var(--color-blue);
  box-shadow: 4px 4px 20px 0px rgba(var(--color-blue-rgb), 0.5);
  color: var(--color-white);
  fill: var(--color-white);
  font-size: 18px;
  font-weight: 450;
  transition: 0.2s linear;
}
.btn-blue:hover {
  background: var(--color-brown);
  box-shadow: 4px 4px 20px 0px rgba(var(--color-brown-rgb), 0.5);
}
.btn-blue:active {
  transform: translateY(1px);
}
.btn-blue svg {
  width: 16px;
  height: 12px;
}

.btn-brown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 50px;
  background: var(--color-brown);
  box-shadow: 4px 4px 20px 0px rgba(var(--color-brown-rgb), 0.5);
  color: var(--color-white);
  fill: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  transition: 0.2s linear;
}
.btn-brown:hover {
  background: var(--color-blue);
  box-shadow: 4px 4px 20px 0px rgba(var(--color-blue-rgb), 0.5);
}
.btn-brown:active {
  transform: translateY(1px);
}
.btn-brown svg {
  width: 16px;
  height: 12px;
}

.btn-up {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-secondaryGrey);
  fill: var(--color-secondaryGrey);
  stroke: var(--color-secondaryGrey);
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 99;
  transition: 0.2s linear;
}
.btn-up.show {
  opacity: 1;
  visibility: visible;
}
.btn-up svg {
  width: 36px;
  height: 26px;
  transform: rotate(-90deg);
}

.breadcrumbs {
  padding: 20px 0;
  margin-bottom: 60px;
  background-color: #506A88;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-grey);
  font-size: 16px;
  font-weight: 300;
  white-space: nowrap;
}
.breadcrumbs-inner a {
  color: inherit;
  transition: 0.2s linear;
}
.breadcrumbs-inner a:hover {
  color: var(--color-blue);
}
.breadcrumbs-inner .current:hover {
  color: inherit;
}

.introduction {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100vh;
  position: relative;
  z-index: 1;
}
.introduction::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.introduction::after {
  content: "";
  width: 631px;
  height: 473px;
  background-image: url("../img/icons/introduction-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.introduction-inner {
  position: static;
  z-index: 4;
}
.introduction-inner .title-l {
  margin-bottom: 50px;
  max-width: 1314px;
  color: var(--color-white);
}

.introduction-text {
  max-width: 533px;
  margin-bottom: 60px;
  color: var(--color-white);
  font-size: 32px;
  font-weight: 400;
}

.introduction-player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 58px;
  fill: var(--color-white);
  transition: 0.2s linear;
}
.introduction-player-btn:hover {
  fill: var(--color-blue);
}
.introduction-player-btn.played .introduction-player-play {
  display: none;
}
.introduction-player-btn.played .introduction-player-pause {
  display: block;
}

.introduction-player-play {
  width: 20px;
  height: 23px;
}

.introduction-player-pause {
  display: none;
  width: 13px;
  height: 21px;
}

.introduction-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.introduction-bg img {
  -o-object-fit: cover;
  object-fit: cover;
}

.introduction-video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.welcome {
  margin-bottom: 220px;
}

.welcome-inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.welcome-inner .title-m {
  max-width: 1340px;
  color: var(--color-black);
}

.welcome-content {
  display: flex;
  gap: 100px;
}

.welcome-bg {
  max-width: 806px;
  height: 519px;
  position: relative;
  z-index: 1;
}
.welcome-bg::before {
  content: "";
  background-color: var(--color-brown);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transform: translate(-140px, 100px);
}
.welcome-bg::after {
  content: "";
  width: 413px;
  height: 373px;
  background-image: url("../img/icons/welcome-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-140px, 100px);
}
.welcome-bg img {
  -o-object-fit: cover;
  object-fit: cover;
}

.welcome-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 734px;
}
.welcome-description .text-base {
  color: var(--color-black);
}

.statistics {
  position: relative;
}

.statistics-list {
  display: flex;
  align-items: center;
  gap: 55px;
  padding: 88px 140px 100px;
  position: relative;
  z-index: 1;
}
.statistics-list::before {
  content: "";
  background-color: var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
  right: -140px;
  bottom: 0;
  z-index: -1;
}

.statistics-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.statistics-item .text-base {
  text-align: center;
  max-width: 250px;
  color: var(--color-white);
}

.statistics-value {
  white-space: nowrap;
  text-align: center;
  color: var(--color-white);
  font-size: 96px;
  font-weight: 500;
}

.statistics-bg {
  width: 731px;
  height: 754px;
  position: absolute;
  bottom: 103px;
  right: 0;
  z-index: 2;
}

.popular-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 250px;
}
.popular-slide:hover .popular-icon-default {
  opacity: 0;
}
.popular-slide:hover .popular-icon-hover {
  opacity: 1;
}
.popular-slide .title-s {
  color: var(--color-black);
  text-align: center;
}

.popular-icon {
  width: 227px;
  height: 100px;
  position: relative;
}

.popular-icon-default,
.popular-icon-hover {
  transition: 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.popular-icon-default {
  opacity: 1;
}

.popular-icon-hover {
  opacity: 0;
}

.benefits-inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.benefits-inner .title-m {
  color: var(--color-black);
}

.benefits-list {
  display: flex;
  justify-content: space-between;
  gap: 230px;
}

.benefits-item {
  max-width: 385px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-icon {
  height: 150px;
  display: flex;
  align-items: center;
  padding-left: 55px;
  position: relative;
  z-index: 1;
}
.benefits-icon::before {
  content: "";
  width: 130px;
  background-color: var(--color-blue);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.benefits-icon img {
  width: auto;
  height: 110px;
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-content .title-s,
.benefits-content .text-small {
  color: var(--color-black);
}

.team-slider {
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.team-item {
  position: relative;
}

.team-likes {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 2;
  color: var(--color-black);
}

.team-heart {
  min-width: 34px;
  width: 34px;
  height: 34px;
  fill: var(--color-brown);
  stroke: var(--color-brown);
  transition: 0.2s linear;
}
.team-heart.active {
  fill: var(--color-blue);
  stroke: var(--color-blue);
}
.team-heart:active {
  transform: scale(0.9);
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-img {
  height: 480px;
  width: 100%;
}
.team-img img {
  -o-object-fit: cover;
  object-fit: cover;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 329px;
  margin-top: -80px;
  padding: 30px;
  background: var(--color-brown);
  box-shadow: 2px 4px 8px 0px rgba(var(--color-brown-rgb), 0.5);
  transition: 0.2s linear;
  position: relative;
  z-index: 1;
}
.team-info .title-s {
  min-height: 46px;
  color: var(--color-white);
}
.team-info .text-small {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
  fill: var(--color-black);
}
.team-info .text-small svg {
  flex-shrink: 0;
  width: 14px;
  height: 10px;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 120px 28px;
}

.reviews-inner .btn-blue {
  margin: 0 auto;
}

.reviews-slider {
  margin-bottom: 120px;
}

.reviews-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 20px;
  padding: 50px;
  height: 399px;
  background-color: var(--color-grey);
}
.reviews-content .text-small {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}

.reviews-name {
  min-height: 60px;
  color: var(--color-brown);
  font-size: 25px;
  font-weight: 500;
}

.reviews-info {
  max-width: 346px;
  margin-top: -66px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--color-brown);
  position: relative;
  z-index: 2;
}
.reviews-info .text-small {
  color: var(--color-black);
}

.reviews-person {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 450;
}

.question-inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.question-form {
  padding: 80px;
  position: relative;
  z-index: 1;
}
.question-form::before {
  content: "";
  background-color: var(--color-blue);
  position: absolute;
  top: 0;
  left: -140px;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.question-form::after {
  content: "";
  width: 517.08px;
  height: 467px;
  background-image: url("../img/icons/question-form-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -140px;
  bottom: 0;
  z-index: 1;
}

.question-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1062px;
  margin-left: auto;
}

.question-body {
  display: grid;
  gap: 80px;
  grid-template-columns: 470px 512px;
}

.question-one {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.question-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.question-group.is-error .question-label {
  color: var(--color-red);
}
.question-group.is-error .question-input {
  border-color: var(--color-red);
}

.question-label {
  color: var(--color-grey);
  font-size: 14px;
}

.question-input {
  padding-top: 10px;
  padding-bottom: 10px;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid var(--color-white);
  background-color: transparent;
  transition: 0.2s linear;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 400;
}
.question-input::-moz-placeholder {
  color: rgba(var(--color-black-rgb), 0.3);
}
.question-input::placeholder {
  color: rgba(var(--color-black-rgb), 0.3);
}

.question-textarea {
  padding: 28px 50px 28px 28px;
  min-height: 204px;
  box-shadow: none;
  border: 1px solid var(--color-white);
  background-color: transparent;
  transition: 0.2s linear;
  resize: vertical;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 400;
}
.question-textarea::-moz-placeholder {
  color: rgba(var(--color-black-rgb), 0.3);
}
.question-textarea::placeholder {
  color: rgba(var(--color-black-rgb), 0.3);
}

.question-two .question-group {
  gap: 40px;
}

.question-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.question-policy {
  max-width: 429px;
  color: rgba(var(--color-black-rgb), 0.3);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.question-policy a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  color: inherit;
  text-decoration-color: rgba(var(--color-black-rgb), 0.3);
  transition: text-decoration-color 200ms ease-in;
}
.question-policy a:hover {
  text-decoration-color: transparent;
}

.question-btn {
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--color-white);
  box-shadow: 4px 4px 20px 0px rgba(156, 195, 244, 0.5);
  transition: 0.2s linear;
  color: var(--color-white);
  fill: var(--color-white);
  font-size: 18px;
  font-weight: 450;
}
.question-btn:hover {
  color: var(--color-black);
  fill: var(--color-black);
  border-color: var(--color-black);
}
.question-btn svg {
  width: 16px;
  height: 12px;
}

.question-sent {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
}

.popup {
  display: none;
  background-color: rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.popup::-webkit-scrollbar {
  display: none;
}

.popup-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.popup-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1586px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 705px;
  margin: auto;
  padding: 80px 100px;
  overflow: hidden;
  background: var(--color-black);
  position: relative;
  z-index: 1;
}
.popup-wrapper::before {
  content: "";
  width: 675px;
  height: 688px;
  background-image: url("../img/icons/popup-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(115.658deg);
  position: absolute;
  right: -120px;
  bottom: -157px;
  z-index: -1;
}

.popup-close {
  display: block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 80px;
  right: 100px;
  fill: var(--color-white);
  transition: 0.2s linear;
}
.popup-close:hover {
  fill: var(--color-blue);
}

.popup-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 751px;
  flex-grow: 1;
}

.popup-title {
  color: var(--color-white);
  font-size: 64px;
  font-weight: 500;
}

.popup-descr {
  color: var(--color-primaryGrey);
  font-size: 12px;
  font-weight: 400;
  line-height: 137.5%;
}

.popup-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-grow: 1;
}

.popup-fields {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.popup-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.popup-group.is-error .popup-label {
  color: var(--color-red);
}
.popup-group.is-error .popup-input {
  border-color: var(--color-red);
}

.popup-label {
  color: var(--color-blue);
}

.popup-input {
  padding-bottom: 10px;
  padding-top: 10px;
  border: none;
  box-shadow: none;
  border-bottom: 1px solid var(--color-blue);
  background-color: transparent;
  transition: 0.2s linear;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
}
.popup-input::-moz-placeholder {
  color: #394149;
}
.popup-input::placeholder {
  color: #394149;
}

.popup-textarea {
  padding: 16px;
  margin-top: 10px;
  min-height: 199px;
  box-shadow: none;
  border: 1px solid var(--color-blue);
  background-color: transparent;
  transition: 0.2s linear;
  resize: vertical;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
}
.popup-textarea::-moz-placeholder {
  color: #394149;
}
.popup-textarea::placeholder {
  color: #394149;
}

.popup-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 60px;
}

.popup-footer .btn-border-white {
  width: -moz-fit-content;
  width: fit-content;
}

.popup-policy {
  color: var(--color-primaryGrey);
  font-size: 12px;
  font-weight: 400;
  line-height: 137.5%;
}
.popup-policy a {
  display: block;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #fff;
  transition: text-decoration-color 200ms ease-in;
}
.popup-policy a:hover {
  text-decoration-color: transparent;
}

.popup-sent {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
}
.popup-sent .btn-border-white {
  width: -moz-fit-content;
  width: fit-content;
}

.popup-sent-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
}

.popup-equipment {
  margin: auto;
  position: relative;
}
.popup-equipment .popup-close {
  top: 30px;
  right: 30px;
  fill: var(--color-black);
  z-index: 2;
}
.popup-equipment .popup-close:hover {
  fill: var(--color-blue);
}
.popup-equipment .equipment-item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  cursor: default;
}
.popup-equipment .equipment-img {
  width: 945px;
  height: 786px;
  margin: 0;
  padding: 50px;
  filter: unset;
  border: none;
}
.popup-equipment .equipment-img img {
  height: 100%;
}
.popup-equipment .equipment-content {
  margin-top: 0;
  margin-right: -80px;
}
.popup-equipment .equipment-info {
  padding: 88px 30px 88px 83px;
  width: 672px;
  height: 626px;
}
.popup-equipment .equipment-name {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 35px;
}
.popup-equipment .equipment-descr {
  display: block;
}
.popup-equipment .equipment-btn {
  display: none;
}

.popup-certificat {
  padding: 90px;
  margin: auto;
  background-color: var(--color-grey);
  position: relative;
}
.popup-certificat .popup-close {
  top: 26px;
  right: 26px;
  fill: var(--color-black);
}
.popup-certificat .popup-close:hover {
  fill: var(--color-blue);
}

.popup-certificat-img img {
  width: auto;
  max-width: 823px;
  max-height: calc(80vh - 180px);
  min-height: 590px;
}

.front {
  position: relative;
  z-index: 1;
}
.front .breadcrumbs {
  margin: 0;
  padding: 0;
  background-color: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 159px;
}
.front .breadcrumbs a:hover {
  color: var(--color-black);
}

.front-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 712px;
}
.front-inner .title-l {
  margin-top: 20px;
  color: var(--color-white);
}

.front-bg {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.front-bg img {
  width: 1134px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 20%;
  object-position: 20%;
}
.front-bg::before {
  content: "";
  width: 1068px;
  background-image: url("../img/icons/front-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.front-bg::after {
  content: "";
  width: 1068px;
  background: linear-gradient(90deg, #9CC3F4 70.91%, rgba(160, 197, 244, 0.8) 79.95%, rgba(179, 209, 247, 0.5) 91.01%, rgba(255, 255, 255, 0) 99.96%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.about-inner .title-m {
  margin-bottom: 40px;
}
.about-inner .text-editor {
  margin: 0 auto;
  max-width: 1362px;
  color: var(--color-black);
}

.about-wrapper {
  width: 726px;
  height: 726px;
  margin: 0 auto 60px;
  position: relative;
}

.about-list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-item {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 353px;
  min-height: 46px;
  text-align: left;
  padding-left: 61px;
  position: absolute;
}
.about-item::before {
  content: "";
  width: 45px;
  height: 45px;
  background-image: url("../img/icons/about-point.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.about-item:nth-child(1) {
  right: 95%;
  top: 28%;
}
.about-item:nth-child(2) {
  right: 98%;
  top: 48%;
}
.about-item:nth-child(3) {
  right: 95%;
  top: 68%;
}
.about-item:nth-child(4) {
  left: 95%;
  top: 28%;
}
.about-item:nth-child(5) {
  left: 98%;
  top: 48%;
}
.about-item:nth-child(6) {
  left: 95%;
  top: 68%;
}

.about-text {
  flex-grow: 1;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 450;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
}

.equipment-slider {
  padding: 30px;
  margin: -30px;
}

.equipment-item {
  cursor: pointer;
}
.equipment-item:hover .equipment-btn {
  background: var(--color-brown);
}

.equipment-img {
  margin-left: 20px;
  height: 538px;
  filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.1));
  border: 1px solid var(--color-grey);
  background: var(--color-white);
}
.equipment-img img {
  height: auto;
}

.equipment-content {
  display: flex;
  align-items: center;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.equipment-info {
  flex-grow: 1;
  height: 127px;
  padding: 20px 30px;
  background: var(--color-blue);
  box-shadow: 2px 4px 8px 0px rgba(111, 155, 210, 0.5);
}

.equipment-name {
  color: var(--color-black);
  font-size: 18px;
  font-weight: 400;
}

.equipment-descr {
  display: none;
}

.equipment-btn {
  padding: 24px;
  background: var(--color-primaryGrey);
  box-shadow: 2px 4px 8px 0px rgba(133, 127, 122, 0.5);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 450;
  transition: 0.2s linear;
}

.equipment-popup {
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}

.certificates-slider {
  height: 521px;
}

.certificates-slide {
  cursor: pointer;
}

.certificates-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.certificates-img img {
  height: auto;
  max-height: 100%;
  transition: 0.2s linear;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
  object-fit: cover;
}

.categories .title-m {
  color: var(--color-blue);
}
.categories--other .title-m {
  color: var(--color-black);
}

.categories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.categories-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

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

.categories-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 240px;
  position: relative;
  z-index: 1;
}
.categories-item::before {
  content: "";
  transition: 0.2s linear;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  box-shadow: 4px 4px 15px 0px rgba(156, 195, 244, 0.3);
  position: absolute;
  top: -20px;
  left: -8px;
  right: -20px;
  bottom: -8px;
  z-index: -1;
}
.categories-item .link-arrow {
  width: -moz-fit-content;
  width: fit-content;
  stroke: var(--color-blue);
  fill: var(--color-blue);
  color: var(--color-blue);
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 10px;
  right: 0;
}

.categories-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.categories-item-head .title-xs {
  transition: color 0.2s linear;
  color: #000;
}

.categories-icon {
  width: 119px;
  height: 88px;
  flex-grow: 0;
  position: relative;
}

.categories-icon-default,
.categories-icon-hover {
  transition: 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.categories-icon-default {
  opacity: 1;
}

.categories-icon-hover {
  opacity: 0;
}

.categories-arrow {
  display: none;
}

.categories-item-body {
  padding: 0 26px 36px;
}

.categories-descr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-black);
  font-size: 15px;
  font-weight: 300;
}
.categories-descr li {
  padding-left: 17px;
  position: relative;
}
.categories-descr li::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-blue);
  position: absolute;
  left: 0;
  top: 6px;
}

.subcategories .title-m {
  color: var(--color-blue);
}

.subcategories-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.subcategories-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.subcategories-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 28px;
}

.subcategories-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  position: relative;
  z-index: 1;
}
.subcategories-item:hover::before {
  opacity: 1;
  visibility: visible;
}
.subcategories-item:hover .link-arrow {
  opacity: 1;
  visibility: visible;
}
.subcategories-item:hover .subcategories-icon-default {
  opacity: 0;
}
.subcategories-item:hover .subcategories-icon-hover {
  opacity: 1;
}
.subcategories-item::before {
  content: "";
  background: var(--color-white);
  box-shadow: 4px 4px 15px 0px rgba(156, 195, 244, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -8px;
  z-index: -1;
}
.subcategories-item .link-arrow {
  width: -moz-fit-content;
  width: fit-content;
  stroke: var(--color-blue);
  fill: var(--color-blue);
  color: var(--color-blue);
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  right: 16px;
}
.subcategories-item .title-xs {
  color: var(--color-black);
}

.subcategories-icon {
  width: 71px;
  height: 76px;
  flex-shrink: 0;
  position: relative;
}

.subcategories-icon-default,
.subcategories-icon-hover {
  transition: 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.subcategories-icon-default {
  opacity: 1;
}

.subcategories-icon-hover {
  opacity: 0;
}

.subcategories-arrow {
  display: none;
}

.service .title-m {
  color: var(--color-blue);
}

.service-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-wrapper {
  display: grid;
  grid-template-columns: 389px 1fr;
  align-items: flex-start;
  gap: 48px;
}

.service-subcategories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.service-subcategories .subcategories-list {
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.service-icon {
  height: 305px;
  fill: var(--color-blue);
  stroke: var(--color-blue);
}

.doctor-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.doctor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.doctor-head .title-m {
  color: var(--color-blue);
}

.doctor-body {
  display: grid;
  grid-template-columns: 522px 1fr;
  gap: 40px;
}
.doctor-body .team-card {
  align-items: unset;
}
.doctor-body .team-img {
  height: 544px;
}
.doctor-body .team-info {
  padding: 30px;
  max-width: unset;
  margin-left: 60px;
  margin-top: -60px;
  gap: 4px;
  background-color: var(--color-blue);
  box-shadow: unset;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 450;
}

.doctor-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.doctor-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor-item .text-base {
  color: var(--color-black);
}

.doctor-name {
  color: #000;
  font-size: 20px;
  font-weight: 450;
}

.privacy-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.privacy-inner .title-m {
  color: var(--color-blue);
}

.contacts-inner .title-m {
  color: var(--color-black);
}

.contacts-wrapper {
  display: grid;
  grid-template-columns: 482px 1fr;
  gap: 3px;
}

.contacts-info {
  padding: 80px 40px 80px 80px;
  background-color: var(--color-grey);
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contacts-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-black);
}

.contacts-name {
  font-size: 20px;
  font-weight: 450;
}

.contacts-text,
.contacts-link {
  font-size: 18px;
  font-weight: 400;
}

.contacts-link {
  color: var(--color-black);
  transition: 0.2s linear;
}
.contacts-link:hover {
  color: var(--color-blue);
}

.contacts-hours {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-hours-item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.contacts-socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.contacts-social {
  width: 26px;
  height: 26px;
  fill: var(--color-black);
  transition: 0.2s linear;
}
.contacts-social:hover {
  fill: var(--color-blue);
}

.prices .title-m {
  color: var(--color-blue);
}

.prices-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.prices-subtitle {
  font-size: 25px;
  font-weight: 500;
  color: var(--color-black);
}

.prices-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.prices-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prices-item {
  display: flex;
  flex-direction: column;
}
.prices-item.active {
  background: var(--color-white);
  box-shadow: 4px 4px 15px 0px rgba(156, 195, 244, 0.3);
}
.prices-item.active .prices-head {
  background: var(--color-white);
}
.prices-item.active .prices-arrow {
  transform: rotate(180deg);
  fill: var(--color-brown);
  stroke: var(--color-brown);
}
.prices-item.open .prices-body {
  display: flex;
}

.prices-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 60px 14px 14px;
  background: rgba(252, 252, 252, 0.95);
  cursor: pointer;
  transition: 0.2s linear;
}

.prices-icon {
  width: 119px;
  height: 88px;
  position: relative;
}

.prices-icon-default,
.prices-icon-hover {
  transition: 0.2s linear;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.prices-icon-default {
  opacity: 1;
}

.prices-icon-hover {
  opacity: 0;
}

.prices-title {
  transition: color 0.2s linear;
  flex-grow: 1;
  color: var(--color-black);
  font-size: 22px;
  font-weight: 450;
}

.prices-arrow {
  width: 26px;
  height: 36px;
  fill: var(--color-blue);
  stroke: var(--color-blue);
  transition: 0.2s linear;
}

.prices-body {
  display: none;
  flex-direction: column;
  gap: 50px;
}

.prices-content {
  padding: 28px;
  background: rgba(252, 252, 252, 0.95);
  font-size: 22px;
  font-weight: 450;
  color: var(--color-blue);
  text-align: center;
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-table thead th {
  padding: 22px 26px;
  text-transform: lowercase;
  color: var(--color-black);
  font-size: 20px;
  font-weight: 450;
}
.prices-table thead th:nth-child(2) {
  text-align: center;
}
.prices-table thead th:nth-child(3) {
  text-align: center;
}
.prices-table tbody tr {
  transition: background 0.2s linear;
}
.prices-table tbody tr:hover {
  background: rgba(252, 252, 252, 0.95);
}
.prices-table tbody td {
  padding: 13px 26px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 400;
}
.prices-table tbody td:nth-child(2) {
  white-space: nowrap;
  text-align: center;
  font-weight: 400;
}
.prices-table tbody td:nth-child(3) {
  text-align: center;
}
.prices-table tbody .link-arrow {
  margin: 0 auto;
  font-size: 18px;
  white-space: nowrap;
}
.prices-table tr {
  border-bottom: 4px solid rgba(252, 252, 252, 0.95);
}

.footer {
  margin-top: auto;
  padding: 65px 0 51px;
  background-color: var(--color-secondaryGrey);
}

.footer-inner {
  display: flex;
  align-items: stretch;
  gap: 184px;
}

.footer-one {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  width: 317px;
  height: 67px;
  flex-shrink: 0;
  margin-bottom: 51px;
  position: relative;
}
.footer-logo:hover img:nth-child(2) {
  opacity: 1;
}
.footer-logo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.footer-logo img:nth-child(2) {
  transition: 0.2s linear;
  opacity: 0;
}

.footer-license {
  margin-bottom: 51px;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 400;
}

.footer-policy {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  overflow: hidden;
  position: relative;
  transition: 0.2s linear;
}
.footer-policy:hover {
  color: var(--color-white);
}

.footer-copyright {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
}

.footer-two {
  display: flex;
  gap: 184px;
  padding-top: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.footer-nav-link {
  display: block;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  transition: 0.2s linear;
}
.footer-nav-link:hover {
  color: var(--color-blue);
}

.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 19px;
  max-width: 324px;
}

.footer-address {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.3;
}

.footer-search {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-blue);
  line-height: 1.4;
  overflow: hidden;
  position: relative;
}
.footer-search::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--color-blue);
  transition: transform 0.2s linear;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateX(0);
}
.footer-search:hover::before {
  transform: translateX(-110%);
}

.footer-tel {
  white-space: nowrap;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  transition: 0.2s linear;
}
.footer-tel:hover {
  color: var(--color-blue);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-white);
}

.footer-three {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  padding-top: 12px;
}

.footer-appointment {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 30px;
  border: 2px solid #9CC3F4;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 450;
  color: var(--color-blue);
  fill: var(--color-blue);
  transition: 0.2s linear;
}
.footer-appointment:hover {
  color: var(--color-white);
  fill: var(--color-white);
  border-color: var(--color-white);
}
.footer-appointment svg {
  flex-shrink: 0;
  width: 23px;
  height: 17px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.footer-social {
  display: block;
  width: 32px;
  height: 32px;
  fill: var(--color-blue);
  transition: 0.2s linear;
}
.footer-social:hover {
  fill: var(--color-white);
}

.footer-made {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-made-text {
  font-size: 13.538px;
  font-weight: 400;
  color: var(--color-white);
}

.footer-made-logo {
  width: 230px;
  height: 40px;
}

@media (min-width: 768px) {
  .header-menu-btn {
    display: none !important;
  }
  .about-item:nth-child(-n+3) {
    text-align: right;
    padding-right: 61px;
    padding-left: 0;
  }
  .about-item:nth-child(-n+3)::before {
    left: unset;
    right: 0;
  }
}

@media (min-width: 1366px) {
  .header.active .header-logo {
    width: 238px;
    height: 50px;
  }
  .header-tel {
    order: 1;
  }
  .header-appointment {
    order: 2;
  }
  .header-search {
    order: 3;
  }
  .header-lang {
    order: 4;
  }
  .header-burger {
    order: 5;
  }
  .categories-item:hover::before {
    opacity: 1;
    visibility: visible;
  }
  .categories-item:hover .link-arrow {
    opacity: 1;
    visibility: visible;
  }
  .categories-item:hover .categories-icon-default {
    opacity: 0;
  }
  .categories-item:hover .categories-icon-hover {
    opacity: 1;
  }
  .categories-item:hover .title-xs {
    color: var(--color-blue);
  }
  .categories-item-body {
    display: block !important;
  }
}

@media (min-width: 1366px) and (max-width: 1919px) {
  .header.active .header-logo {
    width: 12.396vw;
    height: 2.604vw;
  }
}

@media (max-width: 1919px) {
  .title-s {
    font-size: 1.042vw;
  }
  .title-xs {
    font-size: 0.938vw;
  }
  .text-base {
    font-size: 0.938vw;
  }
  .text-small {
    font-size: 0.833vw;
  }
  .text-editor p {
    font-size: 0.938vw;
  }
  .text-editor h3 {
    font-size: 1.302vw;
  }
  .text-editor ul {
    font-size: 0.938vw;
  }
  .link-arrow svg {
    min-width: 0.833vw;
    height: 0.625vw;
  }
  .btn-blue {
    gap: 0.521vw;
    padding: 1.042vw 2.604vw;
    font-size: 0.938vw;
  }
  .btn-brown {
    gap: 0.521vw;
    padding: 1.042vw 2.604vw;
    font-size: 0.938vw;
  }
  .popular-icon {
    width: 11.823vw;
    height: 5.208vw;
  }
  .reviews-content {
    gap: 1.042vw;
    margin-left: 1.042vw;
    padding: 2.604vw;
    height: 20.781vw;
  }
  .reviews-name {
    min-height: 3.125vw;
    font-size: 1.302vw;
  }
  .reviews-info {
    max-width: 18.021vw;
    margin-top: -3.438vw;
    padding: 1.042vw 2.083vw;
    gap: 0.521vw;
  }
  .reviews-person {
    font-size: 0.938vw;
  }
  .question-label {
    font-size: 0.729vw;
  }
  .question-input {
    padding-top: 0.521vw;
    padding-bottom: 0.521vw;
    font-size: 0.938vw;
  }
  .question-textarea {
    font-size: 0.938vw;
  }
  .question-policy {
    font-size: 0.729vw;
  }
  .popup-descr {
    font-size: 10px;
    line-height: 165%;
  }
  .popup-input {
    padding-top: 0.521vw;
    padding-bottom: 0.521vw;
    font-size: 1.042vw;
  }
  .popup-textarea {
    font-size: 1.042vw;
  }
  .popup-policy {
    font-size: 10px;
    line-height: 165%;
  }
  .about-item:nth-child(-n+3) {
    padding-right: 3.177vw;
  }
  .footer-nav-link {
    font-size: 18px;
  }
}

@media (max-width: 1919px) and (min-width: 1024px) {
  .title-l {
    font-size: 5vw;
  }
  .title-m {
    font-size: 2.917vw;
  }
  .text-wrapper {
    gap: 1.042vw;
  }
  .container {
    padding: 0 7.292vw;
  }
  .mb-120 {
    margin-bottom: 6.25vw;
  }
  .navigation {
    margin-bottom: 6.25vw;
  }
  .navigation-buttons .btn-prev {
    margin-left: 3.125vw;
  }
  .navigation-buttons .btn-next {
    margin-left: 2.604vw;
  }
  .btn-border-white {
    gap: 0.521vw;
    padding: 0.833vw 2.083vw;
    font-size: 1.25vw;
  }
  .btn-border-white svg {
    width: 1.354vw;
    height: 0.99vw;
  }
  .introduction::after {
    width: 32.865vw;
    height: 24.635vw;
  }
  .introduction-inner .title-l {
    margin-bottom: 2.604vw;
    max-width: 68.438vw;
  }
  .introduction-text {
    max-width: 27.76vw;
    margin-bottom: 3.125vw;
    font-size: 1.667vw;
    font-weight: 400;
  }
  .introduction-player-btn {
    margin-top: 3.021vw;
  }
  .welcome {
    margin-bottom: 11.458vw;
  }
  .welcome-inner {
    gap: 6.25vw;
  }
  .welcome-inner .title-m {
    max-width: 69.792vw;
  }
  .welcome-content {
    gap: 5.208vw;
  }
  .welcome-bg {
    max-width: 41.979vw;
    height: 27.031vw;
  }
  .welcome-bg::before {
    transform: translate(-7.292vw, 5.208vw);
  }
  .welcome-bg::after {
    width: 21.51vw;
    height: 19.427vw;
    transform: translate(-7.292vw, 5.208vw);
  }
  .welcome-description {
    gap: 1.042vw;
    max-width: 38.229vw;
  }
  .statistics-list {
    gap: 2.865vw;
    padding: 4.583vw 7.292vw 5.208vw;
  }
  .statistics-list::before {
    right: -7.292vw;
  }
  .statistics-item {
    gap: 0.521vw;
  }
  .statistics-value {
    font-size: 5vw;
  }
  .statistics-bg {
    width: 38.073vw;
    height: 39.271vw;
    bottom: 5.365vw;
  }
  .benefits-inner {
    gap: 6.25vw;
  }
  .benefits-list {
    gap: 11.979vw;
  }
  .benefits-item {
    max-width: 20.052vw;
    gap: 1.563vw;
  }
  .benefits-icon {
    height: 7.813vw;
    padding-left: 2.865vw;
  }
  .benefits-icon::before {
    width: 6.771vw;
  }
  .benefits-icon img {
    height: 5.729vw;
  }
  .question-inner {
    gap: 6.25vw;
  }
  .question-form {
    padding: 4.167vw;
  }
  .question-form::before {
    left: -7.292vw;
  }
  .question-form::after {
    width: 26.931vw;
    height: 24.323vw;
    left: -7.292vw;
  }
  .question-wrapper {
    gap: 2.604vw;
    max-width: 55.313vw;
  }
  .question-body {
    gap: 4.167vw;
    grid-template-columns: 24.479vw 26.667vw;
  }
  .question-one {
    gap: 1.667vw;
  }
  .question-group {
    gap: 0.104vw;
  }
  .question-textarea {
    padding: 1.458vw 2.604vw 1.458vw 1.458vw;
    min-height: 10.625vw;
  }
  .question-two .question-group {
    gap: 2.083vw;
  }
  .question-policy {
    max-width: 22.344vw;
  }
  .question-btn {
    padding: 1.042vw 2.604vw;
    gap: 0.521vw;
    font-size: 0.938vw;
  }
  .question-btn svg {
    width: 0.833vw;
    height: 0.625vw;
  }
  .question-sent {
    font-size: 0.938vw;
  }
  .popup-wrapper {
    max-width: 82.604vw;
    min-height: 36.719vw;
    padding: 4.167vw 5.208vw;
  }
  .popup-wrapper::before {
    width: 35.156vw;
    height: 35.833vw;
    right: -6.25vw;
    bottom: -8.177vw;
  }
  .popup-close {
    width: 2.5vw;
    height: 2.5vw;
    top: 4.167vw;
    right: 5.208vw;
  }
  .popup-title {
    font-size: 3.333vw;
  }
  .popup-form {
    gap: 2.083vw;
    margin-top: 2.083vw;
  }
  .popup-fields {
    gap: 2.083vw;
  }
  .popup-group {
    gap: 0.313vw;
  }
  .popup-textarea {
    padding: 0.833vw;
    min-height: 10.365vw;
    margin-top: 0.521vw;
  }
  .popup-column {
    gap: 3.125vw;
  }
  .popup-sent {
    gap: 4.167vw;
    margin-top: 4.167vw;
  }
  .popup-sent-text {
    font-size: 1.25vw;
  }
  .popup-certificat .popup-close {
    top: 1.354vw;
    right: 1.354vw;
  }
  .front-inner {
    height: 37.083vw;
  }
  .about-inner .text-editor {
    max-width: 70.938vw;
  }
  .about-item {
    max-width: 18.385vw;
    padding-left: 3.177vw;
    min-height: 2.396vw;
  }
  .about-item::before {
    width: 2.344vw;
    height: 2.344vw;
  }
  .about-text {
    font-size: 1.042vw;
  }
  .certificates-slider {
    height: 29.219vw;
  }
  .footer {
    padding: 3.385vw 0 2.656vw;
  }
  .footer-inner {
    gap: 9.583vw;
  }
  .footer-logo {
    width: 16.51vw;
    height: 3.49vw;
    margin-bottom: 2.656vw;
  }
  .footer-license {
    margin-bottom: 2.656vw;
    font-size: 10px;
  }
  .footer-policy {
    font-size: 12px;
  }
  .footer-copyright {
    font-size: 12px;
  }
  .footer-two {
    gap: 9.583vw;
    padding-top: 0.625vw;
  }
  .footer-nav {
    gap: 1.146vw;
  }
  .footer-info {
    gap: 0.99vw;
    max-width: 16.875vw;
  }
  .footer-address {
    font-size: 1.042vw;
  }
  .footer-search {
    font-size: 1.042vw;
  }
  .footer-tel {
    font-size: 1.042vw;
  }
  .footer-hours-item {
    font-size: 1.042vw;
    gap: 0.677vw;
  }
  .footer-three {
    gap: 1.563vw;
    padding-top: 0.625vw;
  }
  .footer-appointment {
    gap: 0.521vw;
    padding: 0.417vw 1.563vw;
    font-size: 1.042vw;
  }
  .footer-appointment svg {
    width: 1.198vw;
    height: 0.885vw;
  }
  .footer-socials {
    gap: 2.083vw;
  }
  .footer-social {
    width: 1.667vw;
    height: 1.667vw;
  }
  .footer-made {
    gap: 1.042vw;
  }
  .footer-made-text {
    font-size: 0.705vw;
  }
  .footer-made-logo {
    width: 11.979vw;
    height: 2.083vw;
  }
}

@media (max-width: 1919px) and (min-width: 1366px) {
  .text-editor h4 {
    font-size: 0.938vw;
  }
  .text-editor ul li {
    padding-left: 1.25vw;
  }
  .text-editor ul li::before {
    width: 0.417vw;
    height: 0.417vw;
  }
  .page--prices, .page--privacy, .page--category, .page--doctor, .page--service, .page--subcategory {
    padding-top: 6.198vw;
  }
  .page--prices::before, .page--privacy::before, .page--category::before, .page--doctor::before, .page--service::before, .page--subcategory::before {
    height: 6.198vw;
  }
  .header {
    padding: 1.042vw 0;
  }
  .header-logo {
    width: 16.094vw;
    height: 3.385vw;
  }
  .header-content-top {
    gap: 2.083vw;
  }
  .header-tel {
    font-size: 0.833vw;
  }
  .header-appointment {
    gap: 0.521vw;
    padding: 0 1.042vw;
    font-size: 0.833vw;
    height: 1.823vw;
  }
  .header-appointment svg {
    width: 0.729vw;
    height: 0.521vw;
  }
  .header-search {
    min-width: 0.938vw;
  }
  .header-search-btn {
    width: 0.938vw;
    height: 0.99vw;
  }
  .header-search-form {
    height: 1.823vw;
    transform: translateX(0.521vw);
  }
  .header-search-form.show {
    width: 10.833vw;
    opacity: 1;
  }
  .header-search-input {
    height: 1.823vw;
    padding: 0.417vw 1.563vw 0.417vw 0.625vw;
    font-size: 0.833vw;
  }
  .header-lang {
    width: 2.813vw;
  }
  .header-lang-current {
    gap: 0.104vw;
    padding: 0.417vw 0;
    font-size: 0.833vw;
  }
  .header-lang-current svg {
    width: 0.521vw;
    height: 0.469vw;
  }
  .header-lang-link {
    padding: 0.417vw 0;
    font-size: 0.833vw;
  }
  .header-burger {
    width: 1.146vw;
    height: 0.885vw;
  }
  .header-nav {
    margin-top: 1.042vw;
    height: 1.25vw;
  }
  .header-nav-list {
    gap: 2.604vw;
  }
  .header-nav-link {
    font-size: 0.938vw;
  }
  .header-nav-socials {
    gap: 2.188vw;
  }
  .header-social {
    width: 1.25vw;
    height: 1.25vw;
  }
  .header-menu-inner {
    padding: 3.646vw;
    max-width: 68.594vw;
  }
  .header-menu-head {
    gap: 1.927vw;
  }
  .header-menu-close {
    font-size: 2.083vw;
  }
  .header-menu-body {
    gap: 5.729vw;
  }
  .header-menu-link {
    font-size: 2.5vw;
  }
  .header-submenu {
    margin-top: 2.083vw;
  }
  .header-submenu-list {
    gap: 1.042vw;
  }
  .header-submenu-link {
    font-size: 1.146vw;
  }
  .header-menu-two {
    gap: 3.125vw;
  }
  .header-menu-socials {
    gap: 3.333vw;
  }
  .header-menu-social {
    width: 1.823vw;
    height: 1.823vw;
  }
  .link {
    gap: 0.521vw;
    font-size: 1.042vw;
  }
  .link-arrow {
    gap: 0.521vw;
    font-size: 1.042vw;
  }
  .btn-up {
    width: 2.604vw;
    height: 2.604vw;
  }
  .btn-up svg {
    width: 1.875vw;
    height: 1.354vw;
  }
  .breadcrumbs {
    padding: 1.042vw 0;
    margin-bottom: 3.125vw;
  }
  .breadcrumbs-inner {
    font-size: 0.833vw;
  }
  .statistics-item .text-base {
    max-width: 13.021vw;
  }
  .popular-slide {
    gap: 1.042vw;
    max-width: 13.021vw;
  }
  .team-slide {
    margin-right: 1.458vw;
  }
  .team-likes {
    gap: 0.781vw;
    top: 1.042vw;
    right: 1.563vw;
  }
  .team-heart {
    min-width: 1.771vw;
    width: 1.771vw;
    height: 1.771vw;
  }
  .team-img {
    height: 25vw;
  }
  .team-info {
    gap: 0.833vw;
    max-width: 17.135vw;
    margin-top: -4.167vw;
    padding: 1.563vw;
  }
  .team-info .title-s {
    min-height: 2.396vw;
  }
  .team-list {
    gap: 6.25vw 1.458vw;
  }
  .reviews-slider {
    margin-bottom: 6.25vw;
  }
  .popup-content {
    max-width: 39.115vw;
  }
  .popup-equipment .popup-close {
    top: 1.563vw;
    right: 1.563vw;
  }
  .popup-equipment .equipment-img {
    width: 49.219vw;
    height: 40.938vw;
    padding: 2.604vw;
  }
  .popup-equipment .equipment-content {
    margin-right: -4.167vw;
  }
  .popup-equipment .equipment-info {
    padding: 4.583vw 1.563vw 4.583vw 4.323vw;
    width: 35vw;
    height: 32.604vw;
  }
  .popup-equipment .equipment-name {
    font-size: 1.302vw;
    margin-bottom: 1.823vw;
  }
  .front .breadcrumbs {
    top: 8.281vw;
  }
  .equipment-img {
    margin-left: 1.042vw;
    height: 28.021vw;
  }
  .equipment-content {
    margin-top: -1.563vw;
  }
  .equipment-info {
    height: 6.615vw;
    padding: 1.042vw 1.563vw;
  }
  .equipment-name {
    font-size: 0.938vw;
  }
  .equipment-btn {
    padding: 1.25vw;
    font-size: 0.833vw;
  }
  .categories-wrapper {
    gap: 3.125vw;
  }
  .categories-list {
    gap: 1.042vw 2.604vw;
  }
  .categories-item {
    gap: 1.042vw;
    min-height: 12.5vw;
  }
  .categories-item::before {
    top: -1.042vw;
    left: -0.417vw;
    right: -1.042vw;
    bottom: -0.417vw;
  }
  .categories-item .link-arrow {
    font-size: 0.781vw;
    bottom: 0.521vw;
  }
  .categories-item-head {
    gap: 0.521vw;
  }
  .categories-icon {
    width: 6.198vw;
    height: 4.583vw;
  }
  .categories-item-body {
    padding: 0 1.354vw 1.875vw;
  }
  .categories-descr {
    font-size: 0.781vw;
    gap: 0.208vw;
  }
  .categories-descr li {
    padding-left: 0.885vw;
  }
  .categories-descr li::before {
    width: 0.365vw;
    height: 0.365vw;
    top: 0.313vw;
  }
  .subcategories-wrapper {
    gap: 3.125vw;
  }
  .subcategories-list {
    gap: 1.042vw 1.458vw;
  }
  .subcategories-item {
    gap: 0.833vw;
    padding: 0.521vw 0.833vw;
  }
  .subcategories-item .link-arrow {
    font-size: 0.781vw;
    right: 0.833vw;
  }
  .subcategories-icon {
    width: 3.698vw;
    height: 3.958vw;
  }
  .service-inner {
    gap: 3.125vw;
  }
  .service-wrapper {
    grid-template-columns: 20.26vw 1fr;
    gap: 2.5vw;
  }
  .service-subcategories {
    gap: 3.125vw;
  }
  .service-subcategories .subcategories-list {
    gap: 1.042vw;
  }
  .service-icon {
    height: 15.885vw;
  }
  .doctor-inner {
    gap: 3.125vw;
  }
  .doctor-body {
    grid-template-columns: 27.188vw 1fr;
    gap: 2.083vw;
  }
  .doctor-body .team-img {
    height: 28.333vw;
  }
  .doctor-body .team-info {
    padding: 1.563vw;
    margin-left: 3.125vw;
    margin-top: -3.125vw;
    font-size: 1.146vw;
  }
  .doctor-list {
    gap: 2.083vw;
  }
  .doctor-name {
    font-size: 1.042vw;
  }
  .privacy-inner {
    gap: 3.125vw;
  }
  .contacts-wrapper {
    grid-template-columns: 25.104vw 1fr;
  }
  .contacts-info {
    padding: 4.167vw 2.083vw 4.167vw 4.167vw;
  }
  .contacts-list {
    gap: 2.083vw;
  }
  .contacts-item {
    gap: 0.521vw;
  }
  .contacts-name {
    font-size: 1.042vw;
  }
  .contacts-text,
  .contacts-link {
    font-size: 0.938vw;
  }
  .contacts-hours {
    gap: 0.521vw;
  }
  .contacts-socials {
    margin-top: 0.521vw;
  }
  .contacts-social {
    width: 1.354vw;
    height: 1.354vw;
  }
  .prices-inner {
    gap: 3.125vw;
  }
  .prices-subtitle {
    font-size: 1.302vw;
  }
  .prices-list {
    gap: 0.833vw;
  }
  .prices-head {
    gap: 0.677vw;
    padding: 0.729vw 3.125vw 0.729vw 0.729vw;
  }
  .prices-icon {
    width: 6.198vw;
    height: 4.583vw;
  }
  .prices-title {
    font-size: 1.146vw;
  }
  .prices-arrow {
    width: 1.354vw;
    height: 1.875vw;
  }
  .prices-body {
    gap: 2.604vw;
  }
  .prices-content {
    padding: 1.458vw;
    font-size: 1.146vw;
  }
  .prices-table thead th {
    padding: 1.146vw 1.354vw;
    font-size: 1.042vw;
  }
  .prices-table tbody td {
    padding: 0.677vw 1.354vw;
    font-size: 0.938vw;
  }
  .prices-table tbody .link-arrow {
    font-size: 0.938vw;
  }
}

@media (max-width: 1919px) and (min-width: 768px) {
  .popup-certificat {
    padding: 4.688vw;
  }
  .front-bg img {
    width: 59.063vw;
  }
  .front-bg::before {
    width: 55.625vw;
  }
  .front-bg::after {
    width: 55.625vw;
  }
  .about-wrapper {
    width: 37.813vw;
    height: 37.813vw;
    margin: 0 auto 3.125vw;
  }
}

@media (max-width: 1439px) and (min-width: 768px) {
  .popup-certificat-img img {
    max-width: 42.865vw;
    max-height: calc(80vh - 4.688vw);
    min-height: 30.729vw;
  }
}

@media (max-width: 1365px) {
  .title-s {
    font-size: 14px;
  }
  .title-xs {
    font-size: 14px;
  }
  .text-base {
    font-size: 14px;
  }
  .text-small {
    font-size: 13px;
  }
  .text-editor p {
    font-size: 14px;
  }
  .text-editor h3 {
    font-size: 18px;
  }
  .text-editor h4 {
    font-size: 14px;
  }
  .text-editor ul {
    font-size: 14px;
  }
  .page--prices, .page--privacy, .page--category, .page--doctor, .page--service, .page--subcategory {
    padding-top: 77px;
  }
  .page--prices::before, .page--privacy::before, .page--category::before, .page--doctor::before, .page--service::before, .page--subcategory::before {
    height: 77px;
  }
  .header-logo {
    width: 176px;
    height: 37px;
  }
  .header-content-top {
    gap: 30px;
  }
  .header-tel {
    font-size: 0;
    line-height: 0;
    width: 24px;
    height: 24px;
  }
  .header-tel svg {
    display: block;
  }
  .header-appointment {
    padding: 15px 33px;
    height: unset;
  }
  .header-search {
    order: 1;
  }
  .header-search-btn {
    right: 10px;
  }
  .header-search-form {
    transform: translateX(0);
    width: 100%;
    opacity: 1;
  }
  .header-search-form.show {
    width: 100%;
  }
  .header-lang {
    order: 2;
  }
  .header-burger {
    width: 28px;
    height: 20px;
    fill: var(--color-blue);
  }
  .header-nav {
    display: none !important;
  }
  .header-menu-inner {
    padding: 50px 30px;
  }
  .header-menu-head {
    margin-bottom: 50px;
  }
  .header-menu-close {
    margin-left: auto;
    font-size: 20px;
    color: var(--color-blue);
    order: 3;
  }
  .header-menu-body {
    margin-bottom: 30px;
  }
  .header-menu-link {
    font-size: 22px;
  }
  .header-submenu {
    margin-top: 17px;
  }
  .header-submenu-list {
    gap: 16px;
  }
  .header-submenu-link {
    font-size: 14px;
  }
  .header-menu-two {
    gap: 20px;
  }
  .header-menu-socials {
    gap: 30px;
    margin-top: 10px;
  }
  .header-menu-tel {
    display: block;
    width: 23px;
    height: 23px;
    flex-shrink: 0;
  }
  .link {
    font-size: 16px;
  }
  .link-arrow {
    font-size: 16px;
  }
  .link-arrow svg {
    min-width: 14px;
    height: 10px;
  }
  .btn-blue {
    padding: 18px;
    gap: 8px;
    font-size: 16px;
  }
  .btn-brown {
    padding: 18px;
    gap: 8px;
    font-size: 16px;
  }
  .btn-up {
    width: 35px;
    height: 35px;
  }
  .btn-up svg {
    width: 30px;
    height: 20px;
  }
  .breadcrumbs {
    padding: 10px 0;
    margin-bottom: 30px;
  }
  .breadcrumbs-inner {
    font-size: 12px;
  }
  .popular-slide {
    gap: 20px;
    max-width: 170px;
  }
  .popular-icon {
    width: 100%;
    max-width: 168px;
    height: 75px;
  }
  .team-slider {
    margin-bottom: 20px;
    margin-left: -20px;
    padding: 0 20px 20px;
    width: calc(100% + 40px);
  }
  .team-slide {
    max-width: 260px;
  }
  .team-likes {
    gap: 10px;
    top: 14px;
    right: 14px;
  }
  .team-heart {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .team-img {
    height: 324px;
  }
  .team-info {
    margin-top: -53px;
    max-width: 222px;
    padding: 18px;
    gap: 10px;
  }
  .team-info .title-s {
    min-height: 32px;
  }
  .team-info .text-small {
    font-size: 11px;
  }
  .team-info .text-small svg {
    width: 9px;
    height: 7px;
  }
  .team-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
  .reviews-inner .btn-blue {
    width: 350px;
  }
  .reviews-slider {
    padding: 0 20px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-bottom: 40px;
  }
  .reviews-slide {
    max-width: 260px;
  }
  .reviews-content {
    height: 299px;
    padding: 18px;
    margin-left: 20px;
    gap: 10px;
  }
  .reviews-name {
    font-size: 15px;
    min-height: 35px;
  }
  .reviews-info {
    padding: 18px;
    max-width: 229px;
    margin-top: -40px;
    gap: 10px;
  }
  .reviews-info .text-small {
    font-size: 11px;
  }
  .reviews-person {
    font-size: 15px;
  }
  .question-label {
    font-size: 13px;
  }
  .question-input {
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .question-textarea {
    font-size: 16px;
  }
  .question-policy {
    font-size: 12px;
  }
  .popup-content {
    max-width: 430px;
  }
  .popup-input {
    font-size: 14px;
    padding-bottom: 6px;
    padding-top: 6px;
  }
  .popup-textarea {
    font-size: 14px;
  }
  .popup-equipment .popup-close {
    top: 20px;
    right: 20px;
  }
  .popup-equipment .equipment-item {
    flex-direction: column;
  }
  .popup-equipment .equipment-img {
    width: 545px;
    height: 386px;
    padding: 20px;
  }
  .popup-equipment .equipment-content {
    margin-right: 0;
    margin-top: -40px;
  }
  .popup-equipment .equipment-info {
    padding: 20px;
    width: 372px;
    height: auto;
  }
  .popup-equipment .equipment-name {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .front .breadcrumbs {
    top: 87px;
  }
  .equipment-slide {
    max-width: 260px;
  }
  .equipment-img {
    margin-left: 12px;
    height: 279px;
  }
  .equipment-content {
    margin-top: -20px;
  }
  .equipment-info {
    height: 74px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .equipment-name {
    font-size: 11px;
  }
  .equipment-btn {
    font-size: 10px;
    padding: 12px;
  }
  .categories-wrapper {
    gap: 30px;
  }
  .categories-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: 18px 40px;
  }
  .categories-item {
    min-height: unset;
    cursor: default;
    gap: 0;
    transition: padding 0.2s linear;
  }
  .categories-item.active {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .categories-item.active::before {
    opacity: 1;
    visibility: visible;
  }
  .categories-item.active .categories-icon-default {
    opacity: 0;
  }
  .categories-item.active .categories-icon-hover {
    opacity: 1;
  }
  .categories-item.active .title-xs {
    color: var(--color-blue);
  }
  .categories-item.active .categories-arrow {
    transform: rotate(180deg);
    fill: var(--color-black);
    stroke: var(--color-black);
  }
  .categories-item::before {
    top: 0;
    bottom: 0;
    right: -20px;
    left: -20px;
  }
  .categories-item .link-arrow {
    margin-left: auto;
    cursor: pointer;
    font-size: 14px;
    opacity: 1;
    visibility: visible;
    position: static;
  }
  .categories-item-head {
    gap: 20px;
  }
  .categories-item-head .title-xs {
    flex-grow: 1;
  }
  .categories-icon {
    width: 70px;
    height: 52px;
  }
  .categories-arrow {
    display: block;
    height: 20px;
    width: 15px;
    fill: var(--color-blue);
    stroke: var(--color-blue);
    transition: 0.2s linear;
  }
  .categories-item-body {
    display: none;
    flex-direction: column;
    margin-top: 12px;
    padding: 0;
  }
  .categories-descr {
    gap: 12px;
    font-size: 13px;
    padding: 0 16px;
    margin-bottom: 18px;
  }
  .categories-descr li::before {
    top: 4px;
  }
  .subcategories-wrapper {
    gap: 30px;
  }
  .subcategories-list {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: 18px 40px;
  }
  .subcategories-item {
    gap: 20px;
    padding: 0;
  }
  .subcategories-item::before {
    bottom: -10px;
    top: -10px;
    right: -10px;
    left: -10px;
  }
  .subcategories-item .link-arrow {
    display: none;
  }
  .subcategories-item .title-xs {
    flex-grow: 1;
  }
  .subcategories-icon {
    width: 70px;
    height: 52px;
  }
  .subcategories-arrow {
    display: block;
    width: 20px;
    height: 15px;
    fill: var(--color-blue);
    stroke: var(--color-blue);
  }
  .service-inner {
    gap: 30px;
  }
  .service-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .service-subcategories {
    gap: 40px;
  }
  .service-subcategories .subcategories-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
  }
  .service-icon {
    width: 285px;
    height: 312px;
    float: left;
    margin-right: 20px;
  }
  .doctor-inner {
    gap: 30px;
  }
  .doctor-body {
    grid-template-columns: repeat(1, 1fr);
  }
  .doctor-body .team-item {
    width: 350px;
    margin: 0 auto;
  }
  .doctor-body .team-img {
    height: auto;
    min-height: 364px;
  }
  .doctor-body .team-info {
    margin-left: 40px;
    padding: 20px;
    gap: 4px;
    font-size: 14px;
  }
  .doctor-name {
    font-size: 18px;
  }
  .privacy-inner {
    gap: 30px;
  }
  .contacts-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .contacts-info {
    padding: 20px 20px 30px 20px;
  }
  .contacts-list {
    gap: 20px;
  }
  .contacts-item {
    gap: 6px;
  }
  .contacts-name {
    font-size: 18px;
  }
  .contacts-text,
  .contacts-link {
    font-size: 15px;
    font-weight: 300;
  }
  .contacts-hours {
    gap: 6px;
  }
  .contacts-socials {
    margin-top: 14px;
  }
  .contacts-map {
    height: 571px;
  }
  .prices-inner {
    gap: 30px;
  }
  .prices-subtitle {
    font-size: 18px;
  }
  .prices-list {
    gap: 18px;
  }
  .prices-head {
    padding: 10px 20px;
    gap: 20px;
  }
  .prices-icon {
    width: 70px;
    height: 52px;
  }
  .prices-title {
    font-size: 14px;
  }
  .prices-arrow {
    width: 15px;
    height: 20px;
  }
  .prices-body {
    gap: 20px;
  }
  .prices-content {
    padding: 18px;
    font-size: 14px;
  }
  .prices-table thead th {
    font-size: 14px;
  }
  .prices-table thead th:nth-child(1) {
    padding: 12px 5px 12px 20px;
  }
  .prices-table thead th:nth-child(2) {
    padding: 12px 5px 12px 5px;
  }
  .prices-table thead th:nth-child(3) {
    padding: 12px 20px 12px 5px;
  }
  .prices-table tbody td {
    font-size: 13px;
    font-weight: 300;
  }
  .prices-table tbody td:nth-child(1) {
    padding: 5px 5px 5px 20px;
  }
  .prices-table tbody td:nth-child(2) {
    padding: 5px;
  }
  .prices-table tbody td:nth-child(3) {
    padding: 5px 20px 5px 5px;
  }
  .prices-table tbody .link-arrow {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .title-l {
    font-size: 30px;
  }
  .title-m {
    font-size: 22px;
  }
  .container {
    padding: 0 20px;
  }
  .mb-120 {
    margin-bottom: 40px;
  }
  .navigation {
    margin-bottom: 40px;
  }
  .navigation-wrapper {
    display: none;
  }
  .btn-border-white {
    padding: 12px 22px;
    border-width: 1px;
    gap: 7px;
    font-size: 14px;
  }
  .btn-border-white svg {
    width: 14px;
    height: 10px;
  }
  .breadcrumbs-inner {
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumbs-inner::-webkit-scrollbar {
    display: none;
  }
  .introduction {
    padding-top: 163px;
    justify-content: flex-start;
    height: 600px;
  }
  .introduction::after {
    width: 287px;
    height: 231px;
  }
  .introduction-text {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .welcome {
    margin-bottom: 160px;
  }
  .welcome-inner {
    gap: 40px;
    margin: 0 auto;
  }
  .welcome-inner .title-m {
    max-width: 540px;
  }
  .welcome-content {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .welcome-description {
    gap: 40px;
  }
  .statistics-list {
    padding: 50px 0;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .statistics-list::before {
    right: -20px;
    left: -20px;
  }
  .statistics-item {
    flex-direction: row;
  }
  .statistics-item .text-base {
    max-width: 170px;
    text-align: left;
  }
  .statistics-value {
    width: 170px;
    font-size: 40px;
    text-align: right;
  }
  .statistics-bg {
    height: 241px;
    width: auto;
    right: unset;
    left: 0;
    bottom: 50px;
  }
  .popular-slider {
    margin-bottom: 40px;
  }
  .benefits-inner {
    gap: 40px;
  }
  .benefits-list {
    flex-direction: column;
    gap: 50px;
  }
  .benefits-item {
    max-width: unset;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .benefits-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .benefits-item:nth-child(even) .benefits-icon {
    transform: scale(-1, 1);
  }
  .benefits-icon {
    height: 172px;
    padding-left: 30px;
    flex-shrink: 0;
  }
  .benefits-icon::before {
    width: 70px;
  }
  .benefits-icon img {
    height: 65px;
  }
  .question-inner {
    gap: 40px;
  }
  .question-form {
    padding: 40px 20px 150px;
    overflow: hidden;
  }
  .question-form::before {
    left: 0;
  }
  .question-form::after {
    width: 229px;
    height: 200px;
    left: 0;
    bottom: -80px;
  }
  .question-wrapper {
    gap: 20px;
  }
  .question-body {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
  .question-one {
    gap: 40px;
  }
  .question-group {
    gap: 0;
  }
  .question-textarea {
    min-height: 103px;
    padding: 10px;
  }
  .question-two .question-group {
    gap: 6px;
  }
  .question-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .popup-wrapper {
    padding: 50px 30px 134px 30px;
    max-width: 600px;
    min-height: unset;
  }
  .popup-wrapper::before {
    width: 465px;
    height: 474px;
    right: -156px;
    bottom: -315px;
  }
  .popup-close {
    width: 15px;
    height: 15px;
    top: 20px;
    right: 20px;
  }
  .popup-content {
    max-width: unset;
  }
  .popup-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .popup-form {
    gap: 30px;
    margin-top: 30px;
  }
  .popup-fields {
    gap: 30px;
  }
  .popup-group {
    gap: 0;
  }
  .popup-textarea {
    min-height: 163px;
    padding: 10px;
    margin-top: 6px;
  }
  .popup-column {
    gap: 30px;
  }
  .popup-sent {
    gap: 126px;
    margin-top: 126px;
  }
  .popup-sent-text {
    font-size: 16px;
  }
  .popup-certificat .popup-close {
    top: 20px;
    right: 20px;
  }
  .front-inner {
    height: 417px;
  }
  .about-item {
    padding-left: 26px;
    max-width: 220px;
    min-height: 32px;
  }
  .about-item::before {
    width: 20px;
    height: 20px;
  }
  .about-item:nth-child(-n+3) {
    padding-right: 26px;
  }
  .about-text {
    font-size: 14px;
    font-weight: 300;
  }
  .certificates-slider {
    margin-right: -20px;
    height: 348px;
  }
  .certificates-slide {
    max-width: 260px;
  }
  .service-icon {
    margin-right: 10px;
    margin-bottom: 15px;
    width: 80px;
    height: 60px;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-one {
    margin-bottom: 40px;
    align-items: center;
  }
  .footer-logo {
    width: 252px;
    height: 53px;
    margin-bottom: 0;
  }
  .footer-license {
    margin-bottom: 10px;
    order: 3;
  }
  .footer-policy {
    margin-bottom: 30px;
    order: 4;
  }
  .footer-copyright {
    order: 6;
  }
  .footer-two {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .footer-nav {
    gap: 19px;
  }
  .footer-info {
    max-width: 155px;
    gap: 15px;
    justify-content: space-between;
  }
  .footer-address {
    font-size: 14px;
    font-weight: 300;
    order: 3;
  }
  .footer-search {
    font-size: 15px;
    font-weight: 450;
    order: 4;
  }
  .footer-search::before {
    display: none;
  }
  .footer-tel {
    font-size: 14px;
  }
  .footer-hours {
    gap: 15px;
  }
  .footer-hours-item {
    font-size: 14px;
    font-weight: 300;
    gap: 25px;
  }
  .footer-three {
    width: 100%;
    padding-top: 0;
    align-items: center;
    gap: 0;
  }
  .footer-appointment {
    width: 100%;
    margin-bottom: 30px;
    padding: 15px;
    order: 1;
    font-size: 14px;
  }
  .footer-appointment svg {
    width: 20px;
    height: 15px;
  }
  .footer-socials {
    margin-bottom: 30px;
    gap: 30px;
    justify-content: center;
    order: 2;
  }
  .footer-made {
    gap: 15px;
    margin-bottom: 30px;
    order: 5;
  }
  .footer-made-text {
    font-size: 12px;
  }
  .footer-made-logo {
    width: 189px;
    height: 33px;
  }
}

@media (max-width: 767px) {
  .header-menu-body {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .header-submenu {
    display: none;
  }
  .breadcrumbs-inner {
    font-size: 9px;
  }
  .welcome-bg {
    max-width: unset;
    height: auto;
    margin-right: -20px;
  }
  .welcome-bg::before {
    transform: translate(-20px, 20px);
  }
  .welcome-bg::after {
    width: 170px;
    height: 154px;
    transform: translate(-20px, 20px);
  }
  .statistics-list {
    align-items: flex-end;
  }
  .team-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 9px;
  }
  .team-list .team-img {
    height: 212px;
  }
  .team-list .team-likes {
    gap: 5px;
    top: 9px;
    right: 10px;
  }
  .team-list .team-heart {
    min-width: 15px;
    width: 15px;
    height: 16px;
  }
  .team-list .team-info {
    margin-left: 12px;
    margin-top: -40px;
    padding: 12px;
    gap: 2px;
  }
  .team-list .title-s {
    min-height: 28px;
    font-size: 12px;
  }
  .team-list .text-small {
    font-size: 8px;
    gap: 3px;
  }
  .team-list .text-small svg {
    width: 6px;
    height: 5px;
  }
  .popup-column {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .popup-footer {
    flex-direction: column-reverse;
  }
  .popup-footer .btn-border-white {
    width: 100%;
  }
  .popup-policy {
    width: 100%;
  }
  .popup-policy a {
    display: inline;
  }
  .popup-sent .btn-border-white {
    width: 100%;
  }
  .popup-equipment .equipment-img {
    width: 100%;
    height: auto;
  }
  .popup-equipment .equipment-content {
    width: calc(100% - 40px);
  }
  .popup-equipment .equipment-info {
    width: 100%;
  }
  .popup-certificat {
    padding: 58px 50px;
  }
  .popup-certificat-img img {
    width: 100%;
    max-height: 80vh;
    min-height: 207px;
  }
  .front-inner {
    height: 81.282vw;
  }
  .front-bg img {
    width: 63.846vw;
  }
  .front-bg::before {
    top: unset;
    background-image: url("../img/icons/front-bg-mob.png");
    height: 56.667vw;
    width: 77.436vw;
  }
  .front-bg::after {
    width: 54.103vw;
  }
  .about-wrapper {
    width: calc(100% + 20px);
    margin-left: -20px;
    height: auto;
  }
  .about-wrapper img {
    width: 280px;
    height: 280px;
    margin-left: -70px;
  }
  .about-item {
    max-width: unset;
    width: auto;
  }
  .about-item:nth-child(1) {
    top: -6%;
    right: 0;
    left: 84px;
  }
  .about-item:nth-child(2) {
    top: 12%;
    right: 0;
    left: 162px;
  }
  .about-item:nth-child(3) {
    top: 33%;
    right: 0;
    left: 203px;
  }
  .about-item:nth-child(4) {
    top: unset;
    bottom: 33%;
    right: 0;
    left: 203px;
  }
  .about-item:nth-child(5) {
    top: unset;
    bottom: 12%;
    right: 0;
    left: 162px;
  }
  .about-item:nth-child(6) {
    top: unset;
    bottom: -6%;
    right: 0;
    left: 84px;
  }
  .categories-wrapper .btn-brown {
    margin-top: 10px;
  }
  .categories-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .subcategories-wrapper .btn-brown {
    margin-top: 10px;
  }
  .subcategories-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-subcategories .subcategories-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .doctor-body .team-item {
    width: 100%;
  }
  .contacts-info {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .contacts-map {
    height: 362px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .prices-list {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .prices-table thead th {
    display: none;
  }
  .prices-table tbody td:nth-child(2) {
    padding-right: 20px;
    text-align: right;
  }
  .prices-table tbody td:nth-child(3) {
    display: none;
  }
}

@media (max-width: 544px) {
  .introduction {
    height: 723px;
  }
  .introduction-inner .title-l {
    max-width: 257px;
  }
  .introduction-text {
    width: 257px;
  }
  .welcome {
    margin-bottom: 70px;
  }
  .popular-slider:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 10px;
  }
  .popular-slider:not(.swiper-initialized) .popular-slide {
    max-width: unset;
  }
  .reviews-inner .btn-blue {
    width: 100%;
  }
  .question-btn {
    width: 100%;
  }
}

@media (any-hover: hover) {
  .btn-up:hover {
    border: 1px solid var(--color-brown);
    fill: var(--color-brown);
    stroke: var(--color-brown);
  }
  .team-heart:hover {
    fill: var(--color-blue);
    stroke: var(--color-blue);
  }
  .team-card:hover .team-info {
    background-color: var(--color-blue);
  }
  .certificates-slide:hover img {
    transform: scale(0.9);
  }
  .prices-head:hover {
    background: var(--color-white);
    box-shadow: 4px 4px 15px 0px rgba(156, 195, 244, 0.3);
  }
  .prices-head:hover .prices-icon-default {
    opacity: 0;
  }
  .prices-head:hover .prices-icon-hover {
    opacity: 1;
  }
  .prices-head:hover .prices-title {
    color: var(--color-blue);
  }
}