@font-face {
    font-family: 'TradeGothicLTStd';
    src: url('../css/fonts/TradeGothicLTStd.eot');
    src: url('../css/fonts/TradeGothicLTStd.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/TradeGothicLTStd.woff2') format('woff2'),
        url('../css/fonts/TradeGothicLTStd.woff') format('woff'),
        url('../css/fonts/TradeGothicLTStd.ttf') format('truetype'),
        url('../css/fonts/TradeGothicLTStd.svg#TradeGothicLTStd') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TradeGothicLTStd-Bold';
    src: url('TradeGothicLTStd-Bold.eot');
    src: url('TradeGothicLTStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('TradeGothicLTStd-Bold.woff2') format('woff2'),
        url('TradeGothicLTStd-Bold.woff') format('woff'),
        url('TradeGothicLTStd-Bold.ttf') format('truetype'),
        url('TradeGothicLTStd-Bold.svg#TradeGothicLTStd-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root{
    --primary-font:'TradeGothicLTStd'; 
    --secondary-font:'TradeGothicLTStd-Bold'; 
    --primary-color:#4C4C4C;
    --black-color:#161616;
    --white-color:#ffffff;
    --primary-background:#ebebed;
}

*{outline:none;box-sizing:border-box;margin:0;padding:0;}
input,button{-moz-appearance:none;-webkit-appearance:none;}
input,button,div,ul,li{outline:none !important;}
a:link,a:visited{text-decoration:none;}
img{border:none;outline:none;}
ul,ul li{list-style-type:none}
.relative{position:relative;}
.absolute{position:absolute;}
.fixed{position: fixed;}
.highIndex{z-index: 999;}
.clr{clear:both}
.floatLft{float:left}
.floatRgt{float:right}
.inlineBlk{display:inline-block;vertical-align:middle}
.col-100{width:100%}
.col-50{width:50%}
.col-30{width:30%}
.col-20{width:20%}
.textCenter{text-align:center;}
.textLeft{text-align:left;}
.textRight{text-align:right;}
.textUpper{text-transform: uppercase;}
.flexCenter{display: flex;justify-content: center;}
.fwRegular{font-weight: var(--fw-regular);}
.fwLight{font-weight: var(--fw-light);}
.fwMedium{font-weight: var(--fw-medium);}
.fwBold{font-weight: var(--fw-bold);}
.primary-font{font-family: var(--primary-font);}
.primary-color{color: var(--primary-color);}
.black-color{color: var(--black-color);}
.white-color{color: var(--white-color);}
.primary-background{background-color: var(--primary-background);}
