

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .middleItems{
    display: flex;
    justify-items: center;
    align-items: center;
  }
  .herramientas{
    width: 100%;
    height: 36px;
    background: #42423e;
    display: flex;
    justify-content: space-between;
    align-self: center;
    -webkit-font-smoothing: antialiased
}

  a {
    text-decoration: none;
    margin: 0;
    padding: 0;
  }
  .herramientas{
    display: flex;
  }
  .link{
    font-family: 'icomoon';
    color: rgba(255,255,255,0.6);
    font-size: 24px;
    transition: 0.4s;
  }
  .pj:before {
    content: "\e907";
  }
  .ejem:before {
    content: "\e904";
  }
  .voluntariado:before {
    content: "\e909";
  }
  .mediacion:before {
    content: "\e906";
  }
  .igualdad:before {
    content: "\e905";
  }
  .convivencia:before {
    content: "\e903";
  }

  nav ul{
    margin: 0;
    padding: 0;
  }
  nav ul li{
    cursor: pointer;
    display: inline-block;
    padding-left: 13px;
    padding-right: 13px;
    margin: 0;
    margin-left: -4px;
  }
  .color-link{
    transition: 0.4s;
  }
  #pj{
    border-left: 1px solid rgba(255,255,255,0.4);
    border-right: 1px solid rgba(255,255,255,0.4);
  }
  #pj:hover{
    background: rgb(208, 22, 22);
  }
  #ejem:hover{
    background: #691c32;
  }
  #voluntariado:hover{
    background: #e225ac;
  }
  #mediacion:hover{
    background: rgb(82, 76, 167);
  }
  #igualdad:hover{
    background: rgb(211, 160, 19);
  }
  #convivencia:hover{
    background: rgb(29, 162, 167);
  }

  .check-btn{
    font-size: 20px;
    color: #fff;
    float: left;
    cursor: pointer;
    transition: 0.2s;
    display: none;
  }
  .check-btn:hover{
    font-size: 22px;
    color: rgb(255, 159, 159);
  }
  #check{
    display: none;
  }

  @media (max-width: 952px){

  }
  @media (max-width: 858px){
    .check-btn{
      display: block;
    }
    nav ul{
      position: fixed;
      width: 80px;
      top:34px;
      height: calc(100vh - 34px);
      left: -80px;
      background: #42423e;
      text-align: center;
      transition: all 0.5s;
      z-index: 200;
    }
    nav ul li{
      display: block;
      margin: 0 0;
      height: 60px;
      padding-top: 15%;
    }
    nav ul li a{
      font-size: 20px;
    }
    #check:checked ~ ul{
      left: 0;
    }
    #pj{
      border-left: 0px solid rgba(255,255,255,0.4);
      border-right: 0px solid rgba(255,255,255,0.4);
    }
    .social ul{
      display: none;
    }
  }