/*============
MENU DE INICIO
============*/

.header{
    width: 100%;
    height: 70px;
        
    display: flex;
    justify-content: space-between;
    z-index: 3;

    color: white;
    background: #333333;
    border-bottom: 10px solid white;
}

#btn-menu{
    display: none;
}

.header label{
    cursor: pointer;
    display: none;
        
    font-size: 25pt;
}

.menu{   
    font-size: 20pt;
    font-weight:500;
}

.menu ul{
    height: 100%;

    display: flex;
    align-items: center;

    list-style: none;
}

.li-rs-contacto{
    display: none;
}

.menu ul ul{
    display: none;
    background: rgba(51,51,51,0.8);
    position: absolute;

    width: auto;
    height: auto;
    margin-left: 40px;
}

.menu a{
    display: block;
    padding: 4px 20px;
    color: #fff;
    font-weight: bolder;
    text-decoration: none;
    border-right: 4px solid white;
    font-family: CalistoMT;
}

.menu a:hover{
    background: rgba(255,255,255,0.5);
}

.menu a span{
    margin-left: 5px;
}

.menu ul li:hover ul{
    display: block;
    position: absolute;
}


/*=================
MENU DE INICIO - RS
=================*/

.caja-rs{
    margin-top: 0px;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.img-rs{
    width: 40px;
    height: 40px;
    margin-right: 25px;
}

.img-rs img{
    width: 100%;
    height: 40px;
}

.img-rs:hover{
    background: #b1b1b1;
}

.img-rs img:hover{
    opacity: 0.8;
}

/*========
RESPONSIVO
========*/

/*= 1400px =*/
@media (max-width:1400px){
    .header{
        position: fixed;
    }
}

/*= 768px =*/
@media (max-width:768px){
    
    /*MENU DE INICIO*/
    .header{
        width: 100%;
        justify-content: space-between;
    }
    
    .header label{
        display: block;
        padding: 10px 10px;
        
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu{
        position: absolute;
        top: 70px;
        left: 0px;
        width: 60%;
        
        transform: translateX(-100%);
        transition: all 0.3s;
    }
    
    .menu ul{
        display: block;
        background: #333333;
    }
    
    .menu ul a{
        padding: 20px 25px;
    }
    
    .menu ul li:hover ul{
        display: none;
        position: static;
    }
    
    .li-rs-contacto-gde{
        display: none;
    }
    
    .li-rs-contacto{
        display:block;
    }
    
    .li-rs-escarabajos-gde{
        display: none;    
    }
    
    .li-rs-escarabajos{
        display: block;
    }
    
    .li-rs-contacto-gde{
        display: none;
    }
    
    .li-rs-contacto{
        display:block;
    }
    
    .menu a span{
        display: none;
        position: absolute;
        right: 10px;
    }
    
    #btn-menu:checked ~ .menu{
        transform: translateX(0%);
    }
    
    .menu ul ul{
        background: #333333;
        margin-left: 0px;
        position: relative;
    }
    
    .menu ul ul a{
        padding: 20px 30px;
        margin-left: 40px;
    }
    
    
}

/*= 600px =*/
@media (max-width:600px){
    .menu{
        width: 100%;
    }
}

/*= 400px =*/  
@media (max-width:400px){
    .menu{
        width: 100%;
    }
}













