.how-works__title h2{
    color: #3E2D9B;
}

.how-works__text {
    max-width: 1022px;
    margin: auto;
    color: #5F597A;
}

.how-works__item-inner {
    background: #eef0f3;
    border: 1px solid #f3f3f4;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.how-works__item-icon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-works__step {
    font-weight: 500;
    font-size: 16px;
    line-height: 200%;
    background: linear-gradient(180deg, #6349ea 0%, rgba(99, 73, 234, 0) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-works__item-text-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.how-works__item-text-wrap svg {
    flex-shrink: 0;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.03), 0 0 4px 0 rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    transition: all ease 0.3s;
}

.how-works__item:hover .how-works__item-text-wrap svg {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.08), 0 0 4px 0 rgba(0, 0, 0, 0.04);
}

.how-works__item-name {
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #2a1d6d;
    max-width: 237px;
}

.how-works__item-text-click {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 32px;
    left: 0;
    bottom: -110%;
    top: unset;
    z-index: -1;
    background: radial-gradient(100% 100% at 50.04% 0%, #110d2f 45%, #251470 100%);
    font-weight: 400;
    font-size: 18px;
    line-height: 178%;
    color: #c4caf9;
    display: flex;
    flex-direction: column;
    transition: all ease 0.3s;
}

.how-works__item-text-click svg circle{
    transition: all ease 0.3s;
}

.how-works__item-text-click:hover svg circle{
    fill-opacity: 0.3;
}

.how-works__item-text {
    flex: 1;
}

.how-works__item-text-click svg {
    margin-left: auto;
}

.how-works__item-inner-open .how-works__item-text-click{
    transition: all ease 0.3s;
    bottom: 0;
    z-index: 1;
}

.how-works__slider-buttons {
    justify-content: space-between;
    width: 100%;
    margin-top: 32px;
}

.how-works .how-works__pagination {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.how-works .swiper-pagination-bullet {
    background: rgb(82 47 235 / .3);
    margin: 0!important;
    padding: 0!important;
    gap: 8px;
    width: 16px;
    height: 4px;
    border-radius: 12px;
}

.how-works .swiper-pagination-bullet-active {
    background: #522FEB;
}

.how-works__button-next, .how-works__button-prev {
    cursor: pointer;
}

@media screen and (min-width: 1025px) {
    .how-works .how-works__pagination {
        display: none;
    }

    .how-works__item-inner {
        padding: 32px;
        min-height: 425px;
    }

    .how-works__slider-buttons {
        display: none;
    }
}

@media screen and (max-width: 1025px) {
    .how-works__item-inner {
        padding: 20px;
        min-height: 425px;
    }

    .how-works__item-text-click {
        padding: 20px;
    }

    .how-works__slider {
        overflow: visible;
    }

    .how-works__slider-buttons {
        display: flex;
    }
}
