/* section title */
.section-title.top-title-bar .title-line, .section-title.side-title-bar .title-line{
    background-color: #00b712;
    background-image: linear-gradient(315deg, #00b712 0%, #5aff15 74%);
}

/* research topics/blog */

.research-topic{
    width: 27%;
    margin:3%;
    cursor: pointer;
    background-color: var(--light-color);
    min-width:250px;
}
.research-topic:hover{
    color:var(--light-color);
    border-color:var(--light-color);
    background-color: #00b712;
    background-image: linear-gradient(315deg, #00b712 0%, #5aff15 74%);
}
.research-topic .image-area{
    height: 150px;
}
.research-topic .text-area{
    padding:30px;
    height:120px;
    text-align: center;
}
.research-topic .text-area .topic-title{
    font-size:15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height:22px;
}
.research-topic .text-area .divider{
    width: 100%;
    border-top:1px solid;
    margin:20px 0;
}

/* doctors' page*/
.doctors-grid .doctor .image-area{
    background-color: #00b712;
    background-image: linear-gradient(315deg, #00b712 0%, #5aff15 74%);
}

.unbreak-text {
    word-break: auto-phrase !important;
}