.sxs-ritcrd {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    padding: 2rem;
    border-radius: 50%;
    outline: solid $primaryClear;
    outline-width: 0px;
    outline-offset: 0px;
    text-align: center;
    transform: scale(.92);
    transition: outline-width 600ms, outline-offset 600ms, transform 600ms;
    --_thck: 10px;

    &__ico {
        margin-bottom: 1rem;

        .icon {
            font-size: $text-70;
        }
    }

    &__tit {
        font-size: $text-17;
    }

    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 2px dashed $primaryClear;
        border-radius: 50%;
        opacity: 1;
        transform: rotate(0deg);
        transition: transform 600ms, opacity 600ms;
    }

    &:hover {
        outline-width: var(--_thck);
        outline-offset: calc(0px - var(--_thck));
        transform: scale(1);
        transition: outline-width 300ms 200ms, outline-offset 300ms 200ms, transform 600ms;

        &::after {
            opacity: 0;
            transform: rotate(90deg);
        }
    }

    @include lg-wmin {
        &__ico {
            margin-bottom: .5rem;

            .icon {
                font-size: $text-60;
            }
        }

        &__tit {
            font-size: $text-15;
        }
    }

    @include xxl-wmin {
        &__ico {
            margin-bottom: 1rem;

            .icon {
                font-size: $text-70;
            }
        }

        &__tit {
            font-size: $text-18;
        }
    }
}