
.services-container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-evenly;
}

.title-desc h2{
    font-size: 35px;
    margin: 1vh 0 1vh 0;
}

.title-desc p{
    font-size: 17px;
}

.service{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 5vh 0 5vh 0;
}

.service img, .service .title-desc{
    width: 100%;
}

.service .title-desc{
    text-align: center;
}

.contact-us-message{
    margin: 5vh 0 5vh 0;
    text-align: center;
}

.contact-us-message p{
    margin-bottom: 3vh;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.service a{
    margin-top: 2vh;
}

@media screen and (max-width:810px){
    .service{
        width: 95%;
        margin: 4vh 0 5vh 0;
    }

    .service img{
        width: 100%;
    }

    .service img{
        margin-bottom: 2vh;
    }

    .service .title-desc{
        width: 98%;
    }

    .services-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
}