#hamburger {
  display: none;
}
@media only screen and (max-width: 700px) {
  #hamburger {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 18px 30px 7px 30px ;
    margin-bottom: -15px;
  }
  #hamclose {
    cursor: e-resize;
    position: absolute;
    position: fixed;
    top: 0;
    right: 260px;
    z-index: 10;
    font-size: 24px;
    color: #fff;
    line-height: 48px;
    text-align: right;
    width: 100%;
    background-color: #171621;
  }
  .hamline {
    width: 22px;
    height: 0px;
    border-style: solid;
    border-width: 1px 0 1px 0;
    border-color: white;
    margin-bottom: 5px;
  }
}
