/*
    Theme Name: Жемчужный парк
    Author: Бурханов Ильдар
    Author URI: https://vk.com/burhanoff1992
    Description: Вдали от городской суеты, почувствуйте настоящий комфорт и спокойствие, не лишая себя преимуществ инфраструктуры.
    Requires at least: 6.1
    Tested up to: 6.3
    Requires PHP: 5.6
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    Text Domain: zhemchuzhnyi
    Tags: tag1, tag2, tag3
*/

:root {
    /* fonts */
    --font-default: "Gilroy", sans-serif;
    --font-heading: "New York", serif;
    --font-mx: "MX", serif;
    --font-my: "MY", serif;
    --font-nadall: "NADALL", sans-serif;

    /* colors */
    --black: #362821;
    --black-rgb: 32, 38, 46;
    --accent: #424d21;
    --light: #fff3e0;
    --light-contrast: #FDE6B9;
    --ligth-brown: #EEE4D7;
    --ligth-brown-rgb: 238, 228, 215;
    --orange: #424d21;
    --orange-light: #424d21;
    --error: #c43636;
    --green: #18372F;
    --green-light: #285440;
    --green-card: #204738;

    --progress-size: 100px;
}

/*::-webkit-scrollbar {*/
/*    display: none;*/
/*}*/

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1194px;
    }
}

img, svg {
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-default);
    font-size: 18px;
    font-weight: 500;
    color: white;
    overflow-x: hidden;
}

.section {
    padding: 70px 0;
}

/* button */
.button {
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
    height: 42px;
    line-height: 41px;
    background-color: var(--light);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .2s ease;
}

.button-circle {
    width: 50px;
    height: 50px;
    padding-left: 0;
    padding-right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-circle.button-lg {
    width: 56px;
}

.button-circle.button-md {
    width: 50px;
    height: 50px;
}

.button i {
    font-size: 10px;
}

.button-circle.button-md i {
    font-size: 13px;
}

.button-circle i {
    font-size: 10px;
}

.button-dark {
    background-color: rgba(var(--black-rgb), .63);
    border-color: transparent;
}

.button-lg {
    font-size: 16px;
    font-weight: 600;
    height: 56px;
    line-height: 50px;
}

.button-lg i {
    font-size: 14px;
}

.button-border {
    border-color: #B0B3A4;
    background-color: transparent;
    color: var(--light);
}

.button-border i {
    color: rgba(var(--black-rgb), .5);
}

.button-opacity {
    background-color: rgba(255,255,255, .2);
    color: white;
    border-color: rgba(255,255,255, 0);
}

.button-accent {
    background-color: var(--orange);
    color: white;
}

.button-accent i {
    font-size: 11px;
    vertical-align: middle;
    margin-left: 10px;
}

.button-transparent {
    background-color: transparent;
}

.button.swiper-button-disabled {
    opacity: 0.4;
}

/* burger */
.burger {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 7px;
}

.burger-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ffe3b6;
    transition: all .2s ease;
}

.burger-line:last-child {
    top: 6px
}

.burger-open .burger-line {
    top: 50%;
    transform: rotate(135deg);
}

.burger-open .burger-line:last-child {
    transform: rotate(-135deg);
}

.button-header {
    background-color: transparent;
    border: 1px solid #FFF3E0B2;
    color: var(--light);
}

/* header */
.header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(0,0,0, 0.37);
    border-bottom: 1px solid rgba(255,255,255, 0.4);
    backdrop-filter: blur(4px);
    z-index: 5;
}

.header-mobile {
    display: none;
}

.header-logo-src {
    max-height: 77px;
}

.header-row {
    display: flex;
    align-items: center;
}

.header-col {
    flex: 1;
}

.header-col-logo {
    text-align: center;
}

.header-col-end {
    text-align: right;
}

/* hero */
.hero {
    position: relative;
}

.hero-bg {
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-gradient {
    height: 100%;
    background: linear-gradient(
            to bottom, #18372f 0%,
            rgba(5, 49, 36, 0) 15%,
            rgba(5, 49, 36, 0) 65%,
            #18372f 100%
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding-bottom: 90px;
}

.hero-title {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-content {
    padding-bottom: 40px;
    text-align: center;
}

.hero-content-group {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    grid-column-gap: 100px;
}

.hero-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;

    background-color: rgb(5 49 36 / 48%);
}

.hero-nav-list {
    display: flex;
}

.hero-scroll {
    height: 2px;
    background-color: transparent;
}

.hero-scroll > div {
    background-color: var(--orange);
    width: 100px !important;
}

.hero-nav-item {
    flex: 1;
    text-align: center;
    position: relative;

    opacity: 1 !important;
    background: unset !important;
    height: auto !important;
    border-radius: unset !important;
    width: unset !important;
    padding: 0 !important;
    margin: 0 !important;
}

/*.hero-nav-item:not(:first-child) {*/
/*    margin-left: -1px;*/
/*}*/

.hero-nav-item:not(:last-child)::before {
    position: absolute;
    content: '';

    right: -1px;
    top: calc(50% - 20px);

    height: 40px;
    width: 1px;
    background-color: rgba(255,255,255, .28);
}

/*.hero-nav-item:hover::before {*/
/*    opacity: 0;*/
/*}*/

.hero-nav-item.swiper-pagination-bullet-active {
    backdrop-filter: blur(10px);
}
.hero-nav-item.swiper-pagination-bullet-active a {color: #ffe7c1;}

.hero-nav-item.swiper-pagination-bullet-active::before,
.hero-nav-item.uberi-palochku::before {
    opacity: 0;
}

.hero-nav-link {
    display: block;
    color: white;
    font-size: 16px;
    text-decoration: none;
    height: 90px;
    line-height: 90px;
}

/* footer */
.footer {
    background-color: var(--black);
    padding-top: 50px;
    padding-bottom: 80px;
}

.footer-col-end {
    display: flex;
    justify-content: flex-end;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-src {
    height: 50px;
}

.footer-col-info {
    font-size: 13px;
    color: rgba(255,255,255, .4);
}

.footer-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.footer-link {
    color: inherit;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-menu {
    text-transform: uppercase;
    font-size: 13px;
}

.footer-menu-item {
    margin-bottom: 8px;
}

.footer-menu-link {
    color: white;
    text-decoration: none;
}

.footer-menu-link:hover {
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255, .2);
}

.footer-nav-item {
    position: relative;
}

/* .footer-nav-item:not(:last-child) {
    margin-right: 30px;
} */

.footer-nav-item:not(:first-child)::before {
    position: absolute;
    content: '';
    top: calc(50% - 3px);
    left: -62px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(191, 168, 144, 1);
}

.footer-nav-link {
    text-align: center;
    display: block;

    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
}

.footer-socials {
    display: flex;
    grid-column-gap: 8px;
    justify-content: center;
    margin-top: 50px;
}

.footer-social-link {
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background-color: rgba(255,255,255, .12);

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

/* about */
.about {
    position: relative;
}

.about-float-image {
    position: absolute;
    top: 60%;
    right: 0;
    left: 0;
    width: 100%;
    display: block;
}

.about-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-info {
    padding: 90px 0;
}

.about-info-content {
    padding: 60px;
    border-radius: 60px 0 60px 0;
    position: relative;
    background-color: var(--light);
    color: var(--black);
}

.about-heading {
    text-transform: uppercase;
    color: #908C86;
    margin-bottom: 40px;
}

.about-subtitle {
    font-size: 24px;
}

.about-title {
    font-size: 64px;
    line-height: 0.9;
    font-family: var(--font-mx);
    text-transform: uppercase;
    color: var(--green);
}

.about-title span {
    font-size: 40%;
    line-height: 0.6;
}

.about-head {
    margin-bottom: 30px;
}

.about-button {
    display: inline-flex;
    width: 300px;
    padding: 0 20px;
    border: 1px solid #B0B3A4;
    height: 60px;
    line-height: 60px;

    grid-column-gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: var(--green);
}

.about-slide {
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 2;
}

.about-slider-nav {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    text-align: right;
}

.slider-next {
    background-color: rgba(var(--black-rgb), .63);
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 50%;
    font-size: 11px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.slider-next-small {
    width: 50px;
    height: 50px;
}

.slider-next-small i {
    font-size: 8px;
}

.about-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 30px;
    opacity: 0;
}

.prlx {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 0 10%;
    transition: all .3s ease-in-out;
}

.prlx-text {
    font-size: 333px;
    line-height: 1;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--font-heading);
    overflow: visible !important;
    color: rgb(36 64 35 / 66%)
}

/* counters */
.counters {
    padding: 90px 0;
    background-color: var(--black);
}

.counter-value {
    font-family: var(--font-mx);
    font-size: 96px;
    line-height: 1;
    color: var(--light);
}

.counter-metrik {
    font-family: var(--font-default);
    font-size: 18px;
}

.counter-text {
    font-size: 16px;
    font-weight: 400;
}

.counter-head {
    display: flex;
    align-items: center;
    grid-column-gap: 15px;
}

.nab-slider, .hblocks-row {
    margin-top: 50px;
}

.hblock {
    padding-bottom: 440px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;

    overflow: hidden;

    border-radius: 60px 0 60px 0;
}

.hblock-background {
    position: absolute;
    background-color: rgba(54, 40, 33, 0.48);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    transform: translateY(82%);
    transition: all .35s ease-in-out;
}

.hblock:hover .hblock-background {
    background-color: rgba(54, 40, 33, 0.7);
    transform: translateY(0%);
}

.hblock-content {
    position: absolute;
    top: calc(100% - 80px);
    left: 0;
    right: 0;
    padding: 30px;

    transition: all .35s ease-in-out;
}

.hblock:hover .hblock-content {
    top: 25%;
}

.hblock-content__title {
    font-family: var(--font-default);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 43px;
    line-height: 1;
}

.hblock-content__text {
    font-size: 18px;
    font-weight: 500;
}

.infra {
    background: var(--light);
    padding: 70px 0;
    overflow-x: hidden;
}

.infra-card {
    background-color: var(--light);
    height: 100%;
    color: var(--black);
    padding: 80px 40px 0;
}

.infra-photo {
    padding: 0 0 51% 0 !important;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.infra-photo .button-circle {
    top: 70px;
    right: 70px;
}

.infra-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.section-heading {
    text-transform: uppercase;
    font-family: var(--font-mx);
    font-size: 64px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 2rem;
    line-height: 1;
}

.section-p {
    color: var(--green);
    font-weight: 400;
}

.infra-counter {
    color: var(--accent);
}

.infra-content {
    text-align: center;
    padding-top: 80px;
}

.infra-title {
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slide-info {
    color: rgba(var(--black-rgb), .5);
    position: relative;
    display:none;
}

.slide-info::before {
    content: attr(data-set-text);
    position: absolute;
    white-space: nowrap;
    line-height: 0;
}

.infra-prev-text::before {
    right: 0;
}
.infra-next-text::before {
    left: 0;
}

.infra-slide {
    height: 100%;
}

.infra-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;

    padding-bottom: 40px;
}

.photo-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
}

/* preim */
.preim {
    padding: 70px 0;
    color: var(--black);
    background-color: white;
}

.preim-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    margin-bottom: 40px;
}

.preim-col {
    position: relative;
}

.preim-col::before,
.preim-col::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--orange);
    opacity: 0;
    top: 33%;
}

.preim-col::before {
    left: 0;
}

.preim-col::after {
    right: 0;
}

.preim-col:nth-of-type(2)::before,
.preim-col:nth-of-type(2)::after,
.preim-col:nth-of-type(5)::before,
.preim-col:nth-of-type(5)::after {
    opacity: 1;
}

.preim-photo {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    transition: all .2s ease;
}

.preim-card:hover .preim-photo {
    transform: scale(1.05)
}

.preim-link {
    margin-top: 15px;
    color: var(--black);

    padding: 0 66px;
}

.preim-row {
    margin-top: 60px;
}

/* video */
.video {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.video-poster {
    height: 100%;
}

.video-poster-bg {
    height: 100%;
}

.video-poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 87px);

    display: flex;
    align-items: center;
    grid-column-gap: 30px;
    color: white;
}

.video-play-btn {
    display: inline-flex;
    width: 150px;
    height: 150px;

    border-radius: 50%;
    background-color: rgba(var(--black-rgb), .63);

    font-size: 50px;

    align-items: center;
    justify-content: center;

    text-decoration: none;
}

.video-play-caption {
    font-size: 52px;
    line-height: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    margin-top: 30px;
}

/* location */
.location {
    background-color: rgba(var(--ligth-brown-rgb), 1);
    color: var(--black);
    position: relative;
}

.location-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    padding-top: 70px;
    padding-bottom: 70px;
    background: rgb(238,228,215);
    background: linear-gradient(0deg, rgba(238,228,215,0) 0%, rgba(238,228,215,1) 100%);
}

/* project */
.projects {
    color: var(--black);
    background-color: var(--light);
}

.project-tab-item {
    margin-left: -1px !important;
}

.project-tab-link {
    color: var(--black);
}

.project-tab-link.active {
    background-color: var(--orange);
    color: white;
}

.project-tab-item:not(:last-child)::before {
    background-color: var(--orange);
    right: 0;
}

.project-tab-item:hover,
.project-tab-item.active {
    backdrop-filter: blur(0);
}

.project-tab-item:hover::before {
    opacity: 1;
}

.project-photo {
    position: relative;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 42%;
}

.project-tab-content {
    margin-top: 30px;
}

.slider-navigation {
    position: absolute;
    top: calc(50% - 25px);
    left: 30px;
    right: 30px;
    z-index: 2;

    display: flex;
    justify-content: space-between;
}

.swiper-button-disabled {
    opacity: 0;
    transition: all .2s ease;
}

.project-inner-tabs {
    list-style: none;
    margin: 0 0 45px;
    padding: 0;
    display: flex;

    border-bottom: 1px solid rgba(var(--black-rgb), .16)
}

.tab-project {
    flex: 1;
    text-align: center;
    font-size: 16px;
}

.project-card {
    padding-left: 50px;
}

.tab-project-link {
    display: block;
    position: relative;
    transform: translateY(1px);
    border-bottom: 1px solid transparent;
    padding: 10px;
    color: rgba(var(--black-rgb), .5);
    cursor: pointer;
}

.tab-project-link.active {
    border-color: var(--orange);
    color: rgba(var(--black-rgb), 1);
}

.card-counter {
    display: flex;
    color: var(--orange);
    margin-bottom: 30px;
}

.card-counter-item {
    flex: 1;
}

.card-counter-value {
    display: flex;
    align-items: baseline;
    font-weight: 400;
    font-family: var(--font-heading);
    grid-column-gap: 8px;
    line-height: 1;
}

.card-counter-value-number {
    font-size: 42px;
}

.card-counter-name {
    font-size: 16px;
    font-weight: 400;
}

.project-text-content {
    margin-bottom: 40px;
}

.build-item {
    display: flex;
    margin-bottom: 5px;
    grid-column-gap: 10px;
    font-size: 13px;
}

.build-title {
    margin-bottom: 10px;
}

.build-counter {
    flex: 0 0 30px;
    max-width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: var(--orange);
    color: white;
}

.build-text {
    padding-top: 5px;
}

.table-build {
    width: 100%;
    border-bottom: 1px solid rgba(var(--black-rgb), .1);
    font-size: 13px;
    margin-bottom: 10px;
}

.table-build:last-child {
    border-bottom: none;
}

.build-name {
    color: var(--orange);
}

.table-build td {
    width: 50%;
    padding: 7px 0;
}

/* area */
.area {
    color: var(--black);
}

.areas-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comm-col {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;

    grid-column-gap: 25px;
}

.comm-name {
    padding-top: 4px;
    flex: 1;
}

.comm-row {
    margin-top: 40px;
}

.comm-icon {
    flex: 0 0 29px;
    max-width: 29px;
    text-align: center;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.guest {
    background-color: var(--green);
    padding: 100px 0;
}

.guest-card {
    color: white;
    padding: 70px 30px 0 0;

    /*background-image: url(assets/img/flowers.png);*/
    background-position: 120% 120%;
    background-repeat: no-repeat;
    height: 100%;
}

.guest-card .section-heading {
    color: var(--light-contrast);
}

.guest-counter {
    color: var(--orange);
    width: 110px;
}

.guest-content {
    padding: 40px 0;
}

.guest-photo {
    padding-bottom: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 60px 0 60px;
}

.presentation {
    background-color: var(--light-contrast);
    color: var(--black);
}

.form-label {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
}

label {
    font-size: 13px;
}

.form-input {
    width: 100%;
    font-family: var(--font-heading);
    font-size: 24px;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(var(--black-rgb), 0.3);
    background-color: transparent;
    padding: 15px 0 5px;
    outline: none;
}

.presentation-form {
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
}

.form-checkbox {
    vertical-align: middle;
}

/* otdelka */
.otdelka {
    color: var(--black);
    font-size: 16px;
}

.otdelka-tabs {
    border-bottom: 1px solid rgba(var(--black-rgb), .2);
    display: flex;
    margin-top: 60px;
}

.otdelka-item {
    flex: 1;
}

.otdelka-link {
    padding: 8px;
    text-align: center;
    display: block;

    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid transparent;

    position: relative;
    top: 1px;
}

.otdelka-link.active {
    border-color: var(--orange);
}

.otdelka-photo {
    padding-bottom: 42% !important;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.otdelka-tab-content {
    margin-top: 60px;
}

.otdelka-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 15px;
}

.otdelka-grid-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;

    grid-column-gap: 20px;
}

.otdelka-icon {
    flex: 0 0 30px;
    max-width: 30px;
    text-align: center;
}

.otdelka-text {
    line-height: 1.1;
    flex: 1;
}

/* contacts */
.contacts {
    position: relative;
}

.contacts-map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contacts-inner {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.contacts-info {
    margin: 45px 0;
    padding: 60px 70px;
    border-radius: 60px 0 60px;
    pointer-events: all;
    background-color: var(--black);
    backdrop-filter: blur(5px);
}

.contacts-title {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 22px;
}

.contacts-label {
    font-size: 13px;
    opacity: .5;
}

.contacts-link {
    color: inherit;
    text-decoration: none;
}

.contacts-link:hover {
    text-decoration: underline;
}

#footer_map {
    height: 100%;
    width: 100%;
}

/*#footer_map canvas {*/
/*    filter: grayscale(1);*/
/*}*/

.balloon-wrap {
    background-color: var(--black);
    padding: 15px;
}

.balloon-wrap img {
    width: 270px;
}

.button-block {
    display: block;
    width: 100%;
}

.button-burger {
    width: 42px;
    height: 42px;
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    display: none;
}

.overlay-warning {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem 2rem 1rem 0;

    display: flex;
    align-items: center;
    grid-column-gap: .5rem;
    width: 39%;

    font-size: 11px;
    color: rgba(255,255,255, .5);
}

.overlay-warning__icon {
    flex: 0 0 20px;
    max-width: 20px;
    height: 20px;
}

.overlay-sidebar {
    background-color: var(--black);
    transform: translateX(-100%);
    transition: all .5s ease;
}

.overlay-control {
    pointer-events: all;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 200px;
    display: none;
    pointer-events: none;
}

.overlay-image {
    -webkit-background-size: cover;
    background-size: cover;
    transform: translateX(100%);
    transition: all .5s ease;
}

.menu-item {
    margin-bottom: 1.1rem;
}

.menu-link {
    font-size: 24px;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
}

.menu-small .menu-link {
    font-size: 13px;
}

.menu-small .menu-item {
    margin-bottom: .5rem;
}

.overlay-show .overlay-sidebar {
    transform: translateX(0%);

}

.overlay-show .overlay-image {
    transform: translateX(0%);
}

.prize-info {
    padding-right: 40px;
}

.prize-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.disabled {
    pointer-events: none;
    user-select: none;
}

.button.close {
    position: relative;
    padding-right: 40px;
}

.button.close::after {
    position: absolute;
    content: '\2715';
    top: 0;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.genplan-header {
    background-color: var(--black);
    border: 1px solid var(--black);
    background-image: url(assets/img/plan-header-pattern.png);
    background-position: right center;
    background-repeat: no-repeat;

    padding: 40px 0;
}

.genplan-subtitle {
    font-size: .8rem;
}

.plan-nav {
    backdrop-filter: blur(4px);
    margin-bottom: -92px;
    position: relative;
    z-index: 3;
}

.plan-nav-item::before {
    background-color: var(--orange-light) !important;
}

.genplan-title {
    text-transform: uppercase;
    font-size: 32px;
    font-family: var(--font-default);
    color: var(--orange);
    margin-bottom: 0;
}

.plan-nav-item {
    border-top: 2px solid transparent;
}

.plan-nav-item.swiper-pagination-bullet-active {
    backdrop-filter: none;
    background-color: rgba(255,255,255, 7%) !important;
    border-top-color: var(--orange-light);
}

.gallery-group {
    position: relative;
}

.gallery {
    position: relative;
}

.gallery-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;

    display: flex;
    justify-content: space-between;
}

.gallery-nav-link.active {
    backdrop-filter: blur(10px);
}

.gallery-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 70px;
    z-index: 2;
}

.gallery-heading {
    color: white;
}

.gallery-slide {
    padding-bottom: 42%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-slide > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal {
    z-index:10000 !important;
}
.modal-gallery-content {
    background: transparent;
    border: none;
}

.modal-gallery-dialog {
    max-width: 1194px;
}

.modal-gallery-slide {
    display: flex;
    justify-content: center;
    height: 100%;
}

.modal-gallery-slide-caption {
    font-size: 20px;
}

.modal-gallery-body {
    padding: 0 32px;
}

.modal-gallery-wrapper {
    align-items: center;
}

.modal-gallery-slide-inner {
    position: relative;
}

.modal-gallery-slide-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;

    background-color: rgba(26, 26, 26, 0.75);
    color: #ffffff;

    padding: 30px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-house-slider-pagination,
.modal-gallery-pagination {
    position: absolute;
    top: calc(50% - 25px);
    left: 0;
    right: 0;

    display: flex;
    justify-content: space-between;

    z-index: 4;
}

.modal-gallery-pagination {
    padding: 0 25px;
}

.modal-gallery-close {
    position: absolute;
    content: '\2715';
    top: 15px;
    right: 15px;
    z-index: 3;
    cursor: pointer;
}

.modal-gallery-close::after {
    content: '\2715';
    color: white;
}

.show-mobile {
    display: none;
}

#points_map {
    height: 800px;
    position: relative;
}

#points_map::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--ligth-brown-rgb), .7);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.point-icon {
    width: 46px;
    height: 46px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 3px solid #384351;*/
    box-shadow: 5px 5px 10px 0 rgba(var(--black-rgb), .25);
}

.abs-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 4;
}

.page-container {
    color: var(--black);
    background-color: var(--light);
    padding-top: 120px;
}

.page-title {
    font-family: var(--font-default);
    font-size: 32px;
    text-transform: uppercase;
    color: rgba(var(--black-rgb), .5);
    margin-bottom: 30px;
}

.how-list {
    counter-reset: how;
    padding-top: 60px;
    padding-bottom: 60px;
}

.how-row {
    position: relative;
}

.how-row::after {
    counter-increment: how;
    content: counter(how);
    font-size: 32px;
    width: 80px;
    height: 80px;

    position: absolute;
    top: 0;
    left: calc(50% - 40px);

    border-radius: 50%;
    border: 1px solid var(--accent);

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
}

.how-row:not(:last-child)::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: var(--accent);
}

.how-card {
    padding: 0 70px;
    height: 80px;
    margin-bottom: 40px;
}

.how-card-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
}

.how-tel {
    font-size: 32px;
    font-family: var(--font-heading);
    color: var(--orange);
    text-decoration: none;
}

.how-card-text {
    line-height: 1.2;
}

.team {
    background-color: var(--light-contrast);
}

.team-card-photo {
    padding-bottom: 144%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: contain;
    background-size: contain;
    border-bottom: 1px solid var(--orange);
}

.team-card-body {
    text-align: center;
    padding-top: 15px;
}

.team-card-name {
    font-size: 22px;
    font-weight: 500;
}

.team-card-text {
    font-size: 16px;
}

.team-row {
    margin-top: 40px;
}

.credit {
    background-color: white;
    color: var(--black);
}

.credit-card {
    border: 1px solid #E0BC7D;
    height: 100%;
}

.credit-image {
    padding-bottom: 67%;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
}

.credit-row {
    margin-top: 40px;
}

.credit-body {
    padding: 20px;
    font-size: 16px;
    line-height: 1.2;
}

.credit-body ul {
    padding-left: 15px;
}

.credit-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-container .section-heading {
    text-transform: none;
}

.credit-form-form {
    margin-top: 170px;
}

.credit-form-text {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
}

.faq {
    background-color: white;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid rgba(var(--black-rgb), .12);
}

.faq-head {
    position: relative;
    font-weight: bold;
    padding: 10px 10px 10px 45px;
    cursor: pointer;
}

.faq-head::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    width: 23px;

    background-image: url(assets/img/faq-plus.svg);
    background-position: left center;
    background-repeat: no-repeat;
    transition: all .2s ease-in-out;
}

.faq-body {
    padding-left: 45px;
    font-size: 16px;
    line-height: 1.2;
    display: none;
}

.faq-head.show::before {
    transform: rotate(45deg);
}

.credit-slider {
    height: 510px;
}

.credit-counter {
    display: none;
}

.news-item {
    display: flex;
    grid-column-gap: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.news-photo {
    flex: 0 0 470px;
    max-width: 470px;
    padding-bottom: 270px;
    background-position: left bottom;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.news-content {
    flex: 1;
    padding-top: 20px;
    position: relative;
}

.news-title {
    font-size: 26px;
    font-weight: 600;
    flex: 1;
}

.news-head {
    display: flex;
    grid-column-gap: 15px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 14px;
    color: #20262E80;
    flex: 0 0 120px;
    max-width: 120px;
    text-align: right;

    padding-top: 8px;
}

.news-link {
    background-color: var(--light);

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 21px 0 15px;
}

.news-link::before {
    position: absolute;
    content: " ";
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--orange);
}

.news-link-link {
    color: var(--orange);
    background-color: var(--light);
    padding-right: 15px;
    z-index: 1;
    position: relative;

    text-decoration: none;
}

.news {
    padding-bottom: 60px;
}

.load-more {
    text-align: center;
}

.news-detail-title {
    font-size: 36px;
    font-family: var(--font-default);
}

.news-detail-date {
    margin-bottom: 30px;
    color: rgba(var(--black-rgb), .5);
}

.news-detail-image {
    margin-bottom: 30px;
}

.news-detail-container {
    padding-bottom: 60px;
}

.news-detail-content {
    font-size: 16px;
}

.progress-card {
    display: block;
    position: relative;
    margin-bottom: 30px;
    background-color: #fff;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

.progress-photo {
    padding-bottom: 70%;
    background-color: rgba(var(--black-rgb), .2);
}

.progress-date {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: white;
    z-index: 1;
}

.progress-row .progress-col:nth-child(2) {
    margin-top: var(--progress-size);
}

.progress-row {
    margin-top: calc(var(--progress-size) * -1);
}

.progress-wrapper {
    margin-top: calc(var(--progress-size) * 1.5);
    padding-bottom: var(--progress-size);
}

.area-title {
    margin-bottom: 30px;
    font-size: 36px;
}

.areas-land {
    background-color: var(--black);
}

.areas-land-header {
    padding: 30px 0;
}

.areas-land-counter {
    margin-bottom: 0;
    color: var(--orange);
}

.area-land-title {
    text-transform: uppercase;
    font-family: var(--font-default);
    color: var(--orange);
    margin-bottom: 0;
}

.land {
    padding-bottom: 60px;
}

.ymaps-2-1-79-balloon__content {
    padding: 0 !important;
}

.ymaps-2-1-79-balloon__tail:after {
    background-color: var(--black) !important;
}

.areas-map {
    position: relative;
}

.areas-map__vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.area-point-pin {
    z-index: 1;
    transition: all .14s linear;
}

.area-point-pin.show {
    opacity: 1;
}

.area-point-pin .tooltip-arrow {
    display: none;
}

.area-point-pin .tooltip-inner {
    padding: 0;
    background-color: transparent;
    opacity: 1;
}

.area-pin {
    transform: translateY(30px);
    display: flex;
    border-radius: 15px 0 15px 0;
    line-height: 50px;
    background-color: #1c1511b3;
    color: #fff;
    cursor: pointer;
    transition: all .2s ease;
    backdrop-filter: blur(5px);
}

.area-pin-icon {
    width: 40px;
    height: 40px;
    padding:12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-pin-text {
    line-height: 40px;
    white-space: nowrap;
    padding-right: 0;
    font-size: 14px;
    font-weight: 500;
    width: 0;
    overflow: hidden;
}

.area-point-pin .tooltip-inner {
    max-width: unset !important;
}

.area-path {
    stroke-width: 1;
}

.area-path:hover {
    stroke-location: inside;
    stroke-width: 8;
    fill: rgba(0,0,0, .1) !important;
    cursor: pointer;
}
.show_tp {
    display:block;
}
.unshow_tp {
    display:none;
}
.map_hover img {
    filter: brightness(50%);
    
}
.areas-map__image img {
    transition: all .2s ease-in-out;
}

.areas-map__image {
    position: relative;
}

.areas-map__image::before {
}

.plan-nav-item.active {
    background-color: rgba(255,255,255, .1) !important;
}

.plan-nav-item.disabled {
    opacity: .5 !important;
}

.modal-content__contact {
    background-color: var(--light);
    color: var(--black);
}

.button-close {
    font-size: 16px;
    width: 40px;
    height: 40px;

    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.modal-head {
    margin-left: -85px;
    margin-right: -85px;
    position: relative;
    margin-bottom: 30px;
    padding-top: 55px;
}

.modal-head__title {
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    font-size: 24px;
}

.modal-content {
    min-width:280px;
    border-radius: 0;
    padding: 0 85px 55px;
}

.modal-body {
    padding: 0;
}

.modal-contact .modal-dialog {
    max-width: 600px;
}

.plan-slider__slide {
    padding-bottom: 80%;
}

.page:not(.home).overflow-hidden .header-logo-src {
    filter: invert(1);
}

.plan-slider {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    border-radius: 10px;
    padding: 1rem;
    font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffe0e0;
    background: #ffe0e0;
    color: #9b5656;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #b1dfa9;
    background: #b1dfa9;
    color: #508147;
}

.button.photo-zoom {
    display: none;
}

.wpcf7-list-item.wpcf7-list-item {
    margin-left: 0 !important;
}

.label {
    cursor: pointer;
}

.wpcf7 form .wpcf7-response-output {
    margin-left: 0;
    margin-right: 0;
}

.sector-area {
    display:none;
    transition: all .2s ease-in-out;
}

.sector-area.active {
    display:block;
    transition: all .2s ease-in-out;
}

.prize-counter {
    color: var(--orange);
    margin-bottom: 1.75rem;
}
.prize-photo-mobile {
    position: relative;
}
.prize-counter__line {
    width: 38px;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--orange);
    margin-left: 6px;
    margin-right: 6px;
}

.overlay-slide {
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
}

.overlay-slide__text {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.5rem 4rem;
    font-size: 18px;
    background-color: rgba(var(--black-rgb), 0.6);
    backdrop-filter: blur(3px);
}

.overlay-navigation {
    z-index: 4;
}

.prize-slider__mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.prize-slide {
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}

.prize-slide__text {
    padding: 1rem;
    font-size: 11px;
    background-color: rgba(var(--black-rgb), .5);

    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}

.genplan-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    align-items: start;
    justify-content: center;
}











.st:before {
    content:"";
    display:block;
    width:12px;
    height:12px;
    background:transparent;
    float:left;
    border:2px solid #fff;
    margin: 3px 6px;
    border-radius:2px;

}
.st_1:before {
    border-color: rgb(44, 197, 87);
    background: rgba(44, 197, 87, 0.5);
}
.st_2:before {
    border-color: rgb(241, 165, 75);
    background: rgba(241, 165, 75, 0.5);
}
.st_3:before {
    border-color: rgb(231, 75, 103);
    background: rgba(231, 75, 103, 0.5);
}
.st_4:before {
    border-color: rgb(130, 128, 126);
    background: rgba(130, 128, 126, 0.5);
}
.status_areas {
    padding: 4px;
    width: 130px;
    height:80px;
    background:rgba(0, 0, 0, 50%);       
    color:#fff;      
    backdrop-filter: blur(2px);
    margin-top:-100px;
    right:20px;
    position: absolute;
    z-index: 2;
    font-size:12px;
    border-radius:10px;

}
.zoombtns {
    touch-action: none;
    margin-top:-60px;
    margin-left:20px;
    position: absolute;
    z-index: 2;

}
.zoombtn {
    touch-action: none;
    width:40px;
    height:40px;
    background:rgba(0, 0, 0, 50%);
    border:none;
    color:#fff;
    font-weight: bold;
    border-radius:10px;
    backdrop-filter: blur(2px);
    padding-bottom:4px;
}
.zoombtn.disabled {
    opacity:0.5;
}
.zoomit {
    transition: all ease-out 0.5s;
}

.hero-block {
    height: 800px;
}

.hero-block-content {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0, 0.3);
    height: 100%;
}

.hero-block-btn {
    text-align: center;
    margin-top: 3rem;
}

.residences-bg {
    background-position: right 40px;
    background-repeat: no-repeat;
}

.naberezhnaya {
    background-color: var(--black);
    color: var(--light);
}

.naberezhnaya .section-heading {
    color: var(--light);
}

.naberezhnaya .section-p {
    color: #fff;
}

.naberezhnaya .section-heading {
    position: relative;
}

.naberezhnaya .section-heading::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 50px;
    width: 1px;
    background-color: rgba(255,255,255, .22);
}

.hblock-slide {
    padding-bottom: 590px;
    pointer-events: none;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center bottom;
}

.hblock-slide .hblock-content {
    padding: 30px 30px 15px;
    top: unset;
    bottom: 0;
    background-color: rgba(0,0,0, .30);
}

.hblock-slide .hblock-background {
    display: none;
}

.hblock-slide .hblock-content__title {
    margin-bottom: 1rem;
}

.hblock-slide .hblock-content__text p {
    font-weight: normal;
    font-size: 16px;
}

.nab-slider {
    overflow: visible;
}

.slider-nav {
    position: absolute;
    top: calc(50% - 35px);
    left: 0;
    width: 100%;
    z-index: 3;

    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
}

.slider-button {
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    padding: 0;
    border: 0;
    outline: none;
    background-color: black;
    border-radius: 50%;
}

.slider-button i {
    color: white;
    font-size: 10px;
}

.slider-button-inline {
    background-color: transparent;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.slider-button-inline.swiper-button-disabled {
    opacity: .5;
}

.slider-button-inline i {
    color: black;
}

.section-head-btns {
    display: flex;
}

.rivers-slider,
.spa-slider {
    overflow: visible;
    margin-top: 40px;
}

.spa {
    background-color: var(--black);
}

.spa .section-heading {
    color: var(--light);
}

.spa .section-p {
    color: white;
}

.spa-slide {
    background-position: center bottom;
    padding-bottom: 590px;
}

.contacts .button-lg {
    font-size: 18px;
    font-weight: 500;
}

#rivers .section-p {
    color: var(--black);
}

.services {
    background-color: var(--green);
}

.services .section-heading {
    color: var(--light);
}

.service-item {
    background-color: var(--green-card);
    border-radius: 60px 0 60px;
    overflow: hidden;
    position: relative;
    padding: 180px 22px 40px;
    height: 100%;
}

.service-item__icon {
    width: 266px;
    height: 266px;
    position: absolute;
    top: -100px;
    right: -40px;
    background-color: var(--green-light);
    border-radius: 50%;
}

.service-item__icon i {
    position: absolute;
    bottom: 60px;
    left: 80px;
    font-size: 64px;
}

.service-item__title {
    color: var(--light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-item__text {
    font-size: 16px;
    font-weight: 400;
}

.section-text-top {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding: 30px 0 30px 50px;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 475px) {
    .section-text-top {
        padding: 0;
        border-left: none;
        font-size: 14px;
        margin-top: 1rem;
    }
}

.about-3 {
    background-color: var(--light);
    color: var(--green);
    font-weight: 400;
}

.section-about__title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
}