
/*--------------------*/
/* Circle slide */
/*--------------------*/


.nav-circleslide a {
	margin: 0 20px;
}

.nav-circleslide .icon-wrap {
	position: relative;
	z-index: 100;
	display: block;
	padding: 19px;
}

.nav-circleslide svg.icon {
	fill: #fff;
	-webkit-transition: fill 0.3s;
	transition: fill 0.3s;
}

.nav-circleslide div {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	background-color: #566473;
	border-radius: 50%;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.1s 0s;
	transition: transform 0.3s, opacity 0.3s, background-color 0.1s 0s;
}

.nav-circleslide img {
	display: block;
	border-radius: 50%;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.nav-circleslide a.prev img {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.nav-circleslide a.next img {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.nav-circleslide a:hover div {
	opacity: 1;
	background-color: transparent; /* Trick to hide the visible border of image */
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.1s 0.2s;
	transition: transform 0.3s, opacity 0.3s, background-color 0.1s 0.2s;
}

.nav-circleslide a:hover img {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}