@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans 3', sans-serif;
    text-decoration: none;

    --accent-color: #186ADC;
    --el-gradient-start: #1859B4;
    --el-gradient-end: #0467F1;
    --background-color: #ffffff;
    --background-secondary-color: #F0F4F8;
    --text-primary: #303036;
    --text-secondary: #63636b;
    --border-color: #D4D4E1;
    --placeholder-color: #6F6F76;
    --error-color: #ff3d0d;
    --alert-primary: #0065D1;
    --alert-success: #1CAB55;
    --alert-danger: #E91C1C;
    --alert-warning: #C79C00;
    --el-border-radius: 10px;
    --el-border-radius-min: 6px;
    --el-box-shadow: 2px 4px 20px 1px rgba(45, 45, 45, 0.13);
    --header-box-shadow: 0px 0px 14px 0px rgba(77, 82, 94, 0.15);
    
}

header{
    width: 100%;    
    top: 0;
    left: 0;
    background: #fff;
}

/*misio-vision*/
.mision-vision{
    border-radius: 20px;
    width: 100%;
    align-items: center;  
    background-color: #F0F4F8; 
  
}
.mision-vision h2{
      background-color: #F0F4F8;
  
}
.vision{
    display: flex;
    margin: 1rem;
}
.mision{
    margin: 1rem;
    display: flex;
}

.iitem {
    display: block;
    text-align: center;
    padding: 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s, background-color 0.2s, color 0.2s;
}
.nivel-academico{
    color: #303036;
    background-color: #F0F4F8;
    padding: 1rem;
}
.nivel-academico a{
    color: #F0F4F8;
    background-color: #0065D1;
    padding: .2rem;
    border-radius: .2rem;
   
}
.iitem:hover {
   
   

}
.item-style {
    position: relative;
    background-color: #F0F4F8;
    border-radius: var(--el-border-radius);
    overflow: hidden;
    color: #303036;
    height: 100%;
    transition: box-shadow 0.2s;
}
.item-style:hover {
    box-shadow: var(--el-box-shadow);
}
.item-style:hover::after {
    border-color: transparent;
}

.item-style::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--el-border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    pointer-events: none;
    transition: border-color 0.2s;
    z-index: 1;
}

/*HEADER SUPERIOR*/

.header__superior{
   
    width:100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem;    
}

.header__superior a img{
    width: 5rem;
    
}
.search input{
    width: 300px;
    padding: 10px;
}

/*BARRA MENU*/
.activo{
    color: #fff;
    background: #024092;
    animation: gif 0.5s infinite alternate ease-in-out;

}
@keyframes gif {
	0%{
        transform: translateY(0) rotateX(0) scale(1);
        opacity: 1;
    }
    100%{
        transform: translateY(5px)rotateX(10deg) scale(1.05);
        background-color: #0099E9;        
    }
	
}
.container__menu{
    z-index: 10;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    background: #024092;
    padding: 0px 20px;
}
.fixed{
    position: fixed;
    opacity: 90%;

}

.menu{
   
    max-width: 1200px;
    margin: auto;
    height: 100%;
}

nav{
    height: 100%;
}

nav > ul{
    height: 100%;
    display: flex;
}

nav ul li{
    height: 100%;
    list-style: none;
    position: relative;
}

nav > ul > li:first-child > a{
    background-image: url(../img/home.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 40px;
}

nav > ul > li:first-child:hover > a{
    background-image: url(../img/home.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

nav > ul > li > a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 300ms ease;
}

nav > ul > li > a:hover{
    transform: scale(1.1);
    background: #0074C7;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

#selected{
    transform: scale(1.1);
    background-color: #0074C7;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}


/*SUBMENU*/

nav ul li ul{
    width: 200px;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    z-index: 10;
    transition: all 300ms ease;
}

nav ul li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 70px;
}

nav ul li ul:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;
}

nav ul li ul li a{
    display: block;
    color: #0099E9;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 300ms ease;
}

nav ul li ul li a:hover{
    background: #0074C7;
    color: #fff;
    transform: scale(1.2);
    padding-left: 30px;
    font-size: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}

/*ARTICULO*/

main{
    background: #f0f0f0;
    padding: 40px 20px;
    margin-top: 194px;
}

article{
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px;
    background: #fff;
}

article p{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
}

/*ELEMENTOS RESPONSIVOS*/

.icon__menu{
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: none;
    align-items: center;
}

#label__check{
    width: 26px;
    height: 100%;
    display: none;
}

#check__menu{
    display: none;
}

/*mapa*/
.mapa{
    margin: 2rem;
   
}
.mapa-section{
    background-color:#eee
}




/*=======Footer================*/

footer{  
    display: flex;
    width: 100%;
    height: 5rem;
    align-items: center;
    justify-content: center;   
    background-color: #024092;
}

.footer-line {    
    background-color: #f0f0f0;	
    margin-top: 2rem;
    width: 30rem;  
    height: .2rem;    
}
.social-list{
    display: flex;
 }
footer ul{
    display: flex;
    margin: .5rem;
    list-style: none;
  
}
footer ul li{
    margin: 1rem;
   
}

footer ul li a i{
   font-size: x-large;
    color: #fff;
    text-decoration: none;
   
}
footer ul li a i:hover{
    font-size: x-large;
     color: #0099E9;
     font-weight: 900;
    
 }
.copyright {	
	text-align: center;
    align-items: center;
    justify-content: center;
}

.container p span {
	padding-right: 1em;
	padding-left: 1em;
}
@media screen and (max-width: 800px){

    .search input{
        display: none;
    }
    
    .header__superior{
        padding: 10px;
        
    }
    .footer-line {           
        width: 5rem;        
    }
 
    nav > ul{
        flex-direction: column;
        background-color: #024092;
        position: fixed;
        left: 0;
        top: 158px;
        width: 100%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    nav > ul > li > a:hover{
        transform: scale(1);
    }

    nav ul li ul{
        left: 90px;
    }

    nav > ul > li:hover ul{
        top: 50px;
    }

    nav > ul > li:first-child a{
        background-position: 20px;
    }

    #selected{
        transform: scale(1);
    }

    #label__check{
        display: block;
    }

    .icon__menu{
        display: flex;
    }

    #check__menu:checked ~ nav > ul{
        height: 350px;
        visibility: visible;
        opacity: 1;
    }

    main{
        margin-top: 158px;
    }
}