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

h1{
    letter-spacing: 1px;
    font-weight: 600;
}

#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);
}

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

section{
    display: flex;
    flex-direction: row;
    height: 500px;
    width: 100%;
}

.textHist{
    height: 100%;
    width: 70%;
    background-color: var(--veige);
    padding: 2rem;
    box-sizing: border-box;
    h2{
        font-weight: 600;
    }
    p{
        font-size: 1.1rem;
    }
}

.imgHist{
    height: 100%;
    width: 30%;
    background-image: url(../Images/BotasMujer.PNG);
    background-size: cover;
    background-position: bottom;
}

@media(max-width:908px){
    section{
        height: auto;
        flex-direction: column;
    }   
    .textHist{
        height: auto;
        width: 100%;
    }
    .imgHist{
        height: 500px;
        width: 100%;
    }
    #bannerContent{
        text-align: center;
    }
    #videoBanner{
        width: auto;
        height: 100%;
    }
}