
#logo img{
    width: 35%;
    padding-left: 10px;
    margin-top: 10px;
    
}

        
        
#banner img{
    margin-top:10px;
    width: 100%;
    height: 100%;
    
}


section{
    width: 100%;
   
}



*{
   margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}




header{
    height: 70px;
    background: #fff;
    color: #660033;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#btn-menu{
    display: none
}


header label{
    font-size: 30px;
    cursor: pointer;
    display: none;
}


.menu ul{
    background: #fff;
    display: flex;
    list-style: none;
}

.menu ul ul{
    display: none;
    position: static;
    
}

.menu a{
    display: block;
    padding: 30px 30px;
    color: #660033;
    text-decoration: none;
}

.menu a:hover{
    color: mediumvioletred;
}

.menu a span{
    margin-left: 5px;
    
}

.menu ul li:hover ul{
    display: block;
    position: absolute;
}

@media (max-width:768px){
    header label{
        display: block;
}    

 .menu{
     position: absolute;
     top: 70px;
     left: 0;
     width: 100%;
     transform: translateX(-100%);
     transition: all 0.3s;
    
  }        
    .menu ul{
        display: block;
        background: #fff;
    }
    
    .menu ul li:hover ul{
        display: none;
        position: static;
    }
    
    .menu a span{
        position: absolute;
        right: 5px;
    }

    #btn-menu:checked ~.menu{
        transform: translateX(0%);
    }
} 

.containerflex{
    display: flex;
    padding-left: 150px
}







