/* Circle container */
.word-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 10px 14px;
    overflow: hidden;
    text-align: center;
    border: 1px solid;
    padding: 15px;
    border-radius: 10px;
}


.word-cloud span {
    display: inline-block;
    line-height: 1.15;
    transition: transform .25s ease;
    cursor: default;
}





.word-cloud span:hover {
    transform: scale(1.06);
}

/* weights (sizes) */
.w1 {
    font-size: 40px;
}

.w2 {
    font-size: 35px;
}

.w3 {
    font-size: 30px;
}

.w4 {
    font-size: 25px;
}

.w5 {
    font-size: 20px;
}

.w6 {
    font-size: 15px;
}

/* palette */
.blue {
    color: #1a73e8;
}

.red {
    color: #d32f2f;
}

.purple {
    color: #6a1b9a;
}

.green {
    color: #00897b;
}


/* Hover and active styles */
.tkit_widget_service_list ul.service_list_box li a:hover,
.tkit_widget_service_list ul.service_list_box li a.active {
    color: #3b2459;
    background-color: var(--primary-color);
    border-radius: 6px;
    font-size: 20px;
    padding: 5px 10px;
    font-weight: 600;
}

.widgets_grid_box .widget-title {
    position: relative;
    /* important for absolute positioning */
}