.service-box-section {
    background-color: var(--color-offblack);
    overflow: visible;

    .wrapper {
        max-width: 1512px;
        width: 100%;
        margin: 0 auto;
    }

    .wrapper,
    .box {
        overflow: visible;
    }

    .box {
        position: relative;
        isolation: isolate;
    }

    .meta {
        position: sticky;
        top: 0;
        z-index: 100;
        display: none;
        width: 100%;
        height: 0;
        min-height: 0;
        align-items: flex-start;
        justify-content: space-between;
        overflow: visible;
        pointer-events: none;
        @media (min-width: 768px) {
            display: flex;
        }
    }

    .numbers,
    .dots {
        position: relative;
        pointer-events: auto;
    }

    .numbers {
        position: absolute;
        right: 0;
        padding: 3.75rem 3.75rem 0 0;
        font-family: var(--font-heading);
        font-size: var(--text-h2);
        color: var(--color-blue);
        line-height: 1;
        font-variant-numeric: tabular-nums;
        .non-active-number {
            opacity: 0.5;
        }
    }

    .dots {
        position: absolute;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 9rem 3.75rem 0 0;
    }

    .service-box-dot {
        width: 0.50rem;
        height: 0.50rem;
        padding: 0;
        background: rgba(255, 255, 255, 0.5);
        color: inherit;
        cursor: pointer;
        transition:
            background-color 180ms ease,
            transform 180ms ease;
    }

    .service-box-dot:hover,
    .service-box-dot:focus-visible,
    .service-box-dot.is-active {
        width: 0.75rem;
        height: 0.75rem;
        background-color: var(--color-blue);
    }

    .service-box-dot:focus-visible {
        outline: 2px solid currentColor;
        outline-offset: 4px;
    }

    .service-box {
        top: 0;
        display: flex;
        flex-wrap: wrap;
        background-color: var(--color-offblack);
        z-index: calc(var(--service-box-index, 0) + 1);
        @media (min-width: 768px) {
            position: sticky;
        }

        .service-box-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            padding: 3rem 2rem 3rem 2rem;
            color: var(--color-white);
            @media (min-width: 768px) {
                width: 50%;
            }
            @media (min-width: 1200px) {
                padding: 3rem 7.5rem 3rem 3.5rem;
            }
            h2 {
                color: var(--color-blue);
                padding: 0 0 0.5rem 0;
                @media (min-width: 768px) {
                    padding: 0px;
                }
            }
            h3 {
                padding: 0 0 1.5rem 0;
            }
            .paragraph {
                padding: 0 0 2.5rem 0;
            }
            .list {
                color: var(--color-white);
                opacity: 1;
            }
            ul {
                display: grid;
                grid-template-columns: 1fr;
                font-family: var(--font-heading);
                font-size: var(--text-h5);
                padding: 0 2.5rem 2.5rem 2.5rem;
                opacity: 1;
                @media (min-width: 516px) {
                    grid-template-columns: 1fr 1fr;
                    font-size: var(--text-h6);
                    padding: 0 2rem 2.5rem 2rem;
                }
                @media (min-width: 1200px) {
                    font-size: var(--text-h5);
                }
                li {
                    padding: 0 0 1rem 0;
                    line-height: 1;
                    @media (min-width: 516px) {
                        padding: 0 1rem 1rem 0;
                    }
                    @media (min-width: 991px) {
                        padding: 0 3rem 1rem 0;
                    }
                }
            }
            .button-box {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                @media (min-width: 516px) {
                    flex-wrap: nowrap;
                }
                .bricks-button {
                    width: 100%;
                    @media (min-width: 516px) {
                        width: auto;
                    }
                }
            }
        }
        .image {
            width: 100%;
            height: 100vh;
            max-height: 412px;
            object-fit: cover;
            filter: grayscale(1);
            @media (min-width: 768px) {
                width: 50%;
                max-height: 855px;
            }
            @media (min-width: 991px) {
                height: 100vh;
            }
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .service-box-section .service-box-dot {
        transition: none;
    }
}
