/*page bar shape start */
.cards{
	overflow:hidden;
}
/*page bar shape end */

/*card css start*/
.blog-list-item-anchor {
    text-decoration: none;
}
.cards {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 21px 40px 1px rgba(91, 104, 113, 0.14), 0 0 1px 0 rgba(26, 32, 36, 0.32);
    transition: all 0.3s ease-in-out;
}
.cards:hover{
    transform: scale(1.01);
}
.cards .card_body{
    padding: 25px 40px 40px 40px;
    position: relative;
}
.cards .blog_title{
    color: #c87e5d;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px ;
}
.cards .blog_heading{
    color: #173629;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 152.023%;
    letter-spacing: -0.48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cards .blog_text {
    color: #3E4462;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cards::before {
    content: '';
    height: 15px;
    width: 15px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-image: url(https://brickclay.b-cdn.net/wp-content/themes/brickclay/assets/images/database-services/diagnal_arrow_icon.svg);
}
.cards:hover::before {
    opacity: 1;
}
/*card css start*/



/** Pagination **/
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-wrapper ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    border-radius: 8px;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.pagination-wrapper .page-numbers li a:not(.current):hover {
    background-color: #c1c1c1;
    color: #fff !important;
    border-radius: 8px;
}

/* Active */
.pagination-wrapper .page-numbers.current {
    background: #0f7b5a;
    color: #fff;
    cursor: default;
}

/* Prev / Next */
.pagination-wrapper .page-numbers.prev,
.pagination-wrapper .page-numbers.next {
    font-weight: 600;
    padding: 0 8px;
}

/** End of pagination **/


/*tablet css start*/
@media only screen and (max-width: 1024px){
    /*card css start*/
    .cards .card_body{
        padding: 18px 18px 40px 18px;
    }
    .cards .blog_title{
        font-size: 12px;
        letter-spacing: 2px;
    }
    .cards .blog_heading{
        font-size: 16px;
        letter-spacing: -0.32px;
    }
    /*card css start*/
}
/*tablet css end*/