.logo-carousel {
	text-align: center;
	padding-top: 80px;
	padding-bottom: 20px;
	position: relative;
	z-index: 1;
}

	.logo-carousel:before {
		background: linear-gradient(#3f669f 0%, rgba(63, 103, 159, 0) 100%);
		content: "";
		opacity: .19;
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		z-index: -1;
	}

	.wave-dot-1,
	.wave-dot-2,
	.wave-dot-3,
	.wave-dot-4 {
	    position: absolute;
	    width: 39px;
	    height: 39px;
	    border-radius: 50%;
	    box-shadow: 0 0 20px rgba(119, 203, 221, 0.33);
	    background: #fff;
	    z-index: 9;
	}

	.wave-dot-1 {
	    left: 100px;
	    top: 153px;
	}

	.wave-dot-2 {
	    left: -15px;
	    top: 340px;
	}

	.wave-dot-3 {
	    right: 536px;
	    top: 60px;
	}

	.wave-dot-4 {
	    right: -10px;
	    top: 394px;
	}

	.wave {
	    position: absolute;
	    top: 0;
	    width: 100%;
	}

		.wave img,
		.wave svg {
		    display: block;
		    width: 100%;
		    height: 100%;
		    object-position: top;
		}

.logo-carousel__logos {
	position: relative;
	padding-top: 20px;
	padding-bottom: 40px;
}

.fx-slide {
	padding: 25px;
}

.client-logo {
    background: #fff;
    box-shadow: 0 0 30px rgba(119, 203, 221, 0.25);
    border-radius: 50%;
    height: 150px;
    width: 150px;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}
	.logo-carousel__logo__img {
		width: 100px;
		height: auto;
	}

	@media(min-width: 768px){
		.logo-carousel {
			padding-top: 100px;
			padding-bottom: 0
		}
	}

	@media(min-width: 1025px){
		.logo-carousel {
			padding-top: 150px;
		}
	}

	@media(min-width: 1200px){

	}

	@media(min-width: 1366px){

	}


/* arrows */
.logo-carousel .slick-prev,
.logo-carousel .slick-next {
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	border: none;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 0;
	outline: none;
	cursor: pointer;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);

}

.logo-carousel .slick-prev:before,
.logo-carousel .slick-next:before {
	color: #374046; /* TODO: Default color. Update if different in prototypes. */
	font-family: 'fx';
	font-size: 20px;
	line-height: 1;
}

@media (min-width: 1025px) {
	.logo-carousel .slick-prev:hover:before,
	.logo-carousel .slick-next:hover:before {
   		color: #000; /* TODO: Default hover. Update to a branded color or if different in prototypes. */
	}
}

.logo-carousel .slick-prev {
	left: -15px;
}

.logo-carousel .slick-next {
	right: -15px;
}

.logo-carousel .slick-prev:before {
	content: "\e900";
}

.logo-carousel .slick-next:before {
	content: "\e901";
}


/* buttons */
.logo-carousel .slick-dots {
	margin-top: 15px;
	line-height: 0;
}

.logo-carousel .slick-dots li {
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.logo-carousel .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 5px;
	border: 0;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	outline: none;
	background: transparent;
}

.logo-carousel .slick-dots li button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 20px;
	background: #374046;
	opacity: .3;
	line-height: 10px;
	text-align: center;
}

.logo-carousel .slick-dots li.slick-active button:before {
	opacity: 1;
}