.burger-icon {
  display: inline-block;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 3px;
  background-color: grey;
  margin: 6px 0;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-7px, 6px);
  transform: rotate(-45deg) translate(-7px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -6px);
  transform: rotate(45deg) translate(-6px, -6px);
}

#menu {
  visibility: hidden;
  padding-bottom: 60px;
  padding-top: 60px;
  top: 0px;
  box-sizing: border-box;
  opacity: 0;
  background-color: white;
  z-index: 2000;
  position: fixed;
}

#menu-show {
  visibility: visible;
  margin-bottom: 30px;
  opacity: 1;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  padding-bottom: 60px;
  padding-top: 60px;
  z-index: 2000;
  top: 60px;
  background-color: white;
  position: fixed;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: top 0.75s cubic-bezier(0.5, -0.01, 0, 1.005), opacity 1s;
}

.menu-link {
  text-decoration: none;
  color: rgb(72, 72, 72);
  margin-left: 24px;
  margin-bottom: 6px;
  margin-top: 6px;
  cursor: pointer;
}

.divider {
  height: 1px;
  background: #d5d8e3;
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 24px;
  margin-right: 24px;
}

@media only screen and (min-width: 1080px) {
  .container {
    display: none;
  }
  #menu-show {
    display: none;
  }
  #menu {
    display: none;
  }
  .burger-icon {
    display: none;
  }
}
