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


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


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


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


/*////// FORMULARIO ///////*/

.contenedor{
	width: 100%;
	height: 100vh;
	background: url("../imagenes/fondo_contacto.jpg");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	
}

form{
	width: 60%;
	margin: 0 auto 42px;
	
	
}

.contenedorImput{
	width:100%;
	
	display: flex;
	
	flex-wrap: wrap;
	align-items: center;
	
}


.estilo_etiqueta{
	color:  #fff;
	font-size: 14pt;
	font-family: changeling-neo-stencil, sans-serif;
	font-style: normal;
	font-weight: 300;	
	width: 50%;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 5px 12px 9px 12px;
	
}

.estilo_imput{
	border:none; 
	height: 20px;
	font-size: 13pt;
	background: none;
	border-bottom: solid 2px #fff;
	color:  #fff;
	width: 100%;
	margin-top: 10px;
}

.estilo_select{
	border:none; 
	height: 20px;
	font-size: 13pt;
	background: rgba(31,31,31,.7);
	
	color:  #fff;
	width: 100%;
	margin-top: 10px;
}

.contMensaje{
	width: 60%;
	margin:14px auto;
    
}

.estilo_mensaje{
	resize: none;
	width: 100%;
	background: none;
	color: #fff;
	border: solid 2px #fff;
	margin: auto;
	padding: 5px;
	border-radius: 20px;
	font-size: 12pt;
}

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

.estilo_boton{
	border-radius: 10px;
	text-decoration: none;
	padding: 10px;
	color: #fff;
	border: solid 2px #fff;
	background: rgba(31,31,31,.7);
	width: 100px;
	cursor: pointer;
}

.estilo_boton:hover{
	background: #1F1F1F;
}

.dato_correcto{
	background-color: #1F9A01;
	border-radius: 10px;
	font-size: 11pt;
	padding: 10px;
	color: white;
}
	
.dato_incorrecto{
	background-color: red;
	border-radius: 15px;
	font-size: 12pt;
	padding: 10px;
	color: white;
	margin-top: 10px;
	width: 50%;
	
}

.dato_incorrecto li{
	margin-left: 25px;
}


/*////// 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: 100px;
	z-index: 1;
}


/* DISEÑO PARA TABLET */

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

header{
	height: 80px;
	
}
	
	
/*////// BARRA DE NAVEGACION ///////*/

.navigation.active{
	height: 530px;
	
}
	
	
	form{
		width: 90%;
	}	
	
	
	.contenedorImput{
		flex-direction: column;
	}
	
	.estilo_etiqueta{
		width: 80%;
		font-weight: 600;
	}

	
	.estilo_boton{
		height: 30px;
	}
}

/* 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;
	
}
	
form{
		width: 90%;
	}	
	
	
	.contenedorImput{
		flex-direction: column;
	}
	
	.estilo_etiqueta{
		width: 90%;
		font-weight: 600;
	}	
	
	.contMensaje{
		width: 80%;
	}
	
}

