
.section--grey {
    background: #f8f9fa;
}

:root {
    --section-padding-min: 40px;
    --section-padding-max: 100px;

    --header-height-xl: 140px;
    --header-height-sm: 80px;

    --spacing-xxl: 200px;
    --spacing-xl: 95px;
    --spacing-lg: 80px;
    --spacing-md: 55px;
    --spacing-base: 40px;
    --spacing-sm: 32px;
    --spacing-xs: 16px;
    --spacing-xxs: 12px;
}

.section__wrapper {
    margin: 0 10.7%;
    padding: clamp(var(--section-padding-min), 10vw, var(--section-padding-max)) 0;
}
.section:first-of-type > .section__wrapper {
    padding: calc(clamp(var(--section-padding-min), 10vw, var(--section-padding-max))*2) 0 clamp(var(--section-padding-min), 10vw, var(--section-padding-max)) 0;
}
.section:last-of-type > .section__wrapper {
    padding: clamp(var(--section-padding-min), 10vw, var(--section-padding-max)) 0 calc(clamp(var(--section-padding-min), 10vw, var(--section-padding-max))*2) 0;
}
.section__wrapper--full {
    margin: 0;
}

.section__wrapper--nopadding {
    padding: 0;
}
.section div.section__wrapper.section__wrapper--nopadding-top {
    padding-top: 0;
}
.section div.section__wrapper.section__wrapper--contacts {
    padding-bottom: clamp(var(--spacing-sm), 8vw, var(--spacing-xl));
}

.section:first-of-type > .section__wrapper {
    padding: calc(clamp(var(--section-padding-min), 10vw, var(--section-padding-max))*2) 0 clamp(var(--section-padding-min), 10vw, var(--section-padding-max)) 0;
}

.section:first-of-type .section__wrapper--nopadding {
    padding: 0;
}

.section__wrapper--relative {
    position: relative;
}
.section__wrapper--gray {
background-color: #f8f8f8;
}

.section__wrapper-text-list {
    padding-left: var(--spacing-base);
}

.section__wrapper-text-item {
    list-style-type: disc;
    margin-bottom: var(--spacing-xs);
}
@media (max-width: 768px) {
    .section:first-of-type .section__wrapper--head {
        padding: calc(clamp(var(--section-padding-min), 10vw, var(--section-padding-max))*2 + var(--header-height-sm)) 0 clamp(var(--section-padding-min), 10vw, var(--section-padding-max)) 0;
    }
    .section .section__wrapper.section__wrapper--padding-top-sm {
        padding-top: var(--spacing-sm);
    }
}
.section__wrapper-text {
    max-width: 930px;
}
.section__wrapper-text p {
    padding: 0;
    max-width: unset;
}
@media (max-width: 768px) {
    .section__wrapper-text h3 {
        margin-bottom: var(--spacing-xs);
    }
    .section__wrapper-text p {
        margin-bottom: var(--spacing-xxs);
    }
    .section__wrapper-text p:last-child {
        margin-bottom:0;
    }
    .section .section__wrapper.section__wrapper--padding-b-0 {
        padding-bottom: 0;
    }
}
.section__title {
    margin: 0 0 clamp(32px, 5vw, 95px) 0;
    font-family: "Clear Sans";
    font-weight: 400;
    font-style: normal;
    font-size: clamp(50px, 5vw, 90px);
    line-height: clamp(50px, 5vw, 90px);
    letter-spacing: 0px;
    color: #282828;
}
.section__title--mb-mid {
    margin-bottom: 45px;
}
.section__title--medium {
    font-size: clamp(30px, 6vw, 45px);
    line-height: clamp(30px, 6vw, 45px);
}
.section__title--nomargin {
    margin: 0;
}
.section__title--personal {
    margin: 0 0 30px 0;
}
@media (max-width: 768px) {
    .section__title--personal {
    margin: 0 0 24px 0;
    }
    
}
.section__description {
    padding: 26px;
    display: inline-flex;
    gap: 40px;
    background: #f8f8f8;
    align-items: center;
    margin-bottom: clamp(24px, 5vw, 65px);
}
@media (max-width: 768px) {
    .section__description {
        padding: 12px;
        gap: 10px;
    }
}
.section__description-img {
    width: 100%;
    max-width: 114px;
}
@media (max-width: 768px) {
    .section__description-img {
        max-width: 61px;
    }
}
.section__description-text {
    font-family: 'Clear Sans';
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0;
    color: #282828;
    padding-right: 0;
}
@media (max-width: 768px) {
    .section__description-text {
        font-size: 16px;
        line-height: 16px;
    }
}
@media (max-width: 860px) {
    .section__wrapper {
        margin: 0 6%;
    }
    .section__wrapper--full {
        margin: 0;
    }
}

.section__head {
    margin-bottom: 64px;
    max-width: 1024px;
    width: 100%;
}
.section__head--lit-margin {
    margin-bottom: 40px;
}

.section__desc {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #282828;
    margin: 20px 0 0 0;
    letter-spacing: inherit;
    padding: 0;
    max-width: inherit;
}

.ap-button {
    text-align: left;
}

.ap-button__link {
    display: inline-block;
    padding: 23px 50px;
    background-color: #191E29;
    color: #fff;
    font-family: 'Clear Sans';
    font-weight: 500;
    font-size: 19px;
    line-height: 19px;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.4s ease;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.ap-button__link:hover {
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .ap-button--news .ap-button__link{
        font-family: 'Clear Sans';
        font-weight: 500;
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        padding: 14px 50px;
    }
}

.desktop-br {
    display: none;
}
@media (min-width: 768px) {
    .desktop-br {
        display: inline;
    }
}

#jivo_chat_widget {
    display: none
}

div#jivo-iframe-container {
    z-index: 5000 !important
}

.pt-fix {
    top: 40vh;
}

@media screen and (max-width: 768px) {
    .pt-fix {
        top: 50vh;
        transform: translateY(-50%);
        margin-left: 6%;
        margin-right: 6%;
        display: flex;
        flex-direction: column;
    }

    .pt-fix .h1 {
        margin-bottom: var(--spacing-xs);
        font-size: clamp(30px, 9vw, 50px);
        line-height: clamp(35px, 12vw, 60px);
        font-family: 'Clear Sans';
    }

    .pt-fix p {
        padding: 0;
    }

    .page-top.page-top-fix {
        height: 100vh;
    }
}

.header-3d-tour {
    margin-right: 40px;
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff
}

.main-slider,
.page-top {
    height: 100vh;
    position: relative;
}

.main-slider .controls {
    margin-top: -20px;
    position: absolute;
    top: 23.4vh;
    right: 6%;
    z-index: 3
}

.ms-slide,
.ms-slide .image,
.ms-wrapper,
.pt-content,
.pt-content .image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.ms-slide .image,
.pt-content .image {
    padding: 0
}

.ms-slide .image:before,
.pt-content .image:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .5)
}

@supports (mix-blend-mode:multiply) {

    .ms-slide .image:before,
    .pt-content .image:before {
        mix-blend-mode: multiply;
        background: rgba(110, 120, 138, .8)
    }
}

.ms-slide {
    pointer-events: none
}

.ms-slide .h1,
.ms-slide h1,
.ms-slide p {
    opacity: 0;
    transition: opacity .5s;
    transform: translateZ(0)
}

.ms-slide.fromLeft .h1,
.ms-slide.fromLeft h1,
.ms-slide.fromLeft p {
    transform: translate3d(-50px, 0, 0);
    transition: none
}

.ms-slide.fromRight .h1,
.ms-slide.fromRight h1,
.ms-slide.fromRight p {
    transform: translate3d(50px, 0, 0);
    transition: none
}

.ms-slide.active .image {
    opacity: 1
}

.ms-slide.active .h1,
.ms-slide.active h1,
.ms-slide.active p {
    opacity: 1;
    transform: translateZ(0)
}

.ms-slide.active p {
    transition: opacity .8s ease .3s, transform .8s ease .3s
}

.ms-slide.active .h1,
.ms-slide.active h1 {
    transition: opacity .8s ease .2s, transform .8s ease .2s
}

.ms-slide.active a {
    pointer-events: auto
}

.ms-slide-inner,
.pt-inner {
    max-width: 600px;
    margin-left: 6%;
    margin-right: 6%;
    color: #fff;
    position: relative;
    z-index: 2
}

@media screen and (max-width: 768px) {

    .ms-slide-inner,
    .pt-inner {
        margin: 0;
        max-width: unset;
    }
}

.ms-slide-inner .h1 a,
.ms-slide-inner h1 a,
.pt-inner .h1 a,
.pt-inner h1 a {
    color: inherit;
    border-bottom: 2px solid transparent
}

.ms-slide-inner .h1+p,
.ms-slide-inner h1+p,
.pt-inner .h1+p,
.pt-inner h1+p {
    font-size: 20px;
    line-height: 28px
}

.ms-slide-inner--wide,
.pt-inner--wide {
    max-width: 771px
}

.ms-drag {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: auto
}

.arrow-to-bottom {
    width: 44px;
    height: 44px;
    position: absolute;
    bottom: 4.4vh;
    left: 6%;
    margin-left: -16px;
    margin-bottom: calc(var(--spacing-xs) * -1);
    z-index: 10;
    cursor: pointer
}

.arrow-to-bottom span {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    pointer-events: none;
    -webkit-animation: arrow 2s cubic-bezier(.785, .135, .15, .86) infinite;
    animation: arrow 2s cubic-bezier(.785, .135, .15, .86) infinite
}

.arrow-to-bottom span:after,
.arrow-to-bottom span:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%
}

.arrow-to-bottom span:before {
    width: 2px;
    height: 24px;
    margin-top: -12px;
    margin-left: -1px;
    background: #fff
}

.arrow-to-bottom span:after {
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin-left: -4px;
    margin-top: 5px;
    transform: rotate(45deg)
}

@-webkit-keyframes arrow {
    0% {
        transform: translateZ(0)
    }

    50% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes arrow {
    0% {
        transform: translateZ(0)
    }

    50% {
        transform: translate3d(0, 5px, 0)
    }

    to {
        transform: translateZ(0)
    }
}

.main-top blockquote {
    margin: 107px 6% 63px;
    padding: 0;
    border: none
}

/* .main-top.scrl .right-block {
    transition-delay: .1s
} */

.right-block,
.services-main .right-block {
    margin-top: -40px
}

.services-main .normal-block {
    margin-top: 1.3%
}

h2+.sb-items {
    margin-top: 70px
}

.sb-item {
    margin: 0 6% 90px
}

.sb-item:nth-child(4n+2) a .image,
.sb-item:nth-child(4n+3) a .image {
    padding-bottom: calc(100% - 84px - 7.3vw)
}

/* .sb-item.scrl .line-title:after,
.sb-item.scrl .line-title:before {
    transform: scaleX(0);
    transition: transform .8s ease .1s
} */

.sb-item.show .line-title:after,
.sb-item.show .line-title:before {
    transform: scaleX(1)
}

.sm-item {
    margin: 0 6% 90px
}

@media (max-width: 768px) {
    .sm-item {
        margin: 0 0 32px
    }
}

.image {
    display: block;
    padding-bottom: 100%;
    position: relative;
    background: no-repeat 50%/cover
}

.image.contain {
    background-size: contain
}

.image.bg {
    padding: 0
}

.image.bg,
.image.tint:before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.image.tint:before {
    content: "";
    display: block;
    transition: opacity .5s cubic-bezier(.075, .82, .165, 1);
    background: rgba(0, 0, 0, .5)
}

@supports (mix-blend-mode:multiply) {
    .image.tint:before {
        mix-blend-mode: multiply;
        background: rgba(110, 120, 138, .8)
    }
}

.link-item {
    display: block;
    position: relative
}

.link-item-content,
.link-item-view {
    display: none
}

.swipe-wrap,
.view-slider {
    width: 100%;
    height: 100%;
    font-size: 0;
    position: relative
}

.view-slider {
    overflow: hidden;
    padding-bottom: 40px;
}

.view-slider.animation .slider-image:before {
    transform: scaleX(1)
}

.view-slider.animation .slider-text {
    opacity: 0
}

.view-slider.animation-to-left .slider-image:before {
    transform-origin: 0 50%
}

.view-slider.animation-to-right .slider-image:before {
    transform-origin: 100% 50%
}

.slider-initialized .view-slider {
    overflow: visible
}

.swipe-wrap {
    white-space: nowrap
}

.slide {
    width: 100%;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    position: relative;
    visibility: hidden
}

.slide.to-center,
.slide.to-right {
    visibility: visible
}

.slider-image {
    position: relative
}

.slider-image:before {
    /* content: ""; */
    width: 100%;
    height: 100%;
    padding: 1px;
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 2;
    transform: scaleX(0);
    transition: transform .5s cubic-bezier(.785, .135, .15, .86);
    background: #fff
}


.slider-text {
    transition: opacity .5s cubic-bezier(.785, .135, .15, .86)
}

.discount-main {
    margin-top: 80px
}

.discount-main .third-block {
    margin-top: 1%
}

.discount-main .view-slider {
    overflow: hidden
}

.dm-wrapper {
    margin-top: 40px;
    padding: 0 6% 40px
}

.dm-controls {
    text-align: right;
    position: relative
}

.dm-controls p {
    padding-right: 12px;
    padding-left: 36px;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .05em;
    transform: translateZ(0);
    transition: transform .3s cubic-bezier(.785, .135, .15, .86), opacity .3s cubic-bezier(.785, .135, .15, .86)
}

.dm-controls p.prev-notice {
    padding-left: 12px;
    padding-right: 36px;
    opacity: 0
}

.dm-controls p.next-notice {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 40px
}

.dm-controls .controls.prev-hover .next-notice {
    transform: translate3d(10px, 0, 0);
    opacity: 0
}

.dm-controls .controls.prev-hover .prev-notice {
    opacity: 1;
    transform: translate3d(20px, 0, 0)
}

.dm-controls .controls.next-hover .next-notice {
    transform: translate3d(-20px, 0, 0)
}

.dm-top {
    color: inherit
}

.dm-top .link-item-content {
    display: block;
    margin-top: 30px
}

.dm-item {
    display: block;
    margin: 0 6% 83px;
    position: relative;
    color: #191e29;
    font-size: 16px;
    background: no-repeat 50%/cover
}

.dm-item .image {
    padding-bottom: 109.6%
}

.discount-value {
    padding: 0 15px;
    margin-top: 36px;
    margin-bottom: 17px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    letter-spacing: .05em;
    line-height: 30px;
    text-transform: uppercase;
    color: #272f40;
    background: #f8f8f8
}

.rooms-main {
    overflow: hidden
}

.rooms-main .controls {
    margin: 60px 6% 40px;
    text-align: right
}

@media (max-width: 768px) {
    .rooms-main .controls {
        margin: 32px 6%;
    }
}

.rm-top {
    display: none
}

.rm-content {
    padding: 32px 6%;
    background: #f8f8f8
}

.rm-title {
    font-size: 25px;
    line-height: 40px;
    font-weight: 700;
    color: #b5b5b5
}

@media (max-width: 768px) {
    .rm-title {
        margin-bottom: 32px;
    }
}

.rm-list {
    margin-top: 60px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500
}

@media (max-width: 768px) {
    .rm-list {
        margin-top: 0;
    }
}

.rm-list a {
    padding: 7px 0;
    display: inline-block;
    color: #272f40
}

@media (max-width: 768px) {
    .rm-list a {
        padding: 8px 0;
    }

    .rm-list li:first-child a {
        padding: 0 0 8px 0;
    }

    .rm-list li:last-child a {
        padding: 8px 0 0 0;
    }
}

.rm-link:after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 10px;
    margin-top: -1px;
    display: inline-block;
    vertical-align: middle;
    border-right: 2px solid #191e29;
    border-top: 2px solid #191e29;
    transform: rotate(45deg);
    transition: transform .5s cubic-bezier(.785, .135, .15, .86)
}

.rm-item {
    margin: 0 6%;
    display: block;
    color: inherit
}

.rm-item .image {
    margin-bottom: 42px
}

@media (max-width: 768px) {
    .rm-item .image {
        margin-bottom: 12px;
    }
}

.rm-item .image-wrapper {
    overflow: hidden;
}

.rm-item .image-wrapper .image-bg {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.rm-item p {
    margin-bottom: .3em
}

@media (max-width: 768px) {
    .rm-item p {
        margin-bottom: 0;
    }
}

.rm-bottom {
    margin: 38px 6% 0
}

@media (max-width: 768px) {
    .rm-bottom {
        margin: 16px 6% 0
    }
}

.rm-bottom .controls {
    display: none
}

.pm-top {
    display: none
}

.pm-left {
    margin: 0 6% var(--spacing-sm);
}

.about-vacancies-partners-content {
    display: flex;
}

.about-vacancies-partners-content>div {
    flex: 1
}

@media (max-width: 768px) {
    .pm-left h3 {
        margin-bottom: var(--spacing-xs);
    }

    .pm-left p {
        margin-bottom: var(--spacing-xxs);
    }

    .pm-left p:last-child {
        margin-bottom: 0;
    }

    .about-vacancies-partners-content {
        flex-direction: column;
    }

    .about-vacancies-partners h3 {
        margin-bottom: var(--spacing-xxs);
    }

    .about-vacancies-partners p {
        margin-bottom: var(--spacing-xs);
    }

    .about-vacancies {
        margin-bottom: var(--spacing-sm);
    }

    .about-partners .ap-item {
        margin: 0 0 var(--spacing-xs);
    }

    .about-partners .ap-item:last-child {
        margin: 0;
    }

    .about-partners .ap-wrapper {
        margin-bottom: var(--spacing-sm);
    }
}

.pm-right {
    padding: 66px 6% 0;
    position: relative;
    z-index: 1
}

.pm-right:before {
    content: "";
    width: 100%;
    padding-bottom: 95%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #f8f8f8
}

.pm-right .image {
    padding-bottom: 120%;
    margin-bottom: 42px
}

@media (max-width: 768px) {
    .pm-right {
        padding: 0;
        margin: 0 6%;
    }

    .pm-right .image {
        margin-bottom: 16px;
    }
}

.reviews-main .rev-item:not(:first-child) {
    display: none
}

.reviews-block {
    margin-top: 100px
}

.reviews-block .third-block {
    margin-top: 42px
}

.rev-wrapper {
    margin: 0 6%
}

.rev-item {
    margin-top: 70px
}

.rev-item .image {
    padding-bottom: 109.5%;
    margin-bottom: 40px;
    background-position: top
}

.rev-item .h5 {
    margin-bottom: .1em
}

.insta-link {
    margin-top: 13px;
    margin-left: 6%;
    display: inline-block;
    color: #191e29;
    font-size: 20px
}

.insta-slider {
    margin: 40px 6% 0;
    overflow: hidden
}

@media (max-width: 768px) {
    .insta-slider {
        margin: 0 6% 0;
    }
}

@media (max-width: 768px) {
    .insta-slider .slider-text .h5 {
        margin: 12px 0 32px 0;
    }

    .insta-slider .slide.to-center .pub-item:last-child .slider-text .h5 {
        margin: 12px 0 0 0;
    }

    .insta-slider .slider-text p:last-child {
        margin: 0;
    }
}

.insta-item {
    font-size: 16px;
    color: inherit
}

.insta-item:first-child {
    margin-bottom: 60px
}

.insta-item .image {
    padding-bottom: 109.2%;
    margin-bottom: 45px
}

.insta-controls {
    margin: 6.25% 6% 0;
    text-align: right
}

@media (max-width: 786px) {
    .insta-controls {
        margin: 32px 6% 0;
    }
}


.ai-item {
    width: 20%;
    margin: 20px 6%
}

@media (max-width: 640px) {
    .ai-item {
        width: 70%;
        margin-bottom: 50px
    }
}

.ai-item .image {
    padding-bottom: 64%
}

.ai-item p {
    font-weight: 600;
    margin: 40px 0 0;
    text-align: center;
    padding: 0;
    color: #4b646f;
    font-size: 15px
}

.about-top {
    margin-top: 114px
}

.at-left {
    display: none
}

.at-right {
    margin: 0 6%
}

.at-right .image {
    margin-top: 16.4%;
    padding-bottom: 70%
}

.about-3d-tour {
    margin-top: 176px
}

.a3t-link,
.videoButton {
    padding: 17.7vw 2.9% 16.7vw;
    display: block;
    position: relative;
    text-align: center;
    overflow: hidden
}

.a3t-link .image,
.a3t-link .slider-image,
.videoButton .image,
.videoButton .slider-image {
    width: 100%;
    height: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0
}

.a3t-link .slider-image:before,
.videoButton .slider-image:before {
    background: #191e29
}

.a3t-link .image:before,
.videoButton .image:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5)
}

@supports (mix-blend-mode:multiply) {

    .a3t-link .image:before,
    .videoButton .image:before {
        mix-blend-mode: multiply;
        background: rgba(110, 120, 138, .8)
    }
}

.a3t-link .slider-text,
.videoButton .slider-text {
    position: relative;
    z-index: 2
}

.a3t-link .h3,
.a3t-link h3,
.videoButton .h3,
.videoButton h3 {
    max-width: none;
    padding: 0;
    margin: 0;
    color: #fff;
    position: relative;
    z-index: 1
}

.about-vacancies {
    background: #f8f8f8
}

.about-vacancies .list {
    margin-top: 50px;
    margin-bottom: 74px;
    font-size: 0
}

.ap-wrapper {
    font-size: 0;
    margin-bottom: 70px
}

.ap-item {
    margin-top: 50px;
    margin-bottom: 10px
}

.ap-image {
    width: 180px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    background: no-repeat 0/contain
}

.gallery {
    margin-top: 152px
}

.gallery-item {
    display: block;
    margin: 75px 6% 0;
    color: inherit
}

.gallery-item .image {
    padding-bottom: 62.66%;
    margin-bottom: 20px
}

.gallery-bottom {
    margin: 44px 6% 0
}

.about-videos {
    margin-top: 115px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.about-videos .controls {
    position: absolute;
    bottom: 0;
    right: 6%;
    margin-bottom: 6%;
    z-index: 2
}

.videoButton {
    cursor: pointer
}

.videoButton .h3 {
    display: none
}

.video-icon {
    width: 42px;
    height: 42px;
    display: inline-block;
    vertical-align: middle;
    background: url(6c94c18fa74da8618a637ec6e0985c46.svg) no-repeat 50%/contain
}

.reviews-top {
    margin: 180px 6% 0;
    position: relative;
    overflow: hidden
}

.reviews-top .controls {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2
}

.rt-left .image {
    padding-bottom: 118.7%;
    background-position: top
}

.rt-right {
    padding: 50px 0 70px;
    position: relative
}

.rt-right-content {
    font-size: 16px
}

.rt-right-content p {
    max-width: 34em
}

.rt-socials {
    position: absolute;
    left: -14px;
    bottom: -4px
}

.ptni-inner {
    max-width: 560px;
    padding-top: 30vh;
    margin-left: 6%;
    position: relative;
    z-index: 2
}

.ptni-inner p {
    font-size: 20px;
    line-height: 28px
}

.filters {
    max-width: 820px
}

.filters ul li {
    padding-left: 0
}

.filters ul li:before {
    display: none
}

.filters-desktop {
    display: none;
    pointer-events: none
}

.filters-desktop:hover .f-item.selected:after {
    transform: scaleX(0)
}

.filters-desktop:hover .f-item.selected:hover:after {
    transform: scaleX(1)
}

.fm-notice {
    margin-top: 28px;
    margin-bottom: 21px
}

.filters-mobile {
    margin-top: -10px;
    padding: 4px 0 5px;
    display: inline-block;
    position: relative;
    border-bottom: 2px solid
}

.filters-mobile select {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}

.fm-placeholder {
    padding-right: 25px;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    position: relative;
    font-size: 16px;
    line-height: 18px;
}

.fm-placeholder:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    right: 2px;
    top: 5px;
    border-right: 2px solid #191e29;
    border-bottom: 2px solid #191e29;
    transform: rotate(45deg)
}

.f-item {
    padding-left: 20px;
    display: block;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    overflow: hidden
}

.f-item.selected {
    cursor: default
}

.f-item.selected:after {
    transform: scale(1)
}

.f-item.selected:before {
    opacity: 1;
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86)
}

.f-item:before {
    width: 10px;
    height: 4px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    top: 12px;
    opacity: 0
}

.f-item:after,
.f-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0
}

.f-item:after {
    width: 100%;
    height: 2px;
    bottom: 0;
    transform: translateX(20px) scaleX(0);
    transform-origin: 0 100%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86);
    background: #191e29
}

.more {
    margin-top: 6px;
    text-align: center
}

/* .more.scrl {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s cubic-bezier(.785, .135, .15, .86), transform .5s cubic-bezier(.785, .135, .15, .86)
} */

.more.show {
    opacity: 1;
    transform: translateX(0)
}

.gallery-page .gallery-item {
    cursor: pointer
}

.gallery-page .gallery-item p {
    font-size: 16px
}

.program-filters {
    margin: 0 6%
}

.program-items {
    margin-top: 80px
}

.program-item,
.room-item--search {
    display: block;
    margin: 68px 6% 0;
    color: inherit
}

@media screen and (max-width: 786px) {

    .program-item,
    .room-item--search {
        display: block;
        margin: var(--spacing-sm) 0 0;
        color: inherit
    }

    .program-item .h5 {
        margin-bottom: var(--spacing-xxs);
    }
}

.program-item .h5:first-child,
.room-item--search .h5:first-child {
    margin-bottom: 23px
}

.program-item .image,
.room-item--search .image {
    padding-bottom: 95.3%
}

.pi-inner {
    position: relative
}

.pip-left {
    padding: 75px 6%;
    background: #f8f8f8
}

.pip-left .h3,
.pip-left h3 {
    margin-bottom: .9em;
    font-weight: 700
}

.pip-left .button {
    margin: 0 30px 0 0
}

.curator-image .image {
    padding-bottom: 94%
}

.curator-right {
    margin-top: 44px
}



.structure-button {
    margin: 55px 6% 0
}

.table-mobile {
    margin: 32px -17px 0;
    font-size: 0
}

.table-mobile span {
    width: 44px;
    height: 44px;
    display: inline-block;
    position: relative;
    cursor: pointer
}

.table-mobile span:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border-top: 2px solid #b5b5b5;
    border-right: 2px solid #b5b5b5;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 50%
}

.tm-left:after {
    transform: rotate(-135deg);
    margin-left: -2px
}

.tm-right:after {
    transform: rotate(45deg);
    margin-left: -4px
}

.table-container {
    width: 100%;
    margin-top: -15px;
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

.table.double .table-head,
.table.double .table-row {
    grid-template-columns: auto 26.834%;
    grid-column-gap: 7.97%
}

.table.triple .table-head,
.table.triple .table-row {
    min-width: 408px;
    grid-template-columns: auto repeat(2, 22%);
    grid-column-gap: 5.5%
}

.table.quadruple .table-head,
.table.quadruple .table-row {
    min-width: 520px;
    grid-template-columns: auto repeat(3, 17.26%);
    grid-column-gap: 4.32%
}

.table-head,
.table-row {
    width: 100%;
    display: grid
}

.table-head .table-cell {
    border-top: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em
}

.table-row {
    border-top: 2px solid #f8f8f8;
    position: relative
}

.table-row:after,
.table-row:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    opacity: 0;
    z-index: 2;
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86);
    background: #b5b5b5
}

.table-row:before {
    bottom: 100%
}

.table-row:after {
    top: 100%
}

.table-row:last-child:after {
    display: none
}

.table-row:not(.disable) {
    cursor: pointer
}

.table-row:hover .table-checkbox span,
.table-row:not(.disable):hover:after,
.table-row:not(.disable):hover:before {
    opacity: 1
}

.table-row.active .table-cell {
    transform: translateY(13px);
    transition: transform .5s ease
}

.table-row.active .table-notice {
    height: auto;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86) .1s, height 0s .1s, transform .3s ease .1s
}

.table-row.active .table-checkbox span {
    opacity: 1
}

.table-cell {
    padding: 14px 0 17px;
    transition: transform .3s ease;
    position: relative
}

.table-cell,
.table-notice {
    font-size: 16px;
    line-height: 20px
}

.table-notice {
    height: 0;
    max-width: 88vw;
    grid-column: span 2;
    color: #b5b5b5;
    overflow: hidden;
    opacity: 0;
    position: -webkit-sticky;
    position: sticky;
    transform: translateY(-22px);
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86), height 0s .3s, transform .3s cubic-bezier(.785, .135, .15, .86)
}

.table-notice:after,
.table-notice:before {
    content: "";
    width: 100%;
    display: block
}

.table-notice:before {
    height: 22px
}

.table-notice:after {
    height: 45px
}

.popup .table-checkbox {
    opacity: 1
}

.table-checkbox {
    width: 44px;
    height: 44px;
    display: block;
    position: absolute;
    top: 6px;
    right: 0
}

.table-checkbox span {
    width: 10px;
    height: 10px;
    margin: 15px 0 0 30px;
    display: block;
    border: 2px solid;
    position: relative
}

.table-checkbox span:after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    margin: 2px;
    opacity: 0;
    border: 3px solid;
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86)
}

.table-checkbox input {
    z-index: 1
}

.table-checkbox input:checked+span:after {
    opacity: 1
}

.service-popup-bottom {
    width: 100%;
    margin-top: 50px;
    padding-top: 17px;
    display: grid;
    grid-template-columns: auto 26.834%;
    grid-column-gap: 7.97%;
    border-top: 2px solid
}

.service-popup-button {
    margin-top: 20px;
    text-align: right
}

.service-cart:before {
    content: "";
    width: 100%;
    height: 60px;
    display: block
}

.sc-info {
    margin-bottom: 40px;
    font-size: 0
}

.sc-item {
    padding: 7px 20px 9px;
    display: inline-block;
    font-size: 20px;
    line-height: 1.5;
    border: 2px solid
}

.sc-item:last-child {
    border-left: none
}

.additionally {
    margin: 162px 6% 0
}

.additionally .list {
    max-width: 520px
}

.tabs {
    font-size: 0
}

.tabs-controls {
    padding-left: 2px;
    margin-bottom: 80px;
    pointer-events: none
}

.tabs-controls .button {
    margin-left: -2px;
    margin-top: 12px
}

.tabs-controls .button.border {
    pointer-events: auto
}

.tab {
    display: none
}

.tab.active {
    display: block
}

.additionally-item {
    margin-bottom: 48px;
    font-size: 16px
}

.recommended-programs-item {
    position: relative
}

.rpi-image,
.rpi-left {
    position: relative;
    z-index: 2
}

.rpi-left {
    margin: 0 6% 80px
}

.rpi-left .list {
    margin-bottom: 46px
}

.rpi-left button {
    text-align: left
}

.rpi-image .image {
    padding-bottom: 108.9%
}

.rooms-slider {
    overflow: hidden
}

.rs-item {
    display: block;
    margin: 0 6%;
    color: inherit
}

.rs-item .image {
    padding-bottom: 59.8%;
    margin-bottom: 40px
}

.rs-item p {
    margin-bottom: .3em
}

.rs-bottom {
    margin: 37px 6%;
    min-height: 40px;
    position: relative
}

.rs-bottom .controls {
    position: absolute;
    right: 0;
    bottom: 0
}

.stuff-page {
    margin-top: 2.9%
}

.stuff-page--search {
    margin-top: 10.6%
}

.stuff-item {
    margin: 73px 6% 0
}

.stuff-item .h5 {
    margin-bottom: .3em
}

.stuff-item .image {
    padding-bottom: 93%;
    margin-bottom: 9%
}

.stuff-item .popup-stuff-right {
    display: none
}

.stuff-item .dop-info {
    display: none;
}

.si-notice {
    margin: 73px 0 0;
    background: #f8f8f8
}

.si-notice p {
    max-width: none;
    padding: 16% 6%;
    margin: 0;
    color: #b5b5b5;
    font-size: 20px;
    line-height: 35px;
    font-weight: 700
}

.si-notice .link {
    vertical-align: baseline
}

.rip-table {
    font-size: 0
}

.rip-table p {
    margin-top: var(--spacing-md);
    font-family: 'Clear Sans';
    font-size: 16px;
    line-height: 27.42px;
    letter-spacing: -0.08px;
    color: rgba(255, 255, 255, 1);
    padding: 0;
    max-width: unset;
}

@media screen and (max-width: 786px) {
    .rip-table p {
        margin-top: var(--spacing-sm);
        padding: 0 5%;
    }
}

.rip-table span {
    padding: 7px 19px 11px;
    display: inline-block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    border: 2px solid #fff
}

.rip-table span:not(:first-child) {
    border-left: none
}


.rooms-item {
    margin-bottom: var(--spacing-xl);
}

.rooms-item:last-child {
    margin-bottom: 0;
}

.rooms-item:nth-child(2n+2) .ri-image {
    margin-left: 6%;
    margin-right: 0
}

.rooms-item p {
    margin-bottom: 1.2em
}

@media screen and (max-width: 786px) {
    .rooms-item p {
        margin-top: var(--spacing-xxs);
        margin-bottom: 0;
    }

    .rooms-item a {
        margin-top: var(--spacing-xs);
        padding: 0 30px 0 0;
    }

    .rooms-item h3 {
        margin-bottom: 0;
    }

    .rooms-item {
        margin-bottom: var(--spacing-sm);
    }
}

.ri-image {
    margin-right: 6%
}

.ri-image .image {
    padding-bottom: 68.7%
}

.ri-content {
    margin: var(--spacing-xs) 6% 0
}

.rip-plan img {
    width: 100%;
    display: block
}

.rip-content {
    margin: var(--spacing-sm) 0 0
}

@media screen and (max-width: 786px) {
    .rip-content h3 {
        margin-bottom: var(--spacing-xs);
    }

    .rip-content li {
        margin-bottom: var(--spacing-xxs);
    }
}

.nb-link {
    padding: 24.8vh 6% 15.7vh;
    display: block;
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden
}

.nb-link .image {
    transform-origin: 50%;
    transition: transform .8s cubic-bezier(.785, .135, .15, .86)
}

.nb-inner {
    display: inline-block;
    position: relative;
    z-index: 2;
    text-align: right;
    white-space: nowrap
}

.nb-inner .h3,
.nb-inner h3 {
    margin-bottom: .25em;
    padding: 0
}

.discount-item {
    margin-top: 57px
}

.discount-item:first-child {
    margin-top: 0;
}

.discount-item.active .di-button:after {
    transform: translateY(6px) rotate(-135deg)
}

.di-top {
    padding: 30px 6% 45px;
    position: relative;
    color: #fff;
    overflow: hidden
}

.di-top p {
    transition: transform .5s cubic-bezier(.785, .135, .15, .86)
}

.di-top p:first-child {
    transition-delay: 0s
}

.di-top p:nth-child(2) {
    transition-delay: .05s
}

.di-top p:nth-child(3) {
    transition-delay: .1s
}

.di-top .image {
    transition: transform .5s cubic-bezier(.785, .135, .15, .86);
    transform-origin: 50%
}

.di-top-inner {
    position: relative;
    z-index: 2
}

.di-button {
    display: inline-block;
    position: relative;
    margin-top: 10px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 500
}

.di-button:after {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    border-color: transparent #fff #fff transparent;
    border-style: solid;
    border-width: 2px;
    position: absolute;
    top: 2px;
    left: 100%;
    margin-left: 12px;
    transform: rotate(45deg);
    transition: transform .3s cubic-bezier(.785, .135, .15, .86)
}

.di-content {
    margin: 0 6%
}

.di-content:after,
.di-content:before {
    content: "";
    display: block
}

.di-content:before {
    padding-bottom: 46px
}

.di-content:after {
    padding-top: 100px
}

.di-content p {
    max-width: 41em
}

.di-content .h5 {
    max-width: 27em
}

.spoiler.active .spoiler-button:after {
    transform: translateY(2px) rotate(-135deg)
}

.spoiler.active .spoilerContent {
    height: auto;
    overflow: visible;
    opacity: 1;
    transform: translateZ(0)
}

.spoiler p:last-child {
    margin: 0
}

.spoilerButton {
    cursor: pointer
}

.spoilerContent {
    height: 0;
    overflow: hidden;
    transform: translate3d(0, -20px, 0);
    opacity: 0;
    transition: transform .5s ease, opacity .5s ease
}

.text-inner .spoilerContent:after,
.text-inner .spoilerContent:before {
    content: "";
    width: 100%;
    display: block
}

.text-inner .spoilerContent:before {
    height: 4px
}

.text-inner .spoilerContent:after {
    height: 17px
}

.spoiler-button {
    display: inline-block;
    padding: 9px 30px 10px 0;
    font-size: 20px;
    line-height: 31px;
    font-weight: 500;
    position: relative
}

.spoiler-button:after,
.spoiler-button:before {
    content: "";
    transition: transform .3s cubic-bezier(.785, .135, .15, .86);
    display: inline-block
}

.spoiler-button:before {
    width: 25px;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: #191e29
}

.spoiler-button:after {
    width: 6px;
    height: 6px;
    margin-left: 15px;
    border-right: 2px solid #191e29;
    border-bottom: 2px solid #191e29;
    transform: translateY(-3px) rotate(45deg)
}

.service-link {
    display: block;
    padding: 9px 0 10px;
    font-size: 20px;
    line-height: 31px;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    color: #191e29
}

.service-link:after,
.service-link:before {
    content: "";
    transition: transform .3s cubic-bezier(.785, .135, .15, .86);
    display: inline-block
}

.service-link:before {
    width: 25px;
    height: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: #191e29
}

.spoiler-button-additionally {
    padding: 9px 30px 10px 0;
    text-align: center
}

.contacts-links {
    margin-bottom: 20px;
    font-size: 0
}

.contacts-links a {
    display: inline-block;
    margin-right: 38px;
    font-size: 20px;
    line-height: 30px;
    color: inherit;
    font-weight: 500
}

.contacts-right {
    margin: 0 6%
}

.contacts-right p {
    margin: 0
}

.map-view {
    width: 100%;
    height: 94vh;
    min-height: 450px;
    margin-top: 73px;
    position: relative
}

/* .map-view.scrl {
    transform: scaleX(.9);
    transform-origin: 0 50%
} */

/* .map-view.scrl:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform-origin: 100% 50%;
    background: #f8f8f8
} */

.map-view.show {
    transform: scaleX(1);
    transition: transform .8s ease .2s
}

.map-view.show:before {
    transform: scaleX(0);
    transition: transform .8s ease .2s
}

.map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.services-top {
    padding-top: 160px;
    margin: 0 6%
}

.services-top.fixed .fixed-content {
    width: 37.3%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 12.8% 1.3% 0 10.7%
}

.services-content {
    margin-top: 70px
}

.service-spoiler .table-mobile {
    margin-top: 0
}

.service-spoiler .spoilerContent:after,
.service-spoiler .spoilerContent:before {
    content: "";
    display: block
}

.service-spoiler .spoilerContent:before {
    height: 18px
}

.service-spoiler .spoilerContent:after {
    height: 11px
}

.text-top {
    position: relative
}

.tt-inner .h1,
.title-sm {
    margin-left: 6%;
    margin-right: 6%;
    margin-bottom: .62em
}

.tt-inner .image {
    margin-left: 6%;
    padding-bottom: 43.478%
}

.text-container {
    overflow: hidden
}

.text-peoples {
    margin: 173px 0 0
}

.tp-item {
    margin-top: 74px
}

.tp-item p {
    max-width: 30em
}

.tp-image .image {
    padding-bottom: 109%
}

.tp-content {
    margin-top: 50px
}

.text-slider {
    margin-top: 174px;
    margin-bottom: 94px;
    overflow: hidden
}

.text-slider .image {
    padding-bottom: 67.8%
}

.text-slider .controls {
    text-align: right;
    margin-top: 37px
}

.text-image {
    margin: 94px 0
}

.text-image img {
    max-width: 100%;
    display: block;
    margin-bottom: 19px
}

.text-image p {
    margin: 0
}

.text-downloads {
    padding: 66px 6% 60px;
    margin-top: 72px;
    margin-bottom: 123px;
    background: #f8f8f8
}

.text-downloads .list {
    margin-bottom: 50px
}

.text-downloads .list a {
    color: inherit;
    border-bottom: 1px solid transparent
}

.pub-slider {
    margin: 40px 6% 0;
    overflow: hidden
}

.pub-item {
    font-size: 16px;
    color: inherit
}

.pub-item:first-child {
    margin-bottom: 60px
}

.pub-item .image {
    padding-bottom: 109.2%;
    margin-bottom: 45px
}

@media screen and (max-width: 786px) {
    .pub-item .image {
        margin-bottom: var(--spacing-sm);
    }

    .pub-item .slider-text .h5 {
        margin-bottom: var(--spacing-xs);
    }

    .pub-item .slider-text p {
        margin-bottom: var(--spacing-xs);
        padding: 0;
    }

    .pub-item p.post-title {
        margin-bottom: var(--spacing-sm);
    }

    .pub-slider .pub-item:last-child .post-title {
        margin-bottom: 0;
    }
}

.pub-controls {
    margin: var(--spacing-sm) 6% 0;
    text-align: right
}

.subscription {
    margin: 0 6%;
    text-align: center
}

.subscription .view-form {
    width: 100%;
    max-width: 580px;
    margin: 70px auto 0;
    font-size: 16px;
    line-height: 20px;
    position: relative
}

@media (max-width: 768px) {
    .subscription .view-form {
        margin: 0 auto 0;
    }
}

.subscription .view-form:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #f8f8f8;
}

.subscription .input-wrapper .placeholder,
.subscription .input-wrapper input {
    padding: 30px 116px 30px 52px;
}

.subscription br {
    display: none
}

/* .subscription.scrl .h3,
.subscription.scrl .view-form,
.subscription.scrl h3 {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    transition: transform .8s ease, opacity .8s ease
} */

.subscription.show .h3,
.subscription.show .view-form,
.subscription.show h3 {
    opacity: 1;
    transform: translateZ(0)
}

@media (max-width: 768px) {
    .subscription.show h3 {
        margin-bottom: var(--spacing-sm);
    }
}

.subscription.show .view-form {
    transition-delay: .1s
}

.input-wrapper,
form {
    position: relative
}

.input-wrapper {
    width: 100%;
    display: block;
    text-align: left;
    box-sizing: border-box
}

.input-wrapper.focus .placeholder,
.input-wrapper.not-empty .placeholder {
    opacity: 0
}

.input-wrapper.error .placeholder {
    -webkit-animation: error .4s ease;
    animation: error .4s ease
}

@-webkit-keyframes error {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }

    to {
        transform: translateX(0)
    }
}

@keyframes error {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(10px)
    }

    to {
        transform: translateX(0)
    }
}

.placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    box-sizing: border-box;
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86), color .3s cubic-bezier(.785, .135, .15, .86)
}

input,
textarea {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    margin: 0;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    box-sizing: border-box;
    color: inherit
}

input[type=checkbox],
input[type=submit],
textarea[type=checkbox],
textarea[type=submit] {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent
}

.footer-submit,
.search-submit,
.subscription-submit {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer
}

.footer-submit:after,
.footer-submit:before,
.search-submit:after,
.search-submit:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86)
}

.subscription-submit:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86)
}

section.subscription .subscription-submit:after {
  top: 50%;
}

.subscription-submit:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86)
}

section.subscription .subscription-submit:before {
  top: 50%;
}

.footer-submit:before,
.search-submit:before,
.subscription-submit:before {
    width: 26px;
    height: 2px;
    margin-left: -13px;
    margin-top: -1px;
    background: #b5b5b5
}

.footer-submit:after,
.search-submit:after,
.subscription-submit:after {
    width: 6px;
    height: 6px;
    border-top: 2px solid #b5b5b5;
    border-right: 2px solid #b5b5b5;
    transform: rotate(45deg);
    margin-top: -4px;
    margin-left: 6px
}

.subscription-submit {
    width: 116px
}

.footer-submit {
    width: 64px
}

footer {
    padding-top: 94px;
    padding-bottom: 78px;
    font-size: 0;
    color: #b5b5b5;
    background: #191e29
}

@media (max-width: 768px) {
    footer {
        padding-top: 32px;
    }
}

footer a {
    color: inherit
}

footer .view-form {
    font-size: 14px;
    line-height: 20px;
    color: #b5b5b5
}

footer .input-wrapper {
    border: 1px solid #b5b5b5;
    transition: border .3s cubic-bezier(.785, .135, .15, .86)
}

footer .input-wrapper.focus {
    border-color: #fff
}

footer .input-wrapper .placeholder,
footer .input-wrapper input {
    padding: 13px 64px 15px 19px
}

footer .input-wrapper input {
    color: #fff
}

.footer-top {
    margin: 0 6%
}

/* .footer-top.scrl .footer-nav li,
.footer-top.scrl .footer-order,
.footer-top.scrl .socials,
.footer-top.scrl .view-form,
.footer-top.scrl p {
    opacity: 0;
    transform: translate3d(-40px, 0, 0)
} */

.footer-top.show .footer-nav li,
.footer-top.show .footer-order,
.footer-top.show .socials,
.footer-top.show .view-form,
.footer-top.show p {
    opacity: 1;
    transform: translateZ(0);
    transition: transform .8s ease, opacity .8s ease, color .4s cubic-bezier(.785, .135, .15, .86)
}

.footer-top.show .socials {
    transition-delay: .05s
}

.footer-top.show .footer-nav li:first-child {
    transition-delay: .15s
}

.footer-top.show .footer-nav li:nth-child(2) {
    transition-delay: .2s
}

.footer-top.show .footer-nav li:nth-child(3) {
    transition-delay: .25s
}

.footer-top.show .footer-nav li:nth-child(4) {
    transition-delay: .3s
}

.footer-top.show .footer-nav li:nth-child(5) {
    transition-delay: .35s
}

.footer-top.show .footer-nav li:nth-child(6) {
    transition-delay: .4s
}

.footer-top.show .footer-nav li:nth-child(7) {
    transition-delay: .45s
}

.footer-top.show .footer-nav li:nth-child(8) {
    transition-delay: .5s
}

.footer-top.show .footer-nav li:nth-child(9) {
    transition-delay: .55s
}

.footer-top.show .f-3 p:first-child {
    transition-delay: .5s
}

.footer-top.show .f-3 p:nth-child(2) {
    transition-delay: .55s
}

.footer-top.show .footer-contacts {
    transition-delay: .6s
}

.footer-top.show .footer-form-notice {
    transition-delay: .65s
}

.footer-top.show .view-form {
    transition-delay: .7s
}

.f-1,
.f-2,
.f-3,
.f-4 {
    font-size: 15px
}

.f-1 {
    margin-bottom: 30px
}

.f-2,
.f-3 {
    margin-bottom: 50px
}

.f-3 p {
    margin-bottom: 2.3em
}

.f-4 a {
    /* display: inline-block; */
    line-height: 24px;
    padding-bottom: 2px;
}

.footer-order {
    padding: 3px 0;
    display: inline-block;
    line-height: 30px;
    position: relative;
    cursor: pointer;
    transition: color .3s cubic-bezier(.785, .135, .15, .86)
}

.footer-order:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: 100% 50%;
    transition: transform .5s cubic-bezier(.785, .135, .15, .86);
    background: #b5b5b5
}

.rt-socials a,
.socials a {
    width: 46px;
    height: 46px;
    display: inline-block;
    position: relative
}

.rt-socials a:after,
.rt-socials a:before,
.socials a:after,
.socials a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86)
}

.rt-socials a:after,
.socials a:after {
    opacity: 0
}

.socials {
    margin-top: 28px;
    margin-left: -14px
}

.socials a.ig:before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 20 20'><circle fill='%23b5b5b5' cx='10' cy='10' r='2.5'/><path fill='%23b5b5b5' d='M17.5,6.9c0-0.8-0.2-1.3-0.3-1.8c-0.2-0.5-0.4-0.9-0.9-1.3c-0.4-0.4-0.8-0.7-1.3-0.9c-0.5-0.2-1-0.3-1.8-0.3s-1.1,0-3.1,0s-2.3,0-3.1,0S5.7,2.8,5.2,2.9c-0.6,0.2-1,0.4-1.4,0.9C3.3,4.2,3.1,4.6,2.9,5.1c-0.2,0.5-0.3,1-0.3,1.8s0,1.1,0,3.1s0,2.3,0,3.1s0.2,1.3,0.3,1.8c0.2,0.5,0.4,0.9,0.9,1.3c0.4,0.4,0.8,0.7,1.3,0.9c0.5,0.2,1,0.3,1.8,0.3s1.1,0,3.1,0s2.3,0,3.1,0s1.3-0.2,1.8-0.3c0.5-0.2,0.9-0.4,1.3-0.9c0.4-0.4,0.7-0.8,0.9-1.3c0.2-0.5,0.3-1,0.3-1.8s0-1.1,0-3.1S17.5,7.7,17.5,6.9z M10,13.9c-2.1,0-3.9-1.7-3.9-3.9S7.9,6.1,10,6.1s3.9,1.7,3.9,3.9S12.1,13.9,10,13.9z M14,6.9c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9S14.5,6.9,14,6.9z'/></svg>") no-repeat 50%
}

.socials a.ig:after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 20 20'><circle fill='%23fff' cx='10' cy='10' r='2.5'/><path fill='%23fff' d='M17.5,6.9c0-0.8-0.2-1.3-0.3-1.8c-0.2-0.5-0.4-0.9-0.9-1.3c-0.4-0.4-0.8-0.7-1.3-0.9c-0.5-0.2-1-0.3-1.8-0.3s-1.1,0-3.1,0s-2.3,0-3.1,0S5.7,2.8,5.2,2.9c-0.6,0.2-1,0.4-1.4,0.9C3.3,4.2,3.1,4.6,2.9,5.1c-0.2,0.5-0.3,1-0.3,1.8s0,1.1,0,3.1s0,2.3,0,3.1s0.2,1.3,0.3,1.8c0.2,0.5,0.4,0.9,0.9,1.3c0.4,0.4,0.8,0.7,1.3,0.9c0.5,0.2,1,0.3,1.8,0.3s1.1,0,3.1,0s2.3,0,3.1,0s1.3-0.2,1.8-0.3c0.5-0.2,0.9-0.4,1.3-0.9c0.4-0.4,0.7-0.8,0.9-1.3c0.2-0.5,0.3-1,0.3-1.8s0-1.1,0-3.1S17.5,7.7,17.5,6.9z M10,13.9c-2.1,0-3.9-1.7-3.9-3.9S7.9,6.1,10,6.1s3.9,1.7,3.9,3.9S12.1,13.9,10,13.9z M14,6.9c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9S14.5,6.9,14,6.9z'/></svg>") no-repeat 50%
}

.socials a.fb:before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 20 20'><path fill='%23b5b5b5' d='M6,7.1h1.7V5.4c0-0.8,0-1.9,0.5-2.6C8.8,2,9.6,1.5,10.9,1.5c2.1,0,3,0.3,3,0.3l-0.4,2.6c0,0-0.7-0.2-1.4-0.2c-0.7,0-1.2,0.2-1.2,0.9v2h2.7l-0.2,2.5h-2.5v8.8H7.7V9.7H6V7.1z'/></svg>") no-repeat 50%
}

.socials a.fb:after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 20 20'><path fill='%23fff' d='M6,7.1h1.7V5.4c0-0.8,0-1.9,0.5-2.6C8.8,2,9.6,1.5,10.9,1.5c2.1,0,3,0.3,3,0.3l-0.4,2.6c0,0-0.7-0.2-1.4-0.2c-0.7,0-1.2,0.2-1.2,0.9v2h2.7l-0.2,2.5h-2.5v8.8H7.7V9.7H6V7.1z'/></svg>") no-repeat 50%
}

.socials a.vk:before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 20 20'><path fill='%23b5b5b5' d='M9.8,15.2h1.1c0,0,0.3,0,0.5-0.2c0.2-0.2,0.2-0.5,0.2-0.5s0-1.5,0.7-1.7c0.7-0.2,1.6,1.4,2.5,2.1c0.7,0.5,1.3,0.4,1.3,0.4l2.5,0c0,0,1.3-0.1,0.7-1.1C19.3,14,19,13.4,17.5,12c-1.6-1.4-1.4-1.2,0.5-3.7c1.2-1.5,1.6-2.4,1.5-2.8c-0.1-0.4-1-0.3-1-0.3l-2.9,0c0,0-0.2,0-0.4,0.1C15.1,5.4,15,5.6,15,5.6S14.6,6.8,14,7.8c-1.3,2.1-1.8,2.2-2,2.1c-0.5-0.3-0.4-1.2-0.4-1.9c0-2,0.3-2.9-0.6-3.1c-0.3-0.1-0.5-0.1-1.3-0.1c-1,0-1.9,0-2.4,0.2C6.9,5.2,6.7,5.5,6.8,5.5c0.2,0,0.6,0.1,0.8,0.4C8,6.3,8,7.2,8,7.2s0.2,2.4-0.4,2.7c-0.4,0.2-0.9-0.2-2.1-2.1c-0.6-1-1-2.1-1-2.1S4.4,5.5,4.3,5.4C4.1,5.2,3.8,5.2,3.8,5.2H1.1c0,0-0.4,0-0.6,0.2c-0.1,0.2,0,0.5,0,0.5s2.1,4.9,4.5,7.3C7.3,15.4,9.8,15.2,9.8,15.2z'/></svg>") no-repeat 50%
}

.socials a.vk:after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 20 20'><path fill='%23fff' d='M9.8,15.2h1.1c0,0,0.3,0,0.5-0.2c0.2-0.2,0.2-0.5,0.2-0.5s0-1.5,0.7-1.7c0.7-0.2,1.6,1.4,2.5,2.1c0.7,0.5,1.3,0.4,1.3,0.4l2.5,0c0,0,1.3-0.1,0.7-1.1C19.3,14,19,13.4,17.5,12c-1.6-1.4-1.4-1.2,0.5-3.7c1.2-1.5,1.6-2.4,1.5-2.8c-0.1-0.4-1-0.3-1-0.3l-2.9,0c0,0-0.2,0-0.4,0.1C15.1,5.4,15,5.6,15,5.6S14.6,6.8,14,7.8c-1.3,2.1-1.8,2.2-2,2.1c-0.5-0.3-0.4-1.2-0.4-1.9c0-2,0.3-2.9-0.6-3.1c-0.3-0.1-0.5-0.1-1.3-0.1c-1,0-1.9,0-2.4,0.2C6.9,5.2,6.7,5.5,6.8,5.5c0.2,0,0.6,0.1,0.8,0.4C8,6.3,8,7.2,8,7.2s0.2,2.4-0.4,2.7c-0.4,0.2-0.9-0.2-2.1-2.1c-0.6-1-1-2.1-1-2.1S4.4,5.5,4.3,5.4C4.1,5.2,3.8,5.2,3.8,5.2H1.1c0,0-0.4,0-0.6,0.2c-0.1,0.2,0,0.5,0,0.5s2.1,4.9,4.5,7.3C7.3,15.4,9.8,15.2,9.8,15.2z'/></svg>") no-repeat 50%
}

.rt-socials a.ig:before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 20 20'><circle fill='%23191e29' cx='10' cy='10' r='2.5'/><path fill='%23191e29' d='M17.5,6.9c0-0.8-0.2-1.3-0.3-1.8c-0.2-0.5-0.4-0.9-0.9-1.3c-0.4-0.4-0.8-0.7-1.3-0.9c-0.5-0.2-1-0.3-1.8-0.3s-1.1,0-3.1,0s-2.3,0-3.1,0S5.7,2.8,5.2,2.9c-0.6,0.2-1,0.4-1.4,0.9C3.3,4.2,3.1,4.6,2.9,5.1c-0.2,0.5-0.3,1-0.3,1.8s0,1.1,0,3.1s0,2.3,0,3.1s0.2,1.3,0.3,1.8c0.2,0.5,0.4,0.9,0.9,1.3c0.4,0.4,0.8,0.7,1.3,0.9c0.5,0.2,1,0.3,1.8,0.3s1.1,0,3.1,0s2.3,0,3.1,0s1.3-0.2,1.8-0.3c0.5-0.2,0.9-0.4,1.3-0.9c0.4-0.4,0.7-0.8,0.9-1.3c0.2-0.5,0.3-1,0.3-1.8s0-1.1,0-3.1S17.5,7.7,17.5,6.9z M10,13.9c-2.1,0-3.9-1.7-3.9-3.9S7.9,6.1,10,6.1s3.9,1.7,3.9,3.9S12.1,13.9,10,13.9z M14,6.9c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9S14.5,6.9,14,6.9z'/></svg>") no-repeat 50%
}

.rt-socials a.ig:after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 20 20'><circle fill='%23b5b5b5' cx='10' cy='10' r='2.5'/><path fill='%23b5b5b5' d='M17.5,6.9c0-0.8-0.2-1.3-0.3-1.8c-0.2-0.5-0.4-0.9-0.9-1.3c-0.4-0.4-0.8-0.7-1.3-0.9c-0.5-0.2-1-0.3-1.8-0.3s-1.1,0-3.1,0s-2.3,0-3.1,0S5.7,2.8,5.2,2.9c-0.6,0.2-1,0.4-1.4,0.9C3.3,4.2,3.1,4.6,2.9,5.1c-0.2,0.5-0.3,1-0.3,1.8s0,1.1,0,3.1s0,2.3,0,3.1s0.2,1.3,0.3,1.8c0.2,0.5,0.4,0.9,0.9,1.3c0.4,0.4,0.8,0.7,1.3,0.9c0.5,0.2,1,0.3,1.8,0.3s1.1,0,3.1,0s2.3,0,3.1,0s1.3-0.2,1.8-0.3c0.5-0.2,0.9-0.4,1.3-0.9c0.4-0.4,0.7-0.8,0.9-1.3c0.2-0.5,0.3-1,0.3-1.8s0-1.1,0-3.1S17.5,7.7,17.5,6.9z M10,13.9c-2.1,0-3.9-1.7-3.9-3.9S7.9,6.1,10,6.1s3.9,1.7,3.9,3.9S12.1,13.9,10,13.9z M14,6.9c-0.5,0-0.9-0.4-0.9-0.9s0.4-0.9,0.9-0.9s0.9,0.4,0.9,0.9S14.5,6.9,14,6.9z'/></svg>") no-repeat 50%
}

.rt-socials a.fb:before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 20 20'><path fill='%23191e29' d='M6,7.1h1.7V5.4c0-0.8,0-1.9,0.5-2.6C8.8,2,9.6,1.5,10.9,1.5c2.1,0,3,0.3,3,0.3l-0.4,2.6c0,0-0.7-0.2-1.4-0.2c-0.7,0-1.2,0.2-1.2,0.9v2h2.7l-0.2,2.5h-2.5v8.8H7.7V9.7H6V7.1z'/></svg>") no-repeat 50%
}

.rt-socials a.fb:after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 20 20'><path fill='%23b5b5b5' d='M6,7.1h1.7V5.4c0-0.8,0-1.9,0.5-2.6C8.8,2,9.6,1.5,10.9,1.5c2.1,0,3,0.3,3,0.3l-0.4,2.6c0,0-0.7-0.2-1.4-0.2c-0.7,0-1.2,0.2-1.2,0.9v2h2.7l-0.2,2.5h-2.5v8.8H7.7V9.7H6V7.1z'/></svg>") no-repeat 50%
}

.rt-socials a.vk:before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 20 20'><path fill='%23191e29' d='M9.8,15.2h1.1c0,0,0.3,0,0.5-0.2c0.2-0.2,0.2-0.5,0.2-0.5s0-1.5,0.7-1.7c0.7-0.2,1.6,1.4,2.5,2.1c0.7,0.5,1.3,0.4,1.3,0.4l2.5,0c0,0,1.3-0.1,0.7-1.1C19.3,14,19,13.4,17.5,12c-1.6-1.4-1.4-1.2,0.5-3.7c1.2-1.5,1.6-2.4,1.5-2.8c-0.1-0.4-1-0.3-1-0.3l-2.9,0c0,0-0.2,0-0.4,0.1C15.1,5.4,15,5.6,15,5.6S14.6,6.8,14,7.8c-1.3,2.1-1.8,2.2-2,2.1c-0.5-0.3-0.4-1.2-0.4-1.9c0-2,0.3-2.9-0.6-3.1c-0.3-0.1-0.5-0.1-1.3-0.1c-1,0-1.9,0-2.4,0.2C6.9,5.2,6.7,5.5,6.8,5.5c0.2,0,0.6,0.1,0.8,0.4C8,6.3,8,7.2,8,7.2s0.2,2.4-0.4,2.7c-0.4,0.2-0.9-0.2-2.1-2.1c-0.6-1-1-2.1-1-2.1S4.4,5.5,4.3,5.4C4.1,5.2,3.8,5.2,3.8,5.2H1.1c0,0-0.4,0-0.6,0.2c-0.1,0.2,0,0.5,0,0.5s2.1,4.9,4.5,7.3C7.3,15.4,9.8,15.2,9.8,15.2z'/></svg>") no-repeat 50%
}

.rt-socials a.vk:after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 20 20'><path fill='%23b5b5b5' d='M9.8,15.2h1.1c0,0,0.3,0,0.5-0.2c0.2-0.2,0.2-0.5,0.2-0.5s0-1.5,0.7-1.7c0.7-0.2,1.6,1.4,2.5,2.1c0.7,0.5,1.3,0.4,1.3,0.4l2.5,0c0,0,1.3-0.1,0.7-1.1C19.3,14,19,13.4,17.5,12c-1.6-1.4-1.4-1.2,0.5-3.7c1.2-1.5,1.6-2.4,1.5-2.8c-0.1-0.4-1-0.3-1-0.3l-2.9,0c0,0-0.2,0-0.4,0.1C15.1,5.4,15,5.6,15,5.6S14.6,6.8,14,7.8c-1.3,2.1-1.8,2.2-2,2.1c-0.5-0.3-0.4-1.2-0.4-1.9c0-2,0.3-2.9-0.6-3.1c-0.3-0.1-0.5-0.1-1.3-0.1c-1,0-1.9,0-2.4,0.2C6.9,5.2,6.7,5.5,6.8,5.5c0.2,0,0.6,0.1,0.8,0.4C8,6.3,8,7.2,8,7.2s0.2,2.4-0.4,2.7c-0.4,0.2-0.9-0.2-2.1-2.1c-0.6-1-1-2.1-1-2.1S4.4,5.5,4.3,5.4C4.1,5.2,3.8,5.2,3.8,5.2H1.1c0,0-0.4,0-0.6,0.2c-0.1,0.2,0,0.5,0,0.5s2.1,4.9,4.5,7.3C7.3,15.4,9.8,15.2,9.8,15.2z'/></svg>") no-repeat 50%
}

.footer-nav li {
    padding: 6px 0
}

.footer-nav a {
    display: inline-block;
    line-height: 30px
}

.footer-form-notice {
    margin-top: 2.3em
}

.footer-bottom {
    margin: 0 6%;
    padding-top: 58px;
    font-size: 14px
}

/* .footer-bottom.scrl .copy,
.footer-bottom.scrl .redcollar {
    opacity: 0;
    transform: translate3d(-40px, 0, 0)
} */

.footer-bottom.show .copy,
.footer-bottom.show .redcollar {
    opacity: 1;
    transform: translateZ(0);
    transition: transform .8s ease, opacity .8s ease
}

.footer-bottom.show .redcollar {
    transition-delay: .05s
}

.redcollar {
    padding-left: 38px;
    line-height: 1.625em;
    position: relative;
    box-sizing: border-box
}

.redcollar a {
    color: inherit;
    position: static;
    line-height: inherit;
    transition: color .3s cubic-bezier(.785, .135, .15, .86)
}

.redcollar a:after {
    display: none
}

.redcollar svg {
    width: 24px;
    height: 8px;
    display: block;
    position: absolute;
    top: 6px;
    left: 0
}

.redcollar polygon {
    fill: #b5b5b5;
    transition: fill .3s cubic-bezier(.785, .135, .15, .86)
}

.order-form {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7000;
    overflow: hidden;
    visibility: hidden
}

.order-form form {
    position: static
}

.order-form.active-left,
.order-form.active-left .of-overlay,
.order-form.active-right,
.order-form.active-right .of-overlay {
    visibility: visible
}

.order-form.active-left .of-bg-white,
.order-form.active-right .of-bg-grey {
    transform: scaleX(1);
    transition: transform .5s cubic-bezier(.075, .82, .165, 1), visibility .8s;
    visibility: visible
}

.order-form .input-wrapper {
    margin-top: 29px;
    border-bottom: 1px solid #fff
}

.order-form .input-wrapper .placeholder,
.order-form .input-wrapper input,
.order-form .input-wrapper textarea {
    padding: 9px 0
}

.order-form .input-wrapper+.input-wrapper {
    margin-top: 14px
}

.order-form .placeholder {
    color: #b5b5b5
}

.order-form .list li:before {
    background: #fff
}

.order-form .of-close-all {
    top: 2.4%;
    right: 2.1%;
    z-index: 3
}

.order-form .of-close-all:after,
.order-form .of-close-all:before {
    background: #fff
}

#popup-booking .of-close-all:after,
#popup-booking .of-close-all:before {
    background: #191e29;
}

.order-form .of-close {
    top: 2.4%;
    right: 5%
}

.of-bg-grey,
.of-bg-white,
.of-left,
.of-overlay,
.of-right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    box-sizing: border-box;
    visibility: hidden;
}

.of-overlay {
    display: none
}

.of-bg-grey,
.of-bg-white {
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86) .2s, visibility .5s
}

.of-bg-grey {
    right: 0;
    z-index: 0;
    background: #191e29
}

.of-bg-white {
    right: 0;
    z-index: 4;
    background: #fff
}

.of-left,
.of-right {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transform: translateX(40px);
    transition: transform 0s ease .3s, opacity .3s cubic-bezier(.785, .135, .15, .86), visibility .3s
}

.of-left.active,
.of-right.active {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: transform .5s ease .1s,
                opacity .5s cubic-bezier(.785, .135, .15, .86) .1s,
                visibility .5s .1s;
    overflow: visible !important;
}


.of-right {
    right: 0;
    z-index: 2;
    color: #fff
}

.of-right .big-button {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .3s ease 1s, transform .3s ease 1s
}

.of-right.active .big-button {
    opacity: 1;
    transform: none
}

.of-left {
    right: 0;
    z-index: 5
}

.of-inner {
    min-height: calc(100% - 6vw - 44px);
    box-sizing: border-box;
    padding: 0 0 7.85%;
    position: relative
}

.of-buttons {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.of-back {
    margin-right: auto;
    cursor: pointer;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86)
}

.of-back:before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 9px;
    margin-top: -2px;
    display: inline-block;
    vertical-align: middle;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg)
}

.date-calc {
    display: none
}

.date-check,
.date-picker,
.of-radio-change,
.of-radio-check,
.person-check,
.select-person {
    display: inline-block;
    margin-bottom: 20px
}

.date-check span,
.date-picker span,
.of-radio-change span,
.of-radio-check span,
.person-check span,
.select-person span {
    width: 100%;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.date-check .h5,
.date-picker .h5,
.of-radio-change .h5,
.of-radio-check .h5,
.person-check .h5,
.select-person .h5 {
    margin-bottom: 0;
    font-size: 16px
}

.date-picker,
.of-radio-change,
.select-person {
    cursor: pointer
}

.date-picker.active .of-rc-value,
.of-radio-change.active .of-rc-value,
.select-person.active .of-rc-value {
    transform: translate3d(-19px, 0, 0)
}

.date-picker.active .of-rc-value:before,
.of-radio-change.active .of-rc-value:before,
.select-person.active .of-rc-value:before {
    transform: translateX(-5px) rotate(45deg)
}

.date-picker.error .h5,
.of-radio-change.error .h5,
.select-person.error .h5 {
    -webkit-animation: of-error .4s ease;
    animation: of-error .4s ease
}

.date-picker.error.active .h5,
.of-radio-change.error.active .h5,
.select-person.error.active .h5 {
    -webkit-animation: of-error-active .4s ease;
    animation: of-error-active .4s ease
}

@-webkit-keyframes of-error {
    0% {
        transform: translateX(-5px)
    }

    25% {
        transform: translateX(-15px)
    }

    75% {
        transform: translateX(5px)
    }

    to {
        transform: translateX(-5px)
    }
}

@keyframes of-error {
    0% {
        transform: translateX(-5px)
    }

    25% {
        transform: translateX(-15px)
    }

    75% {
        transform: translateX(5px)
    }

    to {
        transform: translateX(-5px)
    }
}

@-webkit-keyframes of-error-active {
    0% {
        transform: translateX(-19px)
    }

    25% {
        transform: translateX(-29px)
    }

    75% {
        transform: translateX(-9px)
    }

    to {
        transform: translateX(-19px)
    }
}

@keyframes of-error-active {
    0% {
        transform: translateX(-19px)
    }

    25% {
        transform: translateX(-29px)
    }

    75% {
        transform: translateX(-9px)
    }

    to {
        transform: translateX(-19px)
    }
}

.date-check,
.date-picker {
    margin-top: 18px
}

.date-check input,
.date-picker input {
    min-width: 196px
}

.person-check,
.select-person {
    position: relative
}

.person-check .h5,
.select-person .h5 {
    font-size: 16px
}

.person-check select,
.select-person select {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer
}

.of-sp-value::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 10px;
    margin-top: -4px;
    display: inline-block;
    vertical-align: middle;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg)
}

.disabled .of-sp-value::after {
    display: none;
}

.of-label {
    display: block;
    margin-bottom: .45em
}

.of-rc-value {
    padding-left: 5px !important;
    transform: translate3d(-5px, 0, 0)
}

.of-rc-value,
.of-rc-value:before {
    transition: transform .4s cubic-bezier(.785, .135, .15, .86)
}

.of-rc-value:before {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 2px;
    margin-right: 9px;
    display: inline-block;
    vertical-align: middle;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg)
}

.of-bottom {
    margin-top: 10px;
    padding-top: 12px;
    border-top: 2px solid #fff;
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 7.85%
}

.of-bottom-right {
    grid-column-start: 2;
    justify-self: end
}

.of-bottom-right p {
    white-space: nowrap
}

.of-bottom-left,
.of-bottom-right {
    display: none;
    opacity: 0
}

.of-bottom-left.active,
.of-bottom-right.active {
    display: block
}

.of-b-recommended {
    grid-column: 1/3
}

.of-submit {
    position: absolute;
    bottom: 0;
    right: 6.8%;
    margin-bottom: 6.8%
}

.of-sp:after,
.of-sp:before {
    content: "";
    height: 20px;
    display: block
}

.of-dp-value {
    cursor: pointer
}

.of-checkbox,
.of-radio,
.of-radio-big {
    display: block;
    pointer-events: none;
    cursor: pointer;
    position: relative
}

.of-checkbox input,
.of-radio-big input,
.of-radio input {
    width: 100px;
    height: 0;
    padding-bottom: 40px;
    position: absolute;
    top: 0;
    left: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    pointer-events: auto;
    cursor: pointer
}

.of-checkbox input:checked+span,
.of-radio-big input:checked+span,
.of-radio input:checked+span {
    transform: translateX(5px)
}

.of-checkbox span,
.of-radio-big span,
.of-radio span {
    padding: 8px 0;
    display: inline-block;
    pointer-events: auto;
    line-height: 24px;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86)
}

.of-radio-big input {
    padding-bottom: 43px
}

.of-radio-big span {
    padding: 9px 0 10px
}

.of-check-list {
    margin-top: 11.8%;
    position: relative
}

.of-close,
.of-close-all,
.popup-close {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 40px;
    right: calc(6% - 11px);
    z-index: 3;
    cursor: pointer;
    font-size: 0
}

.of-close-all:after,
.of-close-all:before,
.of-close:after,
.of-close:before,
.popup-close:after,
.popup-close:before {
    content: "";
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    top: 19px;
    left: 10px;
    transition: background-color .3s cubic-bezier(.785, .135, .15, .86);
    background: #191e29
}

.of-close-all:before,
.of-close:before,
.popup-close:before {
    transform: rotate(45deg)
}

.of-close-all:after,
.of-close:after,
.popup-close:after {
    transform: rotate(135deg)
}

.cursor-item {
    width: 18px;
    height: 18px;
    position: absolute;
    top: -9px;
    left: -9px;
    pointer-events: none;
    transform: translateZ(0)
}

.cursor-item.enter span {
    opacity: 1;
    transform: scale(1) rotate(0);
    transition: opacity .3s ease, transform .3s ease
}

.cursor-item span {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: opacity .3s ease, transform 0s ease .3s
}

.cursor-item span:after,
.cursor-item span:before {
    content: "";
    display: block;
    position: absolute;
    background: #191e29
}

.cursor-item span:before {
    width: 100%;
    height: 2px;
    top: 8px;
    left: 0
}

.cursor-item span:after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 8px
}

.popup-gallery {
    color: #b5b5b5;
    background: #191e29
}

.popup-gallery .cursor-item span:after,
.popup-gallery .cursor-item span:before {
    transform: rotate(45deg);
    background: #fff
}

.popup-gallery .popup-close:after,
.popup-gallery .popup-close:before {
    background: #fff
}

.response-gallery {
    max-width: 1100px;
    padding: 0 6% 75px;
    margin: 0;
    background: none
}

.response-gallery .image {
    padding-bottom: 62.56%
}

.response-gallery .controls {
    margin: 40px 0 30px
}

.response-gallery .slide {
    font-size: 16px
}

.response-gallery p {
    max-width: 32em
}

.response-gallery .post-title {
    color: #fff;
    margin-bottom: .2em
}

.popup-gallery-slider {
    overflow: hidden
}

.gs-content {
    margin-top: 32px;
    padding-right: 50px
}

.popup-stuff {
    background: #0000009e;
    overflow: auto;
    scrollbar-width: none;
}

.popup-stuff .cursor-item span:after,
.popup-stuff .cursor-item span:before {
    transform: rotate(45deg);
    background: #191e29
}

.response-stuff {
    width: 100%;
    max-width: none;
    padding: 110px 6% 75px;
    margin: 0;
    background: #fff
}

.response-stuff p {
    max-width: 32em
}

.response-stuff .post-title {
    color: #fff;
    margin-bottom: .2em
}

.response-stuff .popup-stuff-left,
.response-stuff .popup-stuff-right {
    font-size: 16px
}

/* .response-stuff .scrl-text {
    opacity: 1;
    transform: none;
    transition: none
} */

.response-stuff .image {
    padding-bottom: 93%;
    margin-bottom: 9%
}

.response-content {
    font-size: 16px
}

.popup-discount,
.popup-service,
.popup-video {
    color: #b5b5b5;
    background: #191e29
}

.popup-discount .cursor-item span:after,
.popup-discount .cursor-item span:before,
.popup-service .cursor-item span:after,
.popup-service .cursor-item span:before,
.popup-video .cursor-item span:after,
.popup-video .cursor-item span:before {
    transform: rotate(45deg);
    background: #fff
}

.popup-discount .popup-close:after,
.popup-discount .popup-close:before,
.popup-service .popup-close:after,
.popup-service .popup-close:before,
.popup-video .popup-close:after,
.popup-video .popup-close:before {
    background: #fff
}

.discount-content,
.service-content {
    max-width: 770px;
    padding: 35px 6% 75px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none
}

.discount-content p,
.service-content p {
    max-width: none
}

.discount-content .input-wrapper,
.service-content .input-wrapper {
    margin-top: 53px;
    border-bottom: 1px solid #fff
}

.discount-content .input-wrapper .placeholder,
.discount-content .input-wrapper input,
.discount-content .input-wrapper textarea,
.service-content .input-wrapper .placeholder,
.service-content .input-wrapper input,
.service-content .input-wrapper textarea {
    padding: 9px 0
}

.discount-content .input-wrapper+.input-wrapper,
.service-content .input-wrapper+.input-wrapper {
    margin-top: 45px
}

.discount-content .placeholder,
.service-content .placeholder {
    color: #b5b5b5
}

.popup-video .popup-inner:before {
    content: "";
    width: 0;
    height: 100%;
    display: inline-block;
    vertical-align: middle
}

.video-content {
    max-width: 770px;
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background: none
}

.video-content:before {
    content: "";
    width: 100%;
    display: block;
    padding-bottom: 56.25%
}

.videoContainer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.discount-button {
    margin-top: 50px;
    text-align: right
}

.search-form {
    position: relative;
    margin-bottom: 28px
}

.search-input {
    padding-bottom: 14px;
    border-bottom: 2px solid #191e29
}

.search-submit {
    width: 60px
}

.search-submit:before {
    background: #191e29
}

.search-submit:after {
    border-top: 2px solid #191e29;
    border-right: 2px solid #191e29
}

.search-hints {
    position: absolute;
    left: 0;
    opacity: 0;
    width: 100%;
    background: #fff;
    padding-top: 7px;
    padding-bottom: 50px;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .08);
    visibility: hidden;
    z-index: 2;
    transition: opacity .5s cubic-bezier(.785, .135, .15, .86), visibility .5s cubic-bezier(.785, .135, .15, .86)
}

.search-hint {
    font-size: 13px;
    padding-top: 21px;
    padding-left: 25px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    color: #282828;
    transition: opacity .5s cubic-bezier(.785, .135, .15, .86), color .5s cubic-bezier(.785, .135, .15, .86)
}

.search-hint:focus,
.search-hint:hover {
    color: #b5b5b5
}

.filters--search {
    max-width: 71%
}

.section-name {
    display: inline-block;
    margin-left: 10.6%;
    margin-bottom: 0
}

.response-items {
    margin-top: 10.6%;
    margin-bottom: 50px
}

.response-items:first-child {
    margin-top: 0
}

.services-content--right {
    margin-left: 6%
}

.search-button {
    transform: scale(1.3);
    cursor: pointer;
    z-index: 1;
    pointer-events: auto;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: opacity .5s cubic-bezier(.785, .135, .15, .86), visibility .5s
}

.search-button svg {
    pointer-events: none
}

.search-button path {
    stroke: #fff;
    transition: stroke 0.5s ease;
}

.search-button:hover {
    opacity: .5
}

.header-controls {
    left: 253px;
    display: flex;
    top: calc(5.1vh + 7px) !important;
    ;
}

.search-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 6000;
    background: #fff;
    visibility: hidden;
    padding-top: 80px;
    transform: translateY(-200px);
    transition: transform .5s cubic-bezier(.785, .135, .15, .86), visibility .8s;
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, .08)
}

.search-block.active {
    transform: translateY(0);
    visibility: visible
}

.search-form--header {
    position: relative;
    margin: auto auto 45px;
    width: 88%
}

.search-form--header:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 23px;
    background: url(198bd9eeb25d7cb0eef8c9875dd88576.svg)
}

.search-form--header .search-submit {
    width: 34px
}

.search-form--header .search-submit:after,
.search-form--header .search-submit:before {
    top: 9px
}

.search-form--header .search-hints {
    width: 100%;
    box-shadow: none
}

.search-form--header .search-icon {
    position: absolute;
    top: 0;
    left: 0
}

.search-form--header .placeholder {
    padding-left: 40px
}

.search-form--header .search-input {
    position: relative;
    padding-left: 40px
}

.search-close {
    position: absolute;
    top: 3.2vh;
    right: 4.3%;
    width: 22px;
    height: 22px;
    cursor: pointer;
    z-index: 3
}

.search-close:before {
    transform: rotate(45deg)
}

.search-close:after,
.search-close:before {
    content: "";
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    transition: background-color .3s cubic-bezier(.785, .135, .15, .86);
    background: #191e29
}

.search-close:after {
    transform: rotate(135deg)
}

.search-close:hover:after,
.search-close:hover:before {
    background: #b5b5b5
}

.moreContentGetButton--search {
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    margin: 70px auto auto;
    padding-right: 49px;
    padding-bottom: 5px;
    letter-spacing: .05em;
    cursor: pointer
}

.moreContentGetButton--search:before {
    content: "...";
    font-size: 21px;
    position: absolute;
    top: -11px;
    right: 0;
    letter-spacing: 4px
}

.moreContentGetButton--search:after {
    content: "";
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(0) scaleX(0);
    transform-origin: 0 100%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86);
    background: #191e29
}

.moreContentGetButton--search:hover:after {
    transform: translateX(0) scaleX(1)
}

.response-category {
    margin-left: 10.6%
}

.search-response {
    margin-bottom: 50px
}


.quiz .subscription {
    margin-top: 0
}

.quiz .view-form {
    display: none;
    margin-top: 0
}

.quiz .view-form.is-active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quiz.hidden {
    display: none
}

.quiz__block {
    position: relative;
    width: 100%;
    height: 620px
}

.quiz__block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    z-index: 10;
    transition: transform 0s;
    transform: scaleX(0);
    transform-origin: 100% 50%
}

.quiz__block.transition:before {
    transform: scaleX(1);
    transition: transform .8s ease
}

.quiz__block.started:before {
    background-color: #fff
}

.quiz__block.started .quiz__content {
    transition: opacity .6s ease
}

.quiz__thumbnail {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity .3s ease
}

.quiz__thumbnail img {
    -o-object-fit: cover;
    object-fit: cover
}

.quiz__thumbnail:before,
.quiz__thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.quiz__thumbnail:before {
    content: "";
    display: block;
    mix-blend-mode: multiply;
    background: rgba(0, 0, 0, .57);
    z-index: 1
}

.quiz__thumbnail .button.hidden {
    display: none
}

.quiz__thumbnail.hidden {
    transition: opacity 0s;
    opacity: 0
}

.quiz__content,
.thumbnail__content {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1
}

.quiz__content h3,
.thumbnail__content h3 {
    color: #fff;
    margin-bottom: 9.3%
}

@media (max-width: 1099px) {

    .quiz__content,
    .thumbnail__content {
        width: 90%
    }
}

.rip-top-content {
    display: flex;
    flex-direction: column;
}

.quiz__content {
    position: absolute;
    width: 100%;
    background-color: #f8f8f8;
    transition: opacity .6s ease .6s
}

.quiz__content h3 {
    color: #000;
    z-index: 2;
    max-width: 85%
}

.quiz__content .quiz__counter {
    padding: 0;
    margin: 0 0 35px;
    color: #bababa;
    z-index: 2
}

.quiz__content .question-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.quiz__content .question-background.hidden {
    opacity: 0
}

.quiz__content .quiz__buttons {
    z-index: 2
}

.quiz__content.hidden {
    opacity: 0
}

.quiz__content.with-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, .57)
}

.quiz__content.with-image .quiz__buttons,
.quiz__content.with-image h3,
.quiz__content.with-image p {
    color: #fff
}

.quiz__content.with-image .quiz__buttons .control {
    border-color: #fff
}

.quiz__content.with-image .quiz__buttons .control:after {
    background-color: #fff
}

.header-bottom:hover .messenger-open {
    pointer-events: auto;
}


.header-top {
    margin-top: 6px;
    top: 5.1vh;
    right: 2.1%;
    visibility: visible;
    opacity: 1;
    z-index: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}


.header-top a {
    font-size: 25px
}

.lang {
    margin-left: 54px
}

.lang a {
    padding: 0 11px
}

.lang a:last-child {
    margin-left: 6px;
}

.lang a:before {
    left: 11px;
    right: 11px;
    top: 27px;
}

@media screen and (min-width: 860px) {
    html.page-invert .pt-content .image {
        width: 40%;
        height: auto;
        left: auto;
        right: 0;
        top: 0;
        bottom: 0;
        display: block
    }

    html.page-invert .pt-content .image:before {
        display: none
    }

    html.page-invert .pt-content:before {
        width: 58.6%
    }

    html.headerHidden .hb-button:not(.no-hide),
    html.page-invert .hb-button {
        transform: scaleX(.24752)
    }

    html.headerHidden .plus-button,
    html.page-invert .plus-button {
        width: 50px;
        border-radius: 25px
    }

    .desktop-text {
        display: block
    }

    .h1,
    .h2,
    h1,
    h2 {
        margin-bottom: .5em;
        font-size: 90px;
        line-height: 100px
    }

    .h2,
    h2 {
        margin: 0 10.7%
    }

    .h3,
    h3 {
        margin-bottom: .65em;
        font-size: 45px;
        line-height: 1.24em
    }

    .h6,
    h6 {
        font-size: 14px
    }

    p {
        max-width: 35em
    }

    p a {
        transition: border .3s ease
    }

    p a:hover {
        border-color: transparent
    }

    blockquote {
        margin: 12% 0
    }

    blockquote,
    blockquote p {
        font-size: 45px;
        line-height: 1.24em
    }

    .button {
        padding: 15px 38px;
        font-size: 14px;
        line-height: 20px
    }

    .button:hover:before,
    .button:hover canvas {
        transform: translateZ(0) scale(1.1)
    }

    .button.big-button:hover:before,
    .button.big-button:hover canvas {
        transform: translateZ(0) scale(1.03, 1.1)
    }

    .button-more,
    .link-arrow,
    .link-button {
        font-size: 14px;
        line-height: 20px
    }

    .link-arrow {
        padding: 15px 54px 15px 0
    }

    .link-arrow:hover:before {
        transform: scaleX(1.4)
    }

    .link-arrow:hover:after {
        transform: translateX(10px) rotate(45deg)
    }

    .link-button {
        padding: 15px 0
    }

    .link-button:hover:before {
        transform: scaleX(0)
    }

    .button-more:hover {
        color: #666
    }

    .link:after {
        transition: opacity .5s cubic-bezier(.785, .135, .15, .86)
    }

    .link:hover:after {
        opacity: 0
    }

    .default-link:hover:before {
        transform: scaleX(1)
    }

    .line-title {
        margin-bottom: 3.65vw
    }

    .right-block {
        width: 45.65%;
        margin: 0 2.9% 0 51.45%
    }

    .third-block {
        width: 30.43333%;
        margin: 0 2.9% 0 66.67%
    }

    .normal-block {
        margin: 0 2.9%
    }


    .text-inner iframe {
        height: 400px
    }

    .nav-button {
        top: 5.1vh;
        left: 48px
    }

    .nav-button span {
        width: 52px;
        height: 20px;
        margin-left: 68px;
        margin-top: 12px;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
        font-size: 25px;
        line-height: 20px;
        pointer-events: none;
        transform-origin: 0 50%;
        transition: transform .4s cubic-bezier(.075, .82, .165, 1), margin .4s cubic-bezier(.075, .82, .165, 1), background-color .1s cubic-bezier(.075, .82, .165, 1)
    }

    nav {
        height: 100%;
        margin-top: 0
    }

    nav .menu-link-inner,
    nav a {
        font-size: 25px;
        color: #b5b5b5
    }

    nav .menu-link-inner:hover,
    nav a:hover {
        color: #fff
    }

    .menu {
        width: 78.4%;
        margin: 0 10.8%;
        padding-bottom: 0
    }

    .menu>li {
        transform: translate3d(-40px, 0, 0)
    }

    .menu li.hover {
        z-index: 1
    }

    .menu li.hover .menu-link-inner,
    .menu li.hover .menu-link a {
        color: #fff
    }

    .menu li.hover .menu-link-inner:after,
    .menu li.hover .menu-link a:after {
        transform: translate3d(10px, 0, 0) rotate(-45deg);
        border-color: #fff;
        transition: transform 1s cubic-bezier(.075, .82, .165, 1), border .4s ease
    }

    .menu li.hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateZ(0);
        transition: transform 1s cubic-bezier(.075, .82, .165, 1), opacity .5s ease, visibility 1s ease
    }

    .menu-link {
        display: inline-block
    }

    .menu-link .menu-link-inner:after,
    .menu-link a:after {
        margin-top: -2px;
        margin-left: 15px;
        transform: rotate(-45deg);
        border-color: #b5b5b5
    }

    .sub-menu {
        width: 70%;
        height: auto;
        position: absolute;
        left: 30%;
        top: 12px;
        opacity: 0;
        transition: transform 0s cubic-bezier(.785, .135, .15, .86) .3s, opacity .3s cubic-bezier(.785, .135, .15, .86), visibility .3s cubic-bezier(.785, .135, .15, .86);
        transform: translate3d(-40px, 0, 0);
        visibility: hidden
    }

    .sub-menu a {
        padding: 4px 0
    }

    .sub-menu li {
        display: inline-block;
        margin-right: 50px
    }

    .nav-overlay {
        display: flex
    }

    .nav-overlay:after,
    .nav-overlay:before {
        width: 50%;
        display: block
    }

    .logo {
        width: 142px;
        height: 84px;
        background-size: 71px 66px;
        top: 22px;
        left: calc(50% - 13px);
    }

    .nav-bottom {
        padding: 0 !important;
        position: absolute;
        pointer-events: auto;
        white-space: nowrap
    }

    .header-bottom,
    .nav-bottom {
        margin-bottom: 2.9%;
        bottom: 0;
        right: 2.9%
    }

    .header-bottom:hover .hb-button {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
        visibility: visible
    }

    .header-bottom:hover .hb-button .button:before {
        box-shadow: 0 0 2px rgba(0, 0, 0, .2)
    }

    .header-bottom:hover .plus-button {
        width: 100%;
        border-radius: 0;
        opacity: 0;
        pointer-events: none
    }

    .header-bottom:hover .mb-button {
        pointer-events: auto
    }

    .header-bottom:hover .messenger-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateZ(0)
    }

    .messenger-open {
        width: 50px;
        height: 50px;
        border-radius: 25px
    }

    .hb-button .button,
    .nav-bottom .button {
        width: 140px
    }

    .main-slider .controls {
        margin-top: 46px;
        top: 43.8vh;
        right: 2.9%;
        margin-left: 575px
    }

    .ms-slide-inner,
    .pt-inner {
        margin-left: 10.6%
    }

    .ms-slide-inner .h1 a,
    .ms-slide-inner h1 a,
    .pt-inner .h1 a,
    .pt-inner h1 a {
        transition: border .5s cubic-bezier(.785, .135, .15, .86)
    }

    .ms-slide-inner .h1 a:hover,
    .ms-slide-inner h1 a:hover,
    .pt-inner .h1 a:hover,
    .pt-inner h1 a:hover {
        border-color: inherit
    }

    .arrow-to-bottom {
        bottom: 5vh;
        left: 10.6%
    }

    .main-top blockquote {
        max-width: 1280px;
        margin: 11.4% 10.7% 6.2%
    }

    .services-block,
    .services-main {
        font-size: 0
    }

    .services-block .right-block,
    .services-main .right-block {
        margin-top: -1.4%
    }


    .services-main .normal-block {
        text-align: right
    }

    h2+.sb-items,
    h2+.sm-items {
        margin-top: 2.2%
    }

    .sb-item {
        width: 45.65%;
        display: inline-block;
        vertical-align: bottom
    }



    .sb-item:nth-child(odd) {
        margin: 2.7% 1.45% 5.2% 2.9%
    }

    .sb-item:nth-child(2n+2) {
        margin: 2.7% 2.9% 5.2% 1.45%
    }

    .sb-item:nth-child(4n+3) {
        vertical-align: top
    }

    .sb-item:first-child {
        margin-top: 0
    }

    .link-hover,
    .link-item {
        cursor: pointer
    }

    .link-hover .image,
    .link-item .image {
        position: relative
    }

    .link-hover .image:before,
    .link-item .image:before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 1;
        transition: opacity .5s cubic-bezier(.075, .82, .165, 1);
        background: rgba(0, 0, 0, .5)
    }

    @supports (mix-blend-mode:multiply) {

        .link-hover .image:before,
        .link-item .image:before {
            mix-blend-mode: multiply;
            background: rgba(110, 120, 138, .8)
        }
    }

    .link-hover:hover .image:before,
    .link-item:hover .image:before {
        opacity: 1;
        transition: opacity .5s cubic-bezier(.785, .135, .15, .86)
    }

    .sm-item {
        display: inline-block;
        vertical-align: top
    }

    .sm-item:nth-child(4n+1),
    .sm-item:nth-child(4n+4) {
        width: 30.6%
    }

    .sm-item:nth-child(4n+1) .image,
    .sm-item:nth-child(4n+4) .image {
        padding-bottom: 109%
    }

    .sm-item:nth-child(4n+1),
    .sm-item:nth-child(4n+3) {
        margin: 3.25% .725% 2.35% 2.9%
    }

    .sm-item:nth-child(4n+2),
    .sm-item:nth-child(4n+4) {
        margin: 3.25% 2.9% 2.35% .725%
    }

    .sm-item:nth-child(4n+2),
    .sm-item:nth-child(4n+3) {
        width: 62.15%
    }

    .sm-item:nth-child(4n+2) .image,
    .sm-item:nth-child(4n+3) .image {
        padding-bottom: 53.667%
    }

    .link-hover p {
        transition: transform .5s cubic-bezier(.785, .135, .15, .86)
    }

    .link-hover p:first-of-type {
        transition-delay: 0s
    }

    .link-hover p:nth-of-type(2) {
        transition-delay: .05s
    }

    .link-hover p:nth-of-type(3) {
        transition-delay: .1s
    }

    .link-hover:hover p {
        transform: translate3d(0, 10px, 0)
    }

    .link-hover:hover p:first-of-type {
        transition-delay: .1s
    }

    .link-hover:hover p:nth-of-type(2) {
        transition-delay: .05s
    }

    .link-hover:hover p:nth-of-type(3) {
        transition-delay: 0s
    }

    .link-hover:hover .link-item-content,
    .link-hover:hover .link-item-view,
    .link-item:hover .link-item-content,
    .link-item:hover .link-item-view {
        opacity: 1;
        transform: translateX(0);
        transition: opacity .8s cubic-bezier(.785, .135, .15, .86), transform .8s cubic-bezier(.785, .135, .15, .86)
    }

    .link-item-content {
        width: 72%;
        max-width: 400px;
        display: block;
        position: absolute;
        bottom: 26.4%;
        left: 14%;
        font-size: 16px;
        color: #fff;
        opacity: 0;
        z-index: 2;
        transform: translateX(-50px);
        transition: opacity .5s cubic-bezier(.075, .82, .165, 1), transform 0s cubic-bezier(.075, .82, .165, 1) .5s
    }

    .link-item-content p {
        transform: none !important
    }

    .link-item-view {
        display: block;
        position: absolute;
        bottom: 9.2%;
        right: 19.6%;
        font-size: 14px;
        line-height: 20px;
        text-transform: uppercase;
        font-weight: 500;
        letter-spacing: .05em;
        color: #fff;
        opacity: 0;
        z-index: 3;
        transform: translateX(-50px);
        transition: opacity .5s cubic-bezier(.075, .82, .165, 1), transform 0s cubic-bezier(.075, .82, .165, 1) .5s
    }

    .link-item-view:after,
    .link-item-view:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 100%
    }

    .link-item-view:before {
        width: 25px;
        height: 2px;
        margin-top: -2px;
        margin-left: 28px;
        background: #fff
    }

    .link-item-view:after {
        width: 6px;
        height: 6px;
        margin-top: -5px;
        margin-left: 45px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg)
    }

    .dm-wrapper {
        margin-top: 5.3%;
        padding: 0 34.78% 1.45% 2.9%;
        position: relative
    }

    .dm-wrapper .image {
        padding-bottom: 53.5%
    }

    .dm-controls {
        position: absolute;
        right: 2.9%;
        margin-bottom: 1.45%;
        bottom: 0
    }

    .dm-top {
        margin-bottom: 0
    }

    .dm-top .link-item-content {
        margin-top: 0
    }

    .dm-item {
        width: 30.43333%;
        display: inline-block;
        vertical-align: top
    }

    .dm-item .image {
        padding-bottom: 109.6%
    }

    .dm-item:nth-child(4n+1) {
        margin: 0 1.45% 0 2.9%
    }

    .dm-item:nth-child(4n+1) .image {
        padding-bottom: 92.8%
    }

    .dm-item:nth-child(4n+2) {
        margin: 0 1.45% 0 0
    }

    .dm-item:nth-child(4n+3) {
        margin: -5% 2.9% 0 0
    }


    .rm-top {
        margin: 0 2.9%;
        display: block
    }

    .rm-top .image {
        padding-bottom: 49.2%
    }

    .rm-top .image-wrapper {
        overflow: hidden;
        height: 46.4vw;
        padding-bottom: 55px;
        display: flex;
        align-items: center;
    }

    .rm-top .image-wrapper .image-bg {
        width: 100%;
        height: auto;
    }

    .rm-top .link-item-content {
        bottom: 17.4%;
        left: 49.3%
    }

    .rm-wrapper {
        margin: 0;
        padding-top: 55px;
        padding-left: 44.2%;
        padding-right: 3%;
        position: relative
    }

    .rm-wrapper .controls {
        margin: calc(2.9% + 10px) 0 0;
        display: block;
        position: absolute;
        top: 100%;
        right: 2.9%;
        z-index: 2
    }

    .rm-content {
        width: 38%;
        height: 85%;
        padding: 0;
        position: absolute;
        top: -18%;
        bottom: 105px;
        z-index: 2;
        left: 2.9%;
        font-size: 0
    }

    .rm-content:before {
        content: "";
        width: 0;
        height: 99%
    }

    .rm-content-inner,
    .rm-content:before {
        display: inline-block;
        vertical-align: middle
    }

    .rm-content-inner {
        width: 81.2%;
        padding: 0 9.4%;
        font-size: 16px
    }

    .rm-link:hover:after {
        transform: translateX(10px) rotate(45deg)
    }

    .rm-item {
        margin: 0 4.3%
    }

    .rm-bottom {
        margin: 2.9% 2.9% 0 45.65%
    }

    .pm-top {
        display: block;
        margin: 4.85% 2.9% 0
    }

    .pm-top .image {
        padding-bottom: 49.2%
    }

    .pm-wrapper {
        font-size: 0
    }

    .pm-left,
    .pm-right {
        display: inline-block;
        vertical-align: top;
        font-size: 16px
    }

    .pm-left {
        width: 45.65%;
        margin: 5.7% 1.45% 0 2.9%
    }

    .pm-right {
        width: 40.6%;
        padding: 6.7% 2.9% 0 6.5%;
        margin-top: -10.8%
    }

    .reviews-block {
        margin-top: 12.8%
    }

    .reviews-block .third-block {
        margin-top: 3.6%
    }

    h2+.rev-wrapper {
        margin: 45px 0 0
    }

    .rev-wrapper {
        margin: 0;
        font-size: 0
    }

    .rev-item {
        width: 30.43333%;
        display: inline-block;
        vertical-align: top;
        font-size: 16px
    }

    .rev-item .image {
        padding-bottom: 109.5%;
        margin-bottom: 40px
    }

    .rev-item .h5 {
        margin-bottom: .1em
    }

    .rev-item:nth-child(5n+1) {
        margin: 4.7% 1.45% 0 2.9%
    }

    .rev-item:nth-child(5n+2) {
        margin: 9.8% 1.45% 0 0
    }

    .rev-item:nth-child(5n+3) {
        margin: 9.8% 2.9% 0 0
    }

    .rev-item:nth-child(5n+4) {
        margin: 11.7% 1.45% 0 34.78333%
    }

    .rev-item:nth-child(5n+5) {
        margin: 6.7% 2.9% 0 0
    }

    .insta-link {
        margin: 0;
        position: absolute;
        top: 64px;
        right: 8.1%
    }

    .insta-slider {
        margin: 0;
        /*padding: 68px 31.6% 0 1.45%*/
    }

    .insta-slider .pub-item_new {
        width: 27.2%;
        margin: 0;
        padding: 0 3%
    }

    .insta-slider_new {
        margin: 0;
        padding: 0;
    }

    .insta-item {
        width: 45.2%;
        margin: 0 2.4%;
        display: inline-block;
        vertical-align: top
    }

    .insta-controls {
        margin: -1.5% 2.9% 0
    }

    .ai-item {
        width: 13%;
        margin: 10px 14px
    }

    .about-top {
        font-size: 0;
        margin-top: 12.8%
    }

    .at-left,
    .at-right {
        display: inline-block;
        vertical-align: top
    }

    .at-left {
        width: 35.3%;
        padding: 0 8.25% 0 6.4%
    }

    .at-left .image {
        padding-bottom: 121.4%
    }

    .at-right {
        width: 45.65%;
        margin: 5.8% 2.9% 0 1.45%;
        font-size: 16px
    }

    .about-3d-tour {
        margin-top: 12.8%
    }

    .a3t-link:hover .image,
    .videoButton:hover .image {
        transform: scale(1.1)
    }

    .about-vacancies-partners {
        font-size: 0
    }

    .about-partners,
    .about-vacancies {
        display: inline-block;
        vertical-align: top;
        font-size: 16px
    }

    .about-vacancies {
        width: 38.45%;
    }

    .about-vacancies .list li {
        width: 43%;
        display: inline-block;
        vertical-align: top
    }

    .about-partners {
        width: 45.65%;
    }

    .ap-item {
        width: 31.5%;
        margin-top: 32px;
        display: inline-block;
        vertical-align: middle
    }

    .ap-item:nth-child(3n+2) {
        text-align: center
    }

    .ap-item:nth-child(3n+2) .ap-image {
        background-position: 50%
    }

    .ap-item:nth-child(3n+3) {
        text-align: right
    }

    .ap-item:nth-child(3n+3) .ap-image {
        background-position: 100%
    }

    .gallery {
        margin-top: 12.8%
    }

    .gallery-wrapper {
        font-size: 0
    }

    .gallery-item {
        width: 40%;
        display: inline-block;
        vertical-align: top
    }

    .gallery-item:nth-child(4n+1) {
        margin: 5% 7.1% 0 2.9%
    }

    .gallery-item:nth-child(4n+2) {
        margin: 8.7% 8.55% 0 1.45%
    }

    .gallery-item:nth-child(4n+3) {
        margin: 4% 1.45% 0 8.55%
    }

    .gallery-item:nth-child(4n+4) {
        margin: 7.7% 2.9% 0 7.1%
    }

    .gallery-bottom {
        margin: 2.8% 2.9% 0 57.1%
    }

    .about-videos {
        margin-top: 12.8%;
        color: #fff;
        position: relative;
        overflow: hidden
    }

    .about-videos .controls {
        right: 9.5%;
        margin-bottom: 4.4%
    }

    .videoButton .h3 {
        display: inline-block;
        vertical-align: middle
    }

    .video-icon {
        width: 80px;
        height: 80px;
        margin-left: 30px;
        margin-top: 5px;
        margin-bottom: -5px
    }

    .reviews-top {
        margin: 14.6% 0 0
    }

    .reviews-top .slide {
        display: inline-flex
    }

    .reviews-top .controls {
        right: 9.4%
    }

    .rt-left {
        width: 42.7%
    }

    .rt-right {
        width: 46.4%;
        padding: 50px 0;
        margin-left: 8%;
        margin-right: 2.9%
    }

    .rt-right:before {
        content: "";
        width: 0;
        height: 100%
    }

    .rt-right-content,
    .rt-right:before {
        display: inline-block;
        vertical-align: middle
    }

    .rt-right-content {
        width: 100%
    }

    .rt-socials {
        bottom: -14px
    }

    .ptni-inner {
        max-width: 720px;
        padding-top: var(--spacing-xl);
        margin-left: 10.6%
    }

    .filters-mobile,
    .fm-notice {
        display: none
    }

    .filters-desktop {
        display: block;
        font-size: 0
    }

    .filters-desktop li {
        margin-right: 47px;
        display: inline-block
    }

    .filters-desktop li:last-child {
        margin-right: 0
    }

    .f-item:hover:after {
        transform: translateX(20px) scaleX(1)
    }


    .gallery-page .gallery-item {
        width: calc(40% - 26px);
        padding-right: 26px
    }

    .program-filters {
        margin: 0 10.7%
    }

    .program-items {
        font-size: 0;
        margin-top: 4.1%
    }

    .program-item,
    .room-item--search {
        width: 30.43333%;
        display: inline-block;
        vertical-align: top
    }

    .program-item:nth-child(3n+1),
    .room-item--search:nth-child(3n+1) {
        margin: var(--spacing-xl) 1.45% 0 0;
    }

    .program-item:nth-child(3n+2),
    .room-item--search:nth-child(3n+2) {
        margin: var(--spacing-xl) 1.45% 0 1.45%;
    }

    .program-item:nth-child(3n+3),
    .room-item--search:nth-child(3n+3) {
        margin: var(--spacing-xl) 0 0 1.45%;
    }


    .program-item:nth-child(1),
    .program-item:nth-child(2),
    .program-item:nth-child(3) {
        margin-top: 0;
    }

    .programs-item-prise {
        font-size: 0
    }

    .pip-left,
    .pip-right {
        display: inline-block;
        vertical-align: middle;
        font-size: 16px
    }

    .pip-left {
        width: 31.2%;
        padding: 4.3% 4.4%;
        margin: 0 3.5% 0 6.5%
    }

    .pip-right {
        width: 34.8%;
        margin: 0 6.5% 0 8.7%
    }


    .pia-items {
        display: grid;
        grid-row-gap: 9.5vh;
        grid-template-columns: 1fr 1fr 1fr
    }

    .pia-item {
        padding: 0 27px 13px;
        border-left: 2px solid
    }

    .pia-item .h3,
    .pia-item h3 {
        margin-top: -12px;
        margin-bottom: 16px;
        font-size: 40px
    }

    .curator-image,
    .curator-right {
        display: inline-block;
        vertical-align: top
    }

    .curator-image {
        width: 30.05%;
        margin: 0 9.25% 0 10.7%
    }

    .curator-right {
        margin: 4% 0 0 1.45%;
        font-size: 16px
    }

    .structure {
        position: relative
    }

    .structure-button {
        margin: 10.5% 0 0;
        display: block;
        position: absolute;
        top: 4px;
        right: 2.9%
    }

    .table-mobile {
        display: none
    }

    .table-container {
        margin-top: var(--spacing-md);
    }

    .table.double .table-head,
    .table.double .table-row {
        grid-template-columns: auto 16.5%
    }

    .table.triple .table-head,
    .table.triple .table-row {
        grid-template-columns: auto repeat(2, 16.5%)
    }

    .table.quadruple .table-head,
    .table.quadruple .table-row {
        grid-template-columns: auto repeat(3, 16.5%)
    }

    .table-head,
    .table-row {
        grid-column-gap: 7.5%
    }

    .table-head .table-cell {
        font-size: 14px
    }

    .table-notice {
        grid-column: 1/-1
    }

    .service-popup-bottom {
        grid-template-columns: auto 16.5%;
        grid-column-gap: 7.5%
    }

    .additionally {
        margin: 11.12% 10.7% 0
    }

    .additionally ul {
        max-width: 520px
    }

    .tabs-controls:hover .button:before,
    .tabs-controls:hover .button canvas {
        transform: translateZ(0) scale(1.1)
    }

    .additionally-items {
        display: flex;
        flex-wrap: wrap
    }

    .additionally-item {
        width: 48.15%
    }

    .additionally-item:nth-child(odd) {
        margin-right: 1.85%
    }

    .additionally-item:nth-child(2n+2) {
        margin-left: 1.85%
    }

    .recommended-programs-item {
        font-size: 0
    }

    .recommended-programs-item:before {
        height: 93%
    }

    .rpi-image,
    .rpi-left {
        display: inline-block;
        vertical-align: top
    }

    .rpi-left {
        width: 40%;
        margin: 2.5% 6.7% 0 10.7%
    }

    .rpi-image {
        width: 42.6%
    }


    .rs-slider {
        width: 61.59%
    }

    .rs-item {
        margin: 0 4.7%
    }

    .rs-item .image+p {
        margin-top: 5.6%
    }

    .rs-bottom {
        margin: 2.9% 2.9% 0 64.51%
    }

    .stuff-wrapper {
        font-size: 0
    }

    .stuff-item {
        width: 30.13333%;
        display: inline-block;
        vertical-align: top;
        font-size: 16px
    }

    .stuff-item:nth-child(3n+1) {
        margin: 6.7% 1.45% 0 2.9%
    }

    .stuff-item:nth-child(3n+2) {
        margin: 9.7% 1.45% 0 0
    }

    .stuff-item:nth-child(3n+3) {
        margin: 6.7% 2.9% 0 0
    }

    .si-notice {
        width: 33.03333%;
        height: 22.024vw;
        min-height: 300px;
        font-size: 0;
        background: #f8f8f8
    }

    .si-notice:nth-child(3n+3) {
        margin: 12.7% 0 0
    }

    .si-notice:before {
        content: "";
        width: 0;
        height: 100%
    }

    .si-notice:before,
    .si-notice p {
        display: inline-block;
        vertical-align: middle
    }

    .si-notice p {
        width: 82%;
        padding: 16% 9%
    }

    .rooms-item {
        display: flex;
        align-items: center
    }

    .rooms-item:nth-child(2n+2) {
        flex-direction: row-reverse
    }

    .rooms-item:nth-child(2n+2) .ri-content {
        margin: 0 6.7% 2.1% 10.7%
    }

    .rooms-item:nth-child(2n+2) .ri-image {
        margin: 0
    }

    .ri-image {
        width: 48.55%;
        margin: 0
    }

    .ri-content {
        width: 34.05%;
        margin: 0 8.7% 2.1%
    }

    .rip-top-content {
        flex-direction: row;
    }

    .rip-plan {
        width: 35.4%;
        margin: 0 0 0 9.4%
    }

    .rip-content {
        width: 43%;
        max-width: 600px;
        margin: 0 6.4% 0 5.8%
    }

    .nb-link:hover .image {
        transform: scale(1.1)
    }

    .nb-link:hover .link-arrow:before {
        transform: scaleX(1.4)
    }

    .nb-link:hover .link-arrow:after {
        transform: translateX(10px) rotate(45deg)
    }

    .discount-items--search {
        margin-top: 10.6%
    }

    .discount-item {
        margin-top: 4%
    }

    .discount-item:nth-child(2n+2) .di-top {
        margin: 0 2.9% 0 18.91%
    }

    .discount-item:nth-child(2n+2) .di-content {
        margin: 0 0 0 26.71%
    }

    .di-top {
        width: 62.59%;
        padding: 2.85% 7.8% 4.2%;
        margin: 0 18.91% 0 2.9%
    }

    .di-top:hover .image {
        transform: scale(1.1)
    }

    .di-top:hover p {
        transform: translate3d(0, 10px, 0)
    }

    .di-top:hover p:first-child {
        transition-delay: .1s
    }

    .di-top:hover p:nth-child(2) {
        transition-delay: .05s
    }

    .di-top:hover p:nth-child(3) {
        transition-delay: 0s
    }

    .di-button {
        margin-top: 3.1%;
        font-size: 14px
    }

    .di-content {
        margin: 0 0 0 10.7%
    }

    .di-content:before {
        padding-bottom: 4.1%
    }

    .di-content:after {
        padding-top: 9.3%
    }

    .service-link:hover:before,
    .spoiler-button:hover:before {
        transform: scaleX(1)
    }

    .contacts {
        display: flex;
    }

    .contacts-right {
        width: 49.3%;
        margin: var(--spacing-md) 0 0 10.7%
    }

    .contacts-right p {
        max-width: 32em
    }

    .map-view {
        width: 40%;
        height: auto;
        min-height: 0;
        padding-bottom: 32.6%;
        margin: 0
    }

    .services-content {
        max-width: 660px
    }

    .tt-inner .h1,
    .title-sm {
        margin-left: 10.7%;
        margin-right: 10.7%
    }

    .tt-inner .image {
        margin-left: 10.7%
    }

    .text-peoples {
        margin: 14% 10.7% 0
    }

    .text-inner .text-peoples {
        min-width: 78.6vw;
        margin: 20.8% 0 0
    }

    .tp-item {
        margin-top: 8.6%;
        display: flex;
        align-items: center
    }

    .tp-item:nth-child(2n+2) {
        flex-direction: row-reverse
    }

    .tp-item:nth-child(2n+2) .tp-content {
        margin-left: 0;
        margin-right: 13.9%
    }

    .tp-image {
        width: 38.9%
    }

    .tp-content {
        width: 49.2%;
        margin-left: 11.9%;
        margin-top: 0
    }

    .text-slider {
        width: 89.3vw;
        margin-top: 15.5%;
        margin-bottom: 12.4%
    }

    .text-slider .view-slider {
        width: 71.8%
    }

    .text-slider .image {
        margin-right: 10.3%
    }

    .text-slider .controls {
        margin-right: 3.2%;
        margin-top: 3.1%
    }

    .text-downloads {
        width: 41%;
        padding: 3.75% 2.6% 5.2% 10.7%;
        margin-top: 6.8%;
        margin-bottom: 9.3%
    }

    .text-downloads .list a {
        transition: border .3s cubic-bezier(.785, .135, .15, .86)
    }

    .text-downloads .list a:hover {
        border-color: inherit
    }

    .text-image {
        margin: 10.2% 0
    }

    .pub-slider {
        margin: 0;
        /*padding: 68px 31.6% 0 1.45%*/
    }

    .pub-item {
        width: 31%;
        margin: 0 1%;
        display: inline-block;
        vertical-align: top
    }

    .pub-controls {
        margin: -1.5% 2.9% 0
    }

    .subscription br {
        display: block
    }

    .subscription .view-form:before {
        transition: transform .4s cubic-bezier(.785, .135, .15, .86)
    }

    .subscription .view-form:hover:before {
        transform: scale(1.04, 1.06)
    }

    .footer-submit:hover:before,
    .search-submit:hover:before,
    .subscription-submit:hover:before {
        transform: translate3d(25%, 0, 0) scaleX(.8)
    }

    .footer-submit:hover:after,
    .search-submit:hover:after,
    .subscription-submit:hover:after {
        transform: translate3d(25%, 0, 0) rotate(45deg)
    }

    footer {
        padding-top: 11vh;
        padding-bottom: 6.3vh
    }

    footer a {
        color: inherit
    }

    footer .view-form {
        width: 83%
    }

    footer .input-wrapper:hover {
        border-color: #fff
    }

    .footer-top {
        margin: 0
    }

    .f-1,
    .f-2,
    .f-3,
    .f-4 {
        margin: 0;
        display: inline-block;
        vertical-align: top
    }

    .f-3,
    .f-4 {
        padding-top: 8px
    }

    .f-1 {
        width: 31.9%;
        margin-left: 2.9%;
        padding-top: 5px
    }

    .f-2 {
        width: 15.8%
    }

    .f-3 {
        width: 24%
    }

    .f-4 {
        width: 22.5%;
        margin-right: 2.9%
    }

    .footer-bottom {
        padding-top: 95px;
        margin: 0;
        display: flex
    }

    .copy {
        width: 72%;
        margin-left: 2.9%
    }

    .redcollar {
        width: 22.2%;
        margin-right: 2.9%
    }

    .redcollar a:hover polygon {
        fill: #fff
    }

    .footer-order:hover {
        color: #fff
    }

    .footer-order:hover:after {
        transform: scaleX(0)
    }

    .rt-socials a:hover:before,
    .socials a:hover:before {
        opacity: 0
    }

    .rt-socials a:hover:after,
    .socials a:hover:after {
        opacity: 1
    }

    .order-form .input-wrapper,
    .order-form .input-wrapper+.input-wrapper {
        margin-top: 35px
    }

    .of-bg-grey,
    .of-bg-white,
    .of-left,
    .of-overlay,
    .of-right {
        width: 42.75%
    }

    .of-overlay {
        width: 100%;
        left: 0;
        display: block
    }

    .of-bg-grey {
        z-index: 1
    }

    .of-bg-white {
        right: 42.75%;
        z-index: 0
    }

    .of-left,
    .of-right {
        z-index: 2
    }

    .of-left {
        right: 42.75%
    }

    .ofServices .of-close {
        display: none
    }

    .of-inner {
        min-height: calc(100% - 2.9vw - 50px)
    }

    .of-back {
        font-size: 14px;
        line-height: 20px
    }

    .of-back:hover {
        transform: translateX(-10px)
    }

    .date-check,
    .date-picker,
    .of-radio-change,
    .of-radio-check,
    .person-check,
    .select-person {
        max-width: 60%
    }

    .of-radio-change .h5,
    .of-radio-check .h5 {
        font-size: 20px
    }

    .date-picker:hover .of-rc-value,
    .of-radio-change:hover .of-rc-value,
    .select-person:hover .of-rc-value {
        transform: translate3d(-19px, 0, 0)
    }

    .date-picker:hover .of-rc-value:before,
    .of-radio-change:hover .of-rc-value:before,
    .select-person:hover .of-rc-value:before {
        transform: translateX(-5px) rotate(45deg)
    }

    .of-checkbox:hover span,
    .of-radio-big:hover span,
    .of-radio:hover span {
        transform: translateX(5px)
    }

    .date-check,
    .date-picker {
        margin-top: 50px
    }

    .date-calc {
        position: absolute;
        top: 0;
        right: 0;
        opacity: 0;
        visibility: visible
    }

    .date-calc.active {
        display: block
    }

    .of-bottom {
        margin-top: 66px;
        padding-top: 20px;
        grid-template-columns: auto minmax(-webkit-min-content, 114px);
        grid-template-columns: auto minmax(min-content, 114px)
    }

    .of-bottom p {
        white-space: nowrap
    }

    .response-gallery {
        width: 94.2%;
        padding: 0;
        margin: 75px 2.9%
    }

    .response-gallery .controls {
        position: absolute;
        right: 0;
        top: 6%;
        margin-top: 62.56%;
        z-index: 2
    }

    .response-stuff {
        width: 78.8%;
        padding: 2%;
        margin: 75px 10.6%
    }

    .stuff-replace {
        display: flex
    }

    .stuff-replace .popup-stuff-left {
        width: 38.88%;
        margin-right: 12%
    }

    .stuff-replace .popup-stuff-right {
        width: 49.12%
        
    }

    .discount-content,
    .service-content,
    .video-content {
        width: 94.2%;
        padding: 0;
        margin: 75px 2.9%
    }

    .discount-content .popup-close,
    .popup-video .popup-close,
    .response-gallery .popup-close,
    .response-stuff .popup-close,
    .service-content .popup-close {
        display: none
    }

    .of-close-all:hover:after,
    .of-close-all:hover:before,
    .of-close:hover:after,
    .of-close:hover:before,
    .popup-close:hover:after,
    .popup-close:hover:before,
    .popup-discount .popup-close:hover:after,
    .popup-discount .popup-close:hover:before,
    .popup-gallery .popup-close:hover:after,
    .popup-gallery .popup-close:hover:before,
    .popup-service .popup-close:hover:after,
    .popup-service .popup-close:hover:before,
    .popup-video .popup-close:hover:after,
    .popup-video .popup-close:hover:before {
        background: #b5b5b5
    }

    .search-hints {
        width: 78%
    }

    .search-hint {
        font-size: 16px
    }

    .search-form {
        margin-bottom: 140px
    }

    .search-button {
        top: 7.2vh;
        left: calc(10.6% + 40px)
    }

    .search-block {
        padding-top: 8.3vh
    }

    .search-form--header {
        margin-left: 10.6%;
        width: 72%;
        margin-bottom: 60px
    }

    .search-form--header .placeholder,
    .search-form--header .search-input {
        padding-left: 90px
    }

    .search-form--header .search-icon,
    .search-icon {
        left: 40px
    }

    .search-close {
        top: 8.3vh;
        right: 40px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 3
    }

    .search-close:after,
    .search-close:before {
        top: 7px;
        left: 10px
    }

    .title-sm {
        font-size: 45px;
    }
}

@media screen and (min-width: 1100px) {
    .services-top {
        padding-top: 12.8%;
        margin: 0;
        position: relative
    }

    .services-top.between .services-filters {
        position: fixed
    }

    .services-top.after .services-filters {
        top: auto;
        bottom: 0
    }

    .services-filters {
        width: 37.3%;
        min-height: 10px;
        margin: 12.8% 1.3% 0 10.7%;
        position: absolute;
        top: 0;
        left: 0
    }

    .service-cart {
        opacity: 0;
        display: none;
        transition: opacity .3s ease
    }

    .service-cart:before {
        height: 75px
    }

    .service-cart.active {
        display: block
    }

    .services-content {
        width: 47.8%;
        margin: 12.4% 2.9% 0 49.3%
    }

    .services-content--right {
        margin-top: 3.9%;
        margin-left: 10.6%
    }

    .service-spoiler .table-container {
        margin-top: 0
    }

    .table-checkbox {
        top: 7px
    }

    .table-checkbox span {
        opacity: 0;
        transition: .3s cubic-bezier(.785, .135, .15, .86)
    }

    .table-checkbox input:checked+span {
        opacity: 1
    }

    .text-inner iframe {
        height: 600px
    }

    .reviews-main .rev-item:not(:first-child) {
        display: inline-block
    }
}

@media screen and (max-width: 860px) {
    html.page-invert .pt-content:before {
        display: none;
    }


    html.page-invert .page-top {
        max-height: 180px;
    }

    .service-cart {
        display: none;
    }

    .section.programs .arrow-to-bottom {
        top: 290px !important;
    }


}

.sign-404 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    font-size: 21vw;
    overflow: hidden;
    max-width: 37vw;
    margin-left: 6.5vw
}

.image--404 {
    align-items: center;
    background-image: url(963953fe7c9ba64fa439dccccb92a985.jpg);
    display: flex !important
}

@media screen and (max-width: 880px) {
    .image--404 {
        display: none !important
    }
}

.nomarg-t {
    margin-top: 0
}

.nomarg-r {
    margin-right: 0
}

.nomarg-b {
    margin-bottom: 0
}

.nomarg-l {
    margin-left: 0
}

.clearfloat,
.clfl:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0
}

.disabled {
    cursor: no-drop;
    opacity: 0.6 !important;

}

.disabled>* {
    cursor: no-drop;
    pointer-events: none;
}

.linkslist li a {
    color: #000;
    border-bottom: 1px solid;
    transition: border .3s ease;
}

.linkslist li a:hover {
    border-color: transparent;
}

.youtube-item {
    font-size: 16px;
    color: inherit;
}

.youtube-item:first-child {
    margin-bottom: 32px;
}

@media screen and (min-width: 860px) {
    .youtube-item {
        /*width: 27%;*/
        /*margin: 0 2.4%;*/
        display: inline-block;
        vertical-align: top;
    }
}

.youtube-item .image {
    padding-bottom: 55%;
    margin-bottom: 45px;
    overflow: hidden;
}

.youtube-item .image .image-bg {
    position: absolute;
    left: 0;
    top: -18%;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .youtube-item .image {
        margin-bottom: 12px;
    }
}

.achivotes {
    margin-top: 0;
}

.achivotes .link-arrow {
    float: right;
}

.achivotes .vote-header {
    background: #fff;
    margin-top: 50px;
    padding: 0 0 30px 0;
    /*    height: 100px;

    line-height: 100px;
    font-size: 45px;
    padding: 0 1.45% 0 2.9%;*/
}

@media screen and (min-width: 860px) {
    .achivotes .ai-item {
        width: 20%;
        margin: 10px 0;
    }
}

@media (max-width: 640px) {
    .achivotes .ai-item {
        margin-bottom: 0;
        text-align: center;
    }

    .achivotes .link-arrow {
        display: none;
    }
}

.wa-link {
    display: none;
}

@media (max-width: 860px) {
    .header-bottom {
        display: none;
    }

    .wa-link {
        display: inline-block;
        pointer-events: auto;
        width: 44px;
        background-image: url(whatsapp.svg);
        background-size: contain;
        height: 44px;
        position: absolute;
        bottom: 100px;
        right: 0;
        transition: transform .3s ease .1s;
        z-index: 100500;
    }

    .header-bottom.hover .wa-link {
        transform: translate(0, -100px);
    }

    .telegram {
        display: inline-block;
        pointer-events: auto;
        width: 44px;
        background-image: url(telegram.png);
        background-size: contain;
        height: 44px;
        position: absolute;
        bottom: 50px;
        right: 0;
        transition: transform .3s ease .1s;
        z-index: 100500;
    }

    .header-bottom.hover .telegram {
        transform: translate(0, -50px);
    }
}

.journal-container,
.journal-container .insta {
    margin-top: 0 !important;
}

.melwarning {
    background: #f8f8f8;
    padding: 15px;
    font-weight: bold;
}

.docs-pics .col-sm-3 {
    margin: 20px 0px;
}

.socials a.tg:before {
    background: url('data:image/svg+xml;utf8,<svg width="24px" height="24px" xmlns="http://www.w3.org/2000/svg"><path fill="%23b5b5b5" d="M22.05 1.577c-.393-.016-.784.08-1.117.235-.484.186-4.92 1.902-9.41 3.64-2.26.873-4.518 1.746-6.256 2.415-1.737.67-3.045 1.168-3.114 1.192-.46.16-1.082.362-1.61.984-.133.155-.267.354-.335.628s-.038.622.095.895c.265.547.714.773 1.244.976 1.76.564 3.58 1.102 5.087 1.608.556 1.96 1.09 3.927 1.618 5.89.174.394.553.54.944.544l-.002.02s.307.03.606-.042c.3-.07.677-.244 1.02-.565.377-.354 1.4-1.36 1.98-1.928l4.37 3.226.035.02s.484.34 1.192.388c.354.024.82-.044 1.22-.337.403-.294.67-.767.795-1.307.374-1.63 2.853-13.427 3.276-15.38l-.012.046c.296-1.1.187-2.108-.496-2.705-.342-.297-.736-.427-1.13-.444zm-.118 1.874c.027.025.025.025.002.027-.007-.002.08.118-.09.755l-.007.024-.005.022c-.432 1.997-2.936 13.9-3.27 15.356-.046.196-.065.182-.054.17-.1-.015-.285-.094-.3-.1l-7.48-5.525c2.562-2.467 5.182-4.7 7.827-7.08.468-.235.39-.96-.17-.972-.594.14-1.095.567-1.64.84-3.132 1.858-6.332 3.492-9.43 5.406-1.59-.553-3.177-1.012-4.643-1.467 1.272-.51 2.283-.886 3.278-1.27 1.738-.67 3.996-1.54 6.256-2.415 4.522-1.748 9.07-3.51 9.465-3.662l.032-.013.03-.013c.11-.05.173-.055.202-.057 0 0-.01-.033-.002-.026zM10.02 16.016l1.234.912c-.532.52-1.035 1.01-1.398 1.36z" /></svg>') no-repeat 50%
}

.socials a.tg:after {
    background: url('data:image/svg+xml;utf8,<svg width="24px" height="24px" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" d="M22.05 1.577c-.393-.016-.784.08-1.117.235-.484.186-4.92 1.902-9.41 3.64-2.26.873-4.518 1.746-6.256 2.415-1.737.67-3.045 1.168-3.114 1.192-.46.16-1.082.362-1.61.984-.133.155-.267.354-.335.628s-.038.622.095.895c.265.547.714.773 1.244.976 1.76.564 3.58 1.102 5.087 1.608.556 1.96 1.09 3.927 1.618 5.89.174.394.553.54.944.544l-.002.02s.307.03.606-.042c.3-.07.677-.244 1.02-.565.377-.354 1.4-1.36 1.98-1.928l4.37 3.226.035.02s.484.34 1.192.388c.354.024.82-.044 1.22-.337.403-.294.67-.767.795-1.307.374-1.63 2.853-13.427 3.276-15.38l-.012.046c.296-1.1.187-2.108-.496-2.705-.342-.297-.736-.427-1.13-.444zm-.118 1.874c.027.025.025.025.002.027-.007-.002.08.118-.09.755l-.007.024-.005.022c-.432 1.997-2.936 13.9-3.27 15.356-.046.196-.065.182-.054.17-.1-.015-.285-.094-.3-.1l-7.48-5.525c2.562-2.467 5.182-4.7 7.827-7.08.468-.235.39-.96-.17-.972-.594.14-1.095.567-1.64.84-3.132 1.858-6.332 3.492-9.43 5.406-1.59-.553-3.177-1.012-4.643-1.467 1.272-.51 2.283-.886 3.278-1.27 1.738-.67 3.996-1.54 6.256-2.415 4.522-1.748 9.07-3.51 9.465-3.662l.032-.013.03-.013c.11-.05.173-.055.202-.057 0 0-.01-.033-.002-.026zM10.02 16.016l1.234.912c-.532.52-1.035 1.01-1.398 1.36z" /></svg>') no-repeat 50%
}

.socials a.wa:before {
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24px' height='24px' viewBox='0 0 24 24'><path fill='%23b5b5b5' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967c-.273-.099-.471-.148-.67.15c-.197.297-.767.966-.94 1.164c-.173.199-.347.223-.644.075c-.297-.15-1.255-.463-2.39-1.475c-.883-.788-1.48-1.761-1.653-2.059c-.173-.297-.018-.458.13-.606c.134-.133.298-.347.446-.52s.198-.298.298-.497c.099-.198.05-.371-.025-.52s-.669-1.612-.916-2.207c-.242-.579-.487-.5-.669-.51a13 13 0 0 0-.57-.01c-.198 0-.52.074-.792.372c-.272.297-1.04 1.016-1.04 2.479c0 1.462 1.065 2.875 1.213 3.074s2.096 3.2 5.077 4.487c.709.306 1.262.489 1.694.625c.712.227 1.36.195 1.871.118c.571-.085 1.758-.719 2.006-1.413s.248-1.289.173-1.413c-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214l-3.741.982l.998-3.648l-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884c2.64 0 5.122 1.03 6.988 2.898a9.82 9.82 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.82 11.82 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.9 11.9 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.82 11.82 0 0 0-3.48-8.413'/></svg>") no-repeat 50%
}

.socials a.wa:after {
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24px' height='24px' viewBox='0 0 24 24'><path fill='white' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967c-.273-.099-.471-.148-.67.15c-.197.297-.767.966-.94 1.164c-.173.199-.347.223-.644.075c-.297-.15-1.255-.463-2.39-1.475c-.883-.788-1.48-1.761-1.653-2.059c-.173-.297-.018-.458.13-.606c.134-.133.298-.347.446-.52s.198-.298.298-.497c.099-.198.05-.371-.025-.52s-.669-1.612-.916-2.207c-.242-.579-.487-.5-.669-.51a13 13 0 0 0-.57-.01c-.198 0-.52.074-.792.372c-.272.297-1.04 1.016-1.04 2.479c0 1.462 1.065 2.875 1.213 3.074s2.096 3.2 5.077 4.487c.709.306 1.262.489 1.694.625c.712.227 1.36.195 1.871.118c.571-.085 1.758-.719 2.006-1.413s.248-1.289.173-1.413c-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214l-3.741.982l.998-3.648l-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884c2.64 0 5.122 1.03 6.988 2.898a9.82 9.82 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.82 11.82 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.9 11.9 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.82 11.82 0 0 0-3.48-8.413'/></svg>") no-repeat 50%
}

.socials a.yt:before {
    background: url('data:image/svg+xml;utf8,<svg width="26" height="26" viewBox="0 0 50 44" xmlns="http://www.w3.org/2000/svg"><path fill="%23b5b5b5" d="M39.256,6.5H9.744C4.371,6.5,0,10.885,0,16.274v16.451c0,5.39,4.371,9.774,9.744,9.774h29.512c5.373,0,9.744-4.385,9.744-9.774V16.274C49,10.885,44.629,6.5,39.256,6.5z M47,32.726c0,4.287-3.474,7.774-7.744,7.774H9.744C5.474,40.5,2,37.012,2,32.726V16.274C2,11.988,5.474,8.5,9.744,8.5h29.512c4.27,0,7.744,3.488,7.744,7.774V32.726z"/><path fill="%23b5b5b5" d="M33.36,24.138l-13.855-8.115c-0.308-0.18-0.691-0.183-1.002-0.005S18,16.527,18,16.886v16.229c0,0.358,0.192,0.69,0.502,0.868c0.154,0.088,0.326,0.132,0.498,0.132c0.175,0,0.349-0.046,0.505-0.137l13.855-8.113c0.306-0.179,0.495-0.508,0.495-0.863S33.667,24.317,33.36,24.138z M20,31.37V18.63l10.876,6.371L20,31.37z"/></svg>') no-repeat 50%
}

.socials a.yt:after {
    background: url('data:image/svg+xml;utf8,<svg width="26" height="26" viewBox="0 0 50 44" xmlns="http://www.w3.org/2000/svg"><path fill="%23fff" d="M39.256,6.5H9.744C4.371,6.5,0,10.885,0,16.274v16.451c0,5.39,4.371,9.774,9.744,9.774h29.512c5.373,0,9.744-4.385,9.744-9.774V16.274C49,10.885,44.629,6.5,39.256,6.5z M47,32.726c0,4.287-3.474,7.774-7.744,7.774H9.744C5.474,40.5,2,37.012,2,32.726V16.274C2,11.988,5.474,8.5,9.744,8.5h29.512c4.27,0,7.744,3.488,7.744,7.774V32.726z"/><path fill="%23fff" d="M33.36,24.138l-13.855-8.115c-0.308-0.18-0.691-0.183-1.002-0.005S18,16.527,18,16.886v16.229c0,0.358,0.192,0.69,0.502,0.868c0.154,0.088,0.326,0.132,0.498,0.132c0.175,0,0.349-0.046,0.505-0.137l13.855-8.113c0.306-0.179,0.495-0.508,0.495-0.863S33.667,24.317,33.36,24.138z M20,31.37V18.63l10.876,6.371L20,31.37z"/></svg>') no-repeat 50%
}


.programs-item-prise .pre-title {
    color: #696969;
    font-weight: bold;
    font-size: 13px;
}


/*cashback*/
.cashback_page .pt-inner h1 br,
.cashback_page .pt-inner p br {
    display: none;
}

.wrapp_info_programs br {
    display: block;
}

.cashback_page .pt-inner {
    max-width: 760px;
}

.wrapper_btn_registr {
    background: #f8f8f8;
    margin-top: 11.8%;
}

.wrapper_btn_registr .btn_registr_block {
    text-align: center;
    padding: 7% 0;
    margin: 0 6%;
}

.wrapp_info_programs .info_programs {
    text-align: center;
    padding-top: 11%;
    margin: 0 6%;
}

.wrapper_btn_registr .text_regist,
.wrapp_info_programs .info_programs div:first-child {
    font-size: 30px;
    line-height: 1.3em;
}

.wrapp_info_programs .info_programs div:last-child {
    font-size: 20px;
    margin-top: 20px;
}

.wrapper_btn_registr .text_regist {

    padding-bottom: 50px;
}

.wrapper_btn_registr .bnt_registr {
    color: #fff;
    background: #7f7f7f;
    padding: 14px 36px;
    font-size: 20px;
    border-radius: 8px;
}

.cashback_programs {
    margin-top: 12.8%;
}

.cashback_programs .pub-slider a.pub-item:hover {
    color: #282828;
    text-decoration: none;

}

.cashback_page_info {
    padding-top: 11.8%;
}

.cashback_page_info .cashback_page_info_back {
    background: #f8f8f8;
    padding: 2% 0;

}

.btn_cashback_program {
    position: relative;

}

.cashback_programs h2 {
    font-size: 20px;
    line-height: 30px;
}

.cashback_page .img_in_banner {
    position: absolute;
    bottom: 17px;
    right: 15px;
    text-align: right;
    z-index: 9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cashback_page_info .cashback_page_info_text {
    text-align: center;
}

.cashback_page_info .cashback_page_info_text .info_text {
    font-size: 30px;
    line-height: 1.3em;
    margin: 0 auto;
    padding: 0 6%;
}

.cashback_page_info_text .tel,
.cashback_page_info_text .email {
    font-size: 20px;
    margin-top: 20px;
}

@media screen and (min-width: 860px) {
    .cashback_page_info .cashback_page_info_text .info_text {
        max-width: 930px;
    }

    .cashback_programs h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .cashback_page .pt-inner h1 {
        font-size: 50px;
        line-height: 61px;
    }

    .cashback_page .pia-items {
        grid-template-columns: 1fr 1fr;
    }

    .cashback_page .pt-inner h1 br,
    .cashback_page .pt-inner p br {
        display: block;
    }


}

@media screen and (max-width: 860px) {
    .cashback_page .img_in_banner img:first-child {
        height: 40px;
    }

    .cashback_page .img_in_banner img:last-child {
        height: 70px;
    }
}

@media screen and (max-width: 500px) {
    .cashback_page .pt-inner h1 {
        font-size: 40px;
        line-height: 40px;
    }

    .wrapp_info_programs br {
        display: none;
    }

    .cashback_page .img_in_banner img:first-child {
        height: 40px;
    }

    .cashback_page .img_in_banner img:last-child {
        height: 65px;
    }
}

/*cashback end*/

#parent_popup_custom {
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#popup_custom {
    background: #fff;
    width: 650px;
    margin: 0 auto;
    top: 50%;
    transform: translate(0, -50%);
    padding: 20px;
    position: relative;
    /*--CSS3 CSS3 Тени для Блока--*/
    -webkit-box-shadow: 0px 0px 20px #000;
    -moz-box-shadow: 0px 0px 20px #000;
    box-shadow: 0px 0px 20px #000;
    /*--CSS3 Закругленные углы--*/
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    box-sizing: border-box;
}

#popup_custom ul {
    margin: 10px;
    list-style: inside;
}

#popup_custom ul li {
    margin-bottom: 7px;
    list-style: inside;
    list-style-type: "– ";
}

#parent_popup_custom .close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #536e4a;
    font-weight: bold;
}

#parent_popup_custom .button_popup {
    text-align: center;

}

#parent_popup_custom .button canvas {
    background: #536e4a;
}

.slider_wrapp_page_forbes_moman h3 {
    padding: 0 31.6% 0 1.45%;
    margin-left: 31px;
}

.slider_wrapp_page_forbes_moman .structure-button_page {
    text-align: center;
    margin: 20px 0 50px 0;
}

.wrapper_basground {
    background: #f8f8f8;
    padding: 50px 0;
}

.programs-item-advantages_ .wrapper_advantages {
    margin: 50px 0;
    text-align: center;
    padding: 50px;
}

.programs-item-advantages_ .title_1 {
    font-size: 22px;
    line-height: 1.3em;
    margin: 0 50px 45px;
    font-weight: 500;
}

.programs-item-advantages_ .title_2 {
    font-size: 22px;
    line-height: 1.3em;
    margin-bottom: 45px;
    font-weight: 500;
}

.programs-item-advantages_ p {
    margin: 0 auto;
    color: #7f7f7f;
    font-size: 15px;
    padding-right: 0;
    max-width: 100%;
}

.block_vacation_away h3 {
    text-align: center;
    margin-bottom: 1em;

}

.block_vacation_away ul {
    width: 550px;
    margin: 0 auto;
}

.block_vacation_away ul li {
    list-style: disc;
    list-style-position: inside;
    line-height: 2em;
}

.mt_custom {
    margin-top: 11.8%;
}

.wrapp_dop_programm .title_dom_programm {
    margin-bottom: .65em;
    font-size: 45px;
    line-height: 1.24em;
    text-align: center;
    margin-left: 31px;
    padding-left: 1.45%;
}

.wrapp_dop_programm .dop_programm_block {
    display: flex;
    margin: 50px;

}

.wrapp_dop_programm .p_dom_programm {
    max-width: 100%;
    text-align: center;
    padding-right: 0;
}

@media screen and (max-width: 1200px) {
    .programs-item-advantages_ .title_1 br {
        display: none;
    }
}

@media screen and (max-width: 850px) {
    .programs-item-advantages_ .title_1 {
        margin: 0 0 50px;
    }

    .slider_wrapp_page_forbes_moman h3 {
        margin-left: 6%;
        padding: 0;
    }

    .wrapp_dop_programm .title_dom_programm {
        margin-left: 6%;
        padding: 0;
    }
}

@media screen and (max-width: 650px) {
    #popup_custom {
        width: 95%;
    }

    .block_vacation_away ul {
        width: 100%;
        margin: 0 40px;
    }
}


.form_forbes_woman_summit form input,
.form_forbes_woman_summit textarea {
    border: 1px solid #536e4a;
    padding: 4px;
    margin: 10px 0;
    border-radius: 9px;
}

.form_forbes_woman_summit .form-required.starrequired {
    color: #536e4a;
}

.form_forbes_woman_summit textarea {
    height: 55px;
}

.form_forbes_woman_summit .title-form {
    font-size: 20px;
    text-align: center;
    line-height: 1.8em;
    font-weight: bold;
}

.form_forbes_woman_summit .errortext {
    color: red;
}

.form_forbes_woman_summit .submit {
    margin: 10px auto;
    width: 199px;
}

.form_forbes_woman_summit .submit input[type="submit"] {
    position: static;
    padding: 15px 38px;
    font-size: 14px;
    line-height: 20px;
    width: 199px;
    background: #536e4a;
    margin: 0 auto;
    text-transform: uppercase;
    border-radius: 0;
}

.form_forbes_woman_summit .submit input[type="submit"]:hover {
    transform: translateZ(0) scale(1.1);
}

.form_forbes_woman_summit .successful {
    color: #536e4a;
    font-size: 17px;

}

@media screen and (min-width: 860px) {
    .ms-slide .h1 {
        font-size: 70px;
        line-height: 90px;
    }
}

.ms-slide .circle {
    stroke: #536e4a;
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0.3;
}

.ms-slide .playBut {
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: none !important;
    margin-left: -24px;
}

.ms-slide .playBut .triangle {
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #fff;
    transform: translateY(0);
}

.ms-slide .playBut:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: #536e4a;
    animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
    0% {
        transform: translateX(0);
    }

    30% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    70% {
        transform: translateX(-2px);
    }

    100% {
        transform: translateX(0);
    }
}

.ms-slide .playBut:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1;
}


@media screen and (min-width: 860px) {
    .services-main.services-main_custom .sm-item {
        width: calc((100% - 60px) / 3);
        margin: auto;
        margin-top: 0;
        margin-bottom: 60px;
    }

    .services-main.services-main_custom .sm-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .services-main.services-main_custom .image {
        padding-bottom: 0;
        object-fit: cover;
    }

    .services-main.services-main_custom .sm-item:nth-child(5) .image,
    .services-main.services-main_custom .sm-item:nth-child(6) .image {
        background-position: right;
    }

}


html.headerHidden .header-top .new_call_phone_1 a {
    opacity: 1;
    visibility: unset;
}


html.headerVH .header-top .new_call_phone_1 a {
    color: #191e29;
}

html.headerVH .header-top .new_call_phone_1 a:before {
    background: #000;
}

.phone-button_mob {
    display: none;
}

@media (max-width: 767px) {

    .phone-button_mob {
        display: block;
        position: absolute;
        width: 22px;
        height: 44px;
        top: 1.3vh;
        right: 15%;
        cursor: pointer;
        z-index: 1;
        pointer-events: auto;
        text-align: center;
        opacity: 1;
        visibility: visible;
        transition: opacity .5s cubic-bezier(.785, .135, .15, .86), visibility .5s;
        background-size: contain;
        width: 40px;
        height: 40px;
        filter: contrast(977%) invert(100%);
        -webkit-filter: contrast(977%) invert(100%);
        -moz-filter: contrast(977%) invert(100%);
    }

    .phone-button_mob span,
    .phone-button_mob a {
        width: 100%;
        height: 100%;
        display: block;
    }

    .nav-button i,
    .nav-button span {
        color: #fff !important;
        background: #fff !important;
    }

    html.page-invert .search-button path {
        stroke: #fff;
    }

}

#of-right-text {
    width: 100%;
    padding-right: 0;
    max-width: 100%;
}

.footer_info__text {
    background: #fff;
    color: #000;
    padding: 20px;
    max-width: max-content !important;
}

@media screen and (min-width: 860px) {
    header .sub-menu {
        left: 420px;
    }
}

.mob-header-fixed-bg {
    background: transparent;
    height: 140px;
    overflow: hidden;
    transition: height 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.navActive .mob-header-fixed-bg {
    height: 0;
}

html.headerHidden .mob-header-fixed-bg {
    background: #ffffff;
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease;
}

html.headerHidden.is-scrolled-header .mob-header-fixed-bg {
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.08);
}

html.headerHidden .header-top .new_call_phone_1 a,
html.headerHidden .header-top a,
html.headerHidden .logo,
html.headerHidden .nav-button span {
    color: #000;
}

html.headerHidden .search-button path {
    stroke: #000;
}

html.headerHidden .header-top a:before,
html.headerHidden .nav-button i {
    background: #000;
}

html.headerHidden.navActive .nav-button i {
    background: #fff;
}

html.headerHidden.navActive .header-top .new_call_phone_1 a {
    color: #fff;
}

.navActive .header-controls {
    display: none;
}

@media (max-width: 1200px) {
    .nav-button {
        left: 18px;
    }

    .header-controls {
        left: 183px;
    }

    .lang {
        margin-left: 20px;
    }

    .lang a {
        padding: 0 5px;
    }

    .lang a:last-child {
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .header-top a {
        font-size: 20px;
    }

    .nav-button {
        top: 5.3vh;
    }

    .header-controls {
        left: 90px;
    }

    .logo {
        top: 3.7vh;
    }

}

@media (max-width: 767px) {
    .mob-header-fixed-bg {
        height: 80px;
    }

    html.headerHidden .header-top a:before,
    html.headerHidden .nav-button i {
        background: #000 !important;
    }

    .nav-button {
        top: 2.3vh;
        z-index: 11;
    }

    html.headerHidden .nav-button {
        z-index: 999 !important;
        pointer-events: auto !important;
        position: fixed !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        cursor: pointer !important;
    }

    .header-controls {
        left: initial;
        right: 26px;
        top: 28px !important;
    }

    .header-top {
        top: 15px;
        z-index: 10;
    }

    .logo {
        top: 10px;
    }

    .lang {
        display: none;
    }

    .new_call_phone_1 {
        display: none;
    }

    .phone-button_mob {
        top: 32px;
        right: 70px;
        transform: scale(1.2);
    }

    html.headerHidden .phone-button_mob path {
        fill: #fff;
    }

    .navActive .new_call_phone_1 {
        display: block;
    }

    .navActive .header-controls {
        left: initial;
        display: block;
        top: 80px !important;
        right: 20px;
    }

    .navActive .header-controls .search-button {
        display: none;
    }

    .navActive .lang {
        display: block;
    }

    html.headerHidden.navActive .header-top a {
        color: #fff;
    }

    html.headerHidden.navActive .header-top a:before,
    html.headerHidden.navActive .nav-button i {
        background: #fff !important;
    }
}


.section.curator h3 {
    margin-bottom: var(--spacing-md);
}

.section.curator .infopage .wrapper h3 {
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.section.curator .infopage:last-child .wrapper h3 {
    margin: var(--spacing-xl) 0 var(--spacing-md);
}

.page-clinic-detail h3 {
    margin-bottom: var(--spacing-md);
}

.page-clinic-detail .slider-initialized {
    margin: var(--spacing-xl) 0;
}

.page-clinic-detail iframe {
    margin: var(--spacing-md) 0;
}

.services-block .sb-item:first-child,
.services-block .sb-item:nth-child(2),
.services-block .sb-item:nth-child(4) {
    margin-bottom: 0;
}

.services-block .sb-item:nth-child(3),
.services-block .sb-item:nth-child(4) {
    margin-top: var(--spacing-xl);
}

.program-top h3 {
    margin-bottom: var(--spacing-md);
}

@media screen and (max-width: 786px) {
    .services-block .line-title {
        margin-bottom: var(--spacing-xxs);
        padding: var(--spacing-xxs) 0;
    }

    .services-block .link-item {
        margin-bottom: var(--spacing-sm);
    }

    .services-block .sb-item:last-child .link-item {
        margin-bottom: 0;
    }

    .services-block .sb-item:nth-child(3),
    .services-block .sb-item:nth-child(4) {
        margin-top: 0;
        margin-bottom: 0;
    }

    .page-clinic-detail iframe {
        margin: var(--spacing-sm) 0;
    }

    .page-clinic-detail .slider-initialized {
        margin: var(--spacing-sm) 6%;
    }

    .page-academy .pub-item .image {
        margin-bottom: var(--spacing-xxs);
    }

    .page-academy .pub-item .h5 {
        margin-bottom: var(--spacing-xxs);
    }

    .page-academy .pub-item p {
        margin-bottom: var(--spacing-sm);
    }

    .page-academy .slide.to-center .pub-item:last-child p {
        margin-bottom: 0;
    }

    .section.curator h3 {
        margin-bottom: var(--spacing-sm);
    }

    .section.curator .curator-right {
        margin-top: var(--spacing-xs);
    }

    .section.curator .curator-right p {
        margin-bottom: var(--spacing-xxs);
    }

    .section.curator .curator-right p:last-child {
        margin-bottom: 0;
    }

    .section.curator .infopage .wrapper h3 {
        margin: var(--spacing-lg) 0 var(--spacing-xs);
    }

    .pt-inner {
        margin-left: 6%;
        margin-right: 6%;
    }
}

.filters-desktop li a {
    color: #282828;
}

.f-item-link {
    padding-left: 20px;
    display: block;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    overflow: hidden;
    margin-bottom: var(--spacing-xxs);
}

.f-item-link::after,
.f-item-link::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
}

.f-item-link::before {
    width: 10px;
    height: 4px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-45deg);
    top: 12px;
    opacity: 0;
}

.f-item-link::after {
    width: 100%;
    height: 2px;
    bottom: 0;
    transform: translateX(20px) scaleX(0);
    transform-origin: 0 100%;
    transition: transform .3s cubic-bezier(.785, .135, .15, .86);
    background: #191e29;
}

.f-item-link:hover::after {
    transform: translateX(20px) scaleX(1);
}


.f-item-link.selected:after {
    transform: scale(1);
}

.f-item-link.selected:before {
    opacity: 1;
    transition: opacity .3s cubic-bezier(.785, .135, .15, .86);
}

/* line */
.bx_catalog_line {
    margin-bottom: 30px;
}

.bx_catalog_line .bx_catalog_line_category_title {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 24px;
}

.bx_catalog_line .bx_catalog_line_category_title a {
    color: #000;
    text-decoration: none;
}

.bx_catalog_line .bx_catalog_line_ul {
    padding: 0;
}

.bx_catalog_line .bx_catalog_line_ul li {
    margin-bottom: 20px;
    list-style: none;
}

.bx_catalog_line .bx_catalog_line_ul li:before {
    content: '' !important
}

.bx_catalog_line .bx_catalog_line_img {
    position: relative;
    display: block;
    float: left;
    overflow: hidden;
    margin-right: 40px;
    width: 125px;
    height: 125px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
}

.bx_catalog_line .bx_catalog_line_title {
    margin-bottom: 10px;
    padding: 0;
    vertical-align: top;
    line-height: 18px;
}

.bx_catalog_line .bx_catalog_line_title a {
    color: #4c7da6;
    font-size: 18px;
}

.bx_catalog_line .bx_catalog_line_title a:hover {
    text-decoration: none;
}

.bx_catalog_line .bx_catalog_line_title span {
    font-size: 16px
}

.bx_catalog_line .bx_catalog_line_description {
    color: #3f3f3f;
    font-size: 13px;
    line-height: 16px;
}

@media (max-width: 639px) {
    .bx-touch .bx_catalog_line .bx_catalog_line_img {
        margin-right: 10px;
        width: 50px;
        height: 50px;
    }

    .bx-touch .bx_catalog_line .bx_catalog_line_title {
        margin-bottom: 5px;
        line-height: 14px;
    }

    .bx-touch .bx_catalog_line .bx_catalog_line_title a {
        font-size: 14px;
    }

    .bx-touch .bx_catalog_line .bx_catalog_line_description {
        font-size: 11px;
    }
}

.bx_catalog_line .bx_catalog_line_img,
.bx_catalog_line .bx_catalog_line_title,
.bx_catalog_line .bx_catalog_line_title a,
.bx_catalog_line .bx_catalog_line_description {
    transition: all 0.3s ease;
}

/* text */
.bx_catalog_text {
    margin-bottom: 30px;
}

.bx_catalog_text .bx_catalog_text_category_title {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 24px;
}

.bx_catalog_text .bx_catalog_text_category_title a {
    color: #000;
    text-decoration: none;
}

.bx_catalog_text .bx_catalog_text_ul {
    padding: 0;
}

.bx_catalog_text .bx_catalog_text_ul li {
    float: left;
    margin: 0 10px 10px;
    list-style: none;
}

.bx_catalog_text .bx_catalog_text_ul li:before {
    content: '' !important
}

.bx_catalog_text .bx_catalog_text_title {
    margin: 0;
    padding: 0;
    vertical-align: top;
    font-size: 14px;
    line-height: 14px;
}

.bx_catalog_tile .bx_catalog_tile_title a {
    display: inline-block;
    overflow: hidden;
    max-width: 100%;
    color: #4c7da6;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 14px;
}

.bx_catalog_text .bx_catalog_text_title a:hover {
    text-decoration: none
}

.bx_catalog_text .bx_catalog_text_title span {
    font-size: 12px;
}

@media (max-width: 639px) {
    .bx-touch .bx_catalog_text .bx_catalog_line_title {
        margin-bottom: 5px;
        line-height: 12px;
    }

    .bx-touch .bx_catalog_text .bx_catalog_line_title a {
        font-size: 12px;
    }
}

.bx_catalog_text .bx_catalog_line_title,
.bx_catalog_text .bx_catalog_line_title a {
    transition: all 0.3s ease;
}

/* tile */

.bx_catalog_tile {
    margin-bottom: 30px;
}

.bx_catalog_tile .bx_catalog_tile_category_title {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 24px;
}

.bx_catalog_tile .bx_catalog_tile_category_title a {
    color: #000;
    text-decoration: none;
}

.bx_catalog_tile .bx_catalog_tile_ul {
    padding: 0;
}

.bx_catalog_tile .bx_catalog_tile_ul li {
    float: left;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 0 10px;
    width: 12.5%;
    list-style: none;
    text-align: center;
}

.bx_catalog_tile .bx_catalog_tile_ul li:before {
    content: '' !important
}

.bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1) {
    clear: both;
}

.bx_catalog_tile .bx_catalog_tile_img {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    width: 78px;
    height: 78px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
}

.bx_catalog_tile .bx_catalog_tile_title {
    margin-top: 5px;
    margin-bottom: 10px;
    padding: 0;
    vertical-align: top;
    line-height: 14px;
}

.bx_catalog_tile .bx_catalog_tile_title a {
    color: #4c7da6;
    font-size: 14px;
}

.bx_catalog_tile .bx_catalog_tile_title a:hover {
    text-decoration: none;
}

.bx_catalog_tile .bx_catalog_tile_title span {
    font-size: 12px;
}

/*2*/
@media (max-width: 980px) {
    .bx_catalog_tile .bx_catalog_tile_ul li {
        width: 20%;
    }

    .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1) {
        clear: none;
    }

    .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1) {
        clear: both;
    }
}

/*3*/
@media (max-width: 639px) {
    .bx-touch .bx_catalog_tile .bx_catalog_tile_title {
        margin-bottom: 5px;
        line-height: 14px;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_title {
        line-height: 10px;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_title a {
        font-size: 11px;
    }
}

@media (min-width: 480px) and (max-width: 639px) {
    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li {
        width: 25%;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1) {
        clear: none;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1) {
        clear: none;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(4n+1) {
        clear: both;
    }
}

/*4*/
@media (max-width: 479px) {
    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li {
        width: 33.3%;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_img {
        width: 100%;
        height: 80px;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(8n+1) {
        clear: none;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(5n+1) {
        clear: none;
    }

    .bx-touch .bx_catalog_tile .bx_catalog_tile_ul li:nth-child(3n+1) {
        clear: both;
    }

}

.bx_catalog_tile .bx_catalog_tile_title,
.bx_catalog_tile .bx_catalog_tile_title a,
.bx_catalog_tile .bx_catalog_tile_ul li,
.bx_catalog_tile .bx_catalog_tile_img {
    transition: all 0.3s ease;
}

/* list */

.bx_sitemap {
    margin-bottom: 30px;
}

.bx_sitemap .bx_sitemap_title {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 24px;
}

.bx_sitemap .bx_sitemap_title a {
    color: #000;
    text-decoration: none;
}

.bx_sitemap .bx_sitemap_ul li {
    padding: 0;
    line-height: 14px;
}

.bx_sitemap .bx_sitemap_ul li:before {
    content: '' !important
}

.bx_sitemap .bx_sitemap_li_title {
    display: inline-block;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    vertical-align: top;
    font-weight: normal;
    line-height: 13px;
}

.bx_sitemap .bx_sitemap_li_title a {
    color: #4c7da6;
    white-space: nowrap;
    font-size: 13px;
}

.bx_sitemap .bx_sitemap_li_title a:hover {
    text-decoration: none
}

.bx_sitemap .bx_sitemap_li_title span {
    font-size: 11px;
}

@media (max-width: 639px) {
    .bx-touch .bx_sitemap .bx_catalog_line_title {
        margin-bottom: 5px;
        line-height: 12px;
    }

    .bx-touch .bx_sitemap .bx_catalog_line_title a {
        font-size: 12px;
    }
}

.bx_sitemap .bx_catalog_line_title,
.bx_sitemap .bx_catalog_line_title a {
    transition: all 0.3s ease;
}

.page-photos .gallery-item:first-child,
.page-photos .gallery-item:nth-child(2) {
    margin-top: 0;
}

.page-photos .gallery-item {
    margin-top: var(--spacing-xl);
}

.filters {
    max-width: unset;
    margin-top: var(--spacing-md);
}

.filters-desktop {
    display: flex;
    flex-wrap: wrap;
}

.filters-desktop li {
    display: block;
}

/* .page-photos .gallery-item .scrl-text {
    margin-bottom: 0;
} */

@media screen and (max-width: 860px) {
    .filters-desktop li {
        display: none;
    }

    .page-photos .gallery-item:nth-child(2) {
        margin-top: var(--spacing-sm);
    }

    .page-photos .gallery-item {
        margin-top: var(--spacing-sm);
    }

    .page-photos .gallery-item .image {
        margin-bottom: var(--spacing-xxs);
    }

    .filters {
        margin-top: var(--spacing-sm);
    }

    .page-photos .fm-notice {
        margin-bottom: var(--spacing-xs);
    }
}

.page-program h3 {
    margin-bottom: var(--spacing-sm);
}

/*.page-program .table-container {*/
/*    margin-bottom: var(--spacing-lg);*/
/*}*/
.page-program .table-cell {
    margin: var(--spacing-xxs) 0;
    padding: 0;
}

.page-program .table-cell strong {
    margin: var(--spacing-sm) 0;
}


@media (max-width: 786px) {
    .programs-item-advantages .h3 {
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
    }

    .fm-notice {
        margin-top: var(--spacing-sm);
        margin-bottom: var(--spacing-xs);
    }

    .page-program .table-cell {
        margin: var(--spacing-xs) 0;
        padding: 0;
    }

    .page-program .table-cell strong {
        margin: var(--spacing-sm) 0;
    }

    .structure-button {
        margin: var(--spacing-sm) 0 var(--spacing-sm) 0;
    }

    .rpi-left h3 {
        margin-bottom: var(--spacing-sm);
    }

    .rpi-left li {
        margin-bottom: var(--spacing-xs);
    }

    .rpi-left {
        margin: 0 6% 80px;
    }
}

div.news-detail {
    word-wrap: break-word;
}

div.news-detail img.detail_picture {
    float: left;
    margin: 0 8px 6px 1px;
}

.news-date-time {
    color: #486DAA;
}



.text-inner-partnerstvo .partnerstvo_title_top {
    margin: 0 0 var(--spacing-md) 0;
    font-size: 40px;
    line-height: 120%;
}

.partnerstvo_text_top {
    margin-bottom: var(--spacing-xl);
}

.partnerstvo_text_top p {
    font-weight: 500;
    margin-bottom: 20px;
}

.partnerstvo_text_top p:last-child {
    margin-bottom: 0;
}

.partnerstvo_form_img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;


}

.partnerstvo_form_img img {
    width: 40%;
    height: clamp(270px, 30vw, 480px);
    object-fit: cover;
}

.partnerstvo_form_text {
    width: 40%;
    margin-bottom: 70px;
}

@media (max-width: 786px) {
    .partnerstvo_form_text {
        margin-bottom: 0;
    }
}

.partnerstvo_form_modal {

    font-size: 30px;
    line-height: 120%;
    margin-bottom: 25px;
}

.partnerstvo_form_ln {
    text-decoration: underline;
    display: block;
    margin-bottom: 25px;
}

.partnerstvo_form_ln:hover {
    text-decoration: none;

}

.partnerstvo_form_modal {
    display: block;
    text-decoration: underline;
}

.text-inner-partnerstvo .bold {
    font-weight: bold;
}

.text-inner-partnerstvo a {
    text-decoration: underline;
}

.text-inner-partnerstvo a:hover {
    text-decoration: none;
}

.partnerstvo-text-hide {
    display: none;
}

.partnerstvo-text-show-btn {
    text-decoration: underline;
    margin: var(--spacing-md) auto 0 auto;
    padding: 0;

    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.partnerstvo-text-hide-btn {
    text-decoration: underline;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}

.partnerstvo-text-hide-btn {
    display: none;
}

.partnerstvo-text-hide-btn:hover {
    text-decoration: none;
}



.text-inner-partnerstvo .h2,
.text-inner-partnerstvo h2 {
    margin: 0 0 var(--spacing-md) 0;
    font-size: 60px;
    line-height: 120%;

}

@media (max-width: 768px) {
    .partnerstvo_form_img {
        align-items: flex-start;
        flex-direction: column;
    }

    .partnerstvo_form_text {
        width: 100%;
    }

    .partnerstvo_form_img img {
        width: 100%;
        height: 100%;
    }

    .text-inner-partnerstvo .partnerstvo_title_top {
        font-size: 30px;
        margin-bottom: var(--spacing-xs);
    }

    .text-inner-partnerstvo .h2,
    .text-inner-partnerstvo h2 {
        font-size: 35px;
        margin-bottom: var(--spacing-xs);
    }

    .partnerstvo_text_top p {
        margin-bottom: var(--spacing-xxs);
    }

    .partnerstvo_text_top {
        margin-bottom: 0;
    }

    .partnerstvo_form_modal,
    .partnerstvo_form_ln {
        margin-bottom: var(--spacing-xs);
    }

    .partnerstvo_form_text p:last-child {
        margin-bottom: 0;
    }

    .text-inner-partnerstvo>p {
        margin-bottom: var(--spacing-xxs);
    }

    .text-inner-partnerstvo>p:last-child {
        margin-bottom: 0;
    }

    .partnerstvo-text-show-btn {
        margin: var(--spacing-xs) auto 0 auto;
    }

    .partnerstvo_form_text p {
        margin-bottom: var(--spacing-xxs);
    }

    .text-inner-partnerstvo a {
        margin-top: var(--spacing-xs);
    }

    .partnerstvo_form_img img {
        height: clamp(330px, 30vw, 480px);
    }
}

@media screen and (min-width: 860px) {
    .journal-head .tt-inner {
        padding: 30vh 0 0;
    }
}

.insta-slider_new .slider-image img.image {
    object-fit: cover;
    padding-bottom: 0;
    width: 100%;
    height: auto;
}

@media (min-width: 860px) {
    .insta-slider_new .slider-image img.image {
        width: 27.2vw;
        height: 29.6vw;
    }
}

.slider-image__bg {
    mix-blend-mode: multiply;
    background: rgba(110, 120, 138, .8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: .8s ease;
}

@media screen and (min-width: 860px) {
    .slider-image:hover .slider-image__bg {
        opacity: 1;
    }
}

.achievements__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.achievements__item {
    text-align: center;
}


.achievements__image {
    margin-bottom: 30px;
}

.achievements__img {
    max-height: clamp(90px, 7vw, 130px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.achievements__text {
    margin: 0;
    font-family: 'Clear Sans';
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: -0.08px;
    color: #4B646F;
}

@media (max-width: 1440px) {
    .achievements__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.header-top .header-top-social-tg svg path:nth-child(1) {
    fill: #1C1C1B;
}

.header-top .header-top-social-tg svg path:nth-child(2) {
    fill: white;
}

.header-top .header-top-social-wa svg path:nth-child(1) {
    fill: #1C1C1B;
}

.header-top .header-top-social-wa svg path:nth-child(2) {
    fill: #FDFDFD;
}

.header-top .header-top-social-wa svg path:nth-child(3) {
    fill: #FDFDFD;
}

@media (max-width: 767px) {
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements__grid > *:nth-child(odd):last-child {
        grid-column: 1 / -1;
        justify-self: center;
        width: 50%;
  }


      .programs .h1 {
        margin-bottom: var(--spacing-xs);
    }

    .programs .pt-inner p {
        margin-bottom: var(--spacing-sm);
    }

    .program-top h3 {
        margin-bottom: var(--spacing-sm);
        ;
    }

    .program-top .filters {
        margin-top: 0;
    }

    .program-item .h5:first-child,
    .room-item--search .h5:first-child {
        margin-bottom: var(--spacing-xxs);
    }

    .program-items {
        margin-top: 0;
    }

    .ptni-inner.ptni-inner--full {
        max-width: unset;
    }

    .header-top .header-top-social {
        display: none;
    }

    .header-top .header-top-social-tg svg path:nth-child(1) {
        fill: white;
    }

    .header-top .header-top-social-tg svg path:nth-child(2) {
        fill: #1C1C1B;
    }

    .header-top .header-top-social-wa svg path:nth-child(1) {
        fill: #FDFDFD;
    }

    .header-top .header-top-social-wa svg path:nth-child(2) {
        fill: #1C1C1B;
    }

    .header-top .header-top-social-wa svg path:nth-child(3) {
        fill: #1C1C1B;
    }

    .navActive .header-top .header-top-social {
        display: block;
        top: 2px;
    }

    .navActive .header-top .header-top-social svg {
        width: 28px;
    }

    .phone-button_mob span,
    .phone-button_mob a {
        margin-left: unset;
    }

    .navActive .header-top {
        right: 34px;
    }

    .navActive .new_call_phone_1 {
        margin-left: 9px;
    }

    .navActive div.header-controls {
        right: 11px;
    }
}

.page-bonuses .arrow-to-bottom.scrollTo {
    display: none;
}

.new_call_phone_1 {
    margin-left: 20px;
}

.header-top-social {
    position: relative;
    top: 4px;
}


.fancybox-wrap, .fancybox-skin, .fancybox-outer, .fancybox-inner, .fancybox-image, .fancybox-wrap iframe, .fancybox-wrap object, .fancybox-nav, .fancybox-nav span, .fancybox-tmp {padding: 0;margin: 0;border: 0;outline: none;vertical-align: top;}
.fancybox-wrap {position: absolute;top: 0;left: 0;z-index: 8020;}
.fancybox-skin {position: relative;background: #f9f9f9;color: #444;text-shadow: none;-webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px;}
.fancybox-opened {z-index: 8030;}
.fancybox-opened .fancybox-skin {-webkit-box-shadow: 0 10px 25px rgba(0,0,0,.5);-moz-box-shadow: 0 10px 25px rgba(0,0,0,.5);box-shadow: 0 10px 25px rgba(0,0,0,.5);}
.fancybox-outer, .fancybox-inner {position: relative;}
.fancybox-inner {overflow: hidden;}
.fancybox-type-iframe .fancybox-inner {-webkit-overflow-scrolling: touch;}
.fancybox-error {color: #444;font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin: 0;padding: 15px;white-space: nowrap;}
.fancybox-image, .fancybox-iframe {display: block;width: 100%;height: 100%;}
.fancybox-image {max-width: 100%;max-height: 100%;}
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {background-image: url("fancybox_sprite.png");}
#fancybox-loading {position: fixed;top: 50%;left: 50%;margin-top: -22px;margin-left: -22px;background-position: 0 -108px;opacity: .8;cursor: pointer;z-index: 8060;}
#fancybox-loading div {width: 44px;height: 44px;background: url("fancybox_loading.gif") center center no-repeat;}
.fancybox-close {position: absolute;top: -18px;right: -18px;width: 36px;height: 36px;cursor: pointer;z-index: 8040;}
.fancybox-nav {position: absolute;top: 0;width: 40%;height: 100%;cursor: pointer;text-decoration: none;background: transparent url("blank.gif");-webkit-tap-highlight-color: rgba(0,0,0,0);z-index: 8040;}
.fancybox-prev {left: 0;}
.fancybox-next {right: 0;}
.fancybox-nav span {position: absolute;top: 50%;width: 36px;height: 34px;margin-top: -18px;cursor: pointer;z-index: 8040;visibility: hidden;}
.fancybox-prev span {left: 10px;background-position: 0 -36px;}
.fancybox-next span {right: 10px;background-position: 0 -72px;}
.fancybox-nav:hover span {visibility: visible;}
.fancybox-tmp {position: absolute;top: -99999px;left: -99999px;visibility: hidden;max-width: 99999px;max-height: 99999px;overflow: visible !important;}
.fancybox-lock {overflow: hidden !important;width: auto;}
.fancybox-lock body {overflow: hidden !important;}
.fancybox-lock-test {overflow-y: hidden !important;}
.fancybox-overlay {position: absolute;top: 0;left: 0;overflow: hidden;display: none;z-index: 8010;background: url("fancybox_overlay.png");}
.fancybox-overlay-fixed {position: fixed;bottom: 0;right: 0;}
.fancybox-lock .fancybox-overlay {overflow: auto;overflow-y: scroll;}
.fancybox-title {visibility: hidden;font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position: relative;text-shadow: none;z-index: 8050;}
.fancybox-opened .fancybox-title {visibility: visible;}
.fancybox-title-float-wrap {position: absolute;bottom: 0;right: 50%;margin-bottom: -35px;z-index: 8050;text-align: center;}
.fancybox-title-float-wrap .child {display: inline-block;margin-right: -100%;padding: 2px 20px;background: transparent;background: rgba(0,0,0,.8);-webkit-border-radius: 15px;-moz-border-radius: 15px;border-radius: 15px;text-shadow: 0 1px 2px #222;color: #fff;font-weight: bold;line-height: 24px;white-space: nowrap;}
.fancybox-title-outside-wrap {position: relative;margin-top: 10px;color: #fff;}
.fancybox-title-inside-wrap {padding-top: 10px;}
.fancybox-title-over-wrap {position: absolute;bottom: 0;left: 0;color: #fff;padding: 10px;background: #000;background: rgba(0,0,0,.8);}

.content-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px 20px;
    margin-bottom: 40px;
}

.content-cards__item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.content-cards__image {
    width: 100%;
    height: clamp(320px, 26vw, 538px);
    object-fit: cover;
    display: block;
}

.content-cards__content {
    flex: 1;
    margin-top: 20px;
}


.content-cards__name {
    font-family: 'Clear Sans';
    font-weight: 700;
    font-style: bold;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #282828;
    margin-bottom: 0;
}

.content-cards__profession {
    margin-top: 8px;
    margin-bottom: 0;
    padding-right: 0;
    font-family: 'Clear Sans';
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #858585;
}

.content-cards__text-wrapper {
    position: relative;
}

.content-cards__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-top: 16px;
    font-family: 'Clear Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #191E29;
    margin-bottom: 0;
    max-height: 6.5em; 
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.content-cards__text--clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.6s ease;
    position: relative;
}

.content-cards__text--clamp.has-overflow:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease;
}


.content-cards__text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: 1000px;
}
.content-cards__text--clamp.expanded::after {
    opacity: 0;
}

.content-cards__text--clamp.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
}

.content-cards__text {
    transition: max-height 0.6s ease;
    overflow: hidden;
}

.content-cards__text.collapsed {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.content-cards__text.expanded {
    display: block;
}


.content-cards__read-more {
    display: inline-block;
    margin-top: 8px;
    cursor: pointer;
    font-family: 'Clear Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    color: #191E29;
    position: relative;
}

.content-cards__read-more::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #191E29;
}

@media (max-width: 768px) {
    .content-cards--horizontal-scroll .content-cards__item {
        flex: 0 0 280px;
        width: 280px;
    }
    .content-cards--horizontal-scroll .content-cards__grid{
        display: flex;
        gap: 20px;
        padding-bottom: 10px;
        margin-bottom: 20px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .content-cards--horizontal-scroll .content-cards__grid::-webkit-scrollbar {
            display: none;
        }
    
    .section-review .section__wrapper {
        margin: 0;
    }

    .section-review .content-cards__grid .content-cards__item:first-child {
        margin-left: 6%;
    }

    .section-review .content-cards__grid .content-cards__item:last-child {
        margin-right: 6%;
    }

    .section-review .section__title,
    .section-review .ap-button {
        margin-left: 6%;
    }

}

@media (max-width: 1024px) and (min-width: 768px) {
    .content-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 20px;
    }
}

@media (max-width: 768px) {
    .content-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 32px;
    }

}

@media (max-width: 600px) {
    .content-cards__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px 0;
    }
    .content-cards__image {
        height: clamp(320px, 80vw, 538px);
    }
}


.content-cards--personal .stuff-item2 .popup-stuff-right,
.content-cards--personal .stuff-item2 .dop-info {
    display: none;
}

    .insta-slider {
        margin-top: 95px !important;
    }

    .slider-image {
        width: 100%;
    }

    .rutube-video-container {
        position: relative;
        cursor: pointer;
        width: 100%;
        aspect-ratio: 16 / 9;
        background-color: #000;
        background-size: cover;
        background-position: center;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rutube-video-container .rutube-play-button {
        width: 80px;
        height: 56px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 12px;
        transition: all 0.2s ease-in-out;
        z-index: 1;
        position: relative;
    }

    .rutube-video-container .rutube-play-button::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-45%, -50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 0 14px 24px;
        border-color: transparent transparent transparent white;
    }

    .rutube-video-container:hover .rutube-play-button {
        background-color: rgba(205, 0, 0, 0.85);
        transform: scale(1.1);
    }

    .rutube-video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .insta-controls .controls {
        margin-top: 60px;
    }

    .section-title {
        margin: 0;
    }

    .section__title.section-title {
        margin-bottom: clamp(35px, 3.6vw, 70px);
        font-family: 'Clear Sans';
        font-weight: 500;
        font-style: normal;
        font-size: clamp(32px, 2.4vw, 45px);
        line-height: 124%;
        letter-spacing: 0px;
        vertical-align: middle;
        color: #B5B5B5;
    }

    .content-row {
        display: flex;
        gap: 40px;
        align-items: flex-start;
    }

    .video-column {
        flex: 1;
        min-width: 0;
    }

    .video-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 10px;
    }

    .description-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .description-column-title {
        margin: 0 0 21px 0;
        font-family: Clear Sans;
        font-weight: 700;
        font-style: normal;
        font-size: 27px;
        line-height: 100%;
        letter-spacing: 0px;
        vertical-align: middle;
        text-transform: uppercase;
        color: #333;
        max-width: 700px;
    }

    .description-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .description-icon {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
    }

    .description-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .description-text h3 {
        margin: 0 0 8px 0;
        font-size: 1.2rem;
        color: #333;
    }

    .description-text p {
        margin: 0;
        font-family: 'Clear Sans';
        font-weight: 400;
        font-style: normal;
        font-size: clamp(12px, 1.5vw, 20px);
        line-height: clamp(12px, 1.5vw, 20px);
        letter-spacing: 0px;
        vertical-align: middle;
        color: #666;
        padding-right: 0;
    }

    @media (max-width: 768px) {
        .main-content-block .wrapper {
            margin: 0 6%;
        }

        .section-title {
            display: none;
        }

        .content-row {
            flex-direction: column-reverse;
            gap: 30px;
        }

        .video-column {
            width: 100%;
        }

        .description-column-title {
            font-size: clamp(32px, 2.5vw, 40px);
            line-height: clamp(32px, 3vw, 40px);
            margin: 0 0 10px 0;
        }

        .description-text p {
            font-size: clamp(16px, 2.5vw, 20px);
            line-height: clamp(16px, 3vw, 20px);
        }
    }

    #rutube-lazy-player {
        cursor: pointer;
        background-size: cover;
        background-position: center;
        background-image: url('https://verbamayr.ru/include/img/cover1.jpg');
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #rutube-lazy-player .rutube-play-button {
        width: 80px;
        height: 56px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 12px;
        transition: background-color 0.2s ease, transform 0.2s ease;
        position: absolute;
        top: calc(50% - 28px);
    }

    #rutube-lazy-player .rutube-play-button::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-40%, -50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 0 14px 24px;
        border-color: transparent transparent transparent white;
    }

    #rutube-lazy-player:hover .rutube-play-button {
        background-color: rgba(205, 0, 0, 0.85);
        transform: scale(1.1);
    }


.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: inherit;
  box-shadow: none;
}

.button__f2EhV,
#jvLabelWrap {
    display: none !important;
}


    .custom-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.7s, opacity 0.7s ease;
    }

    .custom-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
    }

    .custom-popup__panel {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 42%;
        background-color: #191e29;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .custom-popup__content {
        padding: 0;
        height: 100%;
        overflow: hidden;
    }

    .widget-frame {
        width: 100%;
        height: 100%;
        border: none;
    }

    .custom-popup__close {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
        width: 34px;
        height: 34px;
        background: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        opacity: 0.9;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .custom-popup__close:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    .custom-popup__close::before,
    .custom-popup__close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50%;
        height: 2px;
        background-color: #191e29;
        transform-origin: center;
    }

    .custom-popup__close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .custom-popup__close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .custom-popup.is-visible {
        visibility: visible;
        opacity: 1;
    }

    .custom-popup.is-visible .custom-popup__panel {
        transform: translateX(0);
    }

    @media (max-width: 767px) {
        .custom-popup__panel {
            width: 100%;
        }
    }



.rooms-main .view-slider .swipe-wrap {
    display: flex;
}

.rooms-main .view-slider .swipe-wrap .slide {
  display: flex;
}

/* --- Стили для блока "Слово директора" --- */

.verba-director {
  margin: 0 10.7%;
padding: 100px 0;
  background: #fff;
}

.verba-director__wrapper {
    position: relative;
}

.verba-director__text p {
  margin-bottom: 15px;
  margin-right: 42%;
  line-height: 1.6;
  color: #333;
    max-width: 1920px;
}

.verba-director__text p.strong {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    margin: 60px 50% 30px 60px;
    max-width: 1920px;
}

.verba-director__text p.light {
    margin-top: 4px;
    opacity: 0.5;
}

.podlozhka {
    padding: 30px 60px 30px;
    margin-right: 3%;
    background-color: #F8F8F8;
    min-height: 450px;
}

.verba-director__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 450px;
}

.verba-director__image img {
  display: block;
  max-width: 100%;
}

@media (max-width: 1200px) {
    .verba-director__image {
        width: 300px;
    }
    .verba-director__text p.strong {
        margin: 60px 40% 30px 60px;
    }
    .verba-director__text p {
        margin-right: 40%;
    }
}
@media (max-width: 860px) {
    .verba-director {
    margin: 0 6%;
    padding: 50px 0;
    }
    .podlozhka {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        padding: 0;
        margin-top: 20px;
        margin: 0;
    }
    .verba-director__image {
        background-color: #F8F8F8;
        position: static;
        order: 1;
        width: 100%;
        outline: 20px solid #F8F8F8;
        outline-offset: -19px;
    }
    .verba-director__position {
        background-color: #F8F8F8;
        order: 2;
        outline: 1px solid #F8F8F8;
        padding: 0 20px 20px 20px;
    }
    .podlozhka p {
        order: 3;
    }
    .verba-director__text p.strong {
        margin: 0 0 20px 0;
        padding: 0;
    }
    .verba-director__text p {
        margin: 20px 0 0 0;
    }
    
}


/* --- Стили для мобильного виджета (FAB) --- */
.floating-widget-container {
    display: none;
}

@media (max-width: 550px) {
    .floating-widget-container {
        pointer-events: none;
    }

    .floating-widget-container #fab-main {
        pointer-events: auto;
    }

    .floating-widget-container.active {
        pointer-events: auto;
    }

    .floating-widget-container {
        display: block;
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 1000;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    #fab-main {
        position: relative;
        z-index: 10;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #ffffff;
        border: 1px solid #ccc;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
        overflow: hidden;
    }

    #fab-main:hover {
        transform: scale(1.1);
    }

    .fab-icon {
        position: absolute;
        transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    #fab-icon-open {
        width: 28px;
        height: 28px;
        stroke: #191e29;
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    #fab-icon-close {
        width: 32px;
        height: 32px;
        stroke: #e74c3c;
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }

    .floating-widget-container.active #fab-icon-open {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }

    .floating-widget-container.active #fab-icon-close {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    .fab-menu {
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 15px;
    }

    .fab-item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        cursor: pointer;
        border: none;
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        transition-delay: calc(var(--delay-index) * 0.05s);
    }

    .fab-item:hover {
        transform: scale(1.05);
    }

    .floating-widget-container.active .fab-menu {
        pointer-events: auto;
    }

    .floating-widget-container.active .fab-item {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .fab-item--circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .fab-telegram, .fab-jivochat {
        background-color: transparent;
    }

    .fab-item--circle svg {
        width: 50px;
        height: 50px;
    }

    .fab-item--rect {
        font-family: 'Clear Sans', sans-serif;
        width: 190px;
        padding: 14px 0;
        box-sizing: border-box;
        text-align: center;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        vertical-align: middle;
        border-radius: 0;
    }

    .fab-callback {
        background-color: #191e29;
        color: #fff;
        border: 1px solid #191e29;
    }

    .fab-booking {
        background-color: #fff;
        color: #191e29;
        border: 1px solid #ccc;
    }
}

.slider-news-container,
.slider-video-container,
.slider-magazine-container,
.slider-two-container {
  position: relative;
  margin: 0 auto;
}

@media (max-width: 860px) {
    .slider-two-container {
        margin: 6%;
    }

    .detox-rooms .slider-two-container {
        margin: 0 !important;
    }
}

.swiper-news,
.swiper-video,
.swiper-magazine,
.swiper-two {
  width: 100%;
  padding-bottom: 70px !important;
}

/* Слайды */
.swiper-slide a {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.slider-image {
  position: relative;
  overflow: hidden;
}

.slider-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .6s ease;
}

.slider-image__bg {
  mix-blend-mode: multiply;
  background: rgba(110,120,138,.8);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.slider-text {
  margin-top: 16px;
  transition: transform .6s ease;
}

.swiper-slide a:hover .slider-image__bg {
  opacity: 1;
}

.swiper-slide a:hover .slider-text {
  transform: translateY(10px);
}

/* --- НАВИГАЦИЯ --- */
.slider-news-nav,
.slider-video-nav,
.slider-magazine-nav,
.slider-two-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.slider-news-nav .swiper-button-prev,
.slider-news-nav .swiper-button-next,
.slider-video-nav .swiper-button-prev,
.slider-video-nav .swiper-button-next,
.slider-magazine-nav .swiper-button-prev,
.slider-magazine-nav .swiper-button-next,
.slider-two-nav .swiper-button-prev,
.slider-two-nav .swiper-button-next {
  position: static;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width .25s ease, opacity .2s ease;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}

.slider-news-nav .swiper-button-prev,
.slider-video-nav .swiper-button-prev,
.slider-magazine-nav .swiper-button-prev,
.slider-two-nav .swiper-button-prev {
  border-left: 2px solid #222;
  border-right: 2px solid #222;
}

.slider-news-nav .swiper-button-next,
.slider-video-nav .swiper-button-next,
.slider-magazine-nav .swiper-button-next,
.slider-two-nav .swiper-button-next {
  border-right: 2px solid #222;
  border-left: none;
}

.slider-news-nav .swiper-button-prev::after,
.slider-news-nav .swiper-button-next::after,
.slider-video-nav .swiper-button-prev::after,
.slider-video-nav .swiper-button-next::after,
.slider-magazine-nav .swiper-button-prev::after,
.slider-magazine-nav .swiper-button-next::after,
.slider-two-nav .swiper-button-prev::after,
.slider-two-nav .swiper-button-next::after {
  font-size: 13px;
  font-weight: 700;
}

/* Неактивные стрелки */
.swiper-button-disabled {
  opacity: .45;
  border-color: #eee;
  color: #9aa0a6;
  cursor: not-allowed;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-disabled {
  border-right: none;
}

.swiper-button-prev.swiper-button-disabled + .swiper-button-next {
  border-left: 2px solid #222;
}

.swiper-button-next.swiper-button-disabled {
  border-left: none;
}

.swiper-button-next.swiper-button-disabled ~ .swiper-button-prev {
  border-right: 2px solid #222;
}

/* --- АНИМАЦИЯ СТРЕЛОК --- */
.slider-news-nav:has(.swiper-button-next:hover) .swiper-button-next,
.slider-video-nav:has(.swiper-button-next:hover) .swiper-button-next,
.slider-magazine-nav:has(.swiper-button-next:hover) .swiper-button-next,
.slider-two-nav:has(.swiper-button-next:hover) .swiper-button-next {
  width: 46px;
}

.slider-news-nav:has(.swiper-button-next:hover) .swiper-button-prev,
.slider-video-nav:has(.swiper-button-next:hover) .swiper-button-prev,
.slider-magazine-nav:has(.swiper-button-next:hover) .swiper-button-prev,
.slider-two-nav:has(.swiper-button-next:hover) .swiper-button-prev {
  width: 26px;
}

.slider-news-nav:has(.swiper-button-prev:hover) .swiper-button-prev,
.slider-video-nav:has(.swiper-button-prev:hover) .swiper-button-prev,
.slider-magazine-nav:has(.swiper-button-prev:hover) .swiper-button-prev,
.slider-two-nav:has(.swiper-button-prev:hover) .swiper-button-prev {
  width: 46px;
}

.slider-news-nav:has(.swiper-button-prev:hover) .swiper-button-next,
.slider-video-nav:has(.swiper-button-prev:hover) .swiper-button-next,
.slider-magazine-nav:has(.swiper-button-prev:hover) .swiper-button-next,
.slider-two-nav:has(.swiper-button-prev:hover) .swiper-button-next {
  width: 26px;
}


/*
==================================================================================
  ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ ВСПЛЫВАЮЩЕЙ ГАЛЕРЕИ (ЧТОБЫ ВЫГЛЯДЕЛА КАК ОСТАЛЬНЫЕ)
==================================================================================
*/

.gallery-popup__overlay {
    background-color: rgba(0, 0, 0, 0.95);
}

.gallery-popup__container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-popup .swiper.gallery-slider {
    width: 100%;
    height: 100%;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 40px - 70px);
    margin: 0;
    padding-bottom: 0 !important;
}

.gallery-popup .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-popup .swiper-slide img {
    display: block;
    width: 100%;
    height: 90%;
    object-fit: contain;
}

.gallery-popup__caption {
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: #ffffff;
    font-size: 16px;
    z-index: 20;
    height: 40px;
}

.gallery-popup .slider-magazine-nav {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    align-items: center;
    z-index: 20;
}

.gallery-popup .swiper-button-prev-gallery,
.gallery-popup .swiper-button-next-gallery {
    position: static;
    width: 36px;
    height: 36px;
    margin: 0;
    background: #22222200;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width .25s ease, opacity .2s ease;
    border-top: 2px solid #555555;
    border-bottom: 2px solid #555555;
}

.gallery-popup .swiper-button-prev-gallery {
    border-left: 2px solid #555555;
    border-right: 2px solid #555555;
}

.gallery-popup .swiper-button-next-gallery {
    border-right: 2px solid #555555;
    border-left: none;
}

.gallery-popup .swiper-button-prev-gallery:hover,
.gallery-popup .swiper-button-next-gallery:hover {
    background: #3333332d;
}

.gallery-popup .swiper-button-prev-gallery::after,
.gallery-popup .swiper-button-next-gallery::after {
    font-size: 13px;
    font-weight: 700;
}

.gallery-popup .swiper-button-disabled {
    opacity: .6;
    border-color: #666666;
    color: #9aa0a6;
    cursor: not-allowed;
    pointer-events: none;
}

.gallery-popup .swiper-button-prev-gallery.swiper-button-disabled {
    border-right: none;
}

.gallery-popup .swiper-button-prev-gallery.swiper-button-disabled + .swiper-button-next-gallery {
    border-left: 2px solid #555555;
}

.gallery-popup .slider-magazine-nav:has(.swiper-button-next-gallery:hover) .swiper-button-next-gallery {
    width: 46px;
}

.gallery-popup .slider-magazine-nav:has(.swiper-button-next-gallery:hover) .swiper-button-prev-gallery {
    width: 26px;
}

.gallery-popup .slider-magazine-nav:has(.swiper-button-prev-gallery:hover) .swiper-button-prev-gallery {
    width: 46px;
}

.gallery-popup .slider-magazine-nav:has(.swiper-button-prev-gallery:hover) .swiper-button-next-gallery {
    width: 26px;
}

.gallery-popup__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 30;
    border-radius: 50%;
    border: none;
    color: #ffffff;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-popup__close:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.news__card-content-text {
    transition: max-height 0.4s ease-out;
    overflow: hidden;
}



/* --- Список в блоке rip-top --- */
.section.rip-top .rip-content .list {
  list-style: none;
  margin: 1em 0;
  padding-left: 1.5em;
}

.section.rip-top .rip-content .list li {
  position: relative;
  margin-bottom: 0.6em;
  line-height: 1.6;
  color: #222;
  font-size: 16px;
}

.section.rip-top .rip-content .list li::before {
  content: "";
  position: absolute;
  left: -1em;
  top: 12px;
  width: 4px;
  height: 4px;
  background-color: #282828;
  transform: rotate(45deg);
  border-radius: 1px;
}

/* --- Список в блоке recommended-programs-item --- */
.recommended-programs-item .rpi-left .list {
  list-style: none;
  margin: 1em 0;
  padding-left: 1.5em;
}

.recommended-programs-item .rpi-left .list li {
  position: relative;
}

.recommended-programs-item .rpi-left .list li::before {
  content: "";  
  position: absolute;
  left: -15px;
  top: 15px;
  width: 5px;
  height: 5px;
  background-color: #282828;
  transform: rotate(45deg);
  border-radius: 1px;
}

.picture-as-darkened-background--news img {
    object-position: left;
}

.information .text-container a {
    color: #000;
}

.col-sm-3 {
    width: 22%;
    display: inline-block;
    padding: 0px 1%;
    vertical-align: top;
}

.col-sm-3 img {
    margin-bottom: 10px;
}

.price_right {
    margin-top: 25px;
}

.price_right img {
    max-width: 100%;
    margin-bottom: 15px;
}

.price_right h3 {
    font-size: 20px;
}

.price_right p {
    font-size: 14px;
}

.price_right p b {
    font-size: 18px;
    color: rgb(63, 100, 33);
}

.price_right a.button {
    width: 240px;
}

#open_form {
    display: none;
}

form.form {}

/* Desktop styles for docs section */
.docs .col {
    max-width: 22%;
    display: inline-block;
    vertical-align: top;
}

.docs .col a {
    display: block;
    text-align: center;
    color: #000;
    max-width: 200px;
    margin: 0 auto;
}

.docs .col a img {
    display: block;
    margin-bottom: 10px;
}

/* Mobile responsive styles for docs section */
@media (max-width: 767px) {
    .docs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .docs .col {
        display: inline-block;
        white-space: normal;
        vertical-align: top;
        width: calc(40% - 10px);
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .docs .col:last-child {
        margin-right: 0;
    }
    
    .docs .col a {
        color: transparent;
        font-size: 0;
        line-height: 0;
    }
}

form.form label {
    display: block;
}

form.form input[type=text],
form.form textarea {
    margin: 0px!important;
    min-width: 320px;
    border: 1px solid #ddd;
    padding: 8px 14px;
}

form.form input[type=radio] {
    height: auto!important;
    width: auto!important;
    float: left;
    margin-right: 7px;
    margin-top: 5px;
}

form.form tr {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

form.form td {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 5px;
    padding-right: 5px;
}

form.form a.button {
    width: 150px;
    text-align: center;
}

p.ask {
    text-align: center;
    font-size: 22px;
}

@media(max-width:768px) {
    .col-xs-6 {
        width: 47%;
        margin: 20px 0px;
    }
}

.of-b-discount [data-name="discount"],
.of-b-recommended [data-name="recommended"] {
    white-space: normal;
}

.copy p {
    font-size: 14px;
    max-width: 100%;
    line-height: 1.625em;
}

.checkup {
    width: 100%;
    border-collapse: collapse;
}

.checkup td {
    border-bottom: 2px solid #f8f8f8;
    padding: 10px;
}

.checkup td.category {
    font-weight: bold;
    background: #EFF4DB;
    color: #404040;
}

.checkup .table_header {
    background: #f8f8f8
}

.checkup .table_header td {
    font-weight: bold;
    color: #a2a235;
}

.checkup td p {
    margin-bottom: 5px;
    margin-top: 5px;
}


.text_after {
    padding: 30px 0 0 0;
}

.text-inner a {
    color: #000;
}

.info-links {
    margin-bottom: 20px;
}
@media(max-width:768px) {
    .info-links {
        margin-bottom: var(--spacing-xs);
    }
    .pt-contacts p {
        margin-bottom: var(--spacing-xs);
    }
    .pt-contacts p:last-child {
        margin-bottom: 0;
    }
    .pt-content {
        height: auto;
        position: initial;
    }
    .page-top {
        height: auto;
    }
    .contacts h4 {
        margin-bottom: var(--spacing-xs);
    }
    .contacts p {
        margin-bottom: var(--spacing-xxs);
    }
    .contacts p:last-child {
        margin-bottom: 0;
    }
    .contacts .map-view {
        margin-top: var(--spacing-sm);
    }
}
.info-links a {
    display: inline-block;
    margin-right: 38px;
    font-size: 20px;
    line-height: 30px;
    color: inherit;
    font-weight: 500;
}

.pt-contacts {
    margin-top: 0vh;
}

.spoiler .showtxt,
.spoiler.active .hidetxt {
    display: inline;
}

.spoiler .hidetxt,
.spoiler.active .showtxt {
    display: none;
}

.show-block{
    display: block;
}
.hide-block{
    display: none !important;
}
.mobile-show {
    display: none !important;
}
@media (max-width:767px) {
    .mobile-show {
        display: block !important;
    }
    .mobile-hidden{
        display: none !important;
    } 
}
.d-none {
    display: none;
}



#button_modal_new{
    display: none;
}
.modal_new_exit{
    display: none;
}
.open_modal_new .modal_new_exit{
    display: block;
    cursor: pointer;
    position: absolute;
    right: 46px;
    pointer-events: auto;
}
.open_modal_new #button_modal_new{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 15px 40px;
    gap: 10px;
    width: calc(100% - 82px);
    background: #191E29;
    border: 1px solid #FFFFFF;
    font-family: 'Clear Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    pointer-events: auto;
    margin-bottom: 16px; 
}
.open_modal_new #button_modal_new:hover{
    background: #FFFFFF;
    color: #191E29;
}
.modal-title-new{      
 font-family: 'Clear Sans';
 font-style: normal;
 font-weight: 400;
 font-size: 25px;
 line-height: 34px;
 color: #FFFFFF;  
 margin-bottom: 24px;
}
.modal-subtitle-new{
 font-family: 'Clear Sans';
 font-style: normal;
 font-weight: 400;
 font-size: 16px;
 line-height: 22px;
 color: #FFFFFF;  
 margin-bottom: 12px; 
}
.modal_text_wrapp ul{
    margin-left: 30px;
    list-style: disc;
}
.modal_text_wrapp ul li{
    list-style: disc;
    margin-bottom: 8px;
    
}
.modal_text_wrapp ul li a{
text-decoration: underline;
pointer-events: auto;
 color: #FFFFFF;  
}
.modal_text_wrapp ul li a:hover{
text-decoration: none;
}
.open_modal_new .header-bottom_open_modal{
    display: flex;
    width: 912px;
    background: #191E29;
    font-family: 'Clear Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    margin-bottom: 0;
    bottom: 0;
    right: 0;
    z-index: 4;

    position: absolute;
    max-width: 912px;
    pointer-events: auto!important;
    animation: modal_new 1s ease;
}
.header-bottom_open_modal.active .hb-button .button{
    animation: modal_new_q 0.5s ease;

}
@keyframes modal_new {
  0% {width: 0px;}
  100% {width: 912px;}
}
@keyframes modal_new_q {
  0% {width: 393px;}
  100% {width: 126px;}
}
.open_modal_new .header-bottom_open_modal .header-bottom{
    position: unset;
}
.open_modal_new .header-bottom_open_modal  .header-bottom_open_modal_item img{
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  object-fit: cover;
  object-position: center;
}
.open_modal_new .header-bottom_open_modal .header-bottom_open_modal_item{
    pointer-events: none;
    width: calc(50% - 22px);
}
.open_modal_new  .header-bottom_open_modal .header-bottom_open_modal_item:last-child{
    padding: 40px 45px;
    width: calc(45% - 12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.open_modal_new .header-bottom_open_modal .button{
    width: calc(100% - 76px);
}
.open_modal_new .header-bottom_open_modal_bg{
  background: rgba(25, 30, 41, 0.6);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
}
.open_modal_new{
    overflow: hidden;
}
.header-bottom {
    margin-bottom: 30px;
    right: 2.2%;
/*    margin-bottom: 40px;*/
}
.open_modal_new .header-bottom {
    margin-bottom: 0;
}
.open_modal_new .button:hover:before,  .open_modal_new .button:hover canvas {
    transform: unset;
}
.modal_text_new{
    display: none;
    width: 90%;
}
.open_modal_new .modal_text_new{
    display: block;
}
.open_modal_new .header-bottom .wa-link{
    display: none;
}

 html.page-invert .open_modal_new .hb-button {
  opacity: unset;
  transform: unset;
  pointer-events: auto;
  visibility: unset;
  transition: unset;
}

.open_modal_new .mb-button{
display: none;
}

 html.page-invert .open_modal_new .plus-button {
display: none;
}


@media screen and (max-width: 920px) {
    .open_modal_new .header-bottom_open_modal {
        width: 100%;
        animation: unset;
    }
}
@media screen and (max-width: 600px) {
    .open_modal_new .header-bottom_open_modal {
        max-height: 100%;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        animation: unset;
    }
    .open_modal_new .header-bottom_open_modal {
        width: calc(100% - 44px);
        flex-direction: column;
        padding-left: 22px;
        padding-right: 22px;
        padding-bottom: 16px;
    }
    .open_modal_new .header-bottom_open_modal .header-bottom_open_modal_item:last-child {
        position: unset;
        width: calc(105% - 16px);
        height: 100%;
        padding: 0px;
    }
    .open_modal_new .header-bottom_open_modal .header-bottom_open_modal_item {
        width: calc(105% - 16px);
    }
    .open_modal_new .header-bottom_open_modal .header-bottom_open_modal_item img {
        height: 420px;
        object-position: bottom;
    }
    .modal_text_new {
        width: 100%;
    }
    .open_modal_new .header-bottom_open_modal .header-bottom_open_modal_item img{
       padding-top: 58px; 
   }
   .open_modal_new .modal_new_exit {
    right: 26px;
    top: 26px;
}
.modal-title-new {
    margin-bottom: 12px;
    margin-top: 16px;
}
.modal_text_wrapp ul li {
    margin-bottom: 0px;
}
.modal_text_wrapp ul {
    margin-bottom: 20px;
}
.modal-subtitle-new {
    margin-bottom: 8px;
}
.open_modal_new .header-bottom_open_modal .button {
    width: calc(100% - 65px);
}
}
@media screen and (max-width: 400px) {
    .open_modal_new .header-bottom_open_modal .header-bottom_open_modal_item img {
        height: 235px;
        object-position: bottom;
    }
}

.program-items .view-slider  .slide{
    height: 0;
}
.program-items .view-slider  .slide.to-center{
  height: 100%;
}

.link_new{
    font-size: 16px;
}

.recommended-programs-item_new {
    margin-top: 0;
    padding-top: 0;
}

.link_wrap {
    margin-left: 6%;
    margin-top: 40px;
    margin-bottom: 30px;
}

.rm-content-inner .rm-link.title_text {
    position: relative;
}
.rm-content-inner .rm-link.title_text .info_text{
    display: none;
    position: absolute;
    width: 310px;
    padding: 12px 27px;
    background: #FFFFFE;
    font-size: 16px;
    z-index: 2;
    color: #282828;
    line-height: 23px;
    bottom: 11px;
    left: 119%;
} 
.rm-content-inner .rm-link.title_text:hover .info_text {
    display: block;
} 
@media screen and (max-width: 500px){
    .rm-content-inner .rm-link.title_text .info_text{
        left: 50%;
    }
}
@media screen and (min-width: 860px){
    .link_wrap {
        margin-left: 10.7%;
    }
}
@media screen and (min-width: 1300px){
    .rooms-main .image.image-wrapper picture {
        min-width: 1300px;
    }
}



.razdel_name_wrap {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    margin-top: 70px;
}

.razdel_name_wrap .zagolovok_razdela {
    max-width: initial;
    text-align: left;
    font-size: 40px;
    margin: 0;
    padding: 0;
    margin-left: 2.9%;
}

body .stuff-page {
    margin-top: 0;
}

@media screen and (min-width: 860px) {
    .stuff-page .wrapper .staff-row-1 {
        margin: 3.7% 1.45% 0 2.9%;
    }

    .stuff-page .wrapper .staff-row-2 {
        margin: 6.7% 1.45% 0 0;
    }

    .stuff-page .wrapper .staff-row-3 {
        margin: 3.7% 2.9% 0 0;
    }

    .stuff-page .wrapper .si-notice_new{
        transition-delay: .2s;
        margin: 9.7% 0 0;
    }

}

@media screen and (max-width: 859px) {
    .stuff-replace .popup-stuff-left{
        width: 100% !important;
    }
}


.bold {
    font-weight: bold;
}

.specialist_prop__wrap {
    font-size: 16px;
    padding-right: 7%;
    margin-bottom: 1em;
    line-height: 1.714em;
    letter-spacing: -.005em;
}
.specialist_BUTTON_WhatsApp__wrap{
    margin-top: 25px;
}

.specialist_BUTTON_WhatsApp__wrap a{
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
    color: black;
    font-weight: bold;
    background: rgb(241, 239, 239);
    background: linear-gradient(90deg, rgba(241, 239, 239, 1) 25%, rgba(194, 194, 194, 1) 75%);
}

.specialist_BUTTON_WhatsApp__wrap a:hover{
    background: rgb(241, 239, 239);
    background: linear-gradient(90deg, rgba(220, 220, 220, 1) 25%, rgba(175, 175, 175, 1) 75%);
}

.text_WhatsApp{
    font-size: 12px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.pub_item{
    border: 1px solid gray;
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    width: 50%;
}

.stuff-replace {
    display: block !important;
}

.stuff-replace .popup-stuff-left {
    float: left;
}

.stuff-replace .popup-stuff-right {
    float: right;
}

.stuff-item .dop-info {
    display: none;
}

.popup-inner .dop-info {
    display: block;
    font-size: 15px;
}

.button-zapis-na-priem canvas {
    background-color: #536e4a;
}

.popup-stuff-right .button-zapis-na-priem {
    color: #fff;
}

.popup-callback .modal__desc.h5{
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
}

.popup-callback .callback__button.button {
    margin-top: 0;
}
.button.callback {
    color: #fff;
    margin-right: 20px;
    border: 1px solid #191e29;
}
.hb-button .button.callback::before {
   background: #191e29;     
}
.popup-callback .input-wrapper.not-empty.error input {
    animation: error .4s ease;
}
#popup-response.active-bgr .popup-content {
    background: #fff;
}

.popup-callback.order-form form.popup-callback-form {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 85%;
    margin: 10%;
}
/*.popup-callback .of-buttons-wrapp .of-buttons{
    justify-content: space-between;
}*/
.popup-callback .of-buttons-wrapp p.footer{
    margin: 0;
}
.header-bottom.header-bottom-modile {
    display: flex;
}
.header-bottom-modile .border-btn.border-btn .button {
    border: 1px solid #ccc;
}
.text_in_main_top:not(.main_top) {
    top: 18px;
    position: absolute;
    z-index: 99;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
    background:#DBDB00;
    padding:2px;
}
.text_in_main_top.main_top {
    background:#DBDB00;
    padding:2px;
    text-align: center;
}
.text_in_main_top a {
    font-weight: bold;
    color: #282828;
}

.text_in_main_top .icon_in_info_main.whatsapp_icon{
    background:url(/local/templates/verba/build/whatsapp.png) no-repeat center;
    background-size: contain;
    margin-left: 9px;
}
.text_in_main_top .icon_in_info_main.teleg_icon{
    background:url(/local/templates/verba/build/telegram1.png) no-repeat center;
    right: 0;
    background-size: contain;
}


.text_in_main_top .icon_in_info_main {
    display: inline-block;
    width: 35px;
    height: 35px;
    position: absolute;
    border-radius:50%;
    bottom: -4px;
}
.text_in_main_top.main_top p{
    max-width: 100%;
    margin: 0;
    line-height: 1.2em;
    padding: 0;
}
.text_in_main_top.main_top .icon_text{
    position: relative;
    padding-right: 59px;
    width: 730px;
    text-align: center;
    margin:0 auto;
}
.text_in_main_top.main_top p.bold {
    margin-bottom: 5px;
}
@media screen and (min-width: 860px){
  .text_in_main_top.main_top p{
        max-width: 100%;
        margin: 0;
        line-height: 1.2em;
    }  
}
@media screen and (min-width:600px) and (max-width:790px) {
    .text_in_main_top.main_top .icon_text span {
        display: block;
        position: 0 2px;
    }
    
}
@media screen and (max-width:790px) {
    .text_in_main_top.main_top .icon_text {
        width: 100%;
    }
    .text_in_main_top .icon_in_info_main {
        position: static;
    }

    .text_in_main_top .icon_in_info_main.whatsapp_icon,
    .text_in_main_top .icon_in_info_main.teleg_icon{
/*        display: none;*/
    }
}

@media screen and (max-width:767px) {
    .text_in_main_top {
        top: 78px;
        padding: 2px 10px;
        left: 0;
        transform: none;
        margin-right: 0;
    }
    .text_in_main_top.main_top {
        position: absolute;
        z-index: 9;
    }
}
@media screen and (max-width:600px) {
    .text_in_main_top.main_top .icon_text,
    .text_in_main_top.main_top p {
        line-height: 1.1em;
    }
    .text_in_main_top .icon_in_info_main {
        width: 25px;
        height: 27px;
    }
    .text_in_main_top.main_top p.bold {
      margin-bottom: 0;
    }
}
@media screen and (max-width:860px) {
    .header-bottom.header-bottom-modile .wa-link {
        bottom: 170px;
    }
    .header-bottom.header-bottom-modile .telegram {
        bottom: 115px;
    }
}
@media screen and (max-width:550px) {
    .header-bottom.header-bottom-modile {
        flex-wrap: wrap;
    }
    .header-bottom.header-bottom-modile .hb-button {
        width: 100%;
        text-align: right;
    }
    .header-bottom.header-bottom-modile .hb-button .button.callback {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .header-bottom.header-bottom-modile .wa-link {
        bottom: 220px;
    }
    .header-bottom.header-bottom-modile .telegram {
        bottom: 170px;
    }
    html.headerHidden .header-bottom-modile .plus-button {
        height: 44px;
    }

    .mobile_box_button{
        height: 44px;
        display: block;
        position: absolute;
        bottom: 40px;
        right: 20px;
        width: 44px;
        border-radius:50%;
        opacity: 1;
        pointer-events: auto;
        background:#fff url(/local/templates/verba/build/phone-call.png) no-repeat center;
        background-size: auto;
        cursor: pointer;
        background-size: 67%;
        border:1px solid #191e29;
        transition:bottom 0.5s;
        /* iOS touch improvements */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile_box_button:not(.active):focus {
        border:1px solid #191e29;
    }
    .mobile_box_button.active {
        bottom: 310px;
/*        bottom: 261px;*/
        background:url(/local/templates/verba/build/close.png) no-repeat center;
        background-size: contain;
        border:none;
    }

    .mobile_box.mobile_box-hidden {
        display: none;
    }

}

/* iOS Touch Optimization for Nav Button */
.nav-button {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.nav-button i,
.nav-button span {
    pointer-events: none;
}

.news {
    padding-top: 80px;
}

.news__list {
    display: flex;
    gap: 55px;
    flex-direction: column;
}

.news__card {
    display: flex;
    gap: 21px;
}

.news__card-image {
    width: clamp(300px, 30vw, 592px);
    flex-shrink: 0;
}

.news__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__card-content {
    display: flex;
    flex-direction: column;
}

.news__card-content-title {
    font-family: 'Clear Sans';
    font-weight: 700;
    font-size: clamp(20px, 2.6vw, 30px);
    line-height: clamp(20px, 2.6vw, 30px);
    letter-spacing: 0;
}

.news__card-content-text {
    font-family: 'Clear Sans';
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(18px, 2.6vw, 24px);
    letter-spacing: 0;
    color: #282828;
    margin-top: 12px;
    overflow: hidden;
    padding-right: 0;
}

.news__card-content-text--detail {
    transition: max-height 2s ease;
    position: relative;
}

.news__card-content-text--detail.has-overflow:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.news__card-content-text--detail.expanded::after {
    opacity: 0;
}

.news__card-content-text--detail.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.news__card-detail-btn-wrapper {
    margin-top: 8px;
}

.news__card-detail-btn {
    cursor: pointer;
    font-family: 'Clear Sans';
    font-weight: 400;
    font-size: clamp(16px, 2.6vw, 20px);
    line-height: clamp(18px, 2.6vw, 24px);
    letter-spacing: 0;
    color: #191E29;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    width: auto;
}

.news__card-detail-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #191E29;
}

.news__card-content-text p {
    padding-right: 0;
    max-width: unset;
}

.news__card-content-button {
    margin-top: 30px;
    margin-bottom: 16px;
}

.news__card-content-date {
    font-family: 'Clear Sans';
    font-size: clamp(12px, 2.6vw, 20px);
    line-height: clamp(12px, 2.6vw, 14px);
    letter-spacing: 0;
    color: rgba(40, 40, 40, 0.5);
    margin-top: auto;
}

@media (max-width: 768px) {
    .news__list {
        gap: 32px;
    }

    .news__card {
        flex-direction: column;
        gap: 0;
    }

    .news__card-image {
        width: 100%;
    }

    .news__card-content-date {
        order: -1;
        margin-top: 12px;
    }

    .news__card-content-title {
        margin-top: 4px;
    }

    .news__card-content-text {
        margin-top: 4px;
    }

    .news__card-content-button {
        margin-top: 12px;
        margin-bottom: 0;
    }

    .news__card-content-button div {
        display: flex;
    }
}

.detail-text-collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.detail-text-expanded {
    opacity: 1;
}

.button.button-zapis-na-priem::before {
    background: #536e4a !important;
}

.response-stuff .close {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100;
    font-size: 36px;
    color: #000;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.popup-stuff .popup-content {
    position: relative;
    z-index: 1; /* Убеждаемся, что контент ниже, чем z-index: 100 у кнопки */
}

.wrapper--news {
    padding-top: 100px !important;
}

@media (max-width: 860px) {
    .stuff-replace .popup-stuff-right {
        width: 100%;
        margin: 40px auto;
    }

    .programs-inline {
        padding-top: 120px !important;
        padding-bottom: 140px !important;
    }

    
    .section--medicine,
    .section--reviews {
        padding-top: 120px !important;
    }

    main > meta.journal ~ .section.magazine-slider,
    .wrapper--news {
        padding-top: 40px !important;
    }
}



/* Скрывает только плавающую кнопку JivoSite */
jdiv[class*="wrap__"][class*="_orientationLeft__"] {
  display: none !important;
}

/* Подстраховка, если структура изменится */
jdiv[class*="button__DzVs3"],
jdiv[class*="iconWrap__QoMI5"] {
  display: none !important;
}
