@charset "UTF-8";
:root {
    --gold: #bc8c64;
    --white: #fff;
    --black: #000;
}

@font-face {
    font-family: "TildaSans";
    src: local("TildaSans"), local("TildaSans"), url("../font/TildaSans-VF.woff2") format("woff2"), url("../font/TildaSans-VF.woff") format("woff"), url("../font/TildaSans-VF.ttf") format("truetype");
    font-style: normal;
}

#wpadminbar {
    display: none;
}

* {
    box-sizing: border-box;
}

.site-branding {
    top: 1px;
}

.site-branding img {
    width: 140px;
}

a:hover {
    color: inherit;
}

.main-page {
    padding-top: 200px;
}

.section-page {
    margin-bottom: 100px;
    position: relative;
}

.section-page .swiper-button-next, .section-page .swiper-button-prev {
    color: var(--gold);
}

body {
    font-family: "TildaSans", "Arial", sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: 20px;
    line-height: 36px;
    margin: 0 !important;
    padding: 0;
}

body.hidden {
    overflow: hidden;
}

body h2 {
    font-weight: 500;
}

.consulting {
    padding-top: 100px;
    padding-bottom: 50px;
    overflow: hidden;
}

.consulting form .wpcf7-response-output {
    display: none;
}

.consulting .consulting-form {
    display: flex;
    border-radius: 26px 0 0 26px;
    background-color: #21446b;
    background-position: center center;
    box-shadow: -11px 3px 12px 0px rgba(1, 17, 36, 0.7);
    align-items: center;
    padding: 10px 20px 10px 40px;
    gap: 20px;
    justify-content: flex-start;
    position: relative;
    border: none;
}

@media (max-width: 990px) {
    .consulting .consulting-form {
        flex-direction: column;
        border-radius: 20px;
        padding-bottom: 50px;
    }

    .consulting .consulting-form:after {
        display: none;
    }
}

.consulting .consulting-form:after {
    content: "";
    background-color: #21446b;
    height: 100%;
    left: 50%;
    width: 1000%;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    box-shadow: 0px 3px 12px 0px rgba(1, 17, 36, 0.7);
    position: absolute;
    z-index: -1;
    top: 0;
}

.consulting .consulting-form p {
    margin: 0;
    width: min-content;
    position: relative;
}

.consulting .consulting-form input {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    width: fit-content;
    padding: 0 20px;
    max-width: 250px;
}

@media (max-width: 990px) {
    .consulting .consulting-form input {
        max-width: 350px;
    }
}

@media (max-width: 580px) {
    .consulting .consulting-form input {
        max-width: 250px;
    }
}

.consulting .consulting-form .wpcf7-spinner {
    position: absolute;
    top: 100%;
    left: 25%;
}

.consulting .consulting-form [type=submit] {
    color: #fff;
    border-radius: 16px;
    font-size: 20px;
    cursor: pointer;
    background-color: #bc8c64;
    border-color: transparent;
    width: fit-content;
    max-width: none;
}

.consulting .consulting-form h3 {
    font-weight: 500;
    font-size: 30px;
}

@media (max-width: 580px) {
    .consulting .consulting-form h3 {
        text-align: center;
    }
}

.site-header {
    box-shadow: 0 2px 12px 0 var(--shadow-header);
    border-bottom: 1px solid var(--grey-f);
    padding-block: 20px;
    padding-inline: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    position: fixed;
    background-color: #042448;
    width: 100%;
    z-index: 9;
    top: 0;
}

@media (max-width: 990px) {
    .site-header {
        height: 72px;
        justify-content: flex-end;
    }
}

.site-header .main-navigation-left {
    margin-left: 160px;
}

.site-header .menu {
    column-gap: 30px;
    flex-wrap: wrap;
}

.site-header .menu a {
    font-size: 20px;
}

.site-header .menu .current-menu-item a {
    color: var(--white);
}

.site-header .main-navigation-right {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-header .mobile-menu {
    display: none;
    transition: transform 0.5s ease-in-out;
    background: rgba(33, 68, 107, 0.87);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.site-header .mobile-menu a {
    color: var(--white);
    font-size: 30px;
    line-height: 43px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
}

.site-header .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .mobile-menu ul li {
    text-align: center;
    margin-bottom: 15px;
}

.site-header .mobile-menu ul li.current_page_item a {
    color: var(--gold);
}

.site-header .mobile-menu .social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 990px) {
    .site-header .mobile-menu {
        display: flex;
        transform: translateY(-200vh);
        position: fixed;
        width: 100%;
        height: 100vh;
    }
}

.site-header.opened-menu .mobile-menu {
    transform: translateY(0);
    left: 0;
    top: 0;
}

.main-navigation {
    display: flex;
    column-gap: 30px;
}

.main-navigation li {
    height: min-content;
}

.main-navigation a {
    color: var(--gold);
    text-transform: uppercase;
}

.main-navigation .num {
    font-size: 24px;
}

.main-navigation .social {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 990px) {
    .main-navigation {
        position: absolute;
        display: none;
    }
}

.site-branding {
    position: absolute;
    left: 17px;
    z-index: 9;
}

@media (max-width: 990px) {
    .site-branding {
        left: 0;
        transform: translate(20px, 6px);
    }

    .site-branding img {
        width: 90px;
    }
}

.t-menuburger {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
    z-index: 999;
    display: none;
}

@media (max-width: 990px) {
    .t-menuburger {
        display: flex;
    }
}

.t-menuburger span {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    height: 5px;
    background-color: #000;
}

.t-menuburger span:nth-child(1) {
    top: 0px;
}

.t-menuburger span:nth-child(2), .t-menuburger span:nth-child(3) {
    top: 13px;
}

.t-menuburger span:nth-child(4) {
    top: 26px;
}

.t-menuburger-opened span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.t-menuburger-opened span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.t-menuburger-opened span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.t-menuburger-opened span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.swiper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(100% - 50px, 1200px);
    margin-inline: auto;
}

.pos-abs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

@media (max-width: 580px) {
    .pos-abs {
        padding-inline: 20px;
    }
}

.pos-abs .wrapper {
    max-width: 1440px;
    margin: auto;
    width: 100%;
    padding: 0 80px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    padding-top: 136px;
}

@media (max-width: 1098px) {
    .pos-abs .wrapper {
        padding-top: 200px;
    }
}

@media (max-width: 990px) {
    .pos-abs .wrapper {
        padding-top: 120px;
        justify-content: center;
    }
}

.pos-abs .cover__content {
    position: absolute;
    border-radius: 26px;
    background-color: rgba(255, 255, 255, 0.8);
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    box-shadow: 0px 3px 12px 0px rgb(1, 17, 36);
    padding: 30px 20px 40px 20px;
    color: #000;
}

@media (max-width: 990px) {
    .pos-abs .cover__content {
        padding: 13px 20px 13px 20px;
    }
}

.pos-abs .cover__content h2 {
    margin-top: 0;
    font-size: 18px;
    text-align: center;
}

.pos-abs .cover__content p {
    margin-top: 0;
    font-size: 16px;
    text-align: center;
    justify-content: center;
}

@media (max-width: 990px) {
    .pos-abs .cover__content p {
        line-height: 23px;
    }
}

.pos-abs .cover__content form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.pos-abs .cover__content form .consulting-form h3 {
    display: none;
}

.pos-abs .cover__content form .consulting-form input {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    width: 100%;
    padding: 0 20px;
    max-width: 100%;
    margin-bottom: 30px;
}

.pos-abs .cover__content form .consulting-form .wpcf7-spinner {
    position: absolute;
    top: 100%;
    left: 25%;
}

.pos-abs .cover__content form .consulting-form [type=submit] {
    color: #fff;
    border-radius: 16px;
    font-size: 20px;
    cursor: pointer;
    background-color: #bc8c64;
    border-color: transparent;
    width: 100%;
    max-width: 100%;
}

.pos-abs .cover__content form .wpcf7-response-output {
    display: none !important;
}

.hero {
    height: 100vh;
    position: relative;
    padding-top: 76px;
}

@media (max-width: 1763px) {
    .hero {
        padding-top: 106px;
    }
}

@media (max-width: 1098px) {
    .hero {
        padding-top: 150px;
    }
}

@media (max-width: 990px) {
    .hero {
        padding-top: 72px;
    }
}

@media (max-height: 845px) and (max-width: 990px) {
    .hero {
        height: 1200px;
    }
}

@media (max-width: 500px) {
    .hero {
        height: 100vh;
    }

    .hero .hero-text {
        padding-block: 10px !important;
        bottom: 50px !important;
    }

    .hero .hero-text h1 {
        font-size: 23px !important;
        margin-bottom: 0 !important;
    }

    .hero .hero-text p {
        font-size: 16px !important;
    }
}

.hero > img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: bottom;
}

.hero .hero-text {
    position: absolute;
    bottom: 100px;
    border-radius: 26px;
    opacity: 0.75;
    background-color: #042447;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    height: auto;
    box-shadow: 0px 3px 12px 0px rgb(1, 17, 36);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    padding-right: 74px;
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-height: 845px) {
    .hero .hero-text {
        bottom: 25px;
    }
}

@media (max-width: 768px) {
    .hero .hero-text {
        padding-left: 20px;
        padding-right: 50px;
    }
}

.hero h1 {
    margin-top: 0;
    line-height: 1.4em;
    font-size: 48px;
    font-weight: 400;
}

@media (max-height: 920px) {
    .hero h1 {
        font-size: 38px;
        margin-bottom: 0;
    }
}

@media (max-width: 990px) {
    .hero h1 {
        font-size: 40px;
    }
}

.hero p {
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.kvartal {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .kvartal {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.kvartal .box {
    width: min(100% - 50px, 1440px);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 990px) {
    .kvartal .box {
        flex-direction: column;
        align-items: center;
    }

    .kvartal .box > div:first-child {
        width: 100%;
    }

    .kvartal .box > div:first-child img {
        width: 100%;
    }
}

.kvartal .box > div:last-child {
    max-width: 610px;
    width: 100%;
    position: relative;
    line-height: 31px;
}

@media (max-width: 768px) {
    .kvartal .box > div:last-child {
        max-width: max-content;
        font-size: 16px;
        line-height: 23px;
    }
}

.kvartal .box > div:last-child:before {
    content: "";
    background-image: url("../img/dec.png");
    width: 360px;
    height: 360px;
    position: absolute;
    left: 32%;
    top: 65%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    z-index: -1;
}

@media (max-width: 768px) {
    .kvartal .box > div:last-child:before {
        z-index: 0;
        left: 75%;
        top: 57%;
        transform: translate(-28%, -50%);
        width: 460px;
        height: 460px;
    }
}

.kvartal h2 {
    font-size: 20px;
    position: relative;
    margin-bottom: 46px;
    max-width: 464px;
}

@media (max-width: 768px) {
    .kvartal h2 {
        max-width: max-content;
        font-size: 16px;
        line-height: 23px;
    }
}

.kvartal h2:before {
    content: "";
    border-radius: 26px;
    background-color: #21446b;
    height: 86px;
    left: -24px;
    width: 1000%;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    box-shadow: 0px 3px 12px 0px rgba(1, 17, 36, 0.7);
    position: absolute;
    z-index: -1;
    top: -2px;
}

@media (max-width: 768px) {
    .kvartal h2:before {
        border-radius: 26px;
        background-color: #21446b;
        height: 92px;
        right: 0;
        width: 1000%;
        background-position: center center;
        border-color: transparent;
        border-style: solid;
        box-shadow: 0px 3px 12px 0px rgba(1, 17, 36, 0.7);
        position: absolute;
        z-index: -1;
        top: -15px;
        left: auto;
    }
}

.kvartal p {
    max-width: 464px;
}

@media (max-width: 768px) {
    .kvartal p {
        max-width: max-content;
    }
}

.kvartal img {
    border-radius: 30px;
}

.kvartal ul {
    margin: 0;
    padding-left: 15px;
    position: relative;
    max-width: 464px;
}

@media (max-width: 768px) {
    .kvartal ul {
        max-width: max-content;
    }
}

.expiriense {
    padding-top: 100px;
}

@media (max-width: 768px) {
    .expiriense {
        padding-top: 60px;
    }
}

.expiriense ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 990px) {
    .expiriense ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .expiriense ul {
        grid-template-columns: 1fr;
    }
}

.expiriense li {
    border-radius: 26px;
    background-color: #21446b;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    box-shadow: 0px 3px 12px 0px rgba(1, 17, 36, 0.7);
    padding: 30px 0 40px;
}

@media (max-width: 768px) {
    .expiriense li {
        padding: 18px 0 15px;
    }
}

.expiriense li h3 {
    font-size: 48px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .expiriense li h3 {
        font-size: 34px;
    }
}

.expiriense li p {
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .expiriense li p {
        font-size: 16px;
    }
}

@media (max-width: 580px) {
    .expiriense li p {
        font-size: 13px;
    }
}

.expiriense li div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.features {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

@media (max-width: 990px) {
    .features {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .features {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.features .box {
    width: min(100% - 50px, 1440px);
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 990px) {
    .features .box {
        flex-direction: column-reverse;
        align-items: center;
    }
}

.features .box:after {
    content: "";
    background-image: url("../img/dec2.svg");
    width: 1400px;
    height: 1400px;
    position: absolute;
    opacity: 0.1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
    /* left: -46%; */
    /* top: 10%; */
    z-index: -1;
    transform: translate(-53%, -1%);
}

@media (max-width: 768px) {
    .features .box:after {
        display: none;
    }
}

.features .box h2 {
    font-size: 20px;
    margin-bottom: 60px;
    line-height: 30px;
    z-index: 9;
    max-width: 488px;
}

.features .box h2:before {
    content: "";
    border-radius: 26px;
    background-color: #21446b;
    height: 92px;
    right: 0;
    width: 1000%;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    box-shadow: 0px 3px 12px 0px rgba(1, 17, 36, 0.7);
    position: absolute;
    z-index: -1;
    top: -15px;
}

@media (max-width: 768px) {
    .features .box h2 {
        max-width: 100%;
        font-size: 16px;
        line-height: 23px;
    }
}

.features .box > div:first-child {
    max-width: 610px;
    width: 100%;
    justify-items: flex-end;
    position: relative;
}

@media (max-width: 768px) {
    .features .box > div:first-child {
        font-size: 16px;
        line-height: 23px;
        max-width: max-content;
        justify-items: initial;
    }

    .features .box > div:first-child:before {
        position: absolute;
        opacity: 0.1;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        border-color: transparent;
        border-style: solid;
        content: "";
        background-image: url("../img/dec.png");
        z-index: 0;
        left: 75%;
        top: 57%;
        transform: translate(-35%, -67%);
        width: 460px;
        height: 460px;
    }
}

.features .box > div:last-child {
    height: fit-content;
    position: relative;
    line-height: 31px;
}

.features .box > div:last-child:before {
    content: "";
    background-image: url("../img/dec.png");
    width: 360px;
    height: 360px;
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
}

@media (max-width: 768px) {
    .features .box > div:last-child:before {
        display: none;
    }
}

.features .box > div:last-child img {
    border-radius: 30px;
}

.features .box > div p {
    max-width: 488px;
}

@media (max-width: 768px) {
    .features .box > div p {
        max-width: max-content;
    }
}

.features .box > div ul {
    margin: 0;
    padding-left: 15px;
    position: relative;
    max-width: 488px;
}

@media (max-width: 768px) {
    .features .box > div ul {
        max-width: max-content;
    }

    .features .box > div ul li strong {
        font-weight: 500;
    }
}

.slider .swiper-button-next:after, .slider .swiper-rtl .swiper-button-prev:after {
    content: "";
}

.slider .swiper-button-prev:after, .slider .swiper-rtl .swiper-button-next:after {
    content: "";
}

.slider .swiper-button-prev svg {
    transform: rotate(-180deg);
}

.slider img {
    width: 100%;
}

.video {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .video {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.video h2 {
    font-size: 48px;
    line-height: 60px;
    margin-top: 0;
    font-weight: 400;
    margin-bottom: 40px;
}

.video .box {
    display: flex;
    gap: 40px;
}

.video .box iframe {
    width: 100%;
}

@media (max-width: 990px) {
    .video .box {
        flex-direction: column;
        align-items: center;
    }

    .video .box > div:first-child {
        width: 100%;
    }

    .video .box iframe {
        width: 100%;
    }
}

.video .box > div:first-child {
    flex: 1;
}

.video .box > div:last-child {
    max-width: 460px;
    position: relative;
    line-height: 31px;
}

.video .box > div:last-child p:first-child {
    margin-top: 0;
}

.video .box > div:last-child:before {
    content: "";
    background-image: url("../img/dec3.png");
    width: 360px;
    height: 360px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: transparent;
    border-style: solid;
}

.project {
    line-height: 20px;
}

.project h2 {
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 60px;
}

.project ul {
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 990px) {
    .project ul {
        grid-template-columns: 1fr;
    }
}

.project ul li {
    position: relative;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    height: fit-content;
}

.project ul li > a div:last-child {
    padding-inline: 20px;
}

.project ul li img {
    width: 100%;
}

.project ul li:nth-child(3n+1), .project ul li:nth-child(3n+3) {
    margin-top: 30px;
}

.project ul p {
    font-size: 16px;
}

.project ul a {
    text-decoration: none;
    color: #fff;
}

.department {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .department {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.department .box {
    display: flex;
    gap: 40px;
}

@media (max-width: 990px) {
    .department .box {
        flex-direction: column-reverse;
        align-items: center;
    }
}

.department .box > div {
    max-width: 370px;
    width: 100%;
}

@media (max-width: 990px) {
    .department .box > div {
        text-align: center;
    }
}

.department .box > div h4 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--gold);
}

.department .box > div p {
    margin: 0;
}

.department .box > div p a {
    color: #fff;
    text-decoration: none;
}

.department .box > div p:nth-last-of-type(2) {
    margin-top: 25px;
}

.department .box > div p:last-of-type {
    margin-top: 25px;
}

.department .box > a {
    border-width: 4px;
    border-radius: 26px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-color: #9ac1d6;
    border-style: solid;
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.site-footer {
    padding-block: 50px;
}

.site-footer .site-info {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 990px) {
    .site-footer .site-info {
        flex-direction: column;
        gap: 35px;
        align-items: center;
    }

    .site-footer .site-info * {
        text-align: center;
    }
}

.site-footer .site-info .social-wrapper {
    margin-top: 40px;
}

.site-footer .site-info .social-wrapper > a {
    width: 25px;
    display: inline-block;
}

.site-footer .site-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer .site-info .logo {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.site-footer .site-info .logo > div {
    margin-top: 30px;
}

.site-footer .site-info .logo img {
    width: 120px;
}

.site-footer .site-info h2 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0;
}

.site-footer .site-info > div a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.site-footer .site-info > div p {
    margin: 0;
    font-size: 16px;
}

.page-build h2 {
    font-size: 48px;
    margin-top: 0;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 60px;
}

.building-item {
    display: flex;
    gap: 40px;
}

@media (max-width: 1068px) {
    .building-item {
        flex-direction: column;
    }
}

.building-thumbnail {
    min-width: 0;
    width: 100%;
}

.building-thumbnail img {
    border-radius: 26px;
}

@media (max-width: 1068px) {
    .building-thumbnail img {
        width: 100%;
    }
}

.building-link {
    display: flex;
    margin-top: 40px;
}

.building-link a {
    height: 60px;
    border-radius: 26px;
    font-size: 16px;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    padding: 0 50px;
}

.building-content {
    max-width: 560px;
    flex: 1 0 560px;
}

.building-content h2 {
    margin-top: 0;
    font-size: 36px;
}

.building-content > p {
    margin-top: 0;
    font-size: 36px;
    margin-bottom: 28px;
}

.building-content > p:nth-of-type(2) {
    display: none;
}

.building-content ul {
    margin: 0;
    padding-left: 10px;
    padding-right: 100px;
    font-weight: 300;
    line-height: 31px;
}

.building-thumb {
    display: flex;
}

.building-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.building-item-swiper {
    border-radius: 36px;
    overflow: hidden;
    text-decoration: none;
}

.swiperBuilding .swiper-slide {
    border-radius: 36px;
    overflow: hidden;
}

.swiperBuilding .swiper-button-next {
    color: var(--gold);
}

.swiperBuilding .swiper-button-prev {
    color: var(--gold);
}

.building-title {
    background: #21446b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-title h3 {
    padding: 10px 0;
    font-size: 20px;
    text-decoration: none;
    color: var(--white);
    margin: 0;
}

.gallery {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 0 552px;
}

.gallery-content {
    padding-right: 50px;
}

.gallery-content p:nth-of-type(1) {
    margin-top: 0;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 28px;
}

.gallery-content p:nth-of-type(2) {
    margin-top: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 100;
}

.gallery-content li {
    font-weight: 300;
}

.gallery__main {
    width: 100%;
}

.gallery__main .swiper-slide img {
    width: 100%;
    height: 495px;
    object-fit: cover;
}

.gallery__thumbs {
    width: 100%;
}

.gallery__thumbs .swiper-slide {
    width: auto;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.gallery__thumbs .swiper-wrapper {
    flex-wrap: wrap;
}

.gallery__thumbs .swiper-slide img {
    max-height: 60px;
    object-fit: cover;
    height: 100%;
}

.gallery__thumbs .swiper-slide-thumb-active {
    border-color: #0073aa;
}

.documents-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .documents-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .documents-container {
        grid-template-columns: 1fr;
    }
}

.documents-container .document-item a {
    background: #21446b;
    color: var(--white);
    text-decoration: none;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 27px 10px;
    border-radius: 28px;
}

.page-planning {
    background: #f3f3f3;
    color: var(--black);
    padding-bottom: 100px;
    padding-top: 130px;
}

@media (max-width: 990px) {
    .page-planning {
        padding-top: 40px;
    }
}

.page-planning .container {
    position: relative;
    width: min(100% - 50px, 1660px);
}

.planning-container > .swiper-pagination {
    position: static;
    margin-top: 38px;
}

.planning-container > .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(4, 36, 71, 0.3019607843);
    width: 20px;
    height: 20px;
}

.planning-container > .swiper-pagination .swiper-pagination-bullet-active {
    background-color: rgba(4, 36, 71, 0);
    border: 4px solid rgba(4, 36, 71, 0.3019607843);
}

@media (min-width: 768px) {
    .planning-container > .swiper-pagination {
        display: none;
    }
}

@media (min-width: 769px) {
    .planning-container > .swiper-wrapper {
        display: grid;
        column-gap: 24px;
        row-gap: 24px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .planning-container > .swiper-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .planning-container > .swiper-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.planning-details {
    background-color: #BC8C64;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 25px;
    color: var(--white);
    font-size: 18px;
    flex: 1;
}

@media (max-width: 580px) {
    .planning-details {
        width: 100%;
    }
}

.img-mob {
    display: none;
}

@media (max-width: 768px) {
    .img-mob {
        display: flex;
        aspect-ratio: 0.8;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .img-desc {
        display: none;
    }
}

#popup-content .img-desc {
    max-width: 1292px;
    width: 100%;
}

.mobile-close {
    display: none;
}

@media (max-width: 768px) {
    .mobile-close {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
    }
}

.planning-zoom {
    display: flex;
}

.planning-text {
    font-weight: 700;
}

.planning-item {
    cursor: pointer;
    padding: 20px;
    background-color: var(--white);
    border-radius: 26px;
    border: 1px solid #E5E5E5;
}

.planning-item .planning-bottom {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 25px;
}

.planning-item .planning-thumbnail {
    text-align: center;
}

.planning-item img {
    object-fit: contain;
    min-height: 350px;
    max-height: 350px;
}

.planning-item .planning-thumbnail-slider img {
    height: 350px;
}

.planning-item .planning-thumbnail-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.planning-item .planning-thumbnail-slider .swiper-pagination-custom {
    position: absolute;
    bottom: -10px;
    z-index: 9999;
}

.planning-item .planning-thumbnail-slider .swiper-pagination-custom .swiper-pagination-bullet {
    background-color: rgba(4, 36, 71, 0.3019607843);
    width: 10px;
    height: 10px;
}

.planning-item .planning-thumbnail-slider .swiper-pagination-custom .swiper-pagination-bullet-active {
    background-color: rgba(4, 36, 71, 0);
    border: 1px solid rgba(4, 36, 71, 0.3019607843);
}

.planning-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.planning-field.img {
    height: 360px;
}

.planning-field.img img {
    height: 100%;
}

.planning-field:not(.room) .planning-text {
    font-weight: 400;
}

.planning-field:not(.room) strong {
    font-weight: 400;
}

.planning-field.room strong {
    display: none;
}

.planning-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.planning-popup-top {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 22px;
    margin-top: 35px;
}

.planning-popup-top h2 {
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

.planning-popup-top span {
    display: flex;
    white-space: nowrap;
    background-color: #BC8C64;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 34px;
    color: var(--white);
    width: fit-content;
    border-radius: 38px;
}

#popup-content {
    display: flex;
    justify-content: center;
    color: var(--black);
    gap: 50px;
}

@media (max-width: 768px) {
    #popup-content {
        flex-direction: column;
        gap: 20px;
        max-width: 95%;
        width: 100%;
        margin: auto;
    }
}

#popup-content .acf-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#popup-content .acf-field {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    border-bottom: 1px solid #E5E5E5;
}

#popup-content .planning-image {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

#popup-content .planning-image img {
    aspect-ratio: 1;
    object-fit: contain;
    height: 100%;
}

@media (max-width: 768px) {
    #popup-content .planning-image {
        max-width: 100%;
    }
}

#popup-content .planning-wrapper {
    max-width: 500px;
    width: 100%;
}

#popup-content .planning-wrapper > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-weight: 400;
}

#popup-content .planning-wrapper > div strong {
    font-weight: 400;
}

#popup-content .planning-wrapper > div:first-child {
    font-weight: 700;
}

#popup-content .planning-wrapper > div:first-child strong {
    display: none;
}

.planning-feat {
    margin-bottom: 32px;
}

.planning-feat ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.planning-feat li {
    border-radius: 16px;
    background-color: #F3F3F3;
    height: 26px;
    padding-inline: 8px;
    font-size: 10px;
    color: #042447;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planning-popup-header {
    padding: 14px 0;
    background-color: #042447;
    display: flex;
    justify-content: center;
}

.planning-popup-header .planning-popup-title {
    color: #BC8C64;
    font-size: 28px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .planning-popup-header .planning-popup-title {
        font-size: 18px;
    }
}

.planning-popup-header > div {
    width: min(100% - 50px, 1440px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .planning-popup-header {
        display: none;
    }
}

.planning-popup-inner {
    width: 100%;
}

.planning-popup-content-wrapper {
    display: flex;
    gap: 96px;
    max-width: 1440px;
    width: 100%;
    margin-inline: auto;
    position: relative;
}

.planning-popup-content-wrapper > div {
    flex: 1;
}

.planning-popup-content-wrapper ul {
    flex: 1;
    margin: 0;
    padding: 0;
}

@media (max-width: 660px) {
    .planning-popup-content-wrapper ul {
        display: none;
    }
}

.planning-popup-content-wrapper ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.planning-popup-content-wrapper ul li svg {
    flex: 0 0 auto;
}

.planning-popup-content-wrapper ul li span {
    color: #0F0F0F;
}

@media (max-width: 768px) {
    .planning-popup-content-wrapper {
        height: 100%;
    }
}

.wrapper-modal {
    width: 100%;
    height: 100vh;
    z-index: 9999999;
    position: relative;
}

.wrapper-modal .hero__gift {
    border-radius: 16px;
}

.wrapper-modal .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.8);
}

.wrapper-modal .show {
    cursor: pointer;
}

.wrapper-modal .modal-window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    max-width: 600px;
    background-color: white;
    border-radius: 24px;
    margin: 0 auto;
    width: 100%;
    color: #0E0F10;
}

@media (max-width: 768px) {
    .wrapper-modal .modal-window {
        max-width: 90%;
    }
}

.wrapper-modal .content {
    overflow: auto;
    max-height: 784px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 48px;
}

.wrapper-modal .content__top {
    text-align: center;
    font-size: 20px;
}

@media (max-width: 768px) {
    .wrapper-modal .content__top {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .wrapper-modal .content {
        padding: 32px 16px;
    }
}

.wrapper-modal .content img {
    height: 48px;
}

@media (max-width: 768px) {
    .wrapper-modal .content img {
        height: 32px;
    }
}

.wrapper-modal .content h2 {
    color: var(--black);
    text-align: center;
    margin-top: 24px;
    margin-bottom: 40px;
}

.wrapper-modal .content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wrapper-modal .content form label input {
    border-radius: 4px;
    width: 100%;
    height: 59px;
    padding: 0 24px;
    background-color: transparent;
    color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--grey-i);
    margin-top: 5px;
}

.wrapper-modal .content form label > div {
    display: block;
    position: absolute;
    left: 0;
    bottom: -10px;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    font-weight: 300;
    font-size: 12px;
    line-height: 130%;
    color: rgb(149, 57, 20);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wrapper-modal .content form label._error > div {
    visibility: visible;
    opacity: 1;
    bottom: -19px;
}

.wrapper-modal .content form input {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    height: 48px;
    width: 100%;
    padding: 0 20px;
    max-width: 100%;
}

.wrapper-modal .content form [type=submit] {
    color: #fff;
    border-radius: 16px;
    font-size: 20px;
    cursor: pointer;
    background-color: #bc8c64;
    border-color: transparent;
    width: 100%;
    max-width: 100%;
}

.wrapper-modal .content form textarea {
    background-color: transparent;
    height: 137px;
    border-radius: 8px;
    border: 1px solid #FFF;
}

.wrapper-modal .content form button {
    color: white;
    max-width: 400px;
    margin-inline: auto;
    cursor: pointer;
}

.wrapper-modal .content form div {
    margin-top: 47px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px; /* 118.75% */
    letter-spacing: -0.32px;
    text-align: center;
}

.wrapper-modal .content form a {
    margin-top: 17px;
    max-width: 100%;
}

.wrapper-modal .close {
    position: absolute;
    right: 25px;
    top: 25px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.1019607843);
    border-radius: 50%;
    padding: 3px;
}

@media (max-width: 768px) {
    .wrapper-modal .close {
        right: 10px;
        top: 10px;
    }
}

.filter {
    position: absolute;
    right: 0;
}

@media (max-width: 768px) {
    .filter {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 100px;
    }
}

.filter .filter-buttons {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.filter .filter-buttons li {
    border: 1px solid #BC8C64;
    color: #BC8C64;
    border-radius: 16px;
    font-size: 16px;
    padding-inline: 12px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.filter .filter-buttons li:not(.active) {
    cursor: pointer;
}

.filter .filter-buttons li.active {
    background-color: #BC8C64;
    color: var(--white);
}

.planning-item.swiper-slide {
    min-width: 0;
}

.planning-item.swiper-slide img {
    text-align: center;
    aspect-ratio: 1;
}

h2.planning-term-title {
    margin-top: 74px;
    margin-bottom: 46px;
    font-size: 22px;
    color: #042447;
}

@media (max-width: 768px) {
    h2.planning-term-title {
        margin-top: 44px;
        margin-bottom: 24px;
    }
}

h3.planning-term-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 400;
    margin-block: 12px;
}

.planning-new {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.planning-new > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.planning-new > div span:first-child {
    font-size: 16px;
    color: #8F8F8F;
    line-height: 20px;
}

.planning-new > div span:last-child {
    font-size: 18px;
    color: #0F0F0F;
    line-height: 20px;
}

.planning-popup-content {
    background: #fff;
    width: 90%;
    height: 78%;
    position: relative;
    overflow: auto;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .planning-popup-content {
        padding-inline: 20px;
        border-radius: 26px;
    }
}

#popup-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0;
    cursor: pointer;
}

.zoom-container {
    position: relative;
    overflow: hidden; /* Скрываем выходящие части изображения */
    width: 100%; /* Задайте фиксированную ширину */
    max-width: 50%; /* Максимальная ширина контейнера */
    height: 60vh; /* Высота области для просмотра */
    cursor: crosshair; /* Курсор для эффекта лупы */
}

.zoom-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Исходный размер */
    height: 100%; /* Исходный размер */
    object-fit: contain;
    transition: transform 0.2s ease-out; /* Плавное увеличение */
    transform-origin: center; /* Точка увеличения */
    object-position: top;
    cursor: zoom-in;
}

.page-buying {
    padding-bottom: 100px;
}

.buyings {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .buyings {
        grid-template-columns: 1fr;
    }
}

.buyings li {
    margin: 0;
    padding: 27px 30px;
    background: #22446b;
    border-radius: 10px;
    cursor: pointer;
}

.buyings li h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 38px;
    font-weight: 500;
}

.buyings li h3 {
    margin-top: 0;
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 52px;
    font-weight: 400;
}

.buyings li p {
    font-size: 18px;
    margin: 0;
}

.single-building {
    padding-top: 100px;
    padding-bottom: 100px;
}

.single-building .swiper-slide {
    display: flex;
}

.single-building h1 {
    margin-top: 0;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1em;
}

.single-building ul {
    margin: 0;
    padding-left: 20px;
    font-weight: 300;
    line-height: 31px;
}

.building-wrapper {
    display: flex;
    gap: 60px;
}

@media (max-width: 1068px) {
    .building-wrapper {
        flex-direction: column;
    }
}

.building-wrapper > div:first-child {
    min-width: 0;
    width: 100%;
}

.page-news {
    padding-bottom: 100px;
}

.page-news .container {
    position: relative;
    padding: 0 80px;
}

@media (max-width: 768px) {
    .page-news .container {
        padding: 0 25px;
    }

    .page-news .container .swiper-button-next {
        right: -10px;
    }

    .page-news .container .swiper-button-prev {
        left: -10px;
    }
}

.page-news .container .swiper-slide img {
    border-radius: 26px;
}

.page-news .swiper-button-next {
    color: var(--gold);
}

.page-news .swiper-button-prev {
    color: var(--gold);
}

/*# sourceMappingURL=style.css.map */
