header{
    background: var(--clr-white);
    height: 5rem;
    /* display: grid */
    align-items: center;
    box-shadow: var(--dark-shadow);
    display: flex;
    justify-content: space-around;
    width: 100%;
    position: fixed;
    z-index:12000;
}

.imagen_logo{
  /* width: 100%; */
  height: 100px;
  border: 20px;
  /* border-color: black; */

}

.menu_iconos {
    display: flex;
    justify-content: space-between;
    width: 50px;
    height: 20px;
  }


  
  .icon {
      justify-content: center;
      align-items: center;
      width: 20px;
      height: 20px;
  }
  
  .space_icon:hover .icon {
      -webkit-transform:scale(1.3);transform:scale(1.3);
      /* animation-duration: 3000; */
  }

  /* .header_icono {
    color: black;
    text-decoration: none;
  } */

  @media (max-width:700px){
    .menu_iconos {
      display: flex;
      flex-direction: column;
      width: 50px;
      height: 40px;
      margin-right: -50px;
    }
    .imagen_logo{
      margin-right: -10px;
    }

    /* header{
      width: 115%;
    } */
  }