/**  HEADER, HOMEPAGE, FOOTER STYLES  **/

#divworkspacearea {
    max-width: 1480px;
    padding: 20px 10px 20px 10px;
    margin: 0 auto;
}

.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1480px;
    padding-left: 10px;
    padding-right: 10px;
}

.HomePageForm #divworkspacearea {
    max-width: 100%;
    position: relative;
    z-index: 100;
    padding: 0;
}

*:focus {
    outline: none;
}

img {
    border: 0;
}

h1 {
    margin: 0;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
}

h3 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

ul {
    margin: 0;
    padding: 0;
}

body {
    margin: 0 auto;
    background-color: #fff;
    font-family: "Raleway", sans-serif;
}

.hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* HEADER */
header {  
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 0;
}

#header-top {
    display: flex;
    justify-content: space-between;
}

#social {
    flex:40%;
}

#social > ul {
    display: flex;
    align-items: center;
}

#social>ul>li {
    position: relative;
}

#social a {
    white-space: nowrap;
    text-decoration: none;
}

#social ul {
    margin-left: 5px;
}

#social ul li {
    list-style: none;
}

#social ul li a {
    color: #000;
    padding-right: 10px;
}

#social ul li a:hover .fa {
    color: #f17e09;
}

#social ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 25px;
    right: -10px;
    text-align: right;
    padding: 5px 0;
    background-color: #000;
    z-index: 1000;
    -webkit-transition: opacity .3s ease, visibility 0s ease .3s;
    -moz-transition: opacity .3s ease, visibility 0s ease .3s;
    -o-transition: opacity .3s ease, visibility 0s ease .3s;
    -ms-transition: opacity .3s ease, visibility 0s ease .3s;
    transition: opacity .3s ease, visibility 0s ease .3s;
}

#social li:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

#social li ul li {
    display: block;
}

#social li ul a {
    display: block;
    padding: 0 15px;
    font-size: .9em;
    line-height: 1.75em;
    color: #fff;
    text-decoration: none;
}

#social li ul a:hover {
    text-decoration: underline;
}

.mobile-nav {
    display: none;
}

#logo {
    flex: 20%;
    flex-shrink: 0;
    text-align: center;
}

#logo img {
    width: 100%;
    height: auto;
}

#search-box {
    flex: 35%;
    align-self: center;
    position: relative;
    left: 20px;
}

#search-box input {
    width: 75%;
    height: 30px;
    background-color: #fff;
    border: 1px solid #000;
    float: right;
}

#search-box input::placeholder {
    color: #A6A6A6;
}

#search-box input,button:focus {
    outline: 0;
}

#search-box button {
    height: 31px;
    position: absolute;
    right: 1px;
    top: 1px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 300;
    color: #202020;
    background-color: #fff;
    text-transform: uppercase;
    border: none;
    transition: .1s;
}

#search-box button:hover {
    color: #f17e09;
    cursor: pointer;
}

#account {
    flex: 5%;
    text-align: right;
    padding-right: 10px;
}

#account>ul>li {
    position: relative;
}

#account a {
    white-space: nowrap;
    text-decoration: none;
}

#account ul li {
    list-style: none;
}

#account ul li a {
    color: #000;
    padding: 10px 0 10px 10px;
}

#account ul li a:hover .fa {
    color: #f17e09;
}

#account ul ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 25px;
    right: -10px;
    text-align: right;
    padding: 5px 0;
    background-color: #000;
    z-index: 1000;
    -webkit-transition: opacity .3s ease, visibility 0s ease .3s;
    -moz-transition: opacity .3s ease, visibility 0s ease .3s;
    -o-transition: opacity .3s ease, visibility 0s ease .3s;
    -ms-transition: opacity .3s ease, visibility 0s ease .3s;
    transition: opacity .3s ease, visibility 0s ease .3s;
}

#account li:hover ul {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

#account li ul li {
    display: block;
}

#account li ul a {
    display: block;
    padding: 0 15px;
    font-size: .9em;
    line-height: 1.75em;
    color: #fff;
    text-decoration: none;
}

#account li ul a:hover {
    text-decoration: underline;
}

#main-nav {
    width: 100%;
}

#main-nav a {
    text-decoration: none;
    color: #000;
}

#main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-nav > ul > li {
    position: relative;
    list-style: none;
    text-align: center;
}

#main-nav > ul > li > a {
    text-transform: uppercase;
    font-size: 1.1em;
    padding: 10px 0;
}

#main-nav > ul > li > a:hover {
    color: #f17e09;
}

#main-nav > ul > li:hover > a {
    color: #f17e09;
}

#main-nav ul > li > ul {
    position: absolute;
    display: none;
    background: rgba(255, 255, 255, .95);
    top: 31px;
    left: -10px;
    z-index: 100;
    min-width: 200px;
}

#main-nav > ul > li:hover > ul {
    display: block;
}

#main-nav ul > li > ul > li {
    list-style: none;
}

#main-nav ul > li > ul > li > a {
    display: block;
    padding: 10px 20px;
    text-align: left;
}

#main-nav ul > li > ul > li:first-child > a {
    padding-top: 20px;
}

#main-nav ul > li > ul > li:last-child > a {
    padding-bottom: 20px;
}

#main-nav ul > li > ul > li > a:hover {
    color: #f17e09;
    text-decoration: underline;
}

#sticky-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 20px;
    padding: 10px 0;
    background-color: #FFF;
	position: sticky;
	top: 0;
    z-index: 500;
}

#sticky-nav > ul {
    display: flex;
    color: #000;
}

#sticky-nav > ul li:not(:first-child) {
    padding-left: 20px;
}

#sticky-nav > ul li a {
    text-decoration: none;
    color: #000;
}

#sticky-nav > ul li a.accent {
    color: #f17e09;
    text-decoration: underline;
}

#sticky-nav > ul li a.accent:hover {
    color: #ea9a48;
}

@media screen and (max-width: 1200px) {
    #main-nav ul > li > ul {
        top: 29px;
    }

    #main-nav > ul > li > a {
        font-size: 1em;
    }

    #sticky-nav > ul li:first-of-type {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    header {
        padding: 10px 10px;
    }

    #header-top {
        flex-wrap: wrap;
        align-items: center;
    }

    #mobile {
        flex: 5%;
        text-align:left;
        padding-left: 0px;
        order: 1;
    }

    #search-box {
        flex: 70%;
        order: 1;
        margin: 10px 0 15px;
    }

    #search-box {
        left: unset;
    }

    #search-box input {
        width: 100%;
        float: left;
    }

    #account {
        flex: 10%;
        order: 1;
        padding-right: 0;
    }

    #social {
        flex: 40%;
        order: 3;
    }

    #logo {
        flex: 40%;
        order: 4;
        text-align: right;
    }

    #search-box button {
        padding: 0px 12px;
    }

    .mobile-nav {
        display: block;
        color: #000;
    }

    #sticky-nav {
        margin: 0;
    }

    #sticky-nav > ul li:not(:first-child) {
        padding-left: 10px;
    }

    #main-nav > ul.nav-active {
        display: block;
    }

    #main-nav ul {
        display: none;
    }

    #main-nav > ul {
        position: absolute;
        background-color: #fff;
        width: 100%;
        max-width: 300px;
        top: 0px;
        left: -10px;
        z-index: 100;
        box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    }

    #main-nav > ul > li {
        text-align: left;
        padding-left: 15px;
    }

    #main-nav > ul > li:first-of-type {
        padding-top: 10px;
    }

    #main-nav > ul > li:not(:first-child) > a {
        border-top: 1px solid #ccc;
    }

    #main-nav > ul > li:not(:last-child) {
        margin-right: 0;
    }

    #main-nav > ul > li:hover > ul {
        display: none;
    }

    #main-nav > Ul > li > a {
        display: block;
        width: 100%;
    }

    #main-nav ul > li > ul {
        position: static;
        display: none;
        background: rgba(255, 255, 255, .9);
        min-width: auto;
    }

    #main-nav > ul > li > ul.nav-active {
        display: block;
    }

    #main-nav ul > li > ul > li:first-child > a {
        padding-top: 0;
    }

    #main-nav ul > li > ul > li > a {
        padding: 5px 0 5px 20px;;
    }

}

@media screen and (max-width: 500px) {

    #social {
        flex: 100%;
        order: 3;
        text-align: center;
        margin-top: 10px;
    }

    #logo {
        flex: 100%;
        order: 2;
        text-align: center;
    }

    #social > ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0;
    }

}
/* END HEADER */

/* #topbar {
    width: 100%;
    background-color: #0e0e0e;
    border-bottom: 1px solid #313131;
}

#topbarleft {
    width: 24%;
    padding: 10px 0 10px 1%;
    float: left;
}

#topbarleft li {
    list-style: none;
    display: inline;
    margin-right: 5px;
}

#topbarleft li a {
    color: #FFF;
}

#topbarleft li a:hover {
    color: #ff8a00;
}

#topbarright {
    width: 75%;
    float: right;
}

#socialnav {
    padding-top: 12px;
    padding-bottom: 10px;
    float: right;
}

#socialnav ul {
    padding-right: 10px;
    list-style: none;
}

#socialnav ul li {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    float: right;
}

#socialnav li ul {
    display: none;
}

#socialnav ul li a {
    display: block;
    text-decoration: none;
    color: #FFF;
    height: 16px;
    padding-right: 6px;
    padding-left: 6px;
    white-space: nowrap;
}

#socialnav ul li a:hover {
    text-decoration: underline
}

#socialnav li:hover ul {
    display: block;
    position: absolute;
    z-index: 800;
}

#socialnav li:hover li {
    width: 140px;
    font-size: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    clear: both;
}

#socialnav li:hover li a {
    background-color: #0e0e0e;
    color: #FFF;
    position: relative;
    height: 25px;
    line-height: 25px;
    left: 0px;
    top: 10px;
    z-index: 800;
    border: 0;
}

#socialnav li:hover li a:hover {
    text-decoration: underline;
}

#headercontainer {
    width: 100%;
    height: 104px;
    position: relative;
    background: rgba(46, 46, 46, 1);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    z-index: 200;
}

.HomePageForm #headercontainer {
    background: rgba(0, 0, 0, .40);
}

.fixed {
    position: fixed !important;
    top: 0;
}

.fixedFix {
    top: 100px !important;
}

#headerleft {
    float: left;
}

#logo {
    margin-left: 22px;
    margin-top: 5px;
}

#logo img {
    max-width: 100%;
    height: auto;
}

#headermiddle {
    float: left;
    text-align: right;
    margin-top: 5px;
}

#headermiddle img {
    max-width: 100%;
    height: auto;
}

#headerright {
    float: right;
}

#searchmenu {
    text-align: right;
}

#searchmenu ul {
    margin-top: 30px;
    margin-right: 22px;
}

#searchmenu li {
    list-style: none;
    display: inline;
    padding-right: 15px;
}

#searchmenu li a {
    color: #FFF;
    text-decoration: none;
}

#searchmenu li a:hover {
    color: #ff8a00;
}

.slideout-menu {
    position: fixed;
    top: 0;
    right: -270px;
    width: 270px;
    height: 100%;
    background-color: #2e2e2e;
    z-index: 9999;
}

.slideout-menu p {
    font-family: "Raleway", sans-serif;
    position: relative;
    padding: 12px 10px;
    color: #fff;
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 0;
    margin-bottom: 0;
}

.slideout-menu .slideout-menu-toggle {
    position: absolute;
    top: 12px;
    right: 10px;
    display: inline-block;
    padding: 3px 9px 5px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    line-height: 1;
    background: #222;
    color: #FFF;
    text-decoration: none;
    vertical-align: top;
}

.slideout-menu .slideout-menu-toggle:hover {
    color: #fff;
}

.slideout-menu ul {
    list-style: none;
    font-weight: 300;
    border-top: 1px solid #151515;
    border-bottom: 1px solid #454545;
    margin-bottom: 20px;
}

.slideout-menu ul li ul {
    border-top: 0;
    border-bottom: 0;
    margin-bottom: 0;
}

.slideout-menu ul li {
    border-top: 1px solid #404040;
    border-bottom: 1px solid #151515;
}

.slideout-menu ul li a {
    position: relative;
    font-family: "Raleway", sans-serif;
    display: block;
    padding: 7px 10px 7px 10px;
    color: #FFF;
    text-decoration: none;
}

.slideout-menu ul li ul li a {
    padding: 7px 10px 7px 25px;
}

.slideout-menu ul li ul li {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #151515;
}

.slideout-menu ul li a:hover {
    background: #212121;
    color: #fff;
}

.slideout-menu ul li a i {
    position: absolute;
    top: 8px;
    right: 10px;
    opacity: .5;
}

.products-items {
    position: relative;
}

.products-items li a {
    background-color: #212121;
}

.products-items li a:hover {
    background-color: #191919 !important;
}

#searchbar {
    position: absolute;
    top: 104px left: 0;
    z-index: 150;
    width: 94%;
    background-color: #2e2e2e;
    padding: 20px 3%;
    display: none;
}

#searchbox {
    height: 50px;
}

#searchboxleft {
    width: 90%;
    float: left;
}

#searchboxleft input {
    width: 97%;
    height: 36px;
    line-height: 36px;
    background-color: #2e2e2e;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #606060;
    padding: 5px;
    border: 2px solid #494642;
}

#searchboxleft input::-webkit-input-placeholder {
    color: #606060;
}

#searchboxleft input::-moz-placeholder {
    color: #606060;
}

#searchboxleft input:-ms-input-placeholder {
    color: #606060;
}

#searchboxleft input:-moz-placeholder {
    color: #606060;
}

#searchboxright {
    width: 10%;
    float: left;
}

#searchboxright input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #212121;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    border: 1px solid #212121;
    cursor: pointer;
} */

#homeintro {
    width: 100%;
    position: relative;
}

#homeintro img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#homeintropicoverlay {
    width: 100%;
    position: absolute;
    top: -105px;
    z-index: 100;
}

#homeintropicoverlay img {
    width: 100%;
    height: auto;
    display: block;
}

#homeintropic {
    width: 100%;
    position: relative;
    top: -105px;
    z-index: 50;
}

#homeintropic img {
    width: 100%;
    height: auto;
    display: block;
}

#homeintrocopy {
    position: absolute;
    font-family: "Raleway", sans-serif;
    z-index: 100;
    top: 12%;
    left: 26%;
}

#homeintrocopy a {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff8a00;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 10px;
}

.homeintrobold {
    font-size: 60px;
    font-weight: 700;
    color: #FFF;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    font-family: 'Merriweather', serif;
}

.homeintrothin {
    font-size: 50px;
    font-weight: 400;
    color: #FFF;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
    font-family: 'Merriweather', serif;
}

.homeintrosmall {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: #FFF;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 1);
}

#whoweare {
    width: 60%;
    padding-top: 43px;
    padding-bottom: 170px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}

.hometitle a {
    font-family: "Raleway", sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2e2e2e;
    padding-bottom: 5px;
    border-bottom: 5px solid #ff9313;
    margin-bottom: 40px;
    display: inline-block;
    text-decoration: none;
}

#whowearecopy p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #2e2e2e;
}

#homebanners {
    width: 100%;
    margin-bottom: 60px;
}

#homebannerstitle {
    width: 100%;
    background-color: #ff9313;
    text-align: center;
}

#homebannerstitle p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #FFF;
    padding: 18px 10px;
}

#home-banners-container-top {
    max-width: 1000px;
    padding-bottom: 20px;
    margin: 0 auto;
}

.home-banners-flex-50 {
    display: flex;
}

.home-banners-flex-50 > div {
    flex: 1 0 50%;
}

.home-banners-flex > div > div {
    width: calc(100% - 20px);
}

#home-banners-container {
    width: 100%;
    padding-top: 20px;
}

.home-banners-flex {
    display: flex;
}

.home-banners-flex > div {
    flex: 1 0 33%;
}

.home-banners-flex > div > div {
    width: calc(100% - 20px);
}

@media screen and (max-width: 800px) {
    .home-banners-flex {
        flex-direction: column;
    }
    
    .home-banners-flex > div {
        flex: 1 0 100%;
    }

    .home-banners-flex-50 {
        flex-direction: column;
    }
    
    .home-banners-flex-50 > div {
        flex: 1 0 100%;
    }
}

#hombannerscontainer {
    width: 100%;
    padding-top: 20px;
}

#homebannersleft {
    width: 32%;
    padding-left: 1%;
    float: left;
}

#homebannersright {
    width: 65%;
    padding-left: 1%;
    padding-right: 1%;
    float: left;
}

#homebannersrightop {
    margin-bottom: 25px;
}

#homebannersrightbottomleft {
    width: 49%;
    padding-right: 1%;
    float: left;
}

#homebannersrightbottomright {
    width: 49%;
    padding-left: 1%;
    float: left;
}

.homebannerpic {
    position: relative;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.homebannerpic img {
    width: 100%;
    height: auto;
    display: block;
}

.homebannerpictitle {
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    text-align: right;
}

.homebannerpictitle a {
    font-family: "Raleway", sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    padding: 15px 15px;
    display: inline-block;
}

.homebannerpictitlelight {
    font-weight: 400;
}

#brandswecarry {
    width: 60%;
    background-color: #f6f6f6;
    padding: 125px 20% 70px 20%;
    text-align: center;
}

#brandswecarrycopy p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #2e2e2e;
}

#stayconnected {
    width: 60%;
    padding: 125px 20%;
    text-align: center;
}

#stayconnectedcopy p {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: #2e2e2e;
}

#stayconnectedform {
    background-color: #e5e5e5;
    margin-top: 40px;
}

#newsletterbox {
    height: 45px;
    margin-left: 25%;
}

#newsletterboxleft {
    width: 50%;
    float: left;
}

#newsletterboxleft input {
    width: 92%;
    height: 33px;
    line-height: 33px;
    background-color: #FFF;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #2e2e2e;
    padding: 5px;
    border: 1px solid #c6c6c6;
}

#newsletterboxright {
    width: 125px;
    float: left;
}

#newsletterboxright button {
    width: 125px;
    height: 45px;
    line-height: 45px;
    background-color: #2e2e2e;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFF;
    border: 1px solid #2e2e23;
    cursor: pointer;
}

#newsletterboxright button:hover {
    background-color: #4B4B4B;
}

#footertop {
    margin-top: 25px;
}

#footertopleft {
    width: 50%;
    float: left;
}

#footertopleft ul {
    margin-top: 10px;
    margin-left: 10px;
}

#footertopleft li {
    list-style: none;
    display: inline;
    padding: 0 5px;
}

#footertopleft li a {
    color: #696969;
    text-decoration: none;
}

#footertopleft li a:hover {
    color: #2e2e2e;
}

#footertopright {
    width: 50%;
    float: right;
    text-align: right;
}

#footerlogo {
    margin-right: 15px;
    margin-bottom: 10px;
}

#footerlogo img {
    max-width: 100%;
    height: auto;
}

#footercontainer {
    width: 84%;
    background-color: #f6f6f6;
    border-top: 1px solid #dedede;
    padding: 37px 8%;
}

.footerheading {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2e2e2e;
    padding-bottom: 5px;
    border-bottom: 2px solid #ff9313;
    margin-bottom: 15px;
    margin-top: 20px;
    display: inline-block;
}

.footercolumn {
    width: 23%;
    padding-right: 2%;
    float: left;
}

.footercolumn li {
    list-style: none;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 25px;
}

.footercolumn li a {
    color: #696969;
    text-decoration: none;
}

.footercolumn li a:hover {
    text-decoration: underline;
}

.footercolumn p {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #696969;
}

.footercolumn a {
    color: #696969;
    text-decoration: none;
}

.footercolumn a:hover {
    text-decoration: underline;
}

#copyright {
    padding-top: 55px;
    padding-bottom: 15px;
    text-align: center;
}

#copyright p {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: #696969;
}

#copyright a {
    color: #696969;
    text-decoration: none;
}

#copyright a:hover {
    text-decoration: underline;
}

#seocontentbox {
    max-width: 100%;
    text-align: left;
    margin-top: 0;
    margin-bottom: 15px;
}

#seocontentbox p {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    line-height: 18px;
    color: #696969;
}

#scrolldiv {
    display: none;
}

@media screen and (max-width: 400px) {

    /* #headercontainer {
        height: 90px;
        background: rgba(46, 46, 46, 1);
    }

    .HomePageForm #headercontainer {
        background: rgba(46, 46, 46, 1);
    }

    #logo {
        margin-left: 20px;
        margin-top: 5px;
    } */

    /*#searchmenu ul {
	    margin-top: 48px;
	    margin-right: 10px;
	}*/

    /*#searchmenu li a {
    	color: #3f3f3f;
	}*/

    /* .slideout-menu {
        right: -270px;
        width: 270px;
    }

    #searchbar {
        top: 75px;
        width: 94%;
        padding: 20px 3%;
    }

    #searchboxleft {
        width: 70%;
    }

    #searchboxleft input {
        width: 90%;
    }

    #searchboxright {
        width: 30%;
    }

    #searchboxright input {
        width: 100%;
    }

    #homeintropic {
        position: static;
        margin-top: 0;
    } */

    #homeintrocopy {
        position: static;
        padding-top: 45px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 69px;
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #ff9313;
    }

    #homeintrocopy a {
        font-size: 14px;
        padding: 12px 35px;
        margin-top: 10px;
    }

    .homeintrobold {
        font-size: 28px;
        color: #2e2e2e;
        text-shadow: none;
    }

    .homeintrothin {
        font-size: 28px;
        color: #2e2e2e;
        text-shadow: none;
    }

    .homeintrosmall {
        font-size: 16px;
        color: #2e2e2e;
        text-shadow: none;
    }

    #whoweare {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 100px;
    }

    #homebannersleft {
        width: 94%;
        padding-left: 3%;
        padding-right: 3%;
        float: none;
    }

    #homebannersright {
        width: 94%;
        padding-left: 3%;
        padding-right: 3%;
        float: none;
    }

    #homebannersrightbottomleft {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        float: none;
    }

    #homebannersrightbottomright {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        float: none;
    }

    #brandswecarry {
        width: 96%;
        padding: 70px 2% 10px 2%;
    }

    #stayconnected {
        width: 96%;
        padding: 70px 2%;
    }

    #newsletterbox {
        margin-left: 5%;
    }

    #newsletterboxleft {
        width: 55%;
    }

    #newsletterboxright {
        width: 105px;
    }

    #newsletterboxright input {
        width: 105px;
    }

}

@media screen and (max-width: 445px) {

    #footercontainer {
        width: 94%;
        background-color: #f6f6f6;
        border-top: 1px solid #dedede;
        padding: 37px 3%;
    }

    .footercolumn {
        width: 100%;
        text-align: center;
        float: none;
    }

    .c-mobile-grid-100 {
        width: 100% !important;
    }


}

@media screen and (min-width: 446px) and (max-width: 767px) {

    #footercontainer {
        width: 94%;
        background-color: #f6f6f6;
        border-top: 1px solid #dedede;
        padding: 37px 3%;
    }

    .mobiletabletclear {
        clear: both;
    }

    .footercolumn {
        width: 48%;
        padding-right: 2%;
        float: left;
    }

}

@media screen and (min-width: 401px) and (max-width: 767px) {

    /* #headercontainer {
        height: 90px;
        background: rgba(46, 46, 46, 1);
    }

    .HomePageForm #headercontainer {
        background: rgba(46, 46, 46, 1);
    }

    #logo {
        margin-left: 20px;
        margin-top: 5px;
    } */

    /*#searchmenu ul {
	    margin-top: 22px;
	    margin-right: 10px;
	}*/

    /* .slideout-menu {
        right: -270px;
        width: 270px;
    }

    #searchbar {
        top: 75px;
        width: 94%;
        padding: 20px 3%;
    }

    #searchboxleft {
        width: 75%;
    }

    #searchboxleft input {
        width: 92%;
    }

    #searchboxright {
        width: 25%;
    }

    #searchboxright input {
        width: 100%;
    } */

    #homeintropic {
        position: static;
        margin-top: 0;
    }

    #homeintrocopy {
        position: static;
        padding-top: 45px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 69px;
        text-align: center;
        margin-bottom: 40px;
        border-bottom: 2px solid #ff9313;
    }

    #homeintrocopy a {
        font-size: 16px;
        padding: 15px 40px;
        margin-top: 10px;
    }

    .homeintrobold {
        font-size: 35px;
        color: #2e2e2e;
        text-shadow: none;
    }

    .homeintrothin {
        font-size: 35px;
        color: #2e2e2e;
        text-shadow: none;
    }

    .homeintrosmall {
        font-size: 16px;
        color: #2e2e2e;
        text-shadow: none;
    }

    #whoweare {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 100px;
    }

    #homebannersleft {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        float: none;
    }

    #homebannersright {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
        float: none;
    }

    #brandswecarry {
        width: 96%;
        padding: 70px 2% 10px 2%;
    }

    #stayconnected {
        width: 96%;
        padding: 70px 2%;
    }

    #newsletterbox {
        margin-left: 11%;
    }

    #newsletterboxleft {
        width: 55%;
    }

    #newsletterboxright {
        width: 105px;
    }

    #newsletterboxright input {
        width: 105px;
    }

}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* #searchbar {
        top: 104px;
        width: 94%;
        padding: 20px 3%;
    }

    #searchboxleft {
        width: 87%;
    }

    #searchboxleft input {
        width: 96%;
    }

    #searchboxright {
        width: 13%;
    }

    #searchboxright input {
        width: 100%;
    } */

    #homeintrocopy {
        top: 8%;
        left: 15%;
    }

    #homeintrocopy a {
        font-size: 16px;
    }

    .homeintrobold {
        font-size: 50px;
    }

    .homeintrothin {
        font-size: 50px;
    }

    .homeintrosmall {
        font-size: 18px;
    }

    #whoweare {
        width: 80%;
        padding-left: 10%;
        padding-right: 10%;
    }

    #brandswecarry {
        width: 80%;
        padding: 125px 10% 70px 10%;
    }

    #stayconnected {
        width: 80%;
        padding: 125px 10%;
    }

    #newsletterbox {
        margin-left: 20%;
    }

    #footercontainer {
        width: 94%;
        background-color: #f6f6f6;
        border-top: 1px solid #dedede;
        padding: 37px 3%;
    }

}

@media screen and (min-width: 1350px) {

    #scrolldiv {
        display: block;
    }

    #scrolldiv a {
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: normal;
    }

    .scrolltotop {
        width: 30px;
        height: 30px;
        padding: 10px;
        text-align: center;
        color: #cfcfcf;
        text-decoration: none;
        position: fixed;
        bottom: 96px;
        right: 20px;
        z-index: 500;
        display: none;
    }

    .scrolltotop:hover {
        color: #a2a2a2;
        text-decoration: none;
    }
}

/***********************************************************************************
 * END HEADER, HOMEPAGE, FOOTER STYLES
 **********************************************************************************/
/*OUTDOOR-LIVING.INC PAGE*/
.outdoor-video,
.careers-video {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.outdoor-video iframe,
.careers-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#brandslist ul {
    margin: 0 12%;
}

/* Constant Contact Form */

.ctct-inline-form .ctct-form-field {
    margin-bottom: 10px;
}

.ctct-form-embed.form_0 .ctct-form-defaults {
    background: none !important;
}

#stayconnectedcopy a {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #2a2a2a;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
}   
#stayconnectedcopy a:hover {
    text-decoration: underline;
    border: 1px solid #4a4a4a;
    border: 1px solid #4a4a4a;
    font-weight: bold;
}


#stayconnectedform button {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #2a2a2a;
    padding: 10px 20px;
    font-size: 16px;
}

#stayconnectedform button:hover {
    cursor: pointer;
}

#stayconnectedform input {
    padding: 4px;
}

/* zd 86672 */
#stressless-banner {
    display: block;
    justify-content: center;
    text-align: center;
    background-color: #f6f6f6;
    padding-bottom: 0;
    padding: 30px 0px 0px;
    margin-bottom: -50px;
}
#stressless-banner img {
    width: 80%;
}

.visible-mobile {
    display: none !important;
  }
  @media (max-width: 768px) {
    .visible-mobile {
      display: block !important;
    }
  
    .hidden-mobile {
      display: none !important;
    }
    #stressless-banner img {
        width: 90%;
        margin: auto;
    }
  }