@charset "utf-8";


/*////// FUENTES ///////*/

@font-face {
	font-family: bebas;
	src: url("../fuentes/bebas.otf");
}

@font-face {
	font-family: open;
	src: url("../fuentes/opensans.ttf");
}


/*////// GENERAL ///////*/

html{
	scroll-behavior: smooth;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background: #f5f5f5;
	height: 100vh;
	font-family: sans-serif;
}

h2{
	color: #1f1f1f;
	font-family: bebas;
    font-weight: 400;
    font-style: normal;
}

a{
	border-radius: 10px;
	text-decoration: none;
	padding: 10px;
}

p{
	font-family: open;
}


/*////// CABECERA ///////*/

header{
	
	display: flex;
	justify-content: flex-start;
	align-items: center;	
	height: 68px;
	width: 100%;
	position: relative;
	z-index: 2;
/*	border-bottom: 1px solid #FFFFFF; */
	background-color:#1F1F1F;
}

header a{
	margin-left: 15px;	
}

header p{
	
	width: 75%;
	text-align: center;
	color:#3BB8E7;
	font-size: 16pt;
	font-family: "azo-sans-web", sans-serif;
	font-weight: 600;
    font-style: normal;
}

/*////// BARRA DE NAVEGACION ///////*/

.navigation{
	position: fixed;
	top: 8px;
	right: 20px;
	width: 120px;
	height: 60px;
	background: #1F1F1F;
	box-shadow: 0 20px 35px rgba(0,0,0,0.1);
	display: flex;
	justify-content: space-between;
	transition:  height 0.5s, width 0.5s, border 0.5s;
	transition-delay: 0s, 0.75s; 
	overflow: hidden;
	z-index: 3;
	border-radius: 10px;
/*	border: 2px solid #3BB8E7; */
}

.navigation.active{
	width: 312px;
	height: 525px;
	transition: width 0.5s, height 0.5s;
	transition-delay: 0s, 0.75s; 
	border: 2px solid #3BB8E7; 
}

.navigation .userBx{
	position: relative;
	width: 60px;
	height: 60px;
	background: #1F1F1F;
/*	border: 1px solid #3BB8E7; */
	display: flex;
	align-items: center;
	overflow: hidden;
	transition: 0.5s;
	transition-delay: 0.5s;
}

.navigation.active .userBx{
	width: calc(100% - 60px);
	transition-delay: 0s;
}

.navigation .userBx .username{
	white-space: nowrap;
	color: #3BB8E7;
	font-family: sans-serif;
    font-size: 10pt;
	
}

.navigation .userBx .imgBx{
	position: relative;
	min-width: 60px;	
	height: 60px;
/*	background: #00007B; */
	border-radius: 50%;
	border: 10px solid #1F1F1F;
	overflow: hidden;
		
}

.navigation .userBx .imgBx img{
	position: absolute;
	top: 1px;
    left: 7px;
    width: 65%;
    object-fit: cover;
}

.navigation .menuToggle {
	position: relative;
	width: 60px;
	height: 60px;
	
    cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navigation .menuToggle::before{
	content: '';
	position: absolute;
	width: 32px;
	height: 2px;
	background: #3BB8E7;
	transform: translateY(-10px);
	box-shadow: 0 10px #3BB8E7;
	transition: 0.5s;
}

.navigation .menuToggle::after{
	content: '';
	position: absolute;
	width: 32px;
	height: 2px;
	background: #3BB8E7;
	transform: translateY(10px);
	transition: 0.5s;
}

.navigation.active .menuToggle::before{
	transform: translateY(0px) rotate(45deg);
	box-shadow: 0 0px #555;
}

.navigation.active .menuToggle::after{
	transform: translateY(0px) rotate(-45deg);
}

.menu{
	position: absolute;
	width: 100%;
	height: calc(100% - 60px);
	margin-top: 57px;
	padding:12px;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.menu li{
	list-style: none;
	border-bottom: 1px dashed #3BB8E7 ;
}

.menu li a {
	display: flex;
	align-items: center;
	margin: 3px 0;
	text-decoration: none;
	color:#3BB8E7;
	padding: 10px;
}

.menu li a .contendorIconos{
	
	display: none;
	
	
}

.menu li a .contendorIconos img{
	
}

.menu li a:hover{
	
	color:#fff;
}

.logoIapsa_menu{
	height:70px;
	width: 90%;
	margin: 3px auto 0;
}

.logoIapsa_menu img{
	
	margin-left: 50px;
	margin-top: 15px;
}


/*////// ANCLASL ///////*/

.anclasomos{
	top: 31px;
	position: relative;
}

.anclaproyectos{
	top: 2px;
	position: relative;
}


/*////// SLIDER PRINCIPAL tb ///////*/

.contendorslidertb{
	display: none;
	width: 100%;
	height: 1024px;
	overflow: hidden;
}

@keyframes slidertb{
	
	0%{margin-left: 0;}
	20%{margin-left: 0;}
	
	25%{margin-left: -100%;}
	45%{margin-left: -100%;}
	
	50%{margin-left: -200%;}
	70%{margin-left: -200%;}
	
	75%{margin-left: -300%;}
	100%{margin-left: -300%;}
}






/*////// SLIDER PRINCIPAL ///////*/

.contenedor{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	margin-bottom: 20px;
}

.contenedor .columna{
	
	width: 25%;
	height: 100%;
	float: left;
	border-right: 2px solid rgba(0,0,0,.2);
	box-sizing: border-box;
	z-index: 1;
	
}

.contenedor .columna:last-child{
	border-right: none;
} 

.contenedor .columna .contenido{
	
	position: relative;
	height: 100%;
}

 /* .contenedor .columna .contenido h1{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	background: rgba(0,0,0,.1);
	text-align: center;
	margin: 0;
	padding: 0;
	color: rgba(0,0,0,.2);
	font-size: 15em;
	border-top: 2px solid rgba(0,0,0,.5);
	border-bottom: 2px solid rgba(0,0,0,.5);
} */

.contenedor .columna .contenido .box{
	position: absolute;
	top: 50%;
	transform: translateY(100%);
	box-sizing: border-box;
	padding: 40px 10px; 
    background: rgba(31,31,31,.6); 
    border: 1px solid #3BB8E7; 
	transition: 0.5s;
	opacity: 0;
	border-radius: 15px;
	
}

.contenedor .columna.active .contenido .box{
	opacity: 1;
	transform: translateY(-50%);
}

.contenedor .columna .contenido .box h2{
	margin: 0;
	padding: 0;
	font-size: 30pt;
	color:#fff;
	margin-bottom: 5px;
/*	text-shadow: 5px 4px 2px #000;
	font-family: "azo-sans-web", sans-serif; */
    
}

.contenedor .columna .contenido .box p{
	font-size: 15pt;
/*	color:#3BB8E7; */
	color:#fff;
/*	text-shadow: 5px 4px 2px #000; */
}

.contenedor .columna .contenido .box .btn_box{
	display: flex;
	margin-top: 25px;
}

.contenedor .columna .contenido .box .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.contenedor .columna .contenido .box .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}

.contenedor .columna .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
   
}

.contenedor .columna.active .bg.bg1{
	background: url("../imagenes/prueba_slide.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	transition: 0.5s

}

.contenedor .columna.active .bg.bg2{
	background: url("../imagenes/proyectos_automatizacion_industrial_sistemas_combustion.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	transition: 0.5s

}

.contenedor .columna.active .bg.bg3{
    background: url("../imagenes/seccion_balltur.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    transition: 0.5s
}

.contenedor .columna.active .bg.bg4{
	background: url("../imagenes/seccion_honewell.jpg");
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	transition: 0.5s

}



/*////// VDO CORPORATIVO ///////*/


.contIapsalogo{
	
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100%;
	display: flex;
	justify-content:center;
	
}

.seccionfondo2{
	height: 770px;
	width: 100%;
	background: url("../imagenes/fondo_vdo.jpg");
	background-size: cover;
	position: relative;
	z-index: 2;
	margin-top: -88px;
	display: flex;
	flex-direction: column;
	
}

.seccionfondo2 h2{
	color: #3BB8E7;
	margin-bottom: 26px;
}

.vdo_iapsa{
	margin-top: 18px;
	margin-bottom: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	
	
}

.vdoIapsa{
	aspect-ratio: 16 / 9;
	width: 740px;
	
	margin-top: 100px;
	border-radius: 30px;
	border: solid 1px #fff;
	box-shadow: rgba(0, 0, 0, 0.6) 5px 15px 8px;
}



/*////// DISTRIBUCION ///////*/


.Contenedor_disgeneral{
	width: 100%;
	height: auto;
	min-height: 450px;
	display: flex;
	background: #1a252c; 
	flex-direction: column;
    align-items: center;
}

.Contenedor_disgeneral h2{
	color: #fff;
	padding: 40px;
	text-align: center;
}

.Contenedor_dis{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 769px;
	height: auto;
	gap: 24px;
	padding: 5px;

/*	transform-style: preserve-3d; */
}

.Contenedor_dis .caja_dis{
	position: relative;
	width: 130px;
	height: 130px;
	transition: 0.5s;
	-webkit-box-reflect: below 1px linear-gradient(transparent, #0002);
	background: #fff; 
}

.Contenedor_dis .caja_dis img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.Contenedor_dis:hover > :not(:hover){
	margin: 0 -20px;
	filter: drop-shadow(0 0 25px #000) drop-shadow(0 0 45px #000);
	transform: perspective(500px) rotateY(45deg) scale(0.95)
}

 .Contenedor_dis .caja_dis:hover ~ .caja_dis{
	transform: perspective(500px) rotateY(-45deg) scale(0.95)
}

.Contenedor_dis .caja_dis:hover {
	transform: perspective(500px) rotateY(0) scale(1.4);
	z-index: 1000;
		
} 


/*////// SLIDER ENESTAS ///////*/
 
.contenenestas{
	
	width: 100%;
	height: 336px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 6px 8px;
	margin-bottom: 50px;
	background: url("../imagenes/estacion_fija_enestas.jpg");
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.cajatxtenestas{
	
	width: 60%;
	height: auto;
	padding: 15px;
	
}

.cajatxtenestas p{
	font-weight: 600;
}

.cajatxtenestas a{
	font-weight: 600;
}

.btnenestas a:hover{
	background:#2A3F66;
	color: #94b622;
	border: solid 2px #94b622;
}

.cajatxtenestas img{
	background: rgba(255,255,255,.6);
	padding: 10px;
	border-radius: 30px;
	margin-bottom: 10px;
	width: 20%;
}

 #glass{
	background-color: rgba(243,243,243,0.2);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
} 

.btnenestas{
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.btnenestas a{
	background: #94b622;
}


/*////// PROYECTOS ///////*/

.fondoCurso{
	height: auto;
	
}

.fondoCurso h2{
	text-align: center;
	
}

.contTarjetaCurso{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 100px 102px;
	padding: 40px 50px 100px;
		
}

.contTarjetaCurso .tarjetaCurso{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 295px;
	height: 205px;
	background: #fff;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 12px 15px;
	transition: 0.5s;
	
}

.contTarjetaCurso .tarjetaCurso:hover{
	height: 350px;
}

.contTarjetaCurso .tarjetaCurso .tarjetaCursoImgbx{
	position: absolute;
	top: 6px;
	width: 275px;
	height: 193px;
	background: #333;
	border-radius: 12px;
	transition: 0.5s;
	overflow: hidden;
}

.contTarjetaCurso .tarjetaCurso:hover .tarjetaCursoImgbx{
	
	top: -100px;
	scale: 0.75;
	box-shadow: 0 12px 15px rgba(0,0,0,0.5);
}

.contTarjetaCurso .tarjetaCurso .tarjetaCursoImgbx img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	
}

.contTarjetaCurso .tarjetaCurso .TarjetaCursoContenido{
	position: absolute;
	top: 220px;
	width: 100%;
	padding: 0 30px;
	height: 36px;
	overflow: hidden;
	text-align: center;
	transition: 0.5s;
	
}

.contTarjetaCurso .tarjetaCurso:hover .TarjetaCursoContenido{
	top: 85px;
	height: 260px;
}

.contTarjetaCurso .tarjetaCurso .TarjetaCursoContenido h3{
	
	font-family: bebas;
    font-weight: 400;
    font-style: normal;
	font-size: 16pt;
}

.contTarjetaCurso .tarjetaCurso .TarjetaCursoContenido p{
	color:#333;
	margin-top: 13px;
	font-size: 10.5pt;
}

.contTarjetaCurso .tarjetaCurso .TarjetaCursoContenido .btn_galeria {
	position: relative;
	top: 15px;
	display: inline-block;
	padding: 5px 25px;
	background: #03a9f4;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	width: 150px;
	height: 30px;
	cursor: pointer;
}



/*////// SLIDER PRODUCTOS ///////*/

.contendorsliderpro{
	display: block;
	width: 100%;
	height: 450px;
	overflow: hidden;
}

@keyframes sliderpro{
	
	0%{margin-left: 0;}
	33%{margin-left: 0%;}
	
	40%{margin-left: -100%;}
	66%{margin-left: -100%;}
	
	73%{margin-left: -200%;}
	100%{margin-left: -200%;}
	
	
	
	
}

.cajasliderpro{
	display: flex;
	animation: sliderpro 30s infinite alternate; 
	animation-timing-function: linear; 
	width: 300%;
	
}

.sliderimgpro1{
	width: 100%;
	height: 450px;
	background: url("../imagenes/slider_productos_seitron.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #000000;
}	
	
.sliderimgpro1 .txtpro{

	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	
	margin-left: 20px;
	}
	
.sliderimgpro1 .txtpro h2{
	color:#fff;
}

.sliderimgpro1 p{
	
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgpro1 .btnseintron{
	display: flex;
	margin-top: 25px;
}

.sliderimgpro1 .btnseintron a{
	color: #fff;
	background: #51758b;
	
}

.sliderimgpro1 .btnseintron a:hover{
	background: none;
    color: #fff;
    border: 2px solid #51758b;
	
}

.sliderimgpro2{
	width: 100%;
	height: 450px;
	background: url("../imagenes/slider_productos_baltur.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #000000;
}
	
.sliderimgpro2 .txtpro{

	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	margin-left: 20px;
	}
	
.sliderimgpro2 .txtpro h2{
	color:#fff;
}

.sliderimgpro2 p{
	
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgpro2 .btnbaltur{
	display: flex;
	margin-top: 25px;
}

.sliderimgpro2 .btnbaltur a{
	color: #fff;
	background: #E30613;
	
}

.sliderimgpro2 .btnbaltur a:hover{
	background: none;
    color: #fff;
    border: 2px solid #E30613;
	
}
		
.sliderimgpro3{
	width: 100%;
	height: 450px;
	background: url("../imagenes/slider_productos_comainsa.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030001;
}	
	
.sliderimgpro3 .txtpro{

	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	
	margin-left: 20px;
	}
	
.sliderimgpro3 .txtpro h2{
	color:#000;
}

.sliderimgpro3 p{
	
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
	
}

.sliderimgpro3 .btnnexus{
	display: flex;
	margin-top: 25px;
}

.sliderimgpro3 .btnnexus a{
	color: #fff;
	background: #bf1d2a;
	
}

.sliderimgpro3 .btnnexus a:hover{
	background: none;
    color: #000;
    border: 2px solid #bf1d2a;
	
}
	
.sliderimgpro4{
	width: 100%;
	height: 450px;
	background: url("../imagenes/slider_productos_comainsa.jpg");
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030001;
}	
	
.sliderimgpro4 .txtpro{

	width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	
	margin-left: 20px;
	}
	
.sliderimgpro4 .txtpro h2{
	color:#fff;
}

.sliderimgpro4 p{
	
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgpro3 .btnseintron{
	display: flex;
	margin-top: 25px;
}

.sliderimgpro3 .btnseintron a{
	color: #fff;
	background: #51758b;
	
}

.sliderimgpro3 .btnseintron a:hover{
	background: none;
    color: #fff;
    border: 2px solid #51758b;
	
}


.paginacion{
	position: relative;
    bottom: 45px;
    left: 45%;
    display: flex;
    width: 103px;
    justify-content: space-between;
	z-index: 10;
}

.paginacion .item_paginacion{
	background: #000;
	width: 15px;
	height: 15px;
	border-radius: 15px;
	cursor: pointer;
	border: 1px solid #fff;
	
}

.item_paginacion:hover{
	background: #fff;
}

input[id="ct1"]:checked ~ .cajasliderpro{
	animation: none;
	transform: translateX(0%);
}

input[id="ct1"]:checked ~ .paginacion .item_paginacion[for="ct1"] {
	background: #fff;
}

input[id="ct2"]:checked ~ .cajasliderpro{
	animation: none;
	transform: translateX(-33%);
}

input[id="ct2"]:checked ~ .paginacion .item_paginacion[for="ct2"] {
	background: #fff;
}

input[id="ct3"]:checked ~ .cajasliderpro{
	animation: none;
	transform: translateX(-66.7%);
}

input[id="ct3"]:checked ~ .paginacion .item_paginacion[for="ct3"] {
	background: #fff;
}

input[id="ct4"]:checked ~ .cajasliderpro{
	animation: none;
	transform: translateX(-75%);
}

input[id="ct4"]:checked ~ .paginacion .item_paginacion[for="ct4"] {
	background: #fff;
}




.btnControles{
	position:relative;
	left: 45%;
/*	bottom: -2642px; */
	z-index: 50;
	margin-top: -87px;
}


.btnControles .btncambios{
		background: #000;
		width: 15px;
		height: 15px;
		border-radius: 15px;
		display: inline-block;
		margin: 12px;
	    border: solid 1px #fff;
	}

/*////// TESTIMONIOS ///////*/

.seccionTestimonio{
	width: 100%;
	margin-top: 100px;
	margin-bottom: 60px;
}

.seccionTestimonio h2{
	text-align: center;
}

.tarjetaTestimonio{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 30px;
	height: auto;
}

.tarjetaTestimonio .cajaTarjeta{
	position: relative;
	padding:  80px 40px 40px;
	transition: 0.5s;
	text-align: center;
	background: #fff;
	width: 500px;
	height: 270px;
	border-radius: 15px;
	margin:30px 40px 70px; 
	box-shadow: 9px 4px 15px 2px rgba(0,0,0,0.3);
}

.tarjetaTestimonio .cajaTarjeta:hover{
	background: #ff0054;
}

.tarjetaTestimonio .cajaTarjeta p{
	margin: 0;
	padding: 0;
	transition: 0.5s;
	font-size: 11pt;
}

.tarjetaTestimonio .cajaTarjeta h4{
	margin: 20px 0 0;
	padding: 0;
	transition: 0.5s;
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #ff0054;
}

.tarjetaTestimonio .cajaTarjeta h4 span{
	font-weight: 600;
	font-size: 14px;
	transition: 0.5s;
	color: #c5c5c5;
}

.tarjetaTestimonio .cajaTarjeta:hover p,
.tarjetaTestimonio .cajaTarjeta:hover h4,
.tarjetaTestimonio .cajaTarjeta:hover h4 span{
	
	color:#fff;
}

.tarjetaTestimonio .cajaTarjeta .imgTarjeta{
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #000;
}

.tarjetaTestimonio .cajaTarjeta:before{
	content: '';
	position: absolute;
	top: 36px;
	right: 40px;
	width: 40px;
	height: 40px;
	background: url("../imagenes/comillas.png");
	background-size: cover;
	opacity: 0.05;
	pointer-events: none;
	transition: 0.5s;
}

.tarjetaTestimonio .cajaTarjeta:hover:before{
	transform: translateY(-60px);
	opacity: 1;
}

.tarjetaTestimonio .cajaTarjeta:after{
	content: '';
	position: absolute;
	bottom: 36px;
	left: 40px;
	width: 40px;
	height: 40px;
	background: url("../imagenes/comillas.png");
	background-size: cover;
	opacity: 0.05;
	pointer-events: none;
	transition: 0.5s;
	transform: rotate(180deg)translateY(0px);
}

.tarjetaTestimonio .cajaTarjeta:hover:after{
	transform: rotate(180deg)translateY(-60px);
	opacity: 1;
}


/*////// LOGO PATROCINIO ///////*/

.logo_patrocinio{
	width: 60%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
}

/*////// BANNER MARCAS ///////*/

.slideMarcas{
	
	width: 50%;
    height: 134px;
    margin: 40px auto 50px;
    overflow: hidden;
}

.contenedor_logos{
	
	display: flex;
	justify-content: center;
	align-items: center;
	animation: scroll 30s linear infinite;
	margin: auto;
	width: calc(234px * 40);
}

.cuadro_logos{
	width: 234px;
	height: 88px;
	border-radius: 10px;;
	margin: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 7px 10px 15px 1px rgba(0,0,0,0.1);
/*	background: #fff; */
}

@keyframes scroll {
	
	0%{
		transform: translatex(0);
	}
	
	100%{
		transform: translatex(calc(-234px * 20));
	}
}


/*////// PIE DE PAGINA ///////*/


footer{
	width: 100%;
	height: auto;
	border: 1px solid #000000;
	background-color: #1F1F1F;
	position: sticky;
	top: 100%;
}

footer p{
	color: #3BB8E7;
	text-align: center;
	padding: 10px 0;
}

.btnAvisoP a{
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.btnAvisoP{
	width: 100%;
	display: flex;
	justify-content: center;
}

.redesIapsa{
	display: flex;
	justify-content: center;

}

.redesIapsa a{
	
	padding: 1px;
	margin-top: 15px;
	margin-right: 17px;
	width: 36px;
	height: 34px;
	display: flex;
	justify-content: center;
		
}

.redesIapsa img{
	margin: 0 10px;
}

footer img{
	margin-left: 3px;
}

.btnWhatsapp{
	
	right: 0px;
	position: fixed;
	bottom: 15px;
	z-index: 4;
}




/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width:768px){
	
/*////// CABECERA ///////*/

header{
	height: 80px;
	
}
	

	
/*////// BARRA DE NAVEGACION ///////*/

.navigation.active{
	height: 530px;
	
}



/*////// SLIDER PRINCIPAL tb ///////*/

.contendorslidertb{
	display: block;
	width: 100%;
	height: 850px;
	overflow: hidden; 
	
}

.cajaslidertb{
	display: flex;
	animation: slidertb 20s infinite alternate; 
	animation-timing-function: linear; 
	width: 400%;
	
}

.sliderimgtb1{
	width: 100%;
	height: 850px;
	background: url("../imagenes/img_tb/servicios_mantenimiento_sistemas_combustion_tb.jpg");
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}	
	
.sliderimgtb1 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	background: rgba(31,31,31,.5); 
	}
	
.sliderimgtb1 .txttb h2{
	
	font-size: 40pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
	
}

.sliderimgtb1 p{
	font-size: 15pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb1 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb1 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb1 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}

	
.sliderimgtb2{
	width: 100%;
	height: 850px;
	background: url("../imagenes/img_tb/proyectos_automatizacion_industrial_sistemas_combustion_tb.jpg");
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
	
.sliderimgtb2 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	background: rgba(31,31,31,.5); 
	}
	
.sliderimgtb2 .txttb h2{
	
	font-size: 40pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
	
}

.sliderimgtb2 p{
	font-size: 15pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb2 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb2 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb2 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}	
	
	
.sliderimgtb3{
	width: 100%;
	height: 850px;;
	background: url("../imagenes/img_tb/equipo_nexustb.jpg");
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
		
.sliderimgtb3 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	background: rgba(31,31,31,.5); 
	}
	
.sliderimgtb3 .txttb h2{
	
	
	font-size: 40pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
	
}

.sliderimgtb3 p{
	font-size: 15pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb3 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb3 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb3 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}	
	
	
.sliderimgtb4{
	width: 100%;
	height: 850px;
	background: url("../imagenes/img_tb/refaccionestb.jpg");
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}	
	
.sliderimgtb4 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 20px;
	background: rgba(31,31,31,.5); 
	}
	
.sliderimgtb4 .txttb h2{
	
	
	font-size: 40pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
	
}

.sliderimgtb4 p{
	font-size: 15pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb4 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb4 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb4 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}	
	
	
input[id="bt1"]:checked ~ .cajaslidertb{
	animation: none;
	transform: translateX(0%);
}

input[id="bt1"]:checked ~ .paginacion .item_paginacion[for="bt1"] {
	background: #fff;
}

input[id="bt2"]:checked ~ .cajaslidertb{
	animation: none;
	transform: translateX(-25%);
}

input[id="bt2"]:checked ~ .paginacion .item_paginacion[for="bt2"] {
	background: #fff;
}

input[id="bt3"]:checked ~ .cajaslidertb{
	animation: none;
	transform: translateX(-50%);
}

input[id="bt3"]:checked ~ .paginacion .item_paginacion[for="bt3"] {
	background: #fff;
}

input[id="bt4"]:checked ~ .cajaslidertb{
	animation: none;
	transform: translateX(-75%);
}

input[id="bt4"]:checked ~ .paginacion .item_paginacion[for="bt4"] {
	background: #fff;
}	
	
	
/*////// SLIDER PRINCIPAL ///////*/

.contenedor{
	display: none;
}



/*////// VDO CORPORATIVO ///////*/
	
	
.seccionfondo2{
	width: 100%;
	height: 1024px;
	background: url("../imagenes/img_tb/fondo_vdo_tb.jpg");
	background-size:cover;
	margin-top: 0px;

}	
	
.vdo_iapsa{
	
	width: 90%;
	height: 480px;
	margin: 10px auto;
	
	}	
	
/*////// DISTRIBUCION ///////*/


.Contenedor_dis{
	
	width: 481px;
	margin-bottom: 20px;

/*	transform-style: preserve-3d; */
}

.Contenedor_dis .caja_dis{
	margin: 20px;
	width: 220px;
	height: 220px;
	transition: none;
	-webkit-box-reflect: below 0px linear-gradient(transparent, #0000);
}

.Contenedor_dis:hover > :not(:hover){
	margin: 0px;
	filter: none;
	transform: perspective(0px) rotateY(0deg) scale(1)
}

.Contenedor_dis .caja_dis:hover ~ .caja_dis{
	transform: perspective(0px) rotateY(0deg) scale(1)
}

.Contenedor_dis .caja_dis:hover {
	transform: perspective(0px) rotateY(0) scale(1);
	
		
} 	
	
	
		
/*////// PROYECTOS ///////*/
	
.contTarjetaCurso{
		
		
	}
	
.contTarjetaCurso .tarjetaCurso{
		margin: 10px 15px 100px;
	}
	
.contTarjetaCurso .tarjetaCurso:hover .TarjetaCursoContenido{
	
	top:50px;
	height: 400px;
}	
	
.contTarjetaCurso .tarjetaCurso:hover .tarjetaCursoImgbx{
	
	top: -140px;
	
}
	
	
	
/*////// SLIDER PRODUCTOS ///////*/

.contendorsliderpro{
	display: block;
	width: 100%;
	height: 1024px;
	overflow: hidden;
}

.sliderimgpro1{
	
	height: 1024px;
	background: url("../imagenes/img_tb/analizador_de_gases_seitron_tb.jpg");
	
}	
	
.sliderimgpro1 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	}
	
.sliderimgpro2{
	
	height: 1024px;
	background: url("../imagenes/img_tb/slider_baltur_productos_tb.jpg");
}
	
.sliderimgpro2 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	}
	
.sliderimgpro3{
	
	height: 1024px;
	background: url("../imagenes/img_tb/slider_comainsa_productos_tb.jpg");
}	
	
.sliderimgpro3 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	}
	
.sliderimgpro4{
	height: 1024px;
	background: url("../imagenes/img_tb/slider_comainsa_productos_tb.jpg");
}	
	
.sliderimgpro4 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	}
	
	
	
	
	
/*////// SLIDER ENESTAS ///////*/
 
.contenenestas{
	
	width: 100%;
	height: 1024px;
	background: url("../imagenes/img_tb/banner_enestas_tb.jpg");
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	
}
	
.cajatxtenestas{
	width: 90%;
	margin-top: 100px;
	
	}	
	
}

/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
/*////// CABECERA ///////*/

header{
	height: 80px;
	
}

header a{
	
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70%;
	margin-left: 0px;
	
}
	
header a img{
		width: 88%;
	}	
		
	
/*////// BARRA DE NAVEGACION ///////*/
	
.navigation{
	width: 60px;
	
}	
	
.navigation.active{
	width: 170px;
	height: 532px;
	
}
	
.navigation .userBx {
	width: 13px;
			
}
	
.navigation .userBx .username {
		display: none;
	}	
	
.menu li   {
	border-bottom: none;
	display: flex;
	justify-content: space-between;
	}	
	
.menu li a  {
	
	margin: 0px;
	padding: 4px;
	
	}	
		
.menu li a p {
	
	font-size: 9pt;
	}	
	
.menu li a .contendorIconos{
	
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	
}	
	
	
/*////// SLIDER PRINCIPAL ///////*/

.contenedor{
	display: none;
}	
	
	
/*////// SLIDER PRINCIPAL movil ///////*/

.contendorslidertb{
	display: block;
	width: 100%;
	height: 720px;
	overflow: hidden; 
	
}

.cajaslidertb{
	display: flex;
	animation: slidertb 20s infinite alternate; 
	animation-timing-function: linear; 
	width: 400%;
	
}

.sliderimgtb1{
	width: 100%;
	height: 723px;
	background: url("../imagenes/img_mo/servicios_mantenimiento_sistemas_combustion_mv.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
	
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}	
	
.sliderimgtb1 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 16px;
/*	background: rgba(31,31,31,.5); */
/*	background-image: linear-gradient(  rgba(31,31,31,.5) 30%, black 60%, black ); */
	
	}
	
.sliderimgtb1 .txttb h2{
	
	font-size: 30pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	
	
}

.sliderimgtb1 p{
	font-size: 13pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb1 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb1 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb1 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}

	
.sliderimgtb2{
	width: 100%;
	height: 723px;
	background: url("../imagenes/img_mo/proyectos_automatizacion_industrial_sistemas_combustion_mv.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
	
.sliderimgtb2 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 16px;
/*	background: rgba(31,31,31,.5); */
	background-image: linear-gradient(  rgba(31,31,31,.5) 20%, black 60%, black );
	}
	
.sliderimgtb2 .txttb h2{
	
	
	font-size: 30pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	
	
}

.sliderimgtb2 p{
	font-size: 13pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb2 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb2 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb2 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}	
	
	
.sliderimgtb3{
	width: 100%;
	height: 723px;;
	background: url("../imagenes/img_mo/equipo_nexus_mv.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
		
.sliderimgtb3 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 16px;
/*	background: rgba(31,31,31,.5); */
	background-image: linear-gradient(  rgba(31,31,31,.5) 30%, black 60%, black );
	}
	
.sliderimgtb3 .txttb h2{
	
	
	font-size: 30pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	
}

.sliderimgtb3 p{
	font-size: 13pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb3 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb3 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb3 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}	
		
.sliderimgtb4{
	width: 100%;
	height: 723px;
	background: url("../imagenes/img_mo/refacciones_mv.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}	
	
.sliderimgtb4 .txttb{

	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	height: auto;
	margin-bottom: 16px;
/*	background: rgba(31,31,31,.5); */
	background-image: linear-gradient(  rgba(31,31,31,.5) 30%, black 60%, black );
	}
	
.sliderimgtb4 .txttb h2{
	
	
	font-size: 30pt;
	color:#fff;
	margin-bottom: 5px;
	text-shadow: 5px 4px 2px #000;
	
}

.sliderimgtb4 p{
	font-size: 13pt;
/*	color:#3BB8E7; */
	color:#fff;
	text-shadow: 5px 4px 2px #000;
}

.sliderimgtb4 .btn_box{
	display: flex;
	margin-top: 25px;
}

.sliderimgtb4 .btn_box a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	background: #1F1F1F;
	
}

.sliderimgtb4 .btn_box a:hover{
	color: #000;
	background: #3BB8E7;
	
	
}		
		

/*////// VDO CORPORATIVO ///////*/
	
	
.seccionfondo2{
	width: 100%;
	height: 726px;
	background: url("../imagenes/img_mo/fondo_vdo_mo.jpg");
	background-size:cover;
	margin-top: 0px;

}	
	
.vdo_iapsa{
	
	width: 90%;
	margin: 10px auto;
	
	}		
	
.vdoIapsa {
    aspect-ratio: 16 / 9;
    width: 740px;
    margin-top: 100px;
    border-radius: 10px;
    border: solid 1px #fff;
	box-shadow: rgba(0, 0, 0, 0.6) 5px 15px 8px;
	}	
	
	
/*////// DISTRIBUCION ///////*/


.Contenedor_dis{
	
	width: 272px;
	margin-bottom: 20px;
	

/*	transform-style: preserve-3d; */
}

.Contenedor_dis .caja_dis{
	margin: 20px;
	width: 220px;
	height: 220px;
	transition: none;
	-webkit-box-reflect: below 0px linear-gradient(transparent, #0000);
}

.Contenedor_dis:hover > :not(:hover){
	margin: 0px;
	filter: none;
	transform: perspective(0px) rotateY(0deg) scale(1)
}

.Contenedor_dis .caja_dis:hover ~ .caja_dis{
	transform: perspective(0px) rotateY(0deg) scale(1)
}

.Contenedor_dis .caja_dis:hover {
	transform: perspective(0px) rotateY(0) scale(1);
	
		
} 		
	
	
/*////// PROYECTOS ///////*/	
	
.contTarjetaCurso {
	
	padding: 40px 20px 100px;
	}	
	
.contTarjetaCurso .tarjetaCurso{
		width: 270px;
	}	
			
.contTarjetaCurso .tarjetaCurso .tarjetaCursoImgbx{
		width: 245px;
		height: 190px;
	}
	
.contTarjetaCurso .tarjetaCurso:hover .TarjetaCursoContenido{
	
	top:60px;
	height: 400px;
}	
	
.contTarjetaCurso .tarjetaCurso:hover .tarjetaCursoImgbx{
	
	top: -140px;
	
}	
	
.tarjetaTestimonio .cajaTarjeta{
		height: auto;
	}
	
			
/*////// SLIDER PRODUCTOS ///////*/
	
.contendorsliderpro{
	display: block;
	width: 100%;
	height: 780px;
	overflow: hidden;
}

.sliderimgpro1{
	
	height: 785px;
	background: url("../imagenes/img_mo/slider_seitron_productos_mo.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
	
}	
	
.sliderimgpro1 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	height: 680px;
	}
	
.sliderimgpro2{
	
	height: 785px;
	background: url("../imagenes/img_mo/slider_baltur_productos_mo.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
}
	
.sliderimgpro2 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	height: 680px;
	}
	
.sliderimgpro3{
	
	height: 785px;
	background: url("../imagenes/img_mo/slider__refaccion_productos_mo.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
}	
	
.sliderimgpro3 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	height: 680px;
	}
	
.sliderimgpro3 .txtpro h2{
	color:#fff;
}

.sliderimgpro3 p{
	
/*	color:#3BB8E7; */
	color:#fff;
	
}
	
.sliderimgpro4{
	height: 785px;
	background: url("../imagenes/img_mo/slider__refaccion_productos_mo.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #000;
}	
	
.sliderimgpro4 .txtpro{

	width: 90%;
    justify-content: flex-end;
    margin-left: 5px;
	height: 680px;
	}	

/*////// SLIDER ENESTAS ///////*/
 
.contenenestas{
	
	width: 100%;
	height: 810px;
	background: url("../imagenes/img_mo/banner_enestas_mv.jpg");
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	
}
	
.cajatxtenestas{
	width: 90%;
	margin-top: 100px;
	
	}		
	
.cajatxtenestas img{
		width: 100%;
	}
	
}
