.tf-counter .counter-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tf-counter .counter-number-wrapper {
    font-size: 64px;
    font-weight: 600;
    line-height: 66px;
    letter-spacing: 0em;
    color: var(--theme-primary-color);
    font-family: 'Exo 2';
    margin-right: 12px;
    display: inline-flex;
}

.tf-counter .content {
    display: flex;
    align-items: center;
}

/* style 2 */

.tf-counter.style2 .content {
    flex-direction: column;
    box-shadow: 0px 10px 25px 0px #365F681A;
    border-radius: 20px;
    background: #fff;
    padding: 10px 43px;
    position: relative;
}

.tf-counter.style2 .content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--theme-primary-color);
    width: 110%;
    height: 125%;
    border-radius: 20px;
}

.tf-counter.style2 .content .counter-number-wrapper {
    font-family: 'Manrope';
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    margin: 0;
    letter-spacing: 0;
    text-transform: unset;
}

.tf-counter.style2 .content .counter-title {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
    text-transform: unset;
}

/* style 3 */

.tf-counter.style3 .content {
    display: block;
}

.tf-counter.style3 .wrap-counter-inner {
    display: flex;
    align-items: center;
    column-gap: 15px;
    box-shadow: 0px 10px 25px 0px #365F681A;
    background: #fff;
    border-radius: 73px;
    padding: 16px 24px 16px 16px;
}

.tf-counter.style3 .content .counter-number-wrapper {
    font-family: 'Manrope';
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin: 0;
    letter-spacing: 0;
    text-transform: unset;
}

.tf-counter.style3 .content .counter-title {
    font-family: 'Manrope';
    letter-spacing: 0;
    text-transform: unset;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.tf-counter.style3 .image-counter img {
    max-width: 56px;
    max-height: 56px;
    object-fit: cover;
}