html {
    font-size: 62.5%;
}

.row {
    max-width:1280px;
    width:100%;
    margin:0 auto;
}

/*------------------------------------*\
    GRIDS
\*------------------------------------*/

.sml-full {
    width:100%;
}

@media only screen and (min-width:480px) {

    .med-full {
        width:100%;
    }

    .med-1-2 {
        width:50%;
    }

    .med-1-2-spaced {
        width:48%;
    }

    .med-1-3-spaced {
        width:33%;
    }


}

@media only screen and (min-width:950px) {

    .lrg-4-6 {
        width:85%;
    }
    
    .lrg-4-5 {
        width:80%;
    }

    .lrg-3-4 {
        width:75%;
    }

    .lrg-2-3 {
        width:66.6%;
    }

    .lrg-3-5 {
        width:60%;
    }

    .lrg-1-2 {
        width:50%;
    }

    .lrg-2-5 {
        width:40%;
    }

    .lrg-1-3 {
        width:33.3%;
    }

    .lrg-1-4 {
        width:25%;
    }

    .lrg-1-5 {
        width:20%;
    }

    .lrg-1-6 {
        width:15%;
    }
/*------------------------------------*\
   Spaced Grids
\*------------------------------------*/

    .lrg-3-4-spaced {
        width:74%;
    }

    .lrg-3-5-spaced {
        width:65%;
    }

    .lrg-2-3-spaced {
        width:58%;
    }

    .lrg-1-2-spaced {
        width: 49%;
    }

    .lrg-2-5-spaced {
        width:38%;
    }

    .lrg-1-3-spaced {
        width:30.8%;
    }

    .lrg-1-4-spaced {
        width:23%;
    }
        
    .lrg-full-height {
        height:100%;
    }
}

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

    .lrg-pad-top {
        padding-top: 75px;
    }



}



.float-L {
    float:left;
}
.clear:before, .clear:after {
    content: ' ';
    display: table;
}

/*------------------------------------*\
   FLEX CLASSES
\*------------------------------------*/

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.row-r {
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
            flex-direction: row-reverse;
}

.col {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            flex-direction: column;
}

.col-r {
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            flex-direction: column-reverse;
}

.wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.wrap-r {
    -webkit-flex-wrap:wrap-reverse;
        -ms-flex-wrap:wrap-reverse;
            flex-wrap:wrap-reverse;
}

.start-y {
    -webkit-align-items: flex-start;
            -webkit-box-align: start;
                -ms-flex-align: start;
            align-items: flex-start;
}

.center-y {
    -webkit-align-items: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
            align-items: center;
}

.stretch {
    -webkit-box-align:stretch;
    -webkit-align-items:stretch;
        -ms-flex-align:stretch;
            align-items:stretch;
}

.start-x {
    -webkit-justify-content: flex-start;
            -webkit-box-pack: start;
                -ms-flex-pack: start;
            justify-content: flex-start;
}

.center-x {
    -webkit-justify-content: center;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
            justify-content: center;
}


.spaced-b {
    -webkit-justify-content: space-between;
            -webkit-box-pack: justify;
                -ms-flex-pack: justify;
            justify-content: space-between;
}

.spaced-a {
    -webkit-justify-content: space-around;
            -ms-flex-pack: distribute;
        justify-content: space-around;
     
}

/*------------------------------------*\
    MENUS
\*------------------------------------*/


header.main-header {
    background: #151515;
    z-index: 9999999;
    position: relative;
}


.main-header section {
    height: 120px;
    padding: 0 10px 0 0;
}
.main-header .logo, .main-header nav {
    height: 100%;
}

.logo {
    width: 25%;
    text-align: center;
}

.logo .inner {
    height: 100%;
}

.logo img {
    display: inline-block;
    max-width: 279px;
    width:100%;
}

header.main-header nav, #mobile-nav .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#mobile-nav .inner {
    height:100%;
}

nav {
    width:75%;
}

header.main-header nav a, #mobile-nav a {
    color: #cacaca;
    text-align: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-left:2px solid #2f3030;
    -webkit-transition:.3s ease-in-out;
    -o-transition:.3s ease-in-out;
    transition:.3s ease-in-out;
     position: relative;
  opacity:1 !important;
}
header.main-header nav a:hover {
    background: #2f3030;
}
header.main-header nav a:after {
    z-index: 99999999999;
    content: '';
    width: 50%;
    height: 30px;
    background: #2f3030;
    position: absolute;
    bottom: -29px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    -webkit-transition:ease all 300ms;
    -o-transition:ease all 300ms;
    transition:ease all 300ms;
    opacity: 0;
        -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
header.main-header nav a.active:after {
    opacity:1;
        -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
header.main-header nav a.active, #mobile-nav a.active {
    color:#ffd63a;
     background: #2f3030;
}


header.main-header nav a.active svg, #mobile-nav a.active svg {
    fill:#ffffff;
}

header.main-header nav a img {
    margin-bottom: 5px;
}

header.main-header nav a span {
    line-height: 1;
   font-size: 13px;
   text-transform: uppercase;
   max-width: 85%;
   padding: 5px 0px;
     color: white;
}

header.main-header nav a span. #mobile-nav a span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}


nav#mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding-top:90px;
    -ms-overflow-y: auto;
        overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

nav#mobile-nav .inner > * {
    -webkit-box-flex:1;
    -webkit-flex:1 100%;
        -ms-flex:1 100%;
            flex:1 100%;
}

#mobile-nav a {
    border-left:0;
    border-top:3px solid #333;
}

#mobile-nav a > div {
    max-width: 217px;
}
.modal a {
    color: #f9dd16 !important;
}

/* Styles for when 3rd and 4th mobile item are 50% width */

/*#mobile-nav a:nth-of-type(-n+3) {
    padding: 10px 0;
}


#mobile-nav a:nth-of-type(4), #mobile-nav a:nth-of-type(5) {
    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
}

#mobile-nav a:nth-of-type(4) h4, #mobile-nav a:nth-of-type(5) h4 {
    font-size: 2rem;
    margin-top: 10px;
}

#mobile-nav a:nth-of-type(4) {
   border-right: 3px solid #333;
}



#mobile-nav a:nth-of-type(-n+3), #mobile-nav a:last-of-type {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}

#mobile-nav a:nth-of-type(-n+3) > div, #mobile-nav a:last-of-type > div {
    text-align: left;
    margin-left: 25px;
}
---------------------------

/* Styles for when all mobile items are 100% width */

#mobile-nav a > div {
    text-align: left;
    margin-left: 25px;
}

#mobile-nav a {
      -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}

/*-------------------------*/

#mobile-nav a {
    height:auto;
}

#mobile-nav h4 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    font-size: 2.2rem;
    margin: 0px;
    font-weight: bold;
    line-height: 1;
}

#mobile-nav a span {
    font-size: 1.5rem;
    color: #fff;
}

#mobile-nav svg {
    fill:#7b7b7b;
    width: 100%;
    max-width: 50px;
}

a.look-box {
    background: #fff;
}
.look-box h4, .look-box span {
    color: #000 !important;
}

a.look-box svg {
    fill: #000 !important;
}
a.look-box {
    background: #fff !important;
}

.main-header svg {
    width: 100%;
    fill: #ffd63a;
    padding-bottom: 5px;
     max-width: 45px;
    -webkit-transition:.3s ease-in-out;
    -o-transition:.3s ease-in-out;
    transition:.3s ease-in-out;
}
nav#mobile-nav a:hover {
    background: #2f3030;
}



/*------------------------------------*\
    MODAL
\*------------------------------------*/

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:99999;
    -webkit-transition: 400ms cubic-bezier(0.91, 0, 0.13, 1);
    -o-transition: 400ms cubic-bezier(0.91, 0, 0.13, 1);
    transition: 400ms cubic-bezier(0.91, 0, 0.13, 1);
    background: #222222;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    z-index: 99999;
    padding-top: 120px;
    opacity: 1;
    -ms-overflow-y: auto;
        overflow-y: auto;  
    -webkit-overflow-scrolling: touch;   
}


.modal.not-active {
    z-index:-1;
    -webkit-transform: translateY(-20%);
        -ms-transform: translateY(-20%);
            transform: translateY(-20%);
    opacity:0;
}


.modal .inner {
    width:100%;
    height:100%;
    position:relative;
}

.modal .inner > .desc-box {
    -webkit-flex: 1;
        -ms-flex: 1;
            -webkit-box-flex: 1;
            flex: 1;
}



.modal .inner > .item-wrap {
    -webkit-flex: 3;
        -ms-flex: 3;
            -webkit-box-flex: 3;
            flex: 3;
}

.modal .inner > .close-wrap {
    -webkit-flex: 0 0 10%;
        -ms-flex: 0 0 10%;
            -webkit-box-flex: 0;
            flex: 0 0 10%;
}

.modal h4 {
    text-transform: uppercase;
    font-size: 3rem;
    line-height: 1.1;
}
.modal-item h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 2.5rem;
    color:white;
    margin:0px;
     letter-spacing: -1px;
}
.modal .desc-box {
    width: 100%;
    color: #ffffff;
    background: #222;
    text-align: left;
    padding: 0 15px;
}

.modal .desc-box h4 {
    color: #ffd63a;
     width: 100%;
     margin-bottom: 10px;
    text-transform: uppercase;
}

.modal .inner > .desc-box p {
    margin: 0 !important;
}

a.modal-item {
    -webkit-box-flex:1;
    -webkit-flex:1 100%;
        -ms-flex:1 100%;
            flex:1 100%;
    color: #ffffff;
    background: #2f3030;
    margin-bottom: 3px;
    outline: 3px solid #151515;
    -webkit-transition:.3s ease-in-out;
    -o-transition:.3s ease-in-out;
    transition:.3s ease-in-out;
    text-align: center;
}

a.modal-item > div {
    width: 100%;
    padding: 0 4vw;
}

a.modal-item:hover, a.modal-item:active {
    outline:3px solid #000 !important;
    background:#080808;
    color:#fff;
}

.close-wrap {
   width:100%;
   background:#222;
}

.close {
    width: 95px;
    height: 25px; 
    position: relative;
    cursor:pointer;
}

.close span:nth-of-type(-n+2) {
    width: 22%;
    height: 2px;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    background: #636363;
    display: block;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    border-radius: 15px;
}

.close span:first-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.close span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.close span:last-child, .back-wrap span {
    font-size: 2rem;
    color: #636363;
    line-height: .9;
    -webkit-transition: ease color 300ms;
    -o-transition: ease color 300ms;
    transition: ease color 300ms;
    float: right;
}
 .back-wrap span {
     padding-top: 4px;
}
.close span:last-child:hover, .back-wrap span:hover {
    color: #fde32c;
}
.back-wrap {
    display:none;
    cursor:pointer;
}

.back-wrap i {
    font-size: 2.5rem;
    color: #888;
    margin-right:10px;
}
/*------------------------------------*\
    MOBILE MENU BUTTON
\*------------------------------------*/
.mobile-button-wrap {
    position: absolute;
    top: 43%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 25px;
    cursor: pointer;
    z-index: 9999;
    display: none;
}


.mobile-button-wrap {
    width: 34px;
    height: 30px;
}
.mobile-button-wrap:after {
    content: 'MENU';
    display: block;
    color: white;
    font-size: 9px;
    width: 100%;
    text-align: center;
    padding-top: 2px;
}
.mobile-button-wrap .mobile-btn {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 100%;
    /*transform:rotateY(0deg);*/
    -webkit-transition:all .3s ease-in-out;
    -o-transition:all .3s ease-in-out;
    transition:all .3s ease-in-out;
}


.mobile-btn span {
    height: 4px;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    display: inline-block;
    border-radius: 0;
    -webkit-transition:all .6s ease-in-out;
    -webkit-transition:all .3s ease-in-out;
    -o-transition:all .3s ease-in-out;
    transition:all .3s ease-in-out;
    -webkit-transition-delay:.2s;
    -o-transition-delay:.2s;
       transition-delay:.2s;
    
}

.mobile-btn span:first-child {
    top: 0;
    -webkit-transform:translateY(0) rotate(0);
            -ms-transform:translateY(0) rotate(0);
        transform:translateY(0) rotate(0);
}

.mobile-btn span:nth-of-type(2) {
    top: 50%;
    opacity: 1;
    -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
            transform: translate(0,-50%);
}

.mobile-btn span:nth-of-type(3) {
    top: 100%;
    -webkit-transform:translateY(-100%) rotate(0);
            -ms-transform:translateY(-100%) rotate(0);
        transform:translateY(-100%) rotate(0);
}


.mobile-btn.open-mobile {
    -webkit-transform:rotateY(180deg);
            transform:rotateY(180deg);
}

.mobile-btn.open-mobile span:first-child {
    -webkit-transform:translateY(.95em) rotate(45deg);
            -ms-transform:translateY(.95em) rotate(45deg);
        transform:translateY(.95em) rotate(45deg);
}

.mobile-btn.open-mobile span:nth-of-type(2) {
    -webkit-transform:translateX(.95em);
            -ms-transform:translateX(.95em);
        transform:translateX(.95em);
    opacity: 0;
}

.mobile-btn.open-mobile span:nth-of-type(3) {
    -webkit-transform:translateY(-.95em) rotate(-45deg);
            -ms-transform:translateY(-.95em) rotate(-45deg);
        transform:translateY(-.95em) rotate(-45deg);
}



.noScroll {
    overflow: hidden !important;
    height:100% !important;
}

.noScrollLong {
    overflow-y: scroll !important;
    -ms-touch-action: none;
        touch-action: none;    
}

@media only screen and (max-height:700px) {

    #mobile-nav .inner, .modal .inner {
        position:static;
        min-height: 700px;
    }

}

@media only screen and (min-width:950px) {

    a.modal-item {
        -webkit-flex: 1 33.3%;
            -ms-flex: 1 33.3%;
                -webkit-box-flex: 1;
                flex: 1 33.3%;
    }

}

@media only screen and (max-width:950px) { 
    .modal .desc-box {
        text-align: center;
    }

    .mobile-button-wrap {display:block;}

    header.main-header nav {display:none;}

    .modal .inner > .item-wrap {
        -webkit-flex: 8;
            -ms-flex: 8;
                -webkit-box-flex: 8;
                flex: 8;
    }

        .close-wrap {
        -webkit-flex: 0 0 8%;
            -ms-flex: 0 0 8%;
                -webkit-box-flex: 0;
                flex: 0 0 8%;
    }

    .close {
        display:none;
    }

    .back-wrap {
        display:block;
    }

    .main-header section {
        height:90px;
    }

    .logo img {
        max-width:none;
    }

     .logo {
        min-width:225px;
    }

   .desc-box {
      -webkit-align-items: center !important;
              -webkit-box-align: center !important;
                  -ms-flex-align: center !important;
              align-items: center !important;
    }
    .modal {
     padding-top: 90px;
    }
    .modal .inner > .close-wrap {
        -webkit-flex: 0 0 8%;
    -ms-flex: 0 0 8%;
    -webkit-box-flex: 0;
    flex: 0 0 8%;
    }

    .modal .desc-box h4 {
     font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0px;
    }

}

@media only screen and (max-width:600px) { 
    .modal-item h4 {
        font-size: 18px;
        letter-spacing: 0px;
        text-align: left;
        max-width: 240px;
        margin: 0px auto;
        width: 100%;
    }
}



.sidebar-header { 
font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 30px;
    display: block;
}
.nav-footer {
    font-size: 13px;
    line-height: 1.3;
}

footer.site-footer .row.grid {
    clear: both;
    padding: 40px 0px;
}
.sub-footer {
    background: #303030;
    color: white;
     padding: 15px;
}


.site-footer i {
    display: block;
    text-align: center;
    font-size: 26px;
    padding-bottom: 10px;
}
.site-footer span {
    text-align: center;
    display: block;
    line-height: 1;
    font-weight: 600;
    font-size: 11px;
    padding-top: 5px;
}
.site-footer strong {
    font-size: 16px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900 !important;
}
.homepage a.box {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 230px;
    color: white;
    width: 32.8%;
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-bottom: 0.6%;
     position: relative;
}
.homepage a.box span {
    width: 100%;
    text-align: center;
    font-weight: 900 !important;
    position: relative;
    font-size: 22px;
    letter-spacing: -1px;
    max-width: 70%;
    margin: 0 auto;
    line-height: 1.2;
    text-transform:uppercase;
}
.homepage {
    justify-content: space-between;
}
.homepage a.box:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000085;
}
.handbook-home a {
    padding: 20px;
    display: block;
    color: black;
    border: 0px;
    font-weight: 600;
    font-size: 16px;
}
.handbook-home {
    text-align: center;
    background-color: #ffd63b;
}
.custom__item {
     margin-bottom: 20px;
}
span.sidebar-head {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1;
    display: block;
    padding-bottom: 20px;
}
.site-wrapper {
    padding-bottom: 30px;
}

.mobile-menu-icon {
    float: left;
    width: 100%;
    background: #333;
    margin: 0px 0 15px;
    padding: 10px;
    height: auto;
}
.mobile-menu-icon:after {
    content: 'Store Menu';
    display: block;
    color: white;
    position: relative;
}
.mobile-menu-icon {
    float: left;
    width: 100%;
    background: #333;
    margin: 0px 0 15px;
    padding: 10px;
    height: auto;
}


@media only screen and (max-width:767px) {
  .homepage a.box {
      width: 100%;
      min-height: 110px;
  }
  
  .top-bar.grid {
    padding-top: 10px !important;
}
  .nav-footer {
    display:none;
  }

  .site-footer .grid__item {
    padding: 10px 0px !important;
}
  footer.site-footer .row.grid {
    padding: 20px 0px;
}
}