
@media only screen
and (min-width : 1025px) {
  .responsive {
    display: none;
  }
}

/* 1024 */
@media only screen
and (max-width : 1024px) {
  .responsive-hidden,
  nav li::after,
  nav li.selected a::after {
    display: none;
  }
  nav ul {
    height: auto;
  }
  nav .responsive-menu {
    padding: 0 20px;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600; 
    height: 50px;
    border-bottom: rgba(0,0,0,0.23) 1px solid;
  }
  nav .responsive-menu i {
    font-size: 20px;
    margin-right: 5px;
  }  
}

/* 600 */
@media only screen
and (max-width : 600px) {
  .list-item .label {
    display: none;
  }
  section#layer p.inherit {
    padding-left: 0;
  }
  section#layer p.comment::before {
    display: none;
  }
  .button-container {
    flex-direction: column;
    align-items: center;
  }
  .button-container a:nth-child(2) {
    margin-top: 10px;
  }  
}