.brands-container {
    margin-top:         1rem;
    margin-bottom:      1rem;
    display:            flex;
    flex-wrap:          wrap;
    justify-content:    center;
}

.brands-logo-container {
    height:             95px;
    width:              calc(25%);
    text-align:         center;
    border-right:       1px solid silver;
    border-bottom:      1px solid silver;
    vertical-align:     top;
}
    .brands-container > .brands-logo-container:nth-child(4n+4),
    .brands-container > .brands-logo-container:last-child {
        border-right:   none;
    }

.brands-logo-container.last-row-desktop {
    border-bottom:      none;
}
.brands-logo-container a {
    display:            block;
    max-width:          93px;
    max-height:         70px;
    margin:             0 auto;
}
.brands-logo-container img {
    max-width:          93px;
    max-height:         70px;
    margin-top:         50%;
    transform:          translateY(-50%);
}

@media only screen and (max-width: 768px) {
    .brands-logo-container {
        width:          calc(33%);
    }
        .brands-container > .brands-logo-container:nth-child(4n+4) {
            border-right:   1px solid silver;
        }
        .brands-container > .brands-logo-container:nth-child(3n+3),
        .brands-container > .brands-logo-container:last-child {
            border-right:   none;
        }
    .brands-logo-container.last-row-desktop {
        border-bottom:  1px solid silver;
    }
    .brands-logo-container.last-row-tablet {
        border-bottom:  none;
    }
}
