

/*-----------------header------------------*/

.header {
    position: fixed;    
    width: 100%;    
    z-index: 1;
    top: 0;  
}

.header__container {  
    background: rgb(250, 250, 250);
    color: rgb(0, 0, 0);    
    height: 70px;   
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0em 3em;
}



.header__img { /*logojgs*/
    width: 4rem;  
    cursor: pointer;
}

.header__spanimg { /*barras*/
  width: 2.5em;
  cursor: pointer;
}

/* -------------js---------------- */
.header__nav { /*id menu*/
    position: absolute;
    top: 75px;
    left: -9px;
    width: 100%;
    height: 200px;
    transition: all 0.2s;
    transform: translateX(-100%);
}

.header__a {
    display: block;
    color: #0f0f0f;
    height: 50px;
    padding: 1em 1em;
    font-size: 1rem;
    font-weight: bold;  
    border-bottom: 1px solid rgba(110, 0, 0, 0.808);
    text-align: right;   
    background: rgb(243, 243, 243);  
}
  
.header__a:hover {
    background: rgb(232, 232, 236) ;
    font-size: 1.02rem;
    transition: all 0.1s;
}


  
