.galerie {
    background: #FFF !important;

    .galerie__list {
        justify-content: center;
        gap: 40px 0;

        .galerie__item {
            display: flex;
            justify-content: center;

            .galerie__content {
                max-width: 160px;
                max-height: 120px;

                img {
                    object-fit: contain;
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}