/*home grid layout start*/

.home-grid .post-container {
    background-size: cover;
    margin: 15px 12px;
    padding-left: 25px;
    position: relative;
}

.home-grid .container_a0, .home-grid .container_b1 {
    height: 499px;
}

.home-grid .container_a1, .home-grid .container_b0 {
    height: 288px;
}

.grid-row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

.grid-column {
    flex: 50%;
    max-width: 50%;
    padding: 0 4px;
}

.content-wrapper {
    position: absolute;
    bottom: 30px;
}

.content-wrapper .title {
    color: #FFF;
    font-size: 30px;
    line-height: normal;
    margin-bottom: 15px;
}

.content-wrapper .btn {
    color: #fff;
    background-color: #000;
    padding: 10px 40px;
    border: 1px solid #000;
}

.content-wrapper .btn:hover {
    color: #000;
    background-color: #fff;
}


@media screen and (max-width: 800px) {
    .grid-column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}

/*home grid layout end*/

/* custom category layout style start*/

.category-custom-container {
    font-family: 'Open Sans', sans-serif;
}

.category-custom-container a {
    text-decoration: none;
    line-height: 0;
}

.category-custom-container .post-box:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    transition: .3s ease;
    background-color: #485461;
    background-image: linear-gradient(315deg, #485461 0%, #28313b 74%);
}

.category-custom-container .post-box {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 455px;
    padding: 40px 24px 60px;
    margin: 15px;
    position: relative;
}

.category-custom-container .post-box .post-time {
    color: rgb(255 255 255);
    position: absolute;
    text-decoration: none;
    font-size: 12px;
    padding-bottom: 30px;
}

.category-custom-container .post-box h2.title {
    text-decoration: none;
    font-family: "Open Sans", sans-serif!important;
    color: #fff;
    position: absolute;
    bottom: 35px;
    font-size: 26px !important;
}

.category-custom-container .post-box hr {
    text-decoration: none;
    position: absolute;
    font-size: 12px;
    width: 90%;
    bottom: 40px;
    color: #fff;
}


@media screen and (max-width: 800px) {
    .category-custom-container .post-box {
        height: 300px;
        margin: 15px 0;
    }

    .home-grid .post-container {
        height: 288px;
    }
}

@media screen and (max-width: 475px) {
    .category-custom-container .post-box hr {
        width: 85%;
    }
}

/* custom category layout style end*/