.next-steps-cards-container .next-steps-cards-wrapper {
    margin: 24px auto 0;
}

.next-steps-cards-container .next-steps-cards.block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
}

.next-steps-cards-container .next-steps-cards.block > div {
    flex: 0 0 48%;
    max-width: 48%;
    margin-bottom: 24px;
}

.next-steps-cards-container .next-steps-cards.block .next-step-item {
    background: var(--page-bg-color);
    box-shadow: 4px 4px 12px #1e334824, 0.1px 16px 32px #7191b124;
    border-radius: 8px;
    border: none;
    text-align: center;
    padding: 24px;
    display: flex;
    height: 100%;
    cursor: pointer;
    position: relative;
    justify-content: space-between;
}

.next-steps-cards .right-icon-div img {
    width: 100%;
}

.next-steps-cards-container .next-steps-cards.block p {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin: 0;
    text-align: left;
    padding-right: 15px;
}

.next-steps-cards-container .next-steps-cards.block .arrowimg {
    background: url("../../icons/arrow-right-faq.svg") no-repeat;
    height: 24px;
    width: 24px;
    margin-left: auto;
    padding-right: 20px;
    padding-bottom: 30px;
    position: absolute;
    right: 10px;
    bottom: 2px;
}

.next-steps-cards-container .next-steps-cards.block .right-icon-div {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    margin-bottom: 15px;
}

.three-fourth-center .next-steps-cards-wrapper {
    width: 70%;
    margin: 30px auto 0;
}

.section.button-arrow.align-center.next-steps-cards-container .default-content-wrapper h2 {
    font-size: var(--f-s-sub-title);
    font-weight: var(--font-weight-medium);
}


@media (width <= 768px) {
    .next-steps-cards-container .next-steps-cards.block p {
        font-size: 14px;
        font-weight: var(--font-weight-regular);
        margin-bottom: 44px;
    }

    .next-steps-cards-container .next-steps-cards.block .next-step-item {
        padding: 12px;
        gap: 4px;
        position: relative;
        flex-direction: column-reverse;
        justify-content: flex-end;
    }

    .next-steps-cards-container .next-steps-cards.block {
        gap: 12px;
    }

    .next-steps-cards-container .next-steps-cards.block .right-icon-div {
        width: 24px;
        height: 24px;
    }

    .next-steps-cards-container .next-steps-cards.block .arrowimg {
        position: absolute;
        bottom: 0;
        right: 0;
        margin-right: 16px;
        top: unset;
    }

    .next-steps-cards-container .next-steps-cards-wrapper {
        margin-top: 16px;
    }

    .three-fourth-center .next-steps-cards-wrapper {
        width: 100%;
        margin: 30px auto 0;
    }
}
