.services {
    /* background: #f1f1f1; */
    text-align: center;

}

.services h1 {
    color: white;
    display: inline-block;
    text-transform: uppercase;
    border-bottom: 4px solid orange;
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 40px;
}

.cen {
    /* max-width: 1200px; */
    /* margin: auto; */
    margin: 20px;
    /* overflow: hidden; */
    padding: 20px;
    display: flex;
    justify-content: space-evenly;
}

.service {
    display: block;
    width: calc(100%/2);
    /*    width: calc(100%/2);*/
    height: auto;
    margin: 0 -2px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .4s;
}

.service:hover {
    background: #ddd;
}

/* .service i {
    color: #3498db;
    font-size: 34px;
    margin-bottom: 30px;
} */

.service h2 {
    height: 100px;
    width: auto;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px;
    color: orange;
}

.service p {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: justify;
}

@media screen and (max-width:800px) {
    .service {
        width: 100%;

    }

    .cen {
        flex-direction: column;
    }
}


@media screen and (max-width:500px) {
    .service {
        width: 100%;
        padding: 0;
    }

    .cen {
        flex-direction: column;
        padding: 0;
    }

    .services {
        /* background: #f1f1f1; */
        text-align: center;
        margin-top: 35%;

    }
}