.menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
}

/* IMPORTANT FOR SCROLL EFFECT */
.desktop-menu {
  position: fixed;
  transition: all 0.2s ease;
  width: 100vw;
  z-index: 9999;
  top: 0;
}

.dropdown-item:last-child {
  border: 0;
}

.open .dropdown-menu {
  display: flex;
  flex-flow: column;
  background-color: #000;
  left: auto !important;
  right: 0 !important;
  width: 335px;
  transition: all 0.2s ease;
}

a.dropdown-item {
  color: white;
  border-bottom: 1px solid white;
  padding: 20px 15px;
  width: 335px;
  display: flex;
  align-items: center;
}

.dropdown-item img {
  width: 20px;
  margin-right: 10px;
}

section#header {
  margin-top: 74px;
}