header #nav-header {
  height: 50px;
  color: white;
  background: #a41521;
  position: relative;
}

header #nav-header img {
  height: 22px;
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 14px 0px;
}

header #nav-header ul {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

header #nav-header ul li {
  list-style: none;
}

header #nav-header ul li:not(:last-child) {
  margin-right: 24px;
}

header #nav-header ul li a {
  color: white;
  line-height: 50px;
  font-weight: bold;
}

header #nav-header ul li.icon_close {
  display: none;
}

@media screen and (max-width: 830px) {
  header #nav-header ul {
    display: none;
  }
  header #nav-header ul.opened {
    width: 100vw;
    height: 100vh;
    background: #a41521;
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  header #nav-header ul.opened li {
    margin-right: 0px;
  }
  header #nav-header ul.opened .icon_close {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
  }
  header #nav-header ul.opened .icon_close::before {
    display: block;
    content: "\00d7";
    color: #fff;
    font-size: 40px;
    font-family: Arial, sans-serif;
  }
}

header #div_menu_icon {
  display: none;
  width: 30px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 16px;
  cursor: pointer;
}

header #div_menu_icon div {
  width: 100%;
  border-bottom: 3px solid white;
  position: absolute;
}

header #div_menu_icon div:first-child {
  top: 0px;
}

header #div_menu_icon div:nth-child(2) {
  width: 80%;
  top: calc(50% - 2px);
  right: 0px;
}

header #div_menu_icon div:last-child {
  width: 60%;
  bottom: 0px;
  right: 0px;
}

@media screen and (max-width: 830px) {
  header #div_menu_icon {
    display: block;
  }
}
/*# sourceMappingURL=header.css.map */