.text-block-jud {
text-align: justify !important;
}

.tel-link {
    text-decoration: none;
    transition: opacity 300ms cubic-bezier(0.51, 0.92, 0.24, 1);
}
.tel-link::after {
    --scale: 0;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 2px;
    border-radius: 3px;
    background: #0E8075;
    transform: scaleX(var(--scale));
    transform-origin: var(--x) 50%;
    transition: transform 300ms cubic-bezier(0.51, 0.92, 0.24, 1);
}
.tel-link:hover {
    opacity: 1;
}
.tel-link:hover::after {
    --scale: 1;
}

.link-effect[data-elem-type="text"] a {
    text-decoration: none !important;
    /* цвет ссылки до наведения */
}

.link-effect[data-elem-type="text"] a:hover {
    /* цвет ссылки после наведения */
    color: #0E8075 !important;
}