.banner-client {
	float: left;
	padding:10px 20px;
	width: auto;
}
.banner-client img { max-width: 60px; max-height: 60px; }

#chatfx { position: relative; width: 100%; height: 100%; overflow: hidden; }

.bubble {	
	position: absolute;	
	top: 0;	
	left: 0;	
	cursor: pointer;	
	opacity: 1;
	transition:linear 2s, transform .2s, opacity .5s;
	
}	
	
.bubble:hover {	
	transform: scale(1.7);	
}	
	
.bubble--bust {	
	transform: scale(1.8);	
	opacity: 0;
}

#hero-img {
	margin: 100px auto 0 auto;
}

#hero-img img {
	position: absolute;
	opacity: 0;
}

#hero-img img.fadein {
	animation-name: fadeIn;
	animation-delay: 0s;
	animation-duration: 2s;
	/*z-index: 20;*/
}
#hero-img img.fadeout {
	animation-name: fadeOut;
	animation-delay: 0s;
	animation-duration: 2s;
/*	z-index: 20;*/
}


@keyframes fadeIn {
	from { opacity: 0.0; }
	to   { opacity: 1.0; }
}

@keyframes fadeOut {
	from { opacity: 1.0; }
	to   { opacity: 0.0; }
}


/* client slider */

.client-slider {
	background: transparent;
	height: 75pt;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	cursor: default;
	user-select: none;
	touch-action: none;
}

.client-slider:before {
	left: 0;
	top: 0;
}
.client-slider:after,
.client-slider:before {
	content: "[";
	font-size: 75pt;
	color:#dedede;
	height: 75pt;
	position: absolute;
	width: 200px;
	z-index: 2;
	vertical-align: middle;
	left: -11px;
	top: -41px;
}
.client-slider:after {
	right: -11px !important;
	top: 44px !important;
	transform: rotateZ(180deg);
	left: auto !important;
	transform: rotateZ(180deg);
}
.client-slider:after,
.client-slider:before {
	content: "[";
	font-size: 75pt;
	color:#dedede;
	height: 75pt;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.client-slider .slide-track-1 {
	animation: scroll-l 30s linear infinite;
	display: flex;
	width: 3500px;
}
.client-slider .slide-track-2 {
	animation: scroll-r 30s linear infinite;
	display: flex;
	width: 3500px;
}

.client-slider .slide {
	height: 75pt;
	width: 350px;
	display: flex;
	align-items: center;
	text-align: left;
	line-height:1;
}
.client-slider .slide img {
	width: 75px;
	height: auto;
	padding: 10px;
	vertical-align: middle;
	margin: 0;
	display: inline-block;
	max-width: 100%;
}

@keyframes scroll-l {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-350px * 5));
	}
}
@keyframes scroll-r {
	100% {
		transform: translateX(0);
	}
	0% {
		transform: translateX(calc(-350px * 5));
	}
}