.circle-text-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.circle-text {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
/*     text-align: center; */
}

.circle-text-content {
    position: absolute;
    font-size: 18px;
    z-index: 10; 
}

.circle-text-wrapper[data-rotate="true"] .circle-text-circle {
    animation: rotateCircle 20s linear infinite; /* Rotation animation */
	 transform-origin: 0px 10px;
	
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}
.circle-text-wrapper.stop-hover .circle-text-circle:hover {
    animation-play-state: paused;
}

.circle-description,.circle-title {
    margin-bottom: 0 !important;
}
