
.container-logo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 1em 0;
}
.logo-container {
    margin: 12px 16px;
    text-align: center;
    width: 140px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media only screen and (max-width: 600px) {
    .logo-container {
        width: 100px;
        height: 52px;
    }
}
