.header_desktop {
  background-color: var(--clrBlack);
  color: white;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
}

@media (max-width: 960px) {
  .header_desktop {
    display: none;
  }
}

.header_desktop > *:nth-child(n + 2) {
  margin-left: 1em;
}

.header_desktop > .header_logo {
  height: 100%;
  width: 100%;
  max-height: 20px;
  max-width: 300px;
  padding: 0 2em;
  box-sizing: border-box;
  display: flex;
  margin-right: auto;
}

.header_desktop > .header_logo img {
  max-width: 200px;
}

.header_menu,
.header_menu ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  z-index: 1;
}

.header_menu {
  display: flex;
  height: 100%;
}
.header_menu > .dropdown > a:before {
  content: "\2261";
  margin-right: 5px;
}

.link_main {
  position: relative;
}

.link_main.active:before {
	content: "•";
	opacity: .6;
	position: absolute;
	left: 0;
	bottom: 0;
	text-align: center;
	width: 100%;
}

.dropdown {
	position: relative;
}

.dropdown li a.active:after {
    content: "●";
    opacity: .4;
    margin-left: auto;
	
}

.header_menu li {
  float: left;
  text-decoration: none;
  transition-duration: 0.15s;
}

.header_menu li a {
  display: flex;
  color: #fff;
  padding: 0.75em 1.5em;
}

.header_menu > li > a {
  color: #fff;
  padding: 0 1.5em;
  height: 100%;
  max-height: 60px;
  display: flex;
  align-items: center;
}


.header_menu li:hover,
.header_menu li:focus-within {
  background: var(--clrBlackLight);
  cursor: pointer;
}

.header_menu li:focus-within a {
  outline: none;
}

.header_menu li ul {
  background: var(--clrBlack);
  visibility: hidden;
  opacity: 0;
  min-width: 10rem;
  position: absolute;
  transition: all 0.15s ease;
  left: 0;
  display: none;
  min-width: 200px;
}

.header_menu li:hover > ul,
.header_menu li:focus-within > ul,
.header_menu li ul:hover,
.header_menu li ul:focus {
  visibility: visible;
  opacity: 1;
  display: block;
}

.header_menu li ul li {
  clear: both;
  width: 100%;
}


.logo_button {
    color: white;
    background: var(--clrRed);
    border: none;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    margin: 10px;
    margin-left: auto;
}

/* Mobile header */
.header_mobile {
  background: var(--clrBlack);
  padding: 0 5em;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
  box-sizing: border-box;
}

@media (min-width: 960px) {
  .header_mobile {
    display: none;
  }
}

@media (max-width: 660px) {
  .header_mobile {
    padding: 0 1em;
  }
}


.header_mobile > .header_logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.header_mobile > .header_logo img {
  height: 20px;
  width: auto;
}

.header_mobile nav {
  display: none;
}

.mmenu_open {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100%;
}

.mmenu_open div {
  border: 1px solid white;
  height: 20px;
  width: 20px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  transition: all 0.15s ease-out;
}

.mm-ocd-opened .mmenu_open div {
  border: 2px solid transparent;
}

.mmenu_open span:nth-child(1),
.mmenu_open span:nth-child(2) {
  position: absolute;
  background: white;
  height: 1px;
  width: 135%;
  transform-origin: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.15s ease-out;
}

.mm-ocd-opened .mmenu_open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mm-ocd-opened .mmenu_open span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Custom skin */
.mmenu_header img {
  display: none;
}

.mm-spn--main img {
  padding: 20px;
  height: 20px;
      width: auto;
  display: block;
  box-sizing: content-box;
}

.mmenu_footer p {
  opacity: 0.5;
  margin-top: 0;
}