/* ====================================
====== ANIMATION ======================
==================================== */

/* Appear From Right */
@keyframes afr {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes afr {
    from {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

.animate_afr {
    opacity: 0;
}

.animate_afr.animate_start {
    -webkit-animation: 0.8s cubic-bezier(1, 0, 0, 1) 0s normal backwards 1 afr;
    animation: 0.8s cubic-bezier(1, 0, 0, 1) 0s normal backwards 1 afr;
    opacity: 1;
}

/* Remove animation on small screens */
@media only screen and (max-width: 767px) {
    .animate_afr {
        opacity: 1;
        -webkit-animation: none !important;
        animation: none !important;
    }
}