/*service archive page*/
.service_list ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service_list ul li{
    width: 100%;

    margin-bottom: 20px;
    background-color: #1B222F;
}
.service_list ul li p{
    margin-bottom: 0;
}
.service_list ul li img{
    width: 100%;
    height: 280px;
}
.service_list ul li h2{
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}
@media (min-width:768px){
    .service_list ul li {
        width: 49%;
    }
    .service_list ul li img{
    height: 200px;
}
}
@media (min-width:992px){
    .service_list ul li {
        width: 32%;
    }
    .service_list ul li img{
    height: 200px;
}
}