
.co-existenz-image {
    width: 100%;
    height: 200px;
    max-height: 200px;
    object-fit: contain;
}

.info-boxes {
    padding-top: 60px;
}

.co-existenz-container {
    width: 100%;
    display: flex;
    gap: 60px;
}

.main-picture {

    margin-top: 120px;
    margin-bottom: 50px;
    

    & img {
        width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 500px;
    }
}

.co-existenz-team {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
    padding: 30px;
    width: 100%;
}

.profile-co-existenz {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;


    & img {
        width: 100%;
        max-height: 200px;
        object-fit: contain;
    }
}


@media (max-width: 600px) {
    .co-existenz-container {
        flex-direction: column;
        gap: 0;
    }

    .main-picture {
        margin-top: 0;
        
        & img {
            max-height: 350px;
        }
    }
}