#navigation {
    height: 30px; /* set to the height you want your menu to be */
    margin: 0 0 10px; /* just to give some spacing */
    font-family: "Open Sans";
    text-align: left
}
#navigation ul {
    margin: 0;
    padding: 0; /* only needed if you have not done a CSS reset */
}
#navigation li {
    display: inline-block;
    float: left;
    line-height: 30px; /* this should be the same as your #navigation height */
    height: 30px; /* this should be the same as your #navigation height */
    margin: 0;
    padding: 0; /* only needed if you don't have a reset */
    position: relative; /* this is needed in order to position sub menus */
}
#navigation li a {
    display: block;
    height: 30px;
    line-height: 30px;
    padding: 0 2vw;
    text-transform: uppercase;
}
#navigation li a:hover {
    text-decoration: none;
}
#navigation .current-menu-item a, #navigation .current_page_item a, #navigation ul ul li a:hover {
    font-weight: bold;
    text-decoration: none;
}

#navigation .current-menu-item .sub-menu a {
    font-weight: normal;
}

#navigation ul ul {

    /* this targets all sub menus */
    display: none; /* hide all sub menus from view */
    position: absolute;
    top: 30px; /* this should be the same height as the top level menu -- height + padding + borders */
}
#navigation ul ul li {

    /* this targets all submenu items */
    float: none; /* overwriting our float up above */
    width: 300px; /* set to the width you want your sub menus to be. This needs to match the value we set below */
}
#navigation ul ul li a {

    /* target all sub menu item links */
    padding: 5px 10px; /* give our sub menu links a nice button feel */
}
#navigation ul li:hover > ul {
    display: block; /* show sub menus when hovering over a parent */
}
#navigation ul ul li ul {

    /* target all second, third, and deeper level sub menus */
    left: 300px; /* this needs to match the sub menu width set above -- width + padding + borders */
    top: 0; /* this ensures the sub menu starts in line with its parent item */
}
#mobile-header {
    display: none;
}

.search-form {
    position: absolute;
    right: 20px;
    top: 1px;
}

.search-form label .fa-search {
    cursor: pointer;
}

.search-field {
    background-color: transparent;
    border: medium none;
    cursor: pointer;
    height: auto;
    margin: 3px 0;
    padding: 0 0 0 24px;
    position: relative;
    -webkit-transition: width 400ms ease 0s, background 400ms ease 0s;
    -o-transition: width 400ms ease 0s, background 400ms ease 0s;
    transition: width 400ms ease 0s, background 400ms ease 0s;
    width: 0;
}

.search-field:focus {
    background-color: #fff;
    border: 2px solid black;
    cursor: text;
    outline: 0;
    width: 230px;
}

.search-submit {
  display: none;
}

input[type="search"] {
  -webkit-appearance: textfield;
}


@media only screen and (max-width:767px) {
    #mobile-header {
        display: block;
    }
    #navigation {
        display: none;
    }

    a#responsive-menu-button {
        display: block;
    }
    #mobile-header .hamburger {
      background: transparent;
      display: block;
      position: relative;
      margin: 0;
      padding: 0;
      width: 40px;
      height: 25px;
      font-size: 0;
      text-indent: -9999px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      box-shadow: none;
      border-radius: none;
      border: none;
      cursor: pointer;
      -webkit-transition: background 0.3s;
              transition: background 0.3s;
    }

    #mobile-header .hamburger:focus {
      outline: none;
    }

    #mobile-header .hamburger span {
      display: inline-block;
      position: absolute;
      top: 11px;
      left: 0px;
      right: 0px;
      height: 3px;
      background-color: #000
    }

    #mobile-header .hamburger span::before,
    #mobile-header .hamburger span::after {
      position: absolute;
      display: block;
      left: 0;
      width: 100%;
      height: 3px;
      content: "";
      background-color: #000;
    }

    #mobile-header .hamburger span::before {
      top: -10px;
    }

    #mobile-header .hamburger span::after {
      bottom: -10px;
    }

    #mobile-header .hamburger span {
      -webkit-transition: background 0s 0.3s;
              transition: background 0s 0.3s;
    }

    #mobile-header .hamburger span::before,
    #mobile-header .hamburger span::after {
      -webkit-transition-duration: 0.3s, 0.3s;
              transition-duration: 0.3s, 0.3s;
      -webkit-transition-delay: 0.3s, 0s;
              transition-delay: 0.3s, 0s;
    }

    #mobile-header .hamburger span::before {
      -webkit-transition-property: top, -webkit-transform;
              transition-property: top, transform;
    }

    #mobile-header .hamburger span::after {
      -webkit-transition-property: bottom, -webkit-transform;
              transition-property: bottom, transform;
    }

    /* active state, i.e. menu open */
    #mobile-header .hamburger.is-active span {
      background: none;
    }

    #mobile-header .hamburger.is-active span::before {
      top: 0;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
    }

    #mobile-header .hamburger.is-active span::after {
      bottom: 0;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
    }

    #mobile-header .hamburger.is-active span::before,
    #mobile-header .hamburger.is-active span::after {
      -webkit-transition-delay: 0s, 0.3s;
              transition-delay: 0s, 0.3s;
    }
}

@media screen and (min-width: 768px){
    #navigation li a {
        padding: 0 1.8vw;
    }
}

@media screen and (min-width: 992px){
    #navigation li a {
        padding: 0 1.5vw;
    }
}

@media screen and (min-width: 1200px){
    #navigation li a {
        padding: 0 1.4vw;
    }
}