@import url('https://fonts.googleapis.com/css?family=Didact+Gothic');
/* CSS reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font-family: 'Century Gothic', 'Didact Gothic', sans-serif;
}
img{
	max-width:100%;
}
/* Parallax Scrolling */
.fondo {
	position: absolute;
	width:100%;
	left:0;
	top:0;
	min-height:100%;
	opacity:.5;
}
.fondo1{
	left:0;
	top:1%;
}
body{
	background:#FFF;
	overflow-x: hidden;
}
/* Header */
header {
    width: 100%;
    position: fixed;
    z-index: 900;
    color: #FFF;
    display: block;
    background: #FFF;
	top: 0;
}
header .buscar{
	display: inline-block;
	background: #F3F3F3;
	padding: 5px;
	border-radius: 5px;
	color: #333;
	border-bottom: solid 2px #DBDBDB;
}
/*header .buscar input{
	display: inline-block;
	width: 100px;
	height:20px;
    background: inherit;
		border: none;
		color: #333;
}*/
.texto-buscar{
	background-color:#F3F3F3;
	border:0px;
	width:120px; 
	height:20px; 
	font-size:18px; 
	padding:5px; 
}
.imagen-buscar{
	margin-top: 0px; 
	width:15px;
}

header .buscar input:focus{
    background: inherit;
		color: #333;
}
.logo{
	color:#000;
	z-index: 100;
	max-width:100%;
}
.logo.esconder {
	opacity:0;
	padding:1% 2%;
}
.logo img{
	transition: all 0.4s ease;
    vertical-align: middle;
    width: 27vw !important;
	height: auto !important;
}
header img{
	transition: all 0.4s ease;
}
.chat{
    position: fixed;
    right: 0;
    z-index: 10;
    top: 450px;
    width: 85px;
}

/* Menú */
.menuP {
    display: block;
    position: fixed;
    top: 5px;
    right: 3%;
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 0;
    text-indent: -9999px;
    appearance: none;
    cursor: pointer;
    background: transparent;
    color: #FFF;
    line-height: 8px;
    z-index: 200;
    border: none;
}
.menuP:focus {
	outline: none;
}
.menuP span {
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFF;
    transition: background 0s 0.3s;
    width: 60%;
    margin: auto;
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.menuP span::before,
.menuP span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 3px;
	content: "";
	background: #FFF;
	box-shadow: 1px 1px 2px rgba(0,0,0,.3);
  	transition-duration: 0.3s, 0.3s;
  	transition-delay: 0.3s, 0s;
}
.menuP span::before {
	top: -9px;
  	transition-property: top, transform;
}
.menuP span::after {
	bottom: -9px;
  	transition-property: bottom, transform;
}
/* Menú abierto */
.menuP.activo span {
  background: none;
}
.menuP.activo span::before {
  top: 0;
  transform: rotate(45deg);
}
.menuP.activo span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.menuP.activo span::before,
.menuP.activo span::after {
  transition-delay: 0s, 0.3s;
}
.menu{
	-moz-user-select: none;
	background: rgba(70, 68, 68,0.95);
    min-height: 0px;
    opacity: 0;
	height: 0;
    position: fixed;
    left: 0;
    top: 0;
	transition: all 0.5s cubic-bezier(0.33, 0, 0.2, 1) .1s;
    width: 100%;
	z-index: -10;
	overflow: hidden;
}
.menu .logoMenu{
	display: block;
    margin: 20px auto 0 auto;
    width:200px;
}
.menu-abierto{
	opacity:1;
    min-height: 100%;
	z-index:150;
    padding:40px;
}
.menu-ppal {
	width:100%;
	margin: 40px 0 0 0;
	padding:0;
	max-width: 300px;
	font-size: 1em;
}
.menu-ppal li {
	list-style-type:none;
	margin:0;
}
.menu-ppal li ul {
	/*left:250px;*/
	width: 260px;
	display:none;
	position:absolute;
	top: inherit;
	background: rgba(70, 68, 68,0.95);
	text-align: left;
	padding: 0;
}
.menu-ppal li ul a{
	width: 100%;
}
.menu-ppal li a {
    color:#FFF;
	font:normal 1.1em 'Century Gothic', 'Didact Gothic', sans-serif;
    text-decoration:none;
	text-transform:uppercase;
    vertical-align:middle;
    width:100%;
	display:block;
	background:transparent;
	transition: all linear 0.1s;
    -moz-transition: all linear 0.1s;
    -webkit-transition: all linear 0.1s;
    -o-transition: all linear 0.1s;
}
@media (min-width: 768px) {
	.logo img{
		width: 11.2vw !important;
	}
	.menuP{
		display: none;
	}
	.menu{
		position: absolute;
		opacity: 1;
		width: auto;
		overflow: visible;
    	padding: 25px 0;
		top: inherit;
		left: 15%;
		height: 80px;
	}
	.menu:before, .menu:after{
		content: "";
		position: absolute;
		background: rgba(70, 68, 68,0.95);
		width: 90px;
		top: 0;
		left: -90px;
		height: 100%;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%);
	}
	.menu:after{
		left: auto;
		right: -90px;
		-webkit-clip-path: polygon(0 0, 0% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 0% 0, 100% 100%, 0% 100%);
	}
	.menu .logoMenu{
		display: none;
	}
	.menu-ppal {
		margin: 0;
		max-width: none;
		text-align: right;
	}
	.menu-ppal li {
		display: inline-block;
		padding: 6px 15px;
		border-right: 1px solid #bbb;
	}
	.menu-ppal li:last-child {
		border: none;
	}
	.menu-ppal li a {
		font:normal 1em 'Century Gothic', 'Didact Gothic', sans-serif;
	}
}
.menu-ppal li a:hover {
	border-bottom: 2px solid #176EB5;;
}
.menu-ppal li:hover ul {
    display:block;
}
.menu-ppal li ul li {
	float: none;
	display: block;
}
.menu-ppal li img {
    display:inline-block;
    vertical-align:middle;
}
#map{
	display:none;
}
@media(min-width: 48em){
	#map{
		display:block;
		width: 100%;
		height:450px;
	}
}
#map img{
	max-width:none;
}
.principal{
	position: relative;
	background: #FFF;
    padding-top: 143px;
}
/* Servicios */
.productos{
	background:#FFF;
	position:relative;
	padding:4% 0;
	overflow:hidden;
}
.productos h1, .productos p{
	position:relative;
}
.productos h2{
	text-align:center;
	line-height: 1em;
	overflow:hidden;
	padding:11px;
	font-size:1.5em;
	white-space:normal;
}
.productos a.imagen, .contenidos a.imagen{
    overflow: hidden;
    position: relative;
    height: 264px;
    width: 100%;
    max-width: 100%;
	text-align:center;
	display:block;
	border-radius:50%;
	box-shadow:2px 2px 3px rgba(0,0,0,0.36);
	transition:box-shadow 0.1s linear;
	perspective:1px;
	margin:auto;
}
.productos a.imagen:after{
	position:absolute;
	top:-68%;
	left:0;
	right:0;
	margin:auto;
	content:'';
	background:rgba(255,255,255,0.80);
	width:100%;
	height:100%;
	z-index:1;
	border-radius: 50%;
}
.wide{
	position:relative;
}
.wide span{
	position:absolute;
	top:-11px;
	left:0;
	right:0;
	margin:auto;
	width:171px;
	height:73px;
	z-index:1;
}
.contenidos h3{
	color: #176eb5;
}
.contenidos a.imagen{
    width: 281px;
}
.productos a.imagen img, .contenidos a.imagen img {
    bottom: -100%;
    height: 100%;
    left: -100%;
    margin: auto;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
    transition: all 0.15s linear 0s;
}
.productos div span:hover{
	box-shadow:none;
}
.productos .texto{
	background:#0092DA;
	border-radius:5px;
	padding:20px;
	width:235px;
	margin:-60px auto auto auto;
	white-space:normal;
	text-align:center;
	position:relative;
	color:#FFF;
	font-size:1.3em;
	box-shadow:3px 3px 3px rgba(0,0,0,0.36);
}
.productos .link{
	color:#FFF;
	font:bold 5em 'Century Gothic', 'Didact Gothic', sans-serif;
	margin:-30px auto auto auto;
	display:block;
	width:130px;
	position:relative;
	text-align:center;
}
/* staff */
.staff{
	background:#002038;
	overflow:hidden;
	position:relative;
	text-align:center;
}
.staff h1{
	background:#001331;
	color:#FFF;
	padding:5px 2%;
	text-align:left;
	margin-bottom:10px;
}
.staff .division{
	padding:0 1%;
	position:relative;
}
.staff a.imagen{
	border-radius: 5px;
    height: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
	display:block;
	perspective:1px;
	background:#000;
}
.staff a.imagen img{
	height:auto;
    width: 100%;
	opacity:1;
	transition: all 0.5s ease 0s;
}
.staff article{
	padding:10%;
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	color:#FFF;
	opacity:0;
	transform:scale(.5);
	transition: all 0.5s ease 0s;
	font-size:1.2em;
}
.staff h2{
	font-size:1em;
	margin-top:5px;
}
.staff h3{
	font-size:1em;
	color:#FFF;
}
.staff a.imagen:hover img{
	transform:rotate(-5deg) scale(1.2);
	opacity:.5;
}
.staff a.imagen:hover article{
	opacity:1;
	transform:scale(1);
}
.staff .quehacemos{
	color:#FFF;
	text-align:center;
	font-size:1.3em;
	padding:0 10%;
	margin-top:20px;
}
.staff .quehacemos h1{
	color:#00A0DF;
	text-align:center;
	background:none;
	font-size:1.8em;
}
@media(min-width: 48em){
    .staff .division{
    	display:inline-block;
    	width:30%;
    	position:relative;
    }
}
.mapa{
	position:relative;
}
.mapa iframe{
	display: block;
}
/*Contactos*/
/*Pie de página*/
footer{
	background:#464444;
	width:100%;
	padding:2%;
	position:relative;
	color: #FFF;
	font-size: 1.1em;
}
@media (min-width: 48em){
	footer .contactos .formulario3 {
		width: 30%;
		padding: 20px 2%;
		position: absolute;
		z-index: 11;
		top: -315px;
		margin-left: 10px;
        background: #176EB5;
        color: #000;
	}

	footer .contactos .formulario3 h2 {
        color: #fff;
	}
}
footer a{
	color:#fff;
}
footer a:hover{
	text-decoration:underline;
}
.mapaNavegacion{
	overflow: hidden;
	font-size:1em;
	background:#ED790E;
	position: relative;
	padding-top: 15px;
}
.mapaNavegacion h2{
	color:#252525;
	margin-bottom:3px;
	font-size:1.2em;
	text-transform:uppercase;
	font-weight: bold;
}
.mapaNavegacion ul{
	list-style:none;
	padding: 0;
}
.mapaNavegacion ul li:before{
	content: "\2014\a0";
	color: #252525;
}
.mapaNavegacion ul li a{
	color:#252525;
	text-decoration:none;
	letter-spacing:1px;
	font-size:1em;
}
.mapaNavegacion ul li a:hover{
	text-decoration:underline;
}
.creditos{
	text-align:right;
}
.imagenLista{
    height: 180px;
    overflow: hidden;
    position: relative;
	display:block;
	width:100%;
}
.lista{
	width:100%;
	padding:1% 2%;
}
@media(min-width: 48em){
.imagenLista{
    height: 220px;
	width:25%;
	float:left;
}
.lista{
	width:73%;
    min-height: 220px;
	float:left;
}
}
.imagenLista img{    
	bottom: -100%;
    left: -100%;
    margin: auto;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
    width: 100%;
}
.imagenInterna{
	margin-bottom:11px;
}
.contenidoInterno{
	padding:2% 0;
	position:relative;
	height:auto;
	background:#FFF;
}
.contenidoInterno h1{
	color:#b4c834;
	margin-bottom:11px;
}
@media(min-width: 48em){
.imagenInterna{
	float:left;
	margin:0 11px 11px 0;
	width:33.3%;
	position:relative;
}
}
.contenidoInterno h2{
	color:#000;
}
.container .link {
    padding: 11px;
    color: #000;
    display: inline-block;
    margin-top: 20px;
}
.clear{
	clear:both;
}
div.productos{
	border-radius: 5px;
    height: 250px;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0 5px;
    position: relative;
    width: 100%;
	text-align:center
}
@media(min-width: 48em){
div.productos{
    float: left;
    width: 33%;
}
}
div.productos img{
    position:absolute;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    margin: auto; 
    /*height: 100%;*/
    min-width: 100%;
    min-height: 100%;
	max-width:none;
	-webkit-transition: all 0.15s linear;
	   -moz-transition: all 0.15s linear;
	     -o-transition: all 0.15s linear;
	        transition: all 0.15s linear;
}
div.productos a:hover img{
	transform:scale(1.05,1.05);
}
div.productos a{
	display:block;
	overflow:hidden;
	color:#FFF;
	width:100%;
	height:100%;
	position:relative;
	border-radius:5px;
	-webkit-transition: all 0.1s linear;
	   -moz-transition: all 0.1s linear;
	     -o-transition: all 0.1s linear;
	        transition: all 0.1s linear;
}
div.productos a:hover .tituloProducto{
    background:rgba(180,200,52,0.80);
}
div.productos .tituloProducto {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 5px 5px;    
	bottom: 0;
    left: 0;
	text-align:left;
    padding: 11px;
    position: absolute;
    width: 100%;
	font:normal 1em 'Century Gothic', 'Didact Gothic', sans-serif;
	-webkit-transition: all 0.2s linear;
	   -moz-transition: all 0.2s linear;
	     -o-transition: all 0.2s linear;
	        transition: all 0.2s linear;
}
.carrito{
	position:absolute;
	height:58px;
	padding:11px 11px 9px 4px;
	border-radius:5px 5px 0 5px;
	top:11px;
	right:40px;
}
@media(min-width: 48em) {
.carrito{
	right:100px;
}
}
.carrito h1{
	font-size:1.2em;
}
#basketWrap {
	display:none;
	position:absolute;
	width:260px;
	right:0;
	top:50px;
	padding:11px;
	border-radius:5px 0 5px 5px;
	background:#FFF;
}
.carrito:hover{
	background:#FFF;
}
.carrito:hover #basketWrap{
	display:block;
}
.carrito h1 span{
	width:20px;
	height:20px;
	border-radius:50px;
	background:#FFC926;
	text-align:center;
	box-shadow:1px 1px 2px rgba(0,0,0,0.50);
	font-size:.8em;
	display:inline-block;
}
.precio{
	color:#000;
	padding:11px 0;
	text-align:left;
	border-top:solid 1px #eae9e9;
	border-bottom:solid 1px #eae9e9;
	height:60px;
	margin:11px 0;
}
.descripcionProducto{
	background:#fbfbfb;
	border:solid 1px #ebebeb;
	padding:11px 5%;
	margin-top:20px;
	border-radius:3px;
}
.descripcionProducto h1{
	font-size:1.5em;
}
.tags{
	margin-top:11px;
	clear:both;
}
.tags h2{
	padding-bottom:5px;
	margin-bottom:10px;
	border-bottom:solid 1px #DDD;
}
.cantidad{
	margin:0 11px;
	clear:both;
	text-align:center;
	float:left;
}
#cantidad{
	text-align:center;
}
td.label {
    font-weight: 400;
}
.data-table {
    width: 100%;
	color:#000;
}
#giftreg-table {
    clear: both;
}
.data-table th {
    font-size: 1em;
    padding: 15px;
    text-transform: uppercase;
	border-bottom:solid 1px #918E8A;
	color: #8B9092;
	font-weight: normal;
}
.data-table th select{
    text-transform:none;
}
.data-table .padding{
    padding:0;
}
.data-table th.wrap {
    white-space: normal;
}
.data-table th a {
    color: #000;
}
.data-table th a:hover {
    color: #999;
}
.data-table td {
    color: #384361;
    padding: 15px;
    vertical-align: middle;
}
.titulo_responsive{
	display: none;
}
@media (max-width: 769px){
	.data-table td, .data-table th {
		display: block;
	}
	.data-table thead {
		display: none;
	}
	.titulo_responsive{
		display: inline-block;
	}
}
.data-table thead th {
	color: #CBAA44;
	font-weight: bold;
}
.data-table tfoot {
    border-bottom: 1px solid #D9DDE3;
}
.data-table tfoot tr.first {
    border-top: 1px solid #C1DBE4;
}
.data-table tfoot tr {
}
.data-table tbody td {
    border-bottom: 1px solid #C1DBE4;
}
.data-table tfoot td {
    padding: 15px;
}
.data-table tbody.odd tr {
}
.data-table tbody.even tr {
    background: none repeat scroll 0 0 #FCFCFC;
}
.data-table tbody.odd tr td, .data-table tbody.even tr td {
    border-bottom: 0 none;
}
.data-table tbody.odd tr.border td, .data-table tbody.even tr.border td {
    border-bottom: 1px solid #D9DDE3;
}
.data-table tbody td h5.title {
    color: #444444;
    font-size: 1em;
    font-weight: bold;
    margin: 0;
    padding: 0;
}
.data-table tbody td .option-label {
    font-style: italic;
    font-weight: bold;
}
.data-table tbody td .option-value {
    padding-left: 10px;
}
.imgCarro{
	width:100px;
}
#shopping-cart-table label {  
	display: inline-block;  
	cursor: pointer;  
	position: relative;  
	padding-left: 25px;   
	font-size: 13px;  
}  
#shopping-cart-table input[type=radio] {  
    display: none;  
} 
#shopping-cart-table label:before {  
	content: "";  
	display: inline-block;     
	border-radius: 8px;   
  
	width: 16px;  
	height: 16px;  
   
	position: absolute;  
	left: 0;  
	bottombottom: 1px;
	box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);  
}  
#shopping-cart-table input[type=radio]:checked + label:before {  
	content:'\2022';  
	color: #f3f3f3;  
	font-size: 30px;  
	text-align: center;  
	line-height: 18px;  
}
input[disabled]{
	border:none;
	color:#000;
	background:none;
}
.cart form{
	overflow:hidden;
	border-radius:5px;
	position:relative;
	padding:0 0 0 15px;
}
.productoC{
	padding:11px;
	margin-bottom:5px;
	border-radius:5px;
	background:#FFF;
}
.productoC a{
	display:block;
	float:left;
	width:15%;
	margin:0 15px 0 0;
}
.productoC h2{
	text-align:left;
	font-size:1.2em;
}
.productoC a img{
	width:100%;
}
#confirmar{
	float:left;
	width:70%;
}
#shopping-cart-table{
}
.formularioPayu{
}
.formularioPayu .margen{
	padding:15px;
	position:relative;
}
@media (min-width: 48em){
.formularioPayu .margen{
	margin:auto;
	width:90%;
}
}
.formularioPayu .margen input{
	width:100%;
	border-radius:3px;
	border:solid 1px #F5F5F5;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
	margin-bottom:5px;
	padding:5px;
}
#cmdEnviar{
	background:#1B6FB6;
	color:#FFF;
	margin-top:11px;
	border: none;
	text-align: center;
	font-size: 1.3em;
	cursor: pointer;
	transition: all .3s;
}
#cmdEnviar:hover {
	padding-left: 10px;
}
.cart #usarDescuento{
	background:#C9AF34;
	border: none;
	color:#FFF;
	padding: 5px 15px;
}
.fotoProducto{
	width:100%;
}
.fondoCarrito{
	background:#eae9e9;
	padding:11px;
	border-radius:3px;
	overflow:hidden;
}
.margenProducto{
	border-radius:3px;
	border:solid 1px #DADADA;
	padding:11px;
}
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1550px) {
  .container {
    max-width: 1500px;
  }
}
@media (min-width: 1880px) {
  .container {
    max-width: 1820px;
  }
}
.container:before,
.container:after,
.fullwidth-wrap:before,
.fullwidth-wrap:after {
  display: table;
  content: " ";
}
.container:after,
.fullwidth-wrap:after {
  clear: both;
}
.col2 .formulario3{
	width:100%;
}
@media(min-width: 48em){
	.col1{
		float:left;
		width:75%;
		padding-right:2%;
	}
	.col2{
		float:left;
		width:25%;
	}
}
.arrowback{
	background: #918E8A;
    color: #fff;
    margin-top: 11px;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
    margin-bottom: 5px;
    padding: 5px;
}
.noticia{
	background:rgba(180,200,52,0.80);
	padding:3% 2% 2% 2%;
	position:relative;
	width:100%;
	color:#FFF;
	border-radius:5px;
}
.noticia h2{
	background:#000;
	padding:5px;
	width:80%;
	margin:auto;
	left:0;
	right:0;
	text-align:center;
	position:absolute;
	top:-20px;
	text-transform:uppercase;
	color:#FFF;

	border-radius:2px;
}
.noticia h3{
	color:#000;
	font:bold 1.2em 'Century Gothic', 'Didact Gothic', sans-serif;
	margin:5px 0;
}
#galeria li{
	padding:0 25px;
}
#galeria a.imagen{
	height:355px;
	width:100%;
}
.container h3{
	font:normal 1.5em 'Century Gothic', 'Didact Gothic', sans-serif;
	margin-bottom:10px;
}
.noticia .enlace{
	background:rgba(0,0,0,0.80);
	color:#FFF;
	position:absolute;
	padding:5px;
	font:bold 3em 'Century Gothic', 'Didact Gothic', sans-serif;
	text-align: center;
    line-height: 0.9em;
	right:6%;
	border-radius:2px;
}
@media(min-width: 48em){
.noticia{
	width:34%;
	float:left;
}
}
.relacionados{
	padding:2%;
	overflow:hidden;
	background:#eee;
	border-radius:5px;
	border:1px solid #E5E5E5;
	margin-top:11px;
	display:flex;
}
.productoR{
	padding:1%;
}
.productoR a{
	color:#b4c900;
}
.productoI img{
	width:100%;
}
@media(min-width: 48em){
.relacionados{
	display:flex;
	flex-flow: wrap;
}
.relacionados:after {
  content: "";
  flex: auto;
}
.relacionados h2 {
    flex: 1 1 100%;
}
.productoR{
    width: 33.3%;
}
}
.carousel img{
	width:100%;
}
.carousel li{
	list-style:none;
}
.alignleft {
    float: left;
    margin: 0 15px 15px 0;
}
.formulario3{
	background: #FFF;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
	padding: 20px 30px;
	width:80%;
	margin:auto;
	text-align:left;
}
.formulario3 input, .formulario3 textarea, .formulario3 select {
	padding: 7px 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	font-size: 13px;
	font-family: century gothic;
}
/*buttons*/
.formulario3 .action-button {
	width: 100px;
	font-weight: bold;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: auto;
	background: #fff;
    color: #000;
    height: auto;
    line-height: inherit;
}
.formulario3 .action-button:hover, .formulario3 .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #fff;
}
/*headings*/
.formulario3 h2 {
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: century gothic;
}
@media(min-width: 48em){
.formulario3{
	width:50%;
	padding:20px 5%;
}
}
.antispam{
	display:none;
}
/*product*/
.product-preview-wrapper {
  float: none;
  display: inline-block;
  margin-right: -4px;
  vertical-align: top;
  padding-bottom: 20px;
}
.slick-slider .product-preview-wrapper {
  float: left;
  margin-right: 0;
}
.four-in-row .product-preview-wrapper {
  max-width: none;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 559px) {
  .four-in-row .product-preview-wrapper {
    width: 100%;
  }
}
@media (min-width: 560px) {
  .four-in-row .product-preview-wrapper {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .four-in-row .product-preview-wrapper {
    width: 33.333%;
  }
}
@media (min-width: 992px) {
  .four-in-row .product-preview-wrapper {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .four-in-row .product-preview-wrapper {
    width: 25%;
  }
}
.product-carousel .slick-prev,
.product-carousel .slick-next {
  margin-top: -21px;
}
@media (max-width: 767px) {
  .product-carousel .slick-prev,
  .product-carousel .slick-next {
    margin-top: -72px;
  }
}
.slick-dots li button:before {
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
  font-size: 12px;
  margin-top: 1px;
}
@media (min-width: 768px) {
  .animated-arrows .slick-prev,
  .animated-arrows .slick-next {
    width: 40px;
    height: 40px;
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  .animated-arrows .slick-prev .icon-wrap,
  .animated-arrows .slick-next .icon-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  .animated-arrows .slick-prev::before,
  .animated-arrows .slick-prev::after,
  .animated-arrows .slick-prev .icon-wrap::before,
  .animated-arrows .slick-prev .icon-wrap::after,
  .animated-arrows .slick-next::before,
  .animated-arrows .slick-next::after,
  .animated-arrows .slick-next .icon-wrap::before,
  .animated-arrows .slick-next .icon-wrap::after {
    position: absolute;
    left: 50%;
    width: 3px;
    height: 50%;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .animated-arrows .slick-prev .icon-wrap::before,
  .animated-arrows .slick-prev .icon-wrap::after,
  .animated-arrows .slick-next .icon-wrap::before,
  .animated-arrows .slick-next .icon-wrap::after {
    z-index: 100;
    height: 0;
    -webkit-transition: height 0.3s, -webkit-transform 0.3s;
    transition: height 0.3s, transform 0.3s;
  }
  .animated-arrows .slick-prev::before,
  .animated-arrows .slick-prev .icon-wrap::before {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(-135deg);
    transform: translateX(-50%) rotate(-135deg);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }
  .animated-arrows .slick-next::before,
  .animated-arrows .slick-next .icon-wrap::before {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
  }
  .animated-arrows .slick-prev::after,
  .animated-arrows .slick-prev .icon-wrap::after {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .animated-arrows .slick-next::after,
  .animated-arrows .slick-next .icon-wrap::after {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
  }
  .animated-arrows .slick-prev:hover .icon-wrap::before,
  .animated-arrows .slick-prev:hover .icon-wrap::after,
  .animated-arrows .slick-next:hover .icon-wrap::before,
  .animated-arrows .slick-next:hover .icon-wrap::after {
    height: 50%;
  }
  .animated-arrows .slick-prev:hover::before,
  .animated-arrows .slick-prev:hover .icon-wrap::before {
    -webkit-transform: translateX(-50%) rotate(-125deg);
    transform: translateX(-50%) rotate(-125deg);
  }
  .animated-arrows .slick-next:hover::before,
  .animated-arrows .slick-next:hover .icon-wrap::before {
    -webkit-transform: translateX(-50%) rotate(125deg);
    transform: translateX(-50%) rotate(125deg);
  }
  .animated-arrows .slick-prev:hover::after,
  .animated-arrows .slick-prev:hover .icon-wrap::after {
    -webkit-transform: translateX(-50%) rotate(-55deg);
    transform: translateX(-50%) rotate(-55deg);
  }
  .animated-arrows .slick-next:hover::after,
  .animated-arrows .slick-next:hover .icon-wrap::after {
    -webkit-transform: translateX(-50%) rotate(55deg);
    transform: translateX(-50%) rotate(55deg);
  }
}
@media (min-width: 768px) {
  .content.boxed .slick-slider:not(.nav-inside) .slick-prev,
  body.boxed .slick-slider:not(.nav-inside) .slick-prev,
  .content.boxed .slick-slider:not(.nav-inside) .slick-next,
  body.boxed .slick-slider:not(.nav-inside) .slick-next {
    opacity: 0;
  }
  .content.boxed .slick-slider:not(.nav-inside):hover .slick-next,
  body.boxed .slick-slider:not(.nav-inside):hover .slick-next,
  .content.boxed .slick-slider:not(.nav-inside):hover .slick-prev,
  body.boxed .slick-slider:not(.nav-inside):hover .slick-prev {
    opacity: 1;
  }
}
.nav-mobile .slick-prev,
.nav-mobile .slick-next {
  top: 50% !important;
  width: 22px !important;
  height: 50px !important;
  margin-top: -25px !important;
}
.nav-mobile .slick-next {
  right: 0 !important;
}
.nav-mobile .slick-prev {
  left: 0 !important;
}
.single-slider .slick-prev {
  left: 15px;
}
.single-slider .slick-next {
  right: 15px;
}
.single-slider .slick-dots {
  bottom: -35px;
}
/* OTHER VENDORS COLORS */
.slick-dots li button:before {
  color: #878787;
}
.slick-dots li.slick-active button:before {
  color: #536dfe;
}
.animated-arrows .slick-prev::before,
.animated-arrows .slick-prev::after,
.animated-arrows .slick-prev .icon-wrap::before,
.animated-arrows .slick-prev .icon-wrap::after,
.animated-arrows .slick-next::before,
.animated-arrows .slick-next::after,
.animated-arrows .slick-next .icon-wrap::before,
.animated-arrows .slick-next .icon-wrap::after {
  background: #878787;
}
.animated-arrows .slick-prev .icon-wrap::before,
.animated-arrows .slick-prev .icon-wrap::after,
.animated-arrows .slick-next .icon-wrap::before,
.animated-arrows .slick-next .icon-wrap::after {
  background: #b4c834;
}
.single-slider .slick-prev {
  left: 15px;
}
.single-slider .slick-next {
  right: 15px;
}
.single-slider .slick-dots {
  bottom: -35px;
}
.two-in-row li {
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
	text-align:center;
}
@media (max-width: 559px) {
.two-in-row li {
    width: 100%;
}
}
@media (min-width: 560px) {
.two-in-row li {
    width: 50%;
}
}
@media (min-width: 768px) {
.two-in-row li {
    width: 50%;
}
}
@media (min-width: 992px) {
.two-in-row li {
    width: 50%;
}
}
@media (min-width: 1200px) {
.two-in-row li {
    width: 50%;
}
}
.cinta{
	padding:1% 10%;
	background:#DBDBDB;
	position:relative;
	overflow:hidden;
}
.cinta2{
	padding:4% 0;
	background:#DBDBDB;
	position:relative;
	overflow:hidden;
	min-height:349px;
}
.cinta2 h2{
	text-align:center;
	font-weight:bold;
}
.clients-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
	.cinta2 .clients-wrap {
	  width: 50%;
	  float:left;
	}
}
.certificados li{
	padding:0 11px;
}
.productoDestacado{
	position:relative;
	background:#585858;
	padding:2% 0;
	color:#FFF;
	overflow:hidden;
}
.productoDestacado h1, .productoDestacado h2 a{
	color:#B4C834;
}
.descripcion{
	padding:0 2%;
	position:relative;
}
.descripcion > a{
	display:inline-block;
	margin:11px auto;
	background:#B4C834;
	padding:5px 7px;
	border-radius:5px;
	color:#FFF;
}
.descripcion a:hover, .productoDestacado h2 a:hover{
	text-decoration:underline;
}
.productoDestacado a.imagen{
	display:block;
	overflow:hidden;
	border-radius:5px;
	position:relative;
}
@media(min-width: 48em){
.descripcion{
	float:left;
	width:60%;
}
.productoDestacado a.imagen{
	float:left;
	width:40%;
}
}
.col1 a{
	color: #AFC300;
}
.certificados{
	text-align:center;
}
.certificados li{
	display:inline-block;
}
.widetech{
	position:relative;
	background:#FFF;
	padding:4% 2%;
	text-align:center;
}
.widetech p{
	font-size:1.5em;
}
.videoWrapper {
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.miniatura{
	margin-bottom:10px; 
	float:left; 
	width:50%;
	position:relative;
}
@media(min-width: 48em){
	.miniatura{ 
		width:20%;
	}
}
.miniatura img{
	width:100%;
}
.miniatura .tituloVideo{
	position:absolute;
	width:100%;
	padding:11px;
	background:rgba(0,0,0,0.7);
	bottom:0;
	left:0;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	font:normal 0.9em 'PT Sans Narrow', sans-serif;
	-webkit-transition: all 0.15s linear;
	   -moz-transition: all 0.15s linear;
	     -o-transition: all 0.15s linear;
	        transition: all 0.15s linear;
}
.linkVideo{
	color:#FFF;
}
.miniatura a:hover .tituloVideo{
    background: rgba(0,0,0,0.9);
}
#video{
	float: left;
	width: 70%;
	padding: 11px;
}
#descripcion{
	float: right;
	width: 30%;
	padding: 11px;
}

#overlay{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#666;
	z-index:1;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color:#E4FF00;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color:#000;
	-webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color:#AFC300;
	-webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	  animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
.col-md-6, .col-md-4 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
@media(min-width: 48em){
  .col-md-6 {
    width: 50%;
  }
  .col-md-4 {
    width: 33.3%;
	float:left;
  }
}
.campana {
    background: #fff;
    border: 1px solid #DCDCDC;
    margin: 10px 0;
    padding: 0;
	border-radius:2px;
}
.campana.staff {
    border: 1px solid #B4C834;
	text-align:left;
}
.campana .usuario {
    background: #E5E5E5;
    padding: 5px 12px;
	position:relative;
}
.campana.staff .usuario {
    background: #E4EBB5;
}
.mensajes{
	padding: 12px 15px;
}
.mensajes a{
	color:#62862E;
	text-decoration:underline;
}
.mensajes a:hover{
	text-decoration:none;
}
.fecha{
	position:absolute;
	top:0;
	right:0;
}
#container-inside form{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	overflow:hidden;
	position:relative;
}
#container-inside label{
    display: block;
	margin-bottom:5px;
	text-align: left;
}
#container-inside input{
	margin-bottom:10px;
}
#container-inside input[type=text], #container-inside textarea, #container-inside select, #container-inside input[type=password], #container-inside input[type=number], #container-inside input[type=email], #container-inside input[type=file]{
	width:50%;
	border-radius:5px;
	padding:10px; 
	background: #FFF;
    border: none;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
}
#container-inside .cancelar{
	color:#FFF;
	background:#62862E;
	width:150px;
	border-radius:3px;
    border: none;
	padding:9px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
	float:left;
	margin-bottom:10px;
	clear:both;
	text-align:center;
}
#container-inside .action-button{
	color:#FFF;
	background:#62862E;
	display:block;
	width:150px;
	border-radius:3px;
	margin:auto;
    border: none;
	padding:10px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
	cursor:pointer;
	float:right;
}
#container-inside .control-label{
	background:#FA7618;
	color:#FFF;
	font-weight:bold;
	padding:5px 2px;
	font-size:1.1em;
	text-align: center;
}
.pregunta{
	padding:11px;
	border-radius:3px;
	background:#F9F9F9;
	margin-bottom:11px;
	border:solid 1px #e3e3e3;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);
}
.mitad{
	width: 49% !important;
}
#dia{
	width: 60px !important;
	margin-right:5px;
}
#mes{    
	width: 135px !important;
	margin-right:5px;
}
#anio{
	width: 97px !important;
}
#cabezote .col-md-12, #cabezote{
	width: 100%;
	padding: 0;
}
#contenidos{
	text-align: center;
	color: #000;
	font-size: 1.5em;
}
#contenidos .imagenA{
	height: 300px;
	width:300px;
	overflow:hidden;
	border-radius:50%;
	display:block;
	position:relative;
	margin:auto;
}
#contenidos .imagenA::after
{
    box-shadow: inset 0 0 0 15px rgba(255,255,255,.58);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: -1px;
    width: 100%;
    border-radius: 50%;
}
#contenidos .imagenA img{
    bottom: -100%;
    height: 100%;
    left: -100%;
    margin: auto;
    max-width: none;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
}
#contenidos h2{
	text-align: center;
	font-size: 1.6em;
}
#contenidos h3, #tips h3{
	color: #E12219;
	font-size: 1.1em;
}
@media(min-width: 48em){
	#contenidos .campos{
		padding: 2% 5%;
	}
	#contenidos .campos p, #tips .campos p{
		text-align: justify;
	}
	#contenidos h3, #tips h3{
		font-size: 1.2em;
	}
	.listado{
		font-size: 1.1em;
		display: flex;
		flex-direction: column;
	}
}
.listado img {
	border-radius: 3px;
}
.listado .link {
    float: none;
    text-align: center;
    margin: auto 0 20px 0;
    font-weight: bold;
    background: #007CC9;
    border-radius: 3px;
    color: #FFF;
	width: 100%;
}
.marquee0 div div,.marquee0 a,.marquee0 img{
	height: 100%;
}
.contenidoGeneral{
	background: #fff;
	position: relative;
	padding: 2% 0;
}
.flex{
    display: flex;
    flex-flow: wrap;
}
.thumbnail .img{
	display: block;
	max-height: 250px;
	overflow: hidden;
}
.fullwrap_moudle{
	position: relative;
	background: #FFF;
}

.contactenos{
	position: relative;
}
.contactenos h2{
	text-transform: uppercase;
    padding: 18px 2%;
    font-size: 2.3em;
    color: #FFF;
    font-weight: bold;
    width: 100%;
    height: 90px;
    position: absolute;
    top: -45px;
    left: 0;
	background: url(borde2.png) top left no-repeat;
	background-size: 100% 100%;
	text-align: left;
	z-index: 10;
}
.clientes{
	margin: auto;
	overflow: hidden;
	width: 90%;
    text-align: center;
}
.clientes a {
	display: inline-block;
}
.clientes img{
	max-height: 128px
}
.info-producto h2{
	color: #8B9092;
	font-size: 3em;
}
.info-producto p{
	line-height: 1.2em;
	color: #4c5758;
	font-size: 1.1em;
}
.info-producto h3{
	color: #4c5758;
	font-size: 1.3em;
	margin: 15px 0 0 0;
	font-weight: bold;
}
.info-producto .precio{
	border: none;
}
.info-producto .precio span{
	font:normal 3em 'Century Gothic', 'Didact Gothic', sans-serif;
	color: #CBAA44;
}
.info-producto .precio span#antes{
	text-decoration:line-through;
	font:normal 1.3em 'Century Gothic', 'Didact Gothic', sans-serif;
	color:#666;
	margin-right:6px;
}
.colors{
	width: 100%;
	overflow: hidden;
}
/*.color{
	width:40px; 
	float: left; 
	margin-right:8px; 
	height:40px;
	border-radius:50%;
}*/
.info-producto nav{
	overflow: hidden;
	width: 100%;
	margin-top: 35px;
}
.info-producto nav .cesta, .info-producto nav .cesta{
	text-align: center;
}
.info-producto nav .cesta a, .info-producto nav .back a{
	color:#FFF;
	background:#C9AF34;
	padding:15px 60px;
	text-decoration:none;
	transition:all .1s ease-in;
	display: inline-block
}
.info-producto nav .back a{
	background:#918E8A;
}
.info-producto nav .cesta a:hover{
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2) inset;
}
.formPaypal label{
	margin-bottom: 40px;
	padding: 0 8px;
}
.formPaypal input, .formPaypal select, .formPaypal textarea{
	border: none;
	border-bottom: solid 1px #4c5758;
	width: 100%;
	color: #959595;
	padding: 5px 0;
}
.formPaypal textarea{
	background-image: repeating-linear-gradient(#FFF,#FFF 30px,#4c5758 30px,#4c5758 31px,#FFF 31px);
	border-bottom: none;
	height: 124px;
}
.copyright{
    color:#FFF;
    text-align:center;
}
.total{
    display: inline-block;
}
#numero{
    color:#FFF;
    border-radius:50%;
    height:30px;
    width:30px;
    text-align:center;
    background:#D90111;
    padding: 4px;
}
.cabezote{
    position:relative;
    padding:2% 0;
    height:1200px;
    overflow:hidden;
    background-image: url(/imagenes/fondoCabezote.png);
    background-attachment: fixed;
}
.parallaxSeccion{
    position:absolute;
    top:0;
    left:0;
}
.parallaxCirculos{
    position:absolute;
    border-radius:50%;
    height: 19vw;
    width: 19vw;
    max-width:365px;
    max-height:365px;
    border:solid 5px #FFF;
    box-shadow:2px 2px 1px rgba(0,0,0,.3);
}
#circulo1{
    top:40px;
    left:7%;
    z-index:3;
}
#circulo4{
    top:40px;
    right:7%;
    z-index:3;
}
#circulo2{
    top:300px;
    left:3%;
    z-index:2;
}
#circulo5{
    top:300px;
    right:3%;
    z-index:2;
}
#circulo3{
    top:510px;
    left:9%;
    z-index:1;
}
#circulo6{
    top:510px;
    right:9%;
    z-index:1;
}
.parallaxFixed{
    position: fixed;
    right: 0;
    left: 0;
}
.row-fluid{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#content_wrap {
    width: 100%;
}
#servicios{
	font-size: 1.13em;
}
#ayuda h3{
	font-weight: bold;
	padding: 0 10%;
	color: #FFF;
	font-size: 2em;
}
@media (min-width: 1550px) {
  #contactos .container, .mapaNavegacion .container {
    max-width: 1170px;
  }
}
@media (min-width: 1880px) {
  #contactos .container, .mapaNavegacion .container {
    max-width: 1170px;
  }
}
.imagenA{
	display: block;
}
#servicios{
	background: #FFF;
	color: #474747;
	overflow: visible;
	z-index: 1;
}
#servicios::before, .mapa::before {
	position: relative;
	display: block;
	content: "";
	width: 100%;
	height: 78px;
	left: 0;
	background: url(../imagenes/linea.png) top left no-repeat;
	background-size: 100% 100%;
}
.textoServicio{
	width: 38%;
    position: relative;
    background: rgba(43, 115, 171, 0.8);
	margin: 5% 0 5% 5%;
    color: #fff;
    padding: 35px 11px;
	font-size: 1.2em;
}
#servicios h2{
	color: #FFF;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
}
#servicios h2 a{
	color: #474747;
}
#servicios .link{
	color: #FFF;
	font-size: 1.3em;
}
.display-flex{
    display: flex !important;
    flex-direction: column;
    height: 100%;
}
#blog h3{
	text-align: left;
}
#servicios .col-md-12, #blog .col-md-12, #p-destacados .col-md-12{
	padding: 0;
}
#p-destacados .imagenA{
	position: relative;
	display: block;
	overflow: hidden;
}
#p-destacados .imagenA img{
	transition: all 0.3s ease-in-out;
}
#blog .imagenA img{
    bottom: -100%;
    min-width: 100%;
	max-width: none;
    left: -100%;
    margin: auto;
    height: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
	transition: all 0.3s ease-in-out;
}
#p-destacados .imagenA:hover img, #blog .imagenA:hover img{
	transform: scale(1.05);
}
#servicios .texto{
	padding: 4%;
	border-top: solid 1px #FFF;
	width: 85%;
	margin: 6% auto 0;
	color: #000;
	font-size: 1.4em;
}
#servicios  h3 .link{
	margin-top: 0;
	color: #474747;
	padding: 0;
}
#blog h3 .link{
	color: #000;
	padding: 0;
	margin: 0;
}
#blog .ver-mas{
	font-weight: bold;
	color: #FFF;
	padding: 0;
	margin: 0;
	background: #444242;
}
#blog .ver-mas{
	font-size: 1.3em;
	margin: -11px 0 11px 0;
	padding: 3px 16px;
	position: relative;
}
#blog .col-md-2 .link{
	display: inline-block;
	font-size: 7.2em;
}
#blog{
	padding-bottom: 2%;
	text-align: center;
}
#blog .imagenA {
	position: relative;
	width: 100%;
	overflow: hidden;
    height: 21.8vw;
}
#blog .campos {
	text-align: justify;
	font-size: 1.2em;
	padding-left: 2%;
	line-height: 1.2em;
}
#p-destacados{
	background: #FFF;
	padding-bottom: 2%;
}
.contenidos > h2, .contenidoInterno h2{
	width: 100%;
	height: 78px;
	background: url(../imagenes/linea.png) top left no-repeat;
	background-size: 100% 100%;
	color: #FFF;
	font-size: 3.9em;
	margin-bottom: 2%;
	font-weight: bold;
	text-align: center;
}
#p-destacados .slick-slide > div{
	margin-bottom: 15px;
}
#p-destacados .campos p, #p-destacados .ver-mas{
	display: none;
}
#p-destacados h3{
	background: #444242;
	color: #FFF;
	text-align: center;
	margin-top: 11px;
}
#p-destacados h3 .link{
	margin: 0;
	color: inherit;
}
.multiply{
	mix-blend-mode: multiply;
}
#contactos{
	padding: 57px 0;
}
#videos .row-fluid{
	align-items: center;
}
#videos h2, #contactos h2{
	color: #FFF;
}
#ayuda h2, #texto2 h2{
	color: #1A5F59;
	font-size: 1.3em;
	margin-bottom: 25px;
}
#texto2 h2{
	color: #B29246;
}
#contactos{
    position:relative;
	background: #122A4E;
}
#contactos h2{
    text-align:center;
}
#contactos #cmdEnviar {
    width: auto;
    display: inline-block;
    color: #FFF;
    background: #00BFFF;
    cursor: pointer;
    padding: 11px 35px;
    text-transform: uppercase;
    border: none;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	opacity: .95;
}
.slider{
	position: relative;
}
.padding-bottom-60{
	padding-bottom: 60px;
}
.logoBarra {
    position: absolute;
    top: 1px;
    right: 0;
    opacity: 0;
}
.logoBarra img{
	height: 85px;
}
.mapaGoogle{
	padding: 2% 0;
	background: #EEE;
	position: relative;
}
.imagenBlog{
	display: block;
	position: relative;
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
    height: 14vw;
}
.imagenBlog img {
    bottom: -100%;
    height: auto;
    left: -100%;
    margin: auto;
    width: 100%;
    min-height: 100%;
    min-width: 100%;
    position: absolute;
    right: -100%;
    top: -100%;
}
.telefonos{
	background: #E34633;
	padding: 11px 0 11px;
	text-align: right;
}
.telefonos a{
	color: #FFF;
}
#parallax1{
	position: absolute;
	right: 40%;
	top: -400px;
	z-index: 10;
}
#parallax2{
	position: absolute;
	left: 30%;
	top: -400px;
	z-index: 10;
}
#videos{
	padding: 4% 0;
}
.barra-cotizar{
	background: #1B1B1B;
	padding: 6px 0;
}
.whatsapp{
	font-size: 2em;
	font-weight: bold;
}
.whatsapp a{
	color: #FFF;
}
.whatsapp img{
	vertical-align: middle;
}
.copy {
    text-align: left;
    margin-top: 20px;
    font-family: century gothic;
}
.volver{
	float: right;
	display: block;
	background: #0072B7;
	color: #FFF;
	padding: 9px 20px;
	margin: 20px 0;
	border-radius: 2px;
}
.volver:hover{
	color: #ebe30c;
}
.botonAsesoria{
    display:inline-block;
    padding:8px 15px;
    border-radius: 100px;
    color:#FFF;
    background:#176EB5;
    margin:20px 0;
    font-size:1.3em;
	transition: all 0.2s ease;
	box-shadow:1px 1px 2px rgba(0,0,0,.4);
}
.botonAsesoria:hover{
    background:#000;
    color:#FFF;
    text-decoration: none;
}
.epm{
	position: absolute;
	top: 38vw;
	right: 15%;
	opacity: .7;
}
.info-producto h2{
	height: auto;
	font-size: 3em;
	background: none;
	text-align: left;
	color: #0072B7;
	letter-spacing: -2px;
	line-height: 1em;
}
/* Wrapper */
.icon-button {
	background-color: white;
	border-radius: 3.6rem;
	cursor: pointer;
	display: inline-block;
	font-size: 2.0rem;
	height: 3.6rem;
	line-height: 3.6rem;
	margin: 0 5px;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
	width: 3.6rem;
}
/* Circle */
.icon-button span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 0;
}
.icon-button:hover span {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 3.6rem;
	margin: -1.8rem;
}
.instagram span {
	background-color: #e4405f;
}
.facebook span {
	background-color: #3B5998;
}

/* Icons */
.icon-button i {
	background: none;
	color: white;
	height: 3.6rem;
	left: 0;
	line-height: 3.6rem;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	width: 3.6rem;
	z-index: 10;
}
.icon-button .fa-instagram {
	color: #e4405f;
}
.icon-button .fa-facebook-f {
	color: #3B5998;
}
.icon-button:hover .fa-instagram,
.icon-button:hover .fa-facebook-f {
	color: white;
}
@media (max-width: 767px) {
	#servicios::before, .mapa::before {
		height: 39px;
	}
	.textoServicio {
		width: 100%;
		opacity: 0.8;
		margin-left: 0;
		margin-top: 0;
		font-size: 18px;
		color: #fff;
		padding: 5px;
	}
	.redes{
		line-height: 39px;
		position: static;
	}
	.menu .menu-ppal{
		display: none;
	}
	.menu-abierto .menu-ppal{
		display: block;
	}
	#servicios, #blog{
		padding-bottom: 5%;
	}
	#blog .slick-slide{
		display: block;
	}
	#servicios h2 {
		font-size: 2.2em;
		line-height: 1em;
	}
	#servicios h3 {
		font-size: 1.5em;
		min-height: none;
	}
	#servicios .imagenA{
		width: 100%;
		height: 90vw;
	}
	#servicios .categoria {
		margin-bottom: 20px;
	}
	#servicios .texto {
		padding: 4% 0 0;
		border-top: solid 1px #FFF;
		width: 100%;
		margin: 6% auto 0;
		font-size: 1.2em;
	}
	.slick-slide h3{
		margin-top: 0;
	}
	.slick-slide img{
		position: static;
		min-height: auto;
		width: 100%;
		height: auto;
	}
	#servicios .slick-slide {
		padding: 0;
	}
    #blog{
    	font-size: 1em;
    }
	#blog h2 {
    font-size: 3em;
}
	#blog .imagenA {
		height: 50vw;
	}
	#blog .campos {
		padding: 3% 0;
		font-size: 1.2em;
		position: static;
	}
	#blog h3 {
		font-size: 1.2em;
	}
	#p-destacados h2 {
		font-size: 2em;
	}
	.imagenBlog{
		height: auto;
		max-height: 50vw;
	}
	.imagenBlog img{
		position: static;
	}
	.logo br{
		display: none;
	}
	.principal{
		padding-top: 80px;
	}
	.linkHeader{
		margin-top: 0;
		font-size: .7em;
	}
	#video, #descripcion {
		float: none;
		width: 100%;
		padding: 0;
	}
	.clientes {
		width: auto;
		margin: 0 -15px;
	}
}
.col-2dot4,
.col-sm-2dot4,
.col-md-2dot4,
.col-lg-2dot4,
.col-xl-2dot4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
@media (min-width: 540px) {
    .col-sm-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 720px) {
    .col-md-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 960px) {
    .col-lg-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (min-width: 1140px) {
    .col-xl-2dot4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.div-header-left{
	width:33%;
	text-align:left;
}
.div-header-center{
	width:33%;
	text-align:center;
}
.div-header-right{
	width:33%;
	text-align:right;
}

@media only screen and (max-width: 670px) {
	.div-header-left{
		width:43%;
		text-align:left;
	}
	.div-header-center{
		width:14%;
		text-align:center;
	}
	.div-header-right{
		width:43%;
		text-align:right;
	}
	.icon-button {
		//display:none;
	}
	.sticky{
		height:105px;
	}
	.icon-button {
		height:2.5rem;
	}
	.icon-button i {
		line-height: 2.5rem;
	}
	.icon-button:hover span {
	}
}
