.featured-logos-wrapper{
    overflow: hidden;
    position: relative;
    animation-name: fadeInLogos;
    animation-duration: 1s;
}
.featured-logos-wrapper img{
    max-height: 120px;
    margin:0 auto;
}
.featured-logos-wrapper h6{
    text-transform: uppercase;
}
@keyframes fadeInLogos {
    0%   {opacity:0;visibility: hidden}
    50%  {opacity:0;visibility: hidden}
    100% {opacity:1;visibility: visible}
}
.featured-logos-block .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.featured-logos-block .slick-track .featured-logo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media(max-width: 767.98px) {
    .featured-logos-wrapper img{
        max-height: 60px;
    }
}