/* 
    Black Color: #101010;
    Red Color: #f31816;
    Green Color: #b4ca68;
    Gray Color: #f5f5f5;
*/
.cmn-blogs-list{
    background-color: rgba(180, 202, 104, 0.20);
}
.cmn-blogs-list .card-deck {
    margin-bottom: 15px;
}
.cmn-blogs-list .card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.cmn-blogs-list .card .blog-img img{
    transition: all 0.4s;
}
.cmn-blogs-list .card .card-body p {
    margin-bottom: 0;
}
.cmn-blogs-list .card:hover .blog-img img {
    transform: scale(1.1);
}
.blog-hero-banner{
    position: relative;
    color: #ffffff;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.blog-hero-banner .container {
    position: relative;
    z-index: 1;
}
.blog-details .blog-main-img img {
    border-radius: 8px;
}
.recent-blogs {
    position: relative;
    background-color: rgba(180, 202, 104, 0.20);
}
.recent-blogs .blogs-img img {
    border-radius: 5px;
}
.recent-blogs .media-body {
    font-size: 14px;
}
.recent-blogs .media-body a {
    margin-bottom: 3px;
    font-weight: 600;
}
.recent-blogs .media-body span {
    font-size: 12px;
    display: block;
}
.recent-blogs .blogs-img {
    max-width: 30%;
}
.share-via ul{
    display: flex;
    align-items: center;
}
.share-via ul li{
    margin-right: 10px;
    margin-bottom: 0;
}
.share-via ul li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f31816;
    color: #f31816;
    border-radius: 50px;
    transition: all 0.4s;
}
.share-via ul li a:hover{
    background-color: #f31816;
    color: #ffffff;
}
.blog-details .blog-wrapper{
    background-color: rgba(180, 202, 104, 0.20);
    padding: 15px;
    border-radius: 8px;
}