﻿@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 60px 0;
    background: white;
    white-space: nowrap;
    position: relative;
    box-shadow: 0px 0px 20px 0px #80808030;
}

    .logos:before,
    .logos:after {
        position: absolute;
        top: 0;
        width: 250px;
        height: 100%;
        content: "";
        z-index: 2;
    }

    .logos:before {
        left: 0;
        background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
    }

    .logos:after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    }
/*
    .logos:hover .logos-slide {
        animation-play-state: paused;
    }
*/

.wh80 {
    width: 80px !important;
    height: 80px !important;
}

.h70 {
    height: 70px !important;
}

.logos-slide {
    display: inline-block;
    animation: 60s slide infinite linear;
}

    .logos-slide img {
        height: 50px;
        margin: 0 40px;
    }

.caiFences {
    background: black;
    padding: 2px;
    border-radius: 5px;
}

.avatar-img {
    box-shadow: 0px 0px 5px 0px #0000003d;
}
