/* Подключение шрифта Nunito Sans из Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   Базовые стили
   ========================================================================== */

body {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    line-height: normal;
    color: #5f5f63;
    background: #fff;
}

body.popup-open {
    overflow: hidden;
}

body::after {
    content: "";
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23,23,23,.47);
    z-index: 10;
}

body.popup-open::after {
    display: block;
}

body.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   Сброс стилей и базовые элементы
   ========================================================================== */

* {
    margin: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

input:focus-visible::-moz-placeholder {
    font-size: 0;
}

input:focus-visible::placeholder {
    font-size: 0;
}

button {
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

/* ==========================================================================
   Контейнеры и структура
   ========================================================================== */

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 1240px;
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

html::-webkit-scrollbar {
    display: none;
}

/* ==========================================================================
   Хедер
   ========================================================================== */

.header {
    position: fixed;
    width: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    border-bottom: 1px solid #ccc;
    opacity: 0;
    transform: translateY(-100px);
    background-color: rgba(0,0,0,0);
    transition: background-color .3s ease, opacity 1.5s .2s ease-in-out, transform 1.5s .2s ease-in-out;
    display: flex;
    justify-content: center;
}

.header.active {
    opacity: 1;
    transform: translateY(0px);
}

@media(max-width: 1050px) {
    .header {
        border-bottom: none;
    }
}

.header .header-top {
    display: flex;
    justify-content: space-between;
    padding-top: 26.5px;
    padding-bottom: 26.5px;
}

.header .header-top .header-content {
    display: flex;
    align-items: center;
    -moz-column-gap: 76px;
    column-gap: 76px;
}

.header .header-top .header-content .contact-header,
.header .header-top .header-content .contact-header-mobile {
    padding-left: 37px;
    padding-right: 37px;
    height: 49px;
    display: flex;
    justify-content: center;
    border: 0;
    align-items: center;
    background-color: #163752;
    text-transform: uppercase;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 17.7px;
    border-radius: 10px;
    transition: box-shadow .3s ease-in-out;
}

.header .header-top .header-content .contact-header:hover,
.header .header-top .header-content .contact-header-mobile:hover {
    box-shadow: 0px 5px 8px 0px rgba(0,0,0,.2509803922);
}

/* ==========================================================================
   Мобильное меню
   ========================================================================== */

.header .header-top .mobile-menu {
    display: flex;
    align-items: center;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 15px; /* Восстановлен отступ из оригинала */
    background: #fff;
    transform: translateX(-100%);
    transition: transform 1s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header .header-top .mobile-menu.active {
    transform: translateX(0);
}

.header .header-top .mobile-menu .container {
    opacity: .2;
    transition: opacity 2s ease-in-out;
}

.header .header-top .mobile-menu .container.active {
    opacity: 1;
}

@media(max-width: 767px) {
    .header .header-top .mobile-menu .container {
        padding: 0px; /* Восстановлен отступ для мобильной версии */
    }
}

.header .header-top .mobile-menu #menu-header-menu,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 15px; /* Добавлен отступ слева из оригинала */
}

.header .header-top .mobile-menu #menu-header-menu a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur a {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 37.77px;
    text-transform: uppercase;
}

.header .header-top .mobile-menu #menu-header-menu .sub-menu,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng .sub-menu,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur .sub-menu {
    display: flex;
    flex-direction: column;
    row-gap: 11px;
    padding-top: 3px;
    padding-left: 15px; /* Добавлен отступ слева для подменю */
}

.header .header-top .mobile-menu #menu-header-menu .sub-menu a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng .sub-menu a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur .sub-menu a {
    color: #999;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.5px;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
}

.header .header-top .mobile-menu #menu-header-menu .sub-menu a:hover,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng .sub-menu a:hover,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur .sub-menu a:hover {
    color: #fff;
}

/* ==========================================================================
   Кнопка меню
   ========================================================================== */

.header .header-top .menu-btn {
    display: flex;
    gap: 10px;
    width: 32px;
    height: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}

.header .header-top .menu-btn span {
    width: 32px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #163752;
    transition: all .5s;
}

/* ==========================================================================
   Футер
   ========================================================================== */

.footer {
    margin-top: auto;
    border-top: 1px solid #ccc;
    position: relative;
    z-index: 2;
}

.footer .footer-nav a {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
    text-transform: lowercase;
}

/* ==========================================================================
   Каталог
   ========================================================================== */

.main-catalogue .catalogue-title {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 64px;
    font-weight: 700;
    line-height: 76px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    max-width: 700px;
}

/* ==========================================================================
   Посты
   ========================================================================== */

.post_template .post-hero-content h1 {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-transform: uppercase;
}

/* ==========================================================================
   Медиа-запросы
   ========================================================================== */

@media(max-width: 767px) {
    .main-catalogue .catalogue-title {
        font-size: 32px;
        line-height: 37.77px;
    }
}
/* ==========================================================================
   Кнопки на сайте
   ========================================================================== */

.phone-button-through-site {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    right: 0;
    top: 50%;
    width: 92px;
    height: 73px;
    background-color: rgba(22,55,82,.4);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 3;
    transform: translateX(100%);
    transform-origin: left;
    transition: transform .6s .3s ease-in-out;
}

@media(max-width: 767px) {
    .phone-button-through-site {
        top: 30%;
        right: -25px;
    }
}

.phone-button-through-site.active {
    transform: translateX(0%);
    transform-origin: right;
}

.phone-button-through-site .phone-container {
    display: flex;
    align-items: center;
    background-color: #1c5a95;
    position: fixed;
    padding: 15px 41px 15px 15px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 10;
}

.phone-button-through-site .phone-container .phone-button-main {
    cursor: pointer;
}

.contact-button-through-site {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    right: 0;
    top: 50%;
    width: 195px;
    height: 80px;
    background-color: rgba(22,55,82,.1019607843);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 3;
    transform: translateX(100%);
    transform-origin: left;
    transition: transform .6s .6s ease-in-out;
}

@media(max-width: 767px) {
    .contact-button-through-site {
        top: 30%;
    }
}

.contact-button-through-site.active {
    transform: translateX(0%);
    transform-origin: right;
}

.contact-button-through-site .contact-buttons-container {
    display: flex;
    align-items: center;
    background-color: #1c5a95;
    position: fixed;
    padding: 15px 19px 13px 23px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 10;
}

.contact-button-through-site .contact-buttons-container ul {
    display: flex;
    align-items: center;
    -moz-column-gap: 26px;
    column-gap: 26px;
}

.contact-button-through-site .contact-buttons-container ul li .contact-button {
    cursor: pointer;
    max-height: 30px;
    max-width: 30px;
}

.contact-button-through-site .contact-buttons-container ul li .contact-button:hover {
    filter: drop-shadow(0px 6px 19px rgba(19, 19, 19, 0.3019607843));
}

/* ==========================================================================
   Состояния и оверлей
   ========================================================================== */

.inactive {
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    z-index: 9999;
}

#overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

/* ==========================================================================
   Хедер
   ========================================================================== */

.header {
    position: fixed;
    width: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    border-bottom: 1px solid #ccc;
    opacity: 0;
    transform: translateY(-100px);
    background-color: rgba(0,0,0,0);
    transition: background-color .3s ease, opacity 1.5s .2s ease-in-out, transform 1.5s .2s ease-in-out;
    display: flex;
    justify-content: center;
}

.header.active {
    opacity: 1;
    transform: translateY(0px);
}

@media(max-width: 1050px) {
    .header {
        border-bottom: none;
    }
}

.header::after {
    content: "";
    display: none;
    position: absolute;
    width: 100vw;
    height: .5px;
    background: linear-gradient(180deg, #FFFFFF 0%, #D9D9D9 98.96%);
    bottom: 0;
    z-index: 1;
}

@media(max-width: 1240px) {
    .header .container::before,
    .header .container::after {
        display: none;
    }
}

@media(max-width: 767px) {
    .header .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.header .header-top {
    display: flex;
    justify-content: space-between;
    padding-top: 26.5px;
    padding-bottom: 26.5px;
}

.header .header-top .header-content {
    display: flex;
    align-items: center;
    -moz-column-gap: 76px;
    column-gap: 76px;
}

.header .header-top .header-content .contact-header,
.header .header-top .header-content .contact-header-mobile {
    padding-left: 37px;
    padding-right: 37px;
    height: 49px;
    display: flex;
    justify-content: center;
    border: 0;
    align-items: center;
    background-color: #163752;
    text-transform: uppercase;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 17.7px;
    border-radius: 10px;
    transition: box-shadow .3s ease-in-out;
}

.header .header-top .header-content .contact-header:hover,
.header .header-top .header-content .contact-header-mobile:hover {
    box-shadow: 0px 5px 8px 0px rgba(0,0,0,.2509803922);
}

.header .header-top .header-content .contact-header:active,
.header .header-top .header-content .contact-header-mobile:active {
    background-color: #1b4465;
}

@media(max-width: 767px) {
    .header .header-top .header-content .contact-header {
        display: none;
    }
}

.header .header-top .header-content .contact-header-mobile {
    display: none;
    width: 350px;
    max-width: 100%;
    margin-top: 58px;
    padding-left: unset;
    padding-right: unset;
}

@media(max-width: 767px) {
    .header .header-top .header-content .contact-header-mobile {
        display: flex;
    }
}

.header .header-top .menu-btn {
    display: flex;
    gap: 10px;
    width: 32px;
    height: 30px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    cursor: pointer;
}

.header .header-top .menu-btn span {
    width: 32px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #163752;
    transition: all .5s;
}

@media(max-width: 1050px) {
    .header .header-top .menu-btn span {
        background-color: #fff;
    }
}

.header .header-top .menu-btn span:nth-of-type(2) {
    top: calc(50% - 10px);
}

.header .header-top .menu-btn span:nth-of-type(3) {
    top: calc(50% + 10px);
}

.header .header-top .menu-btn.active span:nth-of-type(1) {
    display: none;
    background-color: #000;
}

.header .header-top .menu-btn.active span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
    background: #fff;
    height: 4px;
}

.header .header-top .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
    background: #fff;
    height: 4px;
}

.header .header-top .mobile-menu {
    display: flex;
    align-items: center;
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 15px;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 1s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header .header-top .mobile-menu .container {
    opacity: .2;
    transition: opacity 2s ease-in-out;
}

.header .header-top .mobile-menu .container.active {
    opacity: 1;
}

@media(max-width: 767px) {
    .header .header-top .mobile-menu .container {
        padding: 0px;
    }
}

.header .header-top .mobile-menu #menu-header-menu,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 15px;
}

.header .header-top .mobile-menu #menu-header-menu a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur a {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 37.77px;
    text-transform: uppercase;
}

.header .header-top .mobile-menu #menu-header-menu .sub-menu,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng .sub-menu,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur .sub-menu {
    display: flex;
    flex-direction: column;
    row-gap: 11px;
    padding-top: 3px;
    padding-left: 15px;
}

.header .header-top .mobile-menu #menu-header-menu .sub-menu a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng .sub-menu a,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur .sub-menu a {
    color: #999;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.5px;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
}

.header .header-top .mobile-menu #menu-header-menu .sub-menu a:hover,
.header .header-top .mobile-menu #menu-header-menu-header-menu-eng .sub-menu a:hover,
.header .header-top .mobile-menu #menu-header-menu-header-menu-tur .sub-menu a:hover {
    color: #fff;
}

.header .header-top .mobile-menu.active {
    transform: translateX(0);
}
.header .language-currency {
    display: flex;
    -moz-column-gap: 90px;
    column-gap: 90px;
    margin-top: 86px;
}

@media(max-width: 767px) {
    .header .language-currency {
        margin-top: 56px;
        -moz-column-gap: 65px;
        column-gap: 65px;
    }
}

.header .language-currency .currency {
    max-width: 40px;
    display: flex;
    align-items: center;
    -moz-column-gap: 22px;
    column-gap: 22px;
    cursor: pointer;
    position: relative;
}

.header .language-currency .currency::after {
    content: url("data:image/svg+xml;charset=UTF-8,<svg width='10' height='16' viewBox='0 0 10 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.714705 15.2856L9.28613 8.28565L0.714705 1.28564' stroke='white' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    position: absolute;
    right: -23px;
    top: 5px;
}

.header .language-currency .currency li:not(.active) {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .5s ease, max-width .5s ease;
    white-space: nowrap;
}

.header .language-currency .currency li.active {
    color: #fff;
    order: -1;
}

.header .language-currency .currency.expandedCur li {
    display: block;
}

.header .language-currency li {
    font-family: "Nunito Sans", sans-serif;
    color: #999;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: 0em;
    text-align: left;
    transition: color .3s ease-in-out;
    cursor: pointer;
}

.header .language-currency li:hover {
    color: #fff;
}

.header .language-currency .current-lang {
    color: #fff !important;
    pointer-events: none;
    order: -1;
}

.header .language-currency #menu-language-switcher {
    max-width: 40px;
    display: flex;
    -moz-column-gap: 22px;
    column-gap: 22px;
    cursor: pointer;
    position: relative;
}

.header .language-currency #menu-language-switcher::after {
    content: url("data:image/svg+xml;charset=UTF-8,<svg width='10' height='16' viewBox='0 0 10 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.714705 15.2856L9.28613 8.28565L0.714705 1.28564' stroke='white' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    position: absolute;
    right: -23px;
    top: 5px;
}

.header .language-currency #menu-language-switcher li:not(.current-lang) {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity .5s ease, max-width .5s ease;
    white-space: nowrap;
}

.header .language-currency #menu-language-switcher.expanded li {
    display: block;
}

.header .language-currency .currency.expandedCur {
    max-width: 200px;
}

.header .language-currency #menu-language-switcher.expanded {
    max-width: 200px;
}

.header .language-currency .currency.expandedCur li,
.header .language-currency #menu-language-switcher.expanded li {
    max-width: 200px;
    opacity: 1;
}

.header .pointer-events-none {
    pointer-events: none;
}

.header .pointer-events-auto {
    pointer-events: auto;
}

.header .custom-logo {
    display: block;
    width: 142px;
    height: 47px;
}

@media(max-width: 1050px) {
    .header .custom-logo {
        filter: grayscale(100%) brightness(0) invert(100%);
    }
}

.header .menu-form {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-right: 110px;
}

@media(max-width: 1200px) {
    .header .menu-form {
        padding-right: 0px;
    }
}

@media(max-width: 767px) {
    .header .menu-form {
        flex-direction: column;
        row-gap: 58px;
    }
}

.header .menu-form .flag-container {
    padding-bottom: 10px;
}

.header .menu-form .popup-info {
    position: relative;
    max-width: 385px;
    width: 100%;
}

@media(max-width: 767px) {
    .header .menu-form .popup-info {
        display: none;
    }
}

.header .menu-form .popup-info h2 {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.header .menu-form .popup-info p {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.5px;
    margin-bottom: 35px;
    text-align: left;
    max-width: 280px;
}

.header .menu-form .popup-info .popup-form span {
    display: inline-block;
    position: relative;
    max-width: 385px;
    width: 100%;
}

.header .menu-form .popup-info .popup-form span:not(.popup-button span,.wpcf7-not-valid-tip)::after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    bottom: -2px;
    right: 0;
}

.header .menu-form .popup-info .popup-form form {
    display: flex;
    flex-direction: column;
}

.header .menu-form .popup-info .popup-form .wpcf7-form-control-wrap:not(:last-of-type) {
    margin-bottom: 38px;
}

.header .menu-form .popup-info .popup-form input {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.5px;
    border: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 8px;
    border-radius: 0px;
    width: 100%;
    background-color: rgba(0,0,0,0);
}

.header .menu-form .popup-info .popup-form input:focus {
    outline: none;
}

.header .menu-form .popup-info .popup-form input::-moz-placeholder {
    color: rgba(226,225,225,.5019607843);
}

.header .menu-form .popup-info .popup-form input::placeholder {
    color: rgba(226,225,225,.5019607843);
}

.header .menu-form .popup-info .popup-form .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    bottom: -20px;
    color: red;
}

.header .menu-form .popup-info .popup-form .wpcf7-response-output {
    border: none;
    position: absolute;
    left: 0;
    bottom: 23%;
    padding-left: 0px;
    color: red;
    margin: 0;
    padding: 0;
}

.header .menu-form .popup-info .popup-form .popup-button {
    display: flex;
    align-items: center;
    -moz-column-gap: 28px;
    column-gap: 28px;
    margin-top: 35px;
    padding-right: 25px;
}

.header .menu-form .popup-info .popup-form .popup-button span {
    display: inline-block;
    max-width: 261px;
    width: 100%;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-top: 11px;
}

.header .menu-form .popup-info .popup-form .popup-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 71px;
    height: 71px;
    background-color: rgba(0,0,0,0);
    border: 2px solid #fff;
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.header .menu-form .popup-info .popup-form .popup-button button:hover {
    background-color: #fff;
}

.header .menu-form .popup-info .popup-form .popup-button button:hover svg path {
    stroke: #163752;
}

.header .menu-form .popup-info .popup-form .popup-button button svg path {
    stroke: #fff;
}

.header .horizontal-main-svg {
    position: absolute;
    left: 0;
    top: calc(50% + 150px);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.5s .7s ease-in-out;
}

@media(max-width: 767px) {
    .header .horizontal-main-svg {
        display: none;
    }
}

.header .horizontal-main-svg.active {
    transform: scaleX(1);
    transform-origin: left;
}

@media(max-width: 1050px) {
    .header .horizontal-main-svg.active {
        transform: scaleX(0.7);
    }
}

.header .horizontal-medium-svg {
    position: absolute;
    left: 0;
    top: calc(50% + 280px);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.5s 1s ease-in-out;
}

@media(max-width: 767px) {
    .header .horizontal-medium-svg {
        display: none;
    }
}

.header .horizontal-medium-svg.active {
    transform: scaleX(1);
    transform-origin: left;
}

.header .horizontal-small-svg {
    position: absolute;
    right: 0;
    top: calc(100% - 83px);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s 1s ease-in-out;
}

@media(max-width: 767px) {
    .header .horizontal-small-svg {
        display: none;
    }
}

.header .horizontal-small-svg.active {
    transform: scaleX(1);
    transform-origin: right;
}

.header .vertical-main-svg {
    position: absolute;
    top: 0;
    left: calc(50% + 25px);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 1.5s 1s ease-in-out;
}

@media(max-width: 767px) {
    .header .vertical-main-svg {
        display: none;
    }
}

.header .vertical-main-svg.active {
    transform: scaleY(1);
    transform-origin: top;
}

@media(max-width: 991px) {
    .header .vertical-main-svg.active {
        left: calc(50% - 77px);
    }
}

.header .line-main-mobile {
    display: none;
    position: absolute;
    left: 0;
    top: calc(50% + 175px);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.5s 1s ease-in-out;
}

@media(max-width: 767px) {
    .header .line-main-mobile {
        display: block;
    }
}

.header .line-main-mobile.active {
    transform: scaleX(1);
    transform-origin: left;
}

.custom-logo-link {
    z-index: 9 !important;
}

.header.scrolled {
    background-color: #fff;
}

.header.scrolled .custom-logo {
    filter: none;
}

.header.scrolled .menu-btn span {
    background-color: #163752;
}

.header.scrolled .container:not(.mobile-menu .container) {
    border-left: .5px solid #ccc;
    border-right: .5px solid #ccc;
}

.header.display-after::after {
    display: block;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* ==========================================================================
   Футер
   ========================================================================== */

.footer {
    margin-top: auto;
    border-top: 1px solid #ccc;
    position: relative;
    z-index: 2;
}

.footer .container {
    padding-top: 27px;
    padding-bottom: 46px;
    display: flex;
    justify-content: space-between;
}

@media(max-width: 860px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        padding-top: 35px;
        padding-bottom: 36px;
    }
}

.footer .footer-left {
    display: flex;
    flex-direction: column;
    max-width: 193px;
    width: 100%;
}

.footer .footer-left .footer-logo {
    display: block;
    width: 130px;
    height: 47px;
}

.footer .footer-left .social_list {
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.footer .footer-left .social_list li a svg {
    display: block;
    max-height: 20px;
    height: 100%;
    width: auto;
}

.footer .footer-left figure {
    margin-top: -7px;
    margin-bottom: 5px;
}

.footer .footer-nav {
    padding-top: 23px;
}

.footer .footer-nav ul {
    display: flex;
    -moz-column-gap: 45px;
    column-gap: 45px;
}

@media(max-width: 860px) {
    .footer .footer-nav ul {
        -moz-column-gap: 36px;
        column-gap: 36px;
    }
}

.footer .footer-nav a {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
    text-transform: lowercase;
}

.footer .footer-contact {
    padding-top: 23px;
    display: flex;
    flex-direction: column;
    row-gap: 22px;
}

@media(max-width: 860px) {
    .footer .footer-contact {
        align-items: center;
        row-gap: 20px;
    }
}

.footer .footer-contact .footer-phone {
    display: flex;
    -moz-column-gap: 10px;
    column-gap: 10px;
}

@media(max-width: 860px) {
    .footer .footer-contact .footer-phone {
        align-items: center;
    }
}

.footer .footer-contact .footer-phone a {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
}

.footer .footer-contact .footer-phone svg {
    display: block;
    max-height: 20px;
    height: 100%;
    width: auto;
}

.footer .footer-contact .footer-mail {
    display: flex;
    -moz-column-gap: 7px;
    column-gap: 7px;
}

@media(max-width: 860px) {
    .footer .footer-contact .footer-mail {
        align-items: center;
    }
}

.footer .footer-contact .footer-mail a {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.52px;
}

.footer .footer-contact .footer-mail svg {
    display: block;
    max-height: 20px;
    height: 100%;
    width: auto;
}

.footer .copyright {
    background-color: #163752;
    display: flex;
    justify-content: center;
    padding-top: 23px;
    padding-bottom: 25px;
}

@media(max-width: 767px) {
    .footer .copyright {
        padding-bottom: 33px;
    }
}

.footer .copyright-container {
    max-width: 1240px;
    width: 100%;
    padding-left: 48px;
    padding-right: 115px;
    display: flex;
    justify-content: space-between;
}

@media(max-width: 860px) {
    .footer .copyright-container {
        padding-right: 48px;
    }
}

@media(max-width: 767px) {
    .footer .copyright-container {
        flex-direction: column;
        align-items: center;
        row-gap: 10px;
    }
}

@media(max-width: 480px) {
    .footer .copyright-container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.footer .copyright-container p {
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.88px;
}

@media(max-width: 767px) {
    .footer .copyright-container p {
        font-size: 15px;
        line-height: 17.7px;
    }
}

.footer .copyright-container .footer-links {
    display: flex;
    gap: 42px;
}

.footer .copyright-container .footer-links a {
    display: block;
    color: #fff;
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.88px;
}

@media(max-width: 767px) {
    .footer .copyright-container .footer-links a {
        font-size: 15px;
        line-height: 17.7px;
    }
}

.footer .copyright-container .footer-links a:first-child {
    position: relative;
}

.footer .copyright-container .footer-links a:first-child::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 30px;
    background-color: #fff;
    right: -20px;
    top: -3px;
}

.btn-primary {
    display: block;
}

/* ==========================================================================
   Контент страницы
   ========================================================================== */

.page-content .container {
    padding-top: 195px;
    padding-bottom: 86px;
}

.post_template .post-hero-container {
    position: relative;
    padding-left: 20px;
    width: 100%;
    height: 581px;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    align-items: flex-end;
}

@media(min-width: 1144px) {
    .post_template .post-hero-container {
        padding-left: calc((100vw - 1144px)/2);
    }
}

@media(max-width: 1050px) {
    .post_template .post-hero-container {
        padding-left: 0px;
    }
}

.post_template .post-hero-container .background-overlay {
    display: none;
}

@media(max-width: 1050px) {
    .post_template .post-hero-container .background-overlay {
        display: block;
    }
}

.post_template .post-hero-container .background-overlay::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(26, 26, 26, 0.88) 31.03%, rgba(31, 31, 31, 0) 88.79%);
    z-index: 1;
}

.post_template .hero-img {
    flex: 1 0 calc(100% - 494px);
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.post_template .post-hero-content {
    display: flex;
    align-items: flex-end;
    padding-bottom: 124px;
    height: 100%;
    flex: 1 0 494px;
    padding-right: 60px;
    z-index: 2;
}

@media(max-width: 1050px) {
    .post_template .post-hero-content {
        position: absolute;
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media(max-width: 767px) {
    .post_template .post-hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 63px;
    }
}

.post_template .post-hero-content h1 {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-transform: uppercase;
}

@media(max-width: 1050px) {
    .post_template .post-hero-content h1 {
        color: #fff;
    }
}

@media(max-width: 480px) {
    .post_template .post-hero-content h1 {
        max-width: 300px;
    }
}

.post_template .container {
    padding-top: 80px;
    padding-bottom: 50px;
}

@media(max-width: 767px) {
    .post_template .container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 150px;
    }
}

.post_template .post_content p {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 35px;
}

.post_template .post_content .wp-block-heading {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 15px;
}

.post_template .post_content ul {
    list-style: disc;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    padding-left: 30px;
    margin-bottom: 35px;
}

.post_template .post_content li {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}

.post_template .post_content figure {
    width: 100%;
}

.post_template .post_content .wp-block-image img {
    display: block;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
    -o-object-position: center;
    object-position: center;
}

@media(max-width: 480px) {
    .post_template .post_content .wp-block-image img {
        min-height: 288px;
    }
}

.post_template .post_content .wp-block-quote {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    font-style: italic;
    padding: 8px 0px 8px 10px;
    border-left: 2px solid #163752;
}

.post_template .post_content .wp-block-quote p {
    margin-bottom: 18px;
}

.post_template .related-posts {
    border-top: 1px solid #ccc;
}

.post_template .related-posts .container {
    padding-top: 50px;
}

@media(max-width: 767px) {
    .post_template .related-posts .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.post_template .related-posts h2 {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
}

.post_template .related-posts .list-all-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 52px;
    column-gap: 52px;
    row-gap: 50px;
}

@media(max-width: 991px) {
    .post_template .related-posts .list-all-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .post_template .related-posts .list-all-posts {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
}

.post_template .related-posts .list-all-posts li h3 {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.post_template .related-posts .list-all-posts li:hover img {
    filter: brightness(0.55);
}

.post_template .related-posts .list-all-posts .img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    height: 274px;
    margin-bottom: 20px;
}

.post_template .related-posts .list-all-posts .img-wrapper img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: filter .3s ease-in-out;
    border-radius: 30px;
}

.estate-before-footer {
    overflow: hidden;
}

.estate-before-footer .container {
    padding-bottom: 100px;
}

@media(max-width: 767px) {
    .estate-before-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.estate-before-footer .related-objects-title {
    display: block;
    position: relative;
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 100px;
    margin-bottom: 35px;
}

@media(max-width: 767px) {
    .estate-before-footer .related-objects-title {
        font-size: 24px;
        line-height: 28.32px;
        margin-top: 200px;
    }
}

.estate-before-footer .related-objects-title::before {
    content: "";
    position: absolute;
    display: none;
    width: 767px;
    height: 1px;
    background-color: #ccc;
    top: -50px;
    left: -20px;
}

@media(max-width: 767px) {
    .estate-before-footer .related-objects-title::before {
        display: block;
    }
}

.estate-before-footer ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    -moz-column-gap: 54px;
    column-gap: 54px;
}

@media(max-width: 991px) {
    .estate-before-footer ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .estate-before-footer ul {
        grid-template-columns: 1fr;
        -moz-column-gap: unset;
        column-gap: unset;
    }
}

.estate-before-footer li {
    position: relative;
    box-shadow: 0px 4px 14px 0px rgba(19,19,19,.1019607843);
    border-radius: 30px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.estate-before-footer li:hover {
    box-shadow: 0px 4px 14px 0px rgba(19,19,19,.3019607843);
}

.estate-before-footer li:hover img {
    filter: brightness(0.55);
}

.estate-before-footer li:hover svg path {
    stroke: #163752;
}

.estate-before-footer .item-img-wrapper {
    margin-bottom: 30px;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    height: 274px;
}

.estate-before-footer .item-img-wrapper img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: filter .3s ease-in-out;
    border-radius: 30px;
    transition: all .3s ease-in-out;
}

.estate-before-footer h2 {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.estate-before-footer .price-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.estate-before-footer .price-button span {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
}

.estate-before-footer .item-info {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.estate-before-footer .item-info svg path {
    transition: all .3s ease-in-out;
}

.estate-before-footer .item-info__description {
    margin-bottom: 25px;
}

.estate-before-footer .item-info .construction-status {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    color: #163752;
    padding: 11px 22px;
    background: linear-gradient(256.02deg, #CCCCCC 25.96%, #FFFFFF 63.65%, #CCCCCC 110.11%);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.estate-before-footer .construction-status.show {
    display: block;
}

.estate-before-footer .construction-status.hide {
    display: none;
}

.estate-before-footer .item-info__description span {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
}

.estate-before-footer .item-info__description span:last-child {
    display: inline-block;
    margin-top: 5px;
}

.popup-container {
    background-color: #fff;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border-radius: 30px;
    justify-content: space-between;
    align-items: center;
    width: 925px;
    max-width: 100%;
    min-height: 779px;
    max-height: 90vh;
    overflow-y: auto;
    padding-left: 64px;
    overflow: hidden;
}

@media(max-width: 930px) {
    .popup-container {
        width: 95vw;
    }
}

@media(max-width: 767px) {
    .popup-container {
        width: 88vw;
    }
}

@media(max-width: 767px) {
    .popup-container {
        min-height: unset;
        flex-direction: column-reverse;
        padding-left: 0px;
        background-color: rgba(0,0,0,0);
        justify-content: unset;
    }
}

.popup-container .popup-info {
    max-width: 575px;
    width: 100%;
    margin-right: 20px;
}

@media(max-width: 767px) {
    .popup-container .popup-info {
        margin-top: -150px;
        max-width: 100%;
        background-color: #fff;
        margin-right: 0px;
        border-radius: 30px;
        padding-left: 20px;
        padding-right: 30px;
        padding: 56px 28px 59px 29px;
        position: relative;
        z-index: 1;
    }
}

.popup-container .popup-info h2 {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

@media(max-width: 767px) {
    .popup-container .popup-info h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

.popup-container .popup-info p {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 60px;
    text-align: left;
}

@media(max-width: 767px) {
    .popup-container .popup-info p {
        font-size: 15px;
        line-height: 19.5px;
        margin-bottom: 21px;
    }
}

.popup-container .popup-info .popup-form {
    position: relative;
}

.popup-container .popup-info .popup-form span {
    display: inline-block;
    position: relative;
    max-width: 385px;
    width: 100%;
}

.popup-container .popup-info .popup-form span:not(.popup-button span,.wpcf7-not-valid-tip)::after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #163752;
    bottom: -2px;
    right: 0;
}

@media(max-width: 767px) {
    .popup-container .popup-info .popup-form span:not(.popup-button span,.wpcf7-not-valid-tip)::after {
        bottom: -1px;
    }
}

.popup-container .popup-info .popup-form form {
    display: flex;
    flex-direction: column;
}

.popup-container .popup-info .popup-form .wpcf7-form-control-wrap:not(:last-of-type) {
    margin-bottom: 38px;
}

.popup-container .popup-info .popup-form input {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 19.5px;
    border: none;
    border-bottom: 2px solid #163752;
    padding-bottom: 8px;
    border-radius: 0px;
    width: 100%;
}

.popup-container .popup-info .popup-form .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    bottom: -20px;
}

.popup-container .popup-info .popup-form .wpcf7-response-output {
    border: none;
    position: absolute;
    left: 0;
    bottom: -15px;
    padding-left: 0px;
    color: green;
    margin: 0;
}

.popup-container .popup-info .popup-form .popup-button {
    display: flex;
    align-items: center;
    -moz-column-gap: 60px;
    column-gap: 60px;
    margin-top: 43px;
}

@media(max-width: 767px) {
    .popup-container .popup-info .popup-form .popup-button {
        -moz-column-gap: 10px;
        column-gap: 10px;
        margin-top: 20px;
    }
}

.popup-container .popup-info .popup-form .popup-button span {
    display: inline-block;
    max-width: 254px;
    width: 100%;
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    border-bottom: 2px solid #163752;
    padding-bottom: 10px;
    margin-top: 11px;
}

@media(max-width: 767px) {
    .popup-container .popup-info .popup-form .popup-button span {
        max-width: 200px;
    }
}

.popup-container .popup-info .popup-form .popup-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 71px;
    height: 71px;
    background-color: #fff;
    border: 2px solid #163752;
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.popup-container .popup-info .popup-form .popup-button button:hover {
    background-color: #163752;
}

.popup-container .popup-info .popup-form .popup-button button:hover svg path {
    stroke: #fff;
}

.popup-container .img-wrapper {
    width: 256px;
    max-width: 100%;
    min-height: 779px;
    border-radius: 30px;
    overflow: hidden;
}

@media(max-width: 767px) {
    .popup-container .img-wrapper {
        min-height: unset;
        max-height: 357px;
        width: 100%;
        overflow: hidden;
    }
}

.popup-container .img-wrapper .desktop-img-popup {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    min-height: 779px;
    border-radius: 30px;
}

@media(max-width: 767px) {
    .popup-container .img-wrapper .desktop-img-popup {
        display: none;
    }
}

.popup-container .img-wrapper .mobile-img-popup {
    display: none;
}

@media(max-width: 767px) {
    .popup-container .img-wrapper .mobile-img-popup {
        display: block;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        width: 100%;
        height: auto;
    }
}

.popup-container .flag-container {
    padding-bottom: 10px;
}

.post-contact-mail {
    width: 100%;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

@media(max-width: 767px) {
    .post-contact-mail {
        display: flex;
        align-items: flex-end;
        min-height: 357px;
    }
}

.post-contact-mail .contact-mail {
    max-width: 598px;
    background-color: #163752;
    padding: 63px 56px 63px 60px;
    border-top-left-radius: 30px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 200px;
    border-bottom-left-radius: 30px;
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail {
        padding: 43px 17px 25px 18px;
        border-radius: 30px;
        margin-left: 15px;
        margin-right: 20px;
        margin-bottom: -100px;
    }
}

.post-contact-mail .contact-mail h2 {
    font-family: "Nunito Sans", sans-serif;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 14px;
    text-transform: uppercase;
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail h2 {
        font-size: 24px;
        line-height: 28.8px;
    }
}

.post-contact-mail .contact-mail p {
    font-family: "Nunito Sans", sans-serif;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 14px;
    text-transform: uppercase;
    max-width: 380px;
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail p {
        font-size: 15px;
        line-height: 18px;
    }
}

.post-contact-mail .contact-mail form {
    display: flex;
    align-items: center;
    position: relative;
}

.post-contact-mail .contact-mail form .wpcf7-response-output {
    position: absolute;
    border: none;
    color: #46b450;
    bottom: -20px;
    left: 10px;
    margin: 0;
    padding: 0;
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail form .wpcf7-response-output {
        bottom: -16px;
        width: 300px;
    }
}

@media(max-width: 400px) {
    .post-contact-mail .contact-mail form .wpcf7-response-output {
        left: -6px;
    }
}
.post-contact-mail .contact-mail form .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -25px;
    left: 5px;
}

.post-contact-mail .contact-mail input {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    background-color: rgba(0,0,0,0);
    border: 1px solid #999;
    padding: 18px 60px 17px 28px;
    border-radius: 30px;
    max-width: 385px;
}

@media(max-width: 500px) {
    .post-contact-mail .contact-mail input {
        max-width: 272px;
    }
}

.post-contact-mail .contact-mail input:focus {
    outline: none;
}

.post-contact-mail .contact-mail input::-moz-placeholder {
    color: rgba(255,255,255,.1803921569);
}

.post-contact-mail .contact-mail input::placeholder {
    color: rgba(255,255,255,.1803921569);
}

.post-contact-mail .contact-mail button {
    min-width: 71px;
    height: 71px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e2e1e1;
    border-radius: 50%;
    margin-left: -65px;
    z-index: 1;
    border: none;
    transition: background-color .3s ease-in-out;
}

.post-contact-mail .contact-mail button:hover {
    background-color: #fff;
}

.post-contact-mail .intl-tel-input.allow-dropdown .selected-flag {
    padding-left: 20px !important;
}

.post-contact-mail .intl-tel-input.allow-dropdown .selected-flag .iti-arrow {
    right: -10px !important;
}

.post-contact-mail .intl-tel-input.allow-dropdown input[type=text] {
    padding-left: 65px;
}

.main-catalogue {
    width: 100%;
    height: 485px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media(max-width: 767px) {
    .main-catalogue {
        height: 100vh;
        height: 100cqh;
    }
}

.main-catalogue .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-catalogue .catalogue-title {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 64px;
    font-weight: 700;
    line-height: 76px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    max-width: 700px;
}

@media(max-width: 767px) {
    .main-catalogue .catalogue-title {
        font-size: 32px;
        line-height: 37.77px;
    }
}

.catalogue-list .container {
    padding-bottom: 100px;
}

@media(max-width: 767px) {
    .catalogue-list .container {
        padding: 80px 20px 180px 20px;
    }
}

.catalogue-list .filter {
    width: 100%;
    margin: -50px auto 0;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    line-height: 130%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

@media(max-width: 767px) {
    .catalogue-list .filter {
        margin: -303px auto 0;
    }
}

.catalogue-list .filter__tab {
    width: 100%;
    display: flex;
    background: #163752;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

@media(max-width: 1100px) {
    .catalogue-list .filter__tab {
        flex-direction: column;
        row-gap: 25px;
        background-color: #fff;
        padding: 50px 44px;
        box-shadow: 0px 6px 19px 0px rgba(19,19,19,.1019607843);
    }
}

.catalogue-list .filter__tab-item {
    cursor: pointer;
    flex: 1;
    height: 82px;
    padding: 21px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    position: relative;
    border-right: 1px solid #fff;
}

@media(max-width: 767px) {
    .catalogue-list .filter__tab-item {
        padding: 25px 40px;
    }
}

@media(max-width: 1100px) {
    .catalogue-list .filter__tab-item {
        background-color: #163752;
        border-radius: 20px;
    }
}

.catalogue-list .filter__tab-item svg:not(.price-range svg) {
    transition: transform .3s;
    min-width: 16px;
}

@media(max-width: 767px) {
    .catalogue-list .filter__tab-item svg:not(.price-range svg) {
        position: absolute;
        right: 23px;
    }
}

.catalogue-list .filter__tab-item.active svg:not(.list-item svg) {
    transform: rotate(180deg);
}

.catalogue-list .filter__tab-item[data-filter=price] {
    padding-left: 48px;
    padding-right: 48px;
}

.catalogue-list .filter__pane {
    width: 100%;
    display: flex;
    font-size: 15px;
    position: absolute;
    top: 82px;
    left: 0;
}

.catalogue-list .filter__pane-list {
    flex: 1;
    max-height: 0;
    overflow-y: hidden;
    background: #fff;
    box-shadow: 0px 6px 19px 0px rgba(19,19,19,.1);
    border-radius: 0 0 30px 30px;
    position: absolute;
    top: 100%;
    z-index: 1;
}

.catalogue-list .filter__pane-list .list-item {
    display: flex;
    align-items: center;
    -moz-column-gap: 9px;
    column-gap: 9px;
}

.catalogue-list .filter__pane-list .list-item:not(:last-child) {
    margin-bottom: 10px;
}

.catalogue-list .filter__pane-list .list-item svg {
    height: 19px;
    width: 19px;
}

.catalogue-list .filter__pane-list .checked {
    display: none;
}

.catalogue-list .filter__pane-list input {
    display: none;
}

.catalogue-list .filter__pane-list input:checked ~ .checked {
    display: block;
}

.catalogue-list .filter__pane-list input:checked ~ .unchecked {
    display: none;
}

.catalogue-list .filter__pane-list input#price {
    display: block;
}

.catalogue-list .filter__pane-list.active {
    max-height: 600px;
    width: 100%;
    padding: 19px 14px;
}

.catalogue-list .filter__pane-list label {
    cursor: pointer;
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 15px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 145px;
}

.catalogue-list .filter__pane-list.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    top: 100%;
}

.catalogue-list .filter__pane-list.price-range input {
    display: block;
    border-radius: 10px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    border: 1px solid #999;
    padding: 9px 14px;
    width: 96px;
    font-size: 15px;
    outline: none;
    color: #163752;
}

.catalogue-list .filter__pane-list.price-range input::-moz-placeholder {
    color: #999;
}

.catalogue-list .filter__pane-list.price-range input::placeholder {
    color: #999;
}

.catalogue-list .filter__pane-list.price-range input:last-child {
    padding: 9px 7px;
}

.catalogue-list .filter-btn {
    margin: 35px auto 0;
    padding: 15px 35px;
    width: 287px;
    border: none;
    border-radius: 10px;
    background: #163752;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}

.catalogue-list .apartments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
    -moz-column-gap: 54px;
    column-gap: 54px;
    margin-top: 74px;
    position: relative;
}

@media(max-width: 991px) {
    .catalogue-list .apartments {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .catalogue-list .apartments {
        grid-template-columns: 1fr;
        -moz-column-gap: unset;
        column-gap: unset;
    }
}

.catalogue-list .apartments__item {
    box-shadow: 0px 4px 14px 0px rgba(19,19,19,.1019607843);
    border-radius: 30px;
    overflow: hidden;
    transition: all .3s ease-in-out;
    position: relative;
}

.catalogue-list .apartments__item:hover {
    box-shadow: 0px 4px 14px 0px rgba(19,19,19,.3019607843);
}

.catalogue-list .apartments__item:hover img {
    filter: brightness(0.55);
}

.catalogue-list .apartments__item:hover svg path {
    stroke: #163752;
}

.catalogue-list .apartments .item-img-wrapper {
    margin-bottom: 30px;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    height: 274px;
}

.catalogue-list .apartments .item-img-wrapper img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: filter .3s ease-in-out;
    border-radius: 30px;
    transition: all .3s ease-in-out;
}

.catalogue-list .apartments h3 {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.catalogue-list .apartments .price-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catalogue-list .apartments .price-button span {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
}

.catalogue-list .apartments .item-info {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.catalogue-list .apartments .item-info svg path {
    transition: all .3s ease-in-out;
}

.catalogue-list .apartments .item-info .construction-status {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
    color: #163752;
    padding: 11px 22px;
    background: linear-gradient(256.02deg, #CCCCCC 25.96%, #FFFFFF 63.65%, #CCCCCC 110.11%);
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
}

.catalogue-list .apartments .item-info .construction-status.show {
    display: block;
}

.catalogue-list .apartments .item-info .construction-status.hide {
    display: none;
}

.catalogue-list .apartments .item-info__description {
    margin-bottom: 25px;
}

.catalogue-list .apartments .item-info__description span {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 15px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0em;
}

.catalogue-list .apartments .item-info__description span:last-child {
    display: inline-block;
    margin-top: 5px;
}

.catalogue-list .loader {
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,.7);
    position: absolute;
    left: 0;
    top: 200px;
    z-index: 2;
}

.content-area {
    padding-top: 195px;
    padding-bottom: 50px;
}

@media(max-width: 767px) {
    .content-area .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.content-area ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 55px;
    column-gap: 55px;
    row-gap: 50px;
}

@media(max-width: 991px) {
    .content-area ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .content-area ul {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
}

.content-area li:hover img {
    filter: brightness(0.55);
}

.content-area .img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    height: 274px;
    margin-bottom: 20px;
}

.content-area .img-wrapper img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    transition: filter .3s ease-in-out;
    border-radius: 30px;
}

.content-area .page-title {
    font-family: "Nunito Sans", sans-serif;
    color: #163752;
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 25px;
}

.content-area h2 {
    color: #163752;
    font-family: "Nunito Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.content-area .search-container {
    margin: 0px auto 43px auto;
    display: flex;
    align-items: center;
    max-width: 710px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid #ccc;
}

.content-area .search-container input[type=submit] {
    display: none;
}

.content-area .search-container form {
    width: 100%;
}

.content-area .search-container #s {
    background-color: rgba(0,0,0,0);
    border: none;
    width: 100%;
    height: 100%;
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    line-height: 100%;
    color: #163752;
    padding-left: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.content-area .search-container #s:focus {
    outline: none;
}

.content-area .search-container .search-icon {
    min-width: 54px;
    height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #163752;
    border-radius: 50%;
}

.preloader {
    height: 100vh;
    height: 100cqh;
    width: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.preloader .left-line {
    width: 1px;
    height: 100vh;
    background-color: #ccc;
    position: absolute;
    left: 100px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 2.2s .3s ease-in-out;
}

@media(max-width: 767px) {
    .preloader .left-line {
        left: 40px;
    }
}

.preloader .left-line.active {
    transform: scaleY(1);
    transform-origin: top;
}

.preloader .right-line {
    width: 1px;
    height: 100vh;
    background-color: #ccc;
    position: absolute;
    right: 100px;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 2.2s .3s ease-in-out;
}

@media(max-width: 767px) {
    .preloader .right-line {
        right: 40px;
    }
}

.preloader .right-line.active {
    transform: scaleY(1);
    transform-origin: top;
}

.preloader .top-line {
    width: 100vw;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    top: 72px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 2.5s ease-in-out;
}

.preloader .top-line.active {
    transform: scaleX(1);
    transform-origin: left;
}


.preloader .bottom-left-line {
    position: absolute;
    left: 0;
    bottom: 53px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 2.5s ease-in-out;
}

@media(max-width: 1350px) {
    .preloader .bottom-left-line {
        left: -300px;
    }
}

@media(max-width: 991px) {
    .preloader .bottom-left-line {
        left: -600px;
    }
}

@media(max-width: 700px) {
    .preloader .bottom-left-line {
        left: -750px;
    }
}

.preloader .bottom-left-line.active {
    transform: scaleX(1);
    transform-origin: left;
}

.preloader .bottom-right-line {
    position: absolute;
    right: 0;
    bottom: 56px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2.5s ease-in-out;
}

@media(max-width: 700px) {
    .preloader .bottom-right-line {
        right: -100px;
    }
}

@media(max-width: 480px) {
    .preloader .bottom-right-line {
        right: -170px;
    }
}

.preloader .bottom-right-line.active {
    transform: scaleX(1);
    transform-origin: right;
}

.preloader .preloader-logo {
    margin-bottom: 5px;
}

@media(max-width: 767px) {
    .preloader .preloader-logo {
        transform: scale(0.7);
    }
}

.preloader .preloader-count {
    display: flex;
    -moz-column-gap: 14px;
    column-gap: 14px;
}

.preloader .count-first,
.preloader .count-second {
    font-family: "Nunito Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: center;
    color: #fff;
}

.preloader .count-line {
    width: 100px;
    margin: auto 0;
}

.preloader .line {
    width: 100%;
    height: 2px;
    background-color: rgba(255,255,255,.8);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 2s .5s ease-in-out;
}

.preloader .line.active {
    transform: scaleX(1);
    transform-origin: left;
}

/* ==========================================================================
   Медиа-запросы (дополнительные)
   ========================================================================== */

@media(max-width: 1050px) {
    .header .header-top .header-content .contact-header {
        display: none;
    }
}

@media(max-width: 767px) {
    .header .header-top .mobile-menu {
        padding: 15px;
    }
}

@media(max-width: 991px) {
    .post_template .related-posts .list-all-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .post_template .related-posts .list-all-posts {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
}

@media(max-width: 930px) {
    .popup-container {
        width: 95vw;
    }
}

@media(max-width: 500px) {
    .post-contact-mail .contact-mail input {
        max-width: 272px;
    }
}

@media(max-width: 1100px) {
    .catalogue-list .filter__tab {
        flex-direction: column;
        row-gap: 25px;
        background-color: #fff;
        padding: 50px 44px;
        box-shadow: 0px 6px 19px 0px rgba(19,19,19,.1019607843);
    }
}

@media(max-width: 991px) {
    .catalogue-list .apartments {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .catalogue-list .apartments {
        grid-template-columns: 1fr;
        -moz-column-gap: unset;
        column-gap: unset;
    }
}

@media(max-width: 860px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        padding-top: 35px;
        padding-bottom: 36px;
    }
}

@media(max-width: 767px) {
    .footer .copyright {
        padding-bottom: 33px;
    }
}

@media(max-width: 480px) {
    .footer .copyright-container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media(max-width: 767px) {
    .estate-before-footer .related-objects-title {
        font-size: 24px;
        line-height: 28.32px;
        margin-top: 200px;
    }
}

@media(max-width: 1050px) {
    .post_template .post-hero-content {
        position: absolute;
        width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media(max-width: 767px) {
    .post_template .post-hero-content {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 63px;
    }
}

@media(max-width: 480px) {
    .post_template .post-hero-content h1 {
        max-width: 300px;
    }
}

@media(max-width: 767px) {
    .post_template .container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 150px;
    }
}

@media(max-width: 480px) {
    .post_template .post_content .wp-block-image img {
        min-height: 288px;
    }
}

@media(max-width: 767px) {
    .popup-container .popup-info {
        margin-top: -150px;
        max-width: 100%;
        background-color: #fff;
        margin-right: 0px;
        border-radius: 30px;
        padding-left: 20px;
        padding-right: 30px;
        padding: 56px 28px 59px 29px;
        position: relative;
        z-index: 1;
    }
}

@media(max-width: 767px) {
    .popup-container .popup-info h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

@media(max-width: 767px) {
    .popup-container .popup-info p {
        font-size: 15px;
        line-height: 19.5px;
        margin-bottom: 21px;
    }
}

@media(max-width: 767px) {
    .popup-container .popup-info .popup-form .popup-button {
        -moz-column-gap: 10px;
        column-gap: 10px;
        margin-top: 20px;
    }
}

@media(max-width: 767px) {
    .popup-container .popup-info .popup-form .popup-button span {
        max-width: 200px;
    }
}

@media(max-width: 767px) {
    .popup-container .img-wrapper {
        min-height: unset;
        max-height: 357px;
        width: 100%;
        overflow: hidden;
    }
}

@media(max-width: 767px) {
    .post-contact-mail {
        display: flex;
        align-items: flex-end;
        min-height: 357px;
    }
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail {
        padding: 43px 17px 25px 18px;
        border-radius: 30px;
        margin-left: 15px;
        margin-right: 20px;
        margin-bottom: -100px;
    }
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail h2 {
        font-size: 24px;
        line-height: 28.8px;
    }
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail p {
        font-size: 15px;
        line-height: 18px;
    }
}

@media(max-width: 767px) {
    .post-contact-mail .contact-mail form .wpcf7-response-output {
        bottom: -16px;
        width: 300px;
    }
}

@media(max-width: 400px) {
    .post-contact-mail .contact-mail form .wpcf7-response-output {
        left: -6px;
    }
}

@media(max-width: 767px) {
    .main-catalogue {
        height: 100vh;
        height: 100cqh;
    }
}

@media(max-width: 767px) {
    .main-catalogue .catalogue-title {
        font-size: 32px;
        line-height: 37.77px;
    }
}

@media(max-width: 767px) {
    .catalogue-list .container {
        padding: 80px 20px 180px 20px;
    }
}

@media(max-width: 767px) {
    .catalogue-list .filter {
        margin: -303px auto 0;
    }
}

@media(max-width: 767px) {
    .catalogue-list .filter__tab-item {
        padding: 25px 40px;
    }
}

@media(max-width: 767px) {
    .catalogue-list .filter__tab-item svg:not(.price-range svg) {
        position: absolute;
        right: 23px;
    }
}

@media(max-width: 767px) {
    .content-area .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media(max-width: 767px) {
    .content-area ul {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }
}

@media(max-width: 767px) {
    .preloader .left-line {
        left: 40px;
    }
}

@media(max-width: 767px) {
    .preloader .right-line {
        right: 40px;
    }
}

@media(max-width: 767px) {
    .preloader .preloader-logo {
        transform: scale(0.7);
    }
}

/* ==========================================================================
   Конец файла
   ========================================================================== */


