#hero-wrap-road .road-sign {
    /* animation: road-sign-598852296 2s infinite linear;
    backface-visibility: hidden; */
    animation: road-sign-1 2s infinite linear;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes road-sign-1 {
    0% {
        opacity: 1;
        /* transform: scale(1, 1); */
        transform: scale(1);
        animation-timing-function: linear;
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
        /* transform: scale(1.8, 1.8); */
        /* transform: translate(-50%, -50%) scale(1); */
    }
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Сдвигаем на половину ширины трека (где находится копия) */
        transform: translateX(calc(-100% / 2));
    }
}



@keyframes animate_pulse2 {
    0% {
        box-shadow: 0 0 0 0 #2424244d;
    }

    70% {
        box-shadow: 0 0 0 120px #24242400;
    }

    100% {
        box-shadow: 0 0 0 0 #24242400;
    }
}



@keyframes animate_pulse1 {
    0% {
        box-shadow: 0 0 0 0 #ececec68;
    }

    70% {
        box-shadow: 0 0 0 60px #ececec00;
    }

    100% {
        box-shadow: 0 0 0 0 #ececec00;
    }
}