.top-header{
    width: 100%;
    height: 10vh;
    position: fixed;
    background: #fff;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.top-header .drapeaux{
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-header .drapeaux img{
    margin: 0 20px;
}
.top-header .contacts{
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: roboto;
    color: #abcf47;
}
.top-header .contacts span{
    margin: 0 5px;
    color: #abcf47;
}
.top-header .contacts a{
   color: #abcf47;
}



.top-section{
    width: 100%;
    height: 10vh;
    overflow: hidden;
    position: relative;
}

a{
    color: #fff;
    text-decoration: none;
}


header #burger-container{
    width: 50%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content:center;
    display: none;
    position: absolute;
    right: 0;
}

.top-section header  #burger{
    width: 30px;
    height: 3px;
    background: #abcf47;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.top-section header #burger::before, .top-section header #burger::after{
    position: absolute;
    content: '';
    width: 40px;
    height: 3px;
    background: #abcf47;
    cursor: pointer;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}
.top-section header #burger::before{
    width: 20px;
}
.top-section header #burger::after{
    width: 40px;
}


.top-section header #burger::before{
    transform: translateY(-10px);
}
.top-section header #burger::after{
    transform: translateY(10px);
}
#burger-container.open #burger{
    transform: translateX(-50px);
    background: transparent;
}
#burger-container.open #burger::before{
    width: 40px;
    transform: rotate(45deg) translate(35px,-35px);
}
#burger-container.open #burger::after{
    transform: rotate(-45deg) translate(35px,35px);
}

.top-section .menu{
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 50vh;
    top: 20vh;
    left: -100%;
    background: #494949;
    display: flex;
    flex-direction: column;
    transition: .5s ease;
}
.top-section .menu a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8%;
    font-family: roboto;
    font-size: 1.3rem;
    position: relative;
    padding: 10px;
    transition: .5s;
}
.top-section .menu a:hover{
    background: rgba(0, 0, 0, 0.5);
}
.top-section .menu a::before{
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #fff;
}

.produits-container{
    position: fixed;
    width: 30%;
    height: 45vh;
    background: #abcf47;
    top: 23vh;
    left: 30%;
    transform: translateX(-30%);
    z-index: 99;
    border-radius: 5px;
    font-family: roboto;
    display: none;
}
.produits-container span{
    position: absolute;
    top: -35px;
    left: 80%;
    width: 0;
    z-index: 1;
    border-top: 15px solid transparent;
    border-bottom: 20px solid #abcf47;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
.produits-container ul{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.produits-container li{
    padding: 10px;
    list-style: none;
    transition: .5s;
}
.produits-container li:hover{
    background: #7c9537;
}
.produits-container li a{
    display: block;
}
.produits-container li a:hover{
    color: #50B1E9;
    text-decoration: underline;
}


header{
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 10%;
    top: 10vh;
    left: 0;
    background: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
}

header #logo{
    width: 20%;
    height: 100%;
    border-bottom: 2px solid #abcf47;
    display: flex;
    align-items: center;
    justify-content: center;
}
header nav{
    width: 80%;
    height: 100%;
    font-family: roboto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 2px solid #abcf47;
}



header nav a{
    font-size: 1.2rem;
    padding: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 4px solid transparent;
    transition: .5s ease;
}
header nav a .arrow{
    margin-left: 10px;
}
header nav a.active, header nav a:hover{
    color: #abcf47;
    border-bottom: 4px solid #abcf47;
}