.services-content {
    border-radius: 15px;
    box-shadow: 0px 4px 80px rgba(0,0,0, 0.08);
    overflow: hidden;
    margin-block-end: 40px !important;
}

.services-content__title {
    background-image: url('../../images/section-title-bg.svg');
    background-repeat: no-repeat;
    background-position: top center;
    padding-top: 40px;
    text-align: center;
}

.services-content__image {
    & > .relative {
        height: 100%;
        img {
            object-position: top;
        }
    }
}

.services-content__block {
    display: flex;
    flex-direction: column;
}

.services-content__block.empty-content .services-content__infowrapper {
    margin-left: 3%;
    margin-right: auto;
}


.services-content__block.empty-content .services-content__title {
    padding-top: 0;
    background-image: none;
}

.services-content__info {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.services-content__infowrapper {
    max-width: 440px;
}

.services-content__desc {
    text-align: center;
    ul {
        list-style: none;
        padding: 0;
        margin: 0;
        li {
            margin-bottom: 30px;
            position: relative;
            font-size: 1.125rem;
            font-weight: 700;
            padding-left: 48px;
            &:before {
                content:" ";
                position: absolute;
                left: 0;
                top: -5px;
                background-image: url('../../images/check-bg.svg');
                background-repeat: no-repeat;
                background-position: center center;
                width: 36px;
                height: 36px;
            }
        }
    }
}


@media (min-width: 768px) {
    .services-content__block {
        flex-direction: row;
        align-items: stretch;
        &.even {
            .services-content__image {
                order: 2;
            }
            .services-content__info {
                order: 1;
                justify-content: flex-start;
            }
        }

        .services-content__title {
            background-position: top left;
            padding-top: 60px;
            text-align: left;
        }
    }
    .services-content__infowrapper {
        margin-left: auto;
        margin-right: auto;
    }
    .services-content__image {
        height: auto;
        flex: 50% 0 1;
    }
    .services-content__info {
        flex: 1 0 calc(50% - 30px);
        padding: 30px 15px;
    }

    .services-content__title {
        font-size: clamp(1.875rem, 0.559vw + 1.516rem, 2.188rem);
    }

    .services-content__desc {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .services-content__info {
        padding: 40px 15px;
    }
}

@media (min-width: 1280px) {
    .services-content {
        margin-block-end: 70px !important;
    }
    .services-content__info {
        padding: 50px 15px;
    }
}

@media (min-width: 1536px) {
    .services-content__info {
        padding: 70px 15px;
    }
}