.clients-list
{
    overflow: hidden;
    margin: 0 auto;
    width: 240px;
}

.clients-list .client-item
{
    background-color: #f6f8fb;
    margin: 0 10px 20px 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    height: 220px;
    width: 220px;
    float: left;
}

.clients-list .client-item img
{
    vertical-align: baseline;
    display: block;
    width: 220px;
    float: left;
}

.clients-list .client-item .client-text-container
{
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-color: #5c2d82;
    position: absolute;
    visibility: hidden;
    height: 220px;
    width: 220px;
    z-index: 10;
    opacity: 0;
    left: 0;
    top: 0;
}

.clients-list .client-item:hover .client-text-container
{
    visibility: visible;
    opacity: 1;
}

.clients-list .client-item .client-text
{
    font-family: 'PerspectiveSans', serif;
    text-align: center;
    line-height: 30px;
    padding: 0 10px;
    font-size: 26px;
    color: #fff;
}

@media only screen and (min-width: 481px) and (max-width: 768px)
{
    .clients-list
    {
        width: 480px;
    }
}

@media only screen and (min-width: 769px)
{
    .clients-list
    {
        width: 720px;
    }
}

@media only screen and (min-width: 1025px)
{
    .clients-list
    {
        width: 960px;
    }
}