header {
  background: #141a20;
  padding: 40px 100px;
  display: flex;
  align-items: center;
}
header #logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
header #logo img {
  height: 50px;
}
header #logo em {
  font-style: normal;
  color: white;
  font-family: 'Montserrat';
  font-size: 24px;
  margin-left: 10px;
}
header .header-right {
  margin-left: auto;
  display: flex;
  font-size: 50px;
  color: #a393ff;
}
header .header-right a {
  margin-left: 40px;
  transition: all 0.3s;
  color: #a393ff;
}
header .header-right a.cta {
  font-size: 16px;
  padding: 5px 20px;
  color: white;
  text-decoration: none;
  background: #a393ff;
  border-radius: 4px;
}
header .header-right a.login {
  font-size: 16px;
  padding: 5px 20px;
  color: #a393ff;
  text-decoration: none;
  border: 1px solid #a393ff;
  border-radius: 4px;
}
header .header-menu {
  margin: 0 40px 0 auto;
  font-family: 'Montserrat';
}
header .header-menu a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 0 20px 0 20px;
  color: #a393ff;
  text-transform: uppercase;
}
header .header-menu a.highlight {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  header #logo img {
    height: 40px;
    order: 1;
  }
  header .header-right {
    order: 2;
    font-size: 30px;
  }
  header .header-menu {
    order: 3;
  }
  header .header-menu a {
    display: block;
    padding: 8px;
  }
  .mh {
    display: none !important;
  }
}
