.list-arrow {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-arrow li {
    position: relative;
    padding-left: 39px;
    margin-bottom: 10px;
    color: #000375;
    font-size: 16px;
    font-family: 'ProximaNova',Arial,sans-serif;
    line-height: 22px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    transition: none;
}

.t-animate_started .list-arrow li:nth-child(1) { animation-delay: 0.1s; }
.t-animate_started .list-arrow li:nth-child(2) { animation-delay: 0.2s; }
.t-animate_started .list-arrow li:nth-child(3) { animation-delay: 0.3s; }
.t-animate_started .list-arrow li:nth-child(4) { animation-delay: 0.4s; }
.t-animate_started .list-arrow li:nth-child(5) { animation-delay: 0.5s; }
.t-animate_started .list-arrow li:nth-child(6) { animation-delay: 0.6s; }
.t-animate_started .list-arrow li:nth-child(7) { animation-delay: 0.7s; }
.t-animate_started .list-arrow li:nth-child(8) { animation-delay: 0.8s; }
.t-animate_started .list-arrow li:nth-child(9) { animation-delay: 0.9s; }
.t-animate_started .list-arrow li:nth-child(10) { animation-delay: 1s; }
.t-animate_started .list-arrow li:nth-child(11) { animation-delay: 1.1s; }
.t-animate_started .list-arrow li:nth-child(12) { animation-delay: 1.2s; }
.t-animate_started .list-arrow li:nth-child(13) { animation-delay: 1.3s; }

.t-animate_started .list-arrow li  {
    animation: slideUpFadeIn 0.6s ease forwards;
}

.list-arrow li:before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 28px;
    height: 29px;
    background-image: url("https://optim.tildacdn.com/tild6336-3161-4564-b462-383639633637/-/cover/33x34/center/center/-/format/webp/2c411d4c-8f84-4d68-9.png.webp");
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 479px) {
    .list-arrow li {
        font-size: 15px;
        opacity: 1;
        transform: translateY(0px);
        transition: none;
    }

    .t-animate_started .list-arrow li  {
        animation: none;
    }
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}