:root {
    --main-color: #00c3cb;
}

/* News Ticker - Home Page */
.news_ticker {
    background-color: var(--main-color);
}
.news_ticker a {
    color: #fff;
    font-weight: 400;
}
.news_ticker span {
    color: #0f294e;
}

/* About Us - Home Page */
.short-text,
.full-text {
    transition: all 0.3s ease;
}

.short-text {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #888888;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn .btn-text {
    transition: transform 0.3s ease;
}

.read-more-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

.about-content-wrapper {
    position: relative;
}

.about-text.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.about-text.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    pointer-events: none;
}

.about-text.expanded {
    max-height: 1000px;
    transition: max-height 0.5s ease;
}


.course_list .content_desc p {
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.courses_info .rating_stars {
    float: none;
    display: flex;
    align-items: center;
    gap: 7px;
}
.rating_stars i {
    color: #888;
    font-size: 12px;
    line-height: normal;
}



/* Responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
    .contact_detail li {
        font-size: 12px;
    }
    .contact_detail li a {
        font-size: 12px;
        vertical-align: super;
    }
    .contact_detail i {
        font-size: 12px;
        margin-right: 5px;
    }
}
