.brand_logo{
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}
.btn-brand{
    background-color: transparent;
    border-style: none;
    outline: none;
    cursor: pointer;
}
.btn-brand:focus{
    border-style: none;
    outline: none;
}
.menu{
    height: 120px;   
    border-style: none;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-weight: bold;
    background-color: #FFFEF4;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.menu ul{
    margin-left: 5%;
    list-style: none;
    position: relative;     
}
.menu ul li{ 
    width: 120px;  
    float: left;
}
.menu a{
    margin-top: 30%;
    padding: 10px;
    display: block;
    text-decoration: none;
    text-align: center;   
    color: #1A1A1A;
    font-weight: bold;
    font-size: 18px;
}
.menu a:hover{
    background-color: #f4f4f4;
    color: #555555;
    text-decoration: none;
}
.menu ul ul{
    position: absolute;
    visibility: hidden;
    z-index: 1;
}
.menu ul li:hover ul{
    visibility: visible;
}
li a.show{
    color: white;
}
.menu ul ul li{
    float: none;
    border-bottom: solid 1px #cccccc;
    background-color: #555555;
}
.menu ul ul li a{
    background-color: #1A1A1A;
}
label[for="bt_menu"]{     
    cursor: pointer;
    height: 35px;
    width: 35px;
}
/* horizontal Start */
    .menu-horizontal{
        display: none; 
        width: 100%;      
    }
    .menu-horizontal a{
        margin-right: 20px;
    }
/* horizontal Menu End */

/* Vertical Menu Start */

/* Vertical Menu End */

@media (max-width: 1024px){
    label[for="bt_menu"]{     
       margin-top: 20px;
    }
    .brand-logo{
        height: 80px;
        width: 85%;
    }
    .btn-brand{
        height: 80px;
        margin-right: 10%;
    }
    .brand-img{
        height: 80%;
    }
    .menu{
        height: 80px;
        display: flex;
    }
    #carouselExampleIndicators{
        z-index: 0;
    }
    
    #bt_menu:checked ~ .menu ul{
        margin-left: -20%;
    }
    
    .itens{
        margin-top: 105%;        
        z-index: 1;
    }
    .menu ul{       
        position:absolute;
        z-index: 6;
        width: 80%;
        border-bottom-style: solid;
        border-bottom-width: 2px;
        border-color:black; 
        background-color: #FFFEF4;
        margin-left: -180%;
        transition: all .4s;
    }

    .menu ul li{
        width: 100%;
        float: none;
        border-top: 2px;
        border-style: solid;
        border-top-color: #1A1A1A;
        
    }
    .menu ul ul{
        position: static;
        overflow: hidden;
        max-height: 0;
        transition: all .4s;
    }
    .menu ul li:hover ul{
        height: auto;
        width: 100%;
    }
    .menu a{
        margin-top: 0;
    }
    

    /* horizontal Start */
    .menu-horizontal{      
        display: flex;       
    }
    /* horizontal Menu End */

    /* Vertical Menu Start */

    /* Vertical Menu End */
}