@charset "utf-8";
/* CSS Document */

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

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

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



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

body{
	background: #f5f5f5;
	background: url("../imagenes/fondo_servicios_generales.jpg");
	background-attachment: fixed;
	background-position: center;
	height: 100vh;
	color: #005461;
}

h1{
	font-size: 40pt;
	color:#fff;
	font-family: bebas;
    font-weight: 400;
    font-style: normal;
	width: 100%;
}

h2{
	font-family: bebas;
    font-weight: 400;
    font-style: normal;
	font-size: 18pt;
	width: 100%;
}

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

h4{
	
	font-size: 15pt;
	font-family: bebas;
    font-weight: 400;
    font-style: normal;
}

p{
	font-family:open;
	font-weight:500;
	width: 100%;
}

a{
	border-radius: 10px;
	text-decoration: none;
	padding: 7px;
	font-family: sans-serif;
    
}


/*////// 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: 20;
	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;
}


/*////// SLIDERS ///////*/

@keyframes sliderp{
	
	0%{margin-left: 0;}
	15%{margin-left: 0;}
	
	20%{margin-left: -100%;}
	35%{margin-left: -100%;}
	
	40%{margin-left: -200%;}
	55%{margin-left: -200%;}
	
	60%{margin-left: -300%;}
	75%{margin-left: -300%;}
	
	80%{margin-left: -400%;}
	100%{margin-left: -400%;}
}

.cajasliderp{
	width: 100%;
	height: 450px;
	margin: auto;
	overflow: hidden;
	
}

.cajasliderp ul{
	padding: 0;
	display: flex;
	width: 500%;
	animation: sliderp 20s infinite alternate; 
	animation-timing-function: linear; 
}

.cajasliderp li{
	width: 100%;
	list-style: none;
}

.cajasliderp li img{
	width: 100%;
}


/*////// 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{
	
	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;	
}

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

.ContsliderPrincipal{
    width: 100%;
	height: 382px;
	border-bottom:1px solid #000;
	background: url("../imagenes/b_servicio_calentador.jpg");
	background-color: #197acf;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position:  top right;
}

.txtprincipal{
	
	
	width: 50%;
	height: 380px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 20px;;
	
}


/*////// DESCRIPCIONES ///////*/


.ContsdesCaldera{
	width: 100%;
	height:280px;
	margin-bottom:30px;
	display: flex;
	justify-content: center;
	
	

}

.txtdesCaldera{
		
	width: 60%;
	color: #005461;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 20px;
}

.txtfondo2 h2{
	
	width: 100%;
		
}

.txtfondo2 h3{
	
	width: 100%;
	text-align: left;
	
}

.txtfondo2 h4{
	
	width: 100%;
	text-align: left;
	
}

.txtfondo2 p {
	
	width: 100%;
	
}

/*////// SLIDER CALENTADOR TERMICO  ///////*/

.contendorsliderpro{
	display: block;
	width: 100%;
/*	height: 100vh; */
	overflow: hidden;

}

.contendorsliderpro .txtpro{
    position: relative;
	top: 150px;
	width: 360px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px;
	height: auto;
	margin-left: 20px;
	z-index: 9;
	background-color: rgb(3 3 3 / 50%); 
	border-radius: 20px;
	}
	
.contendorsliderpro .txtpro h2{
	color:#3BB8E7; 
	font-size: 30pt;
	font-family: "veneer-two", bebas;
}

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

.cajasliderpro{
	display: flex;
	animation: sliderpro 20s  infinite alternate; 
	animation-timing-function: linear; 
	width: 500%;
	border-bottom:1px solid #000;
	border-top:1px solid #000;
	margin-top: -116px; 
}

.sliderimgprocp1{
	width: 100%;
	height: 450px;
	background: url("../imagenes/servicios_galeria/calentadores/calentador_aceite_tg1.jpg");
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030303;
}	
	
.sliderimgprocp2{
	width: 100%;
	height: 450px;
	background: url("../imagenes/servicios_galeria/calentadores/calentador_aceite_tg2.jpg");
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030303;
}
			
.sliderimgprocp3{
	width: 100%;
	height: 450px;
	background: url("../imagenes/servicios_galeria/calentadores/calentador_aceite_tg3.jpg");
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030303;
}	
	
.sliderimgprocp4{
	width: 100%;
	height: 450px;
	background: url("../imagenes/servicios_galeria/calentadores/calentador_aceite_tg4.jpg");
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030303;
}	

.sliderimgprocp5{
	width: 100%;
	height: 450px;
	background: url("../imagenes/servicios_galeria/calentadores/calentador_aceite_tg5.jpg");
	background-position: right;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	background-color: #030303;
}	
	
.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(-20%);
}

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

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

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

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

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

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

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



/*////// BENEFICIOS ///////*/


.infoCaldera3{
	width: 100%;
	height: auto;
}

.conTablaBeneficios{
	width: 100%;
	height: auto;
	position: relative;
	top: 80px;
	 
}

.cajatabla{
	border: 1px solid #000;
	width: 400px;
	margin:20px auto;
	border-radius: 12px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 12px 15px;
}

.cajatabla .titulo{
	background: #005461;
	color: #fff;
	height: 80px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 13px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.cajaUlbeneficios .cajaLibeneficios{
	height:auto;
	border-bottom: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13px;
	text-align: center;
	list-style: none;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 2px;
	font-family: open;
    font-weight: 600;
	background: #f5f5f5;
}

.cajaUlbeneficios .cajaLibeneficios:last-child{
	border-bottom:none;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}


/*////// MANTENIMIENTO ///////*/

.mantetxtcaldera{
	width: 100%;
	height:auto;
	background: #005461;
	background-attachment: fixed;
	position: relative;
	top: 190px;
}

.infocaldera2{
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: auto;
    background: #005461;
    margin: auto; 
    box-shadow: rgba(0, 0, 0, 0.5) 0px 12px 15px;
	padding: 30px;
	position: relative;
	top: -138px;
	z-index: 1;
}

.infocaldera2 h2{
	color: #fff;
}

.infocaldera2 h3{
	color: #fff;
}

.infocaldera2 h4{
	color: #fff;
}

.infocaldera2 p{
	color: #fff;
}

.infocaldera2 ul{
	margin-left: 15px;
}

.contbtn{
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 150px;
}

.contbtn a{
	width: 150px;
	height: 30px;
	background: #005461;
	color: #fff;
	text-align: center;
	 margin-left: 10px;
}



.btncalentador{
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 105px;
}

.btncalentador a{
	width: 270px;
	height: 30px;
	background: #005461;
	color: #fff;
	text-align: center;
	border: 1px solid #fff;
}


/*////// 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: 15;
}



/* 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 ///////*/	
	
.ContsliderPrincipal{
	height: 370px;
		
	}	
	
.ContsdesCaldera {
	margin-bottom: 180px;
	}	

.txtprincipal {
	width: 100%;
	background: rgba(0,0,0,.4);
	height: 370px;
	padding: 10px 108px 10px 46px;
	
	}	
	
.txtprincipal p {
	width: 70%;
	}	

/*////// DESCRIPCIONES ///////*/	
	
.txtdesCaldera{
	width: 90%;
	}	
	
/*////// MANTENIMIENTO ///////*/	
	
.infocaldera2{
	width: 90%;	
	}	

/*////// SLIDER CALDERA PIROTUBULAR  ///////*/	
	
.cajasliderpro{
	border:none;
	margin-top: 5px;
	}	
		
.contendorsliderpro .txtpro {
	top: 6px;
	width: 100%;
	margin-left: 0px;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: #1F1F1F;
	border-radius: 0px;
	}	
	
.contendorsliderpro .txtpro h2 {
		font-size: 20pt;
	text-align: right;
	}	
	

		
.paginacion{
	left: 40%;
	}	
	
	
.contbtn{
	width: 100%;
	height: 150px;
	flex-direction: column;
	
	
}

.contbtn a{
	width: 250px;
	height: 50px;
	background: #005461;
	color: #fff;
	text-align: center;
	margin-left: 0px;
	margin-bottom: 20px;
	padding: 14px;
}	
	
	
}




/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width:480px){
	
h1{
		font-size: 25pt;
	}	
	
/*////// 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 ///////*/	
	
.ContsliderPrincipal {
    width: 100%;
    height: 780px;
    border-bottom: 1px solid #000;
    background: url("../imagenes/img_mo/b_servicio_calentador_mo.jpg");
	background-size: contain;
    background-color: #000000;
    background-repeat: no-repeat;
    background-attachment: scroll;
	background-position: top ;
	
	}	
	
.txtprincipal{
	width: 100%;
	height: 600px;
	justify-content: flex-end;
	}	
	
/*////// DESCRIPCIONES ///////*/	
	
.txtdesCaldera{
		width: 90%;
	}	

/*////// MANTENIMIENTO ///////*/	
	
.infocaldera2{
		width: 90%;
	}

	
/*////// SLIDER CALDERA PIROTUBULAR  ///////*/	
	
.cajasliderpro{
	border:none;
	margin-top: 5px;
	}	
		
.contendorsliderpro .txtpro {
	top: 6px;
	width: 100%;
	margin-left: 0px;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: #1F1F1F;
	border-radius: 0px;
	}	
	
.contendorsliderpro .txtpro h2 {
	font-size: 16pt;
	text-align: right;
	}	
	
.contendorsliderpro .txtpro .contlogoseintron img{
		width: 100%;
	}	
	
.sliderimgprocp1{
	
	background: url("../imagenes/img_mo/servicios_galeria_mo/caletandor_mo/calentador_aceite_tmog1.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	}
	
.sliderimgprocp2{
	
	background: url("../imagenes/img_mo/servicios_galeria_mo/caletandor_mo/calentador_aceite_tmog2.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	}
	
.sliderimgprocp3{
	
	background: url("../imagenes/img_mo/servicios_galeria_mo/caletandor_mo/calentador_aceite_tmog3.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	}
	
.sliderimgprocp4{
	
	background: url("../imagenes/img_mo/servicios_galeria_mo/caletandor_mo/calentador_aceite_tmog4.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	}	
	
.sliderimgprocp5{
	
	background: url("../imagenes/img_mo/servicios_galeria_mo/caletandor_mo/calentador_aceite_tmog5.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top;
	}
	

.paginacion{
	left: 40%;
	}	
	
	
	
.cajatabla{
		width: 90%;
	}
	
	
.contbtn{
	width: 100%;
	height: 150px;
	flex-direction: column;
	
	
}

.contbtn a{
	width: 250px;
	height: 50px;
	background: #005461;
	color: #fff;
	text-align: center;
	margin-left: 0px;
	margin-bottom: 20px;
	padding: 14px;
}	
		
	

}





