content{
    height: auto;
    background-color: rgb(228, 228, 228);
}
.sectionBanner{
    background-image: url('../Media/Productos/madera.jpg');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom;
    height:200px;
    padding:135px 100px 50px;
    margin-bottom:20px;
    justify-content: baseline;
    display:flex;
    flex-direction: column-reverse;
}
#sectionTitle{
    color:whitesmoke;
    font-size: 100px;
    font-weight: bolder;
    margin:0;
}
/*########### ITEMS ###########*/   
    #itemsContainer{
        display:grid;
        grid-template-columns: repeat(5, 1fr);
    }
    
    /*########### ITEM ###########*/  
        .itemContainer{
            display:flex;
            background-color:white;
            flex-direction:column;
            margin:10px;
            border-radius: 10px;
            box-sizing: border-box;
            padding:15px;
        }
        .itemContainer label{
            text-align: center;
            height: 100%;
            display: flex;
            justify-content: center;
        }
        .itemName{
            font-size:20px;
            margin-bottom:15px;
        }
        .itemPrice{
            font-weight: bolder;
            justify-self: center;
            align-self: center;
            flex-grow:1;
        }
        .itemExpand:hover{
            text-decoration: underline;
        }
        .itemImgMask{
            position:
            relative;
            width: 80%;
            /* margin-top:-11px; */
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 10px;
            border:
            solid 3px black;
            padding-top: 80%;
            height: min-content;
        }
        .itemImgMask img{
            height:
            auto !important;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            min-height:100%;
        }
        .itemImgMask:hover .itemInformation{
            opacity:1;
        }
        .itemInformation{
            display:flex;
            flex-direction: column;
            position:absolute;
            bottom:0;
            left:0;
            overflow:hidden;
            color:white;
            background-color: rgba(0, 0, 0, 0.623);
            opacity:0;
            height:100%;
            width:100%;
            transition:0.5s;
            padding:15px;
            box-sizing: border-box;
        }
        .itemInformation label{
            text-align: left;
            text-transform: lowercase;
            justify-content: start;
        }
        .itemInformation label:hover{
            cursor: pointer;
        }
        .itemInformation label::first-letter{
            text-transform: capitalize;
        }
@media (max-width: 790px) {
    .sectionBanner{
        min-height: 0;
        height:min-content !important;
        padding:20px !important;
        padding: 10px !important;
    }
    h3{
        font-size: 12vmin !important;
    }
    #itemsContainer{
        grid-template-columns: repeat(2, 1fr) !important;
    }
}