.header_container{
    height: 120px;
}

.header_box{
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 94, 168, 1);
}

.main-menu{
    display: flex;
    align-self: center;
}

.dropdown-item {
    text-decoration: none;
    color: white;
    padding: 1vw;
}

.dropdown-item:hover {
    transition-duration: 0.7s;
    background : rgba(34, 34, 34, 0.98);
}

.top-menu{
    display: flex;
}

ul{
    margin: 0;
    padding: 0;
}

li{
    display: inline;
}

.top_menu_hidden, #desktop_group_menu{
    display: none;
}

#desktop_div_hidden_btn{
    align-self: center;
}

#div_btn_close{
    display: none;
}

#btn_ico{
    background: url(icone/menu.png) no-repeat center;
    background-size: contain;
    height: 50px;
    width: 50px;
}

@media (max-width: 930px) {

    #desktop_group_menu{
        display: block;
    }
    
    .top_menu_hidden{
        position: fixed;
        flex-direction: column;
        background-color: black;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100vw;
        padding: 90px 10px 0 30px;
    }

    .header_box{
        background: black;
    }

    .div_line{
        border-bottom: 2px solid gray;
        width: 80vw;
        margin: 10px 0 10px 0;
    }

    .dropdown-item:hover {
        background : black;
    }

    #div_btn_close{
        position: absolute;
        top: 0;
        right: 0;
        padding: 25px;
        z-index: 999;
    }

    #btn_close{
        background-color: black;
        font-size: 300%;
        color: white;
    }

    #btn_close:hover{
        cursor: pointer;
    }
    .main-menu{
        display: none;
    }
}