html {
    overflow-x: hidden;
}

.maintenance__seperator {
    padding-top: 3rem;
    padding-bottom: 2rem;

    @media only screen and (min-width: 700px) {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
}

#sc-maintenance {
    color: #fff;
    text-align: center;
    padding-bottom: 7rem;
}

#sc-maintenance .logo img {
    max-width: 300px;
    margin: 0 auto;
}


@media only screen and (min-width: 900px) {
    #sc-maintenance .columns {
        display: flex;
    }

    #sc-maintenance .logo img {
        max-width: 520px;
    }
}



#sc-maintenance .services {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    column-gap: 8rem;
    text-align: left;

    @media only screen and (min-width: 550px) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#sc-maintenance .service {
    border-bottom: 2px dotted rgb(127, 99, 46);
    padding-bottom: 0.5rem;
}

@media only screen and (min-width: 550px) {


    #sc-maintenance .service:nth-last-child(-n + 2) {
        border-bottom: none;
    }
}

#sc-maintenance h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#sc-maintenance p {
    margin-bottom: 1rem;
}

#sc-maintenance .location {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    padding-top: 2rem;
}