.mobile{
  display: none;
}

@media (min-width: 0px) and (max-width: 950px) {
  .mobileMenu {
    display: flex;
    display: -webkit-flex;
    margin-right: 20px;
  }
  header .wrapper{
    max-height: initial;
  }
  nav{
    align-items: flex-end;
  }
  .menu{
    background-color: #24201F;
    z-index: 200;
    min-width: 250px;
    display: none;
  }
  .menu li{
    display: block;
  }
}


@media (min-width: 0px) and (max-width: 768px) {
  .logo img{
    width: 106px;
  }

  /**
   * menu
   */
  
  .productMenu{
    margin-top: -10px;
    position: absolute;
    width: 100%;
    border-bottom: solid;
    border-width: 1px;
  }
  .productMenu .title{
    background: #24201F;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    height: 30px;
  }
  .menuside{
    display: none;
  }
  .menuside li{
    margin-bottom: 0px;
  }
  .menuside ul{
    display: block;
  }

  article{
    flex-direction: column;
  }

  article .content{
    padding: 0px 20px;
    margin: 0px;
  }

}

