/* HEADER */
.header {
    /* border-bottom: 1px solid var(--neta-auto-brand-guideline-10-primary-neta-red, #C8102E);
    background: linear-gradient(135deg, #738BC4 0%, #000 99.3%);
    box-shadow: 0px 4px 12px 0px rgba(199, 199, 199, 0.12); */
    background: transparent;
    /* box-shadow: 0px 4px 12px 0px rgba(199, 199, 199, 0.12); */
    position: fixed;
    top: 0;
    z-index: 6;
    width: 100%;
    transition: ease-in-out 0.5s;
    /* pointer-events: none; */
}

.img-logo-header{
    height: 15px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    height: 64px;
    justify-content: space-between;
}

.menu-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 70%;
}

.header-container-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 25px;
}

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

.head-menu:hover .submenu-d {
    display: flex;
}

/* .header:hover{
    background: #00000050;
} */
.menu-header-item {
    position: relative;
    color: #fff;
    font-family: 'promptlight';
    /* font-family: 'promptsemibold'; */
    /* font-weight: 500; */
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    cursor: pointer;
    padding: 10px 0;
    pointer-events: auto;
    /* border-bottom: solid 1px transparent; */
}

.container-menu-item {
    border-bottom: solid 2px transparent;
}

.menu-header-item:hover .container-menu-item {
    border-bottom: solid 2px #C8102E;
}

.menu-header-item:hover {

    /* color: #C8102E; */
    /* font-family: 'promptsemibold';
    font-weight: 500; */
}

.menu-header-item-active {
    font-family: 'promptsemibold';
    font-weight: 500;
}

.menu-header-item img {
    margin-left: 5px;
}

.logo-header {
    pointer-events: auto;
    cursor: pointer;
    height: 39px;
}

.test-drive-header {
    border-radius: 100px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    color: #FFF;
    font-family: 'promptsemibold';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    gap: 5px;
}

.lang-header {
    border-radius: 100px;
    background: #F3F3F3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    text-decoration: none;
}

.lang-item {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.lang-icon {
    width: 25px;
    height: 25px;
}

.search-header {
    cursor: pointer;
    height: 34px;
}

.sub-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    width: fit-content;
    background-color: #00000050;
    backdrop-filter: blur(5px);
    left: -8px;
    top: 40px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.sub-menu a {
    white-space: nowrap;
    /* border-bottom: 1px solid #C8C9CB; */
    padding: 12px 32px 12px 8px;

    color: #fff;
    font-family: 'promptlight';
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
    /* border-bottom: 1px solid var(--neta-auto-brand-guideline-10-primary-neta-red, #C8102E); */
    /* background: linear-gradient(94deg, #728AC3 0%, #040507 100%); */
}

.sub-menu-lang {
    top: 55px;
    left: -75px;
}

.submenu-lang-m {
    padding: 12px 8px 12px 8px;
    border-bottom: none;
    color: #fff;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* .sub-menu a:first-child{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
} */
.sub-menu a:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.model-list a {
    opacity: 1 !important;
}

@media only screen and (max-width: 1199px) {
    .header {
        transition: ease-in-out 0.25s;
    }

    .lang-header {
        margin-top: 20px;
    }

    .sub-menu {
        position: relative;
        width: 100%;
        left: unset;
        top: unset;
        background-color: transparent;
        backdrop-filter: none;
    }

    .sub-menu a {
        padding: 12px 8px 12px 8px;
        border-bottom: none;
        color: #fff;
        background: transparent;
    }

    .sub-menu a:first-child {
        margin-top: 20px;
    }

    .burger-menu-btn {
        pointer-events: auto;
    }

    .burger-menu-btn img {
        width: 30px;
        /* filter: invert(1); */
    }

    .burger-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        right: 0;
        top: 63px;
        background: #000;
        /* background: linear-gradient(135deg, #5F7CB7 0%, #090A0E 99.3%); */
        /* background-color: #fff; */
        width: 50%;
        height: 100%;
        z-index: 1;
        padding: 10px;
    }

    .menu-header-item {
        padding: 12px 0;
        margin-top: 12px;
        border-bottom: 1px solid #DBDDDC;
        text-align: center;
    }
}