@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;
	height: 100vh;
	font-family: sans-serif;
}

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

h2{
	text-shadow: 5px 4px 2px #000;
    font-family: bebas;
    color: #fff;
	text-align: center;
	font-size: 20pt;
}

p{
	color: #fff;
	width: 90%;
	text-align: center;
	font-size: 15pt;
	font-family: open;
}

/*////// 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 p{
	color: #3BB8E7;
	text-align: left;
	font-size: 12pt;
}

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

.menu li a .contendorIconos img{
	
}

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

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

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

/*////// 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;
	
	width: 150px;
	height: 70px;
	
}

.contenedormenu{
	display: none;
}


/*////// SUBMENU PARA ORDENADOR ///////*/


section{
	position: absolute;
	width: 100%;
	height: 91vh;
	display: flex;
	border: solid 2px #000;
}

section .slider{
	position: relative;
	background: #0f0;
	height: 100%;
	flex: 1;
	border-right: solid 2px #000;
	overflow: hidden;
	transition: 0.5s ease-in-out;
}

section .slider:last-child{
	
	border-right: none;
	
}

section .slider:hover{
	flex-grow: 6;
}

section .slider:nth-child(1){
	background: url("../imagenes/submenu_servicios_caldera.jpg");
	background-position: center center;
	background-size: cover;
	
}

section .slider:nth-child(2){
	background: url("../imagenes/submenu_servicios_calentadores.jpg");
	background-position: center center;
	background-size: cover;
	
}

section .slider:nth-child(3){
	background: url("../imagenes/submenu_servicios_hornos.jpg");
	background-position: center center;
	background-size: cover;
}

section .slider:nth-child(4){
	background: url("../imagenes/submenu_servicios_quemadores.jpg");
	background-position: center center;
	background-size: cover;
}

section .slider:nth-child(5){
	background: url("../imagenes/submenu_servicios_tren_de_valvulas.jpg");
	background-position: center center;
	background-size: cover;
}

section .slider:nth-child(6){
	background: url("../imagenes/submenu_servicios_tableros.jpg");
	background-position: center center;
	background-size: cover;
}

section .slider .contenedorSlider{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
	background: rgba(0,0,0,.8);
	color: #fff;
	visibility: hidden;
	opacity: 0;
	transition: 0s;
	transform: translateY(100px);
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section .slider:hover .contenedorSlider{
	
	visibility: visible;
	opacity: 1;
	transition: 0.5s;
	transition-delay: 0.5s;
	transform: translateY(0);
	
}

.slider .titulo_slider{
	
    
    background: rgba(31,31,31,.8);
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.slider .contenedorSlider p{
	padding: 5px;
    margin-top: 10px;
	
}

.slider .contenedorSlider .btn a{
	color: #3BB8E7;
    border: solid 1px #3BB8E7;
    margin-top: 15px;
    background: #000;
}

.slider .contenedorSlider .btn a:hover{
	color: #000;
    background: #3BB8E7;
}

.slider .contenedorSlider .btn{
	display: flex;
    justify-content: center;
}

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

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

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;
}


/* DISEÑO PARA TABLET */

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

header{
	height: 80px;
	
}
	
header a{
	
	width: 280px;
	height: 50px;
	
}
	
	
/*////// BARRA DE NAVEGACION ///////*/

.navigation.active{
	height: 530px;
	
}
	
	
/*////// SUBEMNU PARA ORDENADOR ///////*/
	
section 	{
	display: none;
	}
	
/*////// SUBEMNU PARA TABLET ///////*/	
	
	
.contenedormenu{
		width: 100%;
		height: 900px;
		display: flex;
		flex-wrap: wrap;
	}	
	
.fondoservicios{
		width: 100%;
		height: 450px;
		background: rgba(0,0,0,.5);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
.contservicios1{
		width: 50%;
		border: 1px solid #000;
		height: 450px;
		background: url("../imagenes/img_tb/servicio_calderatb.jpg");
	}
	

	
.contservicios1 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios1 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
	
.contservicios2{
		width: 50%;
		border: 1px solid #000;
		height: 450px;
		background: url("../imagenes/img_tb/servicio_calentador.jpg");
	}
		
.contservicios2 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios2 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}

.contservicios3{
		width: 50%;
		border: 1px solid #000;
		height: 450px;
		background: url("../imagenes/img_tb/servicio_hornos.jpg");
	}
	
.contservicios3 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios3 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
	
.contservicios4{
		width: 50%;
		border: 1px solid #000;
		height: 450px;
		background: url("../imagenes/img_tb/servicio_quemadores.jpg");
	}
	
.contservicios4 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios4 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
		
.contservicios5{
		width: 50%;
		border: 1px solid #000;
		height: 450px;
		background: url("../imagenes/img_tb/servicio_tren.jpg");
	}
	
.contservicios5 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios5 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
	
.contservicios6{
		width: 50%;
		border: 1px solid #000;
		height: 450px;
		background: url("../imagenes/img_tb/servicio_tableros.jpg");
	}
		
.contservicios6 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios6 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}	
	
}
	
	
	/* DISEÑO PARA MOVIL */

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

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

header{
	height: 80px;
	
}
	
header a{
	
	
	width: 280px;
	height: 50px;
	
}
	
	
/*////// 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;
	
}	
	
	
/*////// SUBEMNU PARA ORDENADOR ///////*/
	
section 	{
	display: none;
	}
	
/*////// SUBEMNU PARA MOVIL ///////*/	
	
	
.contenedormenu{
		width: 100%;
		height: 900px;
		display: flex;
		flex-wrap: wrap;
	}	
	
.fondoservicios{
		width: 100%;
		height: 400px;
		background: rgba(0,0,0,.5);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
.contservicios1{
		
		border: 1px solid #000;
		height: 400px;
		background: url("../imagenes/img_mo/servicio_calderamo.jpg");
	    background-position: center;
	}
	
.contservicios1 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios1 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
	
.contservicios2{
		
		border: 1px solid #000;
		height: 400px;
		background: url("../imagenes/img_mo/servicio_calentador_mo.jpg");
	    background-position: center;
	}
	
.contservicios2 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios2 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}

.contservicios3{
		
		border: 1px solid #000;
		height: 400px;
		background: url("../imagenes/img_mo/servicio_horno_mo.jpg");
	    background-position: center;
	}
		
.contservicios3 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios3 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
	
.contservicios4{
		
		border: 1px solid #000;
		height: 400px;
		background: url("../imagenes/img_mo/servicio_quemador_mo.jpg");
	     background-position: center;
	}
		
.contservicios4 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios4 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
		
.contservicios5{
		
		border: 1px solid #000;
		height: 400px;
		background: url("../imagenes/img_mo/servicio_tren_mo.jpg");
	    background-position: center;
	}
		
.contservicios5 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios5 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}
	
.contservicios6{
		
		border: 1px solid #000;
		height: 400px;
		background: url("../imagenes/img_mo/servicio_tablero_mo.jpg");
	    background-position: center;
	}
		
.contservicios6 .btn_box{
		height: auto;
		margin-top: 20px;
	}
	
.contservicios6 a{
	color: #3BB8E7;
	border: solid 1px #3BB8E7;
	margin-top: 15px;
	background: #000;
		
	}		
	
	
}



