/* --------------------------------------------------------------
Menus
-------------------------------------------------------------- */
.menu-toggle {
    display: none;
}

@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
    }
}

.button-toggle {
    background: none;
    padding: 0;
    color: #fff;
}

.button-toggle span:not(:first-child) {
    display: none;
}

.button-toggle:hover, .button-toggle:active, .button-toggle:focus {
    box-shadow: none;
    color: #fff;
}

.drawer-menu-toggle {
    display: none;
}

@media (max-width: 1000px) {
    .drawer-menu-toggle {
        display: inline-block;
    }
}

.drawer-toggle-switch span:first-child {
    display: none;
}

.drawer-toggle-switch span:last-child {
    display: block;
}

/*.main-navigation {*/
/*    font-size: 17px;*/
/*    font-weight: 600;*/
/*    display: inline-block;*/
/*    width: 70%;*/
/*    vertical-align: top;*/
/*}*/

@media (max-width: 1000px) {
    .main-navigation {
        display: none;
    }
}

/*.top-navigation .main-navigation {*/
/*    display: inline-block;*/
/*    width: 100%;*/
/*    text-align: right;*/
/*}*/

@media (max-width: 1000px) {
    .top-navigation .main-navigation {
        display: none;
        border-bottom: none;
    }
}

.site-header .container {
    display: block;
}

.header-text {
    position: relative;
    z-index: 5;
    margin: 5% auto;
    text-align: center;
    max-width: 70%;
}

.header-text:empty,
.blog .header-text {
    display: none;
}

@media (max-width: 1000px) {
    .header-text {
        max-width: 100%;
        margin-bottom: 6%;
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .header-text {
        margin-bottom: 8%;
    }
}

.header-text:empty {
    margin-bottom: 0;
}

.header-text h1,
.header-text .browsing {
    color: #272c30;
    font-size: 34px;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 600;
}

@media only screen and (max-width: 500px) {
    .header-text h1,
    .header-text .browsing {
        font-size: 28px;
    }
}

.header-text p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    margin: 0 0 0 0;
}

@media (max-width: 1000px) {
    .header-text p {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .header-text p {
        font-size: 16px;
        margin-top: 3%;
    }
}

.header-text a {
    color: #0072e5;
    box-shadow: inset 0 -1px 0 #0072e5;
    transition: 0.3s ease;
}

.header-text a:hover {
    box-shadow: inset 0 -2px 0 #0072e5;
    color: #0072e5;
}

.header-text .entry-subtitle,
.header-text .entry-byline {
    margin-top: 1%;
    width: 100%;
}

.archive.author .browsing {
    display: none;
}

.search-results .browsing {
    display: none;
}

.text-empty {
    display: none;
}

.header-text h2:empty,
.header-text p:empty {
    display: none;
}

.top-navigation {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 10;
}

/*.top-navigation-right {*/
/*    float: right;*/
/*    display: inline-block;*/
/*    max-width: 70%;*/
/*}*/

@media (max-width: 1000px) {
    .top-navigation-right {
        display: none;
    }
}

#secondary-navigation {
    display: inline-block;
    width: 60%;
}

.drawer #secondary-navigation {
    width: 100%;
    font-size: 14px;
}

.drawer #secondary-navigation .menu-item-has-children .toggle-sub {
    font-size: 17px;
}

.drawer #secondary-navigation li ul li a {
    font-size: 14px;
}

@media (max-width: 1000px) {
    .top-navigation #secondary-navigation {
        display: none;
    }
}

.top-navigation .secondary-navigation ul li {
    font-size: 14px;
    margin-right: 15px;
    padding: 0;
}

.top-navigation .secondary-navigation ul li a {
    padding: 12px 0;
    border-bottom-width: 0;
    margin: 0;
}

.top-navigation .secondary-navigation ul li .sub-menu a {
    padding: 12px 15px;
}

.secondary-navigation ul.sub-menu {
    background: #272c30;
    top: 52px;
    left: -15px;
    border: none;
}

.secondary-navigation ul.sub-menu li {
    margin-right: 0;
    padding: 0;
}

.secondary-navigation ul.sub-menu li a {
    font-size: 14px;
}

.secondary-navigation ul.sub-menu li a:hover {
    color: #fff;
    opacity: 1;
}

.main-navigation a {
    color: #272c30;
}

.main-navigation a:hover {
    color: #0072e5;
}

.main-navigation ul {
    margin: 0;
}

/*.main-navigation ul li {*/
/*    display: inline-block;*/
/*    list-style-type: none;*/
/*    padding: 0 15px;*/
/*    position: relative;*/
/*}*/

/*.main-navigation ul li a {*/
/*    display: inline-block;*/
/*    margin: 0 0 10px 0;*/
/*    line-height: 2;*/
/*}*/

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-page-item a {
    color: #0072e5;
}

.main-navigation ul li.current-menu-item ul a,
.main-navigation ul li.current-page-item ul a {
    color: #b8bfcb;
}

.main-navigation ul .sub-menu li.current-menu-item a,
.main-navigation ul .sub-menu li.current-page-item a {
    color: #fff;
}

.main-navigation .menu-cta a {
    border-radius: 5px;
    color: #fff;
    padding: 4px 12px;
    background: #272c30;
}

.main-navigation .menu-cta a:hover {
    color: #fff;
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.25);
    -webkit-box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.25);
}

/*.site-identity .main-navigation ul {*/
/*    line-height: 3;*/
/*}*/

.site-header .menu-item-has-children,
.site-header .page_item_has_children {
    position: relative;
}

.site-header .menu-item-has-children a,
.site-header .page_item_has_children a {
    position: relative;
}

@media (max-width: 1000px) {
    .site-header .menu-item-has-children > a::after,
    .site-header .page_item_has_children > a::after {
        display: none;
        pointer-events: none;
    }
}

.sub-menu .menu-item-has-children > a::after,
.sub-menu .page_item_has_children > a::after {
    content: "\e906";
    font-family: gbicons;
    /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
    float: right;
}

.widget .sub-menu .menu-item-has-children > a::after,
.widget .sub-menu .page_item_has_children > a::after {
    display: none;
}

.secondary-navigation .menu-item-has-children::after,
.secondary-navigation .page_item_has_children::after {
    color: #a6b5c1;
    top: 15px;
}

.drawer .menu-item-has-children .toggle-sub {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    padding: 13px 0;
    line-height: 1.4;
    text-align: center;
    z-index: 75;
    display: block;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: #424851;
    border-radius: 0;
}

.drawer .menu-item-has-children .toggle-sub:hover {
    box-shadow: none;
    color: #fff;
}

.drawer .drawer-navigation .drop-open ul.drop-active {
    display: block;
}

.site-header .menu-item-has-children:hover,
.main-navigation li:focus-within {
    cursor: pointer;
}

.site-header .menu-item-has-children:hover ul,
.main-navigation li:focus-within ul {
    animation-name: fadeIn;
}

.main-navigation .sub-menu,
.main-navigation .children {
    position: absolute;
    width: 200px;
    top: 52px;
    text-align: left;
    font-weight: 400;
    font-size: 13px;
    margin: 0;
    background: #15171a;
    left: -999em;
    z-index: 100;
    border-radius: 3px;
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

.main-navigation li ul {
    z-index: 100;
}

.main-navigation li ul li {
    padding: 0;
    margin: 0;
    width: 100%;
    margin-top: 0;
    border-top: none;
    transition: 0.3s ease;
}

.main-navigation li ul li:hover {
    background: rgba(255, 255, 255, 0.02);
    border-top: none;
}

.main-navigation li ul li:hover ul {
    left: 100%;
}

.main-navigation li ul li:last-child a {
    border-bottom: none;
}

/*.main-navigation li ul a,*/
/*.main-navigation li ul li a {*/
/*    width: 100%;*/
/*    display: inline-block;*/
/*    border-bottom: dotted 1px rgba(255, 255, 255, 0.15);*/
/*    padding: 15px 20px;*/
/*    margin: 0;*/
/*    font-weight: 300;*/
/*    text-transform: none;*/
/*    line-height: 1.6;*/
/*    color: #b8bfcb;*/
/*}*/

.main-navigation li ul a:hover,
.main-navigation li ul li a:hover {
    color: #fff;
}

.main-navigation li ul li ul {
    padding: 0;
}

.main-navigation ul ul {
    top: 0;
}

.main-navigation ul ul ul {
    left: -999em;
}

.main-navigation li ul ul.sub-menu,
.main-navigation li ul ul.children {
    top: 0;
    margin: 0;
    z-index: 50;
    position: absolute;
    margin-left: 1px !important;
}

.main-navigation li ul ul.sub-menu::before,
.main-navigation li ul ul.children::before {
    display: none;
}

.main-navigation li.focus > ul,
.main-navigation li:hover > ul,
.main-navigation li:focus-within > ul,
.main-navigation li li a:hover > ul {
    left: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul,
.main-navigation ul ul li:focus-within > ul {
    left: 100%;
}

/*.site-header .sub-menu::before {*/
/*    position: absolute;*/
/*    top: -8px;*/
/*    left: 50%;*/
/*    margin-left: -8px;*/
/*    content: " ";*/
/*    display: block;*/
/*    border-right: 8px solid transparent;*/
/*    border-bottom: 8px solid #181c1f;*/
/*    border-left: 8px solid transparent;*/
/*}*/

/* Mobile navigation */
/*.mobile-navigation {*/
/*    display: none;*/
/*    width: 100%;*/
/*    padding: 15px;*/
/*    background: #0072e5;*/
/*    transition: 0.2s ease;*/
/*    text-align: center;*/
/*}*/

.mobile-navigation button {
    width: 100%;
}

@media (max-width: 1000px) {
    .mobile-navigation {
        display: inline-block;
    }
}

.toggle-active {
    background: #0072e5;
}

.drawer .drawer-navigation {
    width: 100%;
    max-width: 100%;
    z-index: 40;
    position: relative;
}

@media (max-width: 1000px) {
    .drawer .drawer-navigation {
        font-size: 17px;
        display: inline-block;
    }
}

.drawer .drawer-navigation .menu {
    margin: 0;
}

.drawer .drawer-navigation ul {
    margin: 0;
    padding: 0;
}

.drawer .drawer-navigation ul li {
    width: 100%;
    padding: 0 0;
    list-style-type: none;
    border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
    transition: none;
    position: relative;
    z-index: 50;
    border-top: none;
}

.drawer .drawer-navigation ul li:hover {
    border-top: none;
}

.drawer .drawer-navigation ul li:last-child {
    border-bottom: none;
}

.drawer .drawer-navigation ul li a {
    display: inline-block;
    padding: 15px 10px 15px 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-bottom: none;
    position: relative;
    transition: none;
}

.drawer .drawer-navigation a {
    color: #fff;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 0;
    line-height: 1.4;
}

.drawer .drawer-navigation a:hover {
    color: #fff;
}

.drawer .drawer-navigation .sub-menu,
.drawer .drawer-navigation .children {
    display: none;
    position: relative;
    width: 100%;
    left: 0;
    top: auto;
    margin: 0 0 0 15px;
    padding: 0 15px 0 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.drawer .drawer-navigation .sub-menu::before,
.drawer .drawer-navigation .children::before {
    display: none;
}

.drawer .drawer-navigation li ul a,
.drawer .drawer-navigation li ul li a {
    padding: 15px 0;
}

.drawer .drawer-navigation .sub-menu li:first-child {
    border-top: dotted 1px rgba(255, 255, 255, 0.2);
}

.drawer nav {
    padding: 2% 0 0 0;
}

/* Mobile navigation */
/*.mobile-navigation {*/
/*    display: none;*/
/*    width: 100%;*/
/*    padding: 15px;*/
/*    background: #0072e5;*/
/*    transition: 0.2s ease;*/
/*    text-align: center;*/
/*}*/

.mobile-navigation button {
    width: 100%;
}

@media (max-width: 1000px) {
    .mobile-navigation {
        display: inline-block;
    }
}

.toggle-active {
    background: #0072e5;
}

.drawer .drawer-navigation {
    width: 100%;
    max-width: 100%;
    z-index: 40;
    position: relative;
}

@media (max-width: 1000px) {
    .drawer .drawer-navigation {
        font-size: 17px;
        display: inline-block;
    }
}

.drawer .drawer-navigation .menu {
    margin: 0;
}

.drawer .drawer-navigation ul {
    margin: 0;
    padding: 0;
}

.drawer .drawer-navigation ul li {
    width: 100%;
    padding: 0 0;
    list-style-type: none;
    border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
    transition: none;
    position: relative;
    z-index: 50;
    border-top: none;
}

.drawer .drawer-navigation ul li:hover {
    border-top: none;
}

.drawer .drawer-navigation ul li:last-child {
    border-bottom: none;
}

.drawer .drawer-navigation ul li a {
    display: inline-block;
    padding: 15px 10px 15px 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    border-bottom: none;
    position: relative;
    transition: none;
}

.drawer .drawer-navigation a {
    color: #fff;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 0;
    line-height: 1.4;
}

.drawer .drawer-navigation a:hover {
    color: #fff;
}

.drawer .drawer-navigation .sub-menu,
.drawer .drawer-navigation .children {
    display: none;
    position: relative;
    width: 100%;
    left: 0;
    top: auto;
    margin: 0 0 0 15px;
    padding: 0 15px 0 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.drawer .drawer-navigation .sub-menu::before,
.drawer .drawer-navigation .children::before {
    display: none;
}

.drawer .drawer-navigation li ul a,
.drawer .drawer-navigation li ul li a {
    padding: 15px 0;
}

.drawer .drawer-navigation .sub-menu li:first-child {
    border-top: dotted 1px rgba(255, 255, 255, 0.2);
}

.drawer nav {
    padding: 2% 0 0 0;
}

.drawer-wrap {
    position: relative;
}

.drawer {
    padding: 10px 0 15px 0;
    background: #22262a;
    background: rgba(21, 23, 26, 0.7);
    font-size: 16px;
    display: none;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    overflow-x: hidden;
}

@media only screen and (min-width: 1000px) {
    .drawer {
        display: none !important;
    }
}

.drawer-menu-explore {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 1000px) {
    /*.drawer-menu-explore {*/
    /*    background: #272c30;*/
    /*    padding: 15px 5% 30px 5%;*/
    /*}*/
}

.drawer-menu-explore .container {
    padding: 0;
}

.show-drawer {
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    display: inline-block !important;
}

.admin-bar .drawer-open .drawer {
    margin-top: 35px;
}