#fusion_blog.container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.box_blog:first-of-type {
    flex: 0 100%;
    height: 600px;
    margin: 0;
    position: relative;
}

.box_blog:first-of-type .box_blog_content {
    height: 100%;
}

.box_blog:first-of-type .box_blog_image {
    height: 100%;
}

.box_blog:first-of-type .box_blog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box_blog:first-of-type .box_info_container {
    position: absolute;
    bottom: 50px;
    left: 1%;
}

.box_blog:first-of-type .box_blog_title {
    padding: 15px 20px;
    background-color: #000;
    text-transform: uppercase;
    font-size: 2rem;
    height: auto;
}

.box_blog:first-of-type .box_blog_title p {
    margin: 0;
    color: #fff;
    font-weight: 700;
}

.box_blog:first-of-type .box_blog_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    margin-top: 30px;
    border: 0;
}

.box_blog:first-of-type .box_blog_info .box_blog_info_left, .box_blog:first-of-type .box_blog_info .box_blog_info_right {
    flex: 0 50%;
}

.box_blog:first-of-type .box_blog_info .box_blog_info_right {
    text-align: right;
}

.box_blog:first-of-type .box_blog_info .box_blog_info_right p {
    padding-right: 20px;
}

.box_blog:first-of-type .box_blog_info .box_blog_info_left p {
    padding-left: 20px;
}

.box_blog:first-of-type .box_blog_info .box_blog_info_left {
    border-right: 1px solid #000;
}

.box_blog {
    flex: 0 31%;
    height: 500px;
    margin: 50px auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.box_blog a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.box_blog_content {
    width: 100%;
}

.box_blog_image {
    width: 100%;
    height: 300px;
}

.box_blog_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box_blog_title {
    height: 100px;
    display: flex;
    align-items: center;
}

.box_blog_title p {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.3rem;
    color: #000;
    font-weight: 600;
}

.box_blog_info {
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.box_blog_info_left, .box_blog_info_right {
    flex: 0 50%;
}

.box_blog_info_left {
    text-align: left;
    border-right: 2px solid #000;
}

.box_blog_info_right {
    text-align: right;
}

.box_blog:hover .box_info_container .box_blog_title p {
    background: #000;
    color: #fff;
}

.box_blog_image img {
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.box_blog:hover .box_blog_image img {
    transform: scale(1.1);
}

.button.fusion_blog {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    width: 160px; 
    height: 30px; 
    color: #000; 
    line-height: 30px; 
    border: 2px solid #000; 
    text-align: center; 
    display: block; 
    margin: 50px auto; 
    cursor: pointer;
}

.button.fusion_blog:hover {
    color: #fff;
    background-color: #000;
}

/*SINGLE POST*/

#ful .banner-template .test_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 1);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ful .banner-template .test_overlay h3 {
    color: #fff;
    font-size: 3rem;
}

@media screen and (max-width: 1280px) {

    .box_blog:first-of-type .box_info_container {
        left: 2.5%;
    }

    .box_blog {
        flex: 0 45%;
        height: 550px;
        margin: 50px 2.5% 0 2.5%;
    }

    .box_blog_image {
        height: 350px;
    }

}

@media screen and (max-width: 834px) {

    .box_blog {
        height: 500px;
    }

    .box_blog_image {
        height: 300px;
    }

}

@media screen and (max-width: 600px) {

    .box_blog {
        flex: 0 95%;
    }

}

@media screen and (max-width: 414px) {

    .box_blog:first-of-type {
        height: calc(100vh - 80px);
    }

    .box_blog:first-of-type .box_info_container {
        width: calc(100% - 20px);
    }

    .box_blog:first-of-type .box_blog_info .box_blog_info_left p, .box_blog:first-of-type .box_blog_info .box_blog_info_right p, .box_blog_info_left p, .box_blog_info_right p {
        font-size: 0.8rem;
    }

    .box_blog:first-of-type .box_blog_title p, .box_blog_title p {
        font-size: 1rem;
    }

    .box_blog {
        height: 440px;
    }

    .box_blog_title {
        height: 80px;
    }

    .box_blog_info {
        height: 40px; 
    }

}

@media screen and (max-width: 320px) {

    .box_blog:first-of-type .box_blog_title {
        padding: 15px 10px;
    }

    .box_blog:first-of-type .box_blog_info .box_blog_info_right p {
        padding-right: 10px;
    }

    .box_blog:first-of-type .box_blog_info .box_blog_info_left p {
        padding-left: 10px;
    }

}