
.header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
}


.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.header__menu_div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header__menu_ul {
    margin: 0;
}

.header__menu_li {
    margin: 0 15px;
}

.header__menu_li a {
    text-decoration: none;
    color: var(--color-text-darkBlue);
    transition: all 0.2s ease-in-out;
    font-size: 14px;
    font-family: var(--font-1), serif;
}

.header__menu_dropdown {
    background: #101116;
    width: 210px;
}
.header__menu_dropdown a {
    margin-bottom: 4px;
}

.header__dropdown_menu {
    background: #101116;
    box-shadow: 0px 0px 11px rgba(45, 132, 227, 0.1);
    border: 0;
    border-radius: 10px;
    padding: 20px;
}


.header__dropdown_menu li {
    min-width: 180px;
    position: relative;
}
.header__dropdown_menu li:not(.last)::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid var(--color-text-darkBlue);
    opacity: 0.2;
    position: absolute;
}

.header__dropdown_menu li > a {
    opacity: 0.7;
    margin: 5px 0 3px 0;
}
.header__dropdown_menu li > a:hover {
    opacity: 1;
    color: var(--color-text-darkBlue);

}

.header__buttons_div {
    display: flex;
    align-items: center;
}
.header__buttons_a{
    text-decoration: none;
    margin: 0 5px;
}

#headerBurgerContainer {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
}
#headerBurgerContainer.active {
    display: block;
}

.header__burger_btn {
    display: none;
}
.header__burger_btn img {
    height: 39px;
    width: 39px;
}

.header__burger_menu li {
    min-width: 190px;
    margin-bottom: 10px;
}
.header__dropdown_menu.in_burger li {
    min-width: 170px;
}

.header__burger_menu li:not(.last)::after {
    top: 30px;
    left: 0;
}
.header__burger_menu li.first::before {
    content: "";
    width: 100%;
    border-top: 1px solid var(--color-text-darkBlue);
    opacity: 0.2;
    position: absolute;
    top: -3px;
    left: 0;
}

.header__burger_menu > li > a {
    opacity: 1;
}
.header__burger_menu > li > a:hover {
    color: var(--hover-color-purple);

}

@media (max-width: 1199px) {
    .header__menu_li a {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .header__menu_div {
        display: none !important;
    }
    .header__burger_btn:not(.close) {
        display: block;
    }
}



