/*title section
---------------------------------------------------------------- */
.tf-title-section .title-section .sub-title {
    position: relative;
    padding-left: 70px;
    display: inline-block;
}

.tf-title-section .title-section .sub-title::after {
    position: absolute;
    width: 15px;
    height: 4px;
    content: "";
    left: 0;
    top: 11px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: move 3s alternate infinite;
}

@keyframes move {
    from {
        left: 0px;
    }
    to {
        left: 40px;
    }
}

.tf-title-section .title-section .sub-title::before {
    position: absolute;
    height: 4px;
    width: 60px;
    content: "";
    left: 0;
    top: 11px;
    transform: rotate(-180deg);
    background: linear-gradient(
        246.06deg,
        #57B957 15.37%,
        #57B95769
    );
}

.tf-title-section.style2 .title-section .sub-title::before {
    position: absolute;
    height: 4px;
    width: 60px;
    content: "";
    left: 0;
    top: 11px;
    transform: rotate(-180deg);
    background: linear-gradient(
        246.06deg,
        #57B957 15.37%,
        #57B95769
    );
}

.tf-title-section.style3 .title-section .sub-title {
    padding-left: 60px;
}

.tf-title-section.style3 .title-section .sub-title::before {
    all: unset;
    content: "\e90a";
    font-family: "monal";
    color:#57B957;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.tf-title-section.style3 .title-section .sub-title::after {
    display: none;
}

.tf-title-section.style3 .title-section .heading {
    text-decoration: underline solid 2px;
    text-underline-offset: 4px;
}
