@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

.vxr_header71_main_box {
    font-family: 'Raleway', sans-serif;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.vxr_header71_main_box * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.vxr_header71_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.vxr_header71_topbar {
    background: #3d3a36;
    padding: 8px 0;
}

.vxr_header71_topbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vxr_header71_topbar_link {
    color: #f5f0e8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vxr_header71_topbar_link:hover {
    color: #e8a87c;
}

.vxr_header71_topbar_link i {
    font-size: 12px;
}

.vxr_header71_topbar_social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vxr_header71_topbar_social a {
    color: #f5f0e8;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
}

.vxr_header71_topbar_social a:hover {
    color: #e8a87c;
    transform: translateY(-1px);
}

.vxr_header71_navbar {
    background: #faf6f0;
    padding: 0;
    border-bottom: 1px solid rgba(61, 58, 54, 0.08);
    position: relative;
}

.vxr_header71_navbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 30px;
}

.vxr_header71_logo {
    text-decoration: none;
    display: flex;
    flex-shrink: 0;
}

.vxr_header71_logo_img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.vxr_header71_nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vxr_header71_menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vxr_header71_menu li {
    display: block;
}

.vxr_header71_menu_link {
    text-decoration: none;
    color: #3d3a36;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.vxr_header71_menu_link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e8a87c;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.vxr_header71_menu_link:hover::after,
.vxr_header71_active::after {
    width: calc(100% - 32px);
}

.vxr_header71_menu_link:hover {
    color: #c97b4b;
}

.vxr_header71_active {
    color: #c97b4b;
}

.vxr_header71_nav_cta {
    display: none;
}

.vxr_header71_nav_contacts {
    display: none;
}

.vxr_header71_nav_overlay {
    display: none;
}

.vxr_header71_cta_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #e8a87c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.vxr_header71_cta_btn:hover {
    background: #d4945e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 168, 124, 0.35);
}

.vxr_header71_burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    gap: 5px;
    position: relative;
    z-index: 1001;
}

.vxr_header71_burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3d3a36;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.vxr_header71_burger.vxr_header71_burger_active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.vxr_header71_burger.vxr_header71_burger_active span:nth-child(2) {
    opacity: 0;
}

.vxr_header71_burger.vxr_header71_burger_active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .vxr_header71_cta_btn {
        display: none;
    }

    .vxr_header71_burger {
        display: flex;
    }

    .vxr_header71_nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100%;
        background: #faf6f0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(61, 58, 54, 0);
        padding: 80px 32px 40px;
        overflow-y: auto;
    }

    .vxr_header71_nav.vxr_header71_nav_open {
        right: 0;
        box-shadow: -10px 0 40px rgba(61, 58, 54, 0.12);
    }

    .vxr_header71_menu {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 100%;
    }

    .vxr_header71_menu li {
        width: 100%;
        text-align: center;
    }

    .vxr_header71_menu_link {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 500;
        padding: 12px 16px;
        display: block;
    }

    .vxr_header71_menu_link::after {
        display: none;
    }

    .vxr_header71_nav_cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background: #e8a87c;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 14px 36px;
        border-radius: 4px;
        transition: background 0.3s ease;
        margin-top: 8px;
    }

    .vxr_header71_nav_cta:hover {
        background: #d4945e;
    }

    .vxr_header71_nav_contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
    }

    .vxr_header71_nav_contacts a {
        color: #9b9488;
        text-decoration: none;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
    }

    .vxr_header71_nav_contacts a:hover {
        color: #e8a87c;
    }

    .vxr_header71_nav_overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(61, 58, 54, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .vxr_header71_nav_overlay.vxr_header71_overlay_show {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .vxr_header71_topbar_inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .vxr_header71_logo_img {
        height: 42px;
    }

    .vxr_header71_navbar_inner {
        min-height: 65px;
    }

    .vxr_header71_menu_link {
        font-size: 20px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600;700&display=swap');

.vxr_header71_main_box {
    font-family: 'Raleway', sans-serif;
    position: relative;
    z-index: 1000;
    width: 100%;
}

@media (max-width: 1024px) {
    .vxr_header71_cta_btn {
        display: none;
    }

    .vxr_header71_burger {
        display: flex;
    }

    .vxr_header71_nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100%;
        background: #faf6f0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(61, 58, 54, 0);
        padding: 80px 32px 40px;
        overflow-y: auto;
    }

    .vxr_header71_nav.vxr_header71_nav_open {
        right: 0;
        box-shadow: -10px 0 40px rgba(61, 58, 54, 0.12);
    }

    .vxr_header71_menu {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 100%;
    }

    .vxr_header71_menu li {
        width: 100%;
        text-align: center;
    }

    .vxr_header71_menu_link {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 500;
        padding: 12px 16px;
        display: block;
    }

    .vxr_header71_menu_link::after {
        display: none;
    }

    .vxr_header71_nav_cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        background: #e8a87c;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 14px 36px;
        border-radius: 4px;
        transition: background 0.3s ease;
        margin-top: 8px;
    }

    .vxr_header71_nav_cta:hover {
        background: #d4945e;
    }

    .vxr_header71_nav_contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
    }

    .vxr_header71_nav_contacts a {
        color: #9b9488;
        text-decoration: none;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
    }

    .vxr_header71_nav_contacts a:hover {
        color: #e8a87c;
    }

    .vxr_header71_nav_overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(61, 58, 54, 0.4);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .vxr_header71_nav_overlay.vxr_header71_overlay_show {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .vxr_header71_topbar_inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .vxr_header71_logo_img {
        height: 42px;
    }

    .vxr_header71_navbar_inner {
        min-height: 65px;
    }

    .vxr_header71_menu_link {
        font-size: 20px;
    }
}

.ceSection.vxr_header71_main_box.vxrF280A {
    padding-bottom: 81px;
}

.vxr_header71_navbar.vxr8BEA9 {
    position: fixed;
    box-shadow: rgba(61, 58, 54, 0.08) 0px 2px 20px;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
}