.tf-counter {
    position: relative;
}

.tf-counter {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-counter .wrap-counter-inner .content {
    margin-top: -10px;
}

.tf-counter.default .wrap-counter-inner .icon {
    width: 100px;
    height: 100px;
    border: 4px solid #F2EDDC;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-counter .wrap-counter-inner .icon i {
    font-size: 40px;
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-counter .counter-number-wrapper {
color: var(--theme-secondary-color);
font-family: 'Poppins SemiBold';
font-style: normal;
font-weight: 600;
font-size: 35px;
line-height: 52px;

}

.tf-counter .counter-icon {
    border: 4px solid #F2EDDC;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.tf-counter .counter-number-wrapper .counter-number-suffix {
    color: var(--theme-accent-color);
}

.tf-counter .counter-title {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
}
/* style 1 */
.tf-counter.style-1 .wrap-counter-inner {
    display: flex;
}
.tf-counter.style-1 .counter-icon {
    border: 3px solid #F3F3F3;
    width: 70px;
    height: 70px;
    margin-bottom: 0px;
    margin-right: 20px;
}
.tf-counter.style-1 .counter-icon img {
    width: 30px;
    height: 30px;
}
.tf-counter .counter-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #535656;
}
.tf-counter .counter-number-wrapper {
    margin-bottom: -5px;
}
.tf-counter .wrap-counter-inner .content {
    margin-top: 4px;
}
/* style 2 */
.tf-counter.style2 {
    padding: 27px 30px 18px 30px;
    background: #fff;
    box-shadow: unset;
}
.tf-counter.style2:hover {
    box-shadow: 5px 5px var(--theme-accent-color);
}
.tf-counter.style2 .counter-icon i {
    font-size: 55px;
    color: var(--theme-accent-color);   
}
.tf-counter.style2 .counter-number-wrapper {
    font-family: 'Nunito';
font-weight: 600;
font-size: 42px;
line-height: 53px;
color: var(--theme-primary-color);
}
.tf-counter.style2 .counter-title {
    font-family: 'Nunito';
font-weight: 400;
font-size: 16px;
line-height: 20px;
color: var(--theme-primary-color);
}
/* style 3 */
.tf-counter.style3 {
    padding: 27px 30px 18px 30px;
    background: transparent;
    box-shadow: unset;
}
.tf-counter.style3 .wrap-counter {
    display: flex;
}
.tf-counter.style3 .counter-icon i {
    font-size: 30px;
    color: #F43FE2;   
}
.tf-counter.style3 .counter-number-wrapper {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 110%;
    color: #00234B;
    align-items: baseline;
    margin-bottom: -1px;
}
.tf-counter.style3 .counter-number-wrapper .counter-number-suffix {
    color: #F43FE2;
    font-size: 20px;
}
.tf-counter.style3 .counter-title {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    color: #00234B;
}
.tf-counter.style3 .inner-icon {
    margin-right: 14px;
    margin-top: 8px;
}
@media (max-width: 991px) {
    .tf-counter .counter-number-wrapper {
        font-size: 60px;
    }
    .tf-counter .wrap-counter-inner .icon i {
        font-size: 50px;
    }
}