/* Fixed header nav */

.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 100;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-clip: padding-box;
  border-bottom: solid 1px transparent;
}

.show-nav .header-fixed {
  transition-delay: 0s !important;
}

.header-fixed .row {
  margin-bottom: 0;
}

#preloader_container.loading .header-fixed {
  opacity: 0;
  transform: translateY(-100%);
}

#preloader_container.loaded .header-fixed {
  opacity: 1;
  transform: translateY(0);
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-timing-function: linear;
}

#main_content {
  margin-top: 6rem;
}

.header-fixed .hamburger {
  display: none;
}

.header-fixed .outher {
  height: auto;
  min-height: 3.3rem;
}

.hero_fullscreen .logo {
  height: 2rem;
  background: url(../images/pocketsmith_logo_purple.png);
  background-size: 12rem 2rem;
}

.scrolled .header-fixed,
.show-nav .header-fixed {
  background-color: white;
  border-bottom-color: rgba(0,0,0,.2);
}

.scrolled .header-fixed .logo,
.show-nav .header-fixed .logo {
  background-image: url(../images/pocketsmith_logo_purple.png) !important;
}

.scrolled .header-fixed .navigation > li > *,
.show-nav .header-fixed .navigation > li > * {
  color: #37095c !important;
}


.header-fixed .nav .navigation li.home { display: none; }
.show-nav .header-fixed .nav .navigation li.home { display: block; }

