@media screen and (min-width:1400px) {
    section .container {
        max-width: 1320px;
    }
}

section {
    background-color: #002347;
}

.blog h1,
h2 {
    font-family: 'BebusNeue-Regular';
    margin-bottom: 0px;
}

.blog h1.our-blog {
    font-size: 75px;
    color: #ee7e30;
}

.blog-list .col-md-6.my-4 {
    /* margin-bottom: -75px !important; */
}

.blog-list .content {
    position: relative;
    margin: auto;
    overflow: hidden;
    height: 460px;
    border-radius: 5px;
}

.blog-list .content .content-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.blog-list .content:hover .content-overlay {
    opacity: 1;
}

.blog-list .content:hover .content-image {
    transform: scale(1.25);
    opacity: 0.5;
}

.blog-list .content-image {
    width: 100%;
    transition: 0.5s all ease-in-out;
    border-radius: 5px;
    height: 100%;
}

.blog-list .image-caption {
    height: 190px;
    background: linear-gradient(0deg, black, transparent);
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    top: -130px;
}

.blog-list .content:hover .image-caption {
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, -75%);
    transform: translate(0%, -75%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    top: -45px;
}

.blog-list .content-details {
    position: absolute;
    width: 100%;
    top: 95%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.blog-list .content:hover .content-details {
    top: 93%;
    left: 50%;
    opacity: 1;
}

.blog-list .content-details p {
    color: #fff;
    font-family: 'Lato-Heavy';
}

.blog-list .content-details .fadeIn-top {
    top: 90%;
}

.blog-list .content-details .read-more-icon {
    position: relative;
    top: 20px;
    left: 190px;
    right: 0;
    transition: all 0.3s ease-in-out 0s;
}

.blog-list .content:hover .read-more-icon {
    -moz-transform: translate(0%, -75%);
    transform: translate(85px, 0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    left: 0;
    /* right: 100%; */
}

@media screen and (max-width:786px) {
    .blog-list .image-caption {
        height: 140px;
        top: -80px;
    }
    .blog-list .content:hover .image-caption {
        top: -20px;
    }

    .blog-list .image-caption h2 {
        font-size: 22px;
        left: 15px;
        right: 15px;
    }
    .blog-list .content-details p {
        font-size: 13px;
    }
}

@media screen and (max-width:992px) {
    .blog-list .content {
        height: 275px;
    }
}