/* Circular Content Carousel Style */
.ca-container {
	position: relative;
	margin: 0 auto;
	width: 990px;
	height: 450px;
	font-family: arial;
}
.ca-wrapper{
	width:100%;
	height:100%;
	position:relative;
}
.ca-item{
	position:relative;
	float:left;
	width:330px;
	height:100%;
}

.ca-item h3, .ca-item p {
	padding: 0;
	font-family: "Raleway";
	color: white;
	margin-bottom: 5px;
}

.ca-more-wrap {
	height: 38px;
	position: absolute;
	bottom: 10px;
	text-align: center;
	width: 100%;
	bottom: 0;
}

.ca-more {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ca-close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    outline: none;
	opacity:0.7;
	-webkit-transition:all 400ms ease;
	transition:all 400ms ease;
}
	.ca-close > svg{
		width: 100%;
		height: 100%;
		color: white;
    }
.ca-close:hover{
	opacity:1.0;
}

/*.ca-item-main{
	position:absolute;
	top:5px;
	left:5px;
	right:5px;
	bottom:5px;
	overflow:hidden;
	-moz-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	box-shadow:1px 1px 2px rgba(0,0,0,0.2);
	background-color: #3397db;
	background-image: -webkit-radial-gradient(50% 74%, 100px 100px, rgba(255, 255, 255, 0.4) 0%, rgba(51, 151, 219, 0) 100%);
	background-image: -moz-radial-gradient(50% 74%, 100px 100px, rgba(255, 255, 255, 0.4) 0%, rgba(51, 151, 219, 0) 100%);
	background-image: radial-gradient(50% 74%, 100px 100px, rgba(255, 255, 255, 0.4) 0%, rgba(51, 151, 219, 0) 100%);
	background-position: 0 130px;
}*/


.ca-item-main{
	position:absolute;
	top:5px;
	left:5px;
	right:5px;
	bottom:5px;
	overflow:hidden;
}


.ca-item-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ca-content-wrapper{
	position:absolute;
	width:0px;
	height:440px;
	top:5px;
	text-align:left;
	z-index:10000;
	overflow:hidden;
}

.ca-content{
	width:100%;
	height: 100%;
	overflow:hidden;
	background-color: #000;
}

.ca-content-text{
	font-size: 14px;
	font-style: italic;
	margin:10px 20px;
	padding:10px 20px;
	line-height:24px;
}


/*
.ca-content-text p{
	padding-bottom: 10px;
}
*/
	.ca-content-text p.ellipsis{
		line-height: 1.3em;
		max-height: 3.9em;
		overflow: hidden;
		position: relative;
		text-align: justify;
	}
		.ca-content-text p.ellipsis:after{
			content:'...';
		    position: absolute;
		    bottom: 0;
		    right: 0;
		}
		
		
.ca-content h6{
	margin:25px 20px 0px 35px;
	font-size:32px;
	padding-bottom:5px;
	color:#fff;
	border-bottom:2px solid #fff;
	font-family: "Raleway";
    font-weight: bold;
}
.ca-content ul{
	margin:20px 35px;
	height:30px;
}
.ca-content ul li{
	float:left;
	margin:0px 2px;
	list-style: none;
}
.ca-content ul li a{
	color:#2980b9;
	background:#fff;
	padding:3px 6px;
	font-size:14px;
	font-style:italic;
}
.ca-content ul li a:hover{
	background:#fff;
	text-shadow:none;
}


.ca-content-text a.ver-mas{
	position: relative;
	display: inline-block;
	color: #000;
	background-color: rgba(255,255,255,1);
	padding: 5px 20px;
	border-radius: 8px;
	font-style: normal;
	-webkit-transition:all 400ms ease;
	transition:all 400ms ease;
	margin-top: 1rem;
}
	.ca-content-text a.ver-mas:hover{
		background-color: rgba(255,255,255,0.7);
	}


.ca-nav span {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	border-radius: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-indent: -9000px;
	opacity: 1;
	cursor: pointer;
	z-index: 100;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.ca-nav span.ca-nav-prev{
	left: -45px;
	background: #000 url(../img/flecha-left-white.svg) no-repeat center center;
	background-size: 50%;
}
.ca-nav span.ca-nav-next{
	right: -45px;
	background: #000 url(../img/flecha-right-white.svg) no-repeat center center;
	background-size: 50%;
}
.ca-nav span:hover{
	opacity: .5;
}


@media only screen and (max-width: 1090px){
	.ca-container{
		width: 630px;
	}
	.ca-item{
		width: 315px;
	}
	.ca-more{
		pointer-events: none;
		cursor: default;
	}
}

@media only screen and (max-width: 769px){
	.ca-container{
		width: 300px;
	}
	.ca-item{
		width: 100%;
	}
}

@media only screen and (max-width: 480px){
	.ca-container{
		width: 240px;
		height: 360px;
	}
	.ca-item{
		width: 100%;
	}
}