/* Conteneur de contenu */
.sc_content.content_wrap {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}

/* Animation basique si data-animation est présent */
[data-animation] {
    opacity: 0;
    transition: all .6s ease-in-out;
}
[data-animation].animated {
    opacity: 1;
}
