@import url("https://fonts.googleapis.com/css?family=Figtree:&display=swap");

.premia * {
  margin: 0;
  padding: 0;
  color: inherit;
  box-sizing: border-box;
}

.premia,
.hero-premia {
  font-size: 16px;
}

button {
  cursor: pointer;
}

.premia li {
  list-style: none;
}

.premia details summary {
  list-style: none;
}
.premia details summary::-webkit-details-marker {
  display: none;
}
.text a {
  text-decoration: underline;
  text-decoration-color: inherit;
  transition: text-decoration-color 0.3s;
}
[class*="_sprite-"]:before {
  content: "";
  display: block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  flex-shrink: 0;
  width: var(--iw, 16px);
  aspect-ratio: 1/1;
  transition: all 0.3s;
  background-color: var(--ic, #35373a);
}
._sprite-ch-left:before {
  -webkit-mask-image: url("../assets/img/icons/ch-left.svg");
  mask-image: url("../assets/img/icons/ch-left.svg");
}
._sprite-ch-right:before {
  -webkit-mask-image: url("../assets/img/icons/ch-right.svg");
  mask-image: url("../assets/img/icons/ch-right.svg");
}
._sprite-play:before {
  -webkit-mask-image: url("../assets/img/icons/play.svg");
  mask-image: url("../assets/img/icons/play.svg");
}
._sprite-ch-down:before {
  -webkit-mask-image: url("../assets/img/icons/ch-down.svg");
  mask-image: url("../assets/img/icons/ch-down.svg");
}
.logo {
  width: 117px;
  aspect-ratio: 117/25;
}
.ibg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ibg--contain {
  object-fit: contain;
}
.yt-video {
  position: relative;
  aspect-ratio: 1200/641;
}
.yt-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.text {
  line-height: 1.68;
  font-size: 22px;
  color: #000;
}
.text > * {
  margin-bottom: 24px;
}
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
  font-weight: 700;
  line-height: 1.2;
}
.text ul {
  padding-left: 25px;
}
.text ul li {
  list-style: disc;
}
.text ul li:not(:last-child) {
  margin-bottom: 14px;
}
.text .yt-video {
  margin-bottom: 40px;
}
.text > *:last-child {
  margin-bottom: 0;
}
.button {
  padding: 5px 10px;
  min-height: 50px;
  border-radius: 10px;
  background-color: #fcc000;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  transition: all 0.3s;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.field__input {
  font: unset !important;
  color: rgba(0, 0, 0, 0.5) !important;
  font-size: 16px;
  font-family: "Figtree" !important;
  padding: 7px 17px !important;
  border-radius: 10px !important;
  border: 1px solid #000 !important;
  background-color: #fff !important;
  height: 50px !important;
  margin-bottom: 0 !important;
}

.contact-section__field {
  margin-bottom: 0;
}

.field__textarea {
  color: rgba(0, 0, 0, 0.5) !important;
  padding: 16px 18px !important;
  resize: none !important;
  border-radius: 10px !important;
  border: 1px solid #000 !important;
  background-color: #fff !important;
  flex-grow: 1 !important;
  font-size: 16px;
  font-family: "Figtree" !important;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
body {
  min-width: 320px;
  color: #35373a;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  background-color: #fff;
}
[data-fls-scrolllock] body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}
.wrapper {
  min-height: 100%;
  overflow: clip;
  position: relative;
}
.wrapper > * {
  min-width: 0;
}
[class*="__container"] {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
body::after {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}
.select {
  min-width: 0;
  position: relative;
  font: unset !important;
}
.select__body {
  position: relative;
}
.select__title {
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  position: relative;
}
.select__value {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  padding: 5px 17px;
  height: 50px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.5);
  min-width: 0;
  box-sizing: border-box;
  font-size: 16px;
}
.select__value > * {
  flex: 1 1 auto;
}
.--select-open .select__value {
  border-radius: 12px 12px 0 0;
  border-bottom-color: transparent;
}
.select__value:after {
  content: "";
  -webkit-mask-image: url("../assets/img/icons/triangle.svg");
  mask-image: url("../assets/img/icons/triangle.svg");
  display: block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s ease 0s;
  width: 13px;
  height: 7px;
  background-color: rgba(0, 0, 0, 0.5);
  aspect-ratio: auto;
}
.--select-open .select__value:after {
  transform: rotate(-180deg);
}
.select__content {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__text {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
  color: #1e1e1e;
}
.select__input::placeholder {
  color: #1e1e1e;
}
.--select-focus .select__input::placeholder {
  opacity: 0.5;
}
.select__options {
  position: absolute;
  border-radius: 0 0 10px 10px;
  width: 100%;
  border: 1px solid #000;
  border-top: none;
  left: 0;
  background-color: #fff;
  overflow: hidden;
  min-width: 0;
  top: 100%;
  box-sizing: border-box;
}
.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 0;
  height: var(--content-height);
}
.select:has([data-fls-select-scroll]) .select__scroll {
  max-height: 300px;
}
.select__scroll .simplebar-vertical {
  right: 10px !important;
  height: 100% !important;
}
.select__option {
  color: rgba(0, 0, 0, 0.5);
  width: 100%;
  cursor: pointer;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  padding: 6px 17px;
  transition: all 0.3s;
}
.select__row {
  display: inline-flex;
  align-items: center;
}
.select__search:not(:last-child) {
  margin-bottom: 5px;
}
.select__search .search__input {
  font-size: 16px;
  padding: 8px 40px 8px 14px;
}
.select__search .search__submit {
  pointer-events: none;
}
.select--show-top .select__options {
  bottom: calc(100% + 20px);
  top: auto;
}
.--select-tag {
  cursor: pointer;
} /* Generated by vite-plugin-svg-spritemap */
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
} /* Generated by vite-plugin-svg-spritemap */
.spoilers__item {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--text-color);
  transition: all 0.3s;
  display: block;
  color: var(--text-color);
  width: 100%;
}
.spoilers__item:not(:last-child) {
  margin-bottom: 15px;
}
.spoilers__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  --color: var(--text-color);
}
.spoilers__title svg {
  width: 18px;
  height: 18px;
}
.spoilers__title svg path {
  transition: all 0.3s;
}
.spoilers__title .plus-icon {
  width: 16px;
  height: 16px;
}
.spoilers__title .plus-icon::before,
.spoilers__title .plus-icon::after {
  height: 2px;
}
.spoilers__title.--spoiler-active .plus-icon::before,
.spoilers__title.--spoiler-active .plus-icon::after {
  background-color: var(--text-color);
}
.spoilers__body {
  padding-top: 20px;
}
.spoilers__body .text {
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
}
.spoilers__body .text p:not(:last-child) {
  margin-bottom: 15px;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}
.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}
.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}
.splide__arrow:disabled {
  opacity: 0.3;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}
.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__progress__bar {
  background: #ccc;
  height: 3px;
}
.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}
.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
} /* Generated by vite-plugin-svg-spritemap */
.footer {
  position: relative;
  padding: 87px 0 22px;
}
.footer__decor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100% + 2px);
  width: 2000px;
}
.footer__container {
  display: flex;
  align-items: end;
  gap: 44px;
  position: relative;
  z-index: 2;
}
.footer__logo {
  aspect-ratio: 102/49;
  width: 104px;
  flex-shrink: 0;
}
.footer__text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  flex-grow: 1;
  padding-bottom: 10px;
}
.footer__copy {
  color: #fff;
  font-size: 12px;
  padding-bottom: 10px;
  flex-shrink: 0;
} /* Generated by vite-plugin-svg-spritemap */ /* Generated by vite-plugin-svg-spritemap */
.text-block {
  position: relative;
  padding-left: 26px;
}
.text-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 87px;
  background-color: #fcc000;
}
.text-block--blue::before {
  background-color: #377ee4;
}
.text-block__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
}
.text-block__title.--wide {
  line-height: 1.6;
}
.text-block__subtitle {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.25;
}

.premia__slider-section {
  padding: 55px 0 1px;
}

.slider-section {
  max-width: 2000px;
  margin: 0 auto;
  min-width: 0;
}
.slider-section__gr-container {
  display: grid;
  min-width: 0;
  grid-template-columns: 20px 1fr minmax(auto, 1200px) 1fr 20px;
}
.slider-section__gr-container > * {
  min-width: 0;
  grid-column: 3/4;
}
.slider-section__header {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.slider-section__header:not(:last-child) {
  margin-bottom: 58px;
}
.slider-section__arrows {
  display: flex;
  gap: 5px;
}
.slider-section__arrow {
  width: 38px;
  background-color: #35373a;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  --ic: #fff;
  transition: all 0.3s;
}
.slider-section__arrow::before {
  height: 23px;
  width: 14px;
}
.slider-section__arrow:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.slider-section__slider {
  position: relative;
  margin: 0 -8px;
}
.slider-section__slider .splide__slide {
  padding: 0 8px;
}

.info-item {
  border-radius: 20px;
  background: linear-gradient(90deg, #cccaca 0%, #fff 0%);
  box-shadow: 1px -1px 7.4px -1px rgba(0, 0, 0, 0.25);
  padding: 28px 20px 81px;
  margin: 8px 0;
  overflow: hidden;
  position: relative;
}
.info-item__title {
  font-size: 30px;
  font-weight: 700;
}
.info-item__title:not(:last-child) {
  margin-bottom: 23px;
}
.info-item__image {
  aspect-ratio: 395/214;
  width: 100%;
  position: relative;
}
.info-item__image:not(:last-child) {
  margin-bottom: 18px;
}
.slider-section--surgeons .info-item__image {
  aspect-ratio: 395/277;
}
.slider-section--surgeons .info-item__image:not(:last-child) {
  margin-bottom: 33px;
}
.info-item__tag {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 5px 19px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  background-color: #fcc000;
}
.info-item__text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #35373a;
  font-size: 18px;
  line-height: 1.44;
  max-width: 355px;
}
.slider-section--surgeons .info-item__text {
  -webkit-line-clamp: 2;
}
.info-item__play {
  width: 60px;
  background-color: #35373a;
  aspect-ratio: 1/1;
  border-radius: 0 19px;
  --ic: #fff;
  --iw: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}

.premia__benefits:not(:last-child) {
  margin-bottom: 24px;
}

.benefits-pr {
  position: relative;
  padding: 124px 0 98px;
  background-color: #e7f1fc;
}
.benefits-pr__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-position: top right;
  height: 100%;
  max-height: 786px;
  z-index: 1;
}
.benefits-pr__container {
  position: relative;
  z-index: 3;
}
.benefits-pr__text-block {
  padding-top: 13px;
}
.benefits-pr__text-block .text-block__subtitle {
  max-width: 574px;
}
.benefits-pr__text-block:not(:last-child) {
  margin-bottom: 76px;
}
.benefits-pr__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-left: 32px;
}
.benefits-pr__info:not(:last-child) {
  margin-bottom: 71px;
}
.benefits-pr__info-item {
  display: flex;
  align-items: start;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.16;
  gap: 18px;
}
.benefits-pr__info-item span {
  display: inline-block;
}
.benefits-pr__info-item img {
  width: 56px;
  aspect-ratio: 56/65;
  flex-shrink: 0;
}
.benefits-pr__info-item:nth-child(2) img {
  width: 20px;
}
.benefits-pr__info-item:nth-child(1) img {
  width: 31px;
  aspect-ratio: 31/84;
}
.benefits-pr__info-item:nth-child(2) {
  padding-left: 19px;
}
.benefits-pr__info-item:nth-child(2) img {
  width: 48px;
  aspect-ratio: 48/57;
  margin-top: 3px;
}
.benefits-pr__info-item:nth-child(3) {
  padding-left: 34px;
}
.benefits-pr__info-item:nth-child(3) img {
  margin-top: 2px;
}
.benefits-pr__slider {
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}
.benefits-pr__slider.--watcher-view {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.benefits-pr__slider .splide__slide {
  display: flex;
}
.benefits-pr__item {
  width: 100%;
}

.item-benefits {
  border-radius: 30px;
  border: 2px solid #000;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 60px 45px 43px 55px;
}
.item-benefits__text-block:not(:last-child) {
  margin-bottom: 57px;
}
.item-benefits__text-block::before {
  height: 112px;
  top: 50%;
  transform: translateY(-50%);
}
.item-benefits__l-item {
  font-size: 30px;
  font-weight: 600;
  padding-left: 25px;
}
.item-benefits__l-item:not(:last-child) {
  margin-bottom: 25px;
  border-bottom: 2px solid #fcc000;
  padding-bottom: 25px;
}
.item-benefits__list--blue .item-benefits__l-item {
  border-color: #377ee4;
}

.premia__about:not(:last-child) {
  margin-bottom: 61px;
}

.about-pr {
  padding-top: 125px;
}
.about-pr__text-block:not(:last-child) {
  margin-bottom: 46px;
}
.about-pr__text:not(:last-child) {
  margin-bottom: 76px;
}
.about-pr__body {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  display: flex;
}
.about-pr__image img {
  object-position: bottom right;
}
.about-pr__actions {
  display: flex;
  flex-direction: column;
  gap: 31px;
  position: relative;
  z-index: 2;
  margin-bottom: 90px;
}
.about-pr__button {
  padding: 10px 14px 10px 43px;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  border-radius: 100px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: space-between;
  min-width: 370px;
  transition: all 0.3s;
  background-color: #194284;
  --ic: #fff;
  --iw: 60px;
}

.premia__map-section:not(:last-child) {
  margin-bottom: 47px;
}

.map-section__container:not(:last-child) {
  margin-bottom: 50px;
}
.map-section__big__container {
  max-width: 1910px;
}
.map-section__body {
  padding: 49px 20px;
  min-height: 911px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.map-section__spoiler {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(3.75px);
  border-radius: 30px;
  padding: 37px 65px 34px 68px;
  max-width: 1332px;
  margin: 0 auto;
}
.map-section__title {
  font-size: 26px;
  font-weight: 600;
}
.map-section__form {
  display: flex;
  gap: 17 15px;
  align-items: start;
}
.map-section__fields {
  display: flex;
  gap: 12px 25px;
}
.map-section__button {
  margin-top: 31px;
  min-width: 235px;
}
.map-section__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #194284;
}

.premia__contact {
  margin-bottom: 47px;
}

.contact-section__text-block:not(:last-child) {
  margin-bottom: 90px;
}
.contact-section__form {
  display: flex;
  flex-direction: column;
  gap: 53px;
}
.contact-section__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 39px 65px;
  max-width: 863px;
  margin: 0 auto;
  width: 100%;
}
.contact-section__button {
  font-size: 28px;
  min-height: 72px;
  width: 100%;
  max-width: 458px;
  align-self: center;
}

.hero-premia__container {
  max-width: 1820px;
}
.hero-premia__slider {
  border-radius: 50px 50px 0 0;
  overflow: hidden;
}
.hero-premia__slider .splide__slide {
  display: flex;
}
.hero-premia__slider .splide__pagination {
  display: inline-flex !important;
  width: max-content !important;
  top: auto !important;
  bottom: 250px !important;
  left: 64px !important;
  padding: 0 !important;
  gap: 3px;
}
.hero-premia__slider .splide__pagination li {
  font-size: 0;
}
.hero-premia__slider .splide__pagination__page {
  margin: 0 !important;
  width: 10px !important;
  height: 10px !important;
  transform: none !important;
  opacity: 1 !important;
  background: transparent !important;
  border: 1px solid #fff !important;
}
.hero-premia__slider .splide__pagination__page.is-active {
  background: #fff !important;
}
.patient-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  width: 100%;
}
.hero-doctor h1 {
}
.patient-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #041c45 14.24%,
    rgba(255, 255, 255, 0) 101.59%
  );
  background-blend-mode: multiply;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
}

.patient-hero__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 3;
  padding: 64px 64px 300px;
  color: #fff;
}
.patient-hero__title {
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 75px !important;
  font-weight: 800;
  line-height: 1.06;
  margin: 0;
}
.patient-hero__name {
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.06;
}
.patient-hero__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-width: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 150%;
  max-width: 1430px;
  transform: translateX(3.2%) rotate(8deg);
}
.patient-hero__images img {
  width: 100%;
  height: 100%;
}
.patient-hero__block {
  min-width: 0;
}
.patient-hero__block:nth-child(even) {
  transform: translateY(-11.967309%);
}
.patient-hero__block:nth-child(odd) {
  animation: scrollUp 30s linear infinite;
}
.patient-hero__block:nth-child(even) {
  animation: scrollDown 30s linear infinite;
}
.patient-hero__image {
  aspect-ratio: 376/1725;
  width: 100%;
  object-fit: contain;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
} /* Generated by vite-plugin-svg-spritemap */
[data-fls-popup-open] body::after {
  opacity: 1;
}

[data-fls-popup] {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}
[data-fls-popup][data-fls-popup-active] {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

[data-fls-popup-active] [data-fls-popup-body] {
  visibility: visible;
  transform: scale(1);
}

[data-fls-popup-wrapper] {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

[data-fls-popup-body] {
  visibility: hidden;
  transform: scale(0);
  transition:
    transform 0.3s ease 0s,
    visibility 0.3s ease 0s;
  width: 100%;
  max-width: 692px;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

[data-fls-popup-youtube-place] iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 74.99875em) {
  .item-benefits__text-block .text-block__title {
    font-size: 40px;
  }
}

@media (max-width: 61.99875em) {
  .benefits-pr__info-item {
    font-size: 20px;
  }
  .about-pr__body {
    flex-direction: column;
    border-radius: 20px;
  }
  .about-pr__image {
    aspect-ratio: 335/241;
  }
  .about-pr__actions {
    margin-bottom: 0;
    padding: 16px 20px 20px;
    gap: 13px;
    background-color: #efeff1;
  }
  .about-pr__button {
    padding: 6px 5px 6px 19px;
    font-size: 24px;
    border-radius: 60px;
    min-width: 0;
    --iw: 45px;
  }
  .patient-hero__title {
    font-size: 40px !important;
  }
  .patient-hero__name {
    font-size: 20px;
  }
}

@media (max-width: 47.99875em) {
  .text {
    font-size: 20px;
    line-height: 1.6;
  }
  .text > * {
    margin-bottom: 18px;
  }
  .text .yt-video {
    margin-bottom: 20px;
  }
  .pc {
    display: none !important;
  }
  .button {
    font-size: 18px;
    cursor: pointer;
  }
  .footer__copy {
    display: none;
  }
  .text-block__title {
    font-size: 28px;
  }
  .text-block__title.--wide {
    line-height: 1.65;
  }
  .text-block__subtitle {
    font-size: 23px;
  }
  .text-block {
    padding-left: 14px;
  }
  .text-block::before {
    width: 3px;
    height: 50px;
  }
  .premia__slider-section {
    padding: 24px 0 0;
  }
  .slider-section__header:not(:last-child) {
    margin-bottom: 17px;
  }
  .info-item {
    padding: 20px 15px 60px;
    border-radius: 15px;
  }
  .info-item__title {
    font-size: 23px;
  }
  .info-item__title:not(:last-child) {
    margin-bottom: 18px;
  }
  .info-item__image {
    aspect-ratio: 304/164;
  }
  .info-item__image:not(:last-child) {
    margin-bottom: 14px;
  }
  .slider-section--surgeons .info-item__image:not(:last-child) {
    margin-bottom: 25px;
  }
  .info-item__tag {
    font-size: 10px;
    padding: 3px 15px;
    min-height: 24px;
  }
  .info-item__text {
    font-size: 14px;
  }
  .info-item__play {
    width: 46px;
    --iw: 26px;
    border-radius: 0 15px;
  }
  .premia__benefits:not(:last-child) {
    margin-bottom: 9px;
  }
  .benefits-pr {
    padding: 40px 0 270px;
    background: linear-gradient(180deg, #fff 0%, #e7f1fc 5.29%);
  }
  .benefits-pr__image {
    max-height: 430px;
    object-position: bottom right;
    top: auto;
    bottom: 0;
  }
  .benefits-pr__text-block {
    padding-top: 8px;
  }
  .benefits-pr__text-block .text-block__title {
    line-height: 1.25;
    max-width: 250px;
  }
  .benefits-pr__text-block .text-block__title:not(:last-child) {
    margin-bottom: 4px;
  }
  .benefits-pr__text-block .text-block__subtitle {
    line-height: 1.34;
  }
  .benefits-pr__text-block:not(:last-child) {
    margin-bottom: 35px;
  }
  .benefits-pr__info {
    gap: 20px;
    margin-left: 0;
  }
  .benefits-pr__info:not(:last-child) {
    margin-bottom: 35px;
  }
  .benefits-pr__info-item {
    font-size: 13px;
    gap: 8px;
  }
  .benefits-pr__info-item img {
    width: 24px;
  }
  .benefits-pr__info-item:nth-child(1) img {
    width: 13px;
  }
  .benefits-pr__info-item:nth-child(2) {
    padding-left: 0;
  }
  .benefits-pr__info-item:nth-child(2) img {
    width: 20px;
  }
  .benefits-pr__info-item:nth-child(3) {
    padding-left: 8px;
  }
  .benefits-pr__info-item:nth-child(3) img {
    width: 24px;
  }
  .benefits-pr__slider {
    margin-right: -20px;
  }
  .item-benefits {
    padding: 29px 15px 19px 27px;
    border-radius: 15px;
    border-width: 1px;
  }
  .item-benefits__text-block:not(:last-child) {
    margin-bottom: 27px;
  }
  .item-benefits__text-block::before {
    height: 56px;
  }
  .item-benefits__text-block .text-block__title {
    font-size: 25px;
  }
  .item-benefits__l-item {
    font-size: 16px;
    padding-left: 12px;
  }
  .item-benefits__l-item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-width: 1px;
  }
  .premia__about:not(:last-child) {
    margin-bottom: 26px;
  }
  .about-pr {
    padding-top: 40px;
  }
  .about-pr__text-block:not(:last-child) {
    margin-bottom: 36px;
  }
  .about-pr__text:not(:last-child) {
    margin-bottom: 10px;
  }
  .about-pr__image img {
    object-position: top right;
  }
  .about-pr__button {
    font-size: 18px;
    --iw: 36px;
  }
  .premia__map-section:not(:last-child) {
    margin-bottom: 37px;
  }
  .map-section__container:not(:last-child) {
    margin-bottom: 27px;
  }
  .map-section__body {
    min-height: 690px;
    padding: 23px 20px;
    border-radius: 18px;
    margin: 0 -20px;
  }
  .map-section__spoiler {
    padding: 0;
    border-radius: 12px;
  }
  .map-section__title {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    padding: 20px 18px 20px 20px;
    --ic: #000;
  }
  .map-section__title::before {
    width: 13px;
    height: 8px;
    transform: rotate(-180deg);
    transition: all 0.5s;
  }
  .map-section__title.--spoiler-active::before {
    transform: none;
  }
  .map-section__wrapper {
    padding: 0 17px 23px;
  }
  .map-section__form {
    flex-direction: column;
  }
  .map-section__fields {
    flex-direction: column;
  }
  .map-section__button {
    max-width: 400px;
    min-width: 0;
    width: 100%;
    align-self: center;
  }
  .premia__contact {
    margin-bottom: 50px;
  }
  .contact-section__text-block:not(:last-child) {
    margin-bottom: 30px;
  }
  .contact-section__form {
    gap: 24px;
  }
  .contact-section__fields {
    gap: 15px;
  }
  .contact-section__button {
    font-size: 24px;
    min-height: 50px;
  }
  .patient-hero__title {
    font-size: 29px !important;
  }
  .patient-hero__name {
    font-size: 18px;
  }
  [data-fls-popup-body] {
    padding: 70px 15px;
  }
}

@media (max-width: 37.49875em) {
  .field__textarea {
    height: 139px;
  }
  .contact-section__fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 31.24875em) {
  .yt-video {
    aspect-ratio: 375/256;
  }
  .text .yt-video {
    margin-left: -20px;
    margin-right: -20px;
  }
  .footer {
    padding: 40px 0 3px;
  }
  .footer__decor {
    width: 100%;
    left: 0;
    transform: none;
    object-position: top left;
  }
  .footer__decor.--pc {
    display: none;
  }
  .footer__container {
    flex-direction: column;
    gap: 28px;
    align-items: start;
  }
  .footer__text {
    max-width: 255px;
    line-height: 1.3;
  }
}

@media (max-width: 24.99875em) {
  .spoilers__item {
    padding-bottom: 8px;
  }
  .spoilers__item:not(:last-child) {
    margin-bottom: 10px;
  }
}

@media (min-width: 31.24875em) {
  .footer__decor.--mobile {
    display: none;
  }
}

@media (min-width: 37.49875em) {
  .contact-section__field:nth-child(5) {
    grid-row: 2/4;
    grid-column: 2;
  }
}

@media (min-width: 47.99875em) {
  .mobile {
    display: none !important;
  }
  .benefits-pr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 315px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #fff 91.83%);
    z-index: 2;
  }
  .map-section__title::before {
    display: none;
  }
  .map-section__title:not(:last-child) {
    margin-bottom: 30px;
  }
  .map-section__fields {
    flex-grow: 1;
  }
}

@media (min-width: 61.99875em) and (max-width: 74.99875em) {
  .benefits-pr__slider .splide__list {
    gap: 20px;
  }
}

@media (min-width: 61.99875em) {
  .benefits-pr__slider .splide__list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 99px;
  }
  .about-pr__body {
    min-height: 643px;
    align-items: center;
    padding: 20px 62px;
  }
  .about-pr__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 84.37375em) {
  .slider-section__slider {
    grid-column: 1/-1;
  }
  .slider-section__slider::before,
  .slider-section__slider::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 22.4%;
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s;
  }
  .slider-section__slider::before {
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 91.83%);
  }
  .slider-section__slider::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 91.83%);
  }
  .slider-section__slider.is-start::before {
    opacity: 0;
    visibility: hidden;
  }
  .slider-section__slider.is-end::after {
    opacity: 0;
    visibility: hidden;
  }
}

@media (any-hover: hover) {
  .text a:hover {
    text-decoration-color: transparent;
  }
  .button:hover {
    background-color: #000;
    color: #fcc000;
  }
  .select__option:hover {
    background: #eeece9;
  }
  .spoilers__item:has(.spoilers__title:hover) {
    border-bottom-color: #6c6f38;
  }
  .spoilers__title:hover {
    color: #6c6f38;
    border-color: #6c6f38;
    --color: #e2102e;
  }
  .spoilers__title:hover .plus-icon::before,
  .spoilers__title:hover .plus-icon::after {
    background-color: #6c6f38;
  }
  .slider-section__arrow:hover {
    --ic: #35373a;
    background-color: #fff;
  }
  .info-item__play:hover {
    --ic: #35373a;
    background-color: #fff;
  }
  .about-pr__button:hover {
    background-color: #fff;
    color: #194284;
    --ic: #194284;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.hero-doctor {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-premia {
  margin-top: 70px;
}

.hero-premia .top-section {
  margin: 0 !important;
  padding: 0 !important;
  padding-inline: 0 !important;
  position: relative;
}

.hero-premia .holder::after,
.hero-premia .holder::before {
  display: none !important;
}

.hero-premia__wrapper::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 242px;
  width: 100%;
  background: url(../images/curve-for-form.png) no-repeat 50% 100%;
  z-index: 6;
}

@media only screen and (max-width: 1500px) {
  .hero-premia__wrapper:after {
    background-position: 50% 0;
    height: 202px;
  }
}

@media screen and (max-width: 1023px) {
  .hero-premia__wrapper::after {
    content: "";
    position: absolute;
    bottom: 200px;
    left: 0;
    height: 165px;
    width: 100%;
    background: url(../images/curve-for-form-mobile.png) no-repeat 50% 0 / 100%
      165px;
    /* mix-blend-mode: multiply; */
    z-index: 6;
  }
  .hero-premia__wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(180deg, #093a80 0%, #020c1a 100%);
    pointer-events: none !important;
    /* mix-blend-mode: multiply; */
    z-index: 6;
  }
}

@media screen and (max-width: 767px) {
  .hero-premia__wrapper:after {
    bottom: 220px;
  }
  .hero-premia .holder {
    min-height: 0 !important;
    width: 100%;
    justify-content: start !important;
  }
  .hero-premia__wrapper {
    min-height: 695px;
  }
  .hero-doctor {
    display: flex;
  }
  .hero-premia .request-appointment-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .hero-premia__wrapper::before {
    height: 220px;
  }
  .hero-premia .top-section-content {
    margin: 0 !important;
    padding-bottom: 120px !important;
  }
  .hero-premia .person {
    top: auto !important;
    bottom: 0 !important;
  }
  .hero-premia__slider .splide__pagination {
    bottom: 90px !important;
    left: 20px !important;
  }
  .hero-premia__slider {
    margin-bottom: -70px !important;
    border-radius: 25px 25px 0 0;
  }
  .hero-premia h1 {
    margin-bottom: 50px !important;
  }
  .patient-hero__body {
    padding: 20px 20px 200px 20px;
  }
  .map-section__button {
    margin-top: 0;
  }
  .map-section__wrapper {
    box-sizing: border-box;
  }
}
