/* sub text-read more css */
.sub-title-heading {
    position: relative;
    overflow: hidden;
    max-height: 3em;
    transition: max-height 0.3s ease;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.sub-text-outer .read-more {
    display: none;
    cursor: pointer;
    color: #E94D37;
    text-decoration: underline;
}
.sub-title-heading.expanded {
    max-height: none;
    text-overflow: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}
.sub-title-heading.expanded + .read-more {
    display: none;
}
/* sub text-read more css ends */