header {
  background: #363435;
  color: white;
  padding: 30px 100px;
  display: flex;
  align-items: center;
}
header #logo img {
  height: 50px;
}
header .header-right {
  margin-left: auto;
  display: flex;
  color: inherit;
  color: white;
}
header .header-right a#hamburger {
  font-size: 40px;
  color: white;
}
header .header-menu a.header-cta {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  width: 180px;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  color: white;
  background: #eb1515;
  padding: 10px 15px;
  border-radius: 4px;
}
header .header-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
}
header .header-menu a {
  color: white;
  text-decoration: none;
}
header .header-menu > a {
  margin-left: 50px;
  margin-right: 10px;
}
header .header-menu .social a {
  margin-left: 10px;
  font-size: 30px;
}
@media screen and (max-width: 1200px) {
  header {
    padding: 30px 50px;
  }
  header .header-menu > a {
    margin-left: 30px;
  }
}
@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-search {
    order: 3;
  }
  header .header-menu {
    order: 4;
    display: block;
    width: 100%;
  }
  header .header-menu a {
    display: block;
    text-align: right;
    margin: 10px;
  }
  header .header-menu a.header-cta {
    margin-left: auto;
    width: 200px;
  }
  .mh {
    display: none !important;
  }
}
