body {
  padding-top: 10px;
  margin: 0;
}
.whatsApp_icono {
  margin-top: 30px;
  width: 30px;
  
}
.gmail {
  width: 30px;
  height: 30px;
}

#logo2 {
  width: 80px;
  height: 80px;
}

.header {
  background-color: whitesmoke;
  height: 80px;
  width: 100%;
  /* *cambiar para quitar el borde */
  /* border: solid; */

  /* para que se quede fijo el header */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}
.menu {
  display: flex;
  justify-content: space-between;
  /* border:solid seagreen; */
}
.menu_items {
  text-decoration: none;
  color: crimson;
  font-size: 18px;
  margin: 10px;
  line-height: 80px;
  text-transform: uppercase;
  /*  
  ? text-transform: uppercase; 
  ! para transformar todo a mayúsculas 
  */
  padding: 8px 12px;
  border-radius: 3px;
}
/* para cuando el cursor este encima de los elementos cambien la transición  
!:hover 
*/
.menu_items:hover,
.menu_itemes_activ {
  background-color: rgba(255, 68, 0, 0.342);
  transition: 1s;
  filter: brightness(130%);
}

.nav_menu {
  display: flex;
  margin-right: 40px;
  list-style: none; /* list-style: none;para quitar los puntitos */
}
.boton_menu {
  width: 50px;
  height: 70px;
  background: none;
  border: none;
  display: none;
  cursor: pointer;
}
.icono_menu {
  width: 30px;
}
.primer_imagen {
  width: 100%;
 
}


@media (max-width: 950px) {
  body{
    padding-top: 0px;
  }
 
  
  

 
  .header {
    height: 60px;
  }
  #logo2 {
    width: 60px;
    height: 60px;
    padding: 0 20px;
  }
  .menu_items {
    line-height: 70px;
  }
  /* para cuando el cursor este encima de los elementos cambien la transición  
  !:hover 
  */
  .menu_items:hover,
  .menu_itemes_activ {
    background: none;
    color: orange;
  }

  .nav_menu {
    flex-direction: column;
    margin-right: 20px;
    background-color: whitesmoke;
    position: fixed;
    left: 100%;
    top: 40px;
    width: 100%;
    align-items: center;
    padding: 20px 0;
    height: calc(100% - 40px);
    overflow-y: auto;
    transition: 0.3s;
  }
  .boton_menu {
    display: block;
    
  }
  .nav_menu_visible {
    left: 0;
  }
}
