.hero {
    border-bottom: 0.2rem solid #D76627;
    overflow: hidden;
    min-height:85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.divHero {
    width: 85vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
}

@media screen and (max-width:767px) {
    .divHero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 85vw;
        margin: 0 auto;
    }
}


@media screen and (min-width:768px) and (max-width:1023px) {

    .divHero {
        flex-direction: column;
        align-items: center;
        width: 85vw;
        margin: 0 auto;
    }
}


@media screen and (min-width:1441px) and (max-width:1920px) {

    .divHero {
        justify-content: unset;
    }
}