.services {
    padding-top: 120px;
    padding-bottom: 40px;
}

.services h2{
    text-align: center;
}


.services-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: minmax(240px, 400px) minmax(240px, 400px) ;
    justify-content: center;
    grid-gap: 40px;
}

.service-item img {
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
}

.service-item h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-item p {
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.service-item .links {
    text-align: center;
}

.service-item:nth-child(1) {
    background: url(/img/veicular.webp) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: grid;
}

.service-item {
    align-content: center
}

.service-item:nth-child(2) {
    background: url(/img/arquitetonico.webp) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: grid;
}

.service-btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 840px) {

    .services-list {
        grid-template-columns: minmax(240px, 400px);
    }
    

    
}