.partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    flex: 1; 
}

.partnerContent {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.partnerName {
    font-weight: bold;
    margin-bottom: 10px;
}

.descPartner {
    margin: 30px;
    text-align: justify;
}

#whiteBack {
    background-color: #fff;
}

/*SMALL SCREENS*/
@media screen and (max-width: 768px) {
    .partnerContent {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .descPartner {
        max-width: 100%;
    }

    .logoPartner:not(#logoIUT) {
        width: 100px;
        height: auto;
    }

    #logoIUT {
        height: 90px;
        width: auto;
        margin: 0px 40px;
    }
}

/*BIG SCREENS*/
@media screen and (min-width: 769px) {
    .imgContent {
        width: 300px;
        margin-right: 30px;
    }

    .logoPartner:not(#logoIUT) {
        width: 250px;
        height: auto;
    }

    #logoIUT {
        height: 240px;
        width: auto;
        margin: 0px 40px;
    }

}