/* ----------------------------------------------------------------
   Section e
-----------------------------------------------------------------*/
/*=================layout===============*/
.section-e{
    padding: 80px 0 100px 0;
    background-color: #f8f8f8;
}
.section-e .section__heading .heading--sub{
    max-width: 400px;
}
.section-e .post-lists{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}
.section-e .post-lists .list-item{
    width: calc(100% / 3);
    padding: 15px;
}
/*=================Content==============*/
.service-box{
    background-color: #fff;
    border-radius: 6px;
    height: 100%;
    overflow: hidden;
}
.service__thumb{
    margin-bottom: 15px;
    width: 100%;
    height: 250px;
}
.service__thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service__text{
    text-align: center;
    padding: 0 28px 45px 28px;
}
.service__title{
    font-size: 2rem;
    color: var(--color__logo);
    font-weight: bold;
    margin-bottom: 15px;
}
.service__excerpt{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 991px){
    .section-e .post-lists .list-item{
        width: 50%;
    }
    .service__title{
        font-size: 1.8rem;
    }
    .service__excerpt{
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .section-e {
        padding: 60px 0 100px 0;
    }
    .service__thumb{
        height: 190px;
    }
    .section-e .post-lists{
        margin: -7.5px;
    }
    .section-e .post-lists .list-item{
        padding: 7.5px;
    }
    .service__title {
        font-size: 2rem;
    }
    .service__excerpt {
        font-size: 1.6rem;
    }
}
@media (max-width: 576px){
    .service__thumb {
        height: 150px;
    }
    .service__text {
        padding: 0 15px 15px 15px;
    }
}
@media (max-width: 480px){
    .section-e .post-lists .list-item{
        width: 100%;
    }
    .service__thumb {
        height: 250px;
    }
    .service__text {
        padding: 0 30px 30px 30px;
    }
}
@media (max-width: 420px){
    .section-e .post-lists .list-item{
        width: 100%;
    }
    .service__thumb {
        height: 220px;
    }
    .service__text {
        padding: 0 30px 40px 30px;
    }
}
@media (max-width: 380px){
    .service__thumb {
        height: 180px;
    }
    .service__text {
        padding: 0 30px 30px 30px;
    }
}
@media (max-width: 320px){
    .service__thumb {
        height: 165px;
    }
    .service__text {
        padding: 0 25px 25px 25px;
    }
}