.step-cards {
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.step-cards__image {
    width: 77%;
    max-width: 110rem;
    position: absolute;
    right: 2.5%;
    top: 7%;
    z-index: -1;
}

.step-cards__header {
    align-items: flex-start;
    text-align: left;
}

.step-cards__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.step-cards-item {
    gap: 4rem;
    padding: 4.5rem 5rem;
    transition: 0.3s ease;
}

.step-cards-item__header {
    gap: 1.2rem;
}

.step-cards.column-view .step-cards__image {
    width: 50%;
    right: 20%;
    top: 10%;
}

@media (hover: hover) and (pointer: fine) {
    .step-cards-item:hover {
        translate: 0 -2.5%;
    }
}


@media screen and (max-width: 1024.9px) {
    .step-cards__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575.9px) {
    .step-cards__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .step-cards-item {
        gap: 3.5rem;
        padding: 2.4rem;
    }
}




.step-cards.column-view .step-cards__inner {
    display: flex;
    align-items: flex-start;
    gap: 17.5rem;
}

.step-cards.column-view .step-cards__header {
    flex: 0 0 auto;
    width: calc(470/1140 * 100%);
    padding-top: 5rem;
    margin: 0;
    position: sticky;
    top: 10rem;
}

.step-cards.column-view .step-cards__list {
    grid-template-columns: repeat(1, 1fr);
}

@media screen and (max-width: 1024.9px) {
    .step-cards.column-view .step-cards__inner {
        flex-direction: column;
    }

    .step-cards.column-view .step-cards__header {
        width: 100%;
        padding-top: 5rem;
        position: static;
    }

    .step-cards.column-view .step-cards__image {
        top: 20%;
    }
}

@media screen and (max-width: 575.9px) {
    .step-cards.column-view .step-cards__image {
        width: 130%;
        top: 16%;
        right: -18%;
    }
}