.brands {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.brands__brand {
    width: 50%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.brands__brand img {
    width: 75%;
    height: auto;
}

@media (min-width: 600px) {
    .brands__brand {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .brands__brand {
        width: 20%;
    }
}

@media (min-width: 1024px) {
    .brands__brand {
        width: 8%;
    }
}