

 @keyframes blink {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
/* stats */
.stats .col-4:nth-child(1) h2 {
        animation-delay: 0.2s;
    }

    .stats .col-4:nth-child(2) h2 {
        animation-delay: 0.4s;
    }

    .stats .col-4:nth-child(3) h2 {
        animation-delay: 0.6s;
    }

    @keyframes popUp {
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }