.vxr_head11_main_box {
    background: #f5f3efc4;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.vxr_head11_main_box .vxr_head11_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vxr_head11_main_box .vxr_head11_logo img {
    height: 60px;
    display: block;
}

.vxr_head11_main_box .vxr_head11_nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.vxr_head11_main_box .vxr_head11_nav_link {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 1rem;
    transition: color 0.3s;
    position: relative;
}

.vxr_head11_main_box .vxr_head11_nav_link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2c2c2c;
    transition: width 0.3s;
}

.vxr_head11_main_box .vxr_head11_nav_link:hover:after {
    width: 100%;
}

.vxr_head11_main_box .vxr_head11_right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vxr_head11_main_box .vxr_head11_social {
    color: #2c2c2c;
    font-size: 22px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.vxr_head11_main_box .vxr_head11_social:hover {
    opacity: 0.7;
}

.vxr_head11_main_box .vxr_head11_cta {
    padding: 12px 40px;
    border: 1px solid #2c2c2c;
    border-radius: 50px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    font-style: italic;
    transition: all 0.3s;
}

.vxr_head11_main_box .vxr_head11_cta:hover {
    background: #2c2c2c;
    color: #f5f3ef;
}

.vxr_head11_main_box .vxr_head11_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.vxr_head11_main_box .vxr_head11_burger span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s;
}

.vxr_head11_main_box .vxr_head11_burger.vxr_head11_active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.vxr_head11_main_box .vxr_head11_burger.vxr_head11_active span:nth-child(2) {
    opacity: 0;
}

.vxr_head11_main_box .vxr_head11_burger.vxr_head11_active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 992px) {
    .vxr_head11_main_box .vxr_head11_burger {
        display: flex;
    }

    .vxr_head11_main_box .vxr_head11_nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #f5f3ef;
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        align-items: flex-start;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .vxr_head11_main_box .vxr_head11_nav.vxr_head11_active {
        transform: translateX(0);
    }

    
}

@media (max-width: 576px) {
    .vxr_head11_main_box .vxr_head11_logo img {
        height: 45px;
    }
}