#partners-section {
    width: 100%;
    height: auto;
}

.gallery-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    padding-bottom: 20px;
}

.gallery-container .gallery {
    display: flex;
    justify-content: flex-start;
}

.gallery-container .gallery a {
    min-width: 200px;
    text-align: center;
}

.gallery-container .gallery img {
    box-sizing: content-box;
    width: auto;
    height: 60px;
    flex-shrink: 0;
}

.gallery-container .gallery-separator {
    border-right: 1px solid #d3d3d3;
}

.gallery-container .gallery img:last-child {
    border-right: none;
}

@media (min-width: 816px) {
    .gallery-container {
        overflow: hidden;
        overflow-x: auto;
        margin: 4em 0px;
    }

    .gallery-container .gallery {
        justify-content: space-between;
    }

    .gallery-container .gallery a {
        min-width: 0;
    }

    .gallery-container .gallery img {
        height: 45px;
        padding: 0 0px;
        object-fit: contain;
    }
}