.scroll-down {
    display: none;

    @media (min-width: 979px) {
        position: absolute;
        right: 2rem;
        bottom: 2rem;
        z-index: 10;
        border-radius: 999px;
        border: 0;
        cursor: pointer;

        background: #0d3b2e;
        color: #fff;

        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
    }
}

.scroll-down:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 4px;
}

.scroll-down__icon {
    display: grid;
    place-items: center;
}

.scroll-down__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}