:root {

}

.frame-layout-3 {
    .animated-link a{
        color: var(--bs-black);
        text-decoration: none;
    }
}

.animated-link {
    position: relative;
}

.animated-link {
    font-size: 42px;
    color: var(--bs-white);
    line-height: 1.2;
}

/*.animated-link a:hover .animated{*/
/*    color: #EDB4A3;*/
/*}*/
.animated-link a:hover,
.animated-link a:hover .animated {
    color: #98CCDC;
}

.animated-link a:hover svg{
    transform: translateX(13px);
    transition: all .5s;
    color: #EDB4A3;
}

.animated-link svg {
    width: 70px;
    color: #98CCDC;
    transition: all .5s;
    height: 40px;
}

.animated-link .subheadline {
    display: flex;
    gap: 15px;
    min-height: 70px;
}

.animated-link .animate {
    position: relative;
    display: flex;
    flex-direction: column;
}

.animated-link .animated {
    position: absolute;
    top: 0;
    transform: rotateX(-50deg) translateY(-20px);
    opacity: 0;
    transition: all .5s;
}

.animated-link .animated.active {
    top: 0;
    opacity: 1;
    transform: rotateX(0) translateY(0);
}

@media (min-width: 1200px) {
    .animated-link {
        font-size: 58px;
    }
}
