.organization-cell__contacts a {
    color: #F08569;
}

.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0
}

[data-tippy-root] {
    max-width: calc(100vw - 10px)
}

.tippy-box {
    white-space: normal;
    outline: 0;
    -webkit-transition-property: visibility, opacity, -webkit-transform;
    transition-property: transform, visibility, opacity;
    transition-property: transform, visibility, opacity, -webkit-transform
}

.tippy-box[data-placement^=top] > .tippy-arrow {
    bottom: 0
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
    top: 0
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

.tippy-box[data-placement^=left] > .tippy-arrow {
    right: 0
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left
}

.tippy-box[data-placement^=right] > .tippy-arrow {
    left: 0
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right
}

.tippy-box[data-inertia][data-state=visible] {
    -webkit-transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11);
    transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333
}

.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1
}

:root {
    --zoomist-wrapper-bg-color: #efefef;
    --zoomist-slider-bg-color: rgba(255, 255, 255, .8);
    --zoomist-slider-border-radius: 0 0 4px 0;
    --zoomist-slider-padding-x: 20px;
    --zoomist-slider-padding-y: 20px;
    --zoomist-slider-track-color: #ddd;
    --zoomist-slider-track-color-hover: #ccc;
    --zoomist-slider-bar-size: 120px;
    --zoomist-slider-bar-side: 2px;
    --zoomist-slider-bar-border-radius: 2px;
    --zoomist-slider-bar-color: #666;
    --zoomist-slider-bar-color-hover: #444;
    --zoomist-slider-button-size: 12px;
    --zoomist-slider-button-color: #fff;
    --zoomist-zoomer-button-size: 48px;
    --zoomist-zoomer-button-color: rgba(255, 255, 255, .8);
    --zoomist-zoomer-button-color-hover: rgba(255, 255, 255, .9);
    --zoomist-zoomer-button-color-disabled: rgba(255, 255, 255, .8);
    --zoomist-zoomer-button-opacity-disabled: .7;
    --zoomist-zoomer-icon-size: 14px;
    --zoomist-zoomer-icon-color: #333;
    --zoomist-zoomer-icon-color-hover: #111;
    --zoomist-zoomer-icon-color-disabled: #999;
    --zoomist-modules-tranistion-duration: .3s
}

.zoomist-container, .zoomist-wrapper {
    position: relative;
    padding: 0 !important
}

.zoomist-container {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.zoomist-wrapper {
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--zoomist-wrapper-bg-color)
}

.zoomist-image {
    position: relative;
    max-width: none !important;
    max-height: none !important
}

.zoomist-slider {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    padding: var(--zoomist-slider-padding-y) var(--zoomist-slider-padding-x);
    background-color: var(--zoomist-slider-bg-color);
    border-radius: var(--zoomist-slider-border-radius)
}

.zoomist-slider:hover .zoomist-slider-wrapper {
    background-color: var(--zoomist-slider-track-color-hover)
}

.zoomist-slider:hover .zoomist-slider-bar {
    background-color: var(--zoomist-slider-bar-color-hover)
}

.zoomist-slider:hover .zoomist-slider-button:before {
    -webkit-box-shadow: 0 0 8px #0009;
    box-shadow: 0 0 8px #0009
}

.zoomist-slider-horizontal .zoomist-slider-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: var(--zoomist-slider-bar-size);
    height: var(--zoomist-slider-bar-side)
}

.zoomist-slider-horizontal .zoomist-slider-bar {
    top: 0;
    width: calc(var(--value) * 1%);
    height: 100%
}

.zoomist-slider-horizontal .zoomist-slider-button {
    left: calc(var(--value) * 1%)
}

.zoomist-slider-vertical .zoomist-slider-wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: var(--zoomist-slider-bar-side);
    height: var(--zoomist-slider-bar-size)
}

.zoomist-slider-vertical .zoomist-slider-bar {
    bottom: 0;
    width: 100%;
    height: calc(var(--value) * 1%)
}

.zoomist-slider-vertical .zoomist-slider-button {
    bottom: calc(var(--value) * 1%)
}

.zoomist-slider-bar, .zoomist-slider-wrapper {
    -webkit-transition: background-color var(--zoomist-modules-tranistion-duration);
    transition: background-color var(--zoomist-modules-tranistion-duration)
}

.zoomist-slider-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--zoomist-slider-track-color)
}

.zoomist-slider-bar {
    position: absolute;
    z-index: 0;
    left: 0;
    display: block;
    border-radius: var(--zoomist-slider-bar-border-radius);
    background-color: var(--zoomist-slider-bar-color)
}

.zoomist-slider-button {
    position: relative;
    z-index: 1;
    display: block;
    width: 0 !important;
    height: 0 !important
}

.zoomist-slider-button:before {
    content: "";
    position: absolute;
    left: calc(var(--zoomist-slider-button-size) * -.5);
    top: calc(var(--zoomist-slider-button-size) * -.5);
    width: var(--zoomist-slider-button-size);
    height: var(--zoomist-slider-button-size);
    display: block;
    background-color: var(--zoomist-slider-button-color, #fff);
    border-radius: 50%;
    -webkit-box-shadow: 0 0 4px #0006;
    box-shadow: 0 0 4px #0006;
    -webkit-transition: -webkit-box-shadow var(--zoomist-modules-tranistion-duration);
    transition: box-shadow var(--zoomist-modules-tranistion-duration);
    transition: box-shadow var(--zoomist-modules-tranistion-duration), -webkit-box-shadow var(--zoomist-modules-tranistion-duration)
}

.zoomist-zoomer {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    border-radius: 0 0 0 4px;
    overflow: hidden
}

.zoomist-zoomer-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: var(--zoomist-zoomer-button-size);
    height: var(--zoomist-zoomer-button-size);
    background: 0 0;
    background-color: var(--zoomist-zoomer-button-color);
    border: 0;
    -webkit-transition: background-color var(--zoomist-modules-tranistion-duration);
    transition: background-color var(--zoomist-modules-tranistion-duration);
    cursor: pointer
}

.zoomist-zoomer-button:hover {
    background-color: var(--zoomist-zoomer-button-color-hover)
}

.zoomist-zoomer-button:hover .zoomist-zoomer-icon {
    fill: var(--zoomist-zoomer-icon-color-hover)
}

.zoomist-zoomer-button.zoomist-zoomer-disabled {
    pointer-events: none;
    background-color: var(--zoomist-zoomer-button-color-disabled);
    opacity: var(--zoomist-zoomer-button-opacity-disabled)
}

.zoomist-zoomer-button.zoomist-zoomer-disabled .zoomist-zoomer-icon {
    fill: var(--zoomist-zoomer-icon-color-disabled)
}

.zoomist-zoomer-icon {
    width: var(--zoomist-zoomer-icon-size);
    height: var(--zoomist-zoomer-icon-size);
    fill: var(--zoomist-zoomer-icon-color);
    -webkit-transition: fill var(--zoomist-modules-tranistion-duration);
    transition: fill var(--zoomist-modules-tranistion-duration)
}

.header {
    position: relative;
    z-index: 4
}

.header__row {
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header__top {
    position: relative;
    z-index: 3
}

.footer .wrapper, .header .wrapper {
    padding: 0 24px
}

.header__contacts {
    display: none
}

.header__contacts span, .header__logo svg {
    display: block;
    -webkit-transition: .3s;
    transition: .3s
}

.header__contacts span {
    text-align: left
}

.menu-open .header__burger-sec span, .menu-open .header__contacts span, .sand-style-page .header__burger-sec span, .sand-style-page .header__contacts span {
    color: #566859
}

.header__contacts span + span {
    margin-top: 4px
}

.header__logo {
    padding-bottom: 5px
}

.header__logo a {
    display: block
}

.header__logo svg {
    fill: #f8eac9;
    height: 49px;
    width: 108px
}

.menu-open .header__logo svg, .sand-style-page .header__logo svg {
    fill: #566859
}

.header__burger-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__burger-sec button {
    width: 80px;
    display: block;
    height: 40px;
    margin-left: 8px;
    position: relative
}

.no-touch .header__burger-sec button:hover::before {
    background-color: #566859;
    border: 1px solid #566859
}

.no-touch .header__burger-sec button:hover i::after, .no-touch .header__burger-sec button:hover i::before {
    background-color: #f8eac9
}

.header__burger-sec button.is-active i::before {
    width: 17px;
    left: 32px;
    top: 19px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.header__burger-sec button.is-active i::after {
    width: 17px;
    left: 32px;
    top: 19px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.header__burger-sec button i {
    display: block;
    position: relative;
    width: 100%;
    height: 100%
}

.header__burger-sec button i::after, .header__burger-sec button i::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 1px;
    background-color: #f8eac9
}

.header__burger-sec button i::before {
    left: 33px;
    top: 15px;
    -webkit-transition: .3s;
    transition: .3s
}

.menu-open .header__burger-sec button i::after, .menu-open .header__burger-sec button i::before, .no-touch .main-menu__subscribe:hover::before, .sand-style-page .header__burger-sec button i::after, .sand-style-page .header__burger-sec button i::before {
    background-color: #566859
}

.header__burger-sec button i::after {
    left: 22px;
    top: 21px
}

.header__burger-sec button::before {
    top: 2px;
    border: 1px solid rgba(248, 234, 201, .1);
    height: 35px;
    border-radius: 100%;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg)
}

.menu-open .header__burger-sec button::before, .sand-style-page .header__burger-sec button::before {
    border: 1px solid rgba(42, 43, 43, .1)
}

.header__burger-sec span, .header__contacts span {
    color: #f8eac9;
    font-family: "Unbounded";
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 14px;
    letter-spacing: .05em
}

.header__burger-sec button i::after, .header__burger-sec button::before, .header__burger-sec span, .main-menu, .main-menu__list a {
    -webkit-transition: .3s;
    transition: .3s
}

.main-menu {
    position: fixed;
    z-index: 2;
    padding-top: 110px;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    top: 0;
    left: 0;
    background-color: #f8eac9
}

.header__burger-sec button::before, .main-menu::after, .main-menu__list a::before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%
}

.main-menu::after {
    top: 0;
    height: 100%;
    background-image: url(../../../images/before.png);
    mix-blend-mode: multiply;
    z-index: 2
}

.main-menu--open {
    opacity: 1;
    pointer-events: all
}

.main-menu__list {
    display: grid;
    grid-template-columns:auto auto;
    grid-gap: 20px 6px
}

.main-menu__list a {
    font-size: 14px;
    line-height: 19.6px;
    text-align: left;
    position: relative
}

.main-menu__list a::before {
    background-color: #f08569;
    bottom: -5px;
    opacity: 0;
    height: 3px;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .main-menu__list a:hover {
    color: #f08569
}

.no-touch .main-menu__list a:hover::before {
    opacity: 1
}

.main-menu__contacts {
    margin-top: 63px
}

.footer__contacts span, .main-menu__contacts span, .main-menu__list a, .main-menu__subscribe {
    font-family: "Unbounded";
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase
}

.footer__contacts span, .main-menu__contacts span {
    display: block;
    font-size: 12px;
    line-height: 16.8px;
    text-align: left
}

.footer__contacts span + span, .main-menu__contacts span + span {
    margin-top: 8px
}

.main-menu__subscribe {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    white-space: pre-line;
    width: 200px;
    height: 100px;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s
}

.footer__subscribe::before, .main-menu__subscribe::before {
    position: absolute;
    left: 0;
    top: 2px;
    content: "";
    width: 100%;
    border: 1px solid rgba(42, 43, 43, .1);
    height: 95px;
    border-radius: 100%;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1
}

.no-touch .footer__subscribe:hover, .no-touch .main-menu__subscribe:hover {
    color: #f8eac9
}

.main-menu__social, .main-menu__subscribe {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.main-menu__calls, .main-menu__social, .main-menu__social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.main-menu__social a {
    height: 64px;
    width: 48px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
    border-radius: 32px;
    border: 1px solid rgba(42, 43, 43, .1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .3s;
    transition: .3s
}

.footer__social a svg, .main-menu__social a svg {
    width: 20px;
    height: 20px;
    fill: #566859;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .footer__subscribe:hover::before, .no-touch .main-menu__social a:hover {
    background-color: #566859
}

.no-touch .footer__social a:hover svg, .no-touch .main-menu__social a:hover svg {
    fill: #f8eac9
}

.main-menu__social a + a {
    margin-left: 8px
}

.main-menu__phones a {
    display: block;
    font-family: "Unbounded";
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: left;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .footer__list a:hover, .no-touch .main-menu__phones a:hover {
    color: #f08569
}

.main-menu__phones a + a {
    margin-top: 13px
}

.main-menu__calls {
    margin-top: 32px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer {
    background-color: #f8eac9;
    padding-bottom: 33px;
    padding-top: 69px;
    -webkit-mask-image: url(../../../images/components/offers-section/bg-shape.svg);
    mask-image: url(../../../images/components/offers-section/bg-shape.svg);
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: cover;
    mask-size: cover
}

.footer__logo {
    display: none
}

.footer__logo-img svg {
    width: 163px;
    height: 48px;
    fill: #566859
}

.footer__contacts {
    margin-top: 33px
}

.footer__list {
    display: grid;
    grid-template-columns:auto auto;
    grid-gap: 17px 0;
    max-width: 90%
}

.footer__list a, .footer__subscribe {
    font-family: "Unbounded";
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: left;
    -webkit-transition: .3s;
    transition: .3s
}

.footer__subscribe {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    white-space: pre-line;
    width: 200px;
    height: 100px;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.footer__social, .footer__subscribe {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__calls, .footer__social, .footer__social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.footer__phones a, .footer__social a {
    -webkit-transition: .3s;
    transition: .3s
}

.footer__social a {
    height: 64px;
    width: 48px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48px;
    flex: 0 0 48px;
    border-radius: 32px;
    border: 1px solid rgba(42, 43, 43, .1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.modal-window .pane, .no-touch .footer__social a:hover {
    background-color: #566859
}

.footer__social a + a {
    margin-left: 8px
}

.footer__phones a {
    display: block;
    font-family: "Unbounded";
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: left
}

.no-touch .footer__phones a:hover {
    color: #f08569
}

.footer__phones a + a {
    margin-top: 13px
}

.footer__calls {
    margin-top: 46px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer__bottom {
    margin-top: 49px
}

.footer__bottom-right {
    margin-top: 30px
}

.footer__bottom-right svg {
    width: 103px;
    height: 10px;
    opacity: .3;
    fill: #566859;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .footer__bottom-right svg:hover {
    fill: #f08569;
    opacity: 1
}

.footer__copyright, .footer__politic {
    font-family: "Unbounded";
    font-size: 8px;
    font-weight: 400;
    line-height: 11.2px;
    letter-spacing: .05em;
    text-align: left;
    opacity: .3;
    text-transform: uppercase
}

.footer__politic {
    margin-top: 8px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .footer__politic:hover {
    color: #f08569;
    opacity: 1
}

.modal-window .pane {
    padding-top: 56px;
    max-width: 556px
}

.pane-window__form {
    padding: 0 32px 48px
}

.pane-window__form-title {
    font-family: "Unbounded";
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: .05em;
    text-align: center;
    text-transform: uppercase;
    color: #f8eac9;
    margin-bottom: 40px
}

.pane-window__cell {
    position: relative
}

.organization-form__cell + .pane-window__cell, .pane-window__cell + .pane-window__cell {
    margin-top: 24px
}

.organization-form__cell input, .pane-window__cell input {
    font-family: "Wix Madefor Display";
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    background-color: transparent;
    width: 100%;
    text-align: left;
    height: 48px;
    border: 1px solid rgba(248, 234, 201, .1);
    border-radius: 50px;
    color: #f8eac9;
    padding: 0 23px;
    outline: 0
}

.pane-window__cell input:focus {
    border: 1px solid rgba(248, 234, 201, .1) !important
}

.pane-window__cell.error input {
    border: 1px solid #f06969
}

.pane-window__cell.error input:valid + label {
    border: 1px solid #f06969
}

.pane-window__cell .invalid-feedback {
    position: absolute;
    color: #f06969;
    left: 0;
    bottom: -16px;
    text-transform: uppercase;
    font-size: 8px;
    font-family: "Unbounded";
    font-weight: 400;
    line-height: 11.2px;
    letter-spacing: .05em;
    text-align: left
}

.pane-window__cell label {
    position: absolute;
    left: 24px;
    font-family: "Wix Madefor Display";
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    top: 11px;
    color: rgba(248, 234, 201, .7);
    -webkit-transition: .3s;
    transition: .3s;
    pointer-events: none;
    border-radius: 50px;
    border: 1px solid transparent;
    background-color: transparent
}

.pane-window__cell input:valid + label {
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid rgba(248, 234, 201, .1);
    background-color: #566859;
    top: -8px
}

.pane-window__cell input:focus + label {
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid rgba(248, 234, 201, .1);
    background-color: #566859;
    top: -8px
}

.pane-window__cell button {
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    background-color: #f08569;
    display: block;
    padding: 17px 24px;
    width: 100%;
    border-radius: 64px;
    position: relative;
    overflow: hidden
}

.pane-window__cell button::before {
    position: absolute;
    left: 50%;
    z-index: 0;
    top: 100%;
    content: "";
    opacity: .1;
    width: 150%;
    height: 200%;
    background-color: #f8eac9;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .container-pop-item__right-btn a:hover::before, .no-touch .container-pop-item__right-btn button:hover::before, .no-touch .organization-form__cell button:hover::before, .no-touch .pane-window__cell button:hover::before, .no-touch .top-page-listing__item:hover::before {
    left: -25%;
    top: -25%
}

.pane-window__cell .politic {
    font-family: "Wix Madefor Display";
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    color: rgba(248, 234, 201, .5);
    margin-top: 24px
}

.organization-form__cell .politic a, .pane-window__cell .politic a {
    border-bottom: 1px solid rgba(248, 234, 201, .5);
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .organization-form__cell .politic a:hover, .no-touch .pane-window__cell .politic a:hover {
    color: #f8eac9;
    border-bottom: 1px solid #f8eac9
}

.pane-window__ready {
    height: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pane-window__cell-ready svg {
    height: 64px;
    width: 64px;
    display: block;
    margin: 0 auto;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px
}

.pane-window__cell button, .pane-window__cell-ready-title {
    font-family: "Unbounded";
    letter-spacing: .05em;
    text-align: center;
    color: #f8eac9;
    text-transform: uppercase
}

.pane-window__cell-ready-title {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-top: 40px
}

.pane-window__cell-ready-desc {
    font-family: "Wix Madefor Display";
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    color: #f8eac9;
    margin: 16px auto 0
}

.cupertino-pane-wrapper .move {
    width: 32px;
    height: 3px;
    background-color: #f8eac9;
    opacity: .5
}

.cupertino-pane-wrapper .draggable {
    height: 50px;
    padding: 24px
}

.modal-item .pane {
    background-color: #f8eac9;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 1290px
}

.modal-item .pane .move {
    background-color: #566859
}

.modal-item .pane-window__callback::-webkit-scrollbar {
    width: 0
}

.modal-item .destroy-button {
    background-color: #566859 !important
}

.modal-item .destroy-button svg {
    fill: #f8eac9 !important
}

.container-pop-item {
    display: grid;
    grid-template-columns:repeat(1, 1fr);
    grid-gap: 32px;
    cursor: default
}

.container-pop-item__left {
    overflow: hidden;
    padding: 40px 32px 20px
}

.container-pop-item__left .modal__slide {
    height: 62vw;
    overflow: hidden;
    border-radius: 32px;
    max-height: 471px
}

.container-pop-item__left .modal__slide img, .organization-section__cell-picture img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.container-pop-item__right {
    margin-top: 18px
}

.container-pop-item__right-cell {
    background-color: #f8eac9;
    padding: 0 32px
}

.container-pop-item__right-cell + .container-pop-item__right-cell {
    margin-top: 32px
}

.container-pop-item__right-btn a, .container-pop-item__right-btn button, .container-pop-item__right-title {
    font-family: "Unbounded";
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-align: left
}

.container-pop-item__right-price, .container-pop-item__right-price span {
    font-family: "Unbounded";
    font-weight: 400;
    letter-spacing: .05em;
    text-align: left
}

.container-pop-item__right-price {
    font-size: 19px;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-top: 20px
}

.container-pop-item__right-price span {
    font-size: 10px;
    line-height: 10px;
    height: 10px;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    color: #f08569;
    margin-left: 12px;
    top: -4px
}

.container-pop-item__right-price span svg {
    position: absolute;
    left: 0;
    top: 0;
    stroke: #f08569
}

.container-pop-item__right-text {
    font-family: "Wix Madefor Display";
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    margin-top: 26px
}

.container-pop-item__right-text p + p {
    margin-top: 12px
}

.container-pop-item__right-btn a, .container-pop-item__right-btn button {
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    width: 100%;
    color: #f8eac9;
    background-color: #566859;
    padding: 17px 24px;
    display: block;
    border-radius: 100px;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    margin-top: 24px
}

.container-pop-item__right-btn a span, .container-pop-item__right-btn button span, .tabs__btn span {
    position: relative;
    z-index: 2
}

.no-touch .container-pop-item__right-btn a:hover, .no-touch .container-pop-item__right-btn button:hover {
    color: #f8eac9
}

.container-pop-item__right-btn a::before, .container-pop-item__right-btn button::before {
    position: absolute;
    left: 50%;
    z-index: 0;
    top: 100%;
    content: "";
    width: 150%;
    height: 150%;
    background-color: rgba(248, 234, 201, .1);
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s
}

.container-pop-item__right-char {
    margin-top: 32px;
    padding-bottom: 50px
}

.container-pop-item__right-char-cell {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    grid-gap: 32px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #5668591a;
    font-family: "Wix Madefor Display";
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: left
}

.container-pop-item__right-char-cell + .container-pop-item__right-char-cell {
    margin-top: 16px
}

.container-pop-item__right-char-cell-type {
    opacity: .6
}

.destroy-button {
    display: none
}

.modal__slider-pagination {
    position: relative;
    width: 162px;
    margin: 0 auto;
    height: 15px
}

.modal__slider-pagination::before {
    position: absolute;
    left: 2px;
    top: 7px;
    content: "";
    width: calc(100% - 4px);
    height: 1px;
    background-color: rgba(42, 43, 43, .1)
}

.modal__slider-pagination .swiper-scrollbar-drag {
    background-color: initial;
    background-image: url(../../../images/drag-star-dark.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat
}

.top-page {
    margin-top: 48px;
    position: relative;
    padding: 0 24px;
    z-index: 2
}

.type-page + .top-page {
    margin-top: 17px
}

.top-page__label-page {
    font-family: "Wix Madefor Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin: 32px auto 0
}

.top-page__title {
    text-align: center;
    font-family: "Unbounded";
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: .1em;
    color: #f8eac9;
    text-transform: uppercase
}

.sand-style-page .top-page__title {
    color: #566859
}

.top-page-listing {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    margin-top: 48px
}

.top-page + .top-page-listing {
    margin-top: 31px
}

.top-page-listing__row {
    overflow: auto
}

.top-page-listing__row::-webkit-scrollbar {
    width: 0;
    display: none;
    height: 0
}

.top-page-listing__list, .top-page-listing__row .wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.top-page-listing__row .wrapper {
    max-width: initial
}

.top-page-listing__list {
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.top-page-listing__item {
    font-family: "Unbounded";
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 14px;
    letter-spacing: .05em;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #f8eac9;
    padding: 12px 15px;
    border-radius: 50px;
    border: 1px solid rgba(248, 234, 201, .1);
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.top-page-listing__item::before {
    position: absolute;
    left: 50%;
    z-index: -1;
    top: 100%;
    content: "";
    width: 150%;
    height: 200%;
    background-color: #f8eac9;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .top-page-listing__item:hover {
    color: #294e3b
}

.top-page-listing__item + .top-page-listing__item {
    margin-left: 8px
}

.top-page-listing__item--current {
    background-color: #f8eac9;
    color: #294e3b
}

.top-page-subtitle {
    margin: 16px auto 0
}

.top-page-subtitle__title, .top-page-subtitle__title-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto
}

.top-page-subtitle__title {
    font-family: "Unbounded";
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center;
    position: relative
}

.top-page-subtitle__title-text {
    -webkit-text-stroke: 2px #f08569;
    display: block
}

.top-page-subtitle__title-pseudo {
    position: absolute;
    left: 0;
    top: 0;
    color: #f8eac9;
    z-index: 2
}

.type-page {
    margin-top: 47px
}

.type-page__title {
    font-family: "Unbounded";
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: .05em;
    color: #f08569;
    text-transform: uppercase;
    text-align: center
}

.organization-section {
    margin-top: 32px;
    position: relative;
    z-index: 2
}

.organization-section__cell + .organization-section__cell {
    margin-top: 16px
}

.organization-section__cell-picture {
    height: 91.5vw;
    border-radius: 32px;
    margin: 32px auto 0;
    overflow: hidden
}

.organization-cell {
    min-height: 225px;
    padding: 31px;
    border: 1px solid rgba(42, 43, 43, .1);
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.organization-cell--bg-01 {
    background-image: url(../../../images/components/organization-section/bg-01.svg);
    background-repeat: no-repeat;
    background-position: bottom -66px right -89px
}

.organization-cell--bg-02, .organization-cell--bg-03 {
    background-image: url(../../../images/components/organization-section/bg-02.svg);
    background-repeat: no-repeat;
    background-position: bottom -16px right -55px
}

.organization-cell--bg-03 {
    background-image: url(../../../images/components/organization-section/bg-03.svg);
    background-position: bottom -16px right -94px
}

.organization-cell--bg-04, .organization-cell--bg-05 {
    background-image: url(../../../images/components/organization-section/bg-04.svg);
    background-repeat: no-repeat;
    background-position: top -133px right -73px
}

.organization-cell--bg-05 {
    background-image: url(../../../images/components/organization-section/bg-05.svg);
    background-position: top -215px right -236px
}

.organization-cell__txt-desc, .organization-form__cell label {
    font-family: "Wix Madefor Display";
    font-size: 14px;
    font-weight: 400
}

.organization-cell__txt-desc {
    line-height: 22.4px;
    text-align: left;
    margin-top: 17px;
    padding-left: 27px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    position: relative
}

.organization-cell__txt-desc::before {
    position: absolute;
    left: 2px;
    top: 10px;
    content: "";
    width: 16px;
    height: 2px;
    background-color: #f08569
}

.organization-cell__txt-desc-sub {
    font-family: "Wix Madefor Display";
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #f08569;
    margin-top: 17px
}

.organization-cell__price {
    font-size: 14px;
    line-height: 19.6px;
    color: #f08569;
    margin-top: 4px
}

.organization-cell__contacts-link, .organization-cell__contacts-person, .organization-cell__price, .organization-cell__title {
    text-transform: uppercase;
    font-family: "Unbounded";
    font-weight: 400;
    letter-spacing: .05em;
    text-align: left
}

.organization-cell__title {
    font-size: 14px;
    line-height: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.organization-cell__contacts-link, .organization-cell__contacts-person {
    font-size: 10px;
    line-height: 14px
}

.organization-cell__contacts-link {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #f08569;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s
}

.organization-cell__contacts-link::before {
    position: absolute;
    background-color: #f08569;
    left: 0;
    bottom: -3px;
    content: "";
    width: 100%;
    opacity: 0;
    height: 1px;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .organization-cell__contacts-link:hover::before {
    opacity: 1
}

.organization-cell__contacts-link + .organization-cell__contacts-link {
    margin-top: 4px
}

.organization-cell__contacts-person {
    margin-top: 12px
}

.organization-form {
    background-color: #566859;
    border-radius: 32px;
    margin: 16px auto 0;
    padding: 40px 32px
}

.organization-form__title {
    font-family: "Unbounded";
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: .05em;
    text-align: center;
    color: #f8eac9
}

.organization-form__row {
    margin-top: 24px
}

.organization-form__cell {
    position: relative
}

.organization-form__cell + .organization-form__cell {
    margin-top: 16px
}

.organization-form__cell label {
    position: absolute;
    left: 24px;
    line-height: 23px;
    top: 13px;
    color: rgba(248, 234, 201, .7);
    -webkit-transition: .3s;
    transition: .3s;
    pointer-events: none;
    border-radius: 50px;
    border: 1px solid transparent;
    background-color: transparent
}

.organization-form__cell input::placeholder {
    color: transparent;
    opacity: 0;
}

.organization-form__cell input:not(.empty) + label {
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid rgba(248, 234, 201, .1);
    background-color: #566859;
    top: -8px
}
.organization-form__cell input:not(.empty):invalid {
    border: 1px solid #f06969;
}
.organization-form__cell input:not(.empty):invalid + label {
    border: 1px solid #f06969 !important;
    color: #f06969;
}
.organization-form__cell input.empty + label {

}

.organization-form__cell input:focus + label {
    font-size: 8px;
    line-height: 11px;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid rgba(248, 234, 201, .1);
    background-color: #566859;
    top: -8px
}

.organization-form__cell button {
    font-family: "Unbounded";
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: .05em;
    text-align: center;
    background-color: #f08569;
    text-transform: uppercase;
    display: block;
    padding: 17px 24px;
    width: 100%;
    border-radius: 64px;
    color: #ffffff;
    /*color: #f8eac9;*/
    position: relative;
    overflow: hidden
}

.organization-form__cell button::before {
    position: absolute;
    left: 50%;
    z-index: 0;
    top: 100%;
    content: "";
    opacity: .1;
    width: 150%;
    height: 200%;
    background-color: #f8eac9;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s
}

.organization-form__cell .politic {
    font-family: "Wix Madefor Display";
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    /*color: rgba(248, 234, 201, .5);*/
    color: #F8EAC9;
    margin-top: 24px
}

.map-arenda {
    margin: 31px auto 0;
    position: relative;
    z-index: 2
}

.organization-section + .map-arenda {
    margin: 64px auto
}

.map-arenda__container {
    border-radius: 32px;
    background-color: #fff6e2;
    height: 160vw;
    overflow: hidden
}

.map-arenda__title + .map-arenda__container {
    margin-top: 30px
}

.map-arenda__container img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center
}

.custom-zoomist-zoomer__btn span, .map-arenda__container img, .map-arenda__container svg, .tippy-box__image img {
    width: 100%;
    height: 100%;
    display: block
}

.map-arenda__title {
    font-family: "Unbounded";
    font-size: 18px;
    font-weight: 400;
    line-height: 25.2px;
    text-transform: uppercase;
    letter-spacing: .1em;
    text-align: center
}

.map-arenda__warning {
    padding: 0 10px;
    margin: 32px auto 0;
    max-width: 450px;
    font-family: "Wix Madefor Display";
    font-size: 14px;
    font-weight: 400;
    opacity: .5;
    line-height: 22px;
    text-align: center
}

.tabs {
    position: relative
}

.tabs__pane {
    display: none;
    overflow: hidden
}

.tabs__pane_show {
    display: block
}

.tabs__nav {
    position: absolute;
    left: 0;
    bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    z-index: 3
}

.tabs__btn {
    font-family: "Unbounded";
    font-size: 10px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: .05em;
    text-align: center;
    border-radius: 50px;
    width: 42px;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
    -webkit-transition: .3s;
    transition: .3s;
    background-color: #f8eac9
}

.tabs__btn::before, body::after {
    position: absolute;
    content: "";
    z-index: 1
}

.tabs__btn::before {
    left: 50%;
    top: 100%;
    width: 150%;
    height: 200%;
    background-color: #f08569;
    border-radius: 50%
}

.no-touch .tabs__btn:hover {
    color: #fff
}

.no-touch .custom-zoomist-zoomer__btn:hover::before, .no-touch .tabs__btn:hover::before {
    left: -25%;
    top: -25%
}

.tabs__btn--active {
    background-color: #f08569;
    color: #fff
}

.tabs__btn + .tabs__btn {
    margin-left: 8px
}

.j-item-map, .tabs__btn::before {
    -webkit-transition: .3s;
    transition: .3s
}

.j-item-map {
    fill: transparent;
    position: relative;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    stroke: transparent;
    stroke-width: 2px;
    outline: 0
}

.no-touch .j-item-map:hover {
    stroke: #f08569;
    fill: #f08569
}

.tippy-box {
    color: #f8eac9;
    background-color: #566859;
    position: relative;
    top: -180px;
    padding: 8px 16px 8px 8px;
    font-family: "Unbounded";
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    letter-spacing: .05em;
    text-align: left;
    border-radius: 24px;
    text-transform: uppercase;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content
}

.tippy-box .min-height, .tippy-box .tippy-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.tippy-box .min-height {
    height: 64px;
    width: 100%;
    padding-left: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.tippy-box::before {
    background-image: url(../../../images/components/map-arenda/subtract.svg);
    width: 34px;
    height: 16px;
    background-size: contain;
    background-position: center top;
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -17px;
    bottom: -15px
}

.tippy-box__image {
    height: 64px;
    width: 64px;
    background-color: #fff;
    padding: 6px;
    border-radius: 16px;
    margin-right: 16px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 64px;
    flex: 0 0 64px
}

.tippy-box__image img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    border-radius: 12px
}

.tippy-box .tippy-content {
    padding: 0
}

.zoomist-zoomer-reset {
    display: none
}

.zoomist-wrapper {
    background-color: initial
}

.custom-zoomist-zoomer, .custom-zoomist-zoomer__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.custom-zoomist-zoomer {
    position: absolute;
    left: 50%;
    width: 88px;
    margin-left: -44px;
    margin-top: 24px;
    z-index: 2;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.custom-zoomist-zoomer__btn {
    width: 40px;
    height: 32px;
    border-radius: 25px;
    overflow: hidden
}

.custom-zoomist-zoomer__btn span::before, .custom-zoomist-zoomer__btn.custom-zoomer-in span::after {
    position: absolute;
    left: 50%;
    margin-top: -6px;
    top: 50%;
    margin-left: -1px;
    -webkit-transition: .3s;
    transition: .3s;
    content: "";
    height: 12px;
    width: 2px;
    background-color: #566859
}

.custom-zoomist-zoomer__btn span {
    position: relative;
    z-index: 2
}

.custom-zoomist-zoomer__btn span::before {
    margin-left: -6px;
    margin-top: -1px;
    width: 12px;
    height: 2px
}

.custom-zoomist-zoomer__btn::before {
    position: absolute;
    left: 50%;
    z-index: 1;
    top: 100%;
    content: "";
    width: 150%;
    height: 200%;
    background-color: #f08569;
    border-radius: 50%;
    -webkit-transition: .3s;
    transition: .3s
}

.no-touch .custom-zoomist-zoomer__btn:hover {
    color: #fff
}

.no-touch .custom-zoomist-zoomer__btn:hover span::after, .no-touch .custom-zoomist-zoomer__btn:hover span::before {
    background-color: #fff
}

.custom-zoomist-zoomer__btn + .custom-zoomist-zoomer__btn {
    margin-left: 8px
}

.custom-zoomist-zoomer__btn, body {
    background-color: #f8eac9;
    position: relative
}

body::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../../images/before.png);
    mix-blend-mode: multiply
}

@media only screen and (min-width: 768px) {
    .header__row {
        height: 72px
    }

    .header .wrapper {
        padding: 0 40px
    }

    .header__contacts {
        display: block;
        width: 260px;
        padding-bottom: 4px
    }

    .header__logo {
        padding-bottom: 0
    }

    .header__logo svg {
        height: 60px;
        width: 135px
    }

    .header__burger-sec {
        width: 260px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .main-menu {
        padding-top: 153px
    }

    .main-menu .wrapper {
        padding: 0 64px
    }

    .main-menu__list {
        grid-gap: 25px 0
    }

    .main-menu__list a {
        font-size: 24px;
        letter-spacing: .1em;
        line-height: 33px
    }

    .main-menu__contacts {
        display: none
    }

    .main-menu__subscribe {
        margin-top: 32px;
        font-size: 12px;
        line-height: 17px;
        width: 240px;
        height: 120px
    }

    .main-menu__subscribe::before {
        height: 105px;
        top: 7px
    }

    .main-menu__social {
        margin-left: 64px
    }

    .footer__list a, .main-menu__phones a, .pane-window__cell button {
        font-size: 14px;
        line-height: 20px
    }

    .main-menu__phones a + a {
        margin-top: 16px
    }

    .main-menu__calls {
        margin-top: 80px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .footer {
        padding-bottom: 30px;
        padding-top: 80px
    }

    .footer .wrapper {
        padding: 0 40px
    }

    .footer__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .footer__list {
        grid-gap: 20px 69px;
        max-width: initial
    }

    .footer__subscribe {
        margin-top: 32px
    }

    .footer__social {
        margin-left: 16px
    }

    .footer__calls {
        margin-top: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .footer__bottom {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 33px
    }

    .footer__bottom, .footer__bottom-left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .footer__bottom-right {
        margin-top: 0
    }

    .footer__politic {
        margin-top: 0;
        margin-left: 24px
    }

    .modal-window .pane {
        border-radius: 64px
    }

    .organization-form__cell input, .pane-window__cell input {
        height: 64px;
        font-size: 16px;
        line-height: 23px;
        padding: 0 31px
    }

    .pane-window__cell label {
        left: 32px;
        top: 20px;
        font-size: 16px;
        line-height: 23px
    }

    .pane-window__cell button {
        padding: 22px 39px
    }

    .pane-window__cell .politic {
        margin-top: 8px
    }

    .modal-item .pane {
        border-radius: 48px 48px 0 0
    }

    .modal-item .pane .draggable {
        top: 6px
    }

    .modal-item .pane .destroy-button {
        display: none
    }

    .container-pop-item__left .modal__slider {
        max-width: 512px;
        margin: 0 auto
    }

    .container-pop-item__left .modal__slide {
        border-radius: 48px
    }

    .container-pop-item__right {
        max-width: 512px;
        margin: 41px auto 0
    }

    .container-pop-item__right-cell {
        padding: 0
    }

    .container-pop-item__right-cell + .container-pop-item__right-cell {
        margin-top: 53px
    }

    .container-pop-item__right-title {
        font-size: 16px;
        line-height: 22px
    }

    .container-pop-item__right-price {
        font-size: 24px;
        line-height: 33px;
        margin-top: 17px;
        letter-spacing: .1em
    }

    .container-pop-item__right-price span {
        margin-left: 10px;
        font-size: 12px;
        line-height: 12px;
        height: 14px;
        top: -3px
    }

    .container-pop-item__right-text {
        font-size: 16px;
        line-height: 24px;
        margin-top: 32px
    }

    .container-pop-item__right-btn a, .container-pop-item__right-btn button {
        margin-top: 16px;
        font-size: 14px;
        line-height: 20px;
        padding: 22px
    }

    .container-pop-item__right-char-cell {
        font-size: 18px;
        line-height: 27px
    }

    .destroy-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 64px !important;
        width: 64px !important;
        background-color: #f8eac9;
        border-radius: 16px !important;
        right: -32px !important;
        top: 25px !important
    }

    .modal-pane .destroy-button {
        top: -16px !important
    }

    .destroy-button svg {
        width: 40px !important;
        height: 40px !important;
        fill: #566859
    }

    .modal__slider-pagination {
        height: 24px;
        width: 320px
    }

    .modal__slider-pagination::before {
        height: 2;
        top: 11px
    }

    .top-page {
        margin-top: 64px
    }

    .type-page + .top-page {
        margin-top: 24px
    }

    .top-page__label-page {
        max-width: 540px;
        margin: 40px auto 0
    }

    .top-page__title {
        font-size: 28px;
        line-height: 39px
    }

    .top-page-listing {
        margin-top: 64px
    }

    .top-page + .top-page-listing {
        margin-top: 40px
    }

    .top-page-listing__row .wrapper {
        width: 100%;
        overflow: hidden;
        max-width: 1440px
    }

    .top-page-listing__list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: -8px
    }

    .top-page-listing__list .top-page-listing__item {
        margin-bottom: 8px
    }

    .top-page-subtitle {
        margin: 24px auto 0;
        max-width: 590px
    }

    .top-page-subtitle__title {
        font-size: 24px;
        line-height: 34px
    }

    .type-page {
        margin-top: 64px
    }

    .type-page__title {
        font-size: 12px;
        line-height: 17px
    }

    .organization-section {
        margin-top: 40px;
        margin-bottom: 15px
    }

    .organization-section__cell-picture {
        border-radius: 48px;
        margin: 72px auto 0;
        height: 44.6vw;
        max-height: 600px
    }

    .organization-cell {
        border-radius: 40px;
        padding: 39px;
        min-height: 236px
    }

    .organization-cell--bg-01 {
        background-image: url(../../../images/components/organization-section/bg-01-tablet.svg);
        background-position: bottom -102px right -67px
    }

    .organization-cell--bg-02 {
        background-image: url(../../../images/components/organization-section/bg-02-tablet.svg);
        background-position: bottom -34px right -46px
    }

    .organization-cell--bg-03 {
        background-image: url(../../../images/components/organization-section/bg-03-tablet.svg);
        background-position: bottom -61px right -74px
    }

    .organization-cell--bg-04 {
        background-image: url(../../../images/components/organization-section/bg-04-tablet.svg);
        background-position: top 102px right -165px
    }

    .organization-cell--bg-05 {
        background-position: top -199px right -172px
    }

    .organization-cell__txt-desc, .organization-cell__txt-desc-sub {
        margin-top: 24px
    }

    .organization-cell__txt-desc::before {
        top: 13px;
        left: 4px
    }

    .organization-cell__price {
        font-size: 16px;
        line-height: 22.4px;
        margin-top: 8px
    }

    .organization-cell__title, .organization-form__cell label {
        font-size: 16px;
        line-height: 23px
    }

    .organization-cell__contacts-link, .organization-cell__contacts-person {
        font-size: 12px;
        line-height: 17px
    }

    .organization-form {
        border-radius: 48px;
        padding: 40px
    }

    .organization-form__title {
        font-size: 16px;
        line-height: 22px
    }

    .organization-form__row {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        grid-gap: 16px
    }

    .organization-form__cell--full {
        grid-column: 2 span/auto
    }

    .organization-form__cell + .organization-form__cell {
        margin-top: 0
    }

    .organization-form__cell label {
        left: 32px;
        top: 19px
    }

    .organization-form__cell button {
        font-size: 14px;
        padding: 22px 39px;
        line-height: 20px
    }

    .organization-form__cell .politic {
        margin-top: 8px
    }

    .map-arenda {
        margin: 40px auto 13px
    }

    .organization-section + .map-arenda {
        margin: 72px auto
    }

    .map-arenda__container {
        border-radius: 48px;
        height: 800px
    }

    .map-arenda__title {
        font-size: 24px;
        line-height: 34px
    }

    .map-arenda__warning {
        display: none
    }

    .tabs__nav {
        bottom: 32px
    }

    .tabs__btn {
        width: initial;
        padding: 13px 26px;
        font-size: 14px;
        line-height: 21px
    }

    .custom-zoomist-zoomer__btn + .custom-zoomist-zoomer__btn, .tabs__btn + .tabs__btn {
        margin-left: 16px
    }

    .custom-zoomist-zoomer {
        margin-top: 32px;
        width: 144px;
        margin-left: -72px
    }

    .custom-zoomist-zoomer__btn {
        height: 48px;
        width: 64px
    }
}

@media only screen and (min-width: 1361px) {
    .header__row {
        height: 96px
    }

    .header .wrapper {
        padding: 0 64px
    }

    .header__burger-sec span, .header__contacts span {
        font-size: 12px;
        line-height: 17px
    }

    .header__contacts span + span {
        margin-top: 8px
    }

    .header__logo svg {
        height: 70px;
        width: 163px
    }

    .header__burger-sec button {
        width: 128px;
        height: 64px;
        margin-left: 16px;
        top: 7px
    }

    .header__burger-sec button.is-active i::after, .header__burger-sec button.is-active i::before {
        width: 24px;
        left: 50px;
        top: 31px
    }

    .header__burger-sec button i::before {
        height: 2px;
        width: 40px;
        left: 52px;
        top: 27px
    }

    .header__burger-sec button i::after {
        height: 2px;
        width: 40px;
        left: 36px;
        top: 36px
    }

    .header__burger-sec button::before {
        height: 58px
    }

    .header__burger-sec span {
        position: relative;
        top: 7px
    }

    .main-menu {
        padding-top: 225px
    }

    .main-menu .wrapper {
        max-width: 1328px;
        margin: 0 auto
    }

    .main-menu__row, .modal-item .pane .destroy-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .main-menu__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .main-menu__list {
        grid-gap: 40px 156px
    }

    .main-menu__list a {
        font-size: 32px;
        line-height: 45px
    }

    .main-menu__social {
        margin-left: 0;
        margin-top: 30px
    }

    .main-menu__calls {
        display: block;
        margin-top: 0
    }

    .footer {
        padding-bottom: 64px;
        padding-top: 140px
    }

    .footer .wrapper {
        padding: 0 64px
    }

    .footer__logo {
        display: block
    }

    .footer__top {
        display: grid;
        grid-template-columns:370px auto 290px;
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        grid-gap: 50px
    }

    .footer__list {
        grid-gap: 20px 50px
    }

    .footer__subscribe {
        font-size: 12px;
        line-height: 17px;
        width: 240px;
        height: 120px
    }

    .footer__subscribe::before {
        height: 105px;
        top: 7px
    }

    .footer__social {
        margin-left: 24px
    }

    .footer__bottom {
        margin-top: 63px
    }

    .footer__bottom-right svg {
        width: 145px;
        height: 14px
    }

    .footer__copyright, .footer__politic {
        font-size: 10px;
        line-height: 14px
    }

    .modal-window .pane {
        padding-top: 64px
    }

    .pane-window__form {
        padding: 0 64px 64px
    }

    .pane-window__cell .politic {
        margin-top: 40px
    }

    .pane-window__ready {
        padding: 0 64px 64px;
        height: 446px
    }

    .pane-window__cell-ready-title {
        font-size: 20px;
        line-height: 28px;
        margin-top: 40px
    }

    .pane-window__cell-ready-desc {
        font-size: 18px;
        line-height: 29px;
        max-width: 390px
    }

    .modal-item .pane {
        background-color: transparent;
        padding-top: 0
    }

    .modal-item .pane .destroy-button {
        top: 25px
    }

    .container-pop-item {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        grid-gap: 32px;
        padding: 50px 0
    }

    .container-pop-item__left {
        padding: 0;
        margin-top: 0
    }

    .container-pop-item__left .modal__slider {
        max-width: 100%
    }

    .container-pop-item__left .modal__slider .swiper-wrapper {
        display: block
    }

    .container-pop-item__left .modal__slide + .modal__slide, .container-pop-item__right-btn a, .container-pop-item__right-btn button, .container-pop-item__right-cell + .container-pop-item__right-cell {
        margin-top: 32px
    }

    .container-pop-item__right {
        margin: 0;
        max-width: 100%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: sticky;
        top: 50px
    }

    .container-pop-item__right-cell {
        padding: 64px;
        border-radius: 64px
    }

    .container-pop-item__right-title {
        font-size: 20px;
        line-height: 28px
    }

    .container-pop-item__right-price {
        font-size: 32px;
        line-height: 45px;
        margin-top: 16px;
        letter-spacing: .05em
    }

    .container-pop-item__right-price span {
        font-size: 14px;
        top: -5px;
        height: 19px;
        line-height: 19px;
        margin-left: 12px
    }

    .container-pop-item__right-text {
        font-size: 18px;
        line-height: 27px
    }

    .container-pop-item__right-text p + p {
        margin-top: 16px
    }

    .container-pop-item__right-btn a, .container-pop-item__right-btn button {
        font-size: 14px;
        line-height: 19.6px;
        padding: 22px 24px
    }

    .container-pop-item__right-char {
        padding-bottom: 0
    }

    .modal-pane .destroy-button {
        top: -16px !important
    }

    .modal__slider-pagination {
        display: none
    }

    .top-page {
        margin-top: 73px
    }

    .type-page + .top-page {
        margin-top: 33px
    }

    .top-page__label-page {
        font-size: 24px;
        line-height: 38px;
        margin-top: 63px;
        max-width: 1130px
    }

    .top-page__title {
        font-size: 48px;
        line-height: 67px
    }

    .top-page-listing {
        margin-top: 73px
    }

    .top-page + .top-page-listing {
        margin-top: 63px
    }

    .top-page-listing__item {
        font-size: 12px;
        line-height: 16px;
        padding: 15px 19px
    }

    .top-page-subtitle {
        margin: 32px auto 0;
        max-width: 1050px
    }

    .top-page-subtitle__title {
        font-size: 32px;
        line-height: 45px
    }

    .type-page {
        margin-top: 72px
    }

    .type-page__title {
        font-size: 14px;
        line-height: 20px
    }

    .organization-section {
        margin-top: 64px;
        margin-bottom: 0
    }

    .organization-section__row-grid {
        display: grid;
        grid-template-columns:repeat(2, 1fr);
        grid-gap: 32px
    }

    .organization-section__row-grid .organization-cell {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: 400px
    }

    .organization-section__row-grid .organization-cell__title {
        -webkit-box-flex: initial;
        -ms-flex: initial;
        flex: initial;
        margin-right: 0;
        min-width: 350px
    }

    .organization-section__row-grid .organization-section__cell + .organization-section__cell {
        margin-top: 0
    }

    .organization-section__grid {
        display: grid;
        grid-template-columns:auto 556px;
        grid-gap: 32px;
        margin-top: 64px
    }

    .organization-section__cell-picture {
        margin: 0;
        border-radius: 64px;
        max-height: 626px
    }

    .organization-cell {
        min-height: 223px;
        border-radius: 64px;
        padding: 63px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .organization-cell--bg-01 {
        background-image: url(../../../images/components/organization-section/bg-01-desctop.svg);
        background-position: bottom -233px right -2px
    }

    .organization-cell--bg-02 {
        background-image: url(../../../images/components/organization-section/bg-02-desctop.svg);
        background-position: bottom -48px right -101px
    }

    .organization-cell--bg-03 {
        background-image: url(../../../images/components/organization-section/bg-03-desctop.svg);
        background-position: bottom -80px right -187px
    }

    .organization-cell--bg-04 {
        background-position: bottom -92px right -77px
    }

    .organization-cell--bg-05 {
        background-image: url(../../../images/components/organization-section/bg-05-desctop.svg);
        background-position: top -227px right -264px
    }

    .organization-cell__txt-desc {
        font-size: 18px;
        line-height: 27px;
        padding-left: 32px
    }

    .organization-cell__txt-desc-sub {
        font-size: 16px;
        line-height: 24px
    }

    .organization-cell__price, .organization-cell__title {
        font-size: 20px;
        line-height: 28px
    }

    .organization-cell__title {
        width: 250px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        margin-right: 180px
    }

    .organization-cell__contacts-link {
        font-size: 14px;
        line-height: 21px
    }

    .organization-cell__contacts-link + .organization-cell__contacts-link {
        margin-top: 8px
    }

    .organization-cell__contacts-person {
        margin-top: 24px;
        font-size: 14px;
        line-height: 21px
    }

    .organization-form {
        margin: 0;
        border-radius: 64px;
        padding: 65px
    }

    .organization-form__title {
        font-size: 20px;
        line-height: 28px
    }

    .organization-form__row {
        grid-template-columns:repeat(1, 1fr);
        margin-top: 39px;
        grid-gap: 24px
    }

    .organization-form__cell--full {
        grid-column: 1 span/auto
    }

    .organization-form__cell .politic {
        margin-top: 15px
    }

    .map-arenda {
        margin: 63px auto 0
    }

    .organization-section + .map-arenda {
        margin: 129px auto 64px
    }

    .map-arenda__title + .map-arenda__container {
        margin-top: 62px
    }

    .map-arenda__container {
        border-radius: 64px;
        height: 750px
    }

    .map-arenda__title {
        font-size: 32px;
        line-height: 45px
    }

    .custom-zoomist-zoomer, .tabs__nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        top: 0
    }

    .tabs__nav {
        left: 60px;
        bottom: initial;
        width: initial
    }

    .custom-zoomist-zoomer__btn + .custom-zoomist-zoomer__btn, .tabs__btn + .tabs__btn {
        margin-left: 0;
        margin-top: 16px
    }

    .custom-zoomist-zoomer {
        left: initial;
        right: 64px;
        margin-top: 0;
        margin-left: 0;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }
}