html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none
}

.remodal, [data-remodal-id] {
    display: none
}

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none
}

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -.05em;
    content: ""
}

.remodal-overlay, .remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.remodal {
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.remodal-is-initialized {
    display: inline-block
}

.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px)
}

.remodal-overlay {
    background: rgba(43, 46, 56, 0.9)
}

.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes
}

.remodal-wrapper {
    padding: 10px 10px 0
}

.remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff
}

.remodal.remodal-is-opening, .remodal.remodal-is-closing {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes
}

.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes
}

.remodal, .remodal-wrapper:after {
    vertical-align: middle
}

.remodal-close {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color .2s;
    transition: color .2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent
}

.remodal-close:hover, .remodal-close:focus {
    color: #2b2e38
}

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center
}

.remodal-confirm, .remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background .2s;
    transition: background .2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0
}

.remodal-confirm {
    color: #fff;
    background: #81c784
}

.remodal-confirm:hover, .remodal-confirm:focus {
    background: #66bb6a
}

.remodal-cancel {
    color: #fff;
    background: #e57373
}

.remodal-cancel:hover, .remodal-cancel:focus {
    background: #ef5350
}

.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
    padding: 0;
    border: 0
}

@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0)
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.lt-ie9 .remodal-overlay {
    background: #2b2e38
}

.lt-ie9 .remodal {
    width: 700px
}

.remodal-wrapper {
    padding: 0;
    z-index: 999999999
}

.hero-feedback {
    cursor: pointer
}

.remodal {
    width: 99.99%;
    height: 99.99%;
    min-height: 99vh;
    max-width: 99.99%;
    margin: 0;
    padding: 0
}

.iframe-calc {
    overflow: hidden
}

.iframe-calc .remodal-close {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    left: auto;
    top: 13px;
    right: 23px;
    z-index: 99999;
    transition: all .2s;
    background: transparent;
    border-radius: 0
}

.iframe-calc .remodal-close:before {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    font-size: 24px;
    margin: 0 auto;
    text-align: center;
    background: transparent
}

.iframe-calc .remodal-close:hover {
    color: #1ba0c3
}

.iframe-calc iframe {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 100vh;
    border: none;
    overflow-x: hidden;
    position: relative;
    z-index: 1
}

.manager-popup {
    max-width: 800px;
    min-height: 400px;
    height: min-content;
    background: #fff;
    box-shadow: -4px 7px 17px rgba(0, 0, 0, 0.25);
    border-radius: 46px;
    position: relative;
    padding: 150px 40px 58px
}

.manager-popup .remodal-close {
    left: 100%;
    bottom: 100%;
    top: auto;
    height: 21px;
    width: 21px;
    z-index: 10
}

.manager-popup .remodal-close:before, .manager-popup .remodal-close:after {
    position: absolute;
    left: 10px;
    top: -2px;
    content: " ";
    height: 28px;
    width: 2px;
    background-color: #818181;
    transition: all .2s
}

.manager-popup .remodal-close:hover:before, .manager-popup .remodal-close:hover:after {
    background-color: #1ba0c3
}

.manager-popup__photo {
    height: 214px;
    width: 214px;
    margin: auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: -107px;
    left: 0;
    right: 0
}

.manager-popup__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center
}

.manager-popup__desc {
    font-size: 22px;
    line-height: 1.5em;
    max-width: 485px;
    width: 100%;
    margin: auto;
    text-align: center
}

.manager-popup__desc p {
    padding: 0;
    margin: 0
}

.manager-popup__btn {
    width: 100%;
    display: block;
    max-width: 485px;
    position: relative;
    color: #fff;
    background-color: #1ba0c3;
    border: 1px solid #1ba0c3;
    margin: 54px auto 0;
    padding: 23px 5px;
    font-size: 22px;
    line-height: 32px;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden
}

.manager-popup__btn span {
    position: relative;
    z-index: 2
}

.manager-popup__btn:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: calc(100% + 2px);
    width: 100%;
    height: 100%;
    transition: all .3s;
    background: #fff;
    z-index: 1;
    border-top: 1px solid #1ba0c3
}

.manager-popup__btn:hover {
    color: #1ba0c3
}

.manager-popup__btn:hover:before {
    top: -1px
}

.manager-popup__btn .icon-telegram {
    padding-right: 5px
}

.manager-popup .remodal-close:before {
    transform: rotate(45deg)
}

.manager-popup .remodal-close:after {
    transform: rotate(-45deg)
}

.remodal-overlay {
    background: rgba(255, 255, 255, 0.75)
}

.stop-scrolling {
    height: 100%;
    overflow: hidden
}

.lightboxOverlay, .lightbox {
    z-index: 9999999999
}

.cursor_pointer {
    cursor: pointer !important
}

#popups .popup {
    position: fixed;
    z-index: 9999999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    pointer-events: none;
    display: none
}

#popups .popup.active {
    pointer-events: auto;
    display: block
}

#popups .popup .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7)
}

#popups .popup .close_btn {
    color: #1b516a;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    font-size: 60px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    line-height: .6
}

#popups .popup .popup_iframe_content {
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
    color: #333
}

#popups .popup .popup_iframe_content iframe {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 100vh;
    border: none;
    position: relative;
    z-index: 1
}

.estate-close-btn {
    display: block !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    -webkit-transition: color .2s !important;
    transition: color .2s !important;
    text-decoration: none !important;
    color: #95979c !important;
    border: 0 !important;
    outline: 0 !important;
    background: 0 0 !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    left: auto !important;
    height: 26px !important;
    width: 26px !important;
    background-image: url(img/estate/close.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    z-index: 2
}

.construction_progress .boxes .item .link {
    background: transparent
}

.construction_progress .boxes .item .link img {
    opacity: 1
}

.construction_progress .boxes .item .link:hover img {
    opacity: .967
}

.popup-gull {
    bottom: -84px
}

.watch-video__icon svg {
    stroke: #fff
}

.watch-video__icon svg .plus {
    fill: #fff
}

.button-culc__icon svg {
    stroke: #3CA0C4
}

.button-culc__icon svg .plus {
    fill: #3CA0C4
}

.button-culc__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border: 1px solid #3ca0c4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    transition: all .2s;
    overflow: hidden
}

.button-culc__icon:before {
    content: '';
    background: #003c58;
    position: absolute;
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    top: 101%;
    left: -2px;
    right: -2px;
    transition: all .2s;
    z-index: -1
}

.button-culc__desc {
    font-size: 16px;
    line-height: 1.2em;
    color: #3ca0c4
}

.button-culc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    margin-top: 35px;
    transition: all .2s;
    max-width: 260px
}

.button-culc:hover .button-culc__desc {
    color: #003c58
}

.button-culc:hover .button-culc__icon:before {
    top: -2px
}

.button-culc:hover .button-culc__icon {
    border: 1px solid #003c58
}

.button-culc:hover .button-culc__icon svg {
    stroke: #fff
}

.button-culc:hover svg .plus {
    fill: #fff
}

.advertising-culc__icon svg {
    stroke: #fff;
    display: block
}

.advertising-culc__icon {
    color: #fff
}

.hero-feedback__text {
    white-space: nowrap
}

.advertising-flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start
}

.advertising-culc {
    margin-top: 80px;
    margin-left: 80px;
    border: 1px solid #fff;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
    background: rgba(48, 212, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 24px;
    transition: all .2s
}

.advertising-culc:hover {
    background: #003c58
}

.advertising-culc__desc {
    color: #fff;
    font-size: 16px;
    line-height: 1.2em;
    max-width: 120px;
    display: block;
    margin: 0 8px 0 12px
}

@media screen and (max-width: 992px) {
    .advertising_left .advertising-culc {
        display: none
    }
}

@media screen and (max-width: 768px) {
    .advertising-flex {
        display: block
    }

    .advertising-culc {
        margin-left: 0;
        margin-top: 40px;
        max-width: 232px
    }
}

@media (max-width: 500px) {
    .popup-gull {
        right: -20px;
        bottom: -145px
    }

    .popup-gull__img-mob {
        top: -42px;
        left: 25px;
        transform: rotate(328deg)
    }
}

.estate-frame-link {
    position: fixed;
    left: 50px;
    bottom: 30px;
    background: #009fc6;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    z-index: 99
}

.estate-frame-link:before {
    content: url(img/estate/mob-sheme.svg);
    margin-top: 3px;
    height: 42px
}

.open-frame__text {
    position: absolute;
    left: 100%;
    white-space: pre;
    padding-left: 18px;
    font-size: .88rem;
    color: #1ba0c3;
    display: none
}

@media (max-width: 1200px) {
    .manager-popup {
        padding: 100px 30px 40px;
        min-height: 350px
    }

    .manager-popup__photo {
        height: 150px;
        width: 150px;
        top: -75px
    }
}

@media (max-width: 992px) {
    .manager-popup {
        max-width: calc(100% - 30px)
    }

    .manager-popup .remodal-close {
        left: auto;
        right: 0;
        bottom: calc(100% + 16px)
    }
}

@media (max-width: 575.98px) {
    .estate-frame-link {
        left: 20px;
        bottom: 20px;
        z-index: 10
    }

    .open-frame__text {
        display: none !important
    }

    .manager-popup {
        padding: 79px 28px 48px;
        min-height: 280px;
        -webkit-border-radius: 28px;
        -moz-border-radius: 28px;
        border-radius: 28px
    }

    .manager-popup__photo {
        height: 90px;
        width: 90px;
        top: -45px
    }

    .manager-popup__desc {
        font-size: 18px
    }

    .manager-popup__btn {
        margin-top: 34px;
        font-size: 18px;
        line-height: 27px;
        padding: 15px 5px
    }
}
