body {
    background-color: #F2F2F2;
}
.blog-wrapper{
    padding: 205px 0 0 0;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 1144px) {
   .blog-wrapper {
       padding: 205px 30px 0;
   }
}
@media (max-width: 840px) {
    .blog-wrapper {
        padding-top: 100px;
    }
}

.blog-title {
    font-family: latoBold, sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #454545;
}

@media (max-width: 767px) {
    .blog-title {
        font-size: 44px;
    }
}

.blog-posts {
    margin: 65px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1182px;
}

@media (max-width: 1144px) {
    .blog-posts {
        justify-content: space-around;
    }
}

.post {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 364px;
    height: 507px;
    box-shadow: 15px 15px 37px rgba(128, 128, 128, 0.28);
    margin: 15px;
}

@media (max-width: 840px) {
    .post {
        padding: 0 0 25px 0;
        margin: 0 5px 26px;
        width: 48%;
    }
}

@media (max-width: 767px) {
    .post {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .first-post {
        width: 100%;
        height: 363px;
        flex-direction: row;
        max-width: unset;
    }

    .first-post .post-image {
        width: 50%;
        max-width: 572px;
        height: 100%;
    }

    .first-post .post-image img {
        width: -webkit-fill-available;
        width: 100%;
    }

    .first-post .post-description {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        width: 50%;
        max-width: 572px;
        padding: 0 41px;
    }
}

/*---Post Description---*/
.post-image {
    width: 100%;
    height: 227px;
    display: flex;
    overflow: hidden;
    position: relative;
}

.post-image::before {
    box-shadow: inset 0 0 50px gray;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "No Image";
    color: gray;
    font-family: latoBold, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.post-image img {
    object-fit: cover;
    max-width: 100%;
    z-index: 2;
}

.post-article{
    font-family: latoBold, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}


.post-date-author {
    text-transform: uppercase;
    font-family: latoBold, sans-serif;
    font-size: 12px;
    line-height: 24px;
    color: #ffc112;
}

.post-author {
    margin-left: 10px;
}

.post-description {
    padding: 35px 31px 0;
}

.post-text {
    font-family: latoLight, sans-serif;
    font-size: 16px;
    color: #606060;
    font-weight: 300;
    overflow: hidden;
    max-height: 100px;
    margin-bottom: 19px;
    text-align: left;
}

.post-readmore {
    width: 173px;
    height: 43px;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0;
    font-family: latoLight, sans-serif;
    color: #000000;
    background: linear-gradient(to right, #FF931E, #FFC112);
}

.post-readmore a {
    color: unset;
    text-decoration: none;
}

.post-readmore:hover {
    font-family: latoBold;
    color: black;
}

.loader-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 100px;
}

.no-post {
    width: 100%;
    padding-bottom: 100px;
    align-items: center;
    justify-content: center;
    font-family: latoBold, sans-serif;
    font-size: 32px;
    color: gray;
    opacity: 0.3;
}

.paginate-pagination > ul {
    display: flex;
}

.paginate-pagination .page {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FB;
    font-size: 21px;
    font-family: latoLight, sans-serif;
    color: #606060;
    line-height: 0;
    text-decoration: none;
}

.paginate-pagination .active,
.paginate-pagination .page:hover {
    background: linear-gradient(to right, #FF931E, #FFC112);
    color: #606060;
}

.paginate-pagination .page-prev, .paginate-pagination .page-next{
    color: #ffc112;
    font-size: 15px;
}

.paginate-pagination .deactive,
.paginate-pagination .deactive:hover{
    color: #606060;
    background: #F8F9FB;
}