
.cards_with_numeration_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    @media (min-width: 768px) {
        gap: 30px;
    }
}

.card_with_numeration {
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    background: var(--grey-25);
    position: relative;
    overflow: hidden;
}
.card_with_numeration_img {
    width: 40px;
    height: 40px;
}

.card_with_numeration_number {
    height: 89px;
    position: absolute;
    right: 0;
    bottom: 0;
}
