.steps {
    padding: 80px 0;
}

.steps .steps__grid {
    --grid-gap: 24px;
    display: flex;
    gap: var(--grid-gap);
    margin-top: var(--grid-gap);
}

.steps .steps__grid.top {
    margin-top: 40px;
}

.steps .steps__item {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px;
    min-height: 390px;
    flex: 1;
}

.steps .steps__item.blue::before {
    background-color: #2589FF;
}

.steps .steps__item::before {
    content: "";
    background-color: #F0F7FF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

.steps .steps__indicator {
    width: 60px;
    height: auto;
}

.steps .steps__title {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 28px;
    line-height: 130%;
    letter-spacing: 0%;
    color: #2589FF;
    margin: 16px 0;
}

.steps .steps__text {
    font-family: Suisse Intl;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--Secondary-400-Text-Base, #8787AB);
}

.steps .steps__item.blue .steps__title,
.steps .steps__item.blue .steps__text {
    color: #fff;
}

.steps .steps__bottom-img {
    margin-top: auto;
    width: 60px;
    height: auto;
}

.steps .steps__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.steps .steps__bottom {
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media screen and (max-width: 1100px) {
    .steps .steps__item {
        padding: 24px;
    }
}

@media screen and (max-width: 850px) {
    .steps {
        padding: 60px 0;
    }

    .steps .steps__grid {
        display: flex;
        flex-direction: column;
    }

    .steps .steps__item {
        min-height: unset;
    }

    .steps .steps__bottom-img {
        margin-top: 20px;
    }

    .steps .steps__title {
        font-size: 22px;
        margin: 10px 0;
    }

    .steps .steps__text {
        font-size: 16px;
    }

    .steps .steps__indicator {
        width: 50px;
    }

    .steps .steps__bottom-img {
        width: 50px;
    }

    .steps .steps__bg {
        height: 190px;
        width: auto;
    }
}

@media screen and (max-width: 600px) {
    .steps {
        padding: 40px 0;
    }

    .steps .steps__bottom .cta-link-btn {
        width: 100%;
    }

    .steps .steps__bottom {
        align-items: flex-start;
        margin-top: 20px;
    }
}

