﻿.blog-container {
    display: flex;
    flex-wrap: wrap;
    /*margin: 45px 0 0;*/
}

.blog-box {
    flex: 0 0 calc(33.33% - 15px);
    max-width: calc(33.33% - 15px);
    margin: 7.5px;
}

    .blog-box figure {
        height: 25rem;
        overflow: hidden;
    }

        .blog-box figure img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transition;
        }

    .blog-box:hover figure img {
        transform: scale(1.1);
    }

    .blog-box h3, .blog-box h4 {
        font-size: 1.7rem;
        font-weight: 700;
        color: black;
        text-transform: uppercase;
        line-height: 1.2;
        transition: transition;
        height: 30px;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .blog-box h3:hover {
            color: #0088CC;
        }

.blog-content {
    margin-top: 15px;
}

.def-btn {
    margin-top: 16px;
}

.def-btn a {
    display: inline-block;
    background: #0088CC;
    color: #fff;
    padding: 10px 25px;
    border-radius: 0;
}

.def-btn a:hover {
    text-decoration: none;
    cursor: pointer;
}

.d-flex {
    display: -ms-flexbox;
    display: flex;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.first-para {
    font-weight: bolder;
}

.second-para {
    margin-top: 8px;
}

.single-blog-wrap .content-img {
    padding-bottom: 20px
}

    .single-blog-wrap .content-img img {
        width: 100%;
        max-width: 100%;
        max-height: 450px;
        object-fit: cover
    }

.single-blog-wrap h3 {
    font-size: 22px;
    line-height: 25px;
    color: #000;
    padding-bottom: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700
}

.single-blog-wrap .blog-date {
    padding-bottom: 15px;
    font-size: larger;
    margin-top: 5px;
}