.home_galerie
{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

.home_galerie_sz
{
    display: flex;
    width: calc( 100% - 20px );
    height: calc( 378 * calc( 100vw / 1440 ) );
    max-height: 378px;
    min-height: 200px;
    justify-content: space-between;
}

.home_galerie_img
{
    display: block;
    width: calc( 38% - 10px );
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}

.home_galerie_img:first-child,
.home_galerie_img:last-child
{
    width: calc( 12% - 10px );
    overflow: hidden;
}

.home_galerie_img img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 345ms ease;
}

.home_galerie_img:hover img
{
    transform: scale(1.1);
}

@media (max-width: 700px)
{
    .home_galerie_img
    {
        width: calc( 35% - 3px );
        border-radius: 7px;
    }

    .home_galerie_img:first-child,
    .home_galerie_img:last-child
    {
        width: calc( 15% - 3px );
    }
}
