.services{
    color: #1d3557;
    width: 80%;
    margin-right: 10%;
    /* background-color: #222629; */
    padding: 2vh;
    box-sizing: border-box;
}

.services .services-title{
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    border-bottom: 1px solid #1d3557;
}

.services .services-body{
    width: 100%; 
    justify-content: space-evenly;
    border-collapse: collapse;
}

.services .services-body .services-card{
    display: inline-block;
    width: 30%;
    margin-right: 2.5%;
    /* border-right: 1px solid #afd275; */
    /* border-left: 1px solid #afd275; */
    background-color: #edf2f4;
    padding: 1vh;
    box-sizing: border-box;
    text-align: justify;
    margin-top: 1vh;
}

.services .services-body .services-card .services-card-top{
    width: 100%;
}

.services .services-body .services-card .services-card-top img{
    width: 100%;
}

.services .services-body .services-card .services-card-bottom{
    
}

.services .services-body .services-card .services-card-bottom h4{
    color: #fca311;
}


.services .services-body .services-card .services-card-bottom p{
    color: #1d3557;
}


@media screen and (max-width:900px){
    .services .services-body .services-card{
        display: block;
        width: 100%;
        margin-right: 0%;
        border-right: 1px solid #afd275;
        border-left: 1px solid #afd275;
        padding: 1vh;
        box-sizing: border-box;
        text-align: justify;
    }
    
}