.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 {
    transform-origin: center;
    animation-name: rotate_circular_text;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 0;
}

@keyframes rotate_circular_text {
    to {
        transform: rotate(1turn);
    }
}
