.container{
    width: 80%;
    margin: 4vh 10%;
    color: #1d3557;
    background-color: #edf2f4;
    padding: 2vh;
    box-sizing: border-box;
}

.services{
    color: #1d3557;
    width: 100%;
    /* 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-top: 2vh;
    margin-right: 2.5%;
    padding: 2vh;
    box-sizing: border-box;
    text-align: justify;
    box-shadow: 0px 1px 6px gray;
}

.services .services-body .services-card:nth-child(even){
    background-color:#edf6f9 ;
}

.services .services-body .services-card:nth-child(odd){
    background-color:#e8e8e4 ;
}

.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:nth-child(even) .services-card-bottom h4{
    color: #fca311;
}

.services .services-body .services-card:nth-child(odd) .services-card-bottom h4{
    color: crimson;
}

.services .services-body .services-card .services-card-bottom a{
    color: #edf2f4;
    text-decoration: none;
}

.services .services-body .services-card:nth-child(even) .services-card-bottom a .more{
    padding: 1vh;
    box-sizing: border-box;
    background-color: #1d3557;
    text-align: center;
    transition: 1s;
}

.services .services-body .services-card:nth-child(odd) .services-card-bottom a .more{
    padding: 1vh;
    box-sizing: border-box;
    background-color: #457b9d;
    text-align: center;
    transition: 1s;
}

.services .services-body .services-card:nth-child(even) .services-card-bottom a .more:hover{
    background-color: rgb(19, 19, 68);
}

.services .services-body .services-card:nth-child(odd) .services-card-bottom a .more:hover{
    background-color: #14213d;
}

@media screen and (max-width:900px){
    .services .services-body .services-card{
        display: block;
        width: 100%;
        margin-left: 0%;
        border-right: 1px solid #afd275;
        border-left: 1px solid #afd275;
        padding: 1vh;
        box-sizing: border-box;
        text-align: justify;
    }
    
}