.our-brands {
    padding: 60px 0px;
}

.our-brands-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.our-brands-item {
    width: calc((100% / 4) - 15px);
    padding: 40px;
    box-sizing: border-box;
    background: white;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}

.our-brands-item > img {
    max-width: 100%;
    max-height: 100%;
    background: white;
}

.our-brands-item.white > img {
    background: none;
}

.our-brands-item:hover {
    scale: 1.02;
}