.trendy_circular_text .circle-containter {
    display: inline-block;
}

.trendy_circular_text .circle-containter,
.trendy_circular_text .circle-containter svg {
    max-width: 100%;
}

.trendy_circular_text .circle-containter svg g {
    will-change: transform;
    transform: rotate(0deg);
    transform-origin: center;
    animation-name: rotate_circular_text;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 0;
}

@keyframes rotate_circular_text {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
