.logo-row {
    display: flex;
    flex-wrap: wrap;
    padding: 2em;
    justify-content: space-around;
    background-color: rgba(255, 255, 255, 0.8);

}

.logo-row img {
    height: 200px;
    width: auto;
}

@media screen and (max-width: 768px) {
    .logo-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo-row img {
        height: 50px;
        width: auto;
    }
}
