/* 1025 px width and higher */

#Banner {
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 360px;
    height: 149px;
    background-color: #fff;
    z-index: 100;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: 1s;
}
#BannerWrap {
    width:100%;
    position: fixed;
    top:0;
    height: 149px;
    background-color: #fff;
    z-index: 1000;
}
#burger {
    display: none;
}
#Logo {
    position: relative;
    float: left;
    width: 320px;
    min-width: 320px;
    text-align:center;
    margin: 20px 20px 20px 20px;
    transition: 1s;
}
img.logo {
    height: auto;
    display: block;
    transition: 1s;
}
img.social {
    height: 100%; /* 100% of container */
    display: block;
    transition: 1s;
}

#Navigation {
    position: relative;
    float: left;
    width: 28vw;
    min-width: 280px;
    margin: 20px 0px 20px 0px;
    transition: 1s;
}
.navItem {
    float: left;
    width: 55%;
    min-width: 280px;
    height: 34px;
    line-height: 34px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 23px;
    margin: 0px 20px 2px 0;
    padding: 0px 0.6em 0px 0.6em;
    transition: 1s;
}
#Contact {
    position: relative;
    float: right;
    width: 28vw;
    min-width: 280px;
    margin: 20px 60px 0px 0px;
    transition: 1s;
}
.contactItem {
    float: right;
    width: 55%;
    min-width: 280px;
    height: 34px;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    margin: 0px 20px 2px 0;
    padding: 0px 0px 0px 0px;
    transition: 1s;
}
.contactItem.email {
    font-size: 18px;
    line-height: 26px;
}
.contactItem.phone {
    font-size: 32px;
    line-height: 34px;
    cursor: default;
}
#Social {
    position: relative;
    float: right;
    width: 28vw;
    min-width: 280px;
    margin: 0px 60px 0px 0px;
    transition: 1s;
}
.socialItem {
    float: right;
    width: 36px;
    height: 36px;
    text-align: right;
    margin: 0px 20px 0px 0;
    padding: 0px 0px 0px 0px;
    transition: 1s;
}

#Account {
    position: absolute; /* Position them relative to the browser window */
    top: 20px;
    right: -230px; /* Position them outside of the screen */
    padding: 25px 20px 25px 20px;
    width: 250px; /* Set a specific width */
    height: 62px;
    border-radius: 4px 0 0 4px; /* Rounded corners on the top right and bottom right side */
    background-color: #7f7f7f;
    background-image: url('../images/new/account.png');
    background-size: 40px;
    background-position: 10px 32px;
    background-repeat: no-repeat;
    transition: 1s;
}
.loginText {
    position: relative;
    float: left;
    display: block;
    width: 250px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #fff;
    line-height: 31px;
    left: 60px;
}
#MobileNavigation {
    position: absolute;
    top: -115px;
    width: 100%;
    height: 115px;
    transition: 1s;
    z-index:200;
}
#MobileNavLeft {
    position: relative;
    float: left;
    width: 50%;
}
#MobileNavRight {
    position: relative;
    float: right;
    width: 50%;
}
.mobileNavItem {
    float: left;
    width: 40vw;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    font-size: 1.15em;
    line-height: 1.55em;
    margin: 4px 0 0 12px;
    padding: 0px 36px 0px 12px;
    transition: 1s;
}
.mobileContactItem {
    float: right;
    height: 30px;
    width:100%;
    text-align: right;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    margin: 4px 20px 0px 0;
    padding: 0px 0px 0px 0px;
    transition: 1s;
}
.mobileContactItem.email {
    font-size: 17px;
    line-height: 20px;
}
.mobileContactItem.phone {
    font-size: 30px;
    line-height: 30px;
}
.mobileSocialItem {
    display: block;
    float: right;
    height: 30px;
    text-align: right;
    margin: 0px 20px 0px 0;
    padding: 0px 0px 0px 0px;
    transition: 1s;
}
   
/* 851 px width to 1024 px width. Large tablets, no hamburger */

@media screen and (max-width: 1024px) {
    
    #Banner {
        height: 114px;
    }
    #BannerWrap {
        height: 114px;
    }
    #Logo {
        width: 240px;
        min-width: 240px;
        margin: 16px;
    }
    img.logo {
        width:240px;
    }
    #Navigation {
        width: 28vw;
        min-width: 220px;
        margin: 16px 0px 16px 0px;
    }
    .navItem {
        min-width: 220px;
        height: 26px;
        line-height: 26px;
        font-size: 19px;
        margin: 0px 16px 2px 0;
        padding: 0px 0.5em 0px 0.5em;
    }
    #Contact {
        min-width: 220px;
        margin: 16px 56px 0px 0px;
    }
    .contactItem {
        min-width: 220px;
        height: 26px;
        margin: 0px 16px 0px 0;
    }
    .contactItem.email {
        font-size: 16px;
        line-height: 21px;
    }
    .contactItem.phone {
        font-size: 28px;
        line-height: 26px;
    }
    #Social {
        min-width: 220px;
        margin: 0px 56px 0px 0px;
    }
    .socialItem {
        float: right;
        width: 30px;
        height: 30px;
        margin: 0px 16px 0px 0;
    }
    #Account {
        top: 16px;
        right: -200px; /* Position them outside of the screen */
        padding: 16px 20px 16px 20px;
        width: 210px; /* Set a specific width */
        height: 50px;
        background-size: 32px;
        background-position: 9px 24px;
    }
    .loginText {
        width: 210px;
        font-size: 20px;
        line-height: 25px;
        left: 40px;
    }
    #MobileNavigation {
        display:none;
    }
}

/* up to 850 px width. Phones in Landscape, tablets. */

@media screen and (max-width: 850px) {

    #BannerWrap {
        height: 114px;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }
    #Logo {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    #burger {
        display: block;
        position: absolute;
    }
    #Navigation {
        display:none;
    }
    #Contact {
        display: none;
    }
    #Social {
        display: none;
    }
    .loginText {
        width: 210px;
        font-size: 20px;
        line-height: 25px;
        left: 40px;
    }
    .burger {
        display: block;
        float: right;
        top: 16px;
        width: 66px;
        height: 82px;
        border-radius: 4px;
        margin: 16px 0 0 16px;
        background-image: url('../images/new/burger.png');
        background-size: 66px;
        background-position: 0px 15px;
        background-repeat: no-repeat;
        transition: 1s;
    }
    #MobileNavigation {
        display: block;
    }
}

/* Phones in portrait*/

@media screen and (max-width: 480px) {
    #Banner {
        height: 93px;
    }
    #BannerWrap {
        height: 93px;
    }
    #Logo {
        width: 180px;
        min-width: 180px;
    }
    img.logo {
        width: 180px;
    }
    #Account {
        top: 16px;
        right: -150px; /* Position them outside of the screen */
        padding: 10px 20px 10px 20px;
        width: 160px; /* Set a specific width */
        height: 41px;
        background-size: 28px;
        background-position: 12px 16px;
    }
    .loginText {
        width: 140px;
        font-size: 16px;
        line-height: 21px;
        padding: 0 0 0 0;
        left: 40px;
    }
    .burger {
        width: 56px;
        height: 61px;
        margin: 16px 0 0 16px;
        background-size: 48px;
        background-position: 0px 12px;
    }
    #MobileNavigation {
        top: -24vw;
        height: 24vw;
    }
    .mobileNavItem {
        font-size: 3.6vw;
        line-height: 6vw;
        margin: 4px 0 0 8px;
        padding: 0px 18px 0px 8px;
    }
    .mobileContactItem {
        float: right;
        height: 24px;
        text-align: right;
        font-family: 'Poppins', sans-serif;
        color: #000000;
        margin: 4px 16px 2px 0;
        padding: 0px 0px 0px 0px;
        transition: 1s;
    }
    .mobileContactItem.email {
        font-size: 3.4vw;
        line-height: 3.5vw;
    }
    .mobileContactItem.phone {
        font-size: 6vw;
        line-height: 6vw;
    }
    .mobileSocialItem {
        display: block;
        float: right;
        height: 24px;
        text-align: right;
        margin: 0px 16px 0px 0;
        padding: 0px 0px 0px 0px;
        transition: 1s;
    }
}


.navItem:hover, .mobileNavItem:hover {
    color: #ffffff;
    border-radius: 2px;
    transition: 0s;
}
.navLightGreen:hover {
    background: linear-gradient(to right, transparent 75%, #ffffff), linear-gradient(#adf324, #9cd920);
}
.navMidGreen:hover {
    background: linear-gradient(to right, transparent 75%, #ffffff), linear-gradient(#25d860, #20bf56);
}
.navBlue:hover {
    background: linear-gradient(to right, transparent 75%, #ffffff), linear-gradient(#2483a6, #22718f);
}
#Account:hover {
    right: 0; /* On mouse-over, make the elements appear as they should */
}


    /* Login Stuff */


    .login-popup {
        text-align: center;
        display: none;
        background: #f2f2f2;
        border: none;
        float: left;
        z-index: 99999;
        transition: 1s;
    }

        .login-popup input {
            font-family: 'Poppins', sans-serif;
            background-color: #fff;
            border: 2px solid #7f7f7f;
            border-radius: 4px;
            color: #4d4d4d;
            font-size: 1.5rem;
            width: 80%;
            margin: 20px 0 0 0;
            padding: 10px 0 10px 10px;
        }

        .login-popup button {
            background-image: linear-gradient(#7f7f7f, #4d4d4d);
            border: 0px solid #7f7f7f;
            border-radius: 4px;
            color: #f2f2f2;
            font-size: 1.5rem;
            width: 82%;
            margin: 20px 0px 20px 0px;
            padding: 12px 0px 12px 0px;
        }

            .login-popup button:hover {
                background-image: linear-gradient(#2483a6, #22718f);
                color: #fff;
                cursor: pointer;
            }

    /* Contact Window */

    .contact-popup {
        text-align: center;
        display: none;
        background: #454545;
        width: 600px;
        padding: 30px 40px 30px 40px;
        border: none;
        float: left;
        z-index: 99999;
    }

.contact-window {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #999999;
    padding: 0 20px 0 0;
    text-decoration: none;
}

    .contact-text {
        position: relative;
        float: left;
        width: 100%;
        font-family: Arial;
        font-size: 20px;
        color: #ccc;
        text-align: center;
        line-height: 30px;
        padding: 0 0 0 0;
        -webkit-text-size-adjust: 100%;
    }

    /* Products Window */

    .products-popup {
        text-align: center;
        display: none;
        background: #454545;
        width: 600px;
        padding: 30px 40px 30px 40px;
        border: none;
        float: left;
        z-index: 99999;
    }

    .products-window {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 11px;
        color: #999999;
        padding: 0 20px 0 0;
        text-decoration: none;
    }

    .products-text {
        position: relative;
        float: left;
        width: 280px;
        height: 100px;
        font-family: Arial;
        font-size: 20px;
        color: #ccc;
        text-align: left;
        line-height: 30px;
        padding: 0 0 40px 20px;
        -webkit-text-size-adjust: 100%;
    }

    .products-option {
        position: relative;
        float: left;
        width: 300px;
        height: 100px;
        padding: 20px 0 20px 0;
    }