.stakeholder {
    width: 100%;
    height: auto;
    background-color: white;
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.stakeholder .container {
    max-width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
}

.stakeholder .image-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.stakeholder .image-container a {
    flex: 1 1 auto;
    margin: 5px;
}

.stakeholder .staks {
    background: #ffcc00;
    padding: 0;
    text-transform: uppercase;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    text-align: center;
    line-height: 1.2;
    width: 250px;
    height: 100%;
    margin: 0;
    clip-path: polygon(
        0% 0%,
        100% 0%,
        94% 10%,
        100% 20%,
        94% 30%,
        100% 40%,
        94% 50%,
        100% 60%,
        94% 70%,
        100% 80%,
        94% 90%,
        100% 100%,
        0% 100%
    );
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.2);
}

.stakeholder .image-container img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 767px) {
    .stakeholder .container {
        padding: 0 10px;
        margin-bottom: 50px;
    }

    .stakeholder .image-container {
        justify-content: center;
    }

    .stakeholder .image-container a {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .stakeholder .staks {
        width: 150px;
        font-size: 0.8em;
        padding: 5px;
    }

    .stakeholder .image-container img {
        height: 40px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .stakeholder .container {
        margin-bottom: 25px;
    }

    .stakeholder .image-container {
        justify-content: center;
    }

    .stakeholder .image-container a {
        flex: 0 0 calc(33.33% - 10px);
        max-width: calc(33.33% - 10px);
    }

    .stakeholder .staks {
        width: 200px;
        font-size: 0.9em;
    }

    .stakeholder .image-container img {
        height: 45px;
    }
}
