.our-supporters__gallery {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

.our-supporters__gallery-item {
    flex-basis: calc((100% - 102px) / 7);
}

.our-supporters__gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

@media screen and (max-width: 1024.98px) {
    .our-supporters__gallery {
        gap: 11px;
    }

    .our-supporters__gallery-item {
        flex-basis: calc((100% - 44px) / 5);
    }

}

@media screen and (max-width: 599.98px) {
    .our-supporters__gallery-item {
        flex-basis: calc((100% - 33px) / 4);
    }

}