@charset "UTF-8";
:root {
  /* Color's =====> */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-background: #FFFFFF;
  --color-primary: #000000;
  --color-border-primary: #edf0f8;
  --color-gray-100: #f8f8f8;
  --color-gray-400: #edf0f8;
  --color-gray-500: #e8eaee;
  --color-gray-600: #d1d5dd;
  --color-gray-700: #adb4c8;
  --color-gray-800: #8f8e8f;
  --color-gray-900: #7f7e7e;
  --color-green-100: #ECFAE2;
  --color-green-300: #A2C595;
  --color-green-400: #008489;
  --color-green-500: #015D52;
  --color-green-600: #015D52;
  --color-green-700: #629A4E;
  --color-orange-100: #ffd8bd;
  --color-orange-900: #FF4500;
  --color-orange-1000: #FF4500;
  --color-red-1000: #FF4500;
  /* Box Shadow =====> */
  --shadow-primary: 0 15px 30px rgba(127,126,126,.4);
  /* Font-family =====> */
  --font-Steppe: "Steppe", Arial, sans-serif;
  /* Font-size =====> */
  --text-3xs: 0.5rem; /* 8px */
  --text-2xs: 0.625rem; /* 10px */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-2-5xl: 1.75rem; /* 28px */
  --text-3xl: 2rem; /* 32px */
  --text-3-5xl: 2.5rem; /* 40px */
  --text-4xl: 3rem; /* 48px */
  --text-5xl: 3.75rem; /* 60px */
  --text-title: 4.5rem; /* 72px */
  /* Border-radius =====> */
  --rounded: 0.25rem; /* 4px */
  --rounded-base: 1rem; /* 16px */
  --rounded-2xl: 1.5rem; /* 24px */
  --rounded-3xl: 2rem; /* 32px */
  --rounded-4xl: 2.5rem; /* 40px */
  --rounded-5xl: 3.75rem; /* 60px */
  --rounded-full: 100%;
  /* Transition's =====> */
  --transition-low: all 0.15s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  --transition-high: all 0.6s ease-in-out;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  outline: none;
  border: none;
  background: #F5F7FA;
  cursor: pointer;
  color: #FF4500;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
.slider-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.slider-btn_bg_white {
  background: #fff;
}
.slider-btn_bg_blured {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.slider-btn_ico_white {
  color: #fff;
}
.slider-btn::after, .slider-btn::before {
  display: none;
}
.slider-btn.swiper-button-disabled {
  opacity: 0;
}
@media (hover: hover) {
  .slider-btn:hover {
    background: #015D52;
    color: #fff;
  }
}
.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}

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

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

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.accordion__header::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("/images/refactor/home-page/accordion-arrow-down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.accordion__item_active .accordion__header::after {
  background-image: url("/images/refactor/home-page/accordion-arrow-top.svg");
}

.accordion__item:not(.accordion__item_show) .accordion__body {
  display: none;
}

.accordion__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

.custom-radio__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-radio__input + label {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.custom-radio__input + label span {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 16px;
  line-height: 1.1;
  color: #cfcfd1;
}
.custom-radio__input + label svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.custom-radio__input + label::before {
  content: "";
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #EDF0F8;
  padding: 5px;
  border-radius: 50%;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70% 70%;
  background-color: #fff;
  background-clip: content-box;
}
.custom-radio__input:checked + label::before {
  border-color: #FF4500;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FF7F32'/%3e%3c/svg%3e");
}
.custom-radio__input:checked + label span {
  color: #000000;
}

.search-catalog {
  position: relative;
}
.search-catalog__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(255, 255, 255, 0.7);
}
.search-catalog__overlay.search-catalog__overlay_active {
  display: flex;
}
.search-catalog__overlay .preloader {
  position: static;
  display: block;
}
.search-catalog__reset-btn {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 16px;
  color: #FF4500;
  display: inline-block;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .search-catalog__reset-btn:hover {
    color: #015D52;
  }
}
.search-catalog__interface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.search-catalog__tabs {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
}
.search-catalog__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  outline: none;
  background-color: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  transition: color 350ms ease-in-out, background 350ms ease-in-out;
}
.search-catalog__tab.active {
  background-color: #FF4500;
  color: #fff;
}
@media (hover: hover) {
  .search-catalog__tab:not(.active):hover {
    background-color: #FF4500;
    color: #fff;
  }
}
.search-catalog__search {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 24px;
}
.search-catalog__search input {
  width: 100%;
  padding: 8px 16px 8px 48px;
  min-height: 46px;
  border: 2px solid #FF4500;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: unset;
  color: #000000;
}
.search-catalog__search input::-moz-placeholder {
  color: #cfcfd1;
}
.search-catalog__search input::placeholder {
  color: #cfcfd1;
}
.search-catalog__search input:focus-visible {
  outline: none;
}
.search-catalog__search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 9px 8px 9px 16px;
  flex-shrink: 0;
}
.search-catalog__search button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000000;
}
.search-catalog__content {
  width: 100%;
  margin-top: 16px;
}
.search-catalog__content .js-filter-content-group {
  width: 100%;
}
.search-catalog__content-wrapper {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  flex-grow: 1;
}
.search-catalog__alphabet-grid { /* для Safari */
  -moz-column-count: 3; /* для Firefox */
  column-count: 3;
  -moz-column-gap: 30px;
  column-gap: 30px;
  background: #fff;
}
.search-catalog__alphabet-block {
  display: flex;
  margin-bottom: 20px;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  align-items: flex-start;
}
.search-catalog__alphabet-letter {
  padding-right: 10px;
}
.search-catalog__alphabet-letter span {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.12;
  width: 20px;
  display: block;
  color: #FF4500;
  text-transform: uppercase;
}
.search-catalog__alphabet-categories {
  padding-left: 24px;
  border-left: 1px dashed #FF4500;
}
.search-catalog__alphabet-categories-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-catalog__alphabet-category {
  display: flex;
  align-items: flex-start;
  line-height: 1.12;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.search-catalog__alphabet-category a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.12;
  word-wrap: break-word;
  word-break: break-word;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.search-catalog__alphabet-more-button {
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FF4500;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 8px 0 0 0;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .search-catalog__alphabet-more-button:hover {
    color: #015D52;
  }
}
.search-catalog__alphabet--opened {
  -moz-column-count: 1 !important;
       column-count: 1 !important;
}
.search-catalog__show-full-btn {
  display: none;
}
.search-catalog__empty-element {
  font-weight: 500;
  color: #000000;
}
.search-catalog__popular {
  width: 314px;
  flex-shrink: 0;
}
.search-catalog__popular-wrapper {
  position: relative;
  padding: 24px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(0deg, #ecfae2, #ecfae2), linear-gradient(345deg, rgba(236, 250, 226, 0) 0%, #ecfae2 88.86%);
  z-index: 0;
}
.search-catalog__popular-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 5px;
  background: #015D52;
  z-index: 1;
}
.search-catalog__popular-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 418px;
  background: linear-gradient(345deg, rgba(236, 250, 226, 0) 0%, #ecfae2 88.86%), url(/images/refactor/home-page/services/popular_image_bg.png) bottom right/contain no-repeat;
  filter: opacity(0.25);
  z-index: -1;
}
.search-catalog__popular-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.search-catalog__popular-list-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
}
.search-catalog__popular-full-btn {
  display: none;
  gap: 10px;
  align-items: center;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin-top: 8px;
  cursor: pointer;
}
.search-catalog__popular-full-btn span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #015D52;
}
.search-catalog__popular-full-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #015D52;
}
.search-catalog__popular-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.search-catalog__popular-subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.search-catalog__popular-subtitle svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.search-catalog__popular-subtitle span {
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
  padding-top: 2px;
  color: #FF4500;
  text-transform: uppercase;
}
.search-catalog__popular-grid {
  display: flex;
  gap: 16px;
}
.search-catalog__popular-grid .search-catalog__alphabet--opened .search-catalog__alphabet-categories {
  width: 100%;
  padding-left: 0;
  border: none;
}
.search-catalog__popular-grid .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
  display: block;
  -moz-column-count: 2;
       column-count: 2;
  gap: 16px;
  width: 100%;
}
.search-catalog__popular-grid .search-catalog__alphabet--opened .search-catalog__alphabet-category {
  padding-left: 24px;
  border-left: 1px dashed #FF4500;
}
.search-catalog__popular-grid .search-catalog__alphabet--opened .search-catalog__alphabet-category:not(:last-child) {
  padding-bottom: 8px;
}
.search-catalog__popular-grid:has(.search-catalog__popular):has(.search-catalog__popular[style="display:none;"]) .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
  -moz-column-count: 3;
       column-count: 3;
}
.search-catalog__popular-grid:not(:has(.search-catalog__popular)) .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
  -moz-column-count: 3;
       column-count: 3;
}
.search-catalog__table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 30px;
}
.search-catalog__table-card-title {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 8px;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.search-catalog__table-card-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.search-catalog__table-card-link {
  display: flex;
  align-items: flex-start;
  border-left: 1px dashed #FF4500;
  padding-left: 24px;
}
.search-catalog__table-card-link:not([style="display:none;"]):not(:last-child) {
  padding-bottom: 8px;
}
.search-catalog__table-card-link:not([style="display:none;"]):nth-child(3) {
  padding-bottom: 0;
}
.search-catalog__table-card-link:not([style="display:none;"]):nth-child(4) {
  padding-top: 8px;
}
.search-catalog__table-card-link a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  transition: color 350ms ease-in-out;
  display: inline-block;
  white-space: break-spaces;
  word-break: break-word;
}
.search-catalog__table-card-button {
  display: inline-block;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FF4500;
  padding: 8px 0 0 24px;
  border-left: 1px dashed #FF4500;
  transition: color 350ms ease-in-out;
}
.search-catalog__table--opened {
  grid-template-columns: 1fr !important;
}
.search-catalog__table--opened .search-catalog__table-card-list {
  width: 100%;
}
.search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
  display: block;
  -moz-column-count: 2;
       column-count: 2;
  gap: 16px;
  width: 100%;
}
.search-catalog__table:has(.search-catalog__popular):has(.search-catalog__popular[style="display:none;"]) .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
  -moz-column-count: 3;
       column-count: 3;
}
.search-catalog__table:not(:has(.search-catalog__popular)) .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
  -moz-column-count: 3;
       column-count: 3;
}
.search-catalog__checkboxes-filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
}
.search-catalog__checkboxes-filter .checkbox_new {
  gap: 16px;
  cursor: pointer;
}
.search-catalog__checkboxes-filter .checkbox_new .checkbox__place {
  border: none;
  background: #015D52;
}
.search-catalog__checkboxes-filter .checkbox_new .checkbox__place .checkbox__ico {
  left: 2px;
}
.search-catalog__checkboxes-filter .checkbox_new input + .checkbox__icon-text {
  color: #000000;
}
.search-catalog__checkboxes-filter .checkbox_new input:checked + .checkbox__icon-text {
  color: #cfcfd1;
}
.search-catalog__checkboxes-filter .checkbox_new input:checked + .checkbox__icon-text + .checkbox__icon-text {
  color: #000000;
}
.search-catalog__checkboxes-filter .checkbox_new:hover input ~ .checkbox__place {
  background: #015D52;
}
.search-catalog__checkboxes-filter .checkbox_new:hover input:checked ~ .checkbox__place {
  background: #FF4500;
}
.search-catalog__checkboxes-filter .checkbox__icon-text {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 16px;
  line-height: 1.1;
  color: #cfcfd1;
  cursor: pointer;
}
.search-catalog__checkboxes-filter .checkbox__icon-text:nth-child(2) {
  order: -1;
}
.search-catalog__checkboxes-filter .checkbox__icon-text:nth-child(3) {
  order: 4;
}
.search-catalog__checkboxes-filter .checkbox__icon-text svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (hover: hover) {
  .search-catalog__alphabet-category:hover a, .search-catalog__popular-item:hover a, .search-catalog__table-card-link:hover a, .search-catalog__table-card-title:hover {
    color: #015D52;
  }
  .search-catalog__table-card-button:hover {
    color: #015D52;
  }
  .search-catalog__checkboxes-filter:not(.search-catalog__checkboxes-filter_active):hover button {
    background: #FF4500;
    color: #fff;
  }
  .search-catalog__checkboxes-filter-dropdown label:hover span {
    color: #FF4500;
  }
}
@media (max-width: 1279px) {
  .search-catalog__popular {
    width: 100%;
    flex-shrink: 1;
  }
  .search-catalog__popular-grid {
    flex-direction: column-reverse;
  }
  .search-catalog__popular-wrapper::after {
    background: linear-gradient(345deg, rgba(236, 250, 226, 0) 0%, #ecfae2 88.86%), url(/images/refactor/home-page/services/popular_image_bg.png) bottom right/contain no-repeat;
  }
}
@media (max-width: 1024px) {
  .search-catalog__alphabet-grid {
    -moz-column-count: 2;
         column-count: 2;
    gap: 20px;
  }
  .search-catalog__alphabet-grid_active {
    max-height: 100% !important;
  }
  .search-catalog__interface {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .search-catalog__scroll-container {
    display: flex;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  .search-catalog__scroll-container::-webkit-scrollbar {
    width: 2px;
  }
  .search-catalog__scroll-container::-webkit-scrollbar-track {
    background: transparent;
  }
  .search-catalog__scroll-container::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .search-catalog__tabs {
    flex-shrink: 0;
  }
  .search-catalog__table-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 767px) {
  .search-catalog__popular-grid:has(.search-catalog__popular):has(.search-catalog__popular[style="display:none;"]) .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
    -moz-column-count: 2;
         column-count: 2;
  }
  .search-catalog__popular-grid:not(:has(.search-catalog__popular)) .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
    -moz-column-count: 2;
         column-count: 2;
  }
  .search-catalog__table:has(.search-catalog__popular):has(.search-catalog__popular[style="display:none;"]) .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
    -moz-column-count: 2;
         column-count: 2;
  }
  .search-catalog__table:not(:has(.search-catalog__popular)) .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 576px) {
  .search-catalog__alphabet-grid {
    display: flex;
    flex-direction: column;
  }
  .search-catalog__show-full-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #FF4500;
    border: none;
    outline: none;
    padding: 0;
    margin: 4px auto 0 0;
    background: transparent;
  }
  .search-catalog__show-full-btn span {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FF4500;
  }
  .search-catalog__show-full-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #FF4500;
  }
  .search-catalog__content-wrapper {
    padding: 24px 16px 24px 16px;
  }
  .search-catalog__popular-full-btn {
    display: flex;
  }
  .search-catalog__popular-grid .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
    -moz-column-count: 1;
         column-count: 1;
  }
  .search-catalog__popular-grid:has(.search-catalog__popular):has(.search-catalog__popular[style="display:none;"]) .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
    -moz-column-count: 1;
         column-count: 1;
  }
  .search-catalog__popular-grid:not(:has(.search-catalog__popular)) .search-catalog__alphabet--opened .search-catalog__alphabet-categories-list:has(.search-catalog__alphabet-category:nth-child(4)) {
    -moz-column-count: 1;
         column-count: 1;
  }
  .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
    -moz-column-count: 1;
         column-count: 1;
  }
  .search-catalog__table:has(.search-catalog__popular):has(.search-catalog__popular[style="display:none;"]) .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
    -moz-column-count: 1;
         column-count: 1;
  }
  .search-catalog__table:not(:has(.search-catalog__popular)) .search-catalog__table--opened .search-catalog__table-card-list:has(.search-catalog__table-card-link:nth-child(4)) {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.primary-map {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
}
.primary-map__item {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.primary-map .ymaps-2-1-79-map-copyrights-promo,
.primary-map .ymaps-2-1-79-copyright {
  display: none !important;
}
.primary-map .ymaps-2-1-79-controls__control {
  inset: 264px 16px auto auto !important;
}
.primary-map .btn-zoom-wrapper {
  display: block !important;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom {
  box-shadow: 0 0 12px 0 rgba(182, 182, 182, 0.2509803922);
  border: 1px solid #EDF0F8;
  border-radius: 40px;
  width: 48px;
  height: 92px;
  transform: unset;
  display: block;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-out,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in {
  position: relative;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-out svg,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in svg {
  transform: unset;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::after, .primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #6B6B6B;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::after,
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in .primary-map__zoom-out::before {
  height: 2px;
  width: 14px;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-in::before {
  height: 14px;
  width: 2px;
  transform: translate(-50%, -50%) rotate(180deg);
}
.primary-map .btn-zoom-wrapper.primary-map__zoom .primary-map__zoom-out::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: #6B6B6B;
  height: 2px;
  width: 14px;
}
.primary-map .btn-zoom-wrapper.primary-map__zoom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  background-color: #F6F6F6;
}
.primary-map__clinics-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  width: 100%;
}
.primary-map__clinic-select {
  position: relative;
  width: 100%;
  border: 2px solid #FF4500;
  border-radius: 12px;
  max-width: 358px;
  background: #fff;
}
.primary-map__clinic-select-input {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 14px 12px 50px;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  color: #000000;
}
.primary-map__clinic-select-input::-moz-placeholder {
  color: #CFCFD1;
}
.primary-map__clinic-select-input::placeholder {
  color: #CFCFD1;
}
.primary-map__clinic-select-options {
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  display: none;
  list-style: none;
  margin: 0;
  border-radius: 16px;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1019607843);
  overflow: hidden;
}
.primary-map__clinic-select-options-list {
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10px 0 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.primary-map__clinic-select-options-list::-webkit-scrollbar {
  width: 2px;
}
.primary-map__clinic-select-options-list::-webkit-scrollbar-track {
  background: transparent;
}
.primary-map__clinic-select-options-list::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.primary-map__clinic-select-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 18px 10px 18px;
  cursor: pointer;
  border-bottom: 1px solid #EDF0F8;
  transition: background 350ms ease-in-out;
}
.primary-map__clinic-select-option:last-child {
  border-bottom: none;
}
.primary-map__clinic-select-option:not([style*="display: none"]):last-of-type {
  border-bottom: none;
}
.primary-map__clinic-select-option_default {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  color: #000000;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
.primary-map__clinic-select-option-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  margin: 0;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.primary-map__clinic-select-option-address {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
  font-style: normal;
  color: #000000;
}
.primary-map__clinic-select-option .place:not(:last-child) {
  margin-bottom: 4px;
}
.primary-map__clinic-select-option .place__round {
  width: 8px;
  height: 8px;
  margin-bottom: 0;
  margin-right: 4px;
}
.primary-map__clinic-select-option .place__text {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  gap: 2px;
  color: #000000;
}
.primary-map__clinic-select-option .place__time-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #CFCFD1;
  margin-left: 8px;
}
.primary-map__clinic-select-option .place__time-text::before {
  display: block;
  content: "";
  flex-shrink: 0;
}
.primary-map__clinic-select-option .place__time-text.place__time-text_walking::before {
  width: 14px;
  height: 14px;
  background: url(/images/lk/walking.svg) center center/contain no-repeat;
}
.primary-map__clinic-select-option .place__time-text.place__time-text_transport::before {
  width: 16px;
  height: 16px;
  background: url(/images/lk/bus.svg) center center/contain no-repeat;
}
.primary-map__clinic-select-option:hover {
  background-color: #EDF0F8;
}
.primary-map__clinic-select-option:hover .primary-map__clinic-select-option-title {
  color: #FF4500;
}
.primary-map__clinic-select-option_default:hover .primary-map__clinic-select-option_default {
  color: #FF4500;
}
.primary-map__clinic-select.open .primary-map__clinic-select-options {
  display: flex;
}
.primary-map__clinic-select-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  outline: none;
  pointer-events: none;
  padding: 9px 8px 9px 16px;
  flex-shrink: 0;
}
.primary-map__clinic-select-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000000;
}
.primary-map__clinic-detail-copy {
  display: inline-flex;
  vertical-align: middle;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  margin-left: 8px;
}
.primary-map__clinic-detail-copy svg {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  color: #cfcfd1;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .primary-map__clinic-detail-copy:hover svg {
    color: #FF4500;
  }
}
.primary-map__clinic-detail-copy_active svg {
  color: #FF4500;
}
.primary-map__clinic-detail-pagination {
  bottom: 8px !important;
  line-height: 1;
}
.primary-map__clinic-detail-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #FFE4CA;
  opacity: 1;
  margin: 0 9px;
}
.primary-map__clinic-detail-pagination .swiper-pagination-bullet-active {
  background: #FF4500;
}
.primary-map__clinic-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 39%;
  margin-bottom: 16px;
}
.primary-map__clinic-detail-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.primary-map__clinic-detail-slider {
  width: 100%;
  margin-bottom: 16px;
}
.primary-map__clinic-detail-slider .primary-map__clinic-detail-img {
  margin-bottom: 0;
}
.primary-map__clinic-detail-info {
  padding: 0 16px 1px 16px;
  overflow: hidden;
  overflow-y: auto;
  max-height: 330px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
  -webkit-overflow-scrolling: touch;
}
.primary-map__clinic-detail-info::-webkit-scrollbar {
  width: 2px;
}
.primary-map__clinic-detail-info::-webkit-scrollbar-track {
  background: transparent;
}
.primary-map__clinic-detail-info::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.primary-map__clinic-detail-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  color: #000000;
  margin-bottom: 4px;
}
.primary-map__clinic-detail-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 3px;
}
.primary-map__clinic-detail-type .clinic-card__ico {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
}
.primary-map__clinic-detail-type .clinic-card__ico .clinic-card__icon-image {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.primary-map__clinic-detail-type .clinic-card__ico .clinic-card__ico .note-text {
  line-height: 1.28;
  color: #000000;
}
.primary-map__clinic-detail-type .note-text {
  color: #000000;
  font-size: 14px;
  line-height: 1.42;
}
.primary-map__clinic-detail-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.42;
  font-size: 14px;
  color: #000000;
  margin-bottom: 16px;
  max-width: 308px;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-decoration-thickness: from-font;
}
.primary-map__clinic-detail-address span {
  display: inline-block;
}
.primary-map__clinic-detail-schedule {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 16px;
  background: #f8f8f8;
  margin-bottom: 20px;
}
.primary-map__clinic-detail-schedule:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  display: block;
  width: 100%;
  max-width: 75px;
  transform: translateY(-50%);
  height: calc(100% - 16px);
  max-height: 78px;
  background: url(/images/lk/leaf.svg) 50%/contain no-repeat;
}
.primary-map__clinic-detail-schedule-list {
  display: flex;
  flex-direction: column;
}
.primary-map__clinic-detail-schedule-row span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.28;
  color: #000000;
}
.primary-map__clinic-detail-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.62;
  color: #015D52;
}
.primary-map__clinic-detail-phone:before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url(/images/lk/call-calling.svg) 50%/contain no-repeat;
}
.primary-map__clinic-detail-stations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.primary-map__clinic-detail-stations .place {
  gap: 8px;
  flex-wrap: wrap;
}
.primary-map__clinic-detail-stations .place__round {
  width: 8px;
  height: 8px;
  margin-bottom: 0;
  margin-right: 4px;
}
.primary-map__clinic-detail-stations .place__text {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.33;
  color: #000000;
  font-weight: 500;
  gap: 4px;
}
.primary-map__clinic-detail-stations .place__time-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.33;
  color: #cfcfd1;
}
.primary-map__clinic-detail-stations .place__time-text:before {
  display: block;
  content: "";
  flex-shrink: 0;
}
.primary-map__clinic-detail-stations .place__time-text.place__time-text_transport:before {
  width: 16px;
  height: 16px;
  background: url(/images/lk/bus.svg) 50%/contain no-repeat;
}
.primary-map__clinic-detail-stations .place__time-text.place__time-text_walking:before {
  width: 14px;
  height: 14px;
  background: url(/images/lk/walking.svg) 50%/contain no-repeat;
}
.primary-map__clinic-detail-btn {
  width: 100%;
  min-height: 44px;
  background: transparent;
  color: #000000;
}
@media (hover: hover) {
  .primary-map__clinic-detail-btn:hover {
    background: #FF4500;
    color: #fff;
  }
}
.primary-map__clinic-back-btn {
  position: absolute;
  left: 18px;
  top: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  gap: 4px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.8);
  transition: background 350ms ease-in-out;
  cursor: pointer;
  border: none;
  outline: none;
  min-height: 28px;
}
.primary-map__clinic-back-btn span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.primary-map__clinic-back-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #000000;
}
@media (hover: hover) {
  .primary-map__clinic-back-btn:hover {
    background: rgb(255, 255, 255);
  }
}
.primary-map__clinic-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid #EDF0F8;
  background: #fff;
  padding: 11px 16px;
  border-radius: 16px;
  width: 100%;
  max-width: 172px;
  z-index: 1;
  cursor: pointer;
  transition: border 350ms ease-in-out;
}
.primary-map__clinic-toggle-name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.primary-map__clinic-toggle-name svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.primary-map__clinic-toggle-name span {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.primary-map__clinic-toggle-name_disable span {
  color: #cfcfd1;
}
.primary-map__clinic-toggle .checkbox__place {
  flex-shrink: unset;
}
.primary-map__clinic-toggle:has(.checkbox input:checked) {
  border-color: #FF4500;
}
@media (hover: hover) {
  .primary-map__clinic-toggle:hover {
    border-color: #FF4500;
  }
}
.primary-map__clinic-not-found {
  padding: 0 10px 20px 10px;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.primary-map .js-primary-map-clinic-overlay {
  width: 100%;
  padding-bottom: 20px;
}
.primary-map [data-role=clinic-list] {
  display: flex;
}
.primary-map [data-role=clinic-detail] {
  display: none;
}
@media (max-width: 1024px) {
  .primary-map .ymaps-2-1-79-controls__control {
    inset: 264px 8px auto auto !important;
  }
}
@media (max-width: 767px) {
  .primary-map__clinic-toggle {
    width: auto;
  }
  .primary-map__clinic-toggle .checkbox {
    display: none;
  }
  .primary-map__clinics-wrapper {
    top: 8px;
    left: 8px;
    right: 8px;
  }
}
@media (max-width: 576px) {
  .primary-map__clinics-wrapper {
    width: auto;
  }
  .primary-map__clinic-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border-radius: 50%;
    padding: 8px;
  }
  .primary-map__clinic-toggle-name span {
    display: none;
  }
  .primary-map__clinic-select {
    max-width: 100%;
    width: calc(100% - 40px);
  }
  .primary-map__clinic-select-options {
    visibility: hidden;
    width: 100vw;
    max-width: calc(100% + 40px);
  }
  .primary-map__clinic-select-options[data-role=clinic-detail] {
    height: 66vh;
    bottom: 8px;
    min-height: 526px;
  }
  .primary-map__clinic-select-options[data-role=clinic-detail] .js-primary-map-clinic-overlay {
    height: 100%;
    padding-bottom: calc(39% + 35px);
  }
  .primary-map__clinic-select-options_active {
    visibility: visible;
  }
  .primary-map__clinic-detail-info {
    max-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .primary-map__clinic-detail-btn {
    margin-top: auto;
  }
}
@media (max-width: 480px) {
  .primary-map {
    border-radius: 16px;
  }
  .primary-map__clinic-detail-img {
    padding-bottom: 50%;
  }
  .primary-map__clinic-select-options[data-role=clinic-detail] .js-primary-map-clinic-overlay {
    padding-bottom: calc(50% + 35px);
  }
}

.custom-balloon {
  background: #ff7a00;
  color: white;
  border-radius: 50px;
  padding: 4px 16px 4px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-max-content;
  width: max-content;
  height: 48px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  text-align: left;
}
.custom-balloon__header {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.custom-balloon__btn {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #FFFFFF;
  text-decoration: underline;
}
.custom-balloon__icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-balloon__icon-wrapper {
  width: 40px;
  height: 40px;
}

.custom-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox__input + label {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.200000003px;
  color: #000000;
  cursor: pointer;
}
.custom-checkbox__input + label a {
  border: none;
  text-decoration: underline;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.custom-checkbox__input + label a:hover {
  color: #FF7B4A !important;
  border: none;
}
.custom-checkbox__input + label::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% 90%;
  background-color: #FFFFFF;
}
.custom-checkbox__input:checked + label::before {
  background-color: #FF7B4A;
  background-image: url("/images/svg/checked.svg");
}
.custom-checkbox__error {
  font-size: 12px;
  line-height: 1;
  color: #f50016;
}

.home-licenses {
  padding-bottom: 60px;
}
.home-licenses__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  padding: 24px;
  background: #F2F5FD;
}
.home-licenses__col:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-licenses__col:nth-child(2) {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
}
.home-licenses__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  max-width: 599px;
}
.home-licenses__link {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FF4500;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-licenses__link:hover {
    color: #015D52;
  }
}
@media (max-width: 1024px) {
  .home-licenses {
    padding-bottom: 40px;
  }
  .home-licenses__wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
  }
  .home-licenses__col:nth-child(1) {
    gap: 16px;
  }
  .home-licenses__col:nth-child(2) {
    flex-wrap: wrap;
    gap: 24px;
  }
  .home-licenses__text {
    font-size: 14px;
    line-height: 18px;
  }
  .home-licenses__link {
    font-size: 14px;
    line-height: 18px;
  }
}

.home-programs {
  padding-bottom: 60px;
}
.home-programs__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.home-programs__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  position: relative;
  border-radius: 16px;
  padding: 24px;
  min-height: 200px;
  overflow: hidden;
}
.home-programs__card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 100%;
  width: 100%;
  max-width: 303px;
  z-index: 0;
}
.home-programs__card_adults {
  background: linear-gradient(262.26deg, #015D52 0%, #015D52 99.54%);
}
.home-programs__card_adults::after {
  background: url("/images/refactor/home-page/programs_adults.webp") center center/cover no-repeat;
}
.home-programs__card_kids {
  background: linear-gradient(262.26deg, #FFB951 0%, #FF4500 99.54%);
}
.home-programs__card_kids::after {
  max-width: 398px;
  background: url("/images/refactor/home-page/programs_kids.webp") center center/cover no-repeat;
}
.home-programs__card-title {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  z-index: 1;
}
.home-programs__card-title span {
  color: #fff;
}
@media (hover: hover) {
  .home-programs__card:hover .home-programs__card-btn {
    border-color: #FF4500;
    background: #FF4500;
    color: #fff;
  }
  .home-programs__card:hover .home-programs__card-btn::after {
    background: url("/images/svg/circle-btn-arrow-right_white.svg") center center/cover no-repeat;
  }
}
@media (max-width: 1279px) {
  .home-programs__card::after {
    right: -64px;
  }
}
@media (max-width: 1024px) {
  .home-programs {
    padding-bottom: 40px;
  }
  .home-programs__card::after {
    right: 0;
  }
  .home-programs__card_adults::after {
    background: url("/images/refactor/home-page/programs_adults_mob.webp") bottom right/auto auto no-repeat;
  }
  .home-programs__card_kids::after {
    max-width: 239px;
    background: url("/images/refactor/home-page/programs_kids_mob.webp") center center/cover no-repeat;
  }
}
@media (max-width: 767px) {
  .home-programs__wrapper {
    grid-template-columns: 1fr;
  }
}

.home-ratings {
  padding-top: 60px;
}
.home-ratings__wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.home-ratings__title {
  margin-bottom: 24px;
}
.home-ratings__card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-grow: 1;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 16px;
  background: #F2F5FD;
}
.home-ratings__mark {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  color: #FF4500;
}
.home-ratings__aggregator {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.home-ratings__aggregator-name {
  font-weight: 700;
}
.home-ratings__aggregator-nums {
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 1024px) {
  .home-ratings {
    padding-top: 40px;
  }
  .home-ratings__title {
    margin-bottom: 16px;
  }
  .home-ratings__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .home-ratings__wrapper {
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  .home-ratings__wrapper::-webkit-scrollbar {
    width: 2px;
  }
  .home-ratings__wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .home-ratings__wrapper::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .home-ratings__card {
    min-width: -moz-max-content;
    min-width: max-content;
    scroll-snap-align: end;
  }
}

.home-fast-links__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-bottom: 60px;
}
.home-fast-links__wrapper_empty {
  padding-bottom: 0;
}
.home-fast-links__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding: 16px 24px;
  border-radius: 16px;
  background: #F2F5FD;
  flex-grow: 1;
  width: calc(25% - 12px);
  min-height: 132px;
  overflow: hidden;
  transition: background 350ms ease-in-out;
}
@media (hover: hover) {
  .home-fast-links__card:hover {
    background: #e6eaf4;
  }
}
.home-fast-links__card-img {
  display: block;
  position: absolute;
  right: -20px;
  bottom: -58px;
  z-index: 0;
  width: auto;
  max-width: 180px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}
.home-fast-links__card-title {
  position: relative;
  max-width: 100px;
  z-index: 1;
}
.home-fast-links__card-button {
  position: relative;
  width: 34px;
  height: 34px;
  z-index: 1;
}
@media (hover: hover) {
  .home-fast-links__card:hover .home-fast-links__card-button {
    background: transparent;
    border-color: #FF4500;
  }
  .home-fast-links__card:hover .home-fast-links__card-button::after {
    background: url("/images/svg/circle-btn-arrow-right.svg") center center/cover no-repeat;
  }
}
@media (max-width: 1024px) {
  .home-fast-links {
    display: none;
  }
  .home-fast-links__card {
    min-height: 190px;
  }
  .home-fast-links__card-title {
    font-size: 14px;
    line-height: 18px;
  }
  .home-fast-links__wrapper {
    padding-bottom: 40px;
  }
  .home-fast-links__wrapper_empty {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .home-fast-links__card {
    width: calc(50% - 8px);
  }
  .home-fast-links__card_only_desktop {
    display: none;
    pointer-events: none;
  }
}
@media (max-width: 480px) {
  .home-fast-links__wrapper {
    flex-wrap: nowrap;
  }
  .home-fast-links__card {
    padding: 16px;
    min-height: 180px;
  }
  .home-fast-links__card-img {
    right: -44px;
  }
}

.home-appointment {
  padding-bottom: 60px;
  padding-top: 60px;
  background: #F2F5FD;
}
.home-appointment__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}
.home-appointment__img {
  width: 100%;
  max-width: 553px;
  height: 100%;
  max-height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.home-appointment__content {
  display: flex;
  flex-direction: column;
  padding: 28px 80px 28px 0;
}
.home-appointment__content-title {
  margin-bottom: 10px;
}
.home-appointment__content-text {
  margin-bottom: 32px;
}
.home-appointment__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;
}
.home-appointment__button {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  min-height: 44px;
  padding: 10px 16px;
}
.home-appointment__button:nth-child(1) {
  border: none;
}
.home-appointment__button:nth-child(2) {
  padding: 9px 16px;
  background: transparent;
  color: #000000;
}
.home-appointment__button:nth-child(2) svg {
  color: #FF4500;
}
@media (hover: hover) {
  .home-appointment__button:nth-child(n):hover {
    border-color: #015D52;
    background: #015D52;
    color: #fff;
  }
  .home-appointment__button:nth-child(n):hover svg {
    color: #fff;
  }
}
@media (max-width: 1279px) {
  .home-appointment__content {
    padding: 24px 24px 24px 0;
  }
  .home-appointment__img {
    max-width: 430px;
  }
  .home-appointment__wrapper {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  .home-appointment {
    padding-bottom: 40px;
    padding-top: 40px;
  }
  .home-appointment__wrapper {
    flex-direction: column;
    gap: 0;
  }
  .home-appointment__img {
    max-width: 100%;
    max-height: 200px;
  }
  .home-appointment__content {
    padding: 24px 24px 20px 24px;
  }
  .home-appointment__content-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 576px) {
  .home-appointment__buttons {
    grid-template-columns: 1fr;
  }
  .home-appointment__button {
    width: 100%;
  }
}

.home-clients__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.home-clients__slider {
  position: relative;
  width: 100%;
  height: 76px;
}
.home-clients__slider-nav {
  display: flex;
  align-items: center;
}
.home-clients__slider-nav-button {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.home-clients__slider-nav-button.swiper-button-lock {
  display: none !important;
}
.home-clients__slider-nav-button.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.home-clients__slider-nav-button_prev {
  margin-right: 10px;
}
.home-clients__info {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(82.26deg, #015D52 0.22%, #015D52 99.77%);
  border-radius: 16px;
  padding: 15px 20px;
  flex-shrink: 0;
  width: 100%;
  max-width: 504px;
}
.home-clients__slider-wrapper .swiper-wrapper {
  height: auto;
}
.home-clients__slider-item.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 193px;
  height: 76px;
  padding: 8px;
  border-radius: 16px;
  overflow: hidden;
  background: #F2F5FD;
}
.home-clients__slider-item.swiper-slide img {
  width: 100%;
  max-width: 122px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
}
.home-clients__info-text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.home-clients__info-text .title {
  color: #fff;
  line-height: 26px;
}
.home-clients__info-text div {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.home-clients__info-button {
  padding: 10px 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  min-height: 44px;
  border: none;
  color: #015D52;
  background: #ECFAE2;
  width: 100%;
  max-width: 137px;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-clients__info-button:hover {
    color: #fff;
    background-color: #FF4500;
  }
}
@media (max-width: 1024px) {
  .home-clients__header {
    margin-bottom: 16px;
  }
  .home-clients__slider {
    height: 100%;
    padding: 0;
  }
  .home-clients__slider-nav-button {
    display: none;
  }
  .home-clients__slider .swiper {
    overflow: unset;
  }
  .home-clients__slider-wrapper.swiper .swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 79px);
    grid-auto-columns: minmax(150px, auto);
    gap: 16px;
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  .home-clients__slider-wrapper.swiper .swiper-wrapper::-webkit-scrollbar {
    width: 2px;
  }
  .home-clients__slider-wrapper.swiper .swiper-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .home-clients__slider-wrapper.swiper .swiper-wrapper::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .home-clients__slider-item.swiper-slide {
    width: 100%;
    height: 100%;
    scroll-snap-align: end;
  }
  .home-clients__slider-item.swiper-slide img {
    max-width: 115px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .home-clients__info {
    flex-direction: column;
    gap: 12px;
    padding: 19px 16px;
    align-items: flex-start;
    grid-row: 1/3;
    max-width: 100%;
    min-width: 249px;
    scroll-snap-align: end;
  }
  .home-clients__info-button {
    max-width: 100%;
  }
  .home-clients__info-text .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 4px;
  }
}

.home-hero {
  padding: 20px 0 60px 0;
}
.home-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.home-hero__title {
  display: none;
  margin-bottom: 24px;
}
.home-hero__link, .home-hero__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-top: 16px;
  color: #FF4500;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-hero__link:hover {
    color: #015D52;
  }
}
.home-hero__more-btn {
  display: none;
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 2fr auto;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.home-hero__main-slider {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  grid-row: span 2;
}
.home-hero__main-slider .swiper-slide {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 0;
  padding: 24px 32px 32px 32px;
  border-radius: 16px;
  overflow: hidden;
}
@media (hover: hover) {
  .home-hero__main-slider .swiper-slide:hover .home-hero__main-slider-button {
    background: #015D52;
    color: #fff;
  }
}
.home-hero__main-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-hero__main-slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.home-hero__main-slider-pagination {
  display: none;
  bottom: unset !important;
  top: 10px !important;
  padding: 0 16px;
}
.home-hero__main-slider-pagination .swiper-pagination-bullet {
  flex-grow: 1;
  border-radius: 100vh;
  height: 2px;
  margin: 0 4px !important;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.home-hero__main-slider-pagination .swiper-pagination-bullet .swiper-pagination-progress {
  height: 100%;
  width: 0%;
  border-radius: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
}
.home-hero__main-slider-title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 480px;
  color: #fff;
}
.home-hero__main-slider-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  max-width: 290px;
}
.home-hero__main-slider-interface {
  position: absolute;
  display: flex;
  align-items: center;
  left: 193px;
  bottom: 32px;
  z-index: 2;
}
.home-hero__main-slider-nav {
  position: static;
  top: unset;
  right: unset;
  left: unset;
  transform: unset;
  margin: 0;
  transition: background 350ms ease-in-out;
}
.home-hero__main-slider-nav.swiper-button-lock {
  display: none !important;
}
@media (hover: hover) {
  .home-hero__main-slider-nav:hover {
    background: #FF4500;
  }
}
.home-hero__main-slider-nav_prev {
  margin-right: 10px;
}
.home-hero__main-slider-nav svg {
  color: #000000;
}
.home-hero__main-slider-button {
  position: relative;
  z-index: 3;
  margin-right: 24px;
  background: #fff;
  color: #000000;
  width: 100%;
  max-width: 137px;
  margin-top: auto;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  line-height: 18px;
  min-height: 44px;
  font-weight: 400;
}
.home-hero__min-banner {
  position: relative;
  z-index: 0;
  width: 462px;
  border-radius: 16px;
  overflow: hidden;
  padding: 24px;
  grid-column: 2;
}
.home-hero__min-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-hero__min-banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.home-hero__min-banner-title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 356px;
  color: #000000;
}
.home-hero__min-banner-text {
  font-weight: 400;
  max-width: 240px;
  line-height: 1.4;
  color: #000000;
}
.home-hero__min-slider {
  width: 462px;
  grid-column: 2;
  border-radius: 16px;
  overflow: hidden;
}
.home-hero__min-slider .home-hero__min-banner {
  display: none;
}
.home-hero__min-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.home-hero__min-slider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
.home-hero__min-slider .swiper-slide {
  position: relative;
  z-index: 0;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.home-hero__min-slider-title {
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  max-width: 356px;
  color: #fff;
}
.home-hero__min-slider-text {
  font-weight: 400;
  line-height: 1.4;
  max-width: 240px;
  color: #fff;
}
.home-hero__min-slider-btn {
  top: unset;
  right: unset;
  bottom: 24px;
  margin: 0;
  transition: background 350ms ease-in-out;
}
.home-hero__min-slider-btn.swiper-button-lock {
  display: none !important;
}
@media (hover: hover) {
  .home-hero__min-slider-btn:hover {
    background: #FF4500;
  }
}
.home-hero__min-slider-btn_prev {
  left: 24px;
}
.home-hero__min-slider-btn_next {
  left: 80px;
}
.home-hero__min-slider-btn svg {
  color: #000000;
}
.home-hero__fast-links {
  display: none;
}
@media (max-width: 1279px) {
  .home-hero__main-slider-text {
    max-width: 260px;
  }
}
@media (max-width: 1024px) {
  .home-hero {
    position: relative;
    padding: 0 0 40px 0;
  }
  .home-hero > .container {
    width: 100%;
    padding: 0;
  }
  .home-hero__grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    min-height: 100%;
    justify-items: center;
    gap: 40px;
  }
  .home-hero__min-slider {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px 0 24px;
  }
  .home-hero__min-slider-btn {
    display: none;
  }
  .home-hero__min-slider .swiper-slide {
    width: 100% !important;
    height: 240px;
    padding: 18px;
  }
  .home-hero__min-slider .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .home-hero__min-slider.swiper {
    overflow: unset;
  }
  .home-hero__min-slider.swiper .swiper-slide:not(:nth-child(2)) {
    display: none;
  }
  .home-hero__min-slider .home-hero__min-banner {
    display: block;
  }
  .home-hero__min-banner {
    display: none;
    margin: 0 auto;
    height: 240px;
    padding: 18px;
  }
  .home-hero__min-slider, .home-hero__min-banner {
    width: 100%;
    grid-column: unset;
  }
  .home-hero__min-slider-title, .home-hero__min-banner-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
    max-width: 280px;
  }
  .home-hero__min-slider-text, .home-hero__min-banner-text {
    font-size: 14px;
    line-height: 18px;
    max-width: 210px;
  }
  .home-hero__min-slider-img img, .home-hero__min-banner-img img {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  .home-hero__main-slider {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: 400px;
    aspect-ratio: 24/25;
  }
  .home-hero__main-slider .swiper-slide {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 24px 16px 24px 16px;
  }
  .home-hero__main-slider-nav_prev {
    margin-left: auto;
  }
  .home-hero__main-slider-interface {
    right: 16px;
    left: unset;
    bottom: 24px;
  }
  .home-hero__main-slider-pagination {
    display: flex;
  }
  .home-hero__main-slider-title {
    max-width: 400px;
    font-size: 30px;
    line-height: 1.2;
  }
  .home-hero__main-slider-text {
    max-width: 400px;
  }
  .home-hero__main-slider-img img {
    -o-object-position: center center;
       object-position: center center;
  }
  .home-hero__link, .home-hero__more-btn {
    max-width: 720px;
    margin: 24px auto 0 auto;
  }
  .home-hero__link {
    display: none;
  }
  .home-hero__more-btn {
    display: inline-flex;
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .home-hero__fast-links {
    display: block;
  }
  .home-hero__fast-links .home-fast-links__wrapper {
    padding-bottom: 0;
    width: 100%;
  }
  .home-hero__title {
    display: block;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .home-hero__min-slider {
    padding: 0 16px 0 16px;
  }
  .home-hero__main-slider-title {
    max-width: 340px;
    font-size: 26px;
    line-height: 1.231;
  }
  .home-hero__main-slider-text {
    font-size: 18px;
    line-height: 1.334;
    max-width: 270px;
  }
}
@media (max-width: 720px) {
  .home-hero .home-hero__min-slider .swiper-wrapper {
    grid-template-columns: auto;
  }
  .home-hero__min-slider .swiper-slide, .home-hero__min-banner .swiper-slide {
    height: 280px;
  }
  .home-hero__min-slider {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px 0 16px;
  }
  .home-hero__min-banner {
    height: 280px;
  }
}
@media (max-width: 576px) {
  .home-hero__main-slider-text {
    font-size: 14px;
    line-height: 1.28;
    max-width: 210px;
  }
  .home-hero__min-slider .swiper-slide, .home-hero__min-banner .swiper-slide {
    height: 240px;
  }
  .home-hero__min-banner {
    height: 240px;
  }
}
@media (max-width: 480px) {
  .home-hero__min-slider .swiper-slide, .home-hero__min-banner .swiper-slide {
    height: 172px;
  }
  .home-hero__min-banner {
    height: 172px;
  }
  .home-hero__fast-links {
    margin-top: -20px;
  }
}
@media (max-width: 400px) {
  .home-hero__min-banner-text, .home-hero__min-slider-text {
    max-width: 200px;
  }
  .home-hero__min-banner-img img, .home-hero__min-slider-img img {
    -o-object-position: 0 50%;
       object-position: 0 50%;
  }
}
@media (max-width: 380px) {
  .home-hero__min-banner-img img, .home-hero__min-slider-img img {
    -o-object-position: 0 50%;
       object-position: 0 50%;
  }
}

.home-doctors {
  position: relative;
  padding: 60px 0 60px 0;
}
.home-doctors__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.home-doctors__slider {
  min-height: 321px;
}
.home-doctors__slider-nav {
  display: flex;
  align-items: center;
}
.home-doctors__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.home-doctors__slider-nav-btn.swiper-button-lock {
  display: none !important;
}
.home-doctors__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.home-doctors__slider-nav-btn_prev {
  margin-right: 10px;
  margin-left: 24px;
}
.home-doctors__slider-nav-link {
  font-weight: 500;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-doctors__slider-nav-link:hover {
    color: #015D52;
  }
}
.home-doctors__slider-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  border-radius: 16px;
  padding: 24px;
  height: auto;
  min-height: 321px;
  max-width: 416px;
  overflow: hidden;
  background: linear-gradient(154.01deg, #F5F6FB 16.39%, #DEE3F1 87.87%);
  z-index: 0;
  cursor: grab;
}
.home-doctors__slider-specialization {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.home-doctors__slider-specialization li {
  font-size: 12px;
  line-height: 18px;
  color: #000000;
}
.home-doctors__slider-specialization-tooltip {
  position: relative;
  cursor: pointer;
  transition: color 350ms ease-in-out;
  padding-left: 10px;
}
.home-doctors__slider-specialization-tooltip::before {
  display: block;
  position: absolute;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #000000;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background 350ms ease-in-out;
}
.home-doctors__slider-specialization-tooltip ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.home-doctors__slider-specialization-tooltip ul::-webkit-scrollbar {
  width: 2px;
}
.home-doctors__slider-specialization-tooltip ul::-webkit-scrollbar-track {
  background: transparent;
}
.home-doctors__slider-specialization-tooltip ul::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.home-doctors__slider-specialization-tooltip:hover {
  color: #FF4500;
}
.home-doctors__slider-specialization-tooltip:hover::before {
  background: #FF4500;
}
.home-doctors__slider-specialization-tooltip:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.home-doctors__slider-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 16px;
  max-width: 255px;
  color: #000000;
  cursor: pointer;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-doctors__slider-name:hover {
    color: #FF4500;
  }
}
.home-doctors__slider-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 4px;
}
.home-doctors__slider-info svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.home-doctors__slider-info-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding-top: 2px;
}
.home-doctors__slider-info-list span {
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.home-doctors__slider-comments {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px 0;
}
.home-doctors__slider-comments span {
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.home-doctors__slider-comments svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-doctors__slider-comments:hover span {
    color: #015D52;
  }
  .home-doctors__slider-comments:hover svg {
    color: #015D52;
  }
}
.home-doctors__slider-img {
  position: absolute;
  bottom: 0;
  right: -45px;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 280px;
  max-height: 280px;
  z-index: -1;
}
.home-doctors__slider-img_empty {
  max-width: 240px;
  max-height: 240px;
  right: -10px;
  opacity: 0.3;
}
.home-doctors__slider-img img {
  width: 100%;
  height: 100%;
  -o-object-position: bottom right;
     object-position: bottom right;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-doctors__slider-feedback {
  align-self: flex-start;
  margin-top: auto;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  min-height: 44px;
  padding: 10px 16px;
  width: 100%;
  max-width: 179px;
  border: none;
}
.home-doctors__slider-feedback span:nth-child(2) {
  display: none;
}
@media (hover: hover) {
  .home-doctors__slider-feedback:hover {
    background: #015D52;
    color: #fff;
  }
}
@media (max-width: 1024px) {
  .home-doctors {
    padding: 40px 0 40px 0;
  }
  .home-doctors .doctors-filter .doctors-filter__search:nth-child(4) {
    order: 1;
  }
  .home-doctors__slider-nav-btn {
    display: none;
  }
  .home-doctors__slider-feedback span:nth-child(1) {
    display: none;
  }
  .home-doctors__slider-feedback span:nth-child(2) {
    display: inline;
  }
  .home-doctors__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .home-doctors__slider-img {
    max-width: 268px;
    max-height: 268px;
    right: -60px;
  }
}
@media (max-width: 400px) {
  .home-doctors__slider-img {
    max-width: 240px;
    max-height: 240px;
  }
  .home-doctors__slider-img_empty {
    max-width: 220px;
    max-height: 220px;
  }
  .home-doctors__slider-info {
    flex-wrap: wrap;
    padding-right: 80px;
  }
  .home-doctors__slider-info-list span {
    max-width: 170px;
    font-size: 12px;
    line-height: 1.5;
  }
  .home-doctors__slider-comments span {
    font-size: 12px;
    line-height: 1.5;
  }
}

.home-news {
  position: relative;
  padding: 60px 0 60px 0;
}
.home-news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.home-news__slider-nav {
  display: flex;
  align-items: center;
}
.home-news__slider-nav-btn {
  position: static;
  left: unset;
  right: 0;
  top: unset;
  margin: 0;
  color: #FF4500;
  background: #F5F7FA;
  backdrop-filter: blur(8px);
}
.home-news__slider-nav-btn.swiper-button-lock {
  display: none !important;
}
.home-news__slider-nav-btn.slider-btn.swiper-button-disabled {
  opacity: 0.5;
}
.home-news__slider-nav-btn_prev {
  margin-left: 24px;
  margin-right: 10px;
}
.home-news__slider-nav-link {
  font-weight: 500;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .home-news__slider-nav-link:hover {
    color: #015D52;
  }
}
.home-news__slider-item {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 24px 16px;
  border-radius: 16px;
  height: auto;
  max-width: 416px;
  background: #F2F5FD;
}
.home-news__slider-item-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 55%;
  border-radius: 12px;
  margin-bottom: 20px;
}
.home-news__slider-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: transform 350ms ease-in-out;
}
.home-news__slider-item-title {
  line-height: 22px;
  margin-bottom: 20px;
  -webkit-line-clamp: 2; /* Число отображаемых строк */
  display: -webkit-box; /* Включаем флексбоксы */
  -webkit-box-orient: vertical; /* Вертикальная ориентация */
  overflow: hidden;
  transition: color 350ms ease-in-out;
}
.home-news__slider-item-date {
  font-size: 14px;
  line-height: 18px;
  color: #CFCFD1;
  margin-top: auto;
}
.home-news__slider-item-tags {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.home-news__slider-item-tag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  min-height: 26px;
  border-radius: 24px;
  border: 1px solid #CFCFD1;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
  transition: color 350ms ease-in-out, border 350ms ease-in-out;
}
.home-news__slider-item-tag_with_ico {
  gap: 8px;
}
.home-news__slider-item-tag_with_ico svg {
  color: #FF4500;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: color 350ms ease-in-out;
}
.home-news__slider-item-tag_clinics span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.home-news__slider-item-tag_clinics ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.home-news__slider-item-tag_clinics ul::-webkit-scrollbar {
  width: 2px;
}
.home-news__slider-item-tag_clinics ul::-webkit-scrollbar-track {
  background: transparent;
}
.home-news__slider-item-tag_clinics ul::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.home-news__slider-item-tag_clinics ul li {
  font-size: 12px;
  line-height: 18px;
  color: #000000;
}
.home-news__slider-item-tag_clinics:not(.home-news__slider-item-tag_no_hover):hover {
  border-color: #015D52;
  color: #015D52;
}
.home-news__slider-item-tag_clinics:not(.home-news__slider-item-tag_no_hover):hover svg {
  color: #015D52;
}
.home-news__slider-item-tag_clinics:not(.home-news__slider-item-tag_no_hover):hover ul {
  opacity: 1;
  pointer-events: auto;
}
@media (hover: hover) {
  .home-news__slider-item:hover .home-news__slider-item-img img {
    transform: scale(1.1);
  }
  .home-news__slider-item:hover .home-news__slider-item-title {
    color: #015D52;
  }
}
@media (max-width: 1024px) {
  .home-news {
    padding: 40px 0 40px 0;
  }
  .home-news__slider-nav-btn {
    display: none;
  }
  .home-news__header {
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .home-news .home-slider-pagination {
    position: static;
    margin-top: 16px;
  }
}

.home-services {
  padding: 60px 0 60px 0;
  background: #F2F5FD;
}
.home-services__title {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .home-services {
    padding: 40px 0 40px 0;
  }
  .home-services__title {
    margin-bottom: 16px;
  }
}

.home-mob-services {
  display: none;
  padding-bottom: 60px;
}
.home-mob-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 16px;
}
.home-mob-services__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.home-mob-services__card-img {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 12px;
  background: #F2F5FD;
}
.home-mob-services__card-img img {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-mob-services__card-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #000000;
}
.home-mob-services__title {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .home-mob-services {
    display: block;
    padding-bottom: 40px;
  }
  .home-mob-services__title {
    margin-bottom: 16px;
  }
}
@media (max-width: 380px) {
  .home-mob-services__grid {
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  }
}

.home-knowledge {
  padding: 60px 0 0 0;
  background: #F2F5FD;
}
.home-knowledge__title {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .home-knowledge {
    padding: 40px 0 0 0;
  }
  .home-knowledge__title {
    margin-bottom: 16px;
  }
}

.home-about {
  padding: 60px 0 60px 0;
  overflow: hidden;
}
.home-about__story {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.home-about__story-title {
  margin-bottom: 40px;
}
.home-about__story-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.home-about__story-text_collapsed {
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.home-about__story-text_collapsed:not(.home-about__story-text_expanded)::after {
  position: absolute;
  content: "";
  left: -12px;
  right: 0;
  bottom: 0;
  width: calc(100% + 12px);
  height: 22px;
  background: rgb(255, 255, 255);
  filter: blur(8px);
  z-index: 1;
}
.home-about__story-more-btn {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  border: none;
  padding: 0;
  outline: none;
  cursor: pointer;
  border-radius: unset;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FF4500;
  z-index: 2;
  transition: color 350ms ease-in-out;
}
.home-about__infographic {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 55px 48px;
  border-radius: 16px;
  background: #F2F5FD;
}
.home-about__infographic-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  width: calc(25% - 24px);
}
.home-about__infographic-card-nums {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-about__infographic-card-nums svg,
.home-about__infographic-card-nums img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.home-about__infographic-card-nums span {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  color: #FF4500;
  white-space: nowrap;
}
.home-about__infographic-card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.home-about__info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  position: relative;
  background: #F2F5FD;
  border-radius: 16px;
  min-height: 430px;
  padding: 24px;
  margin-bottom: 16px;
  z-index: 0;
}
.home-about__info::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  width: 312px;
  height: 329px;
  background: url("/images/refactor/home-page/home-about-decor.png") right bottom/contain no-repeat;
  z-index: -1;
}
.home-about__info-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 422px;
  width: 100%;
}
.home-about__info-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 10px 20px;
  border: 1px solid transparent;
  background: transparent;
  outline: none;
  cursor: pointer;
  transition: border 350ms ease-in-out;
}
.home-about__info-tab span {
  font-weight: 700;
  line-height: 26px;
  color: #000000;
}
.home-about__info-tab span:nth-child(1) {
  font-size: 20px;
  color: #D9E1F6;
  transition: color 350ms ease-in-out;
}
.home-about__info-tab span:nth-child(2) {
  font-size: 16px;
}
.home-about__info-tab_active {
  border-color: #FF4500;
}
.home-about__info-tab_active span:nth-child(1) {
  color: #FF4500;
}
.home-about__info-accordion {
  max-width: 594px;
}
.home-about__info-accordion-item:not(:first-child) {
  display: none;
}
.home-about__info-accordion-header {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #000000;
  margin-bottom: 12px;
  cursor: default;
}
.home-about__info-accordion-header::after {
  display: none;
}
.home-about__info-accordion-header span {
  transition: color 350ms ease-in-out;
}
.home-about__info-accordion-header span:nth-child(1) {
  display: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #D9E1F6;
}
.home-about__info-accordion-body.accordion__body {
  display: block;
}
.home-about__info-accordion-body .accordion__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.home-about__info-accordion-content-title {
  display: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #000000;
}
.home-about__info-accordion .accordion__item:not(.accordion__item_show) .accordion__body {
  display: block;
}
.home-about__slider {
  height: 240px;
  width: 100%;
}
.home-about__slider-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.home-about__slider-item:nth-child(3n+1) {
  width: 267px;
}
.home-about__slider-item:nth-child(3n+2) {
  width: 488px;
}
.home-about__slider-item:nth-child(3n) {
  width: 352px;
}
.home-about__slider-item:nth-child(4n) {
  width: 387px;
}
.home-about__slider-item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 350ms ease-in-out;
}
.home-about__slider-nav_prev {
  left: 24px;
}
.home-about__slider-nav_next {
  right: 24px;
}
.home-about__slider-nav::after, .home-about__slider-nav::before {
  display: none;
}
@media (hover: hover) {
  .home-about__info-tab:hover {
    border-color: #FF4500;
  }
  .home-about__info-tab:hover span:nth-child(1) {
    color: #FF4500;
  }
  .home-about__story-more-btn:hover {
    color: #015D52;
  }
  .home-about__slider-item:hover img {
    transform: scale(1.04);
  }
}
@media (max-width: 1279px) {
  .home-about__story {
    margin-bottom: 40px;
  }
  .home-about__infographic-card {
    width: calc(50% - 24px);
  }
}
@media (max-width: 1024px) {
  .home-about {
    padding: 40px 0 40px 0;
  }
  .home-about__info {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 40px;
    background: transparent;
    padding: 0;
  }
  .home-about__info::after {
    display: none;
  }
  .home-about__info-accordion {
    max-width: 100%;
    gap: 16px;
  }
  .home-about__info-accordion-body {
    display: none;
  }
  .home-about__info-accordion-body .accordion__content {
    padding: 16px 20px 0 20px;
  }
  .home-about__info-accordion-content {
    gap: 12px;
  }
  .home-about__info-accordion-content-title {
    display: block;
  }
  .home-about__info-accordion-content div {
    display: flex;
    flex-direction: column;
    gap: 26px;
  }
  .home-about__info-accordion .accordion__item:not(.accordion__item_show) .accordion__body {
    display: none;
  }
  .home-about__info-accordion-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin: 0;
    padding: 10px 20px 10px 20px;
    border: 1px solid #D9E1F6;
    border-radius: 40px;
    cursor: pointer;
  }
  .home-about__info-accordion-header span:nth-child(1) {
    display: inline-block;
    line-height: 1;
  }
  .home-about__info-accordion-header span:nth-child(2) {
    line-height: 1.25;
    padding-top: 2px;
  }
  .home-about__info-accordion-item {
    border-radius: 12px;
    background: transparent;
  }
  .home-about__info-accordion-item:not(:first-child) {
    display: flex;
  }
  .home-about__info-accordion-item.accordion__item_active .home-about__info-accordion-header {
    border-color: #FF4500;
  }
  .home-about__info-accordion-item.accordion__item_active .home-about__info-accordion-header span:nth-child(1) {
    color: #FF4500;
  }
  .home-about__info-tabs {
    display: none;
  }
  .home-about__story-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .home-about__slider-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
  }
  .home-about__slider-item:nth-child(n) {
    width: 267px;
  }
  .home-about__slider-nav {
    display: none;
  }
  .home-about__infographic {
    grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
    padding: 24px;
  }
  .home-about__infographic-card-nums span {
    font-size: 20px;
    line-height: 26px;
  }
  .home-about__infographic-card-nums svg,
  .home-about__infographic-card-nums img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 576px) {
  .home-about__infographic {
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 48px;
  }
}
@media (max-width: 390px) {
  .home-about__infographic {
    gap: 24px;
  }
  .home-about__infographic-card {
    width: 100%;
  }
}

.home-map {
  background: #F2F5FD;
  padding: 60px 0 60px 0;
}
.home-map__title {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .home-map {
    padding: 40px 0 40px 0;
  }
  .home-map__title {
    margin-bottom: 16px;
  }
}

.doctor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px 16px 16px;
  border-radius: 24px;
  background: linear-gradient(181.51deg, #F2F6FE 39.14%, #E3E7F0 78.92%);
  backdrop-filter: blur(16px);
  max-width: 308px;
  width: 100%;
  height: auto;
  min-height: 550px;
}
.doctor-card__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  max-width: 100%;
  width: calc(100% - 16px);
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.doctor-card__image-leaf {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
          mask: url("/images/refactor/doctor/leaf-mask.svg") center center/cover no-repeat;
  background: #fff;
}
.doctor-card__image-preview {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  aspect-ratio: 1/1;
  -webkit-mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
          mask: url(/images/refactor/doctor/test/doctor-img-mask.svg) bottom center/cover no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.doctor-card__image-preview_no_photo {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 129px;
  -webkit-mask-size: unset;
          mask-size: unset;
  -webkit-mask: unset;
          mask: unset;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.doctor-card__clinics {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 8px;
}
.doctor-card__clinics span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #9999A4;
  font-size: 14px;
}
.doctor-card__clinics svg {
  color: #9999A4;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: color 350ms ease-in-out;
}
.doctor-card__clinics ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  bottom: 102%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  width: -moz-max-content;
  width: max-content;
  max-width: 250px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.doctor-card__clinics ul::-webkit-scrollbar {
  width: 2px;
}
.doctor-card__clinics ul::-webkit-scrollbar-track {
  background: transparent;
}
.doctor-card__clinics ul::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.doctor-card__clinics ul li {
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  max-width: 100%;
  white-space: break-spaces;
  color: #000000;
}
.doctor-card__clinics:has(ul) {
  width: -moz-max-content;
  width: max-content;
}
.doctor-card__clinics:has(ul):hover span {
  color: #015D52;
}
.doctor-card__clinics:has(ul):hover svg {
  color: #015D52;
}
.doctor-card__clinics:has(ul):hover ul {
  opacity: 1;
  pointer-events: auto;
}
.doctor-card__name {
  margin-top: 22px;
  margin-bottom: 16px;
  text-align: center;
  font-size: 20px;
}
.doctor-card__name span {
  display: block;
}
.doctor-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
}
.doctor-card__price {
  padding: 10px;
  margin-left: 10px;
}
.doctor-card__sign-up-btn.primary-button {
  padding: 10px 8px;
  min-height: 44px;
}
.doctor-card__info {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}
.doctor-card__info-list {
  position: relative;
}
.doctor-card__info-list:nth-child(1) {
  min-width: 85px;
}
.doctor-card__info-list:not(:only-child):nth-child(1) {
  max-width: 133px;
}
.doctor-card__info-list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.doctor-card__info-list-tooltip {
  width: -moz-max-content;
  width: max-content;
}
.doctor-card__info-list-tooltip + div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  bottom: 25%;
  left: -15%;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease-in-out;
  cursor: default;
  max-height: 100px;
  width: -moz-max-content;
  width: max-content;
  max-width: 160px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #CFCFD1 transparent;
}
.doctor-card__info-list-tooltip + div::-webkit-scrollbar {
  width: 2px;
}
.doctor-card__info-list-tooltip + div::-webkit-scrollbar-track {
  background: transparent;
}
.doctor-card__info-list-tooltip + div::-webkit-scrollbar-thumb {
  background-color: #CFCFD1;
}
.doctor-card__info-list-tooltip + div span {
  font-size: 12px;
  line-height: 18px;
  width: 100%;
  max-width: 100%;
  white-space: break-spaces;
  color: #000000;
}
.doctor-card__info-list-tooltip:hover {
  color: #015D52;
}
.doctor-card__info-list-tooltip:hover + div {
  opacity: 1;
  pointer-events: auto;
}
.doctor-card__comment {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 16px;
  left: 16px;
  background: #fff;
  border-radius: 24px;
  padding: 4px 8px;
  z-index: 1;
}
.doctor-card__comment-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #FF4500;
}
.doctor-card__comment-count {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .doctor-card {
    max-width: 330px;
  }
  .doctor-card__image-preview {
    left: 4%;
    height: 92%;
    width: 92%;
  }
  .doctor-card__image-preview_no_photo {
    left: 50%;
    height: 100%;
    width: 100%;
    -o-object-position: center center;
       object-position: center center;
  }
  .doctor-card__image-leaf {
    left: 4%;
    right: 4%;
    bottom: 0;
    top: auto;
    width: 92%;
    height: 92%;
  }
}

.doctor-slider-pagination {
  display: none;
  bottom: 32px !important;
  line-height: 1;
}
@media (max-width: 1024px) {
  .doctor-slider-pagination {
    display: block;
  }
  .doctor-slider-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFE4CA;
    opacity: 1;
    margin: 0 9px;
  }
  .doctor-slider-pagination .swiper-pagination-bullet-active {
    background: #FF4500;
  }
}

.doctor-more-button {
  position: relative;
}
.doctor-more-button-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  background: #F2F5FD;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  border-radius: 12px;
  padding: 10px 20px;
  width: 100%;
  color: #008489;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
@media (hover: hover) {
  .doctor-more-button-item:hover {
    background: #008489;
    color: #fff;
  }
}

.doctor-price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F2F6FE;
  color: #FF4500;
  border-color: transparent;
  backdrop-filter: blur(16px);
  padding: 10px 20px;
  font-size: 14px;
  min-height: 44px;
  line-height: 18px;
  border-radius: 40px;
}

.doctor-booking-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-bottom: 16px;
}
.doctor-booking-panel__button.primary-button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  min-height: 44px;
}

.doctors-filter {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.doctors-filter__select {
  min-width: 240px;
}
.doctors-filter__select-item {
  display: inline-block;
  padding: 16px 36px 16px 16px;
  min-height: 54px;
  height: 100%;
  background-color: #F2F5FD;
  border: unset;
  border-radius: 24px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.doctors-filter__select-item::-ms-expand {
  display: none;
}
.doctors-filter .select2-container .select2-selection--single {
  padding: 16px 36px 16px 16px;
  min-height: 54px;
  height: 100%;
}
.doctors-filter .select2-container--default .select2-selection--single {
  background-color: #F2F5FD;
  border: unset;
  border-radius: 24px;
  outline: 1px solid transparent;
  transition: outline 350ms ease-in-out;
}
.doctors-filter .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.doctors-filter .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.doctors-filter .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000;
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
}
.doctors-filter .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
}
.doctors-filter .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  right: 16px;
  width: 16px;
}
.doctors-filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: inline-block;
  border-color: unset;
  border-style: unset;
  border-width: unset;
  left: unset;
  margin-left: unset;
  margin-top: unset;
  position: static;
  top: unset;
  width: 100%;
  height: 100%;
  background: url("/images/refactor/doctor/arrow-down.svg") center center/contain no-repeat;
}
.doctors-filter .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: unset;
  border-width: unset;
  transform: rotate(-180deg);
}
.doctors-filter .select2-search--dropdown {
  position: absolute;
  top: -58px;
  left: 0;
  min-width: 240px;
  padding: 0;
}
.doctors-filter .select2-container--default .select2-search--dropdown .select2-search__field {
  background: #F2F5FD;
  border: none;
  border-radius: 24px;
  padding-left: 16px;
  height: 54px;
  outline: none !important;
}
.doctors-filter .select2-container--default .select2-search--dropdown .select2-search__field::-moz-placeholder {
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #9999A4;
  -moz-transition: color 350ms ease-in-out;
  transition: color 350ms ease-in-out;
}
.doctors-filter .select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #9999A4;
  transition: color 350ms ease-in-out;
}
.doctors-filter .select2-dropdown {
  top: 4px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.1);
  left: 0;
  min-width: 300px;
  z-index: 90 !important;
}
.doctors-filter .select2-container--default .select2-results > .select2-results__options {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #FF4500 #FFF;
  scroll-padding: 0;
  scroll-margin: 0;
  overscroll-behavior: contain;
}
.doctors-filter .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 3px;
}
.doctors-filter .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: #FFF;
}
.doctors-filter .select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #FF4500;
}
.doctors-filter .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  outline-color: #FF4500;
}
.doctors-filter .select2-results {
  border-radius: 24px;
  overflow: hidden;
}
.doctors-filter .select2-results__option {
  padding: 10px 16px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.doctors-filter .select2-results__option:last-child {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: unset;
}
.doctors-filter .select2-results__option:first-child {
  border-top-left-radius: 24px;
  border-top-right-radius: unset;
}
.doctors-filter .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #f2f5fd;
}
.doctors-filter .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #FF4500;
}
.doctors-filter .doctors-filter__search {
  position: relative;
  width: 100%;
}
.doctors-filter .doctors-filter__search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000000;
  transition: fill 350ms ease-in-out;
}
.doctors-filter .doctors-filter__search-area {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border-radius: 24px;
  outline: 1px solid transparent;
  border: none;
  background: #F2F5FD;
  min-height: 54px;
  color: #000000;
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  transition: outline 350ms ease-in-out;
}
.doctors-filter .doctors-filter__search-area::-moz-placeholder {
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #9999A4;
  -moz-transition: color 350ms ease-in-out;
  transition: color 350ms ease-in-out;
}
.doctors-filter .doctors-filter__search-area::placeholder {
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 22px;
  color: #9999A4;
  transition: color 350ms ease-in-out;
}
.doctors-filter .doctors-filter__search-area::-webkit-search-cancel-button, .doctors-filter .doctors-filter__search-area::-webkit-search-decoration, .doctors-filter .doctors-filter__search-area::-webkit-search-results-button, .doctors-filter .doctors-filter__search-area::-webkit-search-results-decoration {
  display: none;
}
.doctors-filter .doctors-filter__search-area::-ms-clear {
  display: none;
  height: 0;
  width: 0;
}
.doctors-filter .doctors-filter__search-area:focus-visible {
  outline-color: #FF4500;
}
.doctors-filter .doctors-filter__search-area:focus-visible + svg {
  fill: #FF4500;
}
.doctors-filter .doctors-filter__search-area:focus-visible::-moz-placeholder {
  color: #000000;
}
.doctors-filter .doctors-filter__search-area:focus-visible::placeholder {
  color: #000000;
}
@media (max-width: 1024px) {
  .doctors-filter {
    flex-direction: column-reverse;
  }
  .doctors-filter__select {
    width: 100%;
  }
  .doctors-filter__select:nth-child(1) {
    order: 1;
  }
  .doctors-filter__select:nth-child(3) {
    order: -4;
  }
  .doctors-filter .select2-dropdown {
    min-width: auto;
  }
  .doctors-filter .select2-search--dropdown {
    min-width: 100%;
  }
}

[data-clinics-filter] .doctors-filter__select:nth-child(1) {
  order: 0;
}
[data-clinics-filter] .doctors-filter__select:nth-child(2) {
  order: -3;
}
[data-clinics-filter] .doctors-filter .doctors-filter__search:nth-child(n) {
  order: unset;
}

.doctors-tile__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 16px;
  padding: 40px 0 40px 0;
  grid-auto-flow: row dense;
}
.doctors-tile__list .doctor-card {
  max-width: 100% !important;
}
.doctors-tile__list-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 16px;
  padding: 24px 60px;
  background: linear-gradient(269.23deg, #007E6F 0%, #008489 100%);
  width: 100%;
  min-height: 148px;
  grid-column: 1/-1;
  overflow: hidden;
}
.doctors-tile__list-banner-images {
  position: relative;
  width: 133px;
  height: 56px;
}
.doctors-tile__list-banner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
}
.doctors-tile__list-banner-image_left {
  left: 0;
  bottom: 0;
  z-index: 1;
}
.doctors-tile__list-banner-image_center {
  left: 50%;
  transform: translate(-50%, -50%);
  width: 61px;
  height: 61px;
  z-index: 2;
}
.doctors-tile__list-banner-image_right {
  right: 0;
  bottom: 0;
  z-index: 1;
}
.doctors-tile__list-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctors-tile__list-banner-description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.doctors-tile__list-banner-text, .doctors-tile__list-banner-title {
  color: #fff;
}
.doctors-tile__list-banner-title {
  margin: 0;
}
.doctors-tile__list-banner-title.h3 {
  margin: 0;
}
.doctors-tile__list-banner-text {
  line-height: 20px;
}
.doctors-tile__list-banner-preview {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.doctors-tile__list-banner-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.doctors-tile__list-banner-form-label {
  width: 100%;
}
.doctors-tile__list-banner-form-label .input__area {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  min-height: 44px;
}
.doctors-tile__list-banner-form-label .input__area::-moz-placeholder {
  color: #989898;
}
.doctors-tile__list-banner-form-label .input__area::placeholder {
  color: #989898;
}
.doctors-tile__list-banner-form-button {
  min-height: 44px;
  padding: 10px 32px;
  font-weight: 700;
  background: #FF7B4A;
  border-color: #FF7B4A;
}
@media (hover: hover) {
  .doctors-tile__list-banner-form-button:hover {
    background: #FF4500;
    color: #fff;
  }
}
.doctors-tile__list-banner-form-field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.doctors-tile__list-banner-form-checkboxes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}
.doctors-tile__list-banner-form-checkboxes label {
  color: #fff;
}
.doctors-tile__list-banner-form-checkboxes label a, .doctors-tile__list-banner-form-checkboxes label span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
}
.doctors-tile__list-banner-form-checkboxes .custom-checkbox__input + label::before {
  width: 16px;
  height: 16px;
}
.doctors-tile__list-banner-form_error .doctors-tile__list-banner-form-message {
  font-size: 10px;
  line-height: 1;
  color: #f50016;
}
.doctors-tile__list-banner-form_error .input__area {
  border-color: #f50016;
}
.doctors-tile__list-banner-form-success .title, .doctors-tile__list-banner-form-error .title {
  margin-bottom: 8px;
  line-height: 1;
  color: #fff;
}
.doctors-tile__list-banner-form-success div, .doctors-tile__list-banner-form-error div {
  color: #fff;
}
.doctors-tile__list-banner-form-error .title,
.doctors-tile__list-banner-form-error div {
  color: #f50016;
}
@media (max-width: 1024px) {
  .doctors-tile__list-banner-form-success .title, .doctors-tile__list-banner-form-error .title {
    font-size: 20px;
  }
  .doctors-tile__list-banner-form-success div, .doctors-tile__list-banner-form-error div {
    font-size: 14px;
    line-height: 20px;
  }
}
.doctors-tile__list-banner-success .title, .doctors-tile__list-banner-error .title {
  margin-bottom: 8px;
  line-height: 1;
  color: #fff;
}
.doctors-tile__list-banner-success div, .doctors-tile__list-banner-error div {
  color: #fff;
}
.doctors-tile__list-banner_loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 3;
}
.doctors-tile__list-banner_loading .preloader {
  display: block;
  z-index: 4;
}
.doctors-tile__list-banner::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 215px;
  width: 349px;
  background: url("/images/refactor/doctor/patern_doc_banner.svg") center center/cover no-repeat;
  z-index: 0;
}
@media (max-width: 1024px) {
  .doctors-tile__list-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .doctors-tile__list-banner-form {
    width: 100%;
  }
  .doctors-tile__list-banner-success .title, .doctors-tile__list-banner-error .title {
    font-size: 20px;
  }
  .doctors-tile__list-banner-success div, .doctors-tile__list-banner-error div {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .doctors-tile__list-banner {
    position: relative;
    padding: 24px 24px 88px 24px;
    gap: 24px;
  }
  .doctors-tile__list-banner-preview {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    width: 100%;
  }
  .doctors-tile__list-banner-form-button {
    position: absolute;
    bottom: 24px;
    left: 24px;
  }
}
@media (max-width: 576px) {
  .doctors-tile__list-banner {
    gap: 40px;
  }
  .doctors-tile__list-banner-title {
    max-width: 295px;
    line-height: 28px;
  }
  .doctors-tile__list-banner-text {
    max-width: 220px;
  }
  .doctors-tile__list-banner-description {
    gap: 12px;
  }
  .doctors-tile__list-banner-images {
    position: absolute;
    right: 0;
    top: 55%;
  }
  .doctors-tile__list-banner::before {
    top: -29px;
    left: -36px;
    width: 349px;
    height: 215px;
    background: url(/images/refactor/doctor/mailing-list-pattern-mob.svg) center center/cover no-repeat;
  }
}
@media (max-width: 480px) {
  .doctors-tile__list-banner-text {
    max-width: 170px;
  }
}
@media (max-width: 380px) {
  .doctors-tile__list-banner-text {
    max-width: 149px;
  }
}
@media (max-width: 360px) {
  .doctors-tile__list-banner {
    gap: 24px;
  }
  .doctors-tile__list-banner-text {
    max-width: 130px;
  }
  .doctors-tile__list-banner-images {
    top: 52%;
  }
}
.doctors-tile__load-more {
  display: flex;
  margin: 0 auto;
  padding: 10px 8px;
  min-height: 44px;
  min-width: 200px;
  border: none;
}
@media (hover: hover) {
  .doctors-tile__load-more:not(.primary-button_with_loader_active):not(.primary-button_disabled):hover {
    background: #FF7B4A;
    color: #fff;
  }
}
.doctors-tile__load-more.primary-button_disabled {
  background: #FF7B4A;
  color: #fff;
}
@media (hover: hover) {
  .doctors-tile__load-more.primary-button_disabled:hover {
    background: #FF7B4A !important;
    color: #fff !important;
  }
}
.doctors-tile__empty-text {
  padding: 24px 0 24px 0;
  color: #000000;
  text-align: center;
}
.doctors-tile:has(.doctors-tile__list-banner) .doctors-tile__empty-text {
  padding: 0;
}

.home-slider-pagination {
  display: none;
  bottom: 40px !important;
  line-height: 1;
}
@media (max-width: 1024px) {
  .home-slider-pagination {
    display: block;
  }
  .home-slider-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #FFE4CA;
    opacity: 1;
    margin: 0 9px;
  }
  .home-slider-pagination .swiper-pagination-bullet-active {
    background: #FF4500;
  }
}