.navigation,
.navigation ul,
.navigation ul li,
.navigation ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation:after,
.navigation > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.navigation {
  width: auto;
  margin: auto;
  z-index: 100;
  float: left;
}
.navigation > ul > li {
  float: left;
  display: inline-block;
}
.navigation > ul > li > a {
  padding: 20px 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.2pt;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  transition: background .3s;
  -webkit-transition: background .3s;
  position: relative;
  height: 56px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.navigation > ul > li:last-child > a {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.navigation > ul > li:hover > a,
.navigation > ul > li > a:hover,
.navigation > ul > li.active > a/*,
.navigation > ul > li.current-menu-item a,
.navigation > ul > li.current_page_item a*/ {
  color: #000;
  background: #fff;
  box-shadow:  0px -3px 0px 0px #1B9CFC;
}
.navigation ul ul {
  position: absolute;
  left: -9999px;
  top: 60px;
  padding-top: 6px;
  font-size: 14px;
  opacity: 0;
  -webkit-transition: top 0.2s ease, opacity 0.2s ease-in;
  -moz-transition: top 0.2s ease, opacity 0.2s ease-in;
  -ms-transition: top 0.2s ease, opacity 0.2s ease-in;
  -o-transition: top 0.2s ease, opacity 0.2s ease-in;
  transition: top 0.2s ease, opacity 0.2s ease-in;
}
.navigation > ul > li > ul {
  top: 120px;
}
.navigation > ul > li:hover > ul {
  top: 56px;
  left: 0;
  opacity: 1;
  background: #FFF;
  border-bottom: 3px solid #1B9CFC;
  padding: 10px;
}
.navigation ul ul ul {
  padding-top: 0;
  padding-left: 0px;
}
.navigation ul ul > li:hover > ul {
  left: 250px;
  top: -10px;
  opacity: 1;
  background: #FFF;
  border-bottom: 3px solid #1B9CFC;
  z-index: 10;
  padding: 10px;
}
.navigation ul ul li a {
  text-decoration: none;
  font-weight: 400;
  padding: 10px;
  width: auto;
  min-width: 250px;
  white-space: nowrap;;
  width: auto;
  color: #000;
  border-bottom: 0;
  transition: all .2s;
  -webkit-transition: all .2s;
  font-size: 16px;
  position: relative;
}
.navigation ul ul li:hover > a,
.navigation ul ul li.active > a {
  color: #000;
  background: #f1f2f3;
}
.navigation > ul > li > ul::after {
  position: absolute;
  display: block;
}
.navigation ul ul li.has-sub > a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-left-color: #000;
  right: 17px;
  top: 18px;
}
.navigation ul ul li.has-sub.active > a::after,
.navigation ul ul li.has-sub:hover > a::after {
  border-left-color: #000;
}


nav .searchform {display: none; position: absolute; z-index: 10; width: 100%;right: 15px; top: 56px; }
nav .searchform-inner { padding: 10px; background: #ffffff; width: 100%; max-width: 320px; float: right;  border-bottom: 3px solid #1B9CFC;}
nav .searchform-inner input {border:0; padding: 14px; width: 80%; float: left; height: 46px; border: 1px solid #eee;}
nav .searchform-inner button {border:0; padding: 14px; width: 20%; float: left; height: 46px; background: #1b9cfc; color: #FFF;}
