@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100;200;300;400;500;600;700;800;900&display=swap');

.fadeInDown {
  opacity: 1 !important;
  transform: translateY(40px) !important;
}

#menu-btn {
  position: absolute;
  top: 50px;
  right: 20px;
  padding: 10px 20px;
  border: 1px solid transparent;
  font-weight: 300;
  z-index: 2;
  user-select: none;
  transition: border-color 0.3s;
  transform: translateY(-50%);
}
#menu-btn i {
  margin-left: 0px;
  color: #fff;
  font-size: 40px;
}
#menu-btn:hover {
  cursor: pointer;
}

#menu__panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, .95);
  box-shadow: -2px 2px 20px rgba(0, 0, 0, 0);
  user-select: none;
  transform: translateX(300px);
  transition: transform 0.5s;
}

.menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: center;
  top: 40px;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-item {
  width: 100%;
  height: 40px;
  opacity: 0;
  transform: translateY(0);
  transition: all 0.3s;
}
.menu-item:hover {
  background-color: transparent;
}
.menu-item i {
  margin: 0 10px;
}
.menu-item a {
  font-family: 'Heebo', sans-serif;
  color: #2b3e6b;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  width: 100%;
  height: 70px;
  padding-right: 50px;
  text-align: right;
  line-height: 70px;
}
.menu-item a:hover {
  font-family: 'Heebo', sans-serif;
  color: #9ccacf;
}

.menu__close {
  color: #2b3e6b;
  font-size: 35px;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  transition: transform 0.5s;
}
.menu__close:hover {
  cursor: pointer;
}