header{
    width: 100vw;
    background-color: var(--black);
    height: 10vh;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
    position: fixed;
    z-index: 10000;
}
.header__logo{
    width: 37%;
    padding-top: 8px;
}
.header__logo img{
    width: 100%;
}
.header__menu{
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 2vw;
    padding-top: 5px;
    padding-right: 25px;
}
.header__li{
    list-style: none;
}
.header__menu li a{
    color: #f9f9f9;
    font-weight: 400;
    font-size: 20px;
    text-decoration: none;
    padding-bottom: 5px;
    transition: 0.1s;
    font-family: 'PT Sans Narrow';
}
.header__li:hover > a{
    color: var(--orange);
    text-decoration: none;
    border-bottom: solid 1px var(--orange);
    padding-bottom: 3px;
    transition: 0.1s;
}


.header__li{
    position: relative;
}
.sublinks{
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    float: left;
    
}
.sublinks i{
    font-size: 14px;
}
.dropdown-content{
    display: none;
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    background-color: var(--black);   
    color: var(--orange);
}
.header__li:hover > .dropdown-content{
    display: flex;
    flex-direction: column;
    opacity: 1;
    top: 30px;
    animation-name: opacity;
    animation-duration: 0.5s;
}
.header__li .dropdown-content > a{
    font-size: 13px;
    padding: 15px 12px;
    white-space: nowrap;
    border-bottom: solid 1px grey;
}
.dropdown-content a:hover{
    color: var(--orange);
}
.active > .menu__link{
    color: var(--orange);
    border-bottom: solid 1px var(--orange);
    padding-bottom: 3px;
}
.menu__burger{
    color: var(--orange);
    display: none;
}
.dropdown-mobile{
    display: none;
}
.animation-rotate{
    animation-name: rotate;
    animation-duration: 0.5s;
}
.animation-inverse-rotate{
    animation-name: inverse-rotate;
    animation-duration: 0.5s;
}

.chevron-links-accounts{
    font-size: 14px;
    margin-left: 10px;
}
@media screen and (max-width:1024px) {
    
    header{
        padding: 5px 10px;
        min-height: 10vw;
    }
    .header__logo{
        width: 70%;
        height: auto;
        padding-left: 10px;

    }
    .menu__burger{
        width: 100%;
        color: var(--orange);
        display:flex;
        align-items: center;
        justify-content: end;
        gap: 10px;
        padding-right: 25px;
        margin: 0;
        font-size: 24px;
    }
    .burger__icon{
        display: block;
    }
    .header__menu{
        position: absolute;
        display: none;
        gap: 0px;
        width: 100vw;
        top: 8vw;
        left: 0px;
        background-color: var(--black);
        color: #f9f9f9;
    }
    .activeMenu{
        display: flex;
        flex-direction: column;
        animation: linear;
        animation-name: opacity;
        animation-duration: 0.3s;
    }
    .header__menu li{
        padding: 12px 25px;
        border-bottom: solid 1px grey;
    }
    .header__li.active{
        padding: 0px 0px;
    }
    .active  .menu__link{
        color: var(--orange);
        border-bottom: solid 0px;
        padding: 12px 25px;
    }
    .sublinks{
        width: 100%;
        justify-content: space-between;
        gap: 0px;
        padding-bottom: 0px;
    }
    .dropdown-dekstop{
        display: none;
    }
    .dropdown-mobile{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .dropdown-mobile a{
        width: 70%;
    }
    .dropdown-mobile i{
        height: 100%;
        width: 30%;
        display: flex;
        justify-content: end;
        padding-right: 30px;
        padding-block: 12px;
        color: var(--orange);
    }
    .dropdown-mobile i.accounts-links{
        justify-content: start;
        margin-left: 25px;
        font-size: 20px;
    }

    
    .header__li:hover > .dropdown-content{
        display: none;
    }
    .dropdown-content{
        position: static;
        display: none;
        height: 0%;
        transition: 5s;
    }
    .active-dropdown{
        display: flex;
        flex-direction: column;
        opacity: 1;
        top:35px;
        padding: 0px;
        margin: 0px;
        height: 100%;
        overflow: hidden;
        transition: 5s;
    }
    .active-dropdown > a{
        font-size: 13px;
        padding: 10px 40px 10px 40px;
        white-space: nowrap;
        border-bottom: solid 1px grey;
        margin: 0px;
    }
    .active-dropdown > a:first-child{
        padding: 0px 40px 10px 40px;
    }
    .active-dropdown > a:last-child{
        border-bottom: solid 0px grey;
    }
}

@media screen and (max-width:650px) {
    header{
        padding: 0px;
        min-height: 15vw;
    }
    .header__menu{
        top: 15vw;
    }
    .header__logo{
        width: 60%;
    }
    .menu__burger{
        width: auto;
        
    }
}
@media screen and (max-width:350px) {
    .header__menu{
        top: 20vw;
    }
}