/* HERO */

.hero {
    background-image: url('img/hero-ecoles/ifag-hero.jpg');
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: calc(60vh - 75px);
    padding-right: 5%;
}



@media screen and (max-width: 768px) {
    .hero {
        background-image: url('img/hero-ecoles/ifag-hero.jpg');
        display: flex;
        justify-content: center;
        align-items: center;
        background-position: top center;
        height: calc(100vh - 75px);
    }
}

/* FIN HERO */