/* main content */
.services-archive {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-archive .container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    transition: gap 0.4 ease;
}

.service-archive-title {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 5;

    opacity: 0;
    transform: scale(0.94);
    animation: heroReveal 1s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-archive-title .display-5xl,
.services-archive .clients-review.body-md-regular {
    color: var(--black_white50);
}

.services-review-wrapper {
    display: flex;
    align-items: center;
    color: var(--black_white50);
}

.services-review-wrapper img,
.services-review-wrapper picture {
    width: 85px;
    height: 14px;
}

.services-review-wrapper .body-md-semibold {
    margin-left: 12px;
    margin-right: 6px;
}

.services-archive .services-list {
    margin: 0;
    gap: 0;
}

.services-archive .services-list-arrow-mobile {
    display: none;
}

/* Circles */
.left-side-ellipsis {
    position: absolute;
    width: 326px;
    height: 326px;
    left: -198px;
    top: 1079px;
    background: #3C4AC1;
    filter: blur(150px);
    flex: none;
    order: 4;
    flex-grow: 0;
    z-index: 4;
}

.right-side-ellipsis {
    position: absolute;
    width: 326px;
    height: 326px;
    /* left: 1394px; */
    right: -397px;
    top: 1421px;
    background: #7BFEDD;
    filter: blur(150px);
    flex: none;
    order: 0;
    flex-grow: 0;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .services-archive {
        padding: 50px 0 70px;
    }

    .services-archive .container {
        gap: 70px;
    }

    .services-archive .service-list-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .services-archive .services-list-arrow {
        display: none;
    }

    .services-archive .services-list-arrow-mobile {
        display: block;
        height: 24px;
        width: 24px;
    }

    .services-archive .services-list-arrow-mobile img,
    .services-archive .services-list-arrow-mobile picture {
        height: 100%;
        width: 100%;
        min-width: 24px;
    }

    .services-archive .services-list-item:not(:last-child) {
        border-radius: 0;
        border-bottom: 1px solid var(--neutral800);
    }

    /* Circles */
    .left-side-ellipsis {
        top: 979px;
        left: -298px;
    }

    .right-side-ellipsis {
        display: none;
    }
}