/*.anm-move-in{*/
/*    margin-top: 100px;*/
/*}*/
@keyframes wipe-enter {
    0% {
        margin-top: 150px;
        opacity: 0.1;
    }
    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hs-animation {
        animation-name: wipe-enter;
        animation-duration: 2s;
        animation-iteration-count: 1;
    }
}