#miniBanner{
    height: 350px;
    width: 90%;
    background-image: url(../Images/miniBannerTrabajo.jpg);
    background-size: cover;
    background-position: center;
}

#bannerContent{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    h1{
        font-weight: 500;
    }
}

#videoBanner{
    height: auto;
    width: 100%;
}

#contBanner{
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
    h2{
        margin-top: 64px;
        letter-spacing: 1px;
        width: 90%;
        margin-bottom: 0;
        font-weight: 500;
        color: var(--veige_oscuro);
    }
}

#prodsHombre{
    margin: 32px 0;
    gap: 16px;
    display: inline-flex;
    flex-wrap: wrap;
    height: auto;
    min-height: 300px;
    width: 90%;
    overflow-x: hidden;
}

.hotItem{
    padding: 2rem 1rem;
    border: 0px solid black;
    width: 21%;
}

#textMiniBanner{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    h3{
        font-size: 2rem;
        font-weight: 500;
        color: #fff;
        letter-spacing: 2px;
        margin: 0;
        text-align: center;
    }
}

@media(max-width:908px){
    #contBanner{
        height: auto;
    }
    #bannerContent{
        text-align: center;
    }
    #videoBanner{
        width: auto;
        height: 100%;
    }
    #miniBanner{
        width: 100%;
    }
    #textMiniBanner{
        h3{
            font-size: 1.5rem;
        }
    }
    .hotItem{
        width: auto;
    }
}