.clients-slider-container
{
    background-color: rgb(237, 237, 237);
    box-shadow: 0px 0px 24px -7px rgba(66, 68, 90, 1);
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}
.clients-slider-title-container
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.clients-slider-title
{
    font-size: 50px;
    color: black;
    font-family: 'Bebas Neue', cursive;
}
.clients-slider
{
    width: 100%;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 30px;
    overflow: hidden;
}
.client-img
{
    width: 120px;
    height: auto;
    filter: grayscale(1);
    transition: all 0.4s;
}
.client-img:hover
{
    filter: grayscale(0);
    transform: scale(1.1);
}
@media only screen and (max-width: 900px)
{
    .client-img
    {
        width: 90px;
    }
    .clients-slider-title
    {
        font-size: 32px;
    }
}
@media only screen and (max-width: 700px)
{
    .client-img
    {
        filter: grayscale(0);
        margin: 25px;
    }
}
