header {
    /* background-color: #212831; */
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 2;
  }
  @media (max-width: 800px) {
    header {
      padding-top: 5px;
      padding-bottom: 5px;
    }
  }
  header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  header .header-wrapper {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
    height: 40px;
  }
  header .header-wrapper .logo {
    float: left;
    height: 100%;
  }
  @media (max-width: 800px) {
    header .header-wrapper .logo {
      float: right;
    }
  }
  header .header-wrapper img {
    max-height: 100%;
  }
  header .header-wrapper:after {
    content: '';
    clear: both;
    display: block;
  }
  header .header-wrapper .button {
    margin-top: 1px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  header .header-wrapper nav {
    float: right;
    overflow: auto;
  }
  header .header-wrapper nav a {
    display: inline-block;
    color: #190147;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-right: 20px;
    font-weight: 600;
    cursor: pointer;
    min-width: 60px;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    text-decoration-line: none;
    border: unset;
  }

  header .header-wrapper nav a:last-of-type {
    margin-right: 0;
  }
  header .header-wrapper nav a.active {
    font-weight: 700;
    border-bottom: 2px solid;
    font-size: initial;
    line-height: unset;
  }
  @media (max-width: 800px) {
    header .header-wrapper nav {
      position: fixed;
      width: 70%;
      max-width: 350px;
      left: 0;
      transform: translate(-105%, 0);
      background-color: #f9f9f9;
      top: 50px;
      height: calc(100% - 50px);
      z-index: 1;
      transition: 0.3s;
      overflow: hidden;
      box-shadow: 1px 1px 1px #190147;
    }
    header .header-wrapper nav a {
      display: block;
      border-bottom: 1px solid #190147;
      margin-right: 0;
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px;
    }
    header .header-wrapper nav a:not(.button) {
      color: #3f505f;
    }
    header .header-wrapper nav a:not(.button):hover {
      color: #3f505f;
    }
    header .header-wrapper nav a.active {
      background-color: #efefef;
    }
    header .header-wrapper nav .button {
      display: block;
      margin-top: 15px;
      margin-bottom: 15px;
      max-width: 250px;
      margin-left: auto;
      margin-right: auto!important;
    }
    header .header-wrapper .menu-toggler {
      display: inline-block;
    }
  }
  header .menu-toggler {
    display: none;
    cursor: pointer;
    float: left;
    z-index: 2;
    position: relative;
    padding: 8px 8px 8px 0;
    font-weight: 700;
    margin-right: 10px;
  }
  header .menu-toggler * {
    vertical-align: middle;
  }
  header .menu-toggler .close-menu-icon {
    display: none;
  }
  header .mobile-navigation {
    position: fixed;
    width: 70%;
    max-width: 350px;
    left: 0;
    transform: translate(-105%, 0);
    background-color: #f9f9f9;
    top: 50px;
    height: calc(100% - 50px);
    z-index: 1;
    transition: 0.3s;
    overflow: hidden;
    box-shadow: 1px 1px 1px #190147;
  }
  header .mobile-navigation a {
    display: block;
    border-bottom: 1px solid #190147;
    margin-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  header .mobile-navigation a:not(.button) {
    color: #3f505f;
  }
  header .mobile-navigation a:not(.button):hover {
    color: #3f505f;
  }
  /* header .mobile-navigation a.active {
    background-color: #efefef;
  } */
  header .mobile-navigation .button {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto!important;
  }
  header .close-menu-wrapper {
    position: fixed;
    left: 0;
    top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    background: #190147;
    display: none;
    cursor: pointer;
  }
 
  body.menu-open nav {
    transform: translate(0%, 0);
    overflow: auto;
  }
  body.menu-open .close-menu-wrapper {
    display: block;
  }
  body.menu-open .close-menu-icon {
    display: inline;
  }
  body.menu-open .open-menu-icon {
    display: none;
  }
  /*Body padding top for sticky header*/
  body.menu-padding {
    padding-top: 64px;
  }
  @media (max-width: 800px) {
    body.menu-padding {
      padding-top: 50px;
    }
  }