.aos-container {
    position: relative;
    .aos-navigation {
        @media (min-width: 768px) {
            display: none;
        }
        .aos-button-prev,
        .aos-button-next {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: #001E62;
            border-radius: 50%;
            color: #fff;
            position: absolute;
            top: 50%;
            &.aos-button-disabled {
                display: none;
            }
            &:focus-visible {
                outline-offset: 2px;
            }
            svg {
                width: 8px;
                fill: currentColor;
            }
        }
        .aos-button-prev {
            left: 0;
            transform: translate(-50%) translateY(-50%);
        }
        .aos-button-next {
            right: 0;
            transform: translateX(50%) translateY(-50%);
        }
    }
    .aos-footer {
        @media (max-width: 768px) {
            margin-top: var(--spacing18px);
        }
    }
}