@charset "utf-8";
/* CSS Document */






/* ---------------------------
0 - #BASE
----------------------------*/

*, 
:before,
:after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
	font-weight: normal;
	font-style: normal;
	font-family: 'cardillacregular';
}

:focus,
.btn:focus,
.form-control:focus{
	outline: none !important;
    box-shadow: none !important;
    border-color: var(--color-1)
}


/* COL CUSTOM */
.col-25{
	width: 19.9998%
}


/* DISPLAY */
.flex-end{
	justify-content: flex-end;
}


/* IE7 */
*:first-child+html body {
	overflow: visible;
}

.row-custom,
main,
header,
section,
aside,
nav,
time,
picture,
figure,
article,
address,
footer{
	width:100%;
	float:left;
}

/* IMG */
img{
	width:auto;
	max-width:100%;
	height:auto;
}

figure{
	margin:0;
    line-height: 0
}




/* ---------------------------
1 - #BODY
----------------------------*/

html, body{
	height: 100%
}
body {
	height:100%;
	overflow-x:hidden;
	font-size:1.15rem;
	background-color: #fff;
	color: #000
}





/* ---------------------------
2 - #CONT - CONTAINER
----------------------------*/
#cont{ 
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding-bottom: 0
}

.container{
	max-width: 1240px
}




/* ---------------------------
3 - #TEXTO
----------------------------*/


h3{
	font-size:2rem;
	line-height: 1.2;
	margin-bottom: 0
}

p{
	line-height: 1.25;
	margin: 0
}

a{
	cursor: pointer;
	text-decoration: none; 
	color: #000
}
a:link{}
a:hover{
	color: #000;
}
a:visited{}









/* ---------------------------
4 - #ICONOS
----------------------------*/
.ico,
.ico:before,
.ico:after{
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center
}


.ico-ok:before{
	background-image: url(../img/ico-ok.svg?2);
}
.ico-error:before{
	background-image: url(../img/ico-error.svg?2);
}








 
/* ---------------------------
5 - #BOTONES
----------------------------*/
.btn{
	width:auto;
	display:inline-block;
	text-decoration:none;
	cursor:pointer;
	border-radius: 26px;
	padding: 5px 20px 5px 40px;
	box-shadow: 0px 0px 5px 0px var(--color-1);
	background: #ea213d; /* Old browsers */
	background: -moz-linear-gradient(left, #ea213d 0%, #9f080e 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, #ea213d 0%,#9f080e 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, #ea213d 0%,#9f080e 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ea213d', endColorstr='#9f080e',GradientType=1 ); /* IE6-9 */
	color: #fff;
	font-size: .9rem;
	border: none;
	transition: all 1s ease !important;

}
.btn:hover{
	background: #fff;
	color: var(--color-1);
}












/* ---------------------------
6 - #HEADER
----------------------------*/

/* HEADER */
#header{
	width: 410px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
    padding: 30px 35px 30px 35px;
	position: fixed;
	z-index:999;
	overflow: auto;
	background-color: #fff
}
#header:before{
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 20px;
	height:100%;
	background: #fff;
	z-index: 800
}






 


/* ---------------------------
8 - #MAIN
----------------------------*/
#main{
	padding-top: 0;
	width: calc(100% - 400px);
}













/* ---------------------------
9 - #SECTION'S
----------------------------*/










/* ---------------------------
12 - #ADDRESS
----------------------------*/









/* ---------------------------
14 - #LOGO
----------------------------*/
#logo{
	display: inline-block;
	margin: 0;
	padding: 0;
	transition: all .4s ease
}

	#logo a{
		display: block;
		line-height: 0
	}

	#logo img{
		max-height:36px
	}

	#logo span{
		display: none
	}











/* ---------------------------
15 - #SLIDER'S
----------------------------*/

/* OWL CAROUSEL */
.owl-carousel, 
.owl-carousel .owl-stage-outer, 
.owl-carousel .owl-stage, 
.owl-carousel .owl-item,
.owl-carousel .item,
.owl-carousel .item-video{
	height:100%;
}
	.owl-controls{
		display:none;
	}

	.owl-dots{
		width: 25px;
		height: 100px;
		position: absolute;
		bottom: 0;
		right: 15px;
		top:0;
		z-index: 900;
		margin: auto;
		text-align: center;
	}

	.owl-dot{
		width: 15px; 
		height: 15px; 
		border-radius: 50%;
		border:1px solid #000;
		background-color: transparent;
		margin: 10px 0;
	}
	.owl-dot.active{
		background-color: #000;
	}
	



	.item img{
		position: absolute;
		left: 0;
		right:0;
		top: 0;
		bottom: 0;
		object-fit: cover;
		width: 100%;
		height: 100%
	}
	








/* ---------------------------
16 - #FORM'S
----------------------------*/
form{ 
	width:100%;
	display:inline-block;
}
 
form .row-custom{
	margin-bottom: 35px
}
form div:nth-of-type(7){
	margin-bottom: 0
}

	/* caja contenedora de input - select- textarea */
	.form-group{
		width: 100%;
		float: left;
	}

	.form-control{
		border-radius: 0;
		padding: 0 0 5px 0;
		width:100%;
		height: auto;
		border:0;
		font-family: 'Steradian' !important;
		color: #000 !important
	}



	/* IOS */
	select,
	textarea,
	input,
	input[type="text"],
	input[type="button"],
	input[type="submit"]{
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-op-appearance: none;
		border-radius: 0;
		-webkit-border-radius:0;
	}


	/* select */
	select{
		cursor:pointer;
		appearance:none;
		-webkit-appearance:none;
		-moz-appearance:none;
		-op-appearance:none;
		background-image:url(../img/ico-select.svg);
		background-repeat:no-repeat;
		background-position: calc(100% - 10px) center;
		background-color:transparent;
		background-size: 9px
	}

	/* focus */
	select:focus{
		background-image:url(../img/ico-select.svg);
		border:1px solid #666;
	}
	input:focus,
	textarea:focus{
		outline:0;
		border-color:#fff
	}

	/* checkbox - radio custom */
	input[type="checkbox"],
	input[type="radio"]{
		display:none;
	}

	label.check,
	label.radio{
		width:auto;
		margin-right:35px;
		background-repeat:no-repeat;
		padding-left:18px;
		background-size: 16px;
		cursor:pointer;
		margin: 5px 0 10px 0;
		font-size: 1.4rem
	}

	label.check{
		background-image:url(../img/checkbox.png);
		background-image:url(../img/checkbox.svg);
		font-size: .7rem !important;
		margin-top: 0;
		margin-bottom: 0;
		background-position: 0 2px;
		background-size: 12px
	}
	input[type='checkbox']:checked + label {
		background-image:url(../img/checkbox-checked.png) !important;
		background-image:url(../img/checkbox-checked.svg) !important;
	}


	/* submit */
	[name="submit"]{
		width: auto; 
		padding: 2px 5px;
		color: #fff;
		text-align: center;
		float:left;
		border:1px solid  transparent;
		cursor: pointer;
		background-color: #000;
		font-family: 'Steradian' !important;
		font-size: 1.2rem;
		line-height: 1
	}
	[name="submit"]:hover{
		background-color: #fff;
		color: #000;
		border:1px solid #000;
	}
	
	#submit.procesando,
	#submit.procesando:hover{
		background-color: #000;
		color: #eee
	}
	#submit.procesando:before{
		content: '';
		background-image: url(../img/ico-cargando.svg?3) !important;
		width: 22px;
		height: 22px;
		float: right;
		background-size: contain;
		margin-left: 10px
	}

	.verif{display:none;}


	input:-webkit-autofill,
	input:-webkit-autofill:hover, 
	input:-webkit-autofill:focus,
	textarea:-webkit-autofill,
	textarea:-webkit-autofill:hover,
	textarea:-webkit-autofill:focus,
	select:-webkit-autofill,
	select:-webkit-autofill:hover,
	select:-webkit-autofill:focus {
	  -webkit-text-fill-color: #000;
	  font-weight: 500;
	  font-family: 'Roboto';
	  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
	  transition: background-color 5000s ease-in-out 0s;
	}

	/* placeholder */
	input::-webkit-input-placeholder {
		color: #000;
		font-family: 'Steradian';
		font-weight:400;
	}
	input::-moz-placeholder {
		color: #000;
		font-family: 'Steradian';
		font-weight:400
	}
	input:-ms-input-placeholder {
		color: #000;
		font-family: 'Steradian';
		font-weight:400
	}
	input:-moz-placeholder {
		color: #000;
		font-family: 'Steradian';
		font-weight:400
	}



	/* disabled */
	.disabled{
		opacity: .4;
	}
	

	.line1,
	.line2,
	.line3{
		float: left;
		height: 1px;
		background-color: #000;
	}
	.line1.es{
		width: 160px
	}
	.line2.es{
		width: 50px
	}
	.line3.es{
		width: 78px
	}

	.line1.en{
		width: 175px
	}
	.line2.en{
		width: 50px
	}
	.line3.en{
		width: 52px
	}



	/* MSJ */
	#msg, #msg_refer{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255, .95);
		align-items: center;
		justify-content: center;
		flex-direction: column;
		text-align: center;
		z-index: 9999999999999999999
	}

	#msg > img, #msg_refer > img{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin:auto;
		max-height: 35px;
		margin-top: 40px
	}
	#msg h2, #msg_refer h2{
		font-size: 2.4rem;
		line-height: 1.3
	}
	#msg a, #msg_refer a{
		position: absolute;
		bottom: 40px;
		left: 0;
		right: 0;
		margin: auto;
		font-size: 1.45rem;
		line-height: 1.4
	}

	#msg_refer #referencia{
		border: 1px solid #999;
	}

	.center-block{
	  float: none;
	  margin: 0 auto;
	}


	.msj{
		width: 100%;
		float: left;
		align-items: center;
		margin:0 0 10px 0;
		justify-content: end;
		padding-left: 0;
		font-family: 'Roboto';
		animation-duration: .3s;
  		animation-name: efecto-msj;
  		transition: all .2s ease
	}
	.msj.error{
		color: #c90000;
	}
		.msj p{
			margin-bottom: 0;
			font-family: 'Roboto', sans-serif; 
			font-size: .8rem;
			text-align: left;
		}


	@keyframes efecto-msj {
	  0 {
		transform: translateX(10px);
	  }

	  25% {
	     transform: translateX(0);
	  }

	  50%{
	  	transform: translateX(10px);

	  }

	  75% {
	     transform: translateX(0);
	  }

	  100% {
	     transform: translateX(10px);
	  }
	}







/* ---------------------------
24 - #EFECTOS
----------------------------*/
.efecto{
	opacity: 0;
	transform: translateX(-10px);
	transition: all .5s ease
}

.efecto-add{
	opacity: 1 !important;
	transform: translateX(0);
}









/* ---------------------------
25 - #FANCYBOX
----------------------------*/
.fancybox-bg{
	background:#333;
}
.fancybox-navigation{
	position:initial !important
}
.fancybox-button, 
.fancybox-infobar__body,
.fancybox-arrow:after{
	background-color:rgba(0,0,0,.8)
}
.fancybox-arrow:hover{
	opacity:1 !important;
}

.fancybox-image-wrap{
	max-width:90%;
	margin:auto !important
}
.fancybox-close-small:after{
	color: #202020;
	font-size: 20px
}


.popup-fbx{
	display: none;
	max-width: 800px
}

	.popup-fbx h5{
		width: 100%;
		float: left;
		margin: 20px 0;
		color:#DA251C
	}









/* ---------------------------
27 - #OTROS
----------------------------*/


/* IDIOMA */
.idioma{
	position: absolute;
	right: 0;
	bottom: 0
} 

	.idioma a{
		color: #ccc;
		font-size: .9rem;
		font-family: 'Steradian';
	}
	.idioma a:nth-of-type(1){
		margin-right: 5px
	}
	.idioma a.activo{ 
		font-weight: bold;
		color: #000
	}


/* MAPA LINK */
.map{
	width: 40px;
	height: 40px;
	background: url(../img/ico-map.jpg) no-repeat center;
	background-size: 40px;
	float: left;
}


/* MARGENES */
.row-1{
	margin-bottom: 50px
}
.row-2{
	padding-top: 8px;
	margin-bottom: 40px
}
	.row-2:before{
		content: '';
		width:60px;
		height: 1px;
		background: #000;
		position: absolute;
		top: 0;
		left:0
	}
.row-3{
	margin-bottom: 40px;
}
.row-4{
	margin-bottom: 35px
}
.row-5,
.row-6{
	margin-bottom: 35px
}


/* SCROLL */
		
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.regresar{
	width   : 100%;
	position: absolute;
	top     : 0;
}

.regresar img{ 
	width : 15px;
	float : right;
	margin: 15px;
}




/* VIDEO */
.btn-video{
	width              : 200px;
	height             : 45px;
	float              : left;
	box-sizing         : border-box;
	margin             : 0 0 15px 0;
	background-size    : contain;
	background-repeat  : no-repeat;
	background-position: left;
	margin-left        : 25px

}

.btn-video.hide{
	opacity: 0;
}
.btn-video.es{
	background-image: url(../img/btn-video-es.svg?1);	
}
.btn-video.en{
	background-image: url(../img/btn-video-en.svg?1);	
}

.btn-video:hover{
	opacity: .7
}