/*@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
}
header{
	top: 0;
	position: fixed;
    display: flex;
    align-items: center;
    height: 120px;
    padding: 0% 1%;
    /*border-bottom: 15px solid #E7F3E7;*/
    z-index: 999;	
    width: 100%;

     background-color: white;
}
/*contenedor letras*/
.logo{
	display: flex;
	align-items: center;
}
/*icono*/
.logo img {
	height: 30px;
	width: 220px;
}
/*contenedor logo*/
/*imagen*/
#lg img{
	height: 65px;
	width: 65px;
	margin-right: 20px;
}
/*agregamos una animacion para la img LG*/
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#lg img:hover {
    animation: rotate 20s infinite; /* 2s es la duración de la animación de rotación */
}
/*hamburguesa*/
.bars{
	display: none;/*lo ocultamos*/
}
.nav-bar{
	display: flex;
	width: 100%;
	padding: 0% 1%;
}
.nav-bar ul {
	display: flex;/*posicion de ls opciones*/
	justify-content: space-between;
	width: 100%;
}	
.nav-bar ul li a{/*opciones*/
	display: block;
	color: #356789;
	font-size: 13px;
	padding: 10px 25px;
	border-radius: 15px;
	transition: 0.2s;
	margin: 0 2px;
}
.nav-bar .organizar{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.BTNS{
	display: flex;
}
#btn_n img{
	width: 30px;
	height: 30px;
}
#btn_s img{
	width: 30px;
	height: 30px
}
.notification-badge {
            background-color: #D3564E;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            text-align: center;
            font-size: 12px;
            line-height: 18px;
            position: absolute;           
 }
/*texto opciones*/
.nav-bar ul li a:hover{
	color: black;
	background-color: #E7F3E7;
}
/*como se comporta cuando la clase esta activa*/
.nav-bar ul li a.active{
	color: black;
	background-color: #E7F3E7;
}

/**/
@media(max-width:1240px){
	/*se acichan los logos*/
	.logo img {
	height: 20px;
	width: 140px;
	}
	#lg img{
	height: 60px;
	width: 60px;
	} 
	/*haburguesa*/
	.bars{
		display: block;
		cursor: pointer;
	}
	/*opciones de las lineas*/
	.bars .line{
		width: 25px;
		height: 3px;
		background-color: orange;;
		margin: 5px 20px;
	}
	/*barra desplegable*/
	.nav-bar{
		height: 0px;
		right: 0;
		position: absolute;
		top: 120px;
		width: 100vw;
		background-color: #C8E6C9;
		transition: 0.5s;
		overflow: scroll;
	}
	.nav-bar .organizar{
		display: flex;
		flex-direction: column;
		height: auto;
	}
	.nav-bar.active{
		height: 550px;
	}
	/*controla las */
	.nav-bar ul{
		background: none;
		display: block;
		width: fit-content;
		height: auto;
		margin: 10px auto 0 auto;
		text-align: center;
		transition: 0.5s;
		opacity: 0;
	}
	.nav-bar.active ul{
		opacity: 1;
	}
	.nav-bar ul li a{
		margin-bottom: 28px;
	}
	/*////////*/
	.BTNS{
		display: block;
	}
	.nav-bar{
		margin-left: 0%;
	}
	header{
		justify-content: space-between;
	}
	
	/*////////////*/

}