/*----------------------------------*/
/* BASIC SETUP */
/*----------------------------------*/

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555555;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    letter-spacing: .01em;
}
body a{
    text-decoration: none;
    color: white;
}

li {
    list-style-type: disc;
    margin-left: 25px;
    padding-top: 10px;
    font-size: 16px;
    letter-spacing: .01em;
}


h1,h2,h3,h4,h5,h6 {
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 400;
    color: #004f4c;
}

h1 {
    font-size: 16px;
    text-align: center;
    color: white;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 28px;
}

h2 {
    font-size: 18px;
}
h5 {
    letter-spacing: .05em;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #004f4c;
    padding-bottom: 5px;
    line-height: 21px;
    text-transform: none;
}
h6 {
    letter-spacing: .04em;
    margin-top: 10px;
    font-size: 14px;
    color: whitesmoke;
    padding-bottom: 5px;
    line-height: 21px;
}


/*----------------------------------*/
/* REUSABLE COMPONENTS */
/*----------------------------------*/

.row {
    width: 100%;
    display: block;
    overflow: hidden;
}

.main {
    margin-top: 300px;
}

.col {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 2000px;
}

.col-one-half, .sub-col-one-half {
    width: 50%;
    display: block;
    float: left;
}

.col-one-fourth {
    width: 25%;
    display: block;
    float: left;
}

.col-three-fourths {
    width: 75%;
    display: block;
    float: left; 
}

.col-one-fifth {
    width: 20%;
    display: block;
    float: left;
}

.col-one-sixth {
    width: 16.66%;
    display: block;
    float: left; 
}

.right-align {
    text-align: right;
}

.center {
    text-align: center;
}

.col-one-third {
    width: 33%;
    display: block;
    float: left;
}

.col-two-thirds {
    width: 66%;
    display: block;
    float: left;
}


/*---Icons---*/

ion-icon {
    color: white;
    color: rgba(255,255,255,.9);
    font-size: 1.5em;
    margin-right: 5px;
    vertical-align: middle;
    padding-bottom: 5px;
}

/*---Buttons---*/

button.default {
    background-color: #c26728;
    border: none;
    border-radius: 2px;
    padding: 12px 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: .8em;
}

button.default a {
    color: white;
}

button.default:hover {
    background-color: #964a21;
}

/*----------------------------------*/
/* HEADER */
/*----------------------------------*/

.subheader, .subheader-mobile {
    display: block;
    width: 100%;
    height: 40px;
    position: fixed;
    top: 0;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 400;
    z-index:999;
}

.subheader-mobile {
    background-color: #c26728;
    border-bottom: 3px solid white;
    color: white;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: none;
    text-align: center;
    visibility: hidden;
    z-index:999;
}


header {
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 40px;
    display: block;
    border-bottom: 3px solid white;
    padding: 35px 30px;
    height: 105px;
    z-index:999;
    opacity: .95;
}

.mobile {
    visibility: hidden;
}

header ion-icon {
    color: #011f2c;
}

header input {
    height: 36px;
    padding: 5px 10px;
    border: none;
    border-bottom: 1px solid grey;
    font-size: 13px;
    letter-spacing: .05em;
    font-weight: 400;
    width: 200px;
}

.search-icon ion-icon {
    background-color: #011f2c;
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 9px;
    margin-left: -3px;
}

header img {
    width: 325px;
    margin-top: -35px;
}


/*----------------------------------*/
/* CONTACT BAR */
/*----------------------------------*/


.contact-block {
    background-color: #c26728;
    color: white;
    display: block;
    font-size: 12px;
    line-height: 40px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: none;
    text-align: left;
    width: 50%;
    float: left;
    height: 40px;
    padding-left: 30px;
    padding-right: 30px;
}

.contact-block ion-icon {
    height: 40px;
}

.overflow {
    white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*----------------------------------*/
/* HERO */
/*----------------------------------*/

.hero {
    display: block;
    width: 100%;
    height: 100vh;
    position: relative;
    top: 40px;
    z-index: 0;
    object-fit: cover;
    background-color: #08202b;
}

.hero img {
    object-fit: cover;
    width: 100%;
    opacity: 50%;
    height: calc(100vh - 105px);
    position:absolute;
    bottom: 0;
}

.bottom-left {
    position: absolute;
    bottom: 15%;
    left: 50px;
}

.hero h1 {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1em;
    margin-bottom: .5em;
}

.hero button {
    padding: 15px;
    border: 1px solid white;
    background-color: rgba(255,255,255,.05);
    color: white;
    letter-spacing: .05em;
}

.hero button a {
    color: white;
}

.hero button:hover {
    background-color: rgba(255,255,255,.25);
}


/*----------------------------------*/
/* NAV */
/*----------------------------------*/

.nav {
    z-index: 2;
    position: fixed;
    display: block;
    float: left;
    height: 70px;
    top: 145px;
    color: white;
    text-align: left;
    text-transform: uppercase;
    padding: 8px 20px;
    background-color: #08202b;
    width: 100%;
}

.nav a {
    color: white;
    padding-left: 5px;
}

.nav a:hover {
    border-left: 2px solid #c26728;
    margin-left: -2px;
}

.nav img {
    width: 100%;
}
.nav ul {
    display: inline-block;
}

.nav li {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 600;
    color: whitesmoke;
}

.nav li.shop {
    font-size: 20px;
    margin-right: 30px;
    font-weight: 600;
}

.mega-menu {
    width: 100%;
    position: fixed;
    top: 215px;
    background-color: #08202b;
    opacity: 95%;
    z-index: 1;
    padding: 0 20px 40px 15px;
    font-weight: 300;
    display: block;
}


.mega-menu ul {
    display: inline-block;
    width: 16%;
    vertical-align: text-top;
    color: white;
}

.mega-menu li  {
    font-size: .9em;
    list-style-type: none;
    color: white;
    padding-left: 5px;
    letter-spacing: .03em;
}

.mega-menu li a {
    color: white;
}
.mega-menu li a:hover {
    color: white;
    border-left: 2px solid #c26728;
    padding-left: 5px;
    margin-left: -5px;
}

.mega-menu li.category {
    font-weight: 600;
    padding-bottom: 10px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

#mega-menu-expanded {
    display: none;
}

/*----------------------------------*/
/* SECTION HEADINGS */
/*----------------------------------*/

.heading, .heading-shop {
    border-bottom: 2px solid white;
    border-top: 2px solid white;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: white;
    font-weight: bold;
}

.heading {
    background-color: #08202b;
}
.heading-shop {
    background-color: #c26728;
    border-left: 2px solid white;
    text-align: center;
    color: white;
}

.heading-shop a {
    color: white;
}

.heading-shop:hover {
    background-color: #964a21
}

/*----------------------------------*/
/* PRODUCTS */
/*----------------------------------*/

.featured {
    background-color: rgba(8,32,43,.1);
    padding: 30px 15px;
    text-align: center;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.white {
    background-color: white;
}
.product {
    text-align: center;
    display: inline-block;
    background-color: white;
    margin: 10px;
    width: 14%;
    padding: 0 15px 30px 15px;
    font-weight: 400;
}

.product h3 {
    color: #c26728;
    font-weight: 600;
}

.product h4 {
    font-weight: 500;
}

.product img {
    width: 100%;
}

.youtube {
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 30px; 
    height: 0; 
    overflow: hidden;
}

.youtube iframe, .youtube object, .youtube embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    margin: auto;
}

/*----------------------------------*/
/* PROMO and BRAND */
/*----------------------------------*/

.promo, .brand {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    height: 400px;
    color: white;
    letter-spacing: .05em;
    font-weight: 400;
    position: relative;
    background-color: #08202b;
    text-transform: uppercase;
    margin-top: 30px;
}

.promo {
    border-right: 15px solid white;
    margin-bottom: 30px;
}

.promo h2, .brand h2 {
    font-size: 28px;
    color: white;
    font-weight: 600
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 50%;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
}





/*----------------------------------*/
/* FOOTER */
/*----------------------------------*/

.footer {
    background-color: #08202b;
    display: block;
    width: 100%;
    padding: 50px 30px;
    color: whitesmoke;
    font-size: .9em;
    text-transform: uppercase;
    letter-spacing: .05em;
    vertical-align: top;
}

.footer li  {
    font-size: .9em;
    list-style-type: none;
    color: whitesmoke;
    padding-left: 5px;
    letter-spacing: .03em;
}

.footer li a {
    color: whitesmoke;
}
.footer li a:hover {
    color: whitesmoke;
    border-left: 2px solid #c26728;
    padding-left: 5px;
    margin-left: -5px;
}

.footer li.category {
    font-weight: 600;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer .title {
    font-weight: 600;
    padding-top: 5px;
}

.footer img {
    width: 200px;;

}

.last {
    float: right;
    text-align: center;
}

.footer ion-icon {
    display: block;
    padding: 15px 0 0 0;
    margin-left: 0;
    opacity: 50%;
}

.footer ion-icon:hover {
    opacity: 100%;
}

.footer table {
    padding-top: 15px;
}

.footer table td {
    padding-right: 10px;
    text-align: left;
}

.footer table tr {
    line-height: 1.25;
}


/*----------------------------------*/
/* MEDIA QUERIES */
/*----------------------------------*/


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

    header, .nav, .mega-menu, .subheader {
        visibility: hidden;
    }
    .subheader-mobile, .mobile {
        visibility: visible;
    }
    .col-one-sixth, .col-one-half, .col-one-fifth {
        width: 100%;
    }
    .col-one-fourth {
        width:40%;
    }
    .col-three-fourths {
        width:60%;
    }
    .promo {
        border-right: 0;
    }
    .product {
        width: 40%;
        display: inline-block;
    }
    .youtube {
        border-right: 0;
        border-left: 0;
    }
    iframe {
        padding-bottom: 20px;
    }
    .col-one-fifth {
        padding-bottom: 20px;
    }
    .footer .title {
        padding-left: 30px;
    }
    .last {
        float: left;
        text-align: left;
    }
    .footer ion-icon {
        margin-left: 20px;
    }
    .footer table {
        padding-left: 30px;
    }
    .bottom-left {
        text-align: center;
        width: 100%;
        bottom: 20%;
        left: 0;
        right: 0;
    }
    header img {
        width: 300px;
        margin-top:-25px;
    }
}

