.clients {
    flex-direction: column;
    padding-bottom: 30px;
    min-width: 100vw;
    background-color: #0C244E;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/s2.svg");
}

.clients ul {
    float: left;
    width: 100%;
    max-width: 1080px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.clients li {
    transition: .9s;
}

.clients li:hover {
    cursor: pointer;
    transform: scale(1.2);
}

.clients img {
    margin: 15px;
    height: 45px;
    max-width: 200px;
}

@media screen and (max-width: 1100px) {

    .clients ul {
        width: 100%;
        overflow: hidden;
        min-width: 0;
        padding: 0;
        justify-content: center;
    }

    .clients li {
        width: auto;
    }
}

@media screen and (max-width: 600px) {
    .clients ul {
        flex-direction: column;
    }

    .clients img {
        height: 30px;
    }
}