.vxr_header8_main_box {
    position: relative;
    height: 100vh;
    background: url('https://cdn.vexar.io/uploads/templates/sections/a31aea00-20ff-42bf-943f-dc71b14ca96f/img/heaer_bg.jpg') center/cover no-repeat;
    color: white;
}

.vxr_header8_main_box::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 200px;
    background: url('https://cdn.vexar.io/uploads/templates/sections/a31aea00-20ff-42bf-943f-dc71b14ca96f/img/header_bottom.svg') center/cover no-repeat;
    z-index: 10;
}

.vxr_header8_logo img {
    max-width: 250px;
}

.vxr_header8_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.vxr_header8_navbar {
    position: relative;
    z-index: 110;
    padding: 20px 0;
}

.vxr_header8_navbar_fix {
    background: #ffffffba;
    position: fixed;
    top: -15px;
    width: 100%;
    animation: fixHeader .5s forwards ease-in-out;
}

@keyframes fixHeader {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
        top: 0;
    }
}

.vxr_header8_navbar_fix a {
    color: #242a2e !important;
    font-weight: 400;
}

.vxr_header8_navbar_fix lord-icon {
    --lord-icon-primary: #242a2e;
    --lord-icon-secondary: #242a2e;
}

.vxr_header8_navbar .vxr_header8_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vxr_header8_menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.vxr_header8_menu a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    transition: opacity 0.3s;
}

.vxr_header8_menu a:hover {
    opacity: 0.8;
}

.vxr_header8_contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vxr_header8_contact_item {
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    text-align: right;
    gap: 8px;
    font-size: 16px;
    color: #fff;
}

.vxr_header8_contact_item:hover {
    opacity: 0.8;
}

.vxr_header8_contact_item i {
    font-size: 12px;
    opacity: 0.8;
}

.vxr_header8_hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.vxr_header8_hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    transition: all 0.3s ease;
}

.vxr_header8_hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.vxr_header8_hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.vxr_header8_hero {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.vxr_header8_content {
    text-align: center;
}

.vxr_header8_title {
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    margin: 0 0 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.vxr_header8_subtitle {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    margin: 0 0 30px;
    opacity: 0.9;
}

.vxr_header8_description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 20pt;
    line-height: 1.6;
    background: rgba(0,0,0,0.4);
    padding: 20px 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.vxr_header8_free_quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 50;
}

.vxr_header8_quote_btn {
    display: block;
    transition: transform 0.3s ease;
}

.vxr_header8_quote_btn:hover {
    transform: scale(1.05);
}

.vxr_header8_quote_btn img {
    width: 298px;
    height: 221px;
}

.vxr_header8_scroll {
    --vxr_header8_w: 250px;
    --vxr_header8_h: calc(var(--vxr_header8_w) * 0.62);
    --vxr_header8_shadow-offset: 30px;
    --vxr_header8_shadow-opacity: .16;
    --vxr_header8_text: #8e9aa3;
    position: absolute;
    bottom: -70px;
    left: calc(50% - 125px);
    z-index: 100;
    width: min(var(--vxr_header8_w), 80vw);
    margin-inline: auto;
    pointer-events: none;
    animation: trShowIn400 1.3s forwards ease-in-out, trShowIn400_2 2s infinite ease-in-out;
}

@keyframes trShowIn400 {
    0%{
        opacity: 0;
        bottom: -50px;
    }
    100%{
        opacity: 1;
        bottom: -100px;
    }
}

@keyframes trShowIn400_2 {
    0%{
        bottom: -100px;
    }
    50%{
        bottom: -93px;
    }
    100%{
        bottom: -100px;
    }
}

.vxr_header8_triangle-shadow,
.vxr_header8_triangle {
    position: relative;
    width: 100%;
    height: var(--vxr_header8_h);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.vxr_header8_triangle-shadow {
    position: absolute;
    background: rgba(0,0,0,var(--vxr_header8_shadow-opacity));
    transform: translateY(var(--vxr_header8_shadow-offset)) scale(0.98);
    filter: saturate(0);
}

.vxr_header8_triangle {
    background: #ffffff;
    z-index: 1;
}

.vxr_header8_inner {
    position: absolute;
    left: 16%;
    top: 9%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    color: var(--vxr_header8_text);
    text-align: center;
    padding-top: 4px;
    pointer-events: auto;
}

.vxr_header8_label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: .9;
    font-size: 15px;
    user-select: none;
    white-space: nowrap;
}

.vxr_header8_mouse {
    width: 28px;
    height: auto;
    display: block;
    color: var(--vxr_header8_text);
    opacity: .85;
}

@media (max-width: 1280px){
    .vxr_header8_scroll{
        --vxr_header8_w: 240px;
        left: calc(50% - 120px);
    }
    .vxr_header8_inner{
        left: 20%;
    }
    .vxr_header8_label{
        font-size: 13px;
    }
}

@media (max-width: 990px) {
    .vxr_header8_hamburger {
        display: flex;
    }

    .vxr_header8_navbar{
        padding: 10px 0;
    }

    .vxr_header8_hero{
        top: 40%;
    }

    .vxr_header8_subtitle{
        margin-bottom: 100px;
    }

    .vxr_header8_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        transition: right 0.3s ease;
        z-index: 99;
    }

    .vxr_header8_navbar_fix .vxr_header8_hamburger span{
        background: #242a2e;
    }

    .vxr_header8_menu a{
        color: #fff !important;
    }

    .vxr_header8_nav.active {
        right: 0;
    }

    .vxr_header8_menu {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 40px;
    }

    .vxr_header8_menu a {
        font-size: 24px;
    }

    .vxr_header8_menu a:hover {
        opacity: 0.8;
    }

    .vxr_header8_contacts {
        display: none;
    }

    .vxr_header8_title {
        font-size: clamp(40px, 12vw, 80px);
    }

    .vxr_header8_subtitle {
        font-size: clamp(18px, 5vw, 28px);
    }

    .vxr_header8_description {
        font-size: 16px;
        padding: 15px 20px;
    }

    .vxr_header8_free_quote {
        bottom: 20px;
        right: 20px;
    }

    .vxr_header8_quote_btn img {
        height: auto;
        width: 200px;
    }
}

@media (max-width: 768px) {
    .vxr_header8_main_box::after{
        height: 83px;
    }
    .vxr_header8_free_quote{
        bottom: 63px;
        right: 18%;
    }
}

@media (max-width: 500px) {
    .vxr_header8_main_box::after{
        height: 52px;
    }
}

@media (max-width: 480px) {
    .vxr_header8_navbar .vxr_header8_container {
        padding: 0 15px;
    }

    .vxr_header8_description {
        margin: 0 15px;
    }
}

@media (max-width: 420px){
    .vxr_header8_scroll{
        --vxr_header8_w: 200px;
        --vxr_header8_shadow-offset: 15px;
        left: calc(50% - 100px);
    }
    .vxr_header8_label{ font-size: 11px; letter-spacing: .14em; }
    .vxr_header8_mouse{ width: 26px; }
}

.vxrC8053 {
    width: 30px;
    height: 30px;
}

.vxrD509B {
    width: 30px;
    height: 30px;
}