/* -----------------------------------*/
/* ---------->>> RESET <<<-----------*/
/* -----------------------------------*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:20px}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;text-decoration:none;}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{outline:none;}p{margin-bottom: 10px;}label{cursor:pointer;}input[type="text"],input[type="search"]{-webkit-box-shadow: 0 0 0 30px white inset;}
*{font-size:14px;font-family:"Avenir LT Light", sans-serif;}
small{font-size: 10px;vertical-align: inherit;}
a{color:inherit;}a:hover{text-decoration: none;}
pre{white-space: pre-wrap;font-family:arial;word-wrap: break-word;}
header, section, footer, aside, nav, main, article, figure {display: block;}
li{margin-left: 20px;}



/* General styles
===================================*/
@font-face {
    font-family: "Avenir LT Heavy";
    font-display: swap;
    src: url(/includes/fonts/AvenirLTStd-Heavy.otf) format("truetype");
}
@font-face {
    font-family: "Avenir LT Light";
    font-display: swap;
    src: url(/includes/fonts/AvenirLTStd-Light.otf) format("truetype");
}
body{
    background-color:#000;
    color: #A0A09F;
    font-family: "Avenir LT Light",sans-serif;
    line-height: 34px;
    margin-top:74px;
    overflow-y: scroll;
}
img{
    max-width: 100%;
    vertical-align: top;
}
h1, h2{
    color: #fff;
    font-size: 34px;
    border-bottom: 4px solid #ba0b1b;
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: "Avenir LT Heavy";
    padding-top:0;
}
h3{
    color: #ba0b1b;
    font-size: 34px;
    padding: 12px 24px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: "Avenir LT Heavy";
    padding-top:0;
}
section{
    position:relative;
}

/*-Sizes for displaying the pages and their content-*/
.maxScreenWidth{
    width:98%;
    margin: 0 auto;
}
.contentWidth{
    width:65%;
    margin: 0 auto;
}

/*-Content styles-*/
.txt-c{
    text-align:center;
}
.txt-l{
    text-align:left;
}
p{
    font-size: 20px;
    color: #A0A09F;
}
.width-100{
    width:100%;
}
.whiteText{
    color:#fff;
}
.darkText{
    color:#333333;
}
.redText{
    color:#ba0b1b;
}
.boldFont{
    font-family: "Avenir LT Heavy", sans-serif;
}
.disInBlock{
    display:inline-block;
}
.sectionSpacing{
    padding:60px 0;
}

/*-Buttons and links-*/
.redButton{
    background-color: #ba0b1b;
    display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    color: #fff;
    cursor:pointer;
    -webkit-transition:background-color 0.1s;
    transition:background-color 0.1s;
}
.redButton:hover{
    background-color: #c81828;
}
.redButton:active{
    background-color: #8d0511;
}
.link1{
    color: #fff;
    -webkit-transition: color 0.1s;
    transition: color 0.1s;
}
.link1:hover{
    color:#b80e1e;
}
.alertColor{
    color:#ba0b1b;
}
.succColor{
    color:#0bba4a;
}

/*-Site background colors-*/
.bgColor1{
    background-color:#000;
}
.bgColor2{
    background-color:#222;
}
.bgColor3{
    background-color:#fff;
}

/*-Gives images the faded inner border-*/
.innerBorderCont{
    z-index: 9;
    position: relative;
}
.innerBorderHolder{
    box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.1803921568627451) inset;
}
.innerBorderHolder img{
    z-index: -1;
    position: relative;
    vertical-align: top;
}



/* header styles
===================================*/
.headerSectionCont{
    padding:0px 0;
    border-bottom: 4px solid #ba0b1b;
    position:fixed;
    top:0;
    background-color:#000;
    width:100%;
    z-index:99;
    box-shadow: 0px 0px 12px 0px #000;
}
.logoContainer{
    margin: 0 auto;
    text-align: center;
    width: 20%;
    max-width: 304px;
    display: inline-block;
    vertical-align: middle;
}
.headerLogo{
    width:100%;
    vertical-align: top;
}
.headerNavRow{
    text-align: center;
    width: 73%;
    display: inline-block;
    vertical-align: middle;
    font-size:14px;
}
.headerNavRowItem{
    display: inline-block;
    width: 14%;
    padding: 20px 8px;
    cursor:pointer;
    position: relative;
    -webkit-transition:background-color 0.1s,color 0.1s;
    transition:background-color 0.1s,color 0.1s;
}
.headerNavRowItemLink{
    display:block;
    margin: -20px -8px;
    padding: 20px 8px;
}
.headerNavRowItem:hover, .headerNavRowItmHasHvr{
    background-color: #ba0b1b;
    color:#FFF;
}
.headerNavRowItem:hover .headerNavItemSubCont{
    display:block;
}
.headerNavItemSubCont {
    display:none;
    position: absolute;
    min-width: 100%;
    width: 170px;
    transform: translate(-50%, 0%);
    left: 50%;
    background-color: #333333;
    border-top: 2px solid #000;
    margin-top: 18px;
    box-sizing: border-box;
    color: #A0A09F;
    z-index: -1;
    box-shadow: 0px 0px 10px -1px #000;
}
.headerNavItemSubCont .headerNavRowItem{
    display:block;
    width:100%;
    margin: 0;
    padding:14px 0;
}
.headerSelectedNavItem:before{
    content: "";
    color: #ba0b1b;
    position: absolute;
    bottom: 0px;
    margin: auto;
    font-size: 56px;
    right: 0;
    left: 0;
    border-bottom: 10px solid #ba0b1b;
    width: 0px;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
}
.prodPageAct:hover .headerNavItemSubCont{
    display:none;
}
.mobMenuScroll {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}


/* footer styles
===================================*/
.footerCont{
    text-align:center;
    margin:0 auto;
}
.footerSectionCont{
    display:inline-block;
    width:25%;
    text-align:left;
    vertical-align:top;
    line-height: 22px;
}
.footerSecTitle{
    font-size:20px;
    color:#fff;
    font-weight:bold;
    margin-bottom: 10px;
}
.footerSecBottom{
    padding:20px 0;
    border-top:1px solid #A0A09F;
}



/* -----------------------------------*/
/* ------->>> Media Queries <<<-------*/
/* -----------------------------------*/
.disTablet{
    display:none;
}
.disMob{
    display:none;
}
.disDesk{
    display:inherit;
}



/* Default media query
===========================================*/
@media (max-width: 999px) {



    /* General styles
    ===================================*/
    *{
        max-width:100%;
        -webkit-tap-highlight-color:transparent;
        -webkit-appearance: none;
    }
    body{
        line-height:28px;
        margin-top: 140px;
    }
    p{
        font-size: 18px;
    }
    .disDesk{
        display:none;
    }
	.disMob{
		display:none;
    }
	.disTablet{
		display:inherit;
    }
	.disOnlyTablet{
		display:block;
	}
    .contentWidth{
        width:98%;
        margin:0 auto;
    }
    h1, h2 {
        letter-spacing: 0;
        font-size: 20px;
        padding: 0px 10px 16px;
        line-height: 32px;
    }
    h3{
        font-size: 20px;
    }
    .sectionSpacing {
        padding: 20px 0;
    }



    /* header styles
    ===================================*/
    .logoContainer{
        width: 100%;
        display: block;
    }
    .headerNavRow {
        width:100%;
    }
}



/* Tablet break point
===========================================*/
@media (max-width: 767px) {



    /* General styles
    ===================================*/
    body{
        margin-top: 118px;
    }
    .disDesk{
        display:none;
    }
    .disTablet{
    	display:none;
    }
	.disMob{
		display:inherit;
    }



    /* header styles
    ===================================*/
    .logoContainer{
        width: 100%;
        display: block;
    }

    /*-Changes to existing classes-*/
    .headerNavRow {
        font-size: 16px;
        position: fixed;
        width: 100%;
        background-color: #222222;
        left: -100%;
        transition:left 0.1s;
        border-bottom: 4px solid #d40808;
        margin-top: -44px;
        height: 100%;
    }
    .headerNavRowItem {
        text-align: left;
        padding: 14px 20px;
        width: 100%;
        box-sizing: border-box;
        font-size: 14px;
    }
    .headerSelectedNavItem:before{
        top: 0;
        right: auto;
        border-bottom: 10px solid transparent;
        border-left: 10px solid #ba0b1b;
    }

    /*-Mobile nacv menu specific classes-*/
    .headerNavMenuTriggerCont{
        padding: 8px 0px;
        padding-left: 10px;
        border-bottom: 4px solid #ba0b1b;
        color: #ffffff;
        background-color: #000000;
        font-family: "Avenir LT Heavy", sans-serif;
    }
    .headerNavMenuTriggerCont:hover{
        background-color:#000000;
    }
    .mobMenuShow{
        left:0;
    }
    .headerNavMenuTrigger{
        display: inline-block;
        width: 30px;
        height: 30px;
        text-align: center;
        background-color: #ba0b1b;
        color: #ffffff;
        font-size: 20px;
        padding: 7px;
        float: right;
        margin: -8px 0px;
        cursor:pointer;
    }
    .headerNavMenuTriggerContSingle{
        border:none;
    }
    .headerNavMenuTriggerContSingle .headerNavMenuTrigger{
        background-color:#000000;
        float:none;
    }
    .headerNavMenuTriggerContSingle .redButton{
        font-size: 12px;
        padding: 0px 8px;
        margin-right:10px;
        border-radius: 2px;
        float:right;
    }
    .mobMenuScroll{
        overflow-x: scroll;
        height: calc(100% + -118px);
    }
    .headerNavItemSubCont.mob{
        position: relative;
        background: #333;
        transform: none;
        left: 0;
        z-index: 1;
        width: 100%;
        margin: -20px;
        margin-top: 14px;
        padding: 0 21px;
        box-sizing: unset;
        border-top: none;
        box-shadow: none;
    }
    .headerNavRowItem.disMob:hover:not(.headerNavRowItmHasHvr){
        background-color: inherit;
        color: inherit;
    }
    .headerNavItemSubCont .headerNavRowItem{
        padding:14px;
    }
}
