.pipeline_head_content {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.pipeline-links-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.pipeline_hexagon-bg {
    width: 200px;
    height: 200px;
    background: url(../image/Pfad_A_Prozess_Grafik_Wabe.svg) no-repeat;
    background-size: contain;
    font-family: var(--e-global-typography-ac82d06-font-family), Sans-serif;
    line-height: 20px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    cursor: pointer;
    font-size: 90px;
}
.pipeline_hexagon-bg.active {
    background: url(../image/Pfad_A_Prozess_Grafik_Wabe_green.svg) no-repeat;
    background-size: contain;
    text-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
}
.pipeline_info {
    text-align: center;
}
h3.pipeline_info_title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
}
.pipeline_info_subtitle {
    font-size: 18px;
}


.pipeline_body_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.border-pipeline {
    width: 100%;
    max-width: 600px;
    border-radius: 26px;
    border-width: 7px;
    border-style: solid;
    padding: 17px 30px;
    border-color: #C2E812;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}
.pipeline-arrow {
    width: 50px;
    height: 50px;
    background: url(../image/Pfad_A_Leistungen_Details_Pfeil_vect.svg) no-repeat;
    background-size: contain;
}
.border-pipeline.step-1 {
    background-color: #4B4F54;
    color: #ffffff;
    font-weight: 700;
}

.pipeline_body_content {
    display: none;
}


.pipeline_body_content.active {
    display: flex;
}
.item-step {
    opacity: 0; /* Start with hidden step-items */
    transition: all 1s ease-in-out; /* Smooth transition for fade-in effect */
}

.fade-in { /* New class for fading in */
    opacity: 1; /* Change opacity to make the item visible */
}


@media (max-width: 991px) {
    h3.pipeline_info_title {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    h3.pipeline_info_title .dash {
        display: none;
    }
}
@media (max-width: 767px) {
    .pipeline_head_content {
        gap: 15px;
    }
    .pipeline_hexagon-bg {
        width: 100px;
        height: 100px;
        line-height: 1;
        padding: 10px;
        font-size: 20px;
    }
    .border-pipeline {
        font-size: 16px;
    }
    h3.pipeline_info_title {
        font-size: 4.103vw;
        line-height: 7.385vw;
    }
}