@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);

@media screen and (max-width: 800px) {

#menu-box {
  display: none;
}

}

@media screen and (min-width: 801px) {

#menu-box {
  margin: 0;
  z-index: 1000 !important;
}

/* BEGIN */
.menu-WH,
.sub-menu-WH {
  list-style-type: none;
  margin: 0;
  padding: 0;
  z-index: 1000 !important;
}

.menu-WH li {
  background-color: #003399;
  cursor: pointer;
  position: relative;
  transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
  -webkit-transition: background-color .5s;
  /* IE lt 10, Chrome lt 1, Opera lt 11.6, Safari lt 3, FF lt 4, Android lt 2.1 и iOS lt 2.0 transition. */
}

.menu-WH li:hover {
  background-color: #006EB9 !important; /* .menu > li.home */
}

.menu-WH a {
  color: #FFF;
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-decoration: none;
  /*text-transform: uppercase;*/
  word-wrap: break-word;
}

.menu-WH a:hover {
  /* a:hover. */
  color: #FFF;
}
/* END */

/* BEGIN */
.menu-WH {
  /*  */
  height: 90px;
  width: 100%;
}

.menu-WH > li {
  float: left;
  height: 100%;
  width: 15%; /* calc. */
  width: calc((100% - 90px) / 8);
  width: -moz-calc((100% - 90px) / 8);
  width: -webkit-calc((100% - 90px) / 8);
  /* IE lt 9, Chrome lt 19, Opera lt 15, Safari lt 6, FF lt 4, Android calc. */
}

.menu-WH > li.home {
  background-color: #003399;
  width: 90px;
}

.menu-WH > li.current {
  background-color: #001E74 !important; /* !important VS .menu li:hover */
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  color: #003399 !important;
  /* IE lt 9, Chrome lt 1, Opera lt 10.5, Safari lt 3, FF lt 3.5, Android lt 2.1 и iOS lt 2.0 box-shadow. */
}

.menu-WH > li:not(:first-child) {
  box-shadow: inset 1px 0 0 0 #0369CE, inset 1px 0 0 0 #006EB9;
  -moz-box-shadow: inset 1px 0 0 0 #0369CE, inset 1px 0 0 0 #006EB9;
  -webkit-box-shadow: inset 1px 0 0 0 #0369CE, inset 1px 0 0 0 #006EB9;
}

.menu-WH > li.home > a {
  /* color: transparent !important; */
}

.menu-WH > li > a > span {
  left: 0; /* */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  /* IE lt 9, Chrome lt 5, Opera lt 10.5, Safari lt 3.1, FF lt 3.5, Android lt 2.1 и iOS lt 2.0 transform. */
}
/* END */

/* BEGIN */
.sub-menu-WH {
  max-height: 0;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 100%;
  transition: max-height .5s .2s;
  -moz-transition: max-height .5s .2s;
  -o-transition: max-height .5s .2s;
  -webkit-transition: max-height .5s .2s;
}

li:hover > .sub-menu-WH {
  max-height: 600px;
}

.sub-menu-WH li {
  height: 60px;
  border-top: solid 1px #0369CE;  
  margin-left: 5px;
  margin-right: 5px;
}

.sub-menu-WH a {
  line-height: 60px;
  transition: color .5s;
  -moz-transition: color .5s;
  -o-transition: color .5s;
  -webkit-transition: color .5s;
  white-space: nowrap;
}

.sub-menu-WH li.current a,
.sub-menu-WH a:hover {
  background-color: #001E74 !important; /* !important VS .menu li:hover */
  color: #FFF !important; /* !important VS .menu a:hover */
}
/* END */

}