/* =======================================================
   DUB FACTORY STUDIOS
   HEADER / NAVIGATION
======================================================= */

/* HEADER WRAPPER */

#fh5co-header-wrapper {
  position: relative;
  z-index: 1001;
}

/* MAIN NAV */

.fh5co-nav {
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 18px rgba(0,0,0,0.035);
  z-index: 1001;
}

.fh5co-nav .nav-row {
  display: flex;
  align-items: center;
}

/* LOGO */

#fh5co-logo {
  margin: 0 !important;
  text-align: left;
}

#fh5co-logo img {
  display: block;
  max-width: 225px;
  height: auto;
}

/* MENU */

.fh5co-nav .menu-1 {
  text-align: right;
}

.fh5co-nav ul {
  margin: 0;
  padding: 0;
}

.fh5co-nav ul li {
  list-style: none;
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

/* STANDARD NAV LINKS */

.fh5co-nav ul li a {
  position: relative;
  display: inline-block;

  padding: 12px 10px;

  color: #050505;

  font-size: 13px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: all 0.22s ease;
}

.fh5co-nav ul li a:hover,
.fh5co-nav ul li.active > a {
  color: #ff6a00;
  text-decoration: none;
}

/* ACTIVE UNDERLINE */

.fh5co-nav ul li.active > a:after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 2px;

  width: 24px;
  height: 3px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    #d71920,
    #ff6a00,
    #ffd447
  );

  border-radius: 999px;
}

/* =======================================================
   AUTH PILLS
======================================================= */

.fh5co-nav ul li.auth-link {
  margin-left: 8px;
}

.fh5co-nav ul li.auth-welcome {

  margin-left: 16px;

  color: #a0a0a0;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.02em;

  text-transform: none;
}

.fh5co-nav ul li.auth-link > a,
.fh5co-nav ul li.auth-link > a.dfs-nav-pill {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 30px;
  min-width: auto;

  padding: 0 12px;

  border-radius: 999px;

  border: 1px solid rgba(255,106,0,0.32);

  background: rgba(255,106,0,0.06);

  color: #ff6a00 !important;

  font-size: 9px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.06em;
  text-transform: uppercase;

  transition: all 0.18s ease;

  box-shadow: none;
}

/* AUTH HOVER */

.fh5co-nav ul li.auth-link > a:hover,
.fh5co-nav ul li.auth-link > a.dfs-nav-pill:hover {

  background: rgba(255,106,0,0.14);

  border-color: rgba(255,106,0,0.9);

  color: #ff9c4a !important;

  transform: translateY(-1px);

  text-decoration: none;
}

/* REMOVE ACTIVE UNDERLINE FROM PILLS */

.fh5co-nav ul li.auth-link > a:after,
.fh5co-nav ul li.auth-link.active > a:after {
  display: none !important;
}

/* =======================================================
   MOBILE NAV TOGGLE
======================================================= */

.fh5co-nav-toggle {

  position: absolute;

  top: 22px;
  right: 20px;

  width: 44px;
  height: 44px;

  cursor: pointer;

  z-index: 2001;

  display: none;

  border-bottom: none !important;
}

.fh5co-nav-toggle i {

  position: relative;

  display: inline-block;

  width: 25px;
  height: 2px;

  background: #050505;

  transition: all 0.2s ease-out;
}

.fh5co-nav-toggle i:before,
.fh5co-nav-toggle i:after {

  content: "";

  position: absolute;
  left: 0;

  width: 25px;
  height: 2px;

  background: #050505;

  transition: all 0.2s ease-out;
}

.fh5co-nav-toggle i:before {
  top: -7px;
}

.fh5co-nav-toggle i:after {
  bottom: -7px;
}

.fh5co-nav-toggle.active i {
  background: transparent;
}

.fh5co-nav-toggle.active i:before {
  top: 0;
  transform: rotate(45deg);
}

.fh5co-nav-toggle.active i:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* =======================================================
   OFFCANVAS MENU
======================================================= */

#fh5co-offcanvas {

  position: fixed;

  top: 0;
  right: 0;
  bottom: 0;

  width: 280px;

  padding: 70px 36px 40px;

  overflow-y: auto;

  background: #050505;

  z-index: 1901;

  display: none;

  transform: translateX(280px);

  transition: transform 0.35s ease;
}

.offcanvas #fh5co-offcanvas {
  transform: translateX(0);
}

#fh5co-offcanvas ul {
  margin: 0;
  padding: 0;
}

#fh5co-offcanvas ul li {
  list-style: none;
  margin-bottom: 18px;
}

#fh5co-offcanvas ul li a {

  color: rgba(255,255,255,0.72);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#fh5co-offcanvas ul li a:hover {
  color: #ffd447;
  text-decoration: none;
}

/* MOBILE AUTH LINKS */

#fh5co-offcanvas ul li.auth-link a,
#fh5co-offcanvas ul li.auth-user a,
#fh5co-offcanvas ul li.auth-guest a {
  color: #ff9c4a;
}

/* =======================================================
   RESPONSIVE
======================================================= */

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

  .fh5co-nav ul li a {
    padding: 12px 7px;
    font-size: 12px;
  }

  .fh5co-nav ul li.auth-link > a {
    min-width: 70px;
    padding: 0 12px;
    font-size: 9px;
  }
}

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

  .fh5co-nav {
    padding: 18px 0;
  }

  .fh5co-nav .nav-row {
    justify-content: space-between;
  }

  .fh5co-nav .menu-1 {
    display: none !important;
  }

  .fh5co-nav-toggle {
    display: block;
  }

  #fh5co-offcanvas {
    display: block;
  }

  #fh5co-logo img {
    max-width: 175px;
  }
}