.prozess-section {
    overflow: hidden;
}

.prozess-slider-wrap {
    position: relative;
    margin-top: 25px;
}

.prozess-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.prozess-slider::-webkit-scrollbar {
    display: none;
}

.prozess-card {
    position: relative;
    flex: 0 0 calc(31% - 8px);
    min-height: 130px;
    background: #fff;
    padding: 25px 30px;
    box-sizing: border-box;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;

    overflow: hidden;
}

.prozess-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 8px;
    color: #796047;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 400;
}

.prozess-card p {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 220px;
    font-size: 12px;
    line-height: 1.4;
}

.prozess-number {
    position: absolute;
    z-index: 1;

    right: 8px;
    bottom: -10px;

    font-size: 105px;
    line-height: 1;
    font-weight: 700;
    color: #eeeae6;
}

.prozess-prev,
.prozess-next {
    width: 30px;
    height: 30px;
    border: 1px solid #999;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    margin: 0 4px 20px 0;
}

@media (max-width: 991px) {
    .prozess-card {
        flex-basis: 48%;
    }
}

@media (max-width: 600px) {
    .prozess-card {
        flex-basis: 85%;
    }
}