@charset "UTF-8";

/* CSS Document */

@font-face {
    font-family: GothamBlack;
    src: url(/fonts/gotham/Gotham-Black.otf) format('opentype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: GothamRegular;
    src: url(/fonts/gotham/GothamBook.otf) format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: GothamRegularItalic;
    src: url(/fonts/gotham/GothamBookItalic.otf) format('truetype');
    font-weight: normal;
    font-style: italic
}

@font-face {
    font-family: GothamRegular;
    src: url(/fonts/gotham/GothamBook.otf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: GothamBold;
    src: url(/fonts/gotham/GothamBold.otf) format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: GothamBoldItalic;
    src: url(/fonts/gotham/GothamBoldItalic.otf) format('truetype');
    font-weight: normal;
    font-style: italic
}

:root {
    --first-color: #ffd400;
    --second-color: #72757b;
    --third-color: #46AB3B;
    --fourth-color: #333333;
    --banner-color: #EFEFEF;
    --text-color: #000000;
}

h1 {
    font-family: 'GothamBlack', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    font-size: 36px;
    margin-top: 0px;
    margin-bottom: 8px;
}

h2 {
    font-family: 'GothamBlack', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    font-size: 28px;
    margin-top: 0px;
    margin-bottom: 8px;
}

h3 {
    font-family: 'GothamBlack', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    font-size: 22px;
    margin-top: 0px;
    margin-bottom: 8px;
}

h4 {
    font-family: 'GothamBlack', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 8px;
}

h5 {
    font-family: 'GothamBlack', Arial, Helvetica, sans-serif;
    color: var(--text-color);
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 8px;
}

p {
    color: var(--text-color);
    margin-bottom: 8px;
    font-family: 'GothamRegular', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 20px;
}

body {
    font-family: 'GothamRegular', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 15px;
    color: var(--text-color);
}

strong,
b {
    font-family: 'GothamBold', Arial, Helvetica, sans-serif;
    font-weight: normal;
}

hr {
    border: 1px solid var(--text-color);
    margin: 20px 0px;
}

p.searchholder {
    text-align: center;
    clear: both
}


/* Text Align */

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.feature-heading {
    text-align: center;
    font-size: 20px;
    margin-bottom: 0px;
}

.presented {
    font-size: 75%;
    text-align: center;
}

a.impersonate {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: var(--first-color);
    padding: 11px;
    max-width: 200px;
    color: #fff!IMportant;
    z-index: 2;
    text-align: center;
}

.lightblue {
    color: #B8CFE9;
}

.white {
    color: #fff;
}

.homesliderhead {
    font-size: 40px!Important;
    line-height: 105%;
    font-size: 36px !important;
}

.product-grid-product-name a {
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 20px;
    margin-top: 10px;
    overflow: hidden;
}

.product-grid-product-name a:hover {
    text-decoration: none
}


/*Styles for screen 600px and lower*/

@media only screen and (max-width: 667px) {
    h1 {
        font-size: 26px;
    }
    h2 {
        font-size: 18px;
    }
    p {
        font-size: 14px;
    }
}