.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-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 10s;
}

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

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

@keyframes rotate_circular_text_none {
    to {
        transform: rotate(0);
    }
}
