h1.title {
    font-size: 48px;
    line-height: 1;
    color: #000000;
    padding-left: 30px;
    position: relative;
}

h1.title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: #50BA14;
}

@media (max-width: 1440px) {
    h1.title {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    h1.title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    h1.title {
        font-size: 24px;
        font-weight: bold;
    }
}



@keyframes text {
    0% {
        left: 0;
        right: auto;
        top: 0;
        bottom: auto;
    }


    35% {
        left: 99%;
        top: 0;

    }

    50% {
        left: 99%;
        bottom: 99%;
    }

    85% {
        left: 0;
        top: 99%;
    }

    100% {
        left: 0;
        top: 0;
    }
}

.AMore {
    position: relative;
    overflow: hidden;
}

.AMore::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color);
    border-radius: 4px;
}

.AMore::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
    width: 50%;
    height: 50%;


}

.AMore:hover::before {
    background: #fff;
    animation: text 1s linear;
}