.crypto__box {
    position: relative;
}

.crypto__bg-stars {
    position: absolute;
    top: -97px;
    right: 19px;
    z-index: -1;
}

.crypto__subtitle {
    margin-bottom: 40px;
}

.crypto__title {
    margin-bottom: 24px;
}

.crypto__description {
    margin-bottom: 40px;
    letter-spacing: 0.001px;
}

.crypto__items {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 70%, transparent 100%);
    margin-bottom: 40px;
}

.crypto__item {
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    border-radius: 20px;
    padding: 32px 12px;
    background: #2a2a2c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.crypto__item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transition: opacity .3s ease-in-out;
    opacity: 0;
    background: linear-gradient(225deg, #D1ADFF 0%, #8290FF 37.81%, #D1ADFF 100%);
}

.crypto__item.swiper-slide-active::before {
    opacity: 1;
}

.crypto__item-icon {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.crypto__item-icon svg {
    width: 41px;
    height: 41px;
}

.crypto__item-title {
    color: #FFFFFF;
    pointer-events: none;
    user-select: none;
    position: relative;
    z-index: 2;
}

.crypto__link {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .crypto__bg-stars {
        position: absolute;
        top: -30px;
        right: 0;
    }

    .crypto__bg-stars svg {
        width: 850px;
        height: auto;
    }
}

@media (max-width: 550px) {
    .crypto__item {
        padding: 20px 12px;
    }
}