/*
 *  Styles for the Trusted By Clients Bar
 */

/* Generic Wrapper */
#wazoku-trusted-by-wrapper {
    text-align: center;
    margin: 0 auto;
    max-width: 1024px;
}

/* Elements list */
#wazoku-trusted-by-wrapper ul {
    display: block;
    width: 100%;
    overflow: auto;
}

/* Element */
#wazoku-trusted-by-wrapper li {
    max-height: 100px;
}

/* Element image */
#wazoku-trusted-by-wrapper img {
    height: 100px;
    background: #003f5d;
}

/* Hover event for images */
#wazoku-trusted-by-wrapper img:hover {
    background: #bccf00;
}

/* --- Media Queries --- */
@media only screen
and (max-width: 768px) {
    #wazoku-trusted-by-wrapper li {
        margin-bottom: 5%;
    }
}

@media only screen
and (max-width: 1024px) {
    #wazoku-trusted-by-wrapper li {
        margin-bottom: 2.5%;
    }
}