.services--container {
    padding: 30px var(--theme-content-padding) 1px;
}

.services--icon {
    text-align: center;
}

.services--section-title {
    text-align: center;
    color: var(--theme-teal71);
    margin-bottom: 8px;
}

.services--section-copy {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 18px;
}

.services--list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.services--item {
    max-width: 500px;
    margin: 0 auto 53px;
}

.services--image {
    position: relative;
    margin-bottom: 30px;
    max-width: 580px;
}

.count-1-mod .services--image {
    max-width: 615px;
}

.services--image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.services--image img {
    position: absolute;
    top: 0;
    left: 0;
}

.services--title {
    margin-bottom: 24px;
}

.services--copy {
    max-width: 534px;
    margin-bottom: 24px;
}

.services--copy :last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .services--container {
        padding: 40px var(--theme-content-padding) 1px;
    }

    .services--section-copy {
        margin-bottom: 72px;
    }

    .services--item {
        max-width: 100%;
        margin: 0 0 53px;
        display: flex;
        column-gap: 88px;
    }

    .services--image-wrap {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;        
    }

    .services--content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .services--image {
        margin-bottom: 0;
    }

    .services--item:nth-child(2n) {
        flex-direction: row-reverse;
    }
}