/**
 * Partner section displayed on Collab page stylesheet
 */

 /* MAIN */
.partner {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 90%;
}
.partner_presentation {
    display: flex;
    flex-flow: row wrap;
    gap: 2rem;
}
/* PARTNER PRESENTATION */
.partner_society {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.partner_logo {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
}
.partner_logo img {
    max-height: 300px;
    max-width: 350px;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: top right;
}
.partner_text {
    width: 70%;
}
/* FUNDER PART */
.partner_society.funder {
    align-items: flex-start;
}
.funder_presentation {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.funder_presentation h3 {
    text-align: right;
}
.partner_logo.funder {
    width: 100%;
}
/* NETWORKS PART */
.partner_networks p {
    font-size: 1rem;
    font-weight: bold;
}
.networks_box {
    display: flex;
    gap: 1rem;
    padding-top: .2rem;
}
@media all and (max-width: 950px) {
    .partner {
        max-width: 100%;
    }
}
@media all and (max-width: 850px) {
    .partner_society {
        align-items: flex-start;
        flex-direction: column;
    }
    .partner_logo {
        width: 40%;
    }
    .partner_logo img {
        object-position: top left;
    }
    .partner_text {
        width: 100%;
    }
    .funder_presentation {
        width: 50%;
    }
    .partner h2,
    .partner h3 {
        text-align: left;
    }
}
@media all and (max-width: 750px) {
    .funder_presentation {
        width: 60%;
    }
}