header{
    display: block;
    font-size: 15px;
    
}

.h-top-container{
    background: rgb(207 46 27);
    padding: 5px 0;
    transition: ease all .3s;
}

.h-top-container .social-item svg{
    fill: cornsilk;
    width: 20px;
    height: 20px;
}

.h-top-container .social-item a{
    text-decoration: none;
    margin-left: 5px;
}

.h-top-container .social-item a svg{
    fill: cornsilk;
    width: 20px;
    height: 20px;
}

.h-top-container .social-item span{
    color:cornsilk;
}

.h-container{
    display: flex;
    height: 70px;
}

.nav {

    display: flex;
    align-items: center;
    justify-content: end;
}

.brand, .lang{

    display: flex;
    align-items: center;
}

.brand img{
    max-height: 70px;
}

.nav{
    flex-grow: 1;
}

.nav ul{
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100%;
}

.nav ul .drop-parent{
    margin-right: 10px;
    position: relative;
}

.nav ul li .drop-menu{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #484848;
    position: relative;
    transition: ease all .3s;
}

.nav ul li .drop-menu svg{
    width: 12px;
    height: 12px;
    margin-left: 5px;
}

.nav ul .drop-parent{
    padding: 20px;
}


.nav ul .drop-parent .sub-item{
    position: absolute;
    top: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 9;
    display: none;
    height: auto;
    background: #fff;
    min-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.nav ul  .drop-parent:hover .sub-item{
    display: block;
}

.nav ul li .sub-item li{

    padding: 10px 20px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.452);
}

.nav ul li .sub-item li a{
    text-decoration: none;
    opacity: 0.7;
    color: #484848;

}



.nav ul li:hover a{
    color: rgb(207 46 27);

}

.lang a svg{
    width: 24px;
    height: 24px;
}

.lang a{
    border-bottom: 2px solid rgb(205, 205, 205);
    margin-right: 5px;
}

.fixed-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 99;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
    transition: ease all .7s;
    
}



