
 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    
}
/*HEADER*/
.header{
   
    width: 100%;
    padding: 10px 70px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    position: fixed;
    z-index: 10000;
}
.header.activo{
    background: #fff;
}
.header .logo{
    position: relative;
}
.header .logo a img{
    height: 80px;
    width: 210px;
    object-fit: cover;
}

.grupo{
    position: relative;
    display: flex;
}
.grupo .navegacion{
    display: flex;
    justify-content: center;
    align-items: center;
}
.grupo ul li{
    list-style: none;
}
.grupo ul li a{
    color: #000;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
}
.grupo ul li a:hover{
    transition: all 0.5s ease;
    color: #f00;
    background: #222;
    padding: 9px;
    border-radius: 60px;
}
.scrol{
    height: 20px;
}
/*END HEADER*/
/*footer*/
    footer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;  
}
footer .contendedor_f{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #111;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer .contendedor_f .cont{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
} 
footer .contendedor_f .cont .sec{
    margin-right: 30px;

}
footer .contendedor_f .cont .sec.nosotros{
    width: 40%;   
}
footer .contendedor_f .cont  h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}
footer .contendedor_f .cont  h2::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f00;
}
footer  p{
    color: #f1f1f1;
}
.sci{
    margin-top: 20px;
    display: flex;
}
.sci li{
    list-style: none;
}
.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px; 
}
.sci li a:hover{
    background: #f00;
}
.sci li a .fa{
    color: #fff;
    font-size: 20px;        
}

.links{
    position: relative;
    width: 25%;
}
.links ul li{
    list-style: none;
}
.links ul li a{
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.links ul li a:hover{
    color: #f00;
}
.infor{
    width: calc(35% - 60px);
    margin-right: 0 !important;
}

.infor .info {
    position: relative;
}
.infor .info li{
    display: flex;
    margin-bottom: 5px;
}
.infor .info li a{
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    display: inline-block;
}

.infor .info  li a:hover{
    color: #f00;
}   


.copy{
    width: 100%;
    background: #181818;
    padding: 8px 100px;
    text-align: center;
    color: #999;
}
.menuToggle{
 display: none;
}
@media (max-width:991px){
    /*Haeder*/
    .menuToggle{
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        cursor: pointer;
        padding: 0 5px;
        width: 30px;
        height: 30px;
        z-index: 1000;
    }
    .menuToggle:hover{
        transition: all 0.5s ease;
        padding: 20px;
        border-radius: 5px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
    .menuToggle ion-icon{
        position: absolute;
        display: none;
    }
    .menuToggle.active ion-icon:nth-child(1){
        display: none;
    }
    .menuToggle.active ion-icon:nth-child(2){
        display: block;
    }

    .menuToggle ion-icon:nth-child(1){
        display: block;
    }
    .menuToggle ion-icon:nth-child(2){
        display: none;
    }

    .grupo .navegacion{
        display: none;
    }
    .grupo .navegacion.active{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: #fff;
        z-index: 999;
    }
    .grupo ul li a {
        font-size: 1.5em;
        margin-left: 0px;
        margin: 10px 0;
        display: inline-block;
    }
    .header{
        padding: 10px;
    }
    .header .logo a img {
        height: 80px;
        width: 140px;
    }
    
/*END Haeder*/


    /*Footer*/
    footer .contendedor_f{
        padding: 40px;
    } 
    footer .contendedor_f .cont{
        flex-direction: column;
    }

    footer .contendedor_f .cont .sec {
        margin-right: 0;
        margin-bottom: 40px;
    }
    footer .contendedor_f .cont .sec.nosotros,
    .links,
    .infor{ 
    width: 100%;   
    }
    .copy{
        padding: 8px 40px;
    } 
}
@media (max-width:768px){

}