.title-img {
    position: relative;
    overflow: hidden;
    width: 100px;
    border-radius: 40px;
}
@media only screen and (min-width: 576px) {
    .title-img {
        width: 150px;
    }
}
@media only screen and (min-width: 992px) {
    .title-img {
        width: 200px;
    }
}
.title-img .marquee {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    height: 140px;
    writing-mode: vertical-lr;
    transform: translate(-50%, -50%) scale(-1);
}
.title-img .marquee span {
    font-size: 30px;
    font-weight: 700;
    will-change: transform;
    transform: translateY(0);
    white-space: nowrap;
    animation: marquee-slide 4s linear infinite;
    padding-top: 10px;
    color: #fff;
}
@media only screen and (min-width: 576px) {
    .title-img .marquee span {
        font-size: 40px;
    }
}
@media only screen and (min-width: 992px) {
    .title-img .marquee span {
        font-size: 70px;
    }
}

@keyframes marquee-slide {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}