/*title section
---------------------------------------------------------------- */

.tf-heading-section.style1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tf-heading-section .before-title {
    display: inline-block;
}

.tf-heading-section.style1 .heading-section,
.tf-heading-section.style1 .sub-title  {
    width: 50%;
}
.tf-heading-section.style1 .sub-title {
    margin-left: 184px;
    margin-top: 26px;
}
.tf-heading-section .blurred-text {
    color: transparent;
    -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(31,36,44,0.07);
    white-space: nowrap;
}

.tf-heading-section .before-title {
    border-left: 5px solid #FD4A36;
    padding-left: 10px;
}

.tf-heading-section.style3 .before-title {
    border: none;
    padding-left: 0;
}

.tf-heading-section p {
    margin: 0;
}

.tf-heading-section.style3 .before-title::before {
    content: "\e914";
    font-family: 'banking-and-finance-icons';
    color: var(--theme-secondary-color);
    margin-right: 16px;
}

.tf-heading-section .heading {
    position: relative;
    z-index: 1;
}

.tf-heading-section .blurred-text {
    /*background: linear-gradient(90deg, #000, #fff, #000);*/
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 70%;
    animation: shine 5s linear infinite;
    position: relative;
}    
@media (max-width: 991px) {
    .tf-heading-section.style1 {
        display: block;
        align-items: unset;
        justify-content: unset;
    }
    .tf-heading-section.style1 .heading-section, .tf-heading-section.style1 .sub-title {
        width: 100%;
    }
    .tf-heading-section.style1 .sub-title {
        margin-left: 0;
    }
}