@charset "utf-8";
/* CSS Document */



.scroll img{
    width: 150px;
    margin: 0 20px;
    transition: .5s;
    cursor: pointer;
}

.scroll img:not(:hover){
    filter: grayscale(100%);
}

.scroll{
    position: relative;
    display: flex;
    width: 1200px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
	
}
#clientes-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
}
.scroll div{
    white-space: nowrap;
    animation: animate 30s linear infinite;
}


@keyframes animate {
    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-100%);
    }
}

.scroll:hover div{
    animation-play-state: paused;
}

#comunicado {
	vertical-align: middle;
	height: auto;
	text-align: center;
	margin-right: 5px;
	margin-top: 20px;	
}
#comunicado h1{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-style: normal;
	font-size: 20px;
	color: #25D366;
	vertical-align: middle;
	height: auto;
	text-align: center;
	font-weight:  bold;
	margin-right: 5px;
}

#comunicado p{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-style: normal;
	font-size: 14px;
	color: #000000;
	vertical-align: middle;
	height: auto;
	text-align: center;
	margin-right: 5px;
}