#services {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em; */
    border-bottom: thin solid var(--color-2-50);
}

#services>div {
    /* border: medium solid var(--color-2-50); */
    /* height: 17em;
    padding: 1em; */
}

#services>.service-title {
    text-align: center;
    /* text-transform: uppercase; */
    font-size: 1.25em;
    /* color: var(--color-2); */
    margin-bottom: .75em;
}

#services>.service-title:nth-child(odd) {
    /* text-align: right; */
}

#services>.service-title:nth-child(even) {
    /* text-align: left; */
}

.welcome2 span {
    /* font-size: 1.3em; */
    font-weight: bold;
}


#services>div>ul>li {
    margin-bottom: 0.75em;
}

@media (max-width: 1200px) {
    #services>div {
        height: auto;
    }
}

@media (max-width: 580px) {

    #services {
        grid-template-columns: 1fr;
    }

    #services>div {
        height: auto;
    }

}