.services {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--green-700);
    display: grid;
    row-gap: 2rem;
    overflow: hidden;
}

.services header {
    text-align: center;
    display: grid;
    row-gap: 1rem;
}

.services h1 {
    background-color: white;
    width: max-content;
    padding: .2rem 1rem;
    color: var(--green-700);
    font-family: var(--lexend-semibold);
    border-radius: .4rem;
    font-size: .8rem;
    justify-self: center;
}

.services h2 {
    color: white;
}

.services-card-container {
    display: flex;
    justify-content: space-evenly;
    row-gap: 3rem;
    column-gap: 2rem;
    flex-wrap: wrap;
}

.services-card-container > * {
    text-align: center;
    color: white;
    width: min(20rem, 100%);
    height: 22rem;
}

.services-card-container > * > :nth-child(2) {
    text-transform: capitalize;
}

.services-card-container img {
    width: 100%;
    height: 100%;
}
