/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/
.nav {
  position: relative;
  display: flex;
  width: 100%;
  flex: 1;
  justify-content: flex-end;
}
.nav-list {
  text-align: left;
}
.nav-item {
  float: left;
  *display: inline;
  zoom: 1;
  position: relative;
}
.nav-item a {
  display: block;
  color: #FFF;
  padding: 27px 15px;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
}
.nav-item > a:hover, .nav-item:hover > a {
  color: #BF8248;
}
.nav-item:hover .nav-submenu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
/* Navigation submenu */
.nav-submenu {
  display: block;
  z-index: 1;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  left: 0;
  top: calc(100% + 30px);
  transition: all ease-in-out 0.4s 0s;
  width: 240px;
  background: #232931;
}
.nav-submenu-item a {
  display: block;
  padding: 15px;
}
.nav-submenu-item a img {
  margin-right: 10px;
}
.nav-submenu-item a:hover {
  background: #09090A;
  color: #fff
}
/* Mobile navigation */
.nav-mobile {
  display: none; /* Hide from browsers that don't support media queries */
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0;
  background: url(../images/nav.png) no-repeat center center;
  background-size: 24px;
  height: 60px;
  width: 50px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  height: 49px;
  width: 50px;
  cursor: pointer;
}
.nav-click i {
  display: block;
  height: 48px;
  width: 48px;
  background: url(../images/menu-arrow.svg) no-repeat center center;
}
.nav-rotate {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*------------------------------------*\
    Media Queries
\*------------------------------------*/
@media (max-width: 767px) {
  .nav-mobile {
    display: block;
  }
  .nav {
    position: static
  }
  .nav-list {
    display: none;
    position: absolute;
    left: 0;
    background: #232931;
    right: 0;
    top: 60px;
    z-index: 99;
  }
  .nav-item {
    width: 100%;
    float: none;
  }
  .nav-item > a {
    padding: 15px;
  }
  .nav-click {
    display: block;
  }
  .nav-item:hover .nav-submenu {
    display: none;
  }
  .nav-submenu {
    position: static;
    width: 100%;
    background: #09090A;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-item > a .submenu-arrow {
    display: none;
  }
}