@charset "UTF-8";
@font-face {
    font-family: 'Antarctic';
    src: url('../fonts/Antarctic/Antarctic.eot');
    src: local('../fonts/Antarctic/Antarctic'),
        url('../fonts/Antarctic/Antarctic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Antarctic/Antarctic.woff2') format('woff2'),
        url('../fonts/Antarctic/Antarctic.woff') format('woff'),
        url('../fonts/Antarctic/Antarctic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
  font-family: MuseoSansCyrl;
  font-display: swap;
  src: url("../fonts/MuseoSansCyrl.woff2") format("woff2"), url("../fonts/MuseoSansCyrl.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: PT;
  font-display: swap;
  src: url("../fonts/PTBold.woff2") format("woff2"), url("../fonts/PTBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: PT;
  font-display: swap;
  src: url("../fonts/PTLight.woff2") format("woff2"), url("../fonts/PTLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: PT;
  font-display: swap;
  src: url("../fonts/PTMedium.woff2") format("woff2"), url("../fonts/PTMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: PT;
  font-display: swap;
  src: url("../fonts/PTRegular.woff2") format("woff2"), url("../fonts/PTRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}


* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}


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

:focus,
:active {
  outline: none;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #494C52;
  line-height: 1;
  font-family: "PT";
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a {
  color: inherit;
}

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

a:hover {
	/*text-decoration-style: dotted;*/
	text-decoration: underline;
}


section a,
section a:link,
section a:visited,
section a:hover {
	font-weight: 800;
	text-decoration: underline;
	/*text-decoration-style: dotted;*/
}

a._btn {
	text-decoration: none !important;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

.lock body {
  overflow: hidden;
  touch-action: none;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wrapper > main {
  flex: 1 1 auto;
}
.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/
[class*=__container] {
  max-width: 80rem;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
@media (max-width: 61.99875em) {
  [class*=__container] {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  [class*=__container] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.checkbox {
  position: relative;
}
.checkbox:not(:last-child) {
  margin-bottom: 0.3125em;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:checked + .checkbox__label:before {
  background: var(--blue);
  border: 0.0625rem solid var(--blue);
}
.checkbox__input:checked + .checkbox__label::after {
  background: url("../img/choice/01.svg") center center/0.875rem 0.625rem no-repeat;
}
.checkbox__label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
.checkbox__label:before {
  content: "";
  align-self: flex-start;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 0.0625rem solid var(--darkGray);
}
.checkbox__label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
}
.checkbox__text {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: var(--darkGray);
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__item:not(:last-child) {
  margin-bottom: 0.3125em;
}
.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.options__input:focus + .options__label:before {
  box-shadow: 0 0 5px #000;
}
.options__input:checked + .options__label:after {
  transform: scale(1);
}
.options__label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.options__label:before {
  content: "";
  align-self: flex-start;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  border: 1px solid #a7a9ac;
}
.options__label:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 5px;
}
.select {
  position: relative;
}
.select__body {
  position: relative;
  font-size: 1rem;
  line-height: 1.1875;
}
.select__title {
  color: var(--black);
  text-align: left;
  border: 1px solid var(--darkGray);
  background-color: #fff;
  cursor: pointer;
  width: 100%;
}
.select__value {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0px 15px;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value:before {
  content: "";
  align-self: stretch;
  flex: 0 0 30px;
  transition: all 0.3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
  margin-top: 0.125rem;
  background: url("../img/arrow.svg") center center no-repeat;
}
._select-open .select__value:before {
  transform: rotate(-270deg);
}
.select__text {
  flex: 1 1 auto;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: var(--black);
  position: absolute;
  top: 40px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid var(--darkGray);
  border-top: 0;
  padding: 10px 0px 5px 0px;
}
.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}
.select__option {
  width: 100%;
  display: block;
  text-align: left;
  cursor: pointer;
  padding: 10px 15px;
  color: inherit;
}
.select__option._select-selected {
  background-color: #eee;
}
@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select__row {
  display: inline-flex;
  align-items: center;
}
.select._select-open {
  z-index: 5;
}
._select-tag {
  cursor: pointer;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
  color: var(--darkGray);
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: var(--blue);
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 0rem;
  display: none;
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

[data-showmore-button] span:last-child {
  display: none;
}
._showmore-active [data-showmore-button] span {
  display: none;
}
._showmore-active [data-showmore-button] span:last-child {
  display: block;
}

[data-sticky] {
  position: relative;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.block__container ol, .accounting__content-list ol, .schedule__container ol, .steps__container ol, .audit__container ol, .bespoleznyi__items ul, .youth__content ol, .powerpage__body ol {
  list-style-type: none;
  counter-reset: item;
}
.block__container ol li, .accounting__content-list ol li, .schedule__container ol li, .steps__container ol li, .audit__container ol li, .bespoleznyi__items ul li, .youth__content ol li, .powerpage__body ol li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@media (max-width: 47.99875em) {
  .block__container ol li, .accounting__content-list ol li, .schedule__container ol li, .steps__container ol li, .audit__container ol li, .bespoleznyi__items ul li, .youth__content ol li, .powerpage__body ol li {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
.block__container ol li:not(:last-child), .accounting__content-list ol li:not(:last-child), .schedule__container ol li:not(:last-child), .steps__container ol li:not(:last-child), .audit__container ol li:not(:last-child), .bespoleznyi__items ul li:not(:last-child), .youth__content ol li:not(:last-child), .powerpage__body ol li:not(:last-child) {
  padding-bottom: 1.25rem;
}
.block__container ol li:before, .accounting__content-list ol li:before, .schedule__container ol li:before, .steps__container ol li:before, .audit__container ol li:before, .bespoleznyi__items ul li:before, .youth__content ol li:before, .powerpage__body ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@media (max-width: 47.99875em) {
  .block__container ol li:before, .accounting__content-list ol li:before, .schedule__container ol li:before, .steps__container ol li:before, .audit__container ol li:before, .bespoleznyi__items ul li:before, .youth__content ol li:before, .powerpage__body ol li:before {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}

.rejuvenation__videos, .advantage__videos, .schedule__videos, .steps__videos, .audit__videos, .well__videos, .work__column-videos {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
.rejuvenation__videos video, .advantage__videos video, .schedule__videos video, .steps__videos video, .audit__videos video, .well__videos video, .work__column-videos video,
.rejuvenation__videos iframe,
.advantage__videos iframe,
.schedule__videos iframe,
.steps__videos iframe,
.audit__videos iframe,
.well__videos iframe,
.work__column-videos iframe,
.rejuvenation__videos object,
.advantage__videos object,
.schedule__videos object,
.steps__videos object,
.audit__videos object,
.well__videos object,
.work__column-videos object,
.rejuvenation__videos embed,
.advantage__videos embed,
.schedule__videos embed,
.steps__videos embed,
.audit__videos embed,
.well__videos embed,
.work__column-videos embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.powerpage__aside-inner::-webkit-scrollbar {
  display: none;
}

:root {
  --white: #fefefe;
  --blue: #B4788B ;
  --darkGray: #7f8387;
  --gray: #6f6f6f;
  --black: #494c52;
}

._btn {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: var(--white);
  padding: 0.875rem 1.875rem;
  background: var(--black);
  display: inline-block;
  transition: all 0.3s ease 0s;
  border: 0.0625rem solid var(--black);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
._btn:hover {
  background: var(--blue);
  border: 0.0625rem solid var(--blue);
}
._btn:focus {
  border: 0.0625rem solid var(--blue);
  background: var(--blue);
}
._btn:active {
  background: var(--blue);
  border: 0.0625rem solid var(--blue);
}
._btn:disabled {
  background: #dedede;
  color: var(--darkGray);
  border: 0.0625rem solid #dedede;
}

.bottom-main__pugg {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
.bottom-main__pugg .swiper-pagination-bullet {
  width: 0.9375rem;
  height: 0.125rem;
  transition: all 0.3s ease 0s;
  background: var(--black);
  cursor: pointer;
}
.bottom-main__pugg .swiper-pagination-bullet:hover{
  background: #B4788B;
}
.bottom-main__pugg .swiper-pagination-bullet-active {
  width: 1.5625rem;
  background: var(--blue);
}

._text .curators__title._title h1,
._text .curators__title._title h2 {
  font-size: 6rem;
}
@media (max-width: 61.99875em) {
  ._text .curators__title._title h1,
  ._text .curators__title._title h2 {
    font-size: 5rem;
  }
}
@media (max-width: 47.99875em) {
  ._text .curators__title._title h1,
  ._text .curators__title._title h2 {
    font-size: 3.125rem;
  }
}

._text ._title {
  font-family: "Antarctic" !important;
  text-transform: none !important;
  font-style: normal;
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 130%;
  position: relative;
  z-index: 2;
}
._text ._title * {
  font-family: "Antarctic" !important;
  text-transform: none !important;
}
._text ._title small {
  font-family: "MuseoSansCyrl" !important;
}
@media (max-width: 61.99875em) {
  ._text ._title {
    font-size: 5rem;
  }
  ._text ._title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  ._text ._title {
    font-size: 3.375rem;
  }
  ._text ._title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
._text ._title span {
  font-family: "MuseoSansCyrl" !important;
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase !important;
}

._title {
  font-family: "Antarctic" !important;
  text-transform: none !important;
  font-style: normal;
  font-weight: 400;
  font-size: 4.5rem;
  line-height: 130%;
  position: relative;
  z-index: 2;
}
._title * {
  font-family: "Antarctic" !important;
  text-transform: none !important;
}
._title small {
  font-family: "MuseoSansCyrl" !important;
}
@media (max-width: 61.99875em) {
  ._title {
    font-size: 5rem;
  }
  ._title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  ._title {
    font-size: 3.375rem;
  }
  ._title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
._title span {
  font-family: "MuseoSansCyrl" !important;
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase !important;
}

._text p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  ._text p {
    font-size: 1rem;
  }
}
._text ol {
  list-style-type: none;
  counter-reset: item;
}
._text ol li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@media (max-width: 47.99875em) {
  ._text ol li {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}

._text ol li:before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@media (max-width: 47.99875em) {
  ._text ol li:before {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
._text ul li {
  position: relative;
  text-indent: 1.25rem;
}
._text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 0.875rem;
  height: 0.0625rem;
  background: var(--black);
}

.swiper-slide {
  opacity: 0;
  transition: all 0.2s ease 0s;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-slide-next {
  opacity: 1;
}

.swiper-slide._active {
  opacity: 1;
}

.header {
  position: relative;
  z-index: 4;
  padding: 1.875rem 0;
  background: #fff;
  filter: drop-shadow(20px 20px 50px rgba(208, 223, 227, 0.2));
}
@media (max-width: 61.99875em) {
  .header {
    padding: 1.25rem 0;
  }
}
.menu {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .menu {
    justify-content: space-between;
  }
}
.menu__body {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .menu__body {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    flex-direction: column;
    left: 0;
    width: 100vw;
    align-items: flex-start;
  }
}
.menu__body.menu-open {
  visibility: visible;
  opacity: 1;
  background: #FEFEFE;
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  padding: 1.875rem 0.9375rem;
}
.menu__list {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
  display: flex;
}
@media (max-width: 61.99875em) {
  .menu__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.875rem;
  }
}
.menu__list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 81.875em) {
  .menu__list li:not(:last-child) {
    margin-right: 0.9375rem;
  }
}
.menu__list li a {
  position: relative;
  transition: all 0.3s ease 0s;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  color: var(--black);
}
.menu__list li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  transition: all 0.3s ease-in 0s;
  width: 0%;
  background: var(--black);
}
.menu__list li a:hover {
  color: var(--blue);
}
@media (max-width: 61.99875em) {
  .menu__list li:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .menu__btn {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    margin-right: 3.125rem;
    margin-left: 0.625rem;
  }
}
@media (max-width: 29.99875em) {
  .menu__btn {
    margin-right: 1.25rem;
  }
}
.menu__btn a, .menu__btn button {
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}
@media (max-width: 81.875em) and (min-width: 61.99875em) {
  .menu__btn a, .menu__btn button {
    padding: 0.625rem 0.9375rem;
  }
}
@media (max-width: 29.99875em) {
  .menu__btn a, .menu__btn button {
    font-size: 0rem;
    position: relative;
    border-radius: 50%;
    padding: 0px 0px 0px 0px;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .menu__btn a::before, .menu__btn button::before {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    background: url("../img/phone.svg") 0 0/cover no-repeat;
  }
}
.menu__media {
  margin-top: 1.875rem;
}
@media (min-width: 61.99875em) {
  .menu__media {
    display: none !important;
  }
}
@media (min-width: 61.99875em) {
  .menu__btn-mob {
    display: none !important;
  }
}

.icon-menu {
  display: none;
}
@media (max-width: 61.99875em) {
  .icon-menu {
    display: block;
    position: relative;
    width: 2.25rem;
    height: 1.5rem;
    cursor: pointer;
    z-index: 5;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    transition: all 0.3s ease 0s;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--black);
  }
  .icon-menu::before {
    top: 0px;
  }
  .icon-menu::after {
    bottom: 0px;
  }
  .icon-menu span {
    top: calc(50% - 2px);
  }
  .icon-menu.menu-open span {
    transform: scale(0);
  }
  .icon-menu.menu-open::before {
    transform: rotate(-45deg);
    top: calc(50% - 2px);
  }
  .icon-menu.menu-open::after {
    transform: rotate(45deg);
    bottom: calc(50% - 2px);
  }
}

.fancybox-content {
  padding: 0px 0px 0px 0px !important;
}
.fancybox-content.fancy_rewiev {
  padding: 44px !important;
}
@media (max-width: 61.99875em) {
  .fancybox-content {
    max-width: calc(100% - 3.75rem) !important;
  }
}
@media (max-width: 47.99875em) {
  .fancybox-content {
    max-width: calc(100% - 1.875rem) !important;
  }
}

.callback {
  max-width: 1280px;
}
.callback__row {
  display: grid;
  max-width: 1280px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 81.875em) {
  .callback__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 81.875em) {
  .callback__image {
    display: none;
  }
}
.callback__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.callback__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.375rem 9.6875rem 3.375rem 3.75rem;
}
@media (max-width: 81.875em) {
  .callback__column {
    padding: 4.875rem 6.5625rem 4.875rem 6.5625rem;
  }
}
@media (max-width: 47.99875em) {
  .callback__column {
    padding: 4.875rem 1.25rem 4.875rem 1.25rem;
  }
}
.callback__title {
  font-size: 2.25rem;
  line-height: 1.1944444444;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  font-family: "MuseoSansCyrl";
}
@media (max-width: 47.99875em) {
  .callback__title {
    font-size: 1.625rem;
    line-height: 1.2307692308;
    margin-bottom: 1.25rem;
  }
}
.callback__info {
  margin-bottom: 1.875rem;
  color: #494c52;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
.callback__form {
  max-width: 403px;
}
.callback__name {
  margin-bottom: 0.625rem;
}
.callback__input {
  margin-bottom: 0.9375rem;
}
.callback__comment {
	color: #7f8387;
	font-size: 0.875rem;
	line-height: 1.2142857143;
	padding-top: 16px;
}
@media (max-width: 47.99875em) {
  .callback__comment {
    font-size: 0.75rem;
    line-height: 1.1666666667;
  }
}
.callback__btn {
  margin-top: 3.125rem;
}

.modal {
  display: none;
}
@media (min-width: 61.99875em) {
  .modal {
    box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(100px);
  }
}

.sended {
  max-width: 62.5rem;
  padding: 4.375rem 7.3125rem;
}
@media (max-width: 63.75em) {
  .sended {
    padding: 4.375rem 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .sended {
    padding: 4.375rem 1.25rem;
  }
}
.sended__title {
  text-align: center;
  font-size: 2.25rem;
  line-height: 1.1944444444;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.875rem;
  font-family: "MuseoSansCyrl";
}
@media (max-width: 61.99875em) {
  .sended__title {
    font-size: 2rem;
    line-height: 1.1875;
  }
}
@media (max-width: 47.99875em) {
  .sended__title {
    font-size: 1.625rem;
    line-height: 1.1428571429;
  }
}
.sended__info {
  margin-bottom: 3.125rem;
  text-align: center;
  color: var(--black);
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media (max-width: 47.99875em) {
  .sended__info {
    font-size: 1rem;
    line-height: 1.1875;
    margin-bottom: 1.875rem;
  }
}
.sended__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.125rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .sended__row {
    gap: 0.875rem;
  }
}
@media (max-width: 47.99875em) {
  .sended__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 29.99875em) {
  .sended__row {
    grid-template-columns: 1fr;
  }
}
.sended .interesting__slide {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
@media (max-width: 47.99875em) {
  .sended .interesting__slide:nth-child(3) {
    display: none;
  }
}
@media (max-width: 29.99875em) {
  .sended .interesting__slide:nth-child(2) {
    display: none;
  }
}
.sended__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sended__media li:not(:last-child) {
  margin-right: 1.25rem;
}
.sended__media li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  width: 2.25rem;
  padding: 0.3125rem;
  transition: all 0.3s ease 0s;
  border-radius: 50%;
  border: 2px solid var(--darkGray);
  box-shadow: 0px 10px 30px rgba(53, 53, 53, 0.25);
}
.sended__media li a:hover {
  opacity: 0.8;
}
.sended__media li a img {
  max-width: 100%;
  max-height: 100%;
}

.success__body {
  max-width: 43.75rem;
  padding: 5.9375rem 6.5625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .success__body {
    padding: 5.9375rem 6.5625rem;
  }
}
@media (max-width: 47.99875em) {
  .success__body {
    padding: 5.9375rem 1.25rem;
  }
}
.success__title {
  text-align: center;
  color: var(--black);
  font-size: 2.25rem;
  line-height: 1.1944444444;
  text-transform: uppercase;
  font-family: "MuseoSansCyrl";
  margin-bottom: 3.125rem;
}
@media (max-width: 47.99875em) {
  .success__title {
    font-size: 1.625rem;
    line-height: 1.2307692308;
    margin-bottom: 2.5rem;
  }
}
.success__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 4.375rem;
}
.success__img img {
  max-width: 100%;
  max-height: 100%;
}
.success__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancybox-close-small {
  opacity: 1 !important;
}
.fancybox-close-small svg {
  opacity: 1;
}
.fancybox-close-small svg path {
  fill: var(--black) !important;
}

.services .main__container-image::before {
  z-index: 0;
}

.services .main__container-image img {
  position: relative;
  z-index: 1;
}

.main__content.main-small {
  padding-bottom: 2.5rem;
}

.iwant {
  margin-bottom: 8.125rem;
}
.iwant__subtitle {
  margin-bottom: 3.125rem;
  font-size: 2.25rem;
  line-height: 1.2777777778;
  text-transform: uppercase;
  font-family: "MuseoSansCyrl";
}
@media (max-width: 61.99875em) {
  .iwant__subtitle {
    font-size: 2rem;
    line-height: 1.3125;
  }
}
@media (max-width: 47.99875em) {
  .iwant__subtitle {
    font-size: 1.625rem;
    line-height: 1.2692307692;
    margin-bottom: 1.875rem;
  }
}
.iwant__title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6rem;
  line-height: 1.3645833333;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  .iwant__title {
    font-size: 5rem;
    line-height: 1.3625;
  }
  .iwant__title span {
    font-size: 2rem;
    line-height: 1.1875;
    display: block;
  }
}
@media (max-width: 47.99875em) {
  .iwant__title {
    font-size: 3.375rem;
    line-height: 1.3703703704;
  }
  .iwant__title span {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}
.iwant__info {
  max-width: 52.25rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.1666666667;
  margin-bottom: 3.125rem;
}
@media (max-width: 47.99875em) {
  .iwant__info {
    font-size: 1rem;
    line-height: 1.1875;
    margin-bottom: 1.875rem;
  }
}
.iwant-tabs__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .iwant-tabs__navigation {
    flex-wrap: wrap;
    gap: 1.125rem;
  }
}
.iwant-tabs__navigation button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9375rem 1.875rem;
  font-size: 1.125rem;
  line-height: 1.1666666667;
  color: var(--darkGray);
  border: 1px solid var(--darkGray);
  transition: all 0.3s ease 0s;
  filter: drop-shadow(-20px -20px 80px rgba(208, 223, 227, 0.2)) drop-shadow(20px 20px 50px rgba(208, 223, 227, 0.2));
}
.iwant-tabs__navigation button:not(:last-child) {
  margin-right: 1.875rem;
}

.iwant-tabs__navigation button._tab-active {
  background: var(--darkGray);
  color: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  border: 1px solid var(--darkGray) !important;
}
@media (max-width: 61.99875em) {
  .iwant-tabs__navigation button {
    padding: 0.9375rem 1.125rem;
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
  .iwant-tabs__navigation button:not(:last-child) {
    margin-right: 0.625rem;
  }
}
@media (max-width: 47.99875em) {
  .iwant-tabs__navigation button {
    font-size: 0.75rem;
    line-height: 1.1666666667;
    padding: 0.625rem;
  }
  .iwant-tabs__navigation button:not(:last-child) {
    margin-right: 0rem;
  }
}
.iwant-tabs__body {
  margin-top: 3.125rem;
}
.iwant-tabs__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem 10.625rem;
  font-size: 1rem;
  line-height: 1.1875;
  color: var(--darkGray);
}
@media (max-width: 81.875em) {
  .iwant-tabs__list {
    gap: 1.25rem 6.25rem;
  }
}
@media (max-width: 61.99875em) {
  .iwant-tabs__list {
    gap: 1.25rem 1.875rem;
  }
}
.iwant-tabs__list li:hover {
  text-decoration: underline;
}
@media (max-width: 47.99875em) {
  .iwant-tabs__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 29.99875em) {
  .iwant-tabs__list {
    grid-template-columns: 1fr;
  }
}

.form__item-textarea textarea {
  height: 6.25rem;
}

.how__title {
  margin-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-size: 12em;
}
.how__title span {
  line-height: 1;
  display: block;
  margin-left: -3.125rem;
  text-align: center;
}
.how__row img {
  margin-left: 3.125rem;
}
.how__row p:not(:last-child) {
  margin-bottom: 1.875rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  padding: 1.875rem 4.375rem;
  border-bottom: 1px solid #c9c9c9;
}
@media (max-width: 61.99875em) {
  .footer__top {
    padding: 1.875rem 1.875rem;
    gap: 6.8125rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__top {
    flex-direction: column;
    gap: 1.875rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 47.99875em) {
  .footer__top {
    padding: 1.875rem 0rem;
	grid-template-columns: 1fr;
  }
}
.footer__top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .footer__top-item {
    flex-direction: row;
  }
}
.footer__center {
  flex: 1 1;
  padding: 0px 10.9375rem;
}
@media (max-width: 81.875em) {
  .footer__center {
    padding: 0px 4.6875rem;
    max-width: 33.625rem;
  }
}
@media (max-width: 61.99875em) {
  .footer__center {
    padding: 0px 2.25rem;
    flex: 0 0 18rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__center {
    flex: 1 1 auto;
    padding: 0px 0px 0px 0px;
    margin-top: 1.875rem;
    order: 3;
  }
}
.footer__social-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .footer__social-top {
    flex-direction: column;
  }
}
.footer__social-name {
  display: flex;
  flex-direction: column;
}
@media (max-width: 61.99875em) {
  .footer__social-name {
    margin-bottom: 1.25rem;
  }
}
.footer__social-title {
  color: var(--black);
  font-size: 1.125rem;
  line-height: 1.2222222222;
  margin-bottom: 0.3125rem;
  font-weight: 500;
}
.footer__social-info {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 500;
}
.footer__social-images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.6875rem;
}
@media (max-width: 61.99875em) {
  .footer__social-images {
    gap: 1rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .footer__social-images {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__social-img img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .footer__social-img:nth-child(2n+1) {
    display: none;
  }
}
.footer__top-icon {
  margin-bottom: 1.25rem;
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.75rem;
  background: var(--darkGray);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .footer__top-icon {
    margin-bottom: 0rem;
    margin-right: 0.625rem;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0.375rem;
  }
  .footer__top-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.footer__top-info {
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 61.99875em) {
  .footer__top-info {
    font-size: 1rem;
    line-height: 1.1875;
  }
}
.footer__row {
  display: flex;
  padding-top: 2.625rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #c9c9c9;
}
@media (max-width: 61.99875em) {
  .footer__row {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 47.99875em) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__logo {
  padding-left: 2.5625rem;
}
@media (max-width: 81.875em) {
  .footer__logo {
    margin-right: 0rem;
  }
}
@media (max-width: 61.99875em) {
  .footer__logo {
    padding-left: 0rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__logo img {
    max-width: 7.8125rem;
  }
}
.footer__nav {
  padding-right: 3.875rem;
}
@media (max-width: 61.99875em) {
  .footer__nav {
    padding: 0px 0rem;
  }
}
.footer__nav ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2222222222;
}
@media (max-width: 61.99875em) {
  .footer__nav ul {
    justify-content: flex-start;
    gap: 0.625rem 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__nav ul {
    font-size: 1rem;
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 2.5rem;
    flex-direction: column;
  }
}
.footer__right {
  grid-area: bottom;
}
@media (max-width: 61.99875em) {
  .footer__right {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 47.99875em) {
  .footer__right {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.footer__media {
  margin-bottom: 2.5rem;
  margin-top: 4.8125rem;
}
@media (max-width: 61.99875em) {
  .footer__media {
    margin-bottom: 0rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 47.99875em) {
  .footer__media {
    margin-bottom: 0rem;
    margin-top: 1.875rem;
    justify-content: flex-start !important;
  }
}
.footer__payment {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .footer__payment {
    margin-top: 2.5rem;
  }
}
.footer__payment li:not(:last-child) {
  margin-right: 1.25rem;
}
@media (max-width: 47.99875em) {
  .footer__payment {
    justify-content: flex-start;
  }
}
.footer__callback {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .footer__callback {
    justify-content: flex-start;
  }
}
.footer__bottom {
  margin: 1.875rem 0px;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--black);
  line-height: 1.2142857143;
}
@media (max-width: 47.99875em) {
  .footer__bottom {
    justify-content: flex-start;
  }
}
@media (max-width: 47.99875em) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.875rem;
    text-align: center;
  }
}
.footer__politic {
	display: flex;
	flex-flow: row wrap;
	gap: 30px;
}
@media (max-width: 1200px) {
	.footer__politic {
		flex-flow: column wrap;
		align-items: flex-end;
		gap: 10px;
	}
}
@media (max-width: 991px) {
	.footer__bottom {
		margin: 1.875rem 0px calc(1.875rem + 72px);
	}
}
@media (max-width: 767px) {
	.footer__politic {
		align-items: center;
	}
}

.media-block {
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-block li:not(:last-child) {
  margin-right: 1.25rem;
}
.media-block li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.25rem;
  width: 2.25rem;
  padding: 0.3125rem;
  transition: all 0.3s ease 0s;
  border-radius: 50%;
  border: 2px solid var(--darkGray);
  box-shadow: 0px 10px 30px rgba(53, 53, 53, 0.25);
}
.media-block li a:hover {
  opacity: 0.8;
}
.media-block li a img {
  max-width: 100%;
  max-height: 100%;
}

.cards__slide-title {
  font-size: 1.125rem;
}

.decore03 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.main-decore {
  pointer-events: none;
}

.reviewBody {
  margin-bottom: 8.125rem;
}

.review {
  background: #fefefe;
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  padding: 3.125rem 7.5rem;
  max-width: 66.125rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 61.99875em) {
  .review {
    padding: 3.125rem 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .review {
    padding: 3.125rem 1.25rem;
  }
}
.review__title {
  text-align: center;
  font-size: 2.25rem;
  line-height: 1.2777777778;
  font-family: "MuseoSansCyrl";
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}
@media (max-width: 61.99875em) {
  .review__title {
    font-size: 2rem;
    line-height: 1.1875;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .review__title {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}
.review__info {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 3.125rem;
  line-height: 1.2777777778;
}
@media (max-width: 61.99875em) {
  .review__info {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .review__info {
    padding: 0 0.625rem;
  }
}
@media (max-width: 47.99875em) {
  .review__info {
    font-size: 1rem;
    line-height: 1.3125;
  }
}
.review__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.875rem;
}
@media (max-width: 61.99875em) {
  .review__body {
    flex-direction: column;
  }
}
.review__input {
  flex: 0 0 282px;
}
@media (max-width: 61.99875em) {
  .review__input {
    flex: 0 0 auto;
    order: 2;
  }
}

.review__rating {
  display: flex;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .review__rating {
    order: 0;
  }
}
.review__rating .rating__items {
  gap: 4px;
}
.review__rating-title {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--black);
  margin-right: 1.25rem;
  margin-top: 0.3125rem;
}
.review__file {
  flex: 1 1 auto;
}
@media (max-width: 61.99875em) {
  .review__file {
    order: 1;
  }
}
.review__textarea {
  width: 100%;
  flex: 0 0 100%;
}
.review__textarea textarea {
  width: 100%;
  height: 9.375rem;
  overflow: auto;
}
@media (max-width: 61.99875em) {
  .review__textarea {
    order: 3;
  }
}
.review__comment {
  color: var(--black);
  font-size: 0.75rem;
  line-height: 1.25;
  margin-bottom: 1.875rem;
}
.review__comment a {
  text-decoration: underline;
}
.review__comment a:hover {
  text-decoration: none;
}
._file {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
._file input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

._file-icon {
  margin-right: 0.6875rem;
}

._file-name {
  font-size: 1rem;
  line-height: 1.1875;
  color: var(--darkGray);
  padding-right: 0.625rem;
}

._file-remove {
  opacity: 1;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
}
._file-remove img {
  width: 0.625rem;
  height: 0.625rem;
}
._file-remove._active {
  visibility: visible;
  opacity: 0.7;
}

.reviews {
  margin-bottom: 8.125rem;
}
.reviews__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
  margin-bottom: 3.125rem;
}
.reviews__column {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  background: var(--white);
  display: flex;
  padding: 1.875rem 2.5rem;
}
@media (max-width: 47.99875em) {
  .reviews__column {
    flex-direction: column;
  }
}
@media (max-width: 61.99875em) {
  .reviews__column {
    padding: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .reviews__column {
    padding: 1.25rem;
  }
}
.reviews__author {
  padding-right: 1.875rem;
  border-right: 1px solid var(--darkGray);
  margin-right: 1.25rem;
  flex: 0 0 150px;
  position: relative;
}
@media (max-width: 47.99875em) {
  .reviews__author {
    flex: 0 0 auto;
    padding-bottom: 1.3125rem;
    margin-right: 0rem;
    padding-right: 0rem;
    border-right: 0px solid var(--darkGray);
    border-bottom: 1px solid var(--darkGray);
    margin-bottom: 1.25rem;
  }
}
.reviews__name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2777777778;
  color: var(--black);
  margin-bottom: 0.625rem;
}
.reviews__date {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.2857142857;
  color: var(--darkGray);
}
@media (max-width: 47.99875em) {
  .reviews__rating {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.reviews__rating .rating {
  font-size: 1.5625rem;
}
.reviews__rating .rating .rating__items {
  gap: 2px;
}
.reviews__text {
  font-size: 1rem;
  line-height: 1.1666666667;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.reviews__link {
  text-decoration: underline;
  color: var(--darkGray);
  font-size: 0.875rem;
  line-height: 1.2857142857;
}
.reviews__link:hover {
  text-decoration: none;
}
.reviews__showmore {
  margin-bottom: 1.875rem;
}
._showmore {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
._showmore button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: var(--black);
  font-size: 0.875rem;
  line-height: 1.2857142857;
  border: 1px solid #dbdbdb;
  width: 100%;
  transition: all 0.3s ease 0s;
}
._showmore button:hover {
  color: var(--blue);
}
._showmore button:active {
  border: 1px solid var(--blue);
}

._pagg {
  display: grid;
}
._pagg ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
._pagg ul li {
  font-size: 1.125rem;
  line-height: 1.2222222222;
  color: var(--black);
}
._pagg ul li a,
._pagg ul li span {
  transition: all 0.3s ease 0s;
  padding: 10px;
  min-width: 3rem;
  min-height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
._pagg ul li a:hover,
._pagg ul li span:hover {
  color: var(--blue);
}
@media (max-width: 47.99875em) {
  ._pagg ul li a,
  ._pagg ul li span {
    min-width: 2.0625rem;
    min-height: 2.0625rem;
    padding: 0.3125rem;
    font-size: 1rem;
  }
}

._pagg-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex: 0 0 2.8125rem;
  height: 2.8125rem;
  margin-right: 2.0625rem;
}
@media (max-width: 47.99875em) {
  ._pagg-prev {
    margin-right: 0.9375rem !important;
  }
  ._pagg-prev img {
    width: 0.4375rem;
  }
}

._pagg-active {
  color: var(--blue) !important;
  border: 1px solid var(--blue);
  font-weight: 700;
}

._pagg-next {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex: 0 0 2.8125rem;
  height: 2.8125rem;
  margin-left: 2.0625rem;
}
._pagg-next img {
  transform: rotate(180deg);
}
@media (max-width: 47.99875em) {
  ._pagg-next {
    margin-left: 0.9375rem !important;
  }
  ._pagg-next img {
    width: 0.4375rem;
  }
}

.form-black {
  position: relative;
  background: var(--gray);
  padding: 8.125rem 0px !important;
}
.form-black .form__container {
  position: relative;
  z-index: 2;
}

._subtitle {
  font-size: 2.25rem;
  line-height: 130%;
  color: var(--black);
  text-transform: uppercase;
  font-family: "MuseoSansCyrl";
}

.blockTitle {
  margin-bottom: 3.125rem !important;
}
@media (max-width: 47.99875em) {
  .blockTitle {
    margin-bottom: 1.25rem !important;
  }
}
@media (max-width: 61.99875em) {
  .blockTitle .blockTitle__title {
    font-size: 2rem;
    line-height: 1.1875;
  }
}
@media (max-width: 47.99875em) {
  .blockTitle .blockTitle__title {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}
.blockTitle .blockTitle__subtitle {
  margin-top: 3.125rem;
  max-width: 48.5rem;
}
@media (max-width: 61.99875em) {
  .blockTitle .blockTitle__subtitle {
    margin-top: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .blockTitle .blockTitle__subtitle {
    font-size: 1rem;
    margin-top: 1.25rem;
    line-height: 1.3125;
  }
}

.error {
  background: url("../img/err.png") -10vw 0/cover no-repeat !important;
}
@media (max-width: 61.99875em) {
  .error {
    min-height: 351px !important;
  }
}
@media (min-width: 120em) {
  .error {
    background: url("../img/err.png") 0vw 0/cover no-repeat !important;
  }
}
@media (max-width: 100em) {
  .error {
    background: url("../img/err.png") -20vw 0/cover no-repeat !important;
  }
}
@media (max-width: 61.99875em) {
  .error {
    background: url("../img/err.png") 0px 0/cover no-repeat !important;
  }
}
@media (max-width: 50em) {
  .error {
    background: url("../img/err.png") -50px 0/cover no-repeat !important;
  }
}
@media (max-width: 47.99875em) {
  .error {
    background: url("../img/err.png") -1100px 0 no-repeat !important;
  }
}
.error__container {
  min-height: calc(100vh - 6.875rem);
}
@media (max-width: 61.99875em) {
  .error__container {
    min-height: 351px;
  }
}
.error__row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: calc(100vh - 6.875rem);
}
@media (max-width: 61.99875em) {
  .error__row {
    min-height: 351px;
  }
}
@media (max-width: 47.99875em) {
  .error__row {
    justify-content: flex-start;
    width: 100%;
  }
}
.error__column {
  max-width: 33.9375rem;
}
@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .error__column {
    max-width: 302px;
  }
}
@media (max-width: 47.99875em) {
  .error__column {
    max-width: 100%;
    width: 100%;
  }
}
.error__title {
  font-size: 12.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5625rem;
  color: var(--white);
}
@media (max-width: 61.99875em) {
  .error__title {
    font-size: 4rem;
    line-height: 1.1875;
    margin-bottom: 1.25rem;
  }
}
.error__subtitle {
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .error__subtitle {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.625rem;
  }
}
.error__text {
  font-size: 1.125rem;
  line-height: 1.2777777778;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .error__text {
    margin-bottom: 1.875rem;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.reviewBody {
  min-height: 0 !important;
}

@media (max-width: 81.875em) {
  .pass {
    margin: 5rem 0;
    padding: 3.125rem 1.875rem !important;
  }
}
@media (max-width: 81.875em) and (max-width: 61.99875em) {
  .pass .review__title {
    font-size: 2.25rem;
    line-height: 1.0555555556;
  }
}
@media (max-width: 47.99875em) {
  .pass {
    padding: 3.125rem 1.25rem !important;
  }
  .pass .review__title {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}
.pass__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem 3.125rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .pass__body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.pass__name {
  font-size: 1rem;
  line-height: 1.1875;
  color: var(--black);
  margin-bottom: 0.625rem;
}
.pass .review__btn {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pass .pass__chk .checkbox__text {
  font-size: 0.75rem;
  line-height: 1.1666666667;
  color: var(--black);
}
.pass .pass__chk .checkbox__text a:hover {
  text-decoration: underline;
}

input[type=date] {
  position: relative;
}
input[type=date]::before {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  width: 3.125rem;
  height: calc(100% - 2px);
  z-index: 2;
  pointer-events: none;
  background: #fff url("../img/date.svg") center center no-repeat;
}

.review.pass {
  max-width: 100%;
  width: 100%;
  padding: 3.125rem 13.875rem;
}

.form-black .form__title {
  font-size: 2.25rem;
  line-height: 130%;
  margin-bottom: 3.125rem;
}

.contacts {
  margin-bottom: 8.125rem;
}
.contacts__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .contacts__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 61.99875em) {
  .contacts__row {
    margin-bottom: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  .contacts__row {
    margin-bottom: 3.125rem;
  }
}
.contacts__column {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  background: var(--white);
  padding: 3.125rem;
}
@media (max-width: 47.99875em) {
  .contacts__column {
    padding: 3.125rem 1.25rem;
  }
}
.contacts__title {
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .contacts__title {
    font-size: 1.5rem;
    line-height: 1.2083333333;
  }
}
.contacts__name {
  margin-bottom: 0.6875rem;
  margin-top: 0.625rem;
  color: var(--darkGray);
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media (max-width: 47.99875em) {
  .contacts__name {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.contacts__info {
  color: var(--black);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
@media (max-width: 47.99875em) {
  .contacts__info {
    font-size: 1rem;
    line-height: 1.1875;
  }
}
.contacts__media {
  justify-content: flex-start;
}

.map {
  width: 100%;
  height: 36.875rem;
}
@media (max-width: 47.99875em) {
  .map {
    height: 26.5625rem;
  }
}

#map {
  width: 100%;
  height: 36.875rem;
}
@media (max-width: 47.99875em) {
  #map {
    height: 26.5625rem;
  }
}

.ymaps-2-1-79-controls__control_toolbar,
.ymaps-2-1-79-controls__control,
.ymaps-2-1-79-map-copyrights-promo,
.ymaps-2-1-79-copyright__content-cell {
  display: none !important;
}

.ymaps-2-1-79-ground-pane {
  filter: grayscale(100%) !important;
}

.blog {
  margin-bottom: 8.125rem;
}
.blog__sel {
  margin-bottom: 3.125rem;
}
.blog__sel .select {
  max-width: 20.8125rem;
}
@media (max-width: 29.99875em) {
  .blog__sel .select {
    max-width: 100%;
  }
}
.blog__row {
  margin-bottom: 3.125rem;
  display: grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .blog__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.99875em) {
  .blog__row {
    grid-template-columns: 1fr;
  }
}
.blog__row .interesting__slide {
  background: #fefefe;
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.blog__row .interesting__slide .interesting__slide-content {
  padding: 1.875rem;
}
.blog__showmore {
  margin-bottom: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog__showmore button {
  max-width: 836px;
}

.stock-smart .smart__container h2 {
  transform: translateY(-20px);
  line-height: 0.7;
}
.stock-smart .smart__container h2 span {
  margin-left: 16.0625rem;
  display: block;
  transform: translateY(0px);
}
.stock-smart .smart__container .smart__items {
  margin-top: 1.25rem;
}
.powerpage {
  margin-bottom: 8.125rem;
}
.powerpage__row {
  display: grid;
  grid-template-columns: 393px auto;
  grid-template-rows: 1fr;
  gap: 3.125rem;
}
@media (max-width: 47.99875em) {
  .powerpage__row {
    gap: 1.875rem;
  }
}
@media (min-width: 61.99875em) {
  .powerpage__row {
    grid-template-areas: "sidebar main";
  }
}
@media (max-width: 61.99875em) {
  .powerpage__row {
    grid-template-columns: 1fr;
  }
}
.powerpage__aside {
  position: relative;
}
@media (min-width: 61.99875em) {
  .powerpage__aside {
    grid-area: sidebar;
  }
}
.powerpage .powerpage__aside-title {
  position: relative;
}
.powerpage__aside-inner {
  background: #ffffff;
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  padding: 1.875rem 1.25rem;
  width: 24.5625rem !important;
  max-height: calc(100vh - 40px);
  overflow: auto;
}
@media (max-width: 61.99875em) {
  .powerpage__aside-inner {
    position: initial !important;
    max-height: 100%;
    width: auto !important;
  }
}
@media (max-width: 61.99875em) {
  .powerpage__aside-inner {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 61.99875em) {
  .powerpage .powerpage__aside-hide {
    display: none;
  }
}
@media (max-width: 61.99875em) {
  .powerpage .powerpage__aside-hide {
    position: absolute;
    right: 0;
    transform: rotate(90deg);
    top: 0;
    transition: transform 0.3s ease 0s;
  }
  .powerpage .powerpage__aside-hide._active {
    transform: rotate(-90deg);
  }
}
.powerpage__aside-title {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  color: var(--black);
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .powerpage__aside-title {
    font-size: 1rem;
  }
}
.powerpage__aside-body {
  text-decoration: underline;
}
.powerpage__aside-link {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .powerpage__aside-link {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
}
.powerpage__aside-item {
  margin-bottom: 1.25rem;
}
.powerpage__aside-item .spollers__title {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: none;
  font-weight: 400;
  font-family: "PT";
}
@media (max-width: 47.99875em) {
  .powerpage__aside-item .spollers__title {
    font-size: 1rem;
  }
}
.powerpage__aside-item .spollers__title svg {
  width: 0.75rem;
  height: 0.4375rem;
}
.powerpage__aside-item .spollers__body {
  padding-top: 1.25rem;
}
@media (max-width: 47.99875em) {
  .powerpage__aside-item .spollers__body {
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .powerpage__aside-item {
    margin-bottom: 0.625rem;
  }
}
.powerpage__body {
  color: #494c52;
}
@media (min-width: 61.99875em) {
  .powerpage__body {
    grid-area: main;
  }
}
.powerpage__body p {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .powerpage__body p {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 1.875rem;
  }
}
.powerpage__body h3 {
  color: #494c52;
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 1.2777777778;
  margin-bottom: 1.875rem;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .powerpage__body h3 {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
  }
}
.powerpage__body blockquote {
  margin-bottom: 3.125rem;
  padding: 1.875rem;
  background: #ffffff;
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
@media (max-width: 47.99875em) {
  .powerpage__body blockquote {
    margin-bottom: 1.875rem;
  }
}
.powerpage__body blockquote p {
  margin: 0px 0px 0px 0px;
}
.powerpage__body blockquote strong {
  font-family: "MuseoSansCyrl";
  color: var(--blue);
  font-size: 1.125rem;
  line-height: 130%;
  margin-right: 0.3125rem;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .powerpage__body blockquote strong {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .powerpage__body blockquote {
    padding: 1.25rem;
  }
}
.powerpage__body ol {
  margin-bottom: 1.875rem;
  list-style-position: inside;
}
.powerpage__body ol.bold li::before {
  font-weight: 700;
}
.powerpage__body ol li {
  padding-bottom: 0 !important;
}
.powerpage__body ol li:not(:last-child) {
  margin-bottom: 10px;
}
.powerpage__body ol li p {
  display: inline-block;
  margin-bottom: 0rem;
}
.powerpage__body ul {
  margin-bottom: 1.875rem;
}
.powerpage__body ul li {
  padding-left: 1.5625rem;
  position: relative;
}
.powerpage__body ul li::before {
  content: "";
  width: 1rem;
  height: 0.0625rem;
  background: var(--black);
  top: 0.625rem;
  position: absolute;
  left: 0;
}
.powerpage__body ul li:not(:last-child) {
  margin-bottom: 10px;
}
.powerpage__body ul li p {
  display: inline-block;
  margin-bottom: 0rem;
}
.powerpage__body iframe {
  margin-bottom: 3.125rem;
  width: 100%;
  height: 32.625rem;
}
@media (max-width: 61.99875em) {
  .powerpage__body iframe {
    height: 24.8125rem;
  }
}
@media (max-width: 29.99875em) {
  .powerpage__body iframe {
    height: 12.0625rem;
  }
}

.aboutDecor01,
.aboutDecor01 {
  opacity: 0.6;
}

.serviceAbout.powerpage-table {
  position: relative;
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table {
    padding-top: 3.125rem !important;
    padding-bottom: 5rem !important;
    background: #6f6f6f;
  }
}
.serviceAbout.powerpage-table .about__title {
  color: var(--white);
  text-align: center;
}
.serviceAbout.powerpage-table .about__title span {
  display: inline-block;
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table .about__title {
    font-size: 5rem;
    line-height: 1.3625;
  }
  .serviceAbout.powerpage-table .about__title span {
    font-size: 2rem;
    line-height: 1.1875;
    transform: translateY(5px);
    padding-left: 0.625rem;
  }
}
@media (max-width: 47.99875em) {
  .serviceAbout.powerpage-table .about__title {
    font-size: 3.375rem;
    line-height: 1.3518518519;
  }
  .serviceAbout.powerpage-table .about__title span {
    font-size: 1.5rem;
    line-height: 1.1666666667;
    transform: translateY(3px);
    padding-left: 0rem;
  }
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table .about__table-spollers {
    padding: 3.125rem 1.25rem !important;
  }
}
@media (max-width: 47.99875em) {
  .serviceAbout.powerpage-table .about__table-spollers {
    padding: 1.875rem 1.25rem !important;
  }
}
.serviceAbout.powerpage-table .aboutDecor01 {
  display: block;
  top: 0;
  left: 0;
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table .aboutDecor01 img {
    transform: translateX(-40%);
    max-width: 869px;
    max-height: 690px;
  }
}
@media (max-width: 29.99875em) {
  .serviceAbout.powerpage-table .aboutDecor01 img {
    max-width: 360px;
    max-height: 253px;
    transform: translateX(-30%);
  }
}
.serviceAbout.powerpage-table .aboutDecor02 {
  display: block;
  bottom: 0;
  right: 0;
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table .aboutDecor02 img {
    transform: translateX(50%);
    max-width: 583px;
    max-height: 586px;
  }
}
@media (max-width: 29.99875em) {
  .serviceAbout.powerpage-table .aboutDecor02 img {
    max-width: 295px;
    max-height: 301px;
    transform: translateX(30%);
  }
}
.serviceAbout.powerpage-table .about__table-item {
  padding-bottom: 3.125rem;
  border-bottom: 1px solid var(--darkGray);
}
.serviceAbout.powerpage-table .about__table-item:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table .about__table-item {
    justify-content: space-between;
  }
  .serviceAbout.powerpage-table .about__table-item .about__table-title {
    flex: 1 1 auto;
  }
}
@media (max-width: 47.99875em) {
  .serviceAbout.powerpage-table .about__table-item {
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .serviceAbout.powerpage-table .about__table-item .about__table-price {
    flex: 0 0 auto;
  }
  .serviceAbout.powerpage-table .about__table-item .about__table-time {
    flex: 0 0 auto;
  }
}
.serviceAbout.powerpage-table .about__table-spollers {
  border: none;
  padding-bottom: 0;
  padding-top: 0;
}
.serviceAbout.powerpage-table .about__table-info {
  gap: 10rem;
}
@media (max-width: 61.99875em) {
  .serviceAbout.powerpage-table .about__table-info {
    gap: 3.625rem;
  }
}
@media (max-width: 47.99875em) {
  .serviceAbout.powerpage-table .about__table-info {
    gap: 1.375rem !important;
  }
}
.serviceAbout.powerpage-table .about__table-title {
  font-family: "MuseoSansCyrl";
  text-transform: uppercase;
}

.smartPrice__img img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 61.99875em) {
  .smartPrice .smart__container .smartPrice__inner {
    grid-template-columns: 1fr;
  }
  .smartPrice .smart__container .smartPrice__inner .smart__title h2 {
    font-size: 5rem;
    line-height: 1.375;
  }
  .smartPrice .smart__container .smartPrice__inner .smart__title h2 span {
    font-size: 2rem;
    line-height: 1.1875;
    padding-left: 13.5625rem;
  }
}
@media (max-width: 47.99875em) {
  .smartPrice .smart__items {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .smartPrice .smart__items .smart__item:nth-child(2) {
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
  }

  .smartPrice .smart__container .smartPrice__inner {
    gap: 1.25rem;
  }
  .smartPrice .smart__container .smartPrice__inner .smart__title h2 {
    font-size: 3.375rem;
    line-height: 1.3518518519;
  }
  .smartPrice .smart__container .smartPrice__inner .smart__title h2 span {
    font-size: 1.625rem;
    line-height: 1.1923076923;
    padding-left: 9.125rem;
  }
}
@media (max-width: 29.99875em) {
  .about__title-adapt {
    text-align: left !important;
    line-height: 0.6851851852;
  }
  .about__title-adapt span {
    text-align: right !important;
    display: block;
    padding-right: 2.5rem;
  }
}

@media (max-width: 81.875em) {
  .formImage .formImage__row {
    grid-template-columns: 1fr;
  }
  .formImage .formImage__column {
    max-width: 100%;
  }
  .formImage .formImage__column:first-child {
    display: none;
  }
  .formImage .formImage__form {
    max-width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-right: 0;
  }
}
@media (max-width: 61.99875em) {
  .formImage .formImage__form h2 {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media (max-width: 47.99875em) {
  .formImage .formImage__form h2 {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
  .formImage .formImage__form .formImage__text {
    font-size: 1rem;
    line-height: 1.1875;
    text-align: center;
  }
}

@media (max-width: 81.875em) {
  .rejuvenation .rejuvenation__inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .rejuvenation .rejuvenation__inner img {
    max-width: 100%;
  }
}
@media (max-width: 61.99875em) {
  .rejuvenation .rejuvenation__inner {
    display: flex;
    flex-direction: column;
  }
  .rejuvenation .rejuvenation__inner img,
  .rejuvenation .rejuvenation__inner iframe {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 61.99875em) {
  .rejuvenation .rejuvenation__block:nth-child(even) .rejuvenation__inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 61.99875em) {
  .rejuvenation .rejuvenation__advice {
    padding: 1.25rem 3.75rem 3.125rem;
  }
  .rejuvenation .rejuvenation__subtitle {
    font-size: 5rem;
    line-height: 1.3625;
  }
  .rejuvenation .rejuvenation__subtitle span {
    text-align: left;
    font-size: 2rem;
    line-height: 1.1875;
  }
}
@media (max-width: 47.99875em) {
  .rejuvenation .rejuvenation__text p {
    font-size: 1rem;
    line-height: 1.1875;
  }
  .rejuvenation .rejuvenation__title {
    font-size: 1rem;
    line-height: 1.1875;
  }
  .rejuvenation .rejuvenation__advice-title {
    font-size: 3rem;
    line-height: 1.4761904762;
  }
  .rejuvenation .rejuvenation__advice-title span {
    font-size: 1.25rem;
    line-height: 1.3;
  }
  .rejuvenation .rejuvenation__info-content p {
    font-size: 1rem;
    line-height: 1.1875;
  }
  .rejuvenation .rejuvenation__info {
    padding: 1.875rem 1.25rem;
  }
  .rejuvenation .rejuvenation__block {
    margin-top: 1.875rem;
  }
  .rejuvenation .rejuvenation__advice {
    padding: 1.875rem 1.25rem;
  }
  .rejuvenation .rejuvenation__subtitle {
    font-size: 3rem;
    line-height: 1.3541666667;
  }
  .rejuvenation .rejuvenation__subtitle span {
    text-align: left;
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}

@media (max-width: 61.99875em) {
  .form.formTwo .form__title {
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media (max-width: 47.99875em) {
  .form.formTwo .form__title {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}
@media (max-width: 47.99875em) {
  .form.formTwo .form__text {
    font-size: 1.125rem;
    line-height: 130%;
    max-width: 100%;
  }
}

@media (max-width: 61.99875em) {
  .regulations__content {
    padding: 3.125rem 1.875rem !important;
  }
  .regulations__content .regulations__content-title {
    font-size: 2rem;
    line-height: 1.1875;
  }
  .regulations__content .item-regulationa__inner {
    align-items: center;
  }
  .regulations__content .item-regulationa__number {
    transform: none !important;
    flex: 0 0 2.625rem;
  }
}
@media (max-width: 61.99875em) {
  .regulations__content .regulations__content-items {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .regulations__content {
    gap: 1.875rem;
  }
  .regulations__content .item-regulationa__number {
    font-size: 3rem;
    line-height: 1.1875;
    flex: 0 0 1.75rem;
  }
  .regulations__content .item-regulationa__inner {
    gap: 0.625rem;
    align-items: center;
  }
  .regulations__content .item-regulationa__content {
    font-size: 1rem;
    line-height: 1.1875;
  }
  .regulations__content .regulations__content-link {
    padding: 0.875rem 0.625rem;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
  }
  .regulations__content .regulations__content-link span {
    display: none;
  }
  .regulations__content .regulations__content-title {
    font-size: 1.625rem;
    line-height: 1.1923076923;
    margin-bottom: 1.25rem;
  }
  .regulations__content .regulations__content-text {
    font-size: 1rem;
    line-height: 1.25;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 29.99875em) {
  .regulations__content {
    padding: 3.125rem 1.25rem !important;
  }
}

@media (max-width: 61.99875em) {
  .attendanceLoyalty .attendance__container h1 {
    font-size: 5rem !important;
  }
  .attendanceLoyalty .attendance__container h1 span {
    font-size: 2rem !important;
    line-height: 2.375rem !important;
  }
}
@media (max-width: 47.99875em) {
  .attendanceLoyalty .attendance__container h1 {
    font-size: 3.375rem !important;
  }
  .attendanceLoyalty .attendance__container h1 span {
    font-size: 1.625rem !important;
    line-height: 1.9375rem !important;
  }
}
@media (max-width: 29.99875em) {
  .attendanceLoyalty .attendance__container h1 span {
    display: block;
    text-align: right;
  }
}

.wrapper {
  position: relative;
}

@media (max-width: 47.99875em) {
  .attendanceLoyalty .attendance__info p:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 47.99875em) {
  .attendanceLoyalty .attendance__info {
    margin-bottom: 1.875rem !important;
  }
}

@media (max-width: 29.99875em) {
  .main__slide-items .tagline span {
    font-size: 2.3125rem !important;
  }
}

@media (max-width: 61.99875em) {
  .regulationsSertificate.regulations .regulations__title {
    font-size: 4.75rem !important;
  }
  .regulationsSertificate.regulations .regulations__title span {
    font-size: 2rem !important;
    line-height: 2.375rem !important;
  }
}
@media (max-width: 47.99875em) {
  .regulationsSertificate.regulations .regulations__title {
    font-size: 3.375rem !important;
    justify-content: flex-start !important;
    max-width: 100%;
    width: 100%;
    line-height: 50% !important;
  }
  .regulationsSertificate.regulations .regulations__title h2 {
    width: 100%;
  }
  .regulationsSertificate.regulations .regulations__title span {
    font-size: 1.625rem !important;
    line-height: 1.9375rem !important;
    display: block;
    text-align: right;
    width: 100%;
  }
}

@media (max-width: 29.99875em) {
  .regulationsSertificate.regulations .regulations__content {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media (max-width: 61.99875em) {
  .smart .smart__container .smart__inner {
    grid-template-columns: 1fr;
  }
}
.smart .smart__container .smart__inner .smart__title {
  line-height: 0.7;
}
@media (max-width: 61.99875em) {
  .smart .smart__container .smart__inner .smart__title {
    font-size: 5rem;
  }
  .smart .smart__container .smart__inner .smart__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .smart .smart__container .smart__inner .smart__title {
    font-size: 3.125rem;
  }
  .smart .smart__container .smart__inner .smart__title span {
    font-size: 1.5rem;
    line-height: 1.9375rem;
  }
}
.smart .smart__container .smart__inner p:not(:last-child) {
  margin-bottom: 20px;
}
.smart .smart__container .smart__inner img {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 47.99875em) {
  .smart .smart__container .smart__inner .smart__items {
    margin-top: 1.875rem;
  }
}
@media (max-width: 29.99875em) {
  .smart .smart__container .smart__inner .smart__items {
    flex-direction: column;
    align-items: flex-start;
  }
  .smart .smart__container .smart__inner .smart__items .smart__item:nth-child(2) {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 61.99875em) {
  ._link a {
    font-size: 0rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  ._link a::before {
    content: "К услуге";
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
  }
}
@media (max-width: 47.99875em) {
  ._link {
    position: initial !important;
    height: 0rem !important;
  }
  ._link a {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
}

@media (max-width: 61.99875em) {
  ._dlit {
    font-size: 0rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  ._dlit::before {
    content: "Длит.";
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
  }
}

@media (max-width: 61.99875em) {
  .cash .content-cash__items {
    gap: 1.875rem;
    justify-content: space-between;
    grid-template-rows: 1fr;
  }
}
@media (max-width: 47.99875em) {
  .cash .content-cash__items {
    position: relative;
    grid-template-columns: auto 67px;
  }
  .cash .content-cash__items .content-cash__item:not(:nth-child(-n+2)) {
    display: none;
  }
}

@media (max-width: 61.99875em) {
  .cash .checkbox__text {
    font-size: 1rem !important;
  }
}
@media (max-width: 47.99875em) {
  .cash .checkbox__text {
    font-size: 0.875rem !important;
  }
}

@media (max-width: 47.99875em) {
  .cash .checkbox__label {
    padding-left: 1.09375rem !important;
    padding-right: 1.09375rem !important;
  }
}

@media (max-width: 61.99875em) {
  .cash .cash__title {
    font-size: 2rem;
    line-height: 1.1875;
  }
}
@media (max-width: 47.99875em) {
  .cash .cash__title {
    font-size: 1.625rem;
    line-height: 1.1923076923;
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 47.99875em) {
  .cash .cash__column-title {
    font-size: 0.875rem;
  }
}

@media (max-width: 47.99875em) {
  .cash .cash__column {
    padding-left: 0;
    padding-right: 0;
  }
}

.main__swiper {
  display: flex;
}
.main__swiper .main__slide {
  flex: 0 0 100%;
  opacity: 0;
}
.main__swiper .swiper-slide-active {
  opacity: 1;
}

.specialist__img img {
  max-width: 100%;
}

.cards__slide-img {
  background: #fff;
}

@media (max-width: 61.99875em) {
  .specialist .specialist__container .specialist__inner {
    display: block;
  }
}
@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .specialist .specialist__container .specialist__inner .specialist__img {
    float: left;
    margin-right: 1.875rem;
  }
  .specialist .specialist__container .specialist__inner .specialist__img img {
    width: 339px;
  }
}
@media (max-width: 61.99875em) {
  .specialist .specialist__container .specialist__inner h1 {
    font-size: 2rem;
    line-height: 1.3125;
  }
}
@media (max-width: 61.99875em) {
  .specialist .specialist__container .specialist__inner p {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .specialist .specialist__container .specialist__inner ul {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 50em) and (min-width: 47.99875em) {
  .specialist .specialist__container .specialist__inner ul:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 47.99875em) {
  .specialist .specialist__container .specialist__inner {
    display: flex;
    flex-direction: column;
  }
  .specialist .specialist__container .specialist__inner .specialist__img {
    width: 100%;
  }
  .specialist .specialist__container .specialist__inner .specialist__img img {
    width: 100%;
  }
  .specialist .specialist__container .specialist__inner h1 {
    font-size: 1.625rem;
    line-height: 1.2692307692;
  }
  .specialist .specialist__container .specialist__inner p {
    font-size: 1rem;
  }
  .specialist .specialist__container .specialist__inner .specialist__items {
    display: flex;
    flex-direction: column;
  }
  .specialist .specialist__container .specialist__inner .specialist__items .specialist__item:last-child {
    text-align: right;
  }
}

@media (max-width: 47.99875em) {
  .blitz .blitz__container p {
    font-size: 1rem;
    line-height: 1.25;
  }
  .blitz .blitz__container .spollers__content-dop {
    font-size: 1rem;
    line-height: 1.25;
  }
  .blitz .blitz__container .spollers__content-dopUp {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.advantage .advantage__container .advantage__title h2 {
  font-family: "Antarctic";
  text-transform: none;
}
@media (max-width: 71.875em) {
  .advantage .advantage__container .advantage__inner {
    grid-template-columns: 1fr;
  }
  .advantage .advantage__container .advantage__title h2 {
    flex-direction: row;
  }
  .advantage .advantage__container .advantage__title span {
    display: inline-block;
    padding-left: 10px;
    transform: translateY(50px);
    line-height: 0.7;
  }
}
@media (max-width: 61.99875em) {
  .advantage .advantage__container .advantage__title {
    font-size: 3.75rem;
  }
  .advantage .advantage__container .advantage__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .advantage .advantage__container .advantage__title {
    margin-bottom: 0rem;
  }
  .advantage .advantage__container .advantage__title strong {
    font-size: 1rem;
    line-height: 130%;
  }
  .advantage .advantage__container .advantage__title h2 {
    font-size: 3.375rem !important;
    flex-direction: column;
  }
  .advantage .advantage__container .advantage__title span {
    font-size: 1.625rem;
    line-height: 1;
    display: block;
    padding-left: 16.25rem;
    transform: translateY(-30px);
  }
}
@media (max-width: 47.99875em) {
  .advantage .advantage__container blockquote {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    padding: 1.875rem 1.25rem 1.875rem 3.125rem;
  }
}
.advantage .advantage__container blockquote::before {
  content: "";
  background: url("../img/advantage/01.svg") 0 0/20px 17px no-repeat;
  left: 1.25rem;
  top: 1.4375rem;
}
@media (max-width: 47.99875em) {
  .advantage .advantage__container .advantage__videos {
    margin-bottom: 1.875rem;
  }
}

.advantage__container strong {
  font-weight: 400;
}

@media (max-width: 61.99875em) {
  .cases.casesSpecialist .cases__container .cases__subtitle h2 {
    font-size: 5rem;
  }
  .cases.casesSpecialist .cases__container .cases__subtitle h2 span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 31.25em) {
  .cases.casesSpecialist .cases__container .cases__subtitle h2 {
    font-size: 3.375rem;
    line-height: 0.7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .cases.casesSpecialist .cases__container .cases__subtitle h2 span {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    font-size: 1.625rem;
    line-height: 1.9375rem;
    width: 100%;
  }
}

@media (max-width: 61.99875em) {
  .blitz .blitz__container .blitz__title {
    font-size: 5rem;
  }
  .blitz .blitz__container .blitz__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .blitz .blitz__container .blitz__title {
    font-size: 3.375rem;
  }
  .blitz .blitz__container .blitz__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}

@media (max-width: 47.99875em) {
  ._mobile-hidden {
    display: none !important;
  }
}

@media (max-width: 29.99875em) and (min-width: 18.75em) {
  .procedures__recommendations .procedures__img img {
    height: auto !important;
  }
}
@media (max-width: 29.99875em) {
  .doctors01__slider .doctors__swiper {
    height: 12.625rem !important;
  }
}
@media (max-width: 29.99875em) {
  .mainCertificate {
    min-height: 0 !important;
  }
  .mainCertificate .main__container {
    min-height: 0 !important;
  }
}

@media (min-width: 47.99875em) {
  .procedures__img .mob {
    display: none;
  }
}
@media (max-width: 47.99875em) {
  .procedures__img .mob {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
  }
}

@media (min-width: 81.875em) {
  ._lh1 span {
    display: inline !important;
    transform: 0 !important;
  }
}
.safari ._title {
  line-height: 140% !important;
}
.safari ._title h2 {
  line-height: 140% !important;
}
.safari ._title span {
  transform: translate(0px, 0px) !important;
}
@media (min-width: 61.99875em) {
  .safari ._title span._fix {
    transform: translate(0px, 30px) !important;
  }
  .safari ._title span._fix2 {
    position: relative;
    top: 3px;
  }
}

.about__slide {
  box-shadow: 0 0 100px rgba(208, 223, 227, 0.2), 0 0 100px rgba(208, 223, 227, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
}

.about__slider.swiper.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
  overflow: visible;
}

.about__slide._active:first-child {
  opacity: 1;
}

.about__slide.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.about__slide.swiper-slide.swiper-slide-next {
  opacity: 1;
}

.main__content {
  box-shadow: 0 0 100px rgba(208, 223, 227, 0.5), 0 0 100px rgba(208, 223, 227, 0.5);
}

.interesting__slide {
  box-shadow: 0 0 100px rgba(208, 223, 227, 0.2), 0 0 100px rgba(208, 223, 227, 0.2);
  opacity: 0;
  transition: all 0.4s ease;
}

.interesting__slide.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.interesting__slide.swiper-slide.swiper-slide-next {
  opacity: 1;
}

.interesting__slider.swiper.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
  overflow: visible;
}

.safari .interesting__title {
  padding-bottom: 15px;
}

.results__column-content {
  box-shadow: 0 0 100px rgba(208, 223, 227, 0.2), 0 0 100px rgba(208, 223, 227, 0.2);
}

@media (min-width: 61.99875em) {
  .header {
    transition: all 0.3s ease 0s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 61.99875em) {
  .header._header-scroll {
    padding: 8px 0px 8px 0px;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 11px 14px 0px rgba(34, 60, 80, 0.2);
  }
}

@media (min-width: 81.875em) {
  .page {
    padding-top: 6.875rem;
  }
}
@media (min-width: 61.99875em) {
  .page {
    padding-top: 6.5rem;
  }
}

@media (min-width: 61.99875em) {
  .mobile-bottom {
    display: none;
  }
}
@media (max-width: 61.99875em) {
  .mobile-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 11;
    background: #fff;
    box-shadow: 11px 0px 14px 0px rgba(0, 2, 3, 0.37);
  }
}
.mobile-bottom__container {
  padding: 8px 0px 5px 0 !important;
}
.mobile-bottom__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0px 5px;
  overflow: auto hidden;
  height: 3.75rem;
}
.mobile-bottom__column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 0 0 17%;
  height: 3.75rem;
}
.mobile-bottom__icon {
  height: 1.5625rem;
  width: 1.5625rem;
  flex: 0 0 25px;
}
.mobile-bottom__icon img {
  height: 1.5625rem;
  width: 1.5625rem;
}
.mobile-bottom__name {
  margin-top: 0.3125rem;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

@media (max-width: 29.99875em) {
  .interesting__slide {
    box-shadow: none;
  }
}
.swiper:not(.swiper-initialized) .swiper-slide {
  opacity: 1;
}


.choice__item .about__slide {
  opacity: 1;
}

.swiper-pagination-lock {
  opacity: 0;
}

.bx-mac.bx-chrome .how__title {
  line-height: 130%;
}

.bx-mac.bx-chrome .chapter__title span {
  transform: translate(0, 30px);
}

.bx-mac.bx-chrome ._fix {
  transform: translate(0, 30px);
}

@media (max-width: 112.5em) {
  .loaded .main__container-image {
    right: -9%;
  }
}

.main {
  background: var(--gray);
  position: relative;
  min-height: calc(100vh - 104px);
  margin-bottom: 0rem !important;
  overflow: hidden;
}
@media (max-width: 81.875em) {
  .main {
    min-height: calc(100vh - 6.5rem);
  }
}
@media (max-width: 61.99875em) {
  .main {
    min-height: calc(100vh - 5.625rem);
  }
}
@media (max-width: 29.99875em) {
  .main {
    min-height: calc(100vh - 5.25rem);
  }
}
.main__container {
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.youth__img,
.main__container-image {
  position: absolute;
  bottom: 0;
    width: 100% !important;
    left: 0 !important;
    max-width: 100% !important;
    padding: 0;
  right: 0 !important;
  height: 100%;
  display: block !important;
}
@media (max-width: 81.875em) {
  .main__container-image {
    display: none;
  }
}
.youth__img img,
.main__container-image img {
  height: 100%;
  max-width: 100%;
  max-height: 100%;
    width: 100%;
    height: 100%;
  object-fit: cover;
}
.main__content {
  max-width: 48.625rem;
  background: var(--white);
  padding: 4.375rem 4.375rem 3.75rem;
  margin-left: -4.375rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 112.5em) {
  .main__content {
    margin-left: -2.8125rem;
  }
}
@media (max-width: 81.875em) {
  .main__content {
    margin-left: 0rem;
    max-width: 100%;
  }
}
@media (max-width: 61.99875em) {
  .main__content {
    padding: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .main__content {
    padding: 1.875rem;
  }
}
@media (max-width: 29.99875em) {
  .main__content {
    padding: 1.875rem 1.875rem 0.625rem;
  }
}
.main__slide-title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 3rem;
  line-height: 3.625rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .main__slide-title {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .main__slide-title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    margin-bottom: 1.25rem;
  }
}
.main__slide-text {
  margin-bottom: 1.5625rem;
}
.main__slide-text p {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.main__slide-text p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .main__slide-text p {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
.main .main-decore {
  position: absolute;
}
.main .bottom-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0.625rem;
  flex-direction: row !important;
}
@media (max-width: 47.99875em) {
  .main .bottom-main {
    flex-direction: column !important;
    gap: 2.1875rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 3.125rem !important;
  }
}

.bottom-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.bottom-main__nav {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.main__content .bottom-main__nav {
      padding-top: 62px;
}

@media (max-width: 61.99875em) {
    .main__content .bottom-main__nav {
        padding-top: 62px;
    }
}
.bottom-main__number {
  font-size: 1.5rem;
  line-height: 1.8125rem;
}
.bottom-main__amount {
  font-size: 1rem;
  line-height: 1.1875rem;
}
.bottom-main__title,
.work__column .tagline > span,
.procedures__content._text .tagline > span,
.main__slide-items .tagline > span,
.youth .youth__item .tagline>span,
.smart .smart__item .tagline>span  {
    font-family: "Antarctic";
    font-size: 2.4375rem;
    color: var(--blue);
    padding-bottom: 0.625rem;
    position: relative;
    width: 180px;
    margin-left: auto;
    height: 75px;
    font-size: 4em;

}

.smart .smart__item .tagline>span  {
    position: relative;
    width: 180px;
    font-size: 2.4em;
    padding-bottom: 0 !important;
    height: 60px;

}

@media screen and (min-width: 1180px) {
    .smart .smart__item .tagline>span{
        font-size: 3.1em;
        height: 75px;
    }
}
.smart__items{
  gap: 20px;
}
.youth__item-link, .smart__link{
  text-align: center;
}
.bottom-main__title .slogan-1,
.work__column-body .tagline>span .slogan-1,
.main__slide-item .tagline>span .slogan-1,
.youth .youth__item .tagline>span .slogan-1,
.smart .smart__item .tagline>span .slogan-1{
  top: 0;
  right: 150px;
  position: absolute;
}
.youth .youth__item .tagline>span .slogan-1,
.smart .smart__item .tagline>span .slogan-1{
    right: 120px;
}
.bottom-main__title .slogan-2,
.work__column-body .tagline>span .slogan-2,
.main__slide-item .tagline>span .slogan-2,
.youth .youth__item .tagline>span .slogan-2,
.smart .smart__item .tagline>span .slogan-2{
  right: 0;
  bottom: 0;
  position: absolute;
}

.bottom-main__title{
    height: 100px;
    font-size: 5em;
}
.procedures__content .slogan-1,
.procedures__content .slogan-2{
    line-height: 0.5;
}
@media (max-width: 23.375em) and (min-width: 20em) and (max-width: 81.875em) {
  .bottom-main__title {
    font-size: clamp( 1.875rem , 1.7335858586rem  +  0.7070707071vw , 2.3125rem );
     font-size: 96px
  }
}
.bottom-main__title span {
  display: block;
  text-align: right;
  transform: translate(0rem, -1.25rem);
}
@media (max-width: 47.99875em) {
  .bottom-main__title span {
    transform: translate(0rem, -0.9375rem);
  }
}
@media (max-width: 23.375em) {
  .bottom-main__title span {
    transform: translate(0rem, -0.625rem);
  }
}
.bottom-main .bottom-main__btn {
  margin-top: 3.125rem;
}
.about .bottom-main .bottom-main__btn {
  margin-top: 1.525rem;
}
@media (max-width: 29.99875em) {
  .bottom-main .bottom-main__btn span {
    display: none;
  }
}

.decore01 {
  top: 0;
  left: 0;
}
.decore01 img {
  max-width: 38.875rem;
  max-height: 29.0625rem;
}
@media (max-width: 61.99875em) {
  .decore01 img {
    max-width: 48.0625rem;
    max-height: 35.9375rem;
  }
}
@media (max-width: 47.99875em) {
  .decore01 img {
    max-width: 29.375rem;
    max-height: 28.1875rem;
  }
}
@media (max-width: 61.99875em) {
  .decore01 {
    top: -1.25rem;
    left: -14.375rem;
  }
}
@media (max-width: 47.99875em) {
  .decore01 {
    top: -2.1875rem;
    left: -7.1875rem;
  }
}

.decore02 {
  bottom: 0;
  left: 13.125rem;
}
.decore02 img {
  max-width: 35.625rem;
  max-height: 33.9375rem;
}
@media (max-width: 61.99875em) {
  .decore02 img {
    max-width: 42.3125rem;
    max-height: 46.4375rem;
  }
}
@media (max-width: 47.99875em) {
  .decore02 img {
    max-width: 27.1875rem;
    max-height: 27.4375rem;
  }
}
@media (max-width: 112.5em) {
  .decore02 {
    bottom: -0.625rem;
    left: 7.5rem;
  }
}
@media (max-width: 61.99875em) {
  .decore02 {
    left: 5.625rem;
    bottom: 0.625rem;
  }
}
@media (max-width: 47.99875em) {
  .decore02 {
    left: -1.25rem;
    bottom: -0.625rem;
  }
}

.cards__top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cards__title {
  text-align: center;
  margin-bottom: 3.125rem;
  position: relative;
  /*font-size: 6rem;*/
  font-size: 9.375rem;
}
@media (max-width: 90em) {
  .cards__title {
    font-size: 4.5rem;
  }
}
@media (max-width: 47.99875em) {
  .cards__title {
    font-size: 3rem;
    margin-bottom: 1.875rem;
  }
}
.cards__title span {
  display: block;
  text-align: right;
  transform: translate(0, -50%);
}
.cards__swiper {
  margin-bottom: 3.125rem;
}
@media (max-width: 29.99875em) {
  .cards__swiper {
    margin-bottom: 2.5rem;
  }
}
.cards__slide-img {
  margin-bottom: 1.25rem;
}
@media (max-width: 29.99875em) {
  .cards__slide-img {
    max-width: 18.5rem;
    margin: 0 auto;
    margin-bottom: 1.25rem;
  }
}
.cards__slide-img img {
  width: 100%;
  height: 25.625rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .cards__slide-img img {
    height: 19.625rem;
  }
}
@media (max-width: 29.99875em) {
  .cards__slide-img img {
    height: 22.8125rem;
  }
}
.cards__slide-title {
  font-family: "MuseoSansCyrl";
  font-size: 1rem;
  line-height: 1.1875rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.3125rem;
}
@media (max-width: 61.99875em) {
  .cards__slide-title {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}

.work__row {
  display: grid;
  grid-template-columns: 31.25rem 1fr;
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .work__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 47.99875em) {
  .work__row {
    gap: 1.875rem;
  }
}
.work__column-title {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  .work__column-title {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .work__column-title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.work__column-text {
  margin-bottom: 1.875rem;
}
.work__column-text p {
  font-size: 1.125rem;
  line-height: 1.375rem;
}
@media (max-width: 47.99875em) {
  .work__column-text p {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
.work__column-text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.work__column-info .tagline {
  display: none;
}
.info-work__content {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
    align-items: flex-end;
  gap: 0.9375rem;
}
.info-work__title {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 0.625rem;
}
.info-work__text {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  max-width: 13.875rem;
}
.info-work__img img {
  width: 10rem;
  /*height: 5.3125rem;*/
    height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 47.99875em) {
  .info-work__img img {
    width: 7.375rem;
    height: 3.875rem;
  }
}

.about {
  padding-top: 0.875rem;
  padding-bottom: 3.125rem;
  position: relative;
  overflow: hidden;
  background: var(--gray);
}
@media (max-width: 61.99875em) {
  .about {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .about {
    padding-bottom: 3.125rem;
  }
}
.about__decor {
  position: absolute;
}
.about__title {
  text-align: center;
  color: var(--white);
  font-size: 12em;
}
.about__title h2{
  display: flex;
  align-items: flex-end;
  align-items: center;
  gap: 19px;
  justify-content: center;
}

.about__title h2 span{
/*margin-bottom: 50px;*/
line-height: 5em;
    font-size: 0.15em;
}
@media (max-width: 61.99875em) {
  .about__title {
    font-size: 5rem;
  }
  .about__title h2{
    /*display: block*/
    flex-wrap: wrap;
  }
  .about__title span {
    /*font-size: 2rem;*/
   /* line-height: 2.375rem;*/
  }
}
@media (max-width: 47.99875em) {
  .about__title {
    font-size: 3.375rem;
  }
  .about__title span {
    /*font-size: 1.625rem;
    line-height: 1.9375rem;*/
  }
}
.about__slider {
  padding-top: 3.125rem;
}
.about__swiper {
  padding-bottom: 3.125rem;
}
.about__slide {
  padding: 2.5rem;
  background: #fff;
  position: relative;
}
@media (max-width: 81.875em) {
  .about__slide {
    padding: 2.5rem 1.875rem;
  }
}
.about__slide::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
.about__slide::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
.about__slide span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
.about__slide-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 2;
  position: relative;
}
.about__slide-text {
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 14;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.about__slide-text p {
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.about__slide-text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.about__slide-info {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  text-decoration-line: underline;
  color: #7f8387;
  flex: 1 1 auto;
  transition: all 0.3s ease 0s;
}
.about__slide-info:hover {
  text-decoration: none;
}
.about__slide-information {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.about__slide-human {
  font-size: 1rem;
  line-height: 1.1875rem;
}
.about__slide-date {
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #7f8387;
}
.about .bottom-main__number {
  color: var(--white);
}
.about .bottom-main__amount {
  color: var(--white);
}
.about .swiper-pagination-bullet {
  background: #c4c4c4;
}
.about .swiper-pagination-bullet-active {
  background: var(--blue);
}
.about__table {
  position: relative;
  z-index: 2;
  margin-top: 5rem;
  position: relative;
}
@media (max-width: 47.99875em) {
  .about__table {
    margin-top: 3.125rem;
  }
}
.about__table::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
.about__table::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
.about__table span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
.about__table-body {
  background: var(--white);
  padding: 3.125rem 3.75rem;
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
}
@media (max-width: 61.99875em) {
  .about__table-body {
    padding: 1rem 1rem;
  }
}
.about__table-content {
  padding-top: 1.875rem;
  padding-left: 3.125rem;
  max-width: 42.3125rem;
}
@media (max-width: 29.99875em) {
  .about__table-content {
    padding-top: 1.25rem;
    padding-left: 1.25rem;
  }
}
.about__table-content p {
  font-size: 1rem;
  line-height: 130%;
}
.about__table-content p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .about__table-content p {
    font-size: 0.875rem;
  }
}
.about__table-subtitle {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  padding: 0rem 1.875rem;
  padding-bottom: 3.125rem;
  border-bottom: 0.0625rem solid var(--darkGray);
}
@media (max-width: 61.99875em) {
  .about__table-subtitle {
    padding: 0rem 0rem;
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 61.99875em) {
  .about__table-subtitle {
    font-size: 1rem;
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .about__table-subtitle {
    font-size: 0.875rem;
  }
}
.about__table-title {
  flex: 1 1 auto;
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 61.99875em) {
  .about__table-title {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .about__table-title {
    flex: 0 1 21.25rem;
  }
}
@media (max-width: 47.99875em) {
  .about__table-title {
    flex: 1 1 auto;
    font-size: 0.875rem;
  }
}
.about__table-spollers {
  padding-bottom: 3.125rem;
  padding-top: 1.875rem;
  border-bottom: 0.0625rem solid var(--darkGray);
}
@media (max-width: 61.99875em) {
  .about__table-spollers {
    padding-bottom: 1.875rem;
  }
}
.about__table-item {
  padding: 0rem 1.875rem;
}
@media (max-width: 61.99875em) {
  .about__table-item {
    padding: 0rem 0rem;
  }
}
.about__table-item:not(:last-child) {
  padding-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .about__table-item:not(:last-child) {
    padding-bottom: 1.25rem;
  }
}
.about__table-info {
  display: flex;
  align-items: flex-start;
  gap: 4.375rem;
  cursor: pointer;
}
@media (max-width: 61.99875em) {
  .about__table-info {
    gap: 4.8125rem;
  }
}
@media (max-width: 47.99875em) and (max-width: 61.99875em) {
  .about__table-info {
    gap: 1.25rem;
  }
}
.about__table-info._spoller-active .about__table-arrow {
  transform: rotate(180deg);
}
.about__table-price {
  font-size: 1.125rem;
  line-height: 130%;
  position: relative;
  flex: 0 0 5.375rem;
}
@media (max-width: 61.99875em) {
  .about__table-price {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .about__table-price {
    font-size: 0.875rem;
	flex: 0 0 3.775rem;
  }
}

@media (max-width: 61.99875em) {
  .about__table-price::after {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .about__table-price::after {
    font-size: 0.875rem;
  }
}
.about__table-time {
  font-size: 1.125rem;
  line-height: 130%;
  flex: 0 0 4.375rem;
}
@media (max-width: 61.99875em) {
  .about__table-time {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .about__table-time {
    font-size: 0.875rem;
  }
}
.about__table-arrow {
  transition: all 0.3s ease 0s;
}
@media (max-width: 47.99875em) {
  .about .cardsTwo__slider .cards__slide-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 61.99875em) {
  .about .cardsTwo__slider .cards__slide-img img {
    height: 19.625rem;
  }
}
@media (max-width: 47.99875em) {
  .about .cardsTwo__slider .cards__slide-img img {
    height: 14.75rem;
  }
}

.aboutDecor01 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 90em) {
  .aboutDecor01 {
    left: -17.5rem;
    top: -0.625rem;
  }
}
@media (max-width: 61.99875em) {
  .aboutDecor01 {
    left: -10.625rem;
    top: -0.625rem;
  }
}
@media (max-width: 47.99875em) {
  .aboutDecor01 {
    left: -5.625rem;
    top: -1.875rem;
  }
}
@media (max-width: 87.5em) {
  .aboutDecor01 img {
    max-width: 48.0625rem;
    max-height: 36.0625rem;
  }
}
@media (max-width: 61.99875em) {
  .aboutDecor01 img {
    max-width: 38.875rem;
    max-height: 29rem;
  }
}
@media (max-width: 47.99875em) {
  .aboutDecor01 img {
    max-width: 22.5rem;
    max-height: 15.8125rem;
  }
}

.aboutDecor02 {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
@media (max-width: 87.5em) {
  .aboutDecor02 {
    right: -16.875rem;
    bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .aboutDecor02 {
    right: -11.25rem;
    bottom: 0rem;
  }
}
@media (max-width: 47.99875em) {
  .aboutDecor02 {
    right: -10rem;
    bottom: 0.625rem;
  }
}
@media (max-width: 87.5em) {
  .aboutDecor02 img {
    max-width: 43.8125rem;
    max-height: 41.9375rem;
  }
}
@media (max-width: 61.99875em) {
  .aboutDecor02 img {
    max-width: 30rem;
    max-height: 33.3125rem;
  }
}
@media (max-width: 47.99875em) {
  .aboutDecor02 img {
    max-width: 26.625rem;
    max-height: 25.5rem;
  }
}

.form__container {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
  background: #fefefe;
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.form__container_inner {
	padding-left: 158px;
	padding-right: 158px;
}
@media (max-width: 87.5em) {
  .form__container {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 61.99875em) {
  .form__container {
    padding-bottom: 3.125rem;
  }
  .form__container_inner {
	padding-left: 58px;
	padding-right: 58px;
  }
}
@media (max-width: 47.99875em) {
  .form__container {
    margin: 0rem 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
	width: auto;
  }
  .form__container_inner {
	padding-left: 0;
	padding-right: 0;
  }
}
.form__title {
  font-family: "MuseoSansCyrl";
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .form__title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    margin-bottom: 1.25rem;
  }
}
.form__text {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: center;
}
@media (max-width: 47.99875em) {
  .form__text {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
@media (max-width: 29.99875em) {
  .form__text {
    max-width: 15.875rem;
    margin: 0 auto;
  }
}
.form__form {
  max-width: 60.25rem;
  margin: 0 auto;
  margin-top: 1.875rem;
}
@media (max-width: 61.99875em) {
  .form__form {
    max-width: 40.5rem;
  }
}
@media (max-width: 29.99875em) {
  .form__form {
    margin-top: 1.25rem;
  }
}
.form__items {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 1.875rem 3.125rem;
}
.form__items .form__item-textarea {
  grid-column-start: 2 span;
}
@media (max-width: 47.99875em) {
  .form__items .form__item-textarea {
    grid-column-start: 1 span;
  }
}
@media (max-width: 61.99875em) {
  .form__items {
    gap: 1.875rem 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .form__items {
    gap: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .form__items {
    grid-template-columns: 1fr;
  }
}
.form__item-input span {
  opacity: 0;
  transition: all 0.3s ease 0s;
  margin-top: 0.625rem;
  position: relative;
  top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: #ba4747;
}
.form__item-input input._error + span {
  opacity: 1;
}
.form__item-input input {
  height: 3.0625rem;
  background: var(--white);
  border: 0.0625rem solid var(--darkGray);
  width: 100%;
  padding: 0px 1.25rem;
  transition: all 0.3s ease 0s;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.form__item-input input::placeholder {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: var(--darkGray);
  transition: all 0.3s ease 0s;
}
.form__item-input input:focus {
  border: 0.0625rem solid #479fba;
}
.form__item-input input:focus::placeholder {
  color: transparent;
}
.form__item-input input._error {
  border: 0.0625rem solid #ba4747;
}
.form__item-textarea p {
  font-size: 0.75rem;
  line-height: 130%;
}
.form__item-textarea p a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.form__item-textarea p a:hover {
  text-decoration: none;
}
.form__item-textarea textarea {
  border: 0.0625rem solid var(--darkGray);
  transition: all 0.3s ease 0s;
  padding: 0.9375rem 1.25rem;
  width: 100%;
  resize: none;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.1875rem;
}
.form__item-textarea textarea::placeholder {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: var(--darkGray);
}
.form__item-textarea textarea:focus {
  border: 0.0625rem solid #479fba;
}
.form__item-textarea textarea:focus::placeholder {
  color: transparent;
}
.form__btn {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 47.99875em) {
  .form__btn {
    margin-top: 1.875rem;
  }
}

.interesting {
  position: relative;
  background: var(--gray);
  padding-bottom: 3.125rem;
  overflow: hidden;
}
@media (max-width: 61.99875em) {
  .interesting {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .interesting {
    padding-bottom: 3.125rem;
  }
}
.interesting__title {
  color: var(--white);
  text-align: center;
  font-size: 6rem;
}
@media (max-width: 61.99875em) {
  .interesting__title {
    font-size: 5rem;
  }
  .interesting__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .interesting__title {
    font-size: 3.375rem;
  }
  .interesting__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    display: block;
  }
}
.interesting__swiper {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.interesting__slide {
  background: var(--white);
}
.interesting__slide-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.interesting__slide-img img {
  width: 100%;
  height: 13rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .interesting__slide-img img {
    height: 9.9375rem;
  }
}
@media (max-width: 29.99875em) {
  .interesting__slide-img img {
    height: 15.75rem;
  }
}
.interesting__slide-content {
  padding: 1.875rem 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.interesting__slide-date {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: var(--darkGray);
  margin-bottom: 0.625rem;
}
.interesting__slide-text {
  font-size: 1.125rem;
  line-height: 1.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
  flex: 1 1 auto;
}
@media (max-width: 61.99875em) {
  .interesting__slide-text {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
@media (max-width: 29.99875em) {
  .interesting__slide-text {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
}
.interesting__slide-link {
  color: var(--darkGray);
  font-size: 0.875rem;
  line-height: 1.0625rem;
  text-decoration: underline !important;
  transition: all 0.3s ease 0s;
}
.interesting__slide-link:hover {
  text-decoration: none !important;
}
.interesting .bottom-main__nav {
  color: var(--white);
}
.interesting .swiper-pagination-bullet {
  background: #c4c4c4;
}
.interesting .swiper-pagination-bullet-active {
  background: var(--white);
}

.services .main__container-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 29rem;
  height: 29rem;
  border-radius: 50%;
  background: var(--white);
  filter: blur(337px);
}
.services .main__container-image img {
  max-height: 57.1875rem;
}
@media (max-width: 112.5em) {
  .services .main__container-image {
    right: 0;
  }
}
.services .main__slide-text p {
  font-size: 1.125rem;
}
@media (max-width: 61.99875em) {
  .services .main__slide-title {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .services .main__slide-text {
    font-size: 1.125rem;
    line-height: 130%;
  }
}
@media (max-width: 47.99875em) {
  .services .main__slide-text {
    font-size: 1rem;
  }
}

.breadcrumb {
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
}
@media (max-width: 47.99875em) {
  .breadcrumb {
    padding-bottom: 1.875rem;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3125rem 0.9375rem;
}
.breadcrumb__item {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: var(--darkGray);
}
.breadcrumb__item a {
  transition: all 0.3s ease 0s;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}
.breadcrumb__item::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -0.625rem;
}
.breadcrumb__item:last-child::before {
  content: "";
  display: none;
}
.attendance__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.375rem;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .attendance__title {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .attendance__title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    margin-bottom: 1.25rem;
  }
}
.attendance__text {
  margin-bottom: 3.4375rem;
}
@media (max-width: 61.99875em) {
  .attendance__text {
    margin-bottom: 1.875rem;
  }
}
.attendance__text p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .attendance__text p {
    font-size: 1rem;
  }
}
.attendance__text p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.attendance__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .attendance__row {
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .attendance__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.attendance__column {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease 0s;
}
.attendance__column:hover .attendance__column-image img {
  transform: scale(1.1);
}
.attendance__column-image {
  overflow: hidden;
}
.attendance__column-image img {
  width: 100%;
  height: 25rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}
@media (max-width: 61.99875em) {
  .attendance__column-image img {
    height: 13.75rem;
  }
}
@media (max-width: 47.99875em) {
  .attendance__column-image img {
    height: 13.875rem;
  }
}
.attendance__column-title {
  padding: 2.5625rem 1.25rem;
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  flex: 1 1 auto;
  background: var(--gray);
}
@media (max-width: 61.99875em) {
  .attendance__column-title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    padding: 1.5625rem 1.25rem;
  }
}

.servicesAbout {
  max-width: 100vw;
}
.servicesAbout .cards__slider {
  margin: 0px -2.5rem;
  padding: 0px 2.5rem;
  padding-top: 2.5rem;
}
.servicesAbout .cards__slide-title {
  color: var(--white);
}
.servicesAbout .about__title {
  font-size: 12em;
}
@media (max-width: 61.99875em) {
  .servicesAbout .about__title {
    font-size: 5rem;
  }
  .servicesAbout .about__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .servicesAbout .about__title {
    font-size: 3.375rem;
  }
  .servicesAbout .about__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.servicesAbout .cards__slide .cards__slide-img {
  box-shadow: 0px 0px 100px rgba(208, 223, 227, 0.2), 0px 0px 100px rgba(208, 223, 227, 0.2);
}
.servicesAbout .swiper-slide {
  opacity: 0;
  transition: all 0.2s ease 0s;
}
.servicesAbout .cards__slider {
  overflow: visible;
}
.servicesAbout .swiper-slide-active {
  opacity: 1;
}
.servicesAbout .swiper-slide-next {
  opacity: 1;
}
.servicesAbout .swiper-slide._active {
  opacity: 1;
}
@media (max-width: 61.99875em) {
  .servicesAbout .about__title-s {
    text-align: left;
  }
}
@media (max-width: 61.99875em) {
  .servicesAbout .about__title-s span {
    display: block;
    text-align: right;
  }
}
@media (max-width: 61.99875em) and (max-width: 47.99875em) {
  .servicesAbout .about__title-s span {
    text-align: left;
  }
}
@media (max-width: 61.99875em) {
  .servicesAbout .about__title-r {
    text-align: left;
  }
}
@media (max-width: 61.99875em) {
  .servicesAbout .about__title-r span {
    display: block;
    text-align: right;
  }
}
@media (max-width: 61.99875em) and (max-width: 47.99875em) {
  .servicesAbout .about__title-r span {
    text-align: right;
  }
}

.cosmetology__container h1 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .cosmetology__container h1 {
    font-size: 2rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .cosmetology__container h1 {
    font-size: 1.625rem;
    margin-bottom: 1.5rem;
  }
}
.cosmetology__container h2 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.825rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .cosmetology__container h2 {
    margin-bottom: 1.3rem;
  }
}
@media (max-width: 47.99875em) {
  .cosmetology__container h2 {
    font-size: 1.3rem;
  }
}

.cosmetology__container h3 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 300;
  font-size: 1.425rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .cosmetology__container h3 {
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 47.99875em) {
  .cosmetology__container h3 {
    font-size: 1.2rem;
  }
}

.cosmetology__container h4 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 200;
  font-size: 1.225rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .cosmetology__container h4 {
    margin-bottom: 1.1rem;
  }
}
@media (max-width: 47.99875em) {
  .cosmetology__container h4 {
    font-size: 1.1rem;
  }
}


.cosmetology__container p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .cosmetology__container p {
    font-size: 1rem;
  }
}
.cosmetology__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
/*.cosmetology__container span {
  font-family: "Antarctic";
  font-size: 2.8125rem;
  color: var(--blue);
  padding-bottom: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}*/
.cosmetology__container span span {
  display: block;
  text-align: right;
  transform: translate(0rem, -1.25rem);
}
@media (max-width: 61.99875em) {
  .cosmetology__container .tagline span {
    font-size: 2.625rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 47.99875em) {
  .cosmetology__container .tagline span {
    font-size: 1.96875rem;
  }
  .cosmetology__container .tagline span span {
    transform: translate(0px, -10px);
  }
}

@media (max-width: 81.875em) {
  .cosmetology .cosmetology__img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.cosmetology .cosmetology__img img {
  width: 38.4375rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .cosmetology .cosmetology__img img {
    width: 100%;
  }
}

.recommend__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .recommend__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
    max-width: 38.4375rem;
  }
}

.recommend__container ul li:not(:last-child) {
  padding-bottom: 1.875rem;
}
.recommend__container ul li h3 a {
  font-size: 1.125rem;
  line-height: 130%;
  transition: all 0.3s ease 0s;
}
@media (max-width: 47.99875em) {
  .recommend__container ul li h3 a {
    font-size: 1rem;
  }
}
.recommend__container ul li h3 a:hover {
  text-decoration: underline;
}

.cards__slide-title {
  position: relative;
  z-index: 2;
}

._text {
  font-size: 1.125rem;
  line-height: 130%;
}
._text h1 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  ._text h1 {
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  ._text h1 {
    font-size: 1.625rem;
  }
}
._text h4,
._text h5,
._text h6 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  ._text h4,
  ._text h5,
  ._text h6 {
    font-size: 1rem;
  }
}


._text h3 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  ._text h3 {
    font-size: 1rem;
  }
}
._text p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  ._text p {
    font-size: 1rem;
  }
}
._text p:not(:last-child) {
  margin-bottom: 1.875rem;
}

.procedures__container {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .procedures__container {
    font-size: 1rem;
  }
}
.procedures__container h1 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  .procedures__container h1 {
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .procedures__container h1 {
    font-size: 1.625rem;
  }
}
.procedures__container h3,
.procedures__container h2 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  .procedures__container h3,
  .procedures__container h2 {
    font-size: 1rem;
  }
}
.procedures__container p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .procedures__container p {
    font-size: 1rem;
  }
}
.procedures__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.procedures__text {
  margin-bottom: 8.125rem;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .procedures__text {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 81.875em) {
  .procedures__text {
    display: flex;
  }
}
@media (max-width: 61.99875em) {
  .procedures__text {
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .procedures__text .procedures__img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 81.875em) {
  .procedures__img img {
    float: left;
    margin-right: 1.875rem;
    margin-bottom: 1.25rem;
    max-width: 21.1875rem;
  }
}
@media (max-width: 47.99875em) {
  .procedures__img img {
    width: 21.4375rem;
    margin-bottom: 0.9375rem;
    margin-right: 0rem;
  }
}
@media (max-width: 29.99875em) {
  .procedures__text img {
    max-width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .procedures__text {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
}
.procedures__drugs {
  margin-bottom: 8.125rem;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .procedures__drugs {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 81.875em) {
  .procedures__drugs {
    display: flex;
  }
}
@media (max-width: 61.99875em) {
  .procedures__drugs {
    gap: 1.875rem;
  }
}
@media (max-width: 81.875em) {
  .procedures__drugs .procedures__img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .procedures__drugs .procedures__img img {
    width: 100%;
  }
}
.procedures__recommendations {
  margin-bottom: 8.125rem;
  gap: 3.125rem;
  display: flex;
}
@media (max-width: 81.875em) {
  .procedures__recommendations {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 81.875em) {
  .procedures__recommendations {
    flex-direction: column-reverse;
    gap: 0rem;
  }
}
@media (max-width: 47.99875em) {
  .procedures__recommendations .procedures__img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 61.99875em) {
  .procedures__recommendations .procedures__img img {
    width: 100%;
    height: 42.6875rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 47.99875em) {
  .procedures__recommendations .procedures__img img {
    height: 20.6875rem;
    width: 21.4375rem;
  }
}
@media (max-width: 61.99875em) and (max-width: 29.99875em) {
  .procedures__recommendations .procedures__img img {
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .procedures .tagline span {
    font-size: 1.96875rem;
  }
  .procedures .tagline span span {
    transform: translate(0px, -10px);
  }
}

.spollers {
  border-top: 0.0625rem solid var(--darkGray);
  max-width: 72.4375rem;
  margin: 0 auto;
  margin-top: 3.125rem;
  margin-bottom: 8.125rem;
}
@media (max-width: 61.99875em) {
  .spollers {
    margin-top: 1.875rem;
    margin-bottom: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  .spollers {
    margin-top: 1.25rem;
    margin-bottom: 3.125rem;
  }
}
.spollers__item {
  padding: 1.5625rem 1.25rem;
  border-bottom: 0.0625rem solid var(--darkGray);
}
@media (max-width: 47.99875em) {
  .spollers__item {
    padding: 1.875rem 1.25rem;
  }
}
.spollers__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 47.99875em) {
  .spollers__title {
    font-size: 0.875rem;
  }
}
.spollers__title span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0rem;
  transition: all 0.3s ease 0s;
}
.spollers__title._spoller-active span {
  transform: rotate(180deg);
}
.spollers__body {
  padding-top: 3.125rem;
}
.spollers__body p {
  font-size: 1.125rem;
  line-height: 130%;
}
.spollers__body p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.spollers .spollers__title h2 {
  margin: 0px 0px 0px 0px;
}

.serviceAbout {
  padding-top: 3.125rem;
}
@media (max-width: 61.99875em) {
  .serviceAbout {
    background: var(--white);
  }
}
@media (max-width: 61.99875em) {
  .serviceAbout .aboutDecor01 {
    display: none;
  }
}
@media (max-width: 61.99875em) {
  .serviceAbout .aboutDecor02 {
    display: none;
  }
}
.serviceAbout .about__title {
  font-size: 12em;
}
.procedures__content .slogan-1{
    position: relative;
    right: 60px;
}
@media (max-width: 61.99875em) {
  .serviceAbout .about__title {
    font-size: 3.375rem;
    color: var(--black);
    text-align: left;
  }
  .serviceAbout .about__title span {
    font-size: 2rem;
    line-height: 2.375rem;
    display: block;
    padding-left: 3.125rem;
    transform: translate(0px, -10px);
  }
}
@media (max-width: 47.99875em) {
  .serviceAbout .about__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    padding-left: 0rem;
  }
}
.youth {
  position: relative;
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
  overflow: hidden;
  background: var(--gray);
}
@media (max-width: 61.99875em) {
  .youth {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.youth__img {
  position: absolute;
  bottom: 0;
  left: 7.3125rem;
  z-index: 2;
}
@media (max-width: 112.5em) {
  .youth__img {
    left: -5.625rem;
  }
}
@media (max-width: 81.875em) {
  .youth__img {
    display: none;
  }
}
.youth__container {
  position: relative;
  z-index: 2;
}
.youth__body {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 81.875em) {
  .youth__body {
    justify-content: center;
  }
}
.youth__content {
  padding: 3.125rem;
  background: var(--white);
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
  max-width: 42.25rem;
}
@media (max-width: 61.99875em) {
  .youth__content {
    max-width: 100%;
    padding: 3.125rem 3.75rem;
  }
}
@media (max-width: 47.99875em) {
  .youth__content {
    padding: 2.5rem 1.25rem;
  }
}
.youth__content h2 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  .youth__content h2 {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .youth__content h2 {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.youth__content h3 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .youth__content h3 {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
@media (max-width: 47.99875em) {
  .youth__content p {
    font-size: 1rem !important;
  }
}
.youth__content p:not(:last-child) {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  line-height: 130%;
  color: var(--gray);
}
.youth__content p a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
  color: var(--black);
}
.youth__content p a:hover {
  text-decoration: none;
}
.youth__items {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .youth__items {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 1.875rem;
	gap: 0;
  }
}
@media (max-width: 29.99875em) {
  .youth__item {
    width: 100%;
  }
}
@media (max-width: 29.99875em) {
  .youth__item-link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 47.99875em) {
  .youth__item-img {
    display: none;
  }
}
.youth .bottom-main__title {
  font-size: 1.8125rem;
  line-height: 1;
}
@media (max-width: 47.99875em) {
  .youth .bottom-main__title {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.youth .bottom-main__title span {
  transform: translate(0px, -10px);
  text-align: right;
  padding-left: 6.875rem;
}
.youth .tagline span {
  font-size: 1.8125rem;
  line-height: 1;
}
.youth .tagline span span {
  transform: translate(0px, -10px);
}

.tagline {
  line-height: 1;
}

.cases__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cases__text {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.cases__user {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 1.25rem;
}
.cases .about__slide {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.cases .about__slide span {
  display: none;
}
.cases .about__slide::before {
  content: "";
  display: none;
}
.cases .about__slide::after {
  content: "";
  display: none;
}

.well__videos {
  padding-bottom: 71.25%;
}
.well__content h3 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .well__content h3 {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
@media (max-width: 61.99875em) {
  .well__content h3 br {
    display: none;
  }
}
.well__content p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .well__content p {
    font-size: 1rem;
  }
}
.well__content p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.well .well__content-top {
  margin-top: 3.125rem;
}
@media (max-width: 47.99875em) {
  .well .well__content-top {
    margin-top: 1.875rem;
  }
}
.well .well__content-btn {
  margin-top: 3.125rem;
}
.well .well__inner {
  display: grid;
  grid-template-columns: 1fr 45.375rem;
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .well .well__inner {
    grid-template-columns: 1fr;
  }
}

.floatRight {
  float: right;
  margin-left: 3.125rem;
}

.youthAbout .youthAbout__body {
  padding: 3.75rem 5.625rem;
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
  background: var(--white);
  margin-top: 5rem;
  position: relative;
}
@media (max-width: 81.875em) {
  .youthAbout .youthAbout__body {
    padding: 2.8125rem 1.875rem 2.5rem;
  }
}
@media (max-width: 47.99875em) {
  .youthAbout .youthAbout__body {
    margin-top: 1.875rem;
  }
}
.youthAbout .youthAbout__body::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
@media (max-width: 47.99875em) {
  .youthAbout .youthAbout__body::before {
    display: none;
  }
}
.youthAbout .youthAbout__body::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
@media (max-width: 47.99875em) {
  .youthAbout .youthAbout__body::after {
    display: none;
  }
}
.youthAbout .youthAbout__body span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
@media (max-width: 47.99875em) {
  .youthAbout .youthAbout__body span {
    display: none;
  }
}
.youthAbout .youthAbout__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 5.3125rem;
}
@media (max-width: 61.99875em) {
  .youthAbout .youthAbout__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}
.youthAbout .youthAbout__content p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .youthAbout .youthAbout__content p {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .youthAbout .about__title span {
    display: block;
  }
}

.bespoleznyi__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-size: 12em;
}
@media (max-width: 47.99875em) {
  .bespoleznyi__title {
    font-size: 3.375rem;
  }
}
.bespoleznyi__title span {
  display: block;
  padding-left: 8.75rem;
  line-height: 1;
}
@media (max-width: 61.99875em) {
  .bespoleznyi__title span {
    padding-left: 1.25rem;
    transform: translate(0px, 25px);
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .bespoleznyi__title span {
    font-size: 1.625rem;
  }
}
.bespoleznyi__items {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .bespoleznyi__items {
    margin-top: 5rem;
  }
}
@media (max-width: 47.99875em) {
  .bespoleznyi__items {
    margin-top: 3.75rem;
  }
}
@media (max-width: 61.99875em) {
  .bespoleznyi__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0rem;
  }
}
@media (max-width: 61.99875em) {
  .bespoleznyi__items ul li {
    padding-bottom: 1.875rem;
  }
}

.curators__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-size: 6rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .curators__title {
    margin-bottom: 5rem;
  }
}
@media (max-width: 47.99875em) {
  .curators__title {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 61.99875em) {
  .curators__title {
    font-size: 5rem;
  }
  .curators__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .curators__title {
    font-size: 3.375rem;
  }
  .curators__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
@media (max-width: 61.99875em) {
  .curators__title h2 {
    width: 100%;
  }
}
@media (max-width: 61.99875em) {
  .curators__title {
    align-items: flex-start;
  }
}
.curators__title span {
  display: block;
  text-align: right;
  padding-left: 20.625rem;
  line-height: 1;
}
@media (max-width: 61.99875em) {
  .curators__title span {
    padding-left: 16.25rem;
    transform: translate(0px, 20px);
  }
}
@media (max-width: 47.99875em) {
  .curators__title span {
    padding-left: 1.875rem;
  }
}
.curators .cards__slider {
  padding-top: 3.125rem;
}
.curators .cards__slide-title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 1.25rem;
  color: #494c52;
  min-height: 2.75rem;
}
@media (max-width: 61.99875em) {
  .curators .cards__slide-title {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}
@media (max-width: 47.99875em) {
  .curators .cards__slide-title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    min-height: 1.5rem;
  }
}
.curators .cards__slide-img img {
  max-height: 20rem;
}
@media (max-width: 61.99875em) {
  .curators .cards__slide-img img {
    height: 15.25rem;
  }
}
@media (max-width: 47.99875em) {
  .curators .cards__slide-img img {
    height: 11.4375rem;
  }
}
.curators .cards__slide-link {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-decoration-line: underline;
  transition: all 0.3s ease 0s;
  margin-top: 1.25rem;
  display: block;
}
.curators .cards__slide-link:hover {
  text-decoration: none;
}

.cards__slide-text {
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 0.625rem;
}
@media (max-width: 47.99875em) {
  .cards__slide-text {
    font-size: 1rem;
    line-height: 1.1875rem;
  }
}

.cards__slide-experience {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--darkGray);
}
@media (max-width: 47.99875em) {
  .cards__slide-experience {
    font-size: 0.875rem;
  }
}

.audit__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.audit__container ol {
  margin-bottom: 1.875rem;
}
.audit__subtitle {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .audit__subtitle {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .audit__subtitle {
    font-size: 1.625rem;
  }
}
.audit__videos {
  padding-bottom: 64.25%;
}
@media (max-width: 61.99875em) {
  .audit__videos {
    padding-bottom: 71.25%;
  }
}
.audit__link {
  margin-top: 1.25rem;
}
@media (max-width: 61.99875em) {
  .audit__link {
    margin-top: 0rem;
  }
}
.audit .audit__inner {
  display: grid;
  grid-template-columns: 1fr 45.375rem;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .audit .audit__inner {
    grid-template-columns: 1fr;
  }
}

.options01 .options__title {
  text-align: center;
}
@media (max-width: 47.99875em) {
  .options01 .options__title {
    text-align: left;
  }
}
.options01 .options__title span {
  padding-right: 22.5rem;
}
@media (max-width: 61.99875em) {
  .options01 .options__title span {
    padding-right: 4.8125rem;
    display: flex;
    justify-content: flex-end;
  }
}
@media (max-width: 47.99875em) {
  .options01 .options__title span {
    padding-right: 3.375rem;
  }
}

.options__title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-size: 6rem;
}
.options__title h2 {
  width: 100%;
}
@media (max-width: 61.99875em) {
  .options__title {
    font-size: 5rem;
  }
  .options__title span {
    font-size: 2rem;
    line-height: 2.375rem;
    transform: translate(0px, 20px);
  }
}
@media (max-width: 47.99875em) {
  .options__title {
    font-size: 3.375rem;
  }
  .options__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.options__title span {
  display: block;
  text-align: right;
  padding-right: 4.6875rem;
  line-height: 1;
}
@media (max-width: 61.99875em) {
  .options__title span {
    padding-right: 0rem;
  }
}
.options__row {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .options__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .options__row {
    gap: 1.25rem;
  }
}
.options__item {
  font-size: 1.125rem;
  line-height: 130%;
}
.options__item:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .options__item:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.options__item strong {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .options__item strong {
    font-size: 1rem;
  }
}

.auditYouth .youth__body {
  justify-content: flex-start;
}
.auditYouth .youth__img {
  left: auto;
  right: 7.3125rem;
}

.problem__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 61.99875em) {
  .problem__title {
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .problem__title {
    font-size: 1.625rem;
  }
}
.problem__content {
  margin-top: 3.125rem;
}
@media (max-width: 61.99875em) {
  .problem__content {
    margin-top: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .problem__content {
    margin-top: 1.25rem;
  }
}
.problem__content b {
  font-family: "MuseoSansCyrl" !important;
}
.problem__content span {
  font-family: "Antarctic";
  font-size: 2.8125rem;
  color: var(--blue);
  padding-bottom: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.problem__content span span {
  display: block;
  text-align: right;
  transform: translate(0rem, -1.25rem);
}
.problem .tagline span {
  font-size: 1.96875rem;
  line-height: 1;
}
.problem .tagline span span {
  transform: translate(0px, -10px);
}
@media (max-width: 81.875em) {
  .problem .problem__content-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 81.875em) {
  .problem .problem__content-img img {
    width: 100%;
    max-width: 44.25rem;
    height: 29.5rem;
  }
}
@media (max-width: 29.99875em) {
  .problem .problem__content-img img {
    width: 100%;
    height: auto;
  }
}
.problem .problem__content {
  display: flex;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .problem .problem__content {
    gap: 1.875rem;
    flex-direction: column;
  }
}
.problem .problem__content p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (min-width: 81.875em) {
  .problem .problem__content .problem__content-info {
    flex: 0 1 45.375rem;
  }
}
.problem .problem__content-r {
  flex-direction: row-reverse;
}
@media (max-width: 81.875em) {
  .problem .problem__content-r .problem__content-img {
    display: none;
  }
}

.floatLeft {
  float: left;
  margin-right: 3.125rem;
}

.choice__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .choice__title {
    margin-bottom: 1.875rem;
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .choice__title {
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
  }
}
.choice__body .block__more {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 130%;
  background: #ffffff;
  border: 0.0625rem solid #dbdbdb;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0rem !important;
}
.choice__body p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.choice__inner {
  margin-top: 4.0625rem;
}
@media (min-width: 61.99875em) {
  .choice__inner {
    display: grid;
    grid-template-columns: 24.5625rem 1fr;
    gap: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .choice__inner {
    margin-top: 2.1875rem;
  }
}
@media (max-width: 61.99875em) {
  .choice__aside {
    display: none;
  }
}
.choice__aside .spollers {
  border-top: none;
}
.choice__aside .spollers__item {
  padding: 0px 0px;
  border-top: none;
  border-bottom: none;
}
.choice__aside .spollers__item .spollers__title {
  font-size: 1rem;
  line-height: 1.1875rem;
  text-align: left;
  justify-content: flex-start;
}
.choice__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
  margin: -3.125rem -3.125rem 3.125rem;
  padding: 3.125rem 3.125rem 0rem;
}
@media (max-width: 81.875em) {
  .choice__items {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .choice__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.99875em) {
  .choice__items {
    grid-template-columns: 1fr;
  }
}
.choice__item {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  background: var(--white);
}
.choice__item .about__slide {
  height: 100%;
}
@media (max-width: 61.99875em) {
  .choice__item .about__slide {
    padding: 1.875rem 1.875rem 2.1875rem;
  }
}
.choice__item .about__slide span {
  display: none;
}
.choice__item .about__slide::before {
  content: "";
  display: none;
}
.choice__item .about__slide::after {
  content: "";
  display: none;
}
@media (max-width: 61.99875em) {
  .choice__item .about__slide .cases__title {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .choice__item .about__slide .cases__text {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .choice__item .about__slide .cases__user {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .choice__item .about__slide .about__slide-text {
    font-size: 1rem;
  }
  .choice__item .about__slide .about__slide-text p b {
    font-size: 1rem;
  }
}
@media (max-width: 61.99875em) {
  .choice__item .about__slide .about__slide-info {
    font-size: 0.875rem;
  }
}
.choice .options__item:not(:last-child) {
  margin-bottom: 0rem;
  padding-bottom: 1.25rem;
}
.choice .options__label::before {
  content: "";
  border: 0.0625rem solid #7f8387;
}
.choice .options__label::after {
  content: "";
  background: var(--blue);
}
.choice .options__text {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #7f8387;
}
.choice .spollers__item {
  padding-bottom: 3.125rem;
}
.choice .spollers__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease 0s;
}
.choice .spollers__top span {
  transition: all 0.3s ease 0s;
  transform: rotate(180deg);
}
.choice .spollers__top._spoller-active span {
  transform: rotate(0deg);
}
.choice .spollers__title {
  font-size: 1rem;
  line-height: 1.1875rem;
}
.choice .spollers__body {
  padding-top: 1.875rem;
}
.choice .spollers__body-chks .checkbox {
  margin-bottom: 0rem;
}
.choice .spollers__body-chks .checkbox:not(:last-child) {
  padding-bottom: 1.25rem;
}
.choice .block__more {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.1875rem;
  margin-top: 1.875rem;
}
.choice .options__input:checked + .options__label::before {
  border: 0.0625rem solid #479fba;
}
.choice .choice__content {
  max-width: 45.375rem;
}
.choice .choice__content p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.choice .choice__selects {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.875rem;
}
@media (min-width: 61.99875em) {
  .choice .choice__selects {
    display: none;
  }
}
@media (max-width: 47.99875em) {
  .choice .choice__selects {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.choice .choice__selects .blog__sel {
  margin-bottom: 0rem;
}
@media (max-width: 47.99875em) {
  .choice .choice__selects .blog__sel .select {
    max-width: 100%;
  }
}

.treatment__container h3 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .treatment__container h3 {
    font-size: 1.25rem;
  }
}
.treatment__container p {
  max-width: 69.5rem;
}
.treatment__container p:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.treatment__subtitle {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .treatment__subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .treatment__subtitle {
    font-size: 1.625rem;
    margin-bottom: 1.875rem;
  }
}
.treatment__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.125rem;
}
@media (max-width: 47.99875em) {
  .treatment__title {
    margin-bottom: 1.25rem;
  }
}
.treatment__title span {
  display: block;
  padding-left: 6.25rem;
}
@media (max-width: 61.99875em) {
  .treatment__title span {
    font-size: 1.875rem;
    padding-left: 1.25rem;
    text-align: right;
  }
}
@media (max-width: 47.99875em) {
  .treatment__title span {
    font-size: 1.5rem;
  }
}
.treatment__content {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 61.99875em) {
  .treatment__content {
    margin-top: 1.25rem;
  }
}
.treatment__content p {
  max-width: 44.5rem;
}
@media (max-width: 61.99875em) {
  .treatment__content p {
    font-size: 1.125rem;
  }
}
@media (max-width: 47.99875em) {
  .treatment__content p {
    font-size: 1rem;
  }
}
.treatment__content a {
  font-size: 1.125rem;
  line-height: 130%;
  text-decoration-line: underline;
  transition: all 0.3s ease 0s;
  margin-top: 1.875rem;
  display: block;
}
.treatment__content a:hover {
  text-decoration: none;
}
@media (max-width: 47.99875em) {
  .treatment__content a {
    font-size: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .treatment__content ul {
    font-size: 1rem;
  }
}
.treatment .tagline {
  margin-top: 3.4375rem;
}
@media (max-width: 61.99875em) {
  .treatment .tagline {
    margin-top: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .treatment .tagline span {
    font-size: 31px;
  }
  .treatment .tagline span span {
    transform: translate(0px, -10px);
  }
}
@media (max-width: 47.99875em) {
  .treatment .treatment__img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.treatment .treatment__img img {
  width: 22.4375rem;
  height: 28.375rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 29.99875em) {
  .treatment .treatment__img img {
    width: 100%;
    height: 26.9375rem;
  }
}
.treatment .treatment__inner {
  display: grid;
  grid-template-columns: 22.4375rem 1fr;
  gap: 5.1875rem;
}
@media (max-width: 81.875em) {
  .treatment .treatment__inner {
    gap: 1.875rem;
    grid-template-columns: 21.1875rem 1fr;
  }
}
@media (max-width: 47.99875em) {
  .treatment .treatment__inner {
    grid-template-columns: 1fr;
  }
}

.tagline span {
  font-family: "Antarctic";
  font-size: 2.8125rem;
  color: var(--blue);
  padding-bottom: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.tagline span span {
  display: block;
  text-align: right;
  transform: translate(0rem, -1.25rem);
}

.results__subtitle {
  display: inline-flex;
  flex-direction: column;
  font-size: 6rem;
}
@media (max-width: 61.99875em) {
  .results__subtitle {
    font-size: 4.5rem;
    width: 100%;
  }
  .results__subtitle span {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 47.99875em) {
  .results__subtitle {
    font-size: 3.375rem;
    line-height: 70%;
  }
  .results__subtitle span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.results__subtitle span {
  display: block;
  text-align: right;
  transform: translate(0px, -10px);
  padding-left: 39.6875rem;
}
@media (max-width: 81.875em) {
  .results__subtitle span {
    padding-left: 6.25rem;
  }
}
@media (max-width: 47.99875em) {
  .results__subtitle span {
    padding-left: 0rem;
    transform: translate(0px, 10px);
  }
}
.results__row {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .results__row {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .results__row {
    margin-top: 3.125rem;
  }
}
.results__column h3 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 81.875em) {
  .results__column h3 {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .results__column h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 47.99875em) {
  .results__column h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.results__column p:not(:last-child) {
  margin-bottom: 0.625rem;
}
.results__column-body {
  padding: 2.5rem 3.75rem;
  background: var(--gray);
  max-width: 38.4375rem;
}
@media (max-width: 81.875em) {
  .results__column-body {
    max-width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .results__column-body {
    padding: 1.875rem 1.25rem;
  }
}
.results__column-body p {
  line-height: 1.375rem;
}
.results__column-body p:not(:last-child) {
  margin-bottom: 0.75rem;
}
.results__column-content {
  padding: 2.8125rem 1.875rem;
  background: var(--white);
  position: relative;
}
@media (max-width: 47.99875em) {
  .results__column-content {
    padding: 1.875rem 1.25rem;
  }
}
@media (max-width: 29.99875em) {
  .results__column-content p {
    font-size: 0.875rem;
  }
}
.results__column-content::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
.results__column-content::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
.results__column-content span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
.results__column-title {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 61.99875em) {
  .results__column-title {
    flex-wrap: wrap;
  }
}
@media (max-width: 47.99875em) {
  .results__column-title {
    gap: 0rem;
  }
}
@media (max-width: 47.99875em) {
  .results__column-title {
    margin-bottom: 3.75rem;
  }
}
.results__column-title span {
  transform: translate(0px, 5px);
}
@media (max-width: 47.99875em) {
  .results__column-title span {
    font-size: 1.625rem;
  }
}
@media (max-width: 47.99875em) {
  .results__column-title span {
    transform: translate(0px, 0px);
  }
}

.important {
  display: flex;
  gap: 1.25rem;
}
.important span {
  position: relative !important;
}

.steps__container h2 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .steps__container h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.steps__container h3 {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 47.99875em) {
  .steps__container h3 {
    font-size: 1rem;
  }
}
.steps__container p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.steps__container p b {
  text-transform: uppercase;
}
.steps__container ol {
  font-size: 1.125rem;
  line-height: 130%;
  margin-top: 1.25rem;
}
.steps__container ol li {
  margin-left: 0.3125rem;
}
@media (max-width: 47.99875em) {
  .steps__container ol li {
    font-size: 0.875rem;
  }
}
.steps__container ol li:not(:last-child) {
  padding-bottom: 0.625rem;
}
.steps__container ul {
  font-size: 1.125rem;
  line-height: 130%;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .steps__container ul li {
    font-size: 1rem;
  }
}
.steps__container ul li:not(:last-child) {
  padding-bottom: 0.3125rem;
}
.steps__block {
  margin-bottom: 8.125rem;
}
@media (max-width: 61.99875em) {
  .steps__block {
    margin-bottom: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  .steps__block {
    margin-bottom: 3.125rem;
  }
}
.steps__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .steps__inner {
    grid-template-columns: 1fr;
  }
}
.steps__column .steps__column-btn {
  margin-top: 1.875rem;
}
@media (max-width: 29.99875em) {
  .steps__column .steps__column-btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.steps .steps__column-w {
  padding: 2.8125rem 3.125rem;
  background: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
@media (max-width: 47.99875em) {
  .steps .steps__column-w {
    padding: 1.875rem 1.25rem;
  }
}
.steps__column-body {
  padding: 2.8125rem 3.75rem;
  background: var(--gray);
}
@media (max-width: 61.99875em) {
  .steps__column-body {
    padding: 1.875rem 1.25rem;
  }
}
.steps__column-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-align: center;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .steps__column-subtitle {
    font-size: 4.5rem;
  }
  .steps__column-subtitle span {
    font-size: 2.25rem;
  }
}
@media (max-width: 47.99875em) {
  .steps__column-subtitle {
    font-size: 3.375rem;
  }
  .steps__column-subtitle span {
    font-size: 1.5625rem;
  }
}
.steps__column-subtitle span {
  display: block;
  transform: translate(0px, -5px);
}
.steps__column-content {
  padding: 2.8125rem 1.875rem 1.875rem;
  background: var(--white);
  box-shadow: 0px 10px 30px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
  position: relative;
}
@media (max-width: 47.99875em) {
  .steps__column-content {
    padding: 2.1875rem 1.25rem 1.875rem;
  }
}
.steps__column-content ol {
  margin-top: 0rem;
}
.steps__column-content::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
.steps__column-content::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
.steps__column-content span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
.steps__column-title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
@media (max-width: 61.99875em) {
  .steps__column-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.steps__column-img img {
  max-width: 100%;
  width: 38.375rem;
  height: 37.4375rem;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .steps__column-img img {
    height: 33.8125rem;
  }
}
@media (max-width: 29.99875em) {
  .steps__column-img img {
    height: 16.375rem;
  }
}
.steps__items {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 3.125rem;
  margin-top: 8.125rem;
}
@media (max-width: 61.99875em) {
  .steps__items {
    margin-top: 5.625rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
  }
}
@media (max-width: 47.99875em) {
  .steps__items {
    gap: 3.125rem 0.8125rem;
  }
}
.steps__item {
  text-align: center;
}
.steps__item-title {
  font-size: 3.625rem;
  line-height: 3.625rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}
@media (max-width: 61.99875em) {
  .steps__item-title {
    font-size: 3rem;
    line-height: 3.625rem;
  }
}
@media (max-width: 47.99875em) {
  .steps__item-title {
    font-size: 2rem;
    line-height: 2.375rem;
    margin-bottom: 0.625rem;
  }
}
.steps__item-text {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: center;
  max-width: 10rem;
  margin: 0 auto;
}
@media (max-width: 47.99875em) {
  .steps__item-text {
    font-size: 0.875rem;
  }
}
.steps__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepsBlock {
  padding-top: 5.625rem;
}

.steps__block-n {
  margin-bottom: 3.125rem;
}

.steps__block-t {
  margin-top: 8.125rem;
}
@media (max-width: 61.99875em) {
  .steps__block-t {
    margin-top: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  .steps__block-t {
    margin-top: 3.125rem;
  }
}

@media (max-width: 61.99875em) {
  .steps__block-rew .steps__inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.face__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 6rem;
}
@media (max-width: 47.99875em) {
  .face__title h2 {
    width: 100%;
  }
}
@media (max-width: 47.99875em) {
  .face__title {
    align-items: flex-start;
  }
}
@media (max-width: 61.99875em) {
  .face__title {
    font-size: 5rem;
  }
  .face__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .face__title {
    font-size: 3.375rem;
  }
  .face__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.face__title span {
  display: block;
  text-align: right;
  padding-left: 3.125rem;
}
.face__slider {
  max-width: 68.4375rem;
  margin: 0 auto;
  margin-top: 3.125rem;
}
.face__swiper {
  margin-bottom: 3.75rem;
}
.face__slide-img img {
  width: 100%;
  max-width: 100%;
  height: 18.8125rem;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .face__slide-img img {
    height: 12.1875rem;
  }
}
.face__slide-title {
  padding: 1.875rem 1.25rem 0rem;
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 61.99875em) {
  .face__slide-title {
    padding: 1.25rem 1.25rem 0rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 47.99875em) {
  .face__slide-title {
    font-size: 1rem;
  }
}

.schedule__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .schedule__title {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .schedule__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.schedule__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
.schedule__content:not(:last-child) {
  margin-bottom: 8.125rem;
}
@media (max-width: 61.99875em) {
  .schedule__content:not(:last-child) {
    margin-bottom: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  .schedule__content:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 61.99875em) {
  .schedule__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 47.99875em) {
  .schedule__content {
    gap: 1.875rem;
  }
}
.schedule__content img {
  width: 38.1875rem;
  height: 14.0625rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 61.99875em) {
  .schedule__content img {
    margin: 0 auto;
  }
}
@media (max-width: 47.99875em) {
  .schedule__content img {
    width: 100%;
    height: 14.0625rem;
  }
}
.schedule__info p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.schedule .tagline {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 47.99875em) {
  .schedule .tagline {
    justify-content: flex-end;
  }
  .schedule .tagline span {
    font-size: 1.75rem;
  }
  .schedule .tagline span span {
    transform: translate(0px, -10px);
  }
}

@media (min-width: 61.99875em) {
  .curators .curators__title span {
    margin-top: 1.5625rem !important;
  }
}

.curatorsTreatment .curators__title {
  font-size: 6rem;
  align-items: flex-start;
  margin-bottom: 0rem;
}
@media (max-width: 61.99875em) {
  .curatorsTreatment .curators__title {
    font-size: 5rem;
  }
  .curatorsTreatment .curators__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .curatorsTreatment .curators__title {
    font-size: 3.125rem;
  }
  .curatorsTreatment .curators__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.curatorsTreatment .curators__title span {
  padding-left: 0rem;
  text-align: right;
  display: block;
  width: 100%;
  transform: translate(0px, 20px);
}
.curatorsTreatment .cards__slider {
  padding-top: 4.375rem;
}

.comparison__title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
}
.comparison__inner {
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
  background: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.comparison__slider {
  max-width: 66.25rem;
  margin: 0 auto;
  padding-top: 3.125rem;
}
.comparison__swiper {
  padding-bottom: 3.125rem;
}
.comparison__slide-img img {
  width: 100%;
  max-width: 100%;
  height: 15rem;
  max-height: 100%;
  object-fit: cover;
}

.chapter__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
    font-size: 12em;
}
@media (max-width: 47.99875em) {
  .chapter__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }
}
@media (max-width: 61.99875em) {
  .chapter__title {
    font-size: 5rem;
  }
  .chapter__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .chapter__title {
    font-size: 3.375rem;
  }
  .chapter__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    padding-left: 12.5rem;
  }
}
@media (max-width: 29.99875em) {
  .chapter__title span {
    padding-left: 1.25rem;
    text-align: right;
    width: 100%;
  }
}
.chapter__title span {
  transform: translate(0px, 13px);
}
@media (max-width: 47.99875em) {
  .chapter__title span {
    transform: translate(0px, 0px);
  }
}
@media (max-width: 47.99875em) {
  .chapter .attendance__row {
    margin-top: 1.25rem;
  }
}

.how img {
  margin-bottom: 3.125rem;
  margin-left: 0rem;
}

.workAbout .info-work__user {
  flex: 0 0 5rem;
}
.workAbout .info-work__user img {
  width: 5rem;
  height: 5rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #6f6f6f;
  background: #f2f2f2;
}
.workAbout .info-work__content {
  justify-content: flex-start;
  gap: 1.25rem;
}
.workAbout .info-work__text {
  max-width: 14.5625rem;
}
.workAbout .info-work__content {
  margin-bottom: 1.875rem;
}
.workAbout .work__row {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 81.875em) {
  .workAbout .work__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0rem;
  }
}
.workAbout .work__column-videos {
  max-height: 25.625rem;
  padding-bottom: 65.25%;
}
@media (max-width: 81.875em) {
  .workAbout .work__column-body .tagline {
    display: none;
  }
}
@media (max-width: 47.99875em) {
  .workAbout .work__column-body .tagline {
    display: block;
  }

    .workAbout .work__column-body .tagline span{

        font-size: 4em;
        height: 75px !important;
    }
}
@media (max-width: 81.875em) {
  .workAbout .work__column-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.875rem;
  }
}
.workAbout .work__column-info .tagline span {
  font-size: 2.375rem;
}
.workAbout .work__column-info .tagline span span {
  transform: translate(0px, -10px);
}
@media (max-width: 81.875em) {
  .workAbout .work__column-info .tagline {
    display: block;
  }
}
@media (max-width: 47.99875em) {
  .workAbout .work__column-info .tagline {
    display: none;
  }
}
@media (max-width: 81.875em) {
  .workAbout .work__column-videos {
    padding-bottom: 40.25%;
  }
}
@media (max-width: 29.99875em) {
  .workAbout .work__column-videos {
    padding-bottom: 56.25%;
  }
}

.awards__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
    font-size: 12em;
}
.awards__slider {
  padding-top: 3.125rem;
}
@media (max-width: 29.99875em) {
  .awards__slider {
    padding-top: 0rem;
  }
}
.awards__swiper {
  padding-bottom: 3.125rem;
}

.awards__swiper .swiper-slide{
    opacity: 1;
}
@media (max-width: 29.99875em) {
  .awards__swiper {
    flex-wrap: wrap;
  }
  .awards__swiper .awards__slide {
    margin-top: 3.125rem;
  }
}
@media (max-width: 29.99875em) {
  .awards__slide {
    opacity: 1;
  }
}
.awards__slide-top {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-bottom: 1.25rem;
  min-height: 4.25rem;
}
.awards__slide-img img {
  max-width: 6.0625rem;
  max-height: 4.25rem;
  object-fit: contain;
}
.awards__slide-title {
  font-family: "MuseoSansCyrl";
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  max-width: 14.6875rem;
}
.awards__slide-content p {
  font-size: 1.125rem;
  line-height: 130%;
}
.awards__slide-content p:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.doctors__title {
  font-size: 6rem;
}
.doctors__title small {
  text-transform: lowercase;
}
.doctors__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.125rem;
  margin-top: 3.125rem;
}
.doctors .cardsTwo__slider {
  margin-top: 1.875rem;
}
.doctors .cards__slide {
  color: var(--white);
  display: flex;
  flex-direction: column;
}
.doctors .cards__slide-content {
  height: 100%;
}
.doctors .cards__slide-title {
  text-align: left;
  margin-bottom: 1.25rem;
}
.doctors .cards__slide-experience {
  color: var(--white);
}
.doctors .cards__slide-img {
  margin-bottom: 0rem;
}
.doctors .cards__slide-img img {
  max-height: 20rem;
}
.doctors .doctors__content {
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}
@media (max-width: 61.99875em) {
  .doctors .doctors__content {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  .doctors .doctors__content {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.doctors .doctors__content p:not(:last-child) {
  margin-bottom: 1.875rem;
}

.cards__slide-content {
  padding: 1.25rem 1.25rem 2.5rem;
  background: var(--gray);
}

.smart__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.smart__title {
  font-size: 6rem;
  margin-bottom: 1.875rem;
}
.smart__items {
  margin-top: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.smart .tagline {
  transform: translate(0px, 7px);
}
.smart .tagline span {
  font-size: 1.8125rem;
  line-height: 1;
}
.smart .tagline span span {
  transform: translate(0px, -10px);
}
.smart .smart__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}

.curatorsDoc .cardsTwo__slider {
  margin-top: 0rem;
}
.curatorsDoc p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.curatorsDoc .curators__title {
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .curatorsDoc .curators__title {
    margin-bottom: 1.875rem;
  }
}
.curatorsDoc .curators__title {
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  display: flex;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .curatorsDoc .curators__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }
}
.curatorsDoc .curators__title span {
  transform: translate(0px, 10px);
  padding-left: 0rem;
}
@media (max-width: 47.99875em) {
  .curatorsDoc .curators__title span {
    text-align: right;
    width: 100%;
  }
}

.curatorsDoc01 p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.curatorsDoc01 .curators__title {
  margin-bottom: 3.125rem;
}
@media (max-width: 47.99875em) {
  .curatorsDoc01 .curators__title {
    font-size: 3.125rem;
  }
}
.curatorsDoc01 .curators__title {
  align-items: flex-start;
}

@media (max-width: 47.99875em) {
  .specialist .specialist__item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.specialist__container h1 {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.specialist__container ul {
  font-size: 1.125rem;
  line-height: 130%;
}
.specialist__container p {
  font-size: 1.125rem;
  line-height: 130%;
}

.specialist__doc {
  margin-top: 1.25rem;
}
.specialist__items {
  margin-top: 2.8125rem;
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}
.specialist .tagline span {
  font-size: 3.8125rem;
  line-height: 1;
}
.specialist .tagline span span {
  transform: translate(0px, -10px);
}
@media (max-width: 47.99875em) {
  .specialist .tagline {
    display: none;
  }
}
.specialist .specialist__inner {
  display: grid;
  grid-template-columns: 24.5625rem 1fr;
  gap: 3.125rem;
}

.blitz__container p:not(:last-child) {
  margin-bottom: 0rem;
}
.blitz .spollers__content:not(:last-child) {
  margin-bottom: 1.875rem;
}
.blitz .spollers__content-dop {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 130%;
  margin-bottom: 1.25rem;
}
.blitz .spollers__content-dopUp {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
}
.blitz .blitz__title {
  font-size: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blitz .blitz__title span {
  transform: translate(0px, 15px);
}

.advantage__container strong {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.advantage__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.advantage__container a {
  transition: all 0.3s ease 0s;
  font-size: 1.125rem;
  line-height: 130%;
  text-decoration-line: underline;
  display: block;
  margin-top: 3.125rem;
}
.advantage__container a:hover {
  text-decoration: none;
}
.advantage__container blockquote {
  padding: 2.5rem 1.875rem 2.5rem 5rem;
  background: var(--gray);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 130%;
  position: relative;
}
.advantage__container blockquote::before {
  content: "";
  position: absolute;
  top: 2.1875rem;
  left: 1.875rem;
  background: url("../img/advantage/01.svg") 0 0/1.875rem 1.5625rem no-repeat;
  width: 1.875rem;
  height: 1.5625rem;
}
.advantage__videos {
  padding-bottom: 72.25%;
  margin-bottom: 3.125rem;
}
.advantage__title {
  margin-bottom: 3.125rem;
}
.advantage__title h2 {
  font-size: 6rem;
  display: flex;
  flex-direction: column;
}
.advantage__title h2 span {
  transform: translate(0px, -10px);
  padding-left: 21.875rem;
}
.advantage .advantage__inner {
  display: grid;
  grid-template-columns: 1fr 31.3125rem;
  gap: 3.125rem;
}

.casesSpecialist .cases__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
.casesSpecialist .cases__subtitle h2 {
  font-family: "Antarctic";
  font-style: normal;
  font-weight: 400;
  font-size: 6rem;
  line-height: 8.1875rem;
  text-transform: none;
}
.casesSpecialist .cases__subtitle span {
  transform: translate(0px, 10px);
}

.formImage__container h2 {
  font-family: "MuseoSansCyrl";
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin-bottom: 1.25rem;
}
.formImage__row {
  display: grid;
  grid-template-columns: 41rem 1fr;
  gap: 1.875rem;
  background: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.formImage__column-img {
  height: 100%;
}
.formImage__column-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.formImage__form {
  padding: 3.125rem 3.75rem 3.125rem 0rem;
}
.formImage .form__items {
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.formImage .form__items .form__item-textarea {
  grid-column-start: 1 span;
}
.formImage .form__btn {
  justify-content: flex-start;
}
.formImage .formImage__text {
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin-bottom: 1.25rem;
}
.formImage .form__btn {
  margin-top: 1.875rem;
}

.licenses__container h1 {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
}
.licenses__container h3 {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
}
.licenses__container ul {
  font-size: 1.125rem;
  line-height: 130%;
}
.licenses__container ul li:not(:last-child) {
  padding-bottom: 1.25rem;
}
.licenses__content {
  margin-top: 3.125rem;
}
@media (max-width: 61.99875em) {
  .licenses__content {
    margin-top: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .licenses__content {
    margin-top: 1.25rem;
  }
}
.licenses__content p {
  font-size: 1.125rem;
  line-height: 130%;
  max-width: 52.3125rem;
}
.licenses__content p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.licenses .cards__slider {
  padding-top: 3.125rem;
}
.licenses .cards__slide-img {
  margin-bottom: 1.875rem;
}
.licenses .cards__slide-img img {
  max-height: 25rem;
}

@media (max-width: 61.99875em) {
  .youthLicenses .about__title {
    line-height: 80% !important;
  }
  .youthLicenses .about__title span {
    line-height: 70% !important;
  }
}
.youthLicenses .youthLicenses__body {
  position: relative;
  z-index: 2;
  padding: 3.125rem 3.75rem;
  background: var(--white);
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
  margin-top: 1.875rem;
}
@media (max-width: 61.99875em) {
  .youthLicenses .youthLicenses__body {
    padding: 2.5rem 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .youthLicenses .youthLicenses__body {
    padding: 1.875rem 1.25rem;
  }
}
.youthLicenses .youthLicenses__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.875rem;
  padding: 0rem 1.25rem;
}
@media (max-width: 61.99875em) {
  .youthLicenses .youthLicenses__item {
    gap: 1.25rem;
  }
}
.youthLicenses .youthLicenses__item:not(:last-child) {
  border-bottom: 0.0625rem solid var(--darkGray);
  padding-bottom: 1.875rem;
  margin-bottom: 1.875rem;
  align-items: flex-start;
}
.youthLicenses .youthLicenses__item-title {
  display: block;
  font-size: 1.125rem;
  line-height: 130%;
  max-width: 62.4375rem;
}
@media (max-width: 47.99875em) {
  .youthLicenses .youthLicenses__item-title {
    font-size: 1rem;
  }
}
.youthLicenses .youthLicenses__item-link {
  transition: all 0.3s ease 0s;
  font-size: 1.125rem;
  line-height: 130%;
  text-decoration-line: underline;
}
.youthLicenses .youthLicenses__item-link:hover {
  text-decoration: none;
}
@media (max-width: 47.99875em) {
  .youthLicenses .youthLicenses__item-link {
    font-size: 0rem;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 20px;
    transform: rotate(180deg);
    background: url("../img/arrow.svg") center center/contain no-repeat;
  }
}

.like__container h3 {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  max-width: 55.4375rem;
}
@media (max-width: 47.99875em) {
  .like__container h3 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.like__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .like__container p:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.like__container img {
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .like__container img {
    float: none;
    width: 100%;
    height: 29.5rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 29.99875em) {
  .like__container img {
    height: 14.3125rem;
    margin-bottom: 1.875rem;
  }
}
.like .like__suptitle {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.like .like__suptitle-m {
  max-width: 55.4375rem;
}
.like__title h2 {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 6rem;
  gap: 1.875rem;
  margin-bottom: 3.125rem;
}
.like__title h2 span {
  transform: translate(0px, 15px);
}
@media (max-width: 61.99875em) {
  .like__title h2 {
    font-size: 5rem;
    line-height: 130%;
  }
  .like__title h2 span {
    font-size: 2rem;
    line-height: 130%;
  }
}
@media (max-width: 47.99875em) {
  .like__title h2 {
    font-size: 3.375rem;
    margin-bottom: 1.875rem;
  }
  .like__title h2 span {
    font-size: 1.625rem;
    transform: translate(0px, 0px);
  }
}
@media (max-width: 47.99875em) {
  .like__title h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0rem;
  }
  .like__title h2 span {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 29.99875em) {
  .like__title h2 span {
    text-align: right;
  }
}

.centre__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  gap: 1.875rem;
}
@media (max-width: 61.99875em) {
  .centre__title {
    font-size: 5rem;
  }
  .centre__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .centre__title {
    font-size: 3.375rem;
  }
  .centre__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.centre__title span {
  transform: translate(0px, 15px);
}
@media (max-width: 47.99875em) {
  .centre__title span {
    transform: translate(0px, 5px);
  }
}
.centre__slider {
  margin-top: 3.125rem;
}
@media (max-width: 47.99875em) {
  .centre__slider {
    margin-top: 1.875rem;
  }
}
.centre__slider .centre__swiper {
  height: 23.8125rem;
  margin-bottom: 5rem;
}
@media (max-width: 61.99875em) {
  .centre__slider .centre__swiper {
    height: 14.8125rem;
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .centre__slider .centre__swiper {
    height: 16.25rem;
  }
}
@media (max-width: 29.99875em) {
  .centre__slider .centre__swiper {
    height: 13.25rem;
  }
}
.centre__slide {
  display: flex;
  align-items: center;
  transition: all 0.3s ease 0s;
}
.centre__slide-img img {
  height: 18.125rem !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.6s ease 0s;
  transform: scale(1);
  width: 17.625rem;
}
@media (max-width: 81.875em) {
  .centre__slide-img img {
    width: 9.6875rem;
    height: 9.875rem !important;
  }
}
@media (max-width: 47.99875em) {
  .centre__slide-img img {
    height: 16.25rem !important;
  }
}
@media (max-width: 29.99875em) {
  .centre__slide-img img {
    height: 13.25rem !important;
    transition: all 0.3s ease 0s;
  }
}
.centre .swiper-slide-active .centre__slide-img {
  width: 100%;
}
.centre .swiper-slide-active .centre__slide-img img {
  width: 100%;
}
@media (min-width: 47.99875em) {
  .centre .swiper-slide-active .centre__slide-img img {
    transform: scale(1.5);
  }
}
@media (max-width: 47.99875em) {
  .centre .swiper-slide-active .centre__slide-img img {
    height: 13.25rem;
  }
}
.centre .swiper-slide-next {
  transition: all 0.3s ease 0s;
}
.centre .swiper-slide-next .centre__slide-img {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.centre .swiper-slide-prev {
  opacity: 1;
}

.principles__title {
  font-size: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 61.99875em) {
  .principles__title {
    font-size: 5rem;
  }
  .principles__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .principles__title {
    font-size: 3.375rem;
    gap: 0.625rem;
  }
  .principles__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.principles__title span {
  transform: translate(0px, 15px);
}
@media (max-width: 81.875em) {
  .principles__title span {
    transform: translate(0px, 10px);
  }
}
@media (max-width: 47.99875em) {
  .principles__title span {
    transform: translate(0px, 5px);
  }
}
.principles__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.3125rem 3.125rem;
  margin-top: 3.125rem;
}
@media (max-width: 61.99875em) {
  .principles__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .principles__row {
    margin-top: 2.1875rem;
  }
}
.principles__column {
  padding: 2.5rem 3.125rem;
  background: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.principles__column-title {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 47.99875em) {
  .principles__column-title {
    font-size: 1rem;
  }
}
.principles__column-content p {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .principles__column-content p {
    font-size: 1rem;
  }
}
.principles__column-content p:not(:last-child) {
  margin-bottom: 1.25rem;
}

.rejuvenation__subtitle {
  display: flex;
  flex-direction: column;
  font-size: 6rem;
}
.rejuvenation__subtitle span {
  text-align: right;
  transform: translate(0px, -10px);
}
.rejuvenation__title {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.rejuvenation__block {
  margin-top: 3.125rem;
}
.rejuvenation__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
.rejuvenation__info {
  padding: 1.875rem;
  background: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
  margin-bottom: 1.875rem;
}
.rejuvenation__info-date {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: var(--darkGray);
}
.rejuvenation__info-aftor {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: var(--darkGray);
  margin-bottom: 0.625rem;
}
.rejuvenation__info-content {
  margin-bottom: 1.25rem;
}
.rejuvenation__info-content p {
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.rejuvenation__info-content p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.rejuvenation__info-time {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  color: var(--darkGray);
}
.rejuvenation__text p {
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.rejuvenation__text p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.rejuvenation__list {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.rejuvenation__list li {
  padding-left: 1.5625rem;
  position: relative;
}
.rejuvenation__list li:not(:last-child) {
  padding-bottom: 0.9375rem;
}
.rejuvenation__list li::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0.6875rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: var(--black);
}
.rejuvenation__advice {
  background: var(--gray);
  padding: 1.875rem 3.75rem 3.125rem;
}
.rejuvenation__advice-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 3.4375rem;
}
.rejuvenation__advice-content {
  position: relative;
  background: var(--white);
  padding: 2.8125rem 1.875rem;
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
}
.rejuvenation__advice-content::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
.rejuvenation__advice-content::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
.rejuvenation__advice-content span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
.rejuvenation__advice-text p {
  font-size: 1.125rem;
  line-height: 1.375rem;
}
.rejuvenation__advice-text p:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.rejuvenation__videos {
  padding-bottom: 66.25%;
}

.main__slide-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
@media (max-width: 47.99875em) {
  .main__slide-items {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.main__slide-items .tagline {
  transform: translate(0px, 20px);
}

.work__column .tagline > span,
.main__slide-items .tagline > span {
    height: 100px !important;
    font-size: 5em;
}
.main__slide-items .tagline span span {
  display: block;
  text-align: right;
  transform: translate(0rem, -1.25rem);
}

.doctors__slider {
  margin-bottom: 1.875rem;
}
@media (max-width: 29.99875em) {
  .doctors__slider {
    display: none;
  }
}
@media (max-width: 61.99875em) {
  .doctors__slider {
    margin-bottom: 1.25rem;
  }
}
.doctors__slider .doctors__slide {
  transition: all 0.3s ease 0s;
}
.doctors__slider .doctors__slide .doctors__slide-img img {
  width: 100%;
  height: 16.5rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}
@media (max-width: 61.99875em) {
  .doctors__slider .doctors__slide .doctors__slide-img img {
    height: 15.125rem;
  }
}
@media (min-width: 29.99875em) {
  .doctors__slider .doctors__slide {
    width: auto !important;
  }
}

.doctors01__slider .doctors__swiper {
  padding-bottom: 3.125rem;
}
.doctors01__slider .doctors__slide {
  transition: all 0.3s ease 0s;
}
.doctors01__slider .doctors__slide .doctors__slide-img img {
  width: 100%;
  height: 21rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
}
@media (max-width: 61.99875em) {
  .doctors01__slider .doctors__slide .doctors__slide-img img {
    height: 17.125rem;
  }
}
@media (max-width: 29.99875em) {
  .doctors01__slider .doctors__slide .doctors__slide-img img {
    height: 12.625rem;
  }
}
@media (min-width: 29.99875em) {
  .doctors01__slider .doctors__slide {
    width: auto !important;
  }
}

.form02 {
  position: relative;
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
  background: var(--gray);
}
.form02 .form__container {
  position: relative;
  z-index: 2;
}

.accounting__title {
  font-size: 6rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 47.99875em) {
  .accounting__title {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 61.99875em) {
  .accounting__title {
    font-size: 5rem;
  }
  .accounting__title span {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .accounting__title {
    font-size: 2.75rem;
  }
  .accounting__title span {
    font-size: 1.25rem;
    line-height: 1.9375rem;
  }
}
.accounting__title span {
  display: block;
  transform: translate(0px, -15px);
  padding-left: 12.1875rem;
}
@media (max-width: 61.99875em) {
  .accounting__title span {
    padding-left: 0rem;
    text-align: center;
    transform: translate(0px, -5px);
  }
}
@media (max-width: 47.99875em) {
  .accounting__title span {
    text-align: left;
  }
}
.accounting__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .accounting__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}
@media (max-width: 81.875em) {
  .accounting__content-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.accounting__content-img img {
  width: 38.4375rem;
  height: 24.6875rem;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .accounting__content-img img {
    width: 100%;
    height: 28.4375rem;
  }
}
@media (max-width: 47.99875em) {
  .accounting__content-img img {
    height: 22.1875rem;
  }
}
@media (max-width: 29.99875em) {
  .accounting__content-img img {
    height: 13.75rem;
  }
}
.effective__title {
  margin-bottom: 3.125rem;
  font-size: 6rem;
}
@media (max-width: 61.99875em) {
  .effective__title {
    font-size: 5rem;
    margin-bottom: 1.875rem;
  }
  .effective__title span {
    font-size: 1.75rem;
  }
}
@media (max-width: 47.99875em) {
  .effective__title {
    font-size: 2.625rem;
    margin-bottom: 1.25rem;
  }
  .effective__title span {
    font-size: 1.25rem;
  }
}
.effective__title span {
  display: block;
  transform: translate(0px, -15px);
  padding-left: 3.4375rem;
}
@media (max-width: 61.99875em) {
  .effective__title span {
    padding-left: 0rem;
    line-height: 2.125rem;
    transform: translate(0px, 0px);
  }
}
.effective__text p {
  max-width: 46rem;
}
.effective__text p:not(:last-child) {
  margin-bottom: 1.875rem;
}
.effective__info {
  font-size: 0.875rem;
  line-height: 130%;
}
.effective .spollers {
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .effective .spollers {
    margin-bottom: 1.25rem;
  }
}

.really__container ul {
  font-size: 1.125rem;
  line-height: 130%;
}
.really__container ul li:not(:last-child) {
  padding-bottom: 1.5625rem;
}
.really__container p:not(:last-child) {
  margin-bottom: 1.5625rem;
}
.really__container a {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 130%;
  text-decoration-line: underline;
  display: inline-block;
  transition: all 0.3s ease 0s;
  margin-top: 1.5625rem;
}
.really__container a:hover {
  text-decoration: none;
}
.really__title {
  font-size: 6rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .really__title {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .really__title {
    font-size: 2.625rem;
  }
  .really__title span {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.really__title span {
  display: block;
  transform: translate(0px, -15px);
  padding-left: 2.1875rem;
}
@media (max-width: 61.99875em) {
  .really__title span {
    padding-left: 0rem;
    transform: translate(0px, 10px);
  }
}
.really .really__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .really .really__inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.really .really__inner-r {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .really .really__inner-r {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
  }
}
@media (max-width: 81.875em) {
  .really .really__img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.really .really__img img {
  width: 38.4375rem;
  height: 28.8125rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .really .really__img img {
    width: 100%;
    height: 33.125rem;
  }
}
@media (max-width: 29.99875em) {
  .really .really__img img {
    height: 16.0625rem;
  }
}

.technology__title {
  font-size: 6rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .technology__title {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .technology__title {
    font-size: 5rem;
  }
  .technology__title span {
    font-size: 1.75rem;
    line-height: 2.0625rem;
  }
}
@media (max-width: 47.99875em) {
  .technology__title {
    font-size: 2.625rem;
  }
  .technology__title span {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.technology__title span {
  display: block;
  transform: translate(0px, -15px);
  padding-left: 23.75rem;
}
@media (max-width: 61.99875em) {
  .technology__title span {
    padding-left: 0rem;
    transform: translate(0px, 0px);
    text-align: right;
  }
}
@media (max-width: 47.99875em) {
  .technology__title span {
    text-align: center;
  }
}
@media (max-width: 29.99875em) {
  .technology__title span {
    text-align: right;
  }
}
.technology__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .technology__row {
    gap: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .technology__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 29.99875em) {
  .technology__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.technology__column {
  background: var(--white);
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}
.technology__column-body {
  padding: 5rem 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .technology__column-body {
    padding: 3.125rem 1.875rem;
  }
}
.technology__column-img {
  height: 3.75rem;
  margin-bottom: 2.1875rem;
}
.technology__column-title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}
.technology__column-text {
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.reallyMoveo .really__container h2 {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 2.6875rem;
  width: 100%;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .reallyMoveo .really__subtitle {
    margin-bottom: 1.875rem !important;
  }
}
@media (max-width: 61.99875em) {
  .reallyMoveo .really__subtitle {
    font-size: 1.75rem !important;
  }
}
@media (max-width: 47.99875em) {
  .reallyMoveo .really__subtitle {
    font-size: 1.25rem !important;
    line-height: 1.5rem !important;
  }
}

.auditMoveo .audit__videos {
  max-height: 25.6875rem;
}
@media (max-width: 61.99875em) {
  .auditMoveo .audit__subtitle {
    font-size: 1.75rem;
  }
}
@media (max-width: 47.99875em) {
  .auditMoveo .audit__subtitle {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

.workMoveo {
  padding-top: 0rem;
}
.workMoveo .work__row {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 81.875em) {
  .workMoveo .work__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}
@media (max-width: 81.875em) {
  .workMoveo .work__column-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.workMoveo .work__column-img img {
  width: 38.4375rem;
  height: 25.625rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .workMoveo .work__column-img img {
    width: 100%;
  }
}
@media (max-width: 29.99875em) {
  .workMoveo .work__column-img img {
    height: 14.25rem;
  }
}
@media (min-width: 81.875em) {
  .workMoveo .work__column-info {
    max-width: 32.5rem;
  }
}
@media (max-width: 61.99875em) {
  .workMoveo .work__column-title {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .workMoveo .work__column-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 47.99875em) {
  .workMoveo .info-work__img {
    display: none;
  }
}

.youthMoveo .about__title {
  margin-bottom: 5rem;
}
.youthMoveo .youthLicenses__body {
  padding: 3.125rem 3.75rem;
  background: var(--white);
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
  position: relative;
  z-index: 2;
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__body {
    padding: 2.1875rem 1.25rem 1.875rem;
  }
}
.youthMoveo .youthLicenses__body::before {
  content: "";
  position: absolute;
  top: -1.875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  border-bottom: 1.4375rem solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  height: 0;
  width: 2.6875rem;
  display: block;
}
.youthMoveo .youthLicenses__body::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 0.625rem solid #fff;
}
.youthMoveo .youthLicenses__body span {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translate(-50%, 0rem);
  width: 10.1875rem;
  height: 1.375rem;
  background: #ffffff;
  box-shadow: 0px 15px 27px -5px rgba(117, 117, 117, 0.25);
}
.youthMoveo .youthLicenses__top-items {
  display: grid;
  grid-template-columns: 1fr 5rem 6.25rem 7.5625rem 10.625rem;
  gap: 2.8125rem;
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__top-items {
    grid-template-columns: 11.125rem 5rem 6.25rem 6.25rem 8.75rem;
    gap: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .youthMoveo .youthLicenses__top-items {
    display: none;
  }
}
.youthMoveo .youthLicenses__top-item {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__top-item {
    font-size: 1rem;
  }
}
.youthMoveo .youthLicenses__top {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .youthMoveo .youthLicenses__top {
    margin-bottom: 0rem;
  }
}
.youthMoveo .youthLicenses__item {
  display: grid;
  grid-template-columns: 1fr 5rem 6.25rem 7.5625rem 10.625rem;
  gap: 2.8125rem;
  padding-bottom: 3.125rem;
  border-bottom: 0.0625rem solid var(--darkGray);
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__item {
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__item {
    grid-template-columns: 11.125rem 5rem 6.25rem 6.25rem 8.75rem;
    gap: 1.25rem;
  }
}
@media (max-width: 47.99875em) {
  .youthMoveo .youthLicenses__item {
    grid-template-columns: 1fr 7.0625rem;
    gap: 0.625rem 1.875rem;
  }
}
.youthMoveo .youthLicenses__item:not(:last-child) {
  margin-bottom: 3.125rem;
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__item:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .youthMoveo .youthLicenses__item .youthLicenses__item-block:nth-child(2) {
    grid-column-start: span 2;
  }
  .youthMoveo .youthLicenses__item .youthLicenses__item-block:nth-child(3) {
    grid-column-start: span 2;
  }
}
.youthMoveo .youthLicenses__item-title {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__item-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 47.99875em) {
  .youthMoveo .youthLicenses__item-title {
    grid-column-start: span 2;
    margin-bottom: 1.25rem;
  }
}
.youthMoveo .youthLicenses__item-block {
  font-size: 1rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .youthMoveo .youthLicenses__item-block::before {
    content: attr(data-group);
    font-family: "MuseoSansCyrl";
    font-size: 0.875rem;
    line-height: 130%;
    margin-right: 0.625rem;
  }
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__item-block {
    font-size: 0.875rem;
  }
}
.youthMoveo .youthLicenses__item-link {
  text-decoration-line: underline;
  font-size: 1rem;
  line-height: 130%;
  transition: all 0.3s ease 0s;
}
.youthMoveo .youthLicenses__item-link:hover {
  text-decoration: none;
}
@media (max-width: 81.875em) {
  .youthMoveo .youthLicenses__item-link {
    font-size: 0.875rem;
  }
}
.youthMoveo .youthLicenses__body-text {
  font-size: 1rem;
  line-height: 1.1875rem;
  margin-top: 1.875rem;
}
@media (max-width: 61.99875em) {
  .youthMoveo .youthLicenses__body-text {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    margin-top: 1.25rem;
  }
}

.block__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .block__container p:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.block__container ul {
  font-size: 1.125rem;
  line-height: 130%;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .block__container ul {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}
.block__container h3 {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .block__container h3 {
    margin-bottom: 1.25rem;
  }
}
.block__container ol {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .block__container ol li {
    font-size: 1rem;
  }
}
.block__container ol li:not(:last-child) {
  padding-bottom: 0.625rem;
}
.block__title {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .block__title {
    font-size: 2rem;
    line-height: 2.375rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .block__title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
    margin-bottom: 1.25rem;
  }
}
.block .block__content {
  margin-top: 3.125rem;
  display: flex;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .block .block__content {
    flex-direction: column;
    gap: 1.875rem;
  }
}
@media (max-width: 61.99875em) {
  .block .block__content {
    margin-top: 1.875rem;
  }
}
@media (max-width: 81.875em) {
  .block .block__content .block__img {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 61.99875em) {
  .block .block__content .block__img img {
    width: 100%;
    height: 25.5rem;
  }
}
@media (max-width: 29.99875em) {
  .block .block__content .block__img img {
    height: 19.25rem;
  }
}

.procedure__container p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .procedure__container p:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.procedure__container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  width: 31.5rem;
  height: 28rem;
}
@media (max-width: 81.875em) {
  .procedure__container img {
    float: none;
    margin-right: 0rem;
    margin: 0 auto;
    display: flex;
    margin-bottom: 1.875rem;
    margin-top: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .procedure__container img {
    height: 21.75rem;
  }
}
@media (max-width: 29.99875em) {
  .procedure__container img {
    height: 15.5rem;
  }
}
.procedure__title {
  font-size: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 61.99875em) {
  .procedure__title {
    font-size: 5rem;
  }
  .procedure__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .procedure__title {
    font-size: 3.375rem;
    line-height: 70%;
  }
  .procedure__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.procedure__title span {
  transform: translate(0px, -15px);
  padding-left: 25rem;
}
@media (max-width: 61.99875em) {
  .procedure__title span {
    padding-left: 0rem;
    display: flex;
  }
}
@media (max-width: 47.99875em) {
  .procedure__title span {
    justify-content: center;
    transform: translate(0px, 0px);
  }
}
@media (max-width: 29.99875em) {
  .procedure__title span {
    justify-content: flex-end;
    width: 100%;
  }
}

.blockReferral .block__title {
  text-align: center;
}

.recommendations__title {
  text-align: center;
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .recommendations__title {
    margin-bottom: 1.875rem;
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .recommendations__title {
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
  }
}
.recommendations__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 3.125rem;
}
@media (max-width: 47.99875em) {
  .recommendations__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}
.recommendations__column-text {
  font-size: 1.125rem;
  line-height: 130%;
}
@media (max-width: 47.99875em) {
  .recommendations__column-text {
    font-size: 1rem;
  }
}

.referralAbout .youthLicenses__item {
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  grid-template-columns: 1fr 7.5rem 4rem;
  gap: 3.125rem;
}
@media (max-width: 61.99875em) {
  .referralAbout .youthLicenses__item {
    padding-left: 0rem;
    padding-right: 0rem;
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 47.99875em) {
  .referralAbout .youthLicenses__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
  }
}
.referralAbout .youthLicenses__item .youthLicenses__item-block:nth-child(2) {
  grid-column-start: span 1;
}
.referralAbout .youthLicenses__item .youthLicenses__item-block:nth-child(3) {
  grid-column-start: span 1;
}
@media (max-width: 47.99875em) {
  .referralAbout .youthLicenses__item-title {
    margin-bottom: 0rem;
  }
}

.formImageReferral {
  margin-top: 8.125rem;
}
.formImageReferral .form__items {
  max-width: 28.5625rem;
}

.home__btns {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
}
.home__btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__items {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.125rem;
  position: relative;
  z-index: 2;
}

.attendanceLoyalty .attendance__container h1 {
  font-size: 12rem;
    text-align: center;
  margin-bottom: 1.875rem;
}
.attendanceLoyalty .attendance__info {
  margin-bottom: 3.125rem;
}
.attendanceLoyalty .attendance__info p {
  max-width: 38.4375rem;
}
.attendanceLoyalty .attendance__info p:not(:last-child) {
  margin-bottom: 1.875rem;
}
@media (max-width: 47.99875em) {
  .attendanceLoyalty .attendance__column-title br {
    display: none;
  }
}

.attendance__column {
  display: flex;
  flex-direction: column;
}
.youth {
  overflow: hidden;
}

.regulations__content {
  background: var(--white);
  box-shadow: 0px 10px 130px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(100px);
  padding: 3.125rem 3.75rem;
}
.regulations__content-title {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase;
  margin-bottom: 4.375rem;
  text-align: center;
}
.regulations__content-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.375rem;
}
.regulations__content-text {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  max-width: 35.5625rem;
  margin: 0 auto;
  margin-top: 4.375rem;
  margin-bottom: 4.375rem;
}
.regulations__content-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-regulationa__inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.item-regulationa__number {
  font-weight: 700;
  font-size: 4.5rem;
  text-transform: uppercase;
  color: var(--darkGray);
  transform: translate(0px, -7px);
}
.item-regulationa__content {
  font-size: 1.125rem;
  line-height: 1.375rem;
}

.formImageLoyalty {
  margin-top: 8.125rem;
}
.formImageLoyalty h2 {
  font-family: "MuseoSansCyrl";
  font-size: 1.875rem;
  line-height: 2.25rem;
  text-transform: uppercase;
}
@media (max-width: 29.99875em) {
  .formImageLoyalty h2 {
    text-align: center;
  }
}

.cash__title {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 2.6875rem;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
}
.cash__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.cash__row {
  margin-top: 3.125rem;
  border-bottom: 0.0625rem solid var(--gray);
  border-top: 0.0625rem solid var(--gray);
}
.cash__column {
  padding: 1.875rem 1.25rem;
}
.cash__column:not(:last-child) {
  border-bottom: 0.0625rem solid var(--gray);
}
.cash__column-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.cash__column-top._spoller-active span {
  transform: rotate(180deg);
}
.cash__column-top span {
  transition: all 0.3s ease 0s;
}
.cash__column-title {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  text-transform: uppercase;
}
.cash__column-content {
  padding-top: 3.125rem;
}
.cash .checkbox__label {
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease 0s;
  margin: 0px 20px 20px 0;
}
.cash .checkbox__label:hover {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}

.cash .checkbox__label:hover::after {
  content: "";
  background: #494C52;
}
.cash .checkbox__label:hover .checkbox__text {
  color: white;
}
.cash .checkbox__label:before {
  flex: 0 0 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7f8387;
  border: 0.0625rem solid #7f8387;
}
.cash .checkbox__label::after {
  flex: 0 0 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease 0s;
}
.cash .checkbox__input:checked + .checkbox__label::after {
  background: var(--white);
}
.cash .checkbox__text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease 0s;
  color: var(--white);
  font-size: 1.125rem;
  line-height: 130%;
  text-align:left;
}
.cash .checkbox__input:checked + .checkbox__label .checkbox__text {
  color: var(--black);
}
.cash .checkbox__input:checked + .checkbox__label {
  box-shadow: -20px -20px 80px rgba(208, 223, 227, 0.2), 20px 20px 50px rgba(208, 223, 227, 0.2);
}

.cash .checkbox__label.active .checkbox__text {
	color: white;
}

.tabcontent{
	border-bottom: 0.0625rem solid var(--gray);
}
.cash__row._spoller-init:nth-last-child(-n+1){
	border-bottom: 0;
}
.cash .checkbox__label.active::before{
    flex: 0 0 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease 0s;
    background: #333333;
}
.cash ._rub {
  position: relative;
}
.cash .cash__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 1.1875rem;
}

.content-cash__items {
  font-size: 1rem;
  line-height: 130%;
  display: grid;
  grid-template-columns: 1fr 4.9375rem 6.125rem 7.5625rem 10.5rem;
  /*grid-template-columns: 1fr 4.9375rem 6.125rem 1fr;*/
  gap: 3.125rem;
  padding-bottom: 1.25rem;
}
.content-cash__items-top {
  font-family: "MuseoSansCyrl";
  font-size: 1.125rem;
  line-height: 130%;
  padding-bottom: 1.875rem;
}
.content-cash__item {
  position: relative;
}
.content-cash__item a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
}
.content-cash__item a:hover {
  text-decoration: none;
}

.smartPrice .smartPrice__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
}
.smartPrice p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.smartPrice .smart__items {
  margin-top: 1.5625rem;
}
.smartPrice .smart__title h2 {
  display: flex;
  flex-direction: column;
  font-size: 6rem;
  line-height: 1;
}
.smartPrice .smart__title h2 span {
  padding-left: 13.75rem;
  line-height: 1;
}

.mainCertificate .main__slide-title {
  font-size: 2.25rem;
  line-height: 2.6875rem;
}
@media (max-width: 61.99875em) {
  .mainCertificate .main__slide-title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media (max-width: 47.99875em) {
  .mainCertificate .main__slide-title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.mainCertificate .main__slide-text p {
  font-size: 1.125rem;
}
.mainCertificate .main__content {
  margin-left: 0rem;
  max-width: 38.625rem;
  padding: 3.125rem;
}
@media (max-width: 47.99875em) {
  .mainCertificate .main__content {
    padding: 1.875rem;
  }
}
.mainCertificate .main__container-image {
  position: relative;
  z-index: 2;
  margin-left: -8.75rem;
}
@media (max-width: 47.99875em) {
  .mainCertificate .main__slide-text p {
    font-size: 1rem;
  }
}

.main__slide-text {
  color: #6f6f6f;
}
.main__slide-text a {
  transition: all 0.3s ease 0s;
  text-decoration: underline;
  color: var(--black);
}
.main__slide-text a:hover {
  text-decoration: none;
}

.regulations {
  padding-top: 4.0625rem;
}
.regulations .regulations__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  font-size: 6rem;
}
.regulations .regulations__title span {
  transform: translate(0px, 15px);
}
.regulations .regulations__content {
  padding: 0px 0px;
}
.regulations .item-regulationa__content {
  max-width: 17.5rem;
}
@media (max-width: 61.99875em) {
  .regulations .item-regulationa__content {
    max-width: 100%;
  }
}
.regulations .regulations__content {
  margin-top: 1.875rem;
}

.mainYouth .main__slide-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  line-height: 2.6875rem;
}
@media (max-width: 47.99875em) {
  .mainYouth .main__slide-title {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
.mainYouth .main__slide-btn {
  font-family: "PT";
  font-weight: 500;
}
.mainYouth .main__slide-text {
  max-width: 38.1875rem;
}
@media (max-width: 47.99875em) {
  .mainYouth .main__slide-text p {
    font-size: 1rem;
  }
}
.mainYouth .main__content {
  max-width: 46.875rem;
  padding-right: 3.75rem;
}
@media (max-width: 81.875em) {
  .mainYouth .main__content {
    max-width: 100%;
  }
}
@media (max-width: 61.99875em) {
  .mainYouth .main__content {
    padding-right: 3.125rem;
  }
}
@media (max-width: 47.99875em) {
  .mainYouth .main__content {
    padding-right: 1.875rem;
  }
}
@media (max-width: 112.5em) {
  .mainYouth .main__container-image {
    right: -9%;
  }
}

.formTwo {
  overflow: hidden;
}
.formTwo .form__container {
  padding-bottom: 3.125rem;
}
.formTwo .form__items {
  max-width: 52.25rem;
  margin: 0 auto;
}
.formTwo .form__title {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
}

.curatorsMoveo .curators__title {
  align-items: flex-start;
}
.curatorsMoveo .curators__title h2 {
  width: 100%;
}
.curatorsMoveo .curators__title h2 span {
  text-align: center;
}

.cardsPrice .cards__title {
  font-size: 4.5rem;
}

.youthPrice .youth__img {
  left: 11.875rem;
}

.main__container-image-r {
  right: 3.75rem;
}

.how .how__title span {
  margin-left: 0rem !important;
}
@media (max-width: 61.99875em) {
  .how .how__title {
    font-size: 5rem;
  }
  .how .how__title span {
    font-size: 2rem;
    line-height: 2.375rem;
    text-align: right;
  }
}
.how .how__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.125rem;
}
@media (max-width: 81.875em) {
  .how .how__row {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.875rem;
  }
}
.how .how__row img {
  margin-bottom: 0rem;
  width: 38.4375rem;
  height: 25.625rem;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 61.99875em) {
  .how .how__row img {
    width: 100%;
  }
}
@media (max-width: 29.99875em) {
  .how .how__row img {
    height: 14.3125rem;
  }
}
@media (max-width: 81.875em) {
  .how .how__row .how__img {
    display: flex;
    justify-content: center;
  }
}

main section:not(:last-child) {
  margin-bottom: 8.125rem;
}
@media (max-width: 61.99875em) {
  main section:not(:last-child) {
    margin-bottom: 5.625rem;
  }
}
@media (max-width: 47.99875em) {
  main section:not(:last-child) {
    margin-bottom: 3.125rem;
  }
}

.mainHome {
  margin-bottom: 8.125rem !important;
}
@media (max-width: 61.99875em) {
  .mainHome {
    margin-bottom: 5.625rem !important;
  }
}
@media (max-width: 47.99875em) {
  .mainHome {
    margin-bottom: 3.125rem !important;
  }
}

.cardsTwo .cards__title {
  font-family: "Antarctic";
  font-style: normal;
  font-weight: 400;
  font-size: 12em;
  line-height: 130%;
  position: relative;
  z-index: 2;
}
@media (max-width: 47.99875em) {
  .cardsTwo .cards__title h2 {
    text-align: left;
  }
  .cardsTwo .cards__title h2 span {
    text-align: center;
    padding-top: 0.3125rem;
    padding-left: 3.125rem;
    transform: initial;
  }
}
@media (max-width: 61.99875em) {
  .cardsTwo .cards__title {
    font-size: 5rem;
  }
  .cardsTwo .cards__title span {
    font-size: 2rem;
    line-height: 2.375rem;
  }
}
@media (max-width: 47.99875em) {
  .cardsTwo .cards__title {
    font-size: 3.375rem;
  }
  .cardsTwo .cards__title span {
    font-size: 1.625rem;
    line-height: 1.9375rem;
  }
}
@media (max-width: 29.99875em) {
  .cardsTwo .cards__slide-img img {
    height: 14.75rem;
  }
}
@media (max-width: 29.99875em) {
  .cardsTwo .cards__slide-title {
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}

.cardsTwo__slider {
  overflow: visible !important;
  margin-top: 3.125rem;
}
@media (max-width: 47.99875em) {
  .cardsTwo__slider {
    margin-top: 1.875rem;
  }
}

@media (max-width: 61.99875em) {
  .casesTitle {
    text-align: left;
    line-height: 1;
  }
  .casesTitle span {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
}

.cardsTwo__swiper {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.125rem;
}
@media (min-width: 29.99875em) {
  .cardsTwo__swiper .swiper-slide {
    opacity: 1;
  }
}
@media (max-width: 47.99875em) {
  .cardsTwo__swiper .swiper-slide .cards__slide-title {
    font-size: 0.875rem;
  }
}
@media (max-width: 81.875em) {
  .cardsTwo__swiper .swiper-slide .cards__slide-text {
    font-size: 1rem;
  }
}
@media (max-width: 81.875em) {
  .cardsTwo__swiper .swiper-slide .cards__slide-content {
    padding: 1.25rem 0.9375rem;
  }
}
@media (max-width: 81.875em) {
  .cardsTwo__swiper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
  .cardsTwo__swiper .cards__slide-img img {
    height: 15.25rem;
  }
}
@media (max-width: 81.875em) and (max-width: 29.99875em) {
  .cardsTwo__swiper .cards__slide-img {
    height: 11.4375rem;
  }
}
@media (max-width: 47.99875em) {
  .cardsTwo__swiper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}
@media (max-width: 29.99875em) {
  .cardsTwo__swiper {
    display: flex !important;
    gap: 0rem;
  }
}

.cardsTwo__slider01 .bottom-main {
  margin-top: 2.5rem;
}
@media (min-width: 29.99875em) {
  .cardsTwo__slider01 .bottom-main {
    display: none;
  }
}

.doctors__subtitle {
  font-family: "MuseoSansCyrl";
  font-size: 2.25rem;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media (max-width: 61.99875em) {
  .doctors__subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .doctors__subtitle {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 47.99875em) {
  .youthMoveoTitle {
    font-size: 3.375rem;
    line-height: 4.625rem;
  }
  .youthMoveoTitle span {
    font-size: 1.5rem;
    line-height: 1.8125rem;
  }
}

@media (max-width: 47.99875em) {
  .guideTitle {
    text-align: left;
    line-height: 70%;
  }
  .guideTitle span {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-right: 1.25rem;
  }
}
@media (max-width: 29.99875em) {
  .guideTitle span {
    justify-content: flex-end;
  }
}

@media (max-width: 61.99875em) {
  .referralTitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .referralTitle span {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 47.99875em) {
  .referralTitle span {
    font-size: 1.25rem;
  }
}

@media (max-width: 47.99875em) {
  .licensesTitle {
    line-height: 70%;
    text-align: left;
  }
  .licensesTitle span {
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translate(0px, 5px);
  }
}
@media (max-width: 29.99875em) {
  .licensesTitle span {
    justify-content: flex-end;
    padding-right: 0.625rem;
  }
}

@media (max-width: 61.99875em) {
  .regulationsTitle h2 {
    font-size: 4.75rem;
  }
  .regulationsTitle h2 span {
    font-size: 2rem;
  }
}
@media (max-width: 47.99875em) {
  .regulationsTitle h2 {
    font-size: 3.375rem;
    line-height: 70%;
  }
  .regulationsTitle h2 span {
    font-size: 1.625rem;
    width: 100%;
    display: flex;
    justify-content: center;
    transform: translate(0px, 0px);
  }
}
@media (max-width: 29.99875em) {
  .regulationsTitle h2 span {
    justify-content: flex-end;
  }
}

@media (max-width: 29.99875em) {
  .certificateCards .cards__slide-img img {
    height: 14.75rem;
  }
}

@media (max-width: 61.99875em) {
  .contactsTitle {
    font-size: 2rem !important;
    margin-bottom: 1.875rem !important;
  }
}
@media (max-width: 47.99875em) {
  .contactsTitle {
    font-size: 1.625rem !important;
    margin-bottom: 1.25rem !important;
  }
}

.results__slider {
  margin-top: 1.875rem;
}
@media (max-width: 29.99875em) {
  .results__slider {
    height: 41.25rem;
  }
}
@media (max-width: 29.99875em) {
  .results__slider .face__swiper {
    height: 37.5rem !important;
    flex-wrap: wrap;
  }
}
@media (max-width: 47.99875em) {
  .results__slider .face__swiper {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 29.99875em) {
  .results__slider .face__slide {
    height: calc((100% - 30px) / 2) !important;
    overflow: hidden;
    margin-top: 0rem !important;
    opacity: 1;
  }
}

@media (min-width: 61.99875em) {
  .aboutBtn {
    display: none;
  }
}

.bottom-main__amount._active {
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

section.reviewBody {
  margin-top: 3.125rem !important;
}
@media (max-width: 47.99875em) {
  section.reviewBody {
    margin-top: 1.25rem !important;
  }
}

.reviews__row {
  margin-top: 2.125rem;
}
@media (max-width: 47.99875em) {
  .reviews__row {
    margin-top: 3.125rem;
  }
}
.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}
.tagline .bottom-main__title{
  margin-left: auto;
}




.cash__text:empty{
    display: none;
}

.procedures__content .slogan-1{
    right: 150px;
}

._header-scroll .menu__logo img {
    height: 2.9em;
    margin-top: 0.3em;
    margin-bottom: .3em;
}
._header-scroll .menu__btn a, .menu__btn button {
    padding-top: 0.5125rem;
    padding-bottom: 0.5125rem;
}

.smart.smartPrice{
    padding: 100px 0;
}
@media (max-width: 61.99875em) {
    .smart.smartPrice{
        padding: 50px 0;
    }
    .awards__title{
        font-size: 5rem;
    }
    ._title{
        font-size: 80px !important;
        line-height: 1.3 !important;
    }
}
@media (max-width: 47.99875em) {
    .youth__item:last-child{
        width: 100%;
    }
    .bottom-main__title{
        font-size: 4em;
    }

    .procedures__text{
        flex-direction: column-reverse;
    }
    .procedures__img{
        margin-top: 30px;
    }

    .procedures__content._text .tagline > span{
        margin-top: 20px;
        font-size: 3.5em;
    }


    .about__title h2 span{
        font-size: 1.625rem;
        line-height: 1.9375rem;
    }

    .about__title h2 span,
    .about__title h2{
        display: block;
    }

    .smartPrice .smart__container .smartPrice__inner .smart__title h2 span,
    .bespoleznyi__title span,
    .cardsTwo .cards__title h2 span{
        padding: 0;
    }

    .smart__title._title,
    .bespoleznyi__title{
        text-align: center;
    }

    /*.breadcrumb__list li{*/
    /*    display: inline-block;*/
    /*    vertical-align: top;*/
    /*    margin: 0 13px 0 0;*/
    /*}*/
    /*.breadcrumb__list::-webkit-scrollbar { width: 0; }*/
    /*.breadcrumb__list{*/
    /*    overflow: -moz-scrollbars-none;*/
    /*    -ms-overflow-style: none;*/
    /*    white-space: nowrap;*/
    /*    box-sizing: border-box;*/
    /*    display: block;*/
    /*    overflow: auto;*/
    /*    margin: 0 ;*/
    /*    width: 100%;*/
    /*    max-width: 100%;*/
    /*}*/

    .about__slide{
        box-shadow: none;
    }

    .main__slide-item:last-child{
        margin-left: auto;
    }
    .main__slide-items .tagline > span{
        font-size: 4em;
    }

    .how .how__title,
    .awards__title{
        font-size: 3.375rem;
    }
    ._title span{

        font-size: 1.625rem !important;
        line-height: 1.9375rem !important;
    }

    .how .how__title span,
    .how .how__title{
        text-align: center;
    }

    ._title{
        font-size: 54px !important;
        line-height: 1.3 !important;
    }

    .main__slide-items .tagline > span,
    .bottom-main__title {
        height: 80px !important;
    }


    .smart .smart__item .tagline>span .slogan-1 {
        right: 95px;
    }


    .main__slide-item .tagline>span .slogan-1,
    .bottom-main__title .slogan-1,
    .work__column-body .tagline>span .slogan-1{
        right: 120px;
    }


    .main__slide-items .tagline span{
        font-size: 56px !important;
    }

    .procedures__content .slogan-1 {
        right: 140px;
    }
}




/*template_style.css */
.menu__logo{
    min-width: 180px;
}

.menu__logo img {
    vertical-align: top;
    height: 3.5em;
}


.bottom-main__title{
    color:#414149 !important;;
    padding-bottom: 1rem !important;
}

.main .main-decore, .about__decor, .aboutDecor01,.aboutDecor02 {
    position: absolute;
    display: none;
}

.tagline span{
    color:#414149 !important;;
}

.revires_other_sam{
    display: none;
}
.mobile-bottom__icon img {
    height: 2rem;
    width: 2rem;
}

._btn:active {
    background: #000000;
    border: 0.0625rem solid #000000;;
}
._btn:focus {
    background: #000000;
    border: 0.0625rem solid #000000;;
}

._btn:hover {
    background: #000000;
    border: 0.0625rem solid #000000;;
}

.about .swiper-pagination-bullet-active {
    background: #000000;
}
.bottom-main__pugg .swiper-pagination-bullet:hover {
    background: #000000;
}
.bottom-main__pugg .swiper-pagination-bullet-active {
    width: 1.5625rem;
    background: #000000;
}

.menu__list li a:hover {
    color: #000000;
}
.reviews__rating{
	margin-left: -3px;
}
.bonuses:hover::after { 
    content: attr(data-promt); 
	width:300px;
    position: absolute; /* Абсолютное позиционирование */
    left: 20%; top: 30%; /* Положение подсказки */
    z-index: 1; /* Отображаем подсказку поверх других элементов */
    background: rgba(255,255,230,0.9); /* Полупрозрачный цвет фона */
    font-family: Arial, sans-serif; /* Гарнитура шрифта */
    font-size: 11px; /* Размер текста подсказки */
    padding: 5px 10px; /* Поля */
    border: 1px solid #333; /* Параметры рамки */
}

.main .main__content{
    max-width: 778px;
    min-height: 527px;
    max-height: 527px;
    padding: 4.375rem 4.375rem 3.75rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 61.99875em){
	.main .main__content {
		padding: 3.125rem;
		max-width: 708px;
		max-height: 487px;
		min-height: 487px;
		margin: auto;
	}
}

@media (max-width: 29.99875em){
	.main .main__content {
		padding: 1.875rem 1.875rem 0.625rem;
		max-width: 343px;
		max-height: 523px;
		min-height: 523px;
	}
}

.youth .youth__content{
    max-width: 778px;
    min-height: 527px;
    max-height: 527px;
    padding: 4.375rem 4.375rem 3.75rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 61.99875em){
	.youth .youth__content {
		padding: 3.125rem;
		max-width: 708px;
		max-height: 487px;
		min-height: 487px;
		margin: auto;
	}
}

@media (max-width: 29.99875em){
	.youth .youth__content {
		padding: 1.875rem 1.875rem 0.625rem;
		max-width: 343px;
		max-height: 523px;
		min-height: 523px;
	}
}
@media (max-width: 61.99875em){
	.smartPrice .smart__items {
		position: relative!important;
	}
}

@media (max-width: 81.875em){
	.cosmetology .cosmetology__img img {
		height: 100%;
	}
}
/*
@media (max-width: 81.875em){
	.cosmetology__inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: 2rem!important;
	}
}
*/
@media (max-width: 81.875em){
	.cosmetology .cosmetology__img {
		display: block;
		justify-content: center;
		align-items: center;
	}
}

@media (max-width: 61.99875em){
.about__table-body {
    padding: 2rem 2rem!important;
	}}
@media (max-width: 61.99875em){
	.about__container {
		padding-left: 1rem!important; 
		padding-right: 1rem!important; 
	}
}

.form-checkbox-custom {
	position: relative;
	display: flex;
	justify-content: flex-start;
}
.form-checkbox-custom label {
	position: relative;
	display: block;
	text-align: left;
	cursor: pointer;
}
.form-checkbox-custom input {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	display: block;
	width: 0;
	height: 0;
	opacity: 0;
}
.form-checkbox-custom a {
	color: inherit;
	text-decoration: underline;
}
.form-checkbox-custom a:hover {
	text-decoration: none;
}
.form-checkbox-custom__checkbox {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border: 1px solid #333;
	margin-top: -1px;
	margin-right: 5px;
	float: left;
}
.form-checkbox-custom__checkbox svg {
	display: block;
	width: 16px;
	height: auto;
	opacity: 0;
}
.form-checkbox-custom input:checked + .checkbox-custom svg {
	opacity: 1;
}





