#header {
    width: 100%;
    position: fixed;
    z-index: 6;
    height: 131px;
    background: linear-gradient(0deg, #0d111a00 0%, #0D111A 100%);
}

.header_wrapper {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 6px 64px 12px;
}

.header_left {
    display: flex;
    flex-direction: row;
    gap: 52px;
    align-items: center;
}

.header_text {
    color: #FBFBFB;
    font-family: "OpenSans-SemiBold";
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

.header_logo {
    padding-right: 28px;
}

.header_logo a {
    background: url(../assets/logo_new.png) center / cover no-repeat;
    display: block;
    width: 223px;
    height: 94px;
}

.header_ather {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.dropdown {
    position: relative;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    color: #FBFBFB;
    font-family: 'OpenSans-Bold';
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

.dropdown-content {
    position: absolute;
    top: 30px;
    left: -16px;
    z-index: 3;
    display: none;
    border: 2px solid #24303A;
    background: linear-gradient(180deg, #1a1d29e6 0%, #13151ee6 100%);
    min-width: 56px;
    height: fit-content;
    min-height: 82px;
    padding: 16px 24px;
    border-radius: 12px;
}

.dropdown::after {
    display: inline-block;
    content: "";
    transition: .2s linear;
    background-image: url(../assets/arrow_drop.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-left: 12px;
}

.dropdown-content ul {
    list-style-type: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.dropdown-content ul li a {
    padding: 0px;
    font-family: 'OpenSans-Bold';
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    text-align: center;
    transition: all 0.3s ease-out;
    white-space: nowrap;
}

.dropdown-content ul li a:hover {
    color: #00CC7E;
}

.dropdown.active::after {
    transform: rotate(180deg);
}

#burger {
    visibility: hidden;
    display: none;
}

.header_wrapper label {
    display: none;
}

.header_wrapper nav {
    display: none;
}

@media (max-width: 1285px) {

    .header_left {
        gap: 30px;
    }

    .header_logo {
        padding-right: 0;
    }

    .header_logo a {
        width: 198px;
        height: 64px;
    }

    .header_text {
        font-size: 16px;
        font-style: normal;
        line-height: normal;
    }

    .header_wrapper {
        padding: 20px 64px 12px;
    }

}

@media (max-width: 1000px) {

    .dropdown-content {
        left: 0px;
        padding: 16px;
        min-height: 118px;
    }

    .header_left {
        order: 2;
    }

    .header_ather {
        order: 1;
    }

    .header_logo a {
        width: 148px;
        height: 48px;
    }

    .header_wrapper {
        display: grid;
        grid-template-columns: 1fr 148px 1fr;
        padding: 16px 16px 12px;
    }

    .header_wrapper nav ul {
        width: 100%;
    }

    .header_wrapper nav {
        display: block;
    }

    .burger_last [data-toggle="dropdown"] {
        display: none;
    }

    .burger_last .dropdown-item:hover {
        border: 2px solid #8B7641;
    }

    .burger_last .dropdown-item {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid #454545;
        background: rgba(176, 148, 77, 0.06);
        transition: all 0.3s ease;
    }

    .burger_last .dropdown-content ul li a {
        padding: 8px;
    }

    .burger_last .dropdown-content {
        position: relative;
        top: auto;
        left: auto;
        z-index: 1;
        display: flex !important;
        border: none;
        background: none;
        min-width: 100%;
        height: fit-content;
        min-height: 40px;
        padding: 0;
    }

    .burger_last .dropdown-content ul {
        list-style-type: none;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    #header {
        height: 114px;
    }

    .hide_header {
        display: none;
    }

    #burger {
        display: block;
        order: 3;
    }

    .burger_menu a {
        transition: all 0.3s ease;
    }

    .burger_menu a:hover {
        color: #00CC7E;
    }

    .burger_menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        width: 100%;
        padding: 83px 16px;
        top: 86px;
        z-index: 2;
        align-items: center;
        left: 0;
        font-family: 'OpenSans SemiBold';
        font-size: 22px;
        line-height: 24px;
        height: calc(100vh - 86px);
        list-style-type: none;
        justify-content: space-between;
    }

    .burger_last {
        width: 100%;
    }

    .burgernav {
        margin: 16px 8px;
    }

    input+label {
        position: absolute;
        top: 30px;
        right: 16px;
        height: 18px;
        width: 27px;
        z-index: 5;
    }

    input+label span {
        position: absolute;
        width: 24px;
        height: 2px;
        top: 50%;
        margin-top: -1px;
        left: 0;
        display: block;
        background: #FFF4E7;
        transition: 0.5s;
    }

    input+label span:first-child {
        top: 2px;
    }

    input+label span:last-child {
        top: 17px;
    }

    label:hover {
        cursor: pointer;
    }

    input:checked+label span {
        opacity: 0;
        top: 50%;
    }

    input:checked+label span:first-child {
        opacity: 1;
        transform: rotate(405deg);
    }

    input:checked+label span:last-child {
        opacity: 1;
        transform: rotate(-405deg);
    }

    input~nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0px;
        z-index: 2;
        transition: all 0.3s ease;
        transition-delay: 0.3s;
        overflow: hidden;
        background: #0D111A;
    }

    input~nav>ul {
        text-align: center;
        position: absolute;
        top: 35%;
        left: 20%;
        right: 20%;
    }

    input~nav>ul {
        opacity: 0;
        transition: 0.3s;
        transition-delay: 0s;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    input:checked~nav {
        height: 100vh;
        transition-delay: 0s;
    }

    input:checked~nav>ul {
        opacity: 1;
        transition-delay: 0.3s;
    }

    .header_wrapper label {
        display: block;
    }

    .dropdown {
        font-size: 16px;
    }

    .dropdown::after {
        margin-left: 3px;
    }

    .dropdown-content ul li a {
        font-size: 16px;
    }
}