/* ------------------------ LOGO GRID ------------------------------- */


.logogrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 75px;
    grid-gap: 6rem;
    
}
.logogrid__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc(20% - 40px);
}
.logogrid__img {
    object-fit: cover;
    max-width: 200px;
    max-height: 100px;
    filter: grayscale(100%) contrast(25%);
    transition: filter 0.3s ease;
}
.logogrid__img:hover {
    filter: grayscale(0) contrast(100%);
}

.container-brands{
    display: flex;
    flex-direction: column;
    justify-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto 50px auto;
    
}
.section-brand{
    display: flex;
    min-height: 50vh;
    align-items: center;
    justify-items: center;
    flex-direction: column;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 5vh;
}
/* ------------------------ LOGO GRID END ------------------------------- */