.clients-carousel{
    overflow:hidden;
    display:flex;
}
.carousel-container{
    width:auto !important;
    display:flex;
    flex-wrap:nowrap;
    flex-basis:auto;
    gap:5%;
    animation:scrolling 120s linear infinite;
}
.clients-carousel img{
    width:16%;
    /*min-width:150px;*/
}

@keyframes scrolling{
    0%{transform:translateX(0);}
    50%{transform:translateX(-210%);}
    100%{transform:translateX(0);}
}

dialog.gallery{
    width:90%;
    height:90%;
}
dialog.gallery .elements{
    width:100%;
    height:100%;
}
dialog.gallery .elements video{
    width:100%;
    height:100%;
}
dialog.gallery .gallery-image-element{
    width:100%;
    height:100%;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
}
dialog.gallery .controls{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:15px;
    display:flex;
    justify-content:center;
}
dialog.gallery .controls button{
    margin:0 15px;
    width:50px;
    height:50px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:4px solid #fff;
    border-radius:50%;
}