.add_anim {
    filter: blur(100px);

} 
@media screen and (max-width: 767px) {
    .add_anim {
        filter: blur(0px);
        opacity: 0;
    } 
}
.add_anim.anim_on{
    filter: blur(0px);
    transition: all 0.8s;
}
@media screen and (max-width: 767px) {
.add_anim.anim_on{
            opacity: 1;
    transition: all 0.8s;
}
}
.footer__text-mail a{
    font-family: "unbounded", sans-serif;
    font-size: clamp(1px, 0.9114583333vw, 14px);
    line-height: 1;
    color: #fff;
}
span.footer__text-mail {
    margin-top: 3px;
}
@media screen and (max-width: 767px) {
    .footer__text-mail a{
                font-size: 4vw;
    }
    span.footer__text-mail {
        margin-top: 8px;
    }
}