﻿@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateX(100px) rotateY(10deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.news-page__col-3 {
    animation: slideFadeIn 0.8s ease-in-out forwards;
    opacity: 0;
}

    .news-page__col-3:nth-child(1) {
        animation-delay: 0.1s;
    }

    .news-page__col-3:nth-child(2) {
        animation-delay: 0.3s;
    }

    .news-page__col-3:nth-child(3) {
        animation-delay: 0.5s;
    }
