/* Circular Content Carousel Style */
.ca-container{
	position:relative;
	width:100%;
	height:540px;
	margin-top: 0px;
}
.ca-wrapper{
	width:100%;
	height:100%;
	position:relative;
}
.ca-item{
	position:relative;
	float:left;
	width:33%;
	height:100%;
}

.ca-item-main{
	position:absolute;
	padding: 10%;
	/*background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 85%, rgba(0,0,0,0) 85%, rgba(0,0,0,0) 100%);*/
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	width: 100%;
	height: 100%;
}

.ca-nav span{
	width:20px;
	height:30px;
	background:transparent url(../images/arrows.png) no-repeat top left;
	background-size: cover;
	position:absolute;
	top:49%;
	margin-top:-19px;
	left:-3%;
	text-indent:-9000px;
	opacity:0.7;
	cursor:pointer;
	z-index:100;
}
.ca-nav span.ca-nav-next{
	background-position:top right;
	left:auto;
	right:-3%;
}
.ca-nav span:hover{
	opacity:1.0;
}

@media only screen and (min-width:0px) and (max-width:767px){
	
	.ca-item{
	width:100%;
}
	
}


@media only screen and (min-width:768px) and (max-width:1023px){
	
	.ca-item{
	width:50%;
}
	
}