.blog-list-view {
    max-width: 1400px;
}

.blog-content h2 {
    font-size: 32px;
    margin-top: 15px;
    color: #0051cf;
}

.blog-content .link-sec a {
    color: #0051cf;
    font-size: 14px;
    margin-right: 15px;
    position: relative;
    margin-bottom: 4px;
    display: inline-block;
}

.blog-content .link-sec a:before {
    content: '';
    position: absolute;
    height: 2px;
    width: 0%;
    background: #ffffff;
    bottom: -4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.blog-content .link-sec a:hover:before {
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: #F3BD00;
}

.blog-content p {
    font-size: 15px;
    margin-top: 15px;
    color: #5f6b87;
}

.blog-content .link-button {
    background: #0051cf;
    color: #ffffff;
    text-align: center;
    height: 50px;
    width: 150px;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.blog-content .link-button:hover {
    transform: translateY(-5px) !important;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

.blog-list {
    padding: 60px 0;
    margin: 0 15px;
    border-bottom: 1px solid #cccccc;
    overflow: hidden;
}

.blog-list:last-child {
    border-bottom: 0px solid #cccccc;
}

.blog-list.list-view {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.list-view .blog-img-sec {
    min-width: 300px;
    max-height: 300px;
    margin-right: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.list-view h2 {
    font-size: 27px;
    margin-top: 15px;
    color: #0051cf;
}

.list-view h2 {
    margin-top: 0;
}
.list-view .blog-img-sec img {
    max-width: 145%;
}
@media only screen and (max-width: 768px) {
    .blog-list.list-view {
        flex-direction: column;
    }
}


/* ********* Animation CSS ********* */


.box {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s ease 0.25s;
}

.box.animate {
    opacity: 1;
    transform: translateY(0);
}


/* ********* Animation CSS ********* */
img.img-fluid.anim1-Image.aos-init.aos-animate {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
    img.img-fluid.anim1-Image.aos-init.aos-animate:hover {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }