/*  */
.archive header.category__name {
    background: #7f8f5b;
    color: #fff;
    padding: 37px;
}

.archive header.category__name h1 {
    text-transform: uppercase;
}

.archive .category__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5rem 0;
}

.archive .category__wrap .single__post {
    width: 49%;
    margin: 10px;
    height: 360px;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    transition: all 0.5s ease-in-out;
}

.archive .category__wrap .single__post::before {
    height: 0;
    position: absolute;
    content: "";
    transition: all 0.5s linear;
}

.archive .category__wrap .single__post h2.entry-title {
    text-align: center;
    position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    padding: 35px;
    top: 34%;
}

.archive .category__wrap .single__post h2.entry-title a {
    color: #fff;
}

.archive .category__wrap .single__post:hover::before {
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.2;
}

.archive .category__wrap .single__post:nth-child(odd) {
    margin-left: 0;
}

.archive .category__wrap .single__post:nth-child(even) {
    margin-right: 0;
}

.home .product-inner-image {
    height: 400px;
}

/* Media  */

@media screen and (min-width: 1440px) {
    .home .product-inner-image {
        height: 500px;
    }
}

@media screen and (max-width: 1440px) {
    .home .product-inner-image {
        height: 320px;
    }
}

@media screen and (max-width: 1200px) {
    .archive .category__wrap {
        justify-content: space-evenly;
    }
    .archive .category__wrap .single__post {
        width: 48%;
    }
}

@media screen and (max-width: 991px) {
    .home .product-inner-image {
        height: 255px;
    }
}

@media screen and (max-width: 767px) {
    .archive .category__wrap .single__post {
        width: 90%;
    }
    .archive .category__wrap .single__post:nth-child(even) {
        margin-right: 10px;
    }
    .archive .category__wrap .single__post:nth-child(odd) {
        margin-left: 10px;
    }
    .home .product-inner-image {
        height: 200px;
    }
}
