﻿/*!
 * Site designed by: Jordan Zoucha.
 *
 * This code was ran through an auto prefixer to maximize compatibility. If you wish to run it through the same auto prefixer, you may find it at https://autoprefixer.github.io/
 *
 * Code was ran through CSS Comb to make it neater and easier to read. The designer recommends that any edits be ran through CSS Comb found at http://csscomb.com/online
 *
 */

body {
    font-family: 'Arial', san-serif;
    margin: 0;
}

/*for demo purposes only*/

.clear {
    clear: both;
}

#header {
    position: relative;
    z-index: 99999;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    height: 210.77px;
    padding: 0 71px;

    background: rgba(219, 219, 219, .8);

    -webkit-filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, .45));
    filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, .45));
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    box-sizing: border-box;
}

#header img {
    width: 367px;
    height: 100%;
    padding-right: 50px;
}

/***** Start of primary nav ******/
#menu-button {
    display: none;
}

nav.mobile {
    display: none;
}

nav.primary {
    position: relative;

    width: 79%;
    margin: 0;
}

nav.primary ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    margin: 0;
    padding: 0;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

nav.primary ul li {
    display: inline-block;

    width: auto;
    margin: 0;

    list-style-type: none;
}

nav.primary ul li a,
#buttons div a {
    font-family: 'Teko', sans-serif;
    font-size: 25px;
    font-weight: normal;
    display: block;
    padding: 0 10px;
    -webkit-transition: .4s ease-in;
    -webkit-transition: .2s ease-in;
    transition: .2s ease-in;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
}

nav.primary ul li a:hover {
    color: white;
    background: black;
}

/* Appearance of the sub-level links */
nav.primary ul li li a {
    font-size: 31px;

    padding: 14px 10px 8px;

    text-align: left;

    color: #fff;
    border-right: none;
    border-bottom: #303030 solid 1px;
    border-left: none;
    background: #181818;
}

/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
    background: #2a2af7;
}

/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    position: absolute;

    display: none;
}

nav.primary ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
}

nav.primary ul li:hover>ul {
    line-height: 18px;

    z-index: 99999;

    display: block;
    /* position: relative; */
}

nav.primary ul ul li {
    position: relative;

    display: block;
    float: none;

    width: 295px;
    margin: 0;
}


@media screen and (max-width: 1730px) {
    nav.primary ul li a {
        padding: 0 7px;
		font-size: 18px;
    }
}

@media screen and (max-width: 1575px) {
    #header {
        padding: 0 20px;
    }

    nav.primary ul li a,
    nav.primary ul li li a,
    #buttons div a {
        font-size: 15px;
    }
}

@media screen and (min-width: 1021px) and (max-width:1575px) {
    #header {
        height: calc(7.548125rem + ((1vw - 10.2px) * 16.2162));
    }

    #header img {
        width: calc(14.0625rem + ((1vw - 11.2px) * 40));
        padding-right: calc(1.875rem + ((1vw - 10.2px) * 3.6036));
    }
}

@media screen and (max-width: 1400px) {
    nav.primary {
        width: 82%;
    }
}

/******** End of primary Nav ***************/

@media screen and (max-width: 1020px) {
    /*
	
	#blurryscroll {
    width: 100%;
     overflow: hidden; 
    position: absolute;
    filter: blur(10px);
    z-index: -1;
    top: 0;
}
*/

    .slideDown {
        top: calc(9.38875rem + ((1vw - 3.2px) * 8.4757));

        -webkit-animation: .4s ease-out 0s 1 slideIn;
        animation: .4s ease-out 0s 1 forwards slideIn;
    }

    .slideUp {
        -webkit-animation: .4s ease-out 0s 1 slideOut;
        animation: .4s ease-out 0s 1 slideOut;
    }

    #header {
        display: block;
        flex-direction: column;
        height: auto;
        padding: 0;
        background: #d0d0d0;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
    }

    #header img {
        display: block;
        width: calc(16.6875rem + ((1vw - 3.2px) * 26.1429));
        margin-right: auto;
        margin-left: auto;
        padding: 13px 0;
    }

    /*==============================
	Mobile Nav Styles			
================================*/
    nav.primary {
        display: none;
    }

    #menu-button {
        font-size: 24px;

        position: relative;
        /* line-height:60px; */
        z-index: 400;
        /* needs to be lower than nav.mobile, adjust as needed */

        display: inline-block;

        width: 74%;
        height: 37px;

        text-align: center;

        background: #000;
    }

    #menu-button a {
        font-family: 'Teko', sans-serif;
        font-size: 27px;
        font-weight: normal;

        text-align: left;
        text-decoration: none;
        text-transform: uppercase;

        color: #fff;
    }

    nav.mobile {
        position: absolute;
        z-index: 9998;
        /* needs to be higher than #menu-button, adjust as needed */

        display: block;
        visibility: hidden;
        overflow: auto;
        /* left: -250px; */

        width: 100%;
        height: auto;

        background: #d0d0d0;

        filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .95));
        -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .95));
        filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, .95));
    }

    /* MENU #header SOCIAL MEDIA */
    nav.mobile .social-media {
        font-size: 16px;

        position: relative;

        display: inline-block;

        padding: 0 0 0 15px;

        text-decoration: none;
        word-spacing: 13px;

        color: #ccc !important;
    }

    nav.mobile .social-media a:link,
    nav.mobile .social-media a:visited {
        text-decoration: none;

        color: #ccc;
    }

    nav.mobile .social-media a:hover,
    nav.mobile .social-media a:active {
        text-decoration: underline;

        color: #fff;
    }

    /* MENU #header STYLES */
    nav.mobile .mobile_top {
        font-size: 18px;
        font-weight: 400;

        position: relative;

        display: block;

        margin: 50px 0 10px 0;
        padding: 0;

        color: #999;
    }

    /* MENU CLOSE 'X' BUTTON */
    nav.mobile .menu-toggle {
        font-family: Arial, sans-serif;
        font-size: 24px;
        font-weight: bold;
        line-height: 1;

        position: absolute;
        top: -38px;
        right: 13px;

        padding: 3px 8px 3px;

        text-decoration: none;

        color: #999;
        background: #222;
    }

    nav.mobile .menu-toggle:hover {
        /* Menu close button on hoveer */
        color: #fff;
    }

    /* MENU LIST STYLE */
    nav.mobile ul {
        font-weight: 300;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    nav.mobile ul li {
        /* border-bottom: 1px solid #151515; */
        position: relative;

        border-top: 1px solid #454545;
    }

    /* FIRST LEVEL */
    nav.mobile ul li a {
        font-family: 'Teko', sans-serif;
        font-size: 23px;

        position: relative;

        display: block;

        padding: 10px;
        /* border-left:4px #333 solid; */

        text-align: left;
        text-decoration: none;

        color: black;
    }

    nav.mobile ul li a:hover {
        color: #fff;
        border-left: 4px #cb1c1c solid;
        /* border highlight - Change to fit match site colors */
        background: black;
    }

    /* SECOND LEVEL */
    nav.mobile ul li li:last-child {
        border: none;
    }

    nav.mobile ul li li a {
        position: relative;

        display: block;

        padding: 10px 10px 10px 15px;

        text-decoration: none;

        color: #d0d0d0;
        border-left: 4px #444 solid;
        background: #444;
    }

    nav.mobile ul li li a:hover {
        background: black;
    }

    /* THIRD LEVEL */
    nav.mobile ul li li li:last-child {
        border: none;
    }

    nav.mobile ul li li li a {
        position: relative;

        display: block;

        padding: 10px 10px 10px 25px;

        text-decoration: none;

        color: #ccc;
        border-left: 4px #555 solid;
        background: #555;
    }

    nav.mobile ul li li li a:hover {
        background: rgba(85, 85, 85, .5);
    }

    nav.mobile ul li .click {
        /* dropdown menu idicator arrow be sure to include this image with your image files */
        position: absolute;
        z-index: 12399994;
        top: 0;
        right: 0;

        display: block;

        width: auto;
        height: auto;
        padding: 17px 20px;

        cursor: pointer;

        color: #fff;
    }

    .nav-footer {
        font-size: 14px;
        line-height: 16px;
        position: relative;
        padding: 15px 0;
        text-align: center;

        color: #1b1b1b;
    }

    /* FONT AWESOME ICONS */
    nav.mobile ul li a .fa {
        font-weight: 100;

        width: 25px;
        margin: 0 6px 0 0;
        padding: 8px 3px;

        text-align: center;

        border-radius: 30px;
        background: #292929;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
    }


    nav.mobile ul li .fa-chevron-down {
        color: black;
    }
}


@media screen and (max-width: 1020px) {
    #menu-button {
        width: 100%;
    }
}

@media screen and (max-width:450px) {
    #menu-button {
        width: 100%;
    }
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/
img[alt='Header Logo'] {
    display: unset;

    max-width: unset;
}