:root 
{
    --spacer: 1rem;
    --brand-red-200: #cf1a32;
    --brand-red-200-rgb: 207,26,50;
    --brand-red-600: #6e0307;
    --brand-red-600-rgb: 110,3,7;
    --brand-red: #ed1d24;
    --brand-gray-100: #f0efee;
    --brand-gray-250: #cccccc;
    --brand-gray-300: #bcbec0;
    --brand-gray-400: #b3b3b3;
    --brand-gray-450: #a9a3a1;
    --brand-gray-650: #666666;
    --brand-graywarm-800: #524b48;
    --sctn-spacing: calc(1.375rem + 1.5vw);
    --transition: ease-in 0.3;

    --bs-form-control-bg: var(--brand-gray-100);
    --bs-border-color: var(--brand-gray-300);

    --brand-btn-bgg: linear-gradient(0deg, rgba(var(--brand-red-600-rgb),1) 0%, rgba(var(--brand-red-200-rgb),1) 100%);

    --brand-btn-bgg-hover: linear-gradient(0deg, rgba(var(--brand-red-200-rgb),1) 0%, rgba(var(--brand-red-600-rgb),1) 100%);
}

@media (min-width: 1200px)
{
    :root 
    {
        --sctn-spacing: 2.5rem;
    }
}

body 
{
    font-family: Helvetica, Arial, sans-serif;
    color: var(--brand-graywarm-800);
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4
{
    font-family: 'Fjalla One', Helvetica, Arial, sans-serif;
}

.sctn-hdr
{
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) 
{
    .sctn-hdr 
    {
        font-size: 2.5rem;
    }
}

/* size these more like h4 */
h3, .h3 
{
    font-size: calc(1.125rem + .3vw);
}

@media (min-width: 1200px) 
{
    h3, .h3 
    {
        font-size: 1.35rem;
    }
}

h5, .h5 
{
    letter-spacing: 0.04rem;
    line-height: 1.35;
}

h1 sup 
{
    font-size: 1.5rem;
    line-height: 1;
    vertical-align: super;
}

.lead 
{
    font-weight: unset;
}

.footnote 
{
    font-size: 0.875em;
    font-style: italic;
    line-height: 1.35;
}

a 
{
    color: var(--brand-red);
    transition: color var(--transition);
}

a:hover 
{
    color: var(--bs-black);
}

.text-light a:hover 
{
    color: var(--bs-white);
}

.list-align-left 
{
    padding-left: 1rem;
}
  
.list-red li::marker
{
    color: var(--brand-red);
}

.text-gray-450 
{
    color: var(--brand-gray-450);
}

.text-red 
{
    color: var(--brand-red);
}

.text-uc 
{
    text-transform: uppercase;
}

.lc-mb-0 > *:last-child
{
    margin-bottom: 0;
}

@media (min-width: 1400px) 
{
    .container
    {
        max-width: 1140px;
    }
}

.btn 
{
    --bs-btn-border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-primary 
{
    --bs-btn-hover-border-color: transparent;
    --bs-btn-border-color: transparent;
    background: var(--brand-btn-bgg);
}

.btn-primary:hover 
{
    background: var(--brand-btn-bgg-hover);
}

.form-control 
{
    border-radius: 0;
    font-size: 0.75em;
    font-weight: 600;
}

form .fsRow 
{
    margin-bottom: var(--bs-gutter-y);
}

form ::placeholder 
{
    text-transform: uppercase;
}

.sctn-py 
{
    padding-top: var(--sctn-spacing);
    padding-bottom: var(--sctn-spacing);
}

.sctn-pt 
{
    padding-top: var(--sctn-spacing);
}

.sctn-pb 
{
    padding-bottom: var(--sctn-spacing);
}

@media (min-width: 768px) 
{
    .sctn-md-pb-0 
    {
        padding-bottom: 0;
    }
}

.sctn-my 
{
    margin-top: var(--sctn-spacing);
    margin-bottom: var(--sctn-spacing);
}

.sctn-mt 
{
    margin-top: var(--sctn-spacing);
}

.sctn-mb 
{
    margin-bottom: var(--sctn-spacing);
}

.bgc-gray-250 
{
    background-color: var(--brand-gray-250);
}

.bgc-black 
{
    background-color: var(--bs-black);
}

.border-btm
{
    border-bottom: 12px solid var(--brand-red);
}

.bg-t-metal-light 
{
    background-image: url('imgs/bg_metal_spotlight.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 300px;
    transition: background-size var(--transition);
}

@media (min-width: 768px) 
{
    .bg-t-metal-light 
    {
        background-size: auto 400px;
    }
}

@media (min-width: 992px) 
{
    .bg-t-metal-light 
    {
        background-size: 100% auto;
    }
}

.bgc-t-white 
{
    position: relative;
}

.bgc-t-white:before 
{
    position: absolute;
    z-index: 0;
    content: " ";
    height: 254px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--bs-white);
}

.bgc-t-white .container 
{
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) 
{
    .bgc-smo-t-white 
    {
        position: relative;
    }

    .bgc-smo-t-white:before 
    {
        position: absolute;
        z-index: 0;
        content: " ";
        height: 254px;
        width: 100%;
        top: 0;
        left: 0;
        background-color: var(--bs-white);
    }

    .bgc-smo-t-white .container 
    {
        position: relative;
        z-index: 1;
    }
}

.bgp-t-metal 
{
    position: relative;
}

.bgp-t-metal:before 
{
    position: absolute;
    z-index: 0;
    content: " ";
    height: 415px;
    width: 100%;
    top: 0;
    left: 0;
    background: url('imgs/bgp_white-n-metal-panel_t.webp') repeat-x top left;
}

.bgp-t-metal .container 
{
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) 
{
    .bgp-md-t-metal 
    {
        position: relative;
    }

    .bgp-md-t-metal:before 
    {
        position: absolute;
        z-index: 0;
        content: " ";
        height: 415px;
        width: 100%;
        top: 0;
        left: 0;
        background: url('imgs/bgp_white-n-metal-panel_t.webp') repeat-x top left;
    }

    .bgp-md-t-metal .container 
    {
        position: relative;
        z-index: 1;
    }
}

.bgi-shelf 
{
    background-image: url('imgs/bg-wire-shelf.webp');
    background-repeat: no-repeat;
    background-position: bottom right;
}

@media (max-width: 767px) 
{
    .bgi-shelf 
    {
        background-size: auto 30%;
    }

    .cards-col img 
    {
        max-width: 200px;
        height: auto;
    }
}

#header 
{
    background-color: var(--brand-red);
}

#header .container
{
    text-align: center;
}

#branding 
{
    max-width: 250px;
}

@media (min-width: 768px) 
{
    #branding 
    {
        max-width: 300px;
    }
}

@media (min-width: 992px) 
{
    #branding 
    {
        max-width: unset;
    }
}

#hero 
{
    background-color: var(--bs-black);
    color: var(--bs-white);
    border-bottom: 12px solid var(--brand-red);
}

@media (max-width: 767px) 
{
    #thanks #hero 
    {
        position: relative;
        background-position: right top;
    }

    #thanks #hero:after 
    {
        content: " ";
        position: absolute;
        display: block;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0,0,0,0.5);
    }

    #thanks #hero .container 
    {
        position: relative;
        z-index: 1;
    }
}

#hero a:hover 
{
    color: var(--bs-white);
}

@media (max-width: 767px) 
{
    #hero 
    {
        background-image: url('imgs/hero-cards_sm.webp');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: right center;
        min-height: 45vh;
        display: flex;
    }
    
    #hero .container 
    {
        display: flex;
        flex-grow: 1;
    }
    
    #hero .row 
    {
        flex-grow: 1;
    }

    #hero [class*="col"]:first-child 
    {
        height: 100%;
    }

    #hero [class*="col"]:first-child .text-col 
    {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
}

#footer 
{
    background-color: var(--brand-gray-650);
    color: var(--brand-gray-400);
    font-size: 0.8rem;
}

#footer ul,
#footer p 
{
    margin-bottom: 0;
}

#footer li:not(:last-child) 
{
    margin-right: var(--spacer);
}

#footer .h4
{
    font-size: 1rem;
    white-space: nowrap;
}

@media (min-width: 1200px)
{
    #footer .h4
    {
        font-size: calc(1.275rem + .3vw);
    }
}


/* START utilities ========================= */
.embed-container
{ 
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}


.embed-container iframe,
.embed-container object,
.embed-container embed
{ 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* END utilities =========================== */