/* ///// NAVIGATION ///// */



#responsive-navigation ul.menu li {
    float: none;
}

#responsive-navigation ul.menu a, #responsive-navigation span.separator {
    font-size: 1em;
    display: flex;
    padding: 10px 0px 10px 0px;
    border-bottom: solid 1px #484848;
    color: #b5b5b5;
    background: transparent;
    transition: all ease .5s;
}

#responsive-navigation ul.menu a:hover, #responsive-navigation span.separator:hover {
    background: #fc0;
    color: #fff;
    padding: 10px 0px 10px 10px;
}

#responsive-navigation li.current.active a {
    color: #fc0;
}

#responsive-navigation ul.nav-child.unstyled.small {
    position: relative;
}

#responsive-navigation ul.menu li ul.nav-child.unstyled.small li {
    border-bottom: 0px;
}

#responsive-navigation ul.menu li ul.nav-child.unstyled.small li ul {
    left: 5%;
}

#navbar, #navbar-responsive {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    left: -100%;
    background: #191919;
    z-index: 10002;
    transition: all .3s ease-out;
}

#navbar.rollout, #navbar-responsive.rollout {
    left: 0;
    height: 100vh;
}

#navbar-menu, #navbar-menu-responsive {
    position: relative;
    padding: 16%;
}

.frame {
  display: flex;
  width: 100%;
  height: 100%;
}

.content {
  width: 75%;
  height: 100%;
}

.content.is-full-width {
  width: 100%;
}

#navbar h3, #navbar-responsive h3 {
    font-family: "effra-bold";
    color: #fbba00;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* /// STICKY /// */

#sticky, #sticky-responsive {
    position: fixed;
    width: 50px;
    height: 30px;
    z-index: 100001;
    top: 20px;
    right: 4%;
    cursor: pointer;
    transition: all .3s ease-out;
}

#sticky.rollout, #sticky-responsive.rollout {
    right: 4%;
}

#hamburger-1 {
    position: absolute;
    top: 0;
    right: 7px;
    margin-top: 0;
    transition: all ease .5s;
}

#hamburger-1.scrolled-nav {
    margin-top: 0px;
}

.hamburger .line1 {
    width: 40px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover .line1 {
    background-color: #fff;
}

.hamburger .line2 {
    width: 40px;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover .line2 {
    background-color: #fff;
}

.hamburger:hover, .hamburger-home:hover {
  cursor: pointer;
}

#hamburger-1.is-active .line1:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line1:nth-child(1){
    background-color: #ffca00;
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
    width: 40px;
    height: 3px;
    -webkit-animation: none;
    animation: none;
}

#hamburger-1.is-active .line1:nth-child(3){
    background-color: #ffca00;
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
    width: 40px;
    height: 3px;
    -webkit-animation: none;
    animation: none;
}

#hamburger-1.is-active .line2:nth-child(2){
  opacity: 0;
}


