.tf-counter {
    position: relative;
    padding: 50px 40px 42px;
}

.tf-counter.default {
    background: #010c2a;
    border-radius: 5px;
}

.tf-counter .counter-number-wrapper {
    display: inline-flex;
    font-family: "Roboto Slab";
    font-weight: 700;
    font-size: 70px;
    line-height: 80px;
    color: #ffffff;
    margin-bottom: 20px;
}

.tf-counter .counter-title {
    font-family: "Roboto Slab";
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
}

.tf-counter .counter-description {
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    padding-left: 20px;
    position: relative;
}

.tf-counter .counter-description::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    width: 2px;
    height: 100%;
    background-color: #c4c4c4;
}

.tf-counter.default .counter-title {
    margin-bottom: 20px;
}

/* style 1 */
.tf-counter.style1 {
    background: #005DE0;
    padding: 35px 30px;
    position: relative;
}

.tf-counter.style1::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-bottom: 36px solid #005DE0;
    border-left: 30px solid transparent;
    bottom: 19px;
    left: -29px;
}

.tf-counter.style1 .wrap-counter {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
}

.tf-counter.style1 .counter-number-wrapper {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 0;
    margin-right: 20px;
}

.tf-counter.style1 .counter-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}

/* style 2 */
.tf-counter .counter-icon {
    font-size: 60px;
    color: #fff;
    display: inline-block;
    margin-bottom: -7px;
}

.tf-counter .counter-icon {
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.tf-counter:hover .counter-icon {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.tf-counter.style2 .counter-number-wrapper {
    font-size: 48px;
    line-height: 54px;
    margin-bottom: 9px;
    display: block;
}

.tf-counter.style2 .counter-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #e8e8e9;
}

/* style 3 */
.tf-counter.style3 {
    padding: 26px 60px 40px;
}

.tf-counter.style3 .counter-icon {
    color: #005DE0;
}

.tf-counter.style3 .counter-number-wrapper {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 9px;
    display: block;
}

.tf-counter.style3 .counter-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    position: relative;
    padding-left: 15px;
}

.tf-counter.style3 .counter-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    width: 4px;
    height: 90%;
    background-color: #005DE0;
}

.tf-counter.style4 .counter-number-wrapper {
    all: unset;
    color: #fff;
    display: block;
}

@media (max-width: 1600px) {
    .tf-counter.style3 {
        padding: 26px 38px 40px;
    }
}

@media (max-width: 1220px) {
    .tf-counter.style3 {
        padding: 26px 0 40px 25px;
    }
}

@media (max-width: 767px) {
    .tf-counter.style3 {
        text-align: center !important;
        padding-left: 0;
    }
    .tf-counter.style3 .counter-title {
        display: inline-block;
    }
}
