/* Header Area */
.header{
    box-sizing: border-box;
    display: block;
    position: relative;
    padding: 6px 20px 20px;
    max-height: 64px; /* max height for mobile bar */
    min-height: 64px; /* min height for mobile bar */
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 220;
    position: fixed;
}
body.menu-open .header{
    max-height: 100%;
    min-height: 100%;
    overflow-y: scroll;
}
body.menu-open{
    overflow: hidden;
}
#page{
    padding-top: 64px; /* alter page padding for absolute header */
}

.logo{
    display: block;
    overflow: hidden;
    text-indent: -500px;
    width: 170px;
    height: 120px;
    margin: 0 auto 16px;
    background: url('../images/logos/bizkids-logo.svg');
    background-size: 170px;
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -85px;
}
.header .menu-icon{
    position: absolute;
    overflow: hidden;
    text-indent: -1200px;
    top: 20px;
    right: 20px;
    background: none;
    width: 32px;
    height: auto;
    cursor: pointer;
}
.menu-icon .menu-name{
    display: none;
}
.menu-icon .menu-bar{
    display: block;
    background: #fff;
    border-radius: 10px;
    height: 4px;
    margin: 0 0 6px 0;
}
.menu-icon .menu-bar:last-child{
    margin: 0;
}

.skip-to-content{
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    z-index: 100;
    padding: 6px;
    transition: ease-in 200ms;
}
.skip-to-content:focus{
    top: 0;
}

/* main mobile nav */
.nav-container{
    display: none;
}
body.menu-open .nav-container{
    display: block;
    padding-top: 140px;
}

.header-newsletter-cta{
    display: none;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    padding-top: 60px;
    max-width: 370px;
    margin: 0 auto;
    -webkit-transition: all 100ms ease-out;
}
    body.menu-open .header-newsletter-cta{
        display: block;
    }
    .header-newsletter-vault{
        display: block;
        overflow: hidden;
        text-indent: -1200px;
        width: 160px;
        height: 160px;
        margin: 0 auto;
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -80px;
        background-image: url('../images/icons/vault.png');
        background-position: 50% 0;
        background-repeat: no-repeat;
    }
    .header-newsletter{
        border: 4px solid rgba(100, 100, 100, 1);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.24);
        background: #fff;
        padding: 100px 20px 20px;
        border-radius: 8px;
    }
    .header-newsletter .newsletter-copy{
        font-family: 'Patua One', helvetica, arial, sans-serif;
        font-size: 20px;
        line-height: 1.2em;
        color: #000;
        cursor: pointer;
        padding: 0 0 16px 0;
    }
    .header-newsletter-icon{
        display: block;
        overflow: hidden;
        text-indent: -1200px;
        width: 40px;
        height: 40px;
        margin: 0 auto;
        background-image: url('../images/icons/arrow-circle-green.svg');
        background-size: 100%;
        background-position: 50% 0;
        background-repeat: no-repeat;
    }
    .header-newsletter-cta:hover .newsletter-copy{
        color: #b0bb2e;
        color: #333;
    }
    .header-newsletter span{
        display: block;
    }


/* search */
.search-form{
    position: relative;
}
.search-form label{
    display: block;
    font-size: 10px;
    line-height: 10px;
    text-align: left;
    position: absolute;
    padding: 10px 0 0 20px;
    top: 0;
    left: 0;
    z-index: 1;
}
.search-form .input-text{
    font-family: 'Patua One', helvetica, arial, sans-serif;
    display: block;
    position: relative;
    box-sizing: border-box;
    border: 0;
    width: 100%;
    max-height: 0 auto;
    font-size: 20px;
    line-height: 32px;
    padding: 10px 24px;
    z-index: 10;
}
.search-form .input-text::placeholder{
    color: rgba(153, 153, 153, 0.64);
}
.search-form .input-submit{
    display: none;
}

/* Navigation */
.menu-header{
    font-family: 'Patua One', helvetica, arial, sans-serif;
}
.menu-header .menu{
    padding: 20px 0;
}
.menu-header ul{}
.menu-header ul li{}
.menu-header a{
    font-size: 24px;
    line-height: 40px;
    text-transform: lowercase;
    color: #fff;
    display: block;
    position: relative;
    padding: 16px 10px;
}
.menu-header a:hover,
.menu-header a:focus{
    color: #d0e01c;
}
.menu-header .current-menu-item a{
    color: #fff;
}

.sub-menu{
    display: none;
}