.services{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    padding-bottom: 60px;
}
.services_title{
    padding-bottom: 40px;
    margin: 0;
    font-size: 1.7em;
    text-align: center;
}
.services_article{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.service{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 350px;
    padding: 0 10px;
    position: relative;
    margin-bottom: 40px;
}
.service_title{
    font-size: 1.3em;
    white-space: nowrap;
}
.service p{
    margin: 0;
    text-wrap: pretty;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.2em;
    padding-bottom: 60px;
}

.service_img{
    width: 170px;
    border-radius: 50%;
    padding: 20px;
    box-sizing: border-box;
}
.service_button{
    text-decoration: none;
    color:black;
    background-color: #FCBD00;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
   justify-self: flex-end;
   position: absolute;
   bottom: 0;
   border-radius: 7px;
   transition: all 0.3s;
   font-size: 0.8em;
}
.service_button:hover {
    background-color: #d8aa05;
    transform: scale(1.03);
}
@media only screen and (min-width: 980px) {
    .services_article{
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
    }
    .service{
        height: 500px;
        padding: 0 20px;
    }
    .service_title{
        font-size: 1.5em;
    }
    .service p{
        font-size: 1.2em;
        line-height: 1.3em;
       
    }
}