.blogs .card {
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 27px 20px rgba(0, 0, 0, 0.04);
    border: 0px;
}

.blog-header {
    background: #36B0C9;
    padding: 83px 0px;
}

.blogs .card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    /* Limits the text to 2 lines */
    line-clamp: 2;
    text-overflow: ellipsis;
}

.blogs .card-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    /* Limits the text to 2 lines */
    line-clamp: 3;
    text-overflow: ellipsis;
}

.blog-detail .blog-header:after {
    content: '';
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.blog-detail .position-sticky img {
    max-width: 126px;
    object-fit: cover;
}

.blogs .card img {
    max-height: 210px;
    height: 210px;
    object-fit: cover;
    vertical-align: middle;
    display: block;
    margin: auto;
}

ul.pagination {
    justify-content: center;
}

li.active span.page-link {
    background: #36B0C9 !important;
    border-color: #36B0C9;
}

@media screen and (min-width: 250px) and (max-width: 768px) {
    .blog-detail .position-sticky img {
        max-width: 100%;
        width: 100%
    }
}