@charset "utf-8";
/*--------------------------------------------------------------*/
/* Fuentes */
/*--------------------------------------------------------------*/
@font-face {
    font-family:'montserrat-thin';
    src: url('../fuentes/Montserrat-Thin.woff2') format('woff2'),
         url('../fuentes/Montserrat-Thin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family:'montserrat-regular';
    src: url('../fuentes/Montserrat-Regular.woff2') format('woff2'),
         url('../fuentes/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family:'montserrat-medium';
    src: url('../fuentes/Montserrat-Medium.woff2') format('woff2'),
         url('../fuentes/Montserrat-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family:'montserrat-bold';
    src: url('../fuentes/Montserrat-Bold.woff2') format('woff2'),
         url('../fuentes/Montserrat-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/*--------------------------------------------------------------*/
/* CSS Reset (Normalize) */
/*--------------------------------------------------------------*/
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
/*--------------------------------------------------------------*/
/* Resets */
/*--------------------------------------------------------------*/
* {
	margin: 0px;
	padding: 0px;
	border-collapse:collapse;
	font-family: 'montserrat-regular';
	font-weight:normal;
	font-size:1em;
	line-height: 1em;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
b,
strong,
.bold,
.semi,
.light{
	font-weight:normal;
	font-size:1em;
}
b,
strong,
.bold{font-family: 'montserrat-bold'}
.semi{font-family: 'montserrat-medium';}
.light{font-family: 'montserrat-thin';}
html,
body{
	width:100%;
	height:100%;
}
a{cursor:pointer;}
a img{border:none;}
ul{list-style-type:none}
body.noscroll{overflow:hidden}
.invisible{display:none !important}
.left{text-align:left !important;}
.center{text-align:center !important}
.right{text-align:right !important;}
.float-right{float:right !important;}
.float-left{float:left !important;}
.float-none{float:none !important;}
.disabled,
.disabled:hover{
	opacity:0.3;
	cursor: default !important;
	pointer-events:none !important;
}
.bg-cover{
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}
hr{
	width:100%;
	height:1px;
	border:none;
	border-bottom: dotted 1px #AAA;
	display:inline-block;
	margin-bottom:10px;
}
/*--------------------------------------------------------------*/
/* Colores */
/*--------------------------------------------------------------*/
.naranja{
	color:#F68C1E !important;
}
.bg-naranja{
	background-color:#F68C1E !important;
}
/*--------------------------------------------------------------*/
/* Layout Default */
/*--------------------------------------------------------------*/
.container,
.row,
.cols{
	width:100%;
}
.container{
	float:left;
}
.content{
	width:100%;
	max-width:1380px;
	margin:auto;
}
@media screen and (max-width: 1420px) {
	.content{
		padding-left:20px;
		padding-right:20px;
	}	
}
.cols,
.col_1,
.col_2,
.col_3,
.col_4,
.col_5,
.col_6,
.col_7,
.col_8,
.col_9,
.col_10,
.col_11,
.col_12,
.col_1_5,
.col_4_5,
.col_2_5,
.col_3_5{
	float: left;
	display: inline-block;
	vertical-align: top;
	position: relative;
	text-align: center;
}
.col_1 {width: 8.33%}
.col_2 {width: 16.66%}
.col_3 {width: 25%}
.col_4 {width: 33.33%}
.col_5 {width: 41.66%}
.col_6 {width: 50%}
.col_7 {width: 58.33%}
.col_8 {width: 66.66%}
.col_9 {width: 75%}
.col_10 {width: 83.33%}
.col_11 {width: 91.66%}
.col_12 {width: 100%}
.col_1_5 {width: 20%}
.col_4_5 {width: 80%}
.col_2_5 {width: 40%}
.col_3_5 {width: 60%}
@media screen and (max-width: 979px) {
	.cols,
	.col_1,
	.col_2,
	.col_3,
	.col_4,
	.col_5,
	.col_6,
	.col_7,
	.col_8,
	.col_9,
	.col_10,
	.col_11,
	.col_12,
	.col_1_5,
	.col_4_5,
	.col_2_5,
	.col_3_5{
		width:100%;
	}
	.col_12{
		padding-bottom:25px;
	}
}
.gap_10{padding:0 10px}
.gap_15{padding:0 15px}
.gap_20{padding:0 20px}
.gap_25{padding:0 25px}
.gap_30{padding:0 30px}
.gap_35{padding:0 35px}
.gap_40{padding:0 40px}
.gap_45{padding:0 45px}
.gap_50{padding:0 50px}
.gap_60{padding:0 60px}
.gap_l_0{padding-left:0}
.gap_r_0{padding-right:0}
@media screen and (max-width: 979px) {
	.gap_10,
	.gap_15,
	.gap_20,
	.gap_25,
	.gap_30,
	.gap_35,
	.gap_40,
	.gap_45,
	.gap_50,
	.gap_60{
		padding-left:0;
		padding-right:0;
		padding-bottom:25px;
	}	
}
/*--------------------------------------------------------------*/
/* Margenes Top */
/*--------------------------------------------------------------*/
.mt_0{margin-top:0px !important;}
.mt_5{margin-top:5px !important;}
.mt_10{margin-top:10px !important;}
.mt_15{margin-top:15px !important;}
.mt_20{margin-top:20px !important;}
.mt_30{margin-top:30px !important;}
.mt_40{margin-top:40px !important;}
.mt_50{margin-top:50px !important;}
.mt_60{margin-top:60px !important;}
.mt_70{margin-top:70px !important;}
.mt_80{margin-top:80px !important;}
.mt_90{margin-top:90px !important;}
.mt_100{margin-top:100px !important;}
/*--------------------------------------------------------------*/
/* Margenes Bottom */
/*--------------------------------------------------------------*/
.mb_0{margin-bottom:0px !important;}
.mb_10{margin-bottom:10px !important;}
.mb_20{margin-bottom:20px !important;}
.mb_30{margin-bottom:30px !important;}
.mb_40{margin-bottom:40px !important;}
.mb_50{margin-bottom:50px !important;}
.mb_60{margin-bottom:60px !important;}
.mb_70{margin-bottom:70px !important;}
.mb_80{margin-bottom:80px !important;}
.mb_90{margin-bottom:90px !important;}
.mb_100{margin-bottom:100px !important;}
/*--------------------------------------------------------------*/
/* Padding Top */
/*--------------------------------------------------------------*/
.pt_0{padding-top:0px !important;}
.pt_10{padding-top:10px !important;}
.pt_20{padding-top:20px !important;}
.pt_30{padding-top:30px !important;}
.pt_40{padding-top:40px !important;}
.pt_50{padding-top:50px !important;}
.pt_60{padding-top:60px !important;}
.pt_70{padding-top:70px !important;}
.pt_80{padding-top:80px !important;}
.pt_90{padding-top:90px !important;}
.pt_100{padding-top:100px !important;}
/*--------------------------------------------------------------*/
/* Padding Bottom */
/*--------------------------------------------------------------*/
.pb_0{padding-bottom:0px !important;}
.pb_10{padding-bottom:10px !important;}
.pb_20{padding-bottom:20px !important;}
.pb_30{padding-bottom:30px !important;}
.pb_40{padding-bottom:40px !important;}
.pb_50{padding-bottom:50px !important;}
.pb_60{padding-bottom:60px !important;}
.pb_70{padding-bottom:70px !important;}
.pb_80{padding-bottom:80px !important;}
.pb_90{padding-bottom:90px !important;}
.pb_100{padding-bottom:100px !important;}
/*--------------------------------------------------------------*/
/* Default Formularios */
/*--------------------------------------------------------------*/
form,
form div,
form label,
form input,
form select,
form option,
form textarea{
	display:inline-block
}
form{
	width:100%;
}
form div{
	padding-bottom:25px
}
@media screen and (max-width: 979px) {
	form div{padding-bottom:0}
}
form label,
form input,
form select,
form option,
form textarea{
	font-size:17px;
	color:#000;
	text-align:left;
}
form label{
	display:inline-block;	
	width:100%;	
	padding-bottom:5px;
	color:#666;
	font-size:15px;
}
form input,
form select,
form textarea{
	background-color:#FFF;
	border:solid 1px #CCC;
	width:100%;
	padding:8px;
}
form input,
form select{
	height:40px;
}
form textarea{
	min-height:60px;
}
form select {
	background-image: url(../images/ico-select-down.svg);
	background-repeat: no-repeat;
	background-position: right 5px center;
	background-size:10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
form select option{
	font-size:inherit;
	color:inherit;
	line-height:inherit;
}
form input::placeholder,
form textarea::placeholder{
	color:#999;	
}
form input[type="checkbox"],
form input[type="radio"]{
	width:23px;
	height:23px;
}
form input:disabled,
form input:disabled:hover,
form select:disabled,
form select:disabled:hover,
form textarea:disabled,
form textarea:disabled:hover {
	opacity:0.3;
	pointer-events:none;
	cursor: default !important;
}
form input.calendar{
	background-image: url(../images/ico-calendario.svg);
	background-repeat: no-repeat;
	background-position: right 8px center;	
	background-size:18px;
}
a.btn,
form .btn{
	display:inline-block;
	padding:15px;
	font-size:19px;
	text-decoration:none;
	border:none;
	border-radius:8px;
	background-color:#000;
	color:#FFF;
}
a.btn:hover,
form .btn:hover{
	background-color:#999;
}
a.btn.big,
form .btn.big{
	font-size:25px;
}
.con-check{
	padding-right:12px;
}
.con-check *{
	float:left;
}
.con-check label,
.con-check p{
	width:calc(100% - 25px);
	padding:3px 7px;
	color:#000;
	font-size:17px;
	text-align:left;
}
.con-check p{
	font-size:16px;
	text-align:justify;
}
.con-check label a,
.con-check p a{
	display:inline-block;
	float:none;
	color:inherit;
	font-size:inherit;
}
#fant,
#fant2,
#accept {
	position: absolute;
	top: -99999px;
	left: -99999px;
}
/*--------------------------------------------------------------*/
/* Subir / Pull */
/*--------------------------------------------------------------*/
#subir {
	position: fixed;
	background-image: url(../images/subir.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	bottom: 10px;
	right: 10px;
	margin:auto;
	z-index: 10;
	display: none;
	border-radius: 50%;
	border: solid 3px #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
	background-color: #F68C1E;
}
#subir:hover {
	background-color: #000;
}
/*--------------------------------------------------------------*/
/* Swal */
/*--------------------------------------------------------------*/
.swal2-popup .swal2-title {
	display: inline-block !important;
}
/*--------------------------------------------------------------*/
/* Video Responsive */
/*--------------------------------------------------------------*/
.contiene_video {
	float: none;
	display: inline-block;
	width: 100%;
	max-width: 1180px;
	margin-bottom: 20px;
}
.contiene_video p {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0px;
	height: 0;
	margin: 0 0 0 0px;
	overflow: hidden;
}
.contiene_video p iframe,
.contiene_video p object,
.contiene_video p embed {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
}
/*--------------------------------------------------------------*/
/* Hamb Rspnsv*/
/*--------------------------------------------------------------*/
#header-hamb{
	display:block;
	text-decoration:none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	padding:6px;
	position:relative;
}
#header-hamb div{
	text-indent:-9999px;
	width:100%;
	height:100%;
	display:block;
	position:relative;
}
#header-hamb div:before,
#header-hamb div:after {
	content: "";
	display: block;
	width: 100%;
	position: absolute;
	left: 0;	
	transition: transform 0.5s ease-in-out;
}
#header-hamb div,
#header-hamb div:before,
#header-hamb div:after {
	border-bottom: 4px solid #003E50;	
}
#header-hamb div:after {
	top: 12px;
}
#header-hamb.activo div{
	border-bottom:none;
}
#header-hamb.activo div:before,
#header-hamb.activo div:after {
	top: 10px;
}
#header-hamb.activo div:before {
	transform: rotateZ(45deg);
}
#header-hamb.activo div:after {
	transform: rotateZ(-45deg);
}
/*--------------------------------------------------------------*/
/* header */
/*--------------------------------------------------------------*/
#header,
#header *{
	font-size:0;
}
#header{
	padding-top:20px;
	padding-bottom:20px;
}
@media screen and (min-width: 980px) {
	#header .content{
		min-height:85px;
	}
}
@media screen and (max-width: 979px) {
	#header .content{
		height:auto;
		min-height:auto;
		overflow:auto;
	}
}
#header-logo img{
	width:230px;
	height:auto;
	float:left;
}
@media screen and (max-width: 470px) {
	#header-logo img{
		width:200px;
	}
}
#header-hamb{	
	float:right;
	margin-top:23px;
}
@media screen and (min-width: 980px) {
	#header-hamb{	
		display:none;
	}	
}
#header-menu{
	float:right;
	width:auto;
}
@media screen and (min-width: 980px) {
	#header-menu {
		margin-top:20px;
	}
}
@media screen and (max-width: 979px) {
	#header-menu {
		display:none;
		margin-top:30px;
		width:100%;
	}
}
#header-menu a{
	text-decoration:none;
	font-family:'montserrat-medium';
}
#header-menu > li{
	float:right;
	width:auto;
}
#header-menu > li {
	display:inline-block;
	position:relative;
}
@media screen and (min-width: 980px) {
	#header-menu > li {
		width:auto;
		padding-left:50px;
		float:left;
	}
}
@media screen and (max-width: 979px) {
	#header-menu > li {
		width:100%;
		border-top:dotted 1px #AAA;
		padding:5px 0;
	}
	#header-menu > li.parent {
		padding-bottom:0;
	}
}
#header-menu > li > a{
	font-size:17px;
	color:#666;
	text-transform:uppercase;
	display:block;
	padding:10px 0
}
#header-menu > li > a:hover{
	color:#000;
}
#header-menu > li.parent > a {
	padding-right:20px;
	background-image:url(../images/ico-select-down.svg);
	background-position:right center;
	background-repeat:no-repeat;
	background-size:10px;
}
#header-menu > li.parent > a.activo {
	background-image:url(../images/ico-select-up.svg);
}
#header-menu > li.parent ul {
	display:inline-block;
	padding:30px;
	padding-bottom:10px;
	background-color:#F68C1E;
	width:100%;
	z-index:10;
}
@media screen and (min-width: 980px) {
	#header-menu > li.parent ul {
		width:270px;
		border-radius:8px;
		position:absolute;
		left:50px;
		top:45px;
	}
}
#header-menu > li.parent ul li {
	width:100%;
	padding-bottom:20px;
}
#header-menu > li.parent ul li a{
	font-size:18px;
	color:#FFF;
	display:block;
}
#header-menu > li.parent ul li a:hover{
	color:rgba(255,255,255,0.8);		
}
/*--------------------------------------------------------------*/
/* Footer */
/*--------------------------------------------------------------*/
#footer{
	padding-bottom:80px;	
}
#footer .content{
	border-top:dotted 1px #AAA;
	padding-top:40px;
}
#footer-datos *,
#footer-creditos *{
	display:inline-block; 	
}
@media screen and (min-width: 1300px) {
	#footer-datos,
	#footer-creditos{
		width:auto; 	
	}	
}
@media screen and (max-width: 1299px) {
	#footer-datos,
	#footer-creditos{
		width:100%;
		text-align:center;
	}	
}
#footer-datos{
	float:left;
}
@media screen and (min-width: 1300px) {
	#footer-datos{
		margin-top:15px 	
	}	
}
#footer-datos *{
	display:inline-block;
	vertical-align:middle;
}
#footer-datos-tel{
	display:inline-block;
	text-decoration:none;
	color:#333;
	font-size:20px;
	line-height:35px;
	padding-left:40px;
	background-image:url(../images/ico-tel.svg);
	background-repeat:no-repeat;
	background-position:left center;
	background-size:35px;
}
#footer-datos-tel:hover{
	color:#F68C1E;
}
#footer-datos p{
	color:#666;
	font-size:16px;
	line-height:35px;
}
@media screen and (min-width: 1300px) {
	#footer-datos p{
		border-left:solid 1px #CCC;
		border-right:solid 1px #CCC;
		margin-left:10px;
		margin-right:10px;
		padding:0 10px;
	}	
	#footer-datos p#politica{
		border-right:none;
	}
}
@media screen and (max-width: 1299px) {
	#footer-datos p{
		width:100%;
		margin-bottom:20px;
		padding-bottom:20px;
		border-bottom:dotted 1px #CCC;
	}
	#footer-datos p#politica{
		padding-bottom:30px;
	}
}
#footer-datos p a{
	color:inherit;
	text-decoration:none;
}
#footer-datos p a:hover{
	color:#F68C1E;
}
#footer-datos-redes{
	height:35px;
	text-align:center;
}
@media screen and (max-width: 1299px) {
	#footer-datos-redes{
		height:auto;
		width:100%;
		border-bottom:dotted 1px #CCC;
		padding-bottom:20px;
		margin-bottom:30px;
	}
}
#footer-datos-redes li{
	height:35px;
	padding:0 10px;
	display:inline-block;
}
#footer-datos-redes li a{
	width:100%;
	height:100%;
	display:block;
}
#footer-datos-redes li a img{
	height:23px;
	margin-top:5px;
}
#footer-datos-redes li a:hover img{
	opacity:0.7;
}
#footer-creditos{
	float:right;
}
#footer-datos-redes img{
	height:23px;
	width:auto;
}
#footer-creditos *{
	display:inline-block;
	vertical-align:middle;
}
#footer-creditos img{
	width:150px;	
}
#footer-creditos p{
	font-size:13px;
	width:120px;
	color:#666;
}
@media screen and (min-width: 1300px) {
	#footer-creditos p{
		border-left:solid 1px #CCC;
		margin-left:20px;
		padding-left:20px;
	}	
}
@media screen and (max-width: 1299px) {
	#footer-creditos p{
		width:100%;
		padding-top:30px;
	}
}
#footer-creditos p a{
	font-size:inherit;
	width:100%;
	display:block;
	color:inherit;
	margin-top:10px;
	text-decoration:none;
}
@media screen and (max-width: 1299px) {
	#footer-creditos p a{
		width:auto;
		display:inline-block;
		margin-top:0;
		margin-left:10px;
		border-left:solid 1px #CCC;
		padding-left:15px;
	}
}
#footer-creditos p a:hover{
	color:#000;
}
/*-------------------------------------------------------------- */
/* Fixed Whatsapp */
/*-------------------------------------------------------------- */
#btn_whatsapp {
	position: fixed;
	bottom: 15px;
	left: 10px;
	display: block;
	width: 65px;
	height: 65px;
	z-index: 3200;
}
#btn_whatsapp:hover {
	width: 70px;
	height: 70px;
}
#btn_whatsapp img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 400px) {
	#btn_whatsapp {
		width: 55px;
		height: 55px;
	}
	#btn_whatsapp:hover {
		width: 60px;
		height: 60px;
	}
}
/*--------------------------------------------------------------*/
/* Slider home */
/*--------------------------------------------------------------*/
#home-slider,
#home-slider-texto,
#home-slider .bxslider,
#home-slider .bxslider li{
	height:600px;
	font-size:35px;
}
@media screen and (max-width: 980px) {
	#home-slider,
	#home-slider-texto,
	#home-slider .bxslider,
	#home-slider .bxslider li{
		height:500px;
		font-size:30px;
	}	
}
@media screen and (max-width: 720px) {
	#home-slider,
	#home-slider-texto,
	#home-slider .bxslider,
	#home-slider .bxslider li{
		height:400px;
		font-size:23px;
	}	
}
@media screen and (max-width: 640px) {
	#home-slider,
	#home-slider-texto,
	#home-slider .bxslider,
	#home-slider .bxslider li{
		height:300px;
		font-size:18px;
	}	
}
#home-slider-texto{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	z-index:2;
	background-color:rgba(0,0,0,0.4);
	padding-top:230px;
}
@media screen and (max-width: 980px) {
	#home-slider-texto{
		padding-top:180px;
	}	
}
@media screen and (max-width: 720px) {
	#home-slider-texto{
		padding-top:140px;
	}
}
@media screen and (max-width: 640px) {
	#home-slider-texto{
		padding-top:120px;
	}	
}
#home-slider-texto p{
	width:100%;
	text-align:center;
	color:#FFF;
	font-size:1em;
	text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
	padding:0 50px;
}
#home-slider-texto p.destacada{
	font-size:3em;
}
@media screen and (max-width: 500px) {
	#home-slider-texto p.destacada{
		font-size:1.8em;
	}
}
#home-slider .bxslider{
	padding:0;
	margin:0;
}
#home-slider .bx-wrapper {
    border: none;
}
#home-slider{
	position:relative;
}
#home-slider .bxslider li{
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}
#home-slider .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: calc(50% - 12px);
    width: 45px;
    height: 45px;
    text-indent: -9999px;
    z-index: 3;
	background-size:contain;
}
#home-slider .bx-wrapper .bx-controls-direction a.bx-prev {
	left: 0px;
	background: url(../images/slider-prev.svg) center center no-repeat;
}
#home-slider .bx-wrapper .bx-controls-direction a.bx-next {
	right: 0px;
	background: url(../images/slider-next.svg) center center no-repeat;
}
#home-slider .bx-wrapper .bx-controls-direction a:hover{
	background-color: rgba(0,0,0,0.7) !important;
}
/*--------------------------------------------------------------*/
/* Editoriales en tabla */
/*--------------------------------------------------------------*/
.tipo-tabla,
.tipo-tabla *{
	font-size:0;
}
.tipo-tabla{
	display:flex;
	align-items: center;
}
.tipo-tabla.alt{
	 flex-direction: row-reverse;
}
.tipo-tabla-imagen{
	padding-right:30px;
}
.tipo-tabla.alt .tipo-tabla-imagen{
	padding-left:30px;
	padding-right:0;
}
.tipo-tabla-texto{
	padding-left:30px;	
}
.tipo-tabla.alt .tipo-tabla-texto{
	padding-right:30px;
	padding-left:0;
}
@media screen and (max-width: 979px) {
	.tipo-tabla{
		display:inline-block;
		width:100%;
		padding-left:0;
		padding-right:0;
	}
	.tipo-tabla .tipo-tabla-imagen,
	.tipo-tabla .tipo-tabla-texto{
		padding-left:0;
		padding-right:0;	
	}
	.tipo-tabla .tipo-tabla-texto{
		padding-bottom:25px;
	}
	.tipo-tabla .tipo-tabla-imagen{
		padding-bottom:25px;
	}
	.tipo-tabla.alt .tipo-tabla-texto{
		padding-bottom:0;
	}
	.tipo-tabla.alt .tipo-tabla-imagen{
		padding-bottom:25px;
	}
	.tipo-tabla.alt .tipo-tabla-imagen,
	.tipo-tabla.alt .tipo-tabla-texto{
		padding-left:0;
		padding-right:0;	
	}
}
.tipo-tabla-imagen img{
	width:auto;
	max-width:100%;
	height:auto;
}
.tipo-tabla-texto *{
	width:100%;
	text-align:left;
}
.tipo-tabla-texto *{
	width:100%;	
}
.tipo-tabla-texto p{
	font-size: 18px;
	line-height:1.3em;
	color:#444;
}
.tipo-tabla-texto .tipo-celda-titulo{
	font-size: 38px;
	line-height:1em;
	color:#F68C1E;
	font-family:'montserrat-medium';
}
@media screen and (max-width: 640px) {
	.tipo-tabla-texto .tipo-celda-titulo{
		font-size: 28px;
	}
}
.tipo-tabla-texto p a{
	width:auto;
}
/*--------------------------------------------------------------*/
/* Titulo Seccion */
/*--------------------------------------------------------------*/
#titulo-seccion{
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}
#titulo-seccion div{
	display:flex;
	align-items:center;
	justify-content: center;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.4);
	padding:100px 40px;
}
@media screen and (max-width: 480px) {
	#titulo-seccion div{
		padding:70px 30px;
	}
}
#titulo-seccion div h1,
#titulo-seccion div p{
	font-size:65px;
	color:#FFF;
	text-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
	font-family:'montserrat-medium';
	text-align:center;
	line-height:1em;
}
@media screen and (max-width: 980px) {
	#titulo-seccion div h1,
	#titulo-seccion div p{
		font-size:60px;
	}
}
@media screen and (max-width: 640px) {
	#titulo-seccion div h1,
	#titulo-seccion div p{
		font-size:50px;
	}
}
@media screen and (max-width: 480px) {
	#titulo-seccion div h1,
	#titulo-seccion div p{
		font-size:35px;
	}
}
/*--------------------------------------------------------------*/
/* Subtitulo Seccion */
/*--------------------------------------------------------------*/
.subtitulo-seccion{
	text-align:center;
	font-size:35px;
	color:#8F9194;
	margin-bottom:30px;
}
/*--------------------------------------------------------------*/
/* Grid obras */
/*--------------------------------------------------------------*/
.grid-obras,
.grid-obras *{
	font-size:0;
}
.grid-obras{
	text-align:center;	
}
.grid-obra{
	display:inline-block;
	vertical-align:top;
	width:33%;
	padding:0 15px 30px 15px;
}
@media screen and (max-width: 980px) {
	.grid-obra{
		width:50%;
	}
}
@media screen and (max-width: 600px) {
	.grid-obra{
		width:100%;
		padding-left:0;
		padding-right:0;
	}
}
.grid-obra-imagen,
.grid-obra-textos,
.grid-obra-textos p{
	width:100%;
}
.grid-obra-imagen{
	height:260px;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}
.grid-obra-imagen a{
	display:block;
	width:100%;
	height:100%;
	text-indent:-9999px;
}
.grid-obra-imagen a:hover{
	background-color:rgba(0,0,0,0.15);
}
.grid-obra-textos{
	padding-top:8px;		
}
.grid-obra-textos p{
	font-size:17px;
	text-align:center;
	color:#333;
	margin-bottom:5px;
}
.grid-obra-textos p.menor{
	font-size:15px;
	color:#666;
}
/*--------------------------------------------------------------*/
/* Grid clientes */
/*--------------------------------------------------------------*/
.grid-clientes,
.grid-clientes *{
	font-size:0;
}
.grid-clientes{
	text-align:center;
}
.grid-cliente{
	display:inline-block;
	vertical-align:top;
	width:275px;
	width:20%;
	height:200px;
	padding:0 10px 10px 20px;
}
@media screen and (max-width: 980px) {
	.grid-cliente{
		width:25%;
		height:180px;
	}
}
@media screen and (max-width: 700px) {
	.grid-cliente{
		width:33%;
		height:160px;
	}
}
@media screen and (max-width: 500px) {
	.grid-cliente{
		width:50%;
	}
}
.grid-cliente div{
	justify-content: center;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
}
.grid-cliente div img{
	filter: grayscale(1);
	max-width:100%;
	height:auto;
}
/*--------------------------------------------------------------*/
/* Contacto */
/*--------------------------------------------------------------*/
#contacto,
#contacto *{
	/*border:solid 1px red;*/
}
#contacto-direcciones{
	text-align:left;
}
#contacto-tel,
#contacto-wapp{
	display:inline-block;
	text-decoration:none;
	color:#333;
	font-size:25px;
	padding-left:40px;
	background-image:url(../images/ico-tel.svg);
	background-repeat:no-repeat;
	background-position:left center;
	background-size:35px;
	line-height:45px;
}
#contacto-wapp{
	background-image:url(../images/ico-wapp.svg);
	background-size:40px;
}
#contacto-tel:hover,
#contacto-wapp:hover{
	color:#F68C1E;
}
#contacto-direcciones p{
	font-size:18px;
	line-height:1.3em;
	margin-bottom:20px;
	color:#666;
}
#contacto-direcciones p a{
	color:inherit;
	font-size:inherit;
	line-height:inherit;
}
#contacto-direcciones p a:hover{
	color:#F68C1E;
}
#contacto-formulario form > div{
	text-align:left;
	padding-bottom:15px;
}
@media screen and (max-width: 979px) {
	#contacto-formulario form div{
		padding-bottom:0;
	}
	#contacto-formulario form > div,
	#contacto-formulario form > div > div{
		padding-bottom:10px;
	}
	#contacto-formulario form > div > div:last-child{
		padding-bottom:0;
	}
}
#contacto-formulario form input,
#contacto-formulario form select,
#contacto-formulario form textarea{
	background-color:#EEE;
	font-family:'montserrat-medium';
}
#contacto-formulario label{
	font-size:14px;
	line-height:1.2em;
}
#contacto-formulario label a{
	line-height:inherit;
}
#contacto-formulario label a:hover{
	color:#F68C1E;
}
#contacto-formulario button{
	font-size:23px;
}
#contacto-formulario button:hover{
	background-color:#000 !important;
}
/*--------------------------------------------------------------*/
/* mensaje */
/*--------------------------------------------------------------*/
#mensaje h1,
#mensaje p{
	width:100%;
	text-align:center;
}
#mensaje h1{
	font-family:'montserrat-medium';
	font-size:40px;
	color:#F68C1E;
}
#mensaje p{
	font-size:25px;
	color:#666;
}
/*--------------------------------------------------------------*/
/* Categoria Cifras */
/*--------------------------------------------------------------*/
#categoria-cifras,
#categoria-cifras *{
	font-size:0;
}
#categoria-cifras{
	text-align:center;
}
.categoria-cifra{
	display:inline-block;
	vertical-align:top;
	padding:0 25px;
}
@media screen and (min-width: 980px) {
	.categoria-cifra{
		width:25%;
		min-height:90px;
		border-left:solid 1px #CCC;
	}
	.categoria-cifra:first-child{
		border-left:none;
	}
}
@media screen and (max-width: 979px) {
	.categoria-cifra{
		width:100%;
		min-height:90px;
		border-top:dotted 1px #AAA;
		padding-top:20px;
		margin-top:20px;
	}
	.categoria-cifra:first-child{
		border-top:none;
		margin-top:0;
	}
}
#categoria-cifras .categoria-cifra h4,
#categoria-cifras .categoria-cifra h2{
	display:block;
	width:100%;
	font-size:17px;
	color:#333;
	text-align:center;
	line-height:1.2em;
}
#categoria-cifras .categoria-cifra h4{
	font-size:35px;
	font-family:'montserrat-bold';
	color:#F68C1E;
	margin-bottom:10px;
	line-height:1em;
}
/*--------------------------------------------------------------*/
/* Atras */
/*--------------------------------------------------------------*/
#atras{
	font-size:0;
	background-color:#808285;
}
#atras .container{
	text-align:left;
}
#atras a{
	display:inline-block;
	font-size:17px;
	padding:15px;
	padding-left:40px;
	background-image: url(../images/ico-atras.svg);
	background-repeat: no-repeat;
	background-position: left 5px center;
	background-size:25px;
	color:#FFF;
	text-decoration:none;
}
#atras a:hover{
	color:rgba(255, 255, 255, 0.7);
}
/*--------------------------------------------------------------*/
/* Detalle Obra */
/*--------------------------------------------------------------*/
#obra-detalle,
#obra-detalle *{
	font-size:0;
}
@media screen and (max-width: 979px) {
	#obra-detalle-textos{
		margin-bottom:30px;
	}
}
#obra-detalle-textos *{
	display:inline-block;
	width:100%;
	font-size:17px;
	text-align:left;
}
#obra-detalle-textos h4{
	font-size:35px;
	font-family:'montserrat-bold';
	color:#F68C1E;
}
#obra-detalle-textos h5{
	font-family:'montserrat-bold';
	color:#333;
}
#obra-detalle-textos p{
	color:#333;
	line-height:1.3em;
}
#obra-detalle-galeria img{
	width:auto;
	max-width:100%;
	height:auto;
}