.services__main {
    position: relative;
}

.services__nav {
    position: absolute;
    top: 50%;
    z-index: 70;
    display: flex;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--blue, #011a2e);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(1, 26, 46, 0.24);
    border-radius: 50%;
    box-shadow: 0 0.5rem 1.5rem rgba(1, 26, 46, 0.14);
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.services__nav--prev {
    left: 0.75rem;
}

.services__nav--next {
    right: 0.75rem;
}

.services__nav svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services__nav:hover,
.services__nav:focus-visible {
    color: #fff;
    background: var(--blue, #011a2e);
    border-color: var(--blue, #011a2e);
    outline: none;
}

.services__nav.swiper-button-disabled {
    opacity: 0.32;
    cursor: default;
}

@media (max-width: 575px) {
    .services__nav {
        width: 2.75rem;
        height: 2.75rem;
    }

    .services__nav--prev {
        left: 0.5rem;
    }

    .services__nav--next {
        right: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services__nav {
        transition: none;
    }
}
