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


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

body{
	background: #f5f5f5;
	height: 100vh;
	font-family: "forma-djr-deck", sans-serif;
	color: #005461;
	
}

h1{
	font-size: 25pt;
	color:#000;
	font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
	margin-left: 30px;
	margin-top: 50px;
	width: 500px;
	
}

h2{
	font-family: "azo-sans-web", sans-serif;
    font-weight: 800;
    font-style: normal;
}

H3{
	text-align: center;
	font-size: 13pt;
	font-family: "azo-sans-web", sans-serif;
    font-weight: 800;
    font-style: normal;
}

p{
	font-family: "azo-sans-web", sans-serif;
    
    font-style: normal;
}

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


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


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


/*//////TARJETA CURSOS ///////*/

.ContenedorTarjeta{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	margin: 30px;
}

.ContenedorTarjeta h2{
	font-size: 14pt;
	padding-bottom: 5px;
}

.tarjeta{
	position: relative;
	background: #fff;
	width: 350px;
	box-shadow: 0 5px 25px rgba(2, 2, 2, 0.25);
	border-radius: 10px;
	overflow: hidden;
	
}

.tarjeta.gradient .contenidoTarjeta .textoTarjeta::before{
	display: block;
}

.tarjeta .imagenTarjeta{
	position: relative;
	width: 350px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.tarjeta .imagenTarjeta img{
	width: 102%;
	height: 102%;
	
}

.contenidoTarjeta{
	position: relative;
	text-align: center;
	margin: 15px;
    
	
}

.contenidoTarjeta .textoTarjeta{
	font-size: 11pt;
	position: relative;
	text-align: left;
	height: 100px;
	overflow: hidden;
	transition: height 0.3s ease;
}

.contenidoTarjeta .textoTarjeta::before{
	content: "";
	position: absolute;
	bottom: 0;
	left:  0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, #fff, transparent);
	display: none;
	
}

.contenidoTarjeta .btnTarjeta{
	user-select: none;
	cursor: pointer;
	margin-top: 10px;
}

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



/* DISEÑO PARA TABLET */

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

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

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

.navigation.active{
	height: 530px;
	
}
	
/*////// CURSOS ///////*/	
	
.ContenedorTarjeta{
	width: 90%;
	
	}	
	
.tarjeta{
	margin-bottom: 40px;
	}	
	
.contenidoTarjeta .textoTarjeta::before{
	
	background: none;
	
}	
	
}


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

}





