.partners-banners{
    //background-color: rgba(255, 238, 255, 0.9);
    padding: 5px;
    padding-bottom: 10px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 100px;
    left: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    //text-align:center;
}

.partner-banner{
    text-align: center;
    height: 100%;
    //float: left;
    display: inline-block;
    padding: 5px;
}

.partner-banner img{
height: 100%;
width: auto;

-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.partner-banner img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    cursor: pointer;

    -webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}