:root 
{
    --primary-rgb: 15,42,78;
    --secondary-rgb: 255,204,50;
    --tertiary-rgb: 53,77,160;
    --base-body-color: rgb(100,100,100);
    --link-color: #0d6efd;
    --link-color-hover: #0a58ca;
    
    --body-font-family: open-sans, Helvetica, Arial, sans-serif;
    --base-font-size: 16px;
    --body-font-weight: 400;
    --hdr-font-weight: 600; /* semi bold */
    --strong-font-weight: 700;

    --base-mb: var(--base-font-size);
    --hdr-mb: calc(var(--base-font-size) * 0.5);

    --gutter-x: 1.5rem;

    --sctn-spacing-fxd: calc(var(--base-font-size) * 1.5);
    --sctn-spacing-scaling: calc(var(--base-font-size) * 1.5);

    --pg-w: 8.5in;
}

@media (min-width: 992px) 
{
    :root 
    {
        --sctn-spacing-scaling: calc(var(--base-font-size) * 3);
    }
}

/* START reboot ================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body
{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: var(--base-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: rgb(var(--base-body-color));
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--hdr-mb);
}

p {
  margin-top: 0;
  margin-bottom: var(--base-mb);
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: var(--base-mb);
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: var(--base-mb);
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: calc( var(--base-mb) * 0.5);
  margin-left: 0;
}

blockquote {
  margin: 0 0 var(--base-mb);
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: calc(var(--base-mb) * -0.25);
}

sup {
  top: calc(var(--base-mb) * -0.5);
}

a {
  color: var(--link-color);
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: var(--link-color-hover);
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: var(--base-font-size);
}

pre {
  margin-top: 0;
  margin-bottom: var(--base-mb);
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 var(--base-mb);
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a,
area,
summary,
textarea {
  touch-action: manipulation;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

progress {
  vertical-align: baseline;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}
/* END reboot =================================== */



/* grid ============================================ */
.container 
{
    margin: 0 auto;
    max-width: 1140px;
}

.row 
{
    display: flex;
    flex-wrap: wrap;
}

.row > *
{
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}

.g-5 
{
    --gutter-x: 3rem;
}

.row[class*="g-"]
{
    margin-right: calc(-.5 * var(--gutter-x));
    margin-left: calc(-.5 * var(--gutter-x));
}

.row[class*="g-"] > * 
{
    padding-right: calc(.5 * var(--gutter-x));
    padding-left: calc(.5 * var(--gutter-x));
}

@media (min-width: 768px)
{
    .col-md-5
    {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    
    .col-md-6
    {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7
    {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

@media (min-width: 992px)
{
    .col-lg-5
    {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6
    {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7
    {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-9
    {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (min-width: 1200px)
{
    .col-xl-8
    {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
}

/* END grid ============================================ */


/* typo ================================================ */
p, ul 
{
    margin-bottom: 1.5rem;
}

a 
{
    text-decoration: underline;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 
{
    font-weight: var(--hdr-font-weight);
    color: rgb(var(--tertiary-rgb));
}

.h1, h1 {
    font-size: calc(1.375rem + 1.5vw);
    color: rgb(var(--secondary-rgb));
    text-align: center;
    line-height: 1.1;
}

.h2, h2 {
    font-size: calc(1.325rem + .9vw);
}

.h3, h3 {
    font-size: calc(1.3rem + .6vw);
}

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

    .h2, h2 {
        font-size: 2rem;
    }

    .h3, h3 {
        font-size: 1.75rem;
    }
}

.h6, h6 {
    font-size: 1rem;
}

strong, .strong 
{
    font-weight: var(--strong-font-weight);
}

.list-unstyled
{
    padding-left: 0;
    list-style: none;
}

.smaller 
{
    font-size: 81.25%;
    line-height: 1.1;
}

.text-gray 
{
    color: rgb(var(--body-color));
}

.text-tertiary 
{
    color: rgb(var(--tertiary-rgb));
}

.list-align-left 
{
    padding-left: 1.125rem;
}

.list-cols-2 
{
    column-width: 50%;
    column-count: 2;
}

.list-item-dashes 
{
    list-style-type: "–";
}

.list-item-dashes > li 
{
    padding-left: 0.25rem;
}

/* END typo ================================================ */


/* START cards ============================================= */
#discount-cards 
{
    position: relative;
}

.card 
{
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    background-color: #fff;
    border-radius: 24px;
    border: 2px dotted rgb(var(--primary-rgb));
    border-width: 2px 2px 0 2px;
}

.card p,
.card ol,
.card ul 
{
    margin-bottom: 5px;
}

.card-body > :last-child 
{
    margin-bottom: 0;
    line-height: 1.1;
}

.card-wrap 
{
    display: flex;
    height: 100%;
    overflow: hidden;
}

.card-body 
{
    border: 11px solid rgb(var(--secondary-rgb));
    background-color: #fff;
    padding: 13px;
    border-radius: 17px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title 
{
    text-align: center;
    line-height: 1;
    color: rgb(var(--primary-rgb));
}

.card-subtitle 
{
    color: rgb(var(--tertiary-rgb));
    font-size: 70%;
}

.card-body ol,
.card-body ul
{
    padding-left: 1.25rem;
}

.card-body ul.list-item-dashes 
{
    padding-left: 0.75rem;
}

.card-body ul.list-item-dashes > li 
{
    padding-left: 0.5rem;
}

.brand-separator 
{
    line-height: 1;
    font-size: 3rem;
    display: block;
    transform: scale(-0.35,1);
    position: relative;
    margin-top: -0.25rem;
}

.card-back 
{
    position: relative;
    margin-bottom: -1px;
    transform: rotate(180deg);
}

.scissors
{
    display: none;
    position: absolute;
    bottom: 25%;
    right: -31px;
    width: 29px;
    height: 40px;
}

@media (min-width: 992px)
{
    .scissors 
    {
        display: block;
    }
}

.scissors svg 
{
    fill: #fff;
    width: 29px;
    height: 40px;
}
/* END cards ====================================== */

.sctn-hdr 
{
    padding-top: var(--sctn-spacing-scaling);
    margin-bottom: var(--sctn-spacing-scaling);
}

.sctn-hdr h2 
{
    margin-bottom: 0;
}

header 
{
    padding-top: var(--sctn-spacing-scaling);
    padding-bottom: var(--sctn-spacing-fxd);
}

header img
{
    margin-right: auto;
}

#hero 
{
    padding-top: var(--sctn-spacing-scaling);
    margin-bottom: var(--sctn-spacing-fxd);
}

#content 
{
    margin-top: var(--sctn-spacing-scaling);
}

footer 
{
    font-size: 80%;
    margin-top: var(--sctn-spacing-scaling);
    margin-bottom: var(--sctn-spacing-scaling);
    text-align: center;
}


/* utilities ============================================ */
.text-center 
{
    text-align: center !important;
}

.img-fluid 
{
    max-width: 100%;
    height: auto;
}

.mx-auto
{
    margin-right: auto!important;
    margin-left: auto!important;
}

.round 
{
    border-radius: 50%;
}

.d-flex 
{
    display: flex !important;
}

.align-items-center 
{
    align-items: center !important;
}

.d-none 
{
    display: none !important;
}

.mt-3 
{
    margin-top: 1.5rem !important;
}

.mb-0 
{
    margin-bottom: 0 !important;
}

.mb-3 
{
    margin-bottom: 1rem !important;
}

.mb-4 
{
    margin-bottom: 1.5rem !important;
}

.mb-5 
{
    margin-bottom: 3rem !important;
}

.pe-4 
{
    padding-right: 1.5rem !important;
}

.pe-5 
{
    padding-right: 3rem !important;
}

@media (min-width: 768px)
{
    .d-md-block 
    {
        display: block !important;
    }
}

@media (min-width: 992px)
{
    .d-lg-block 
    {
        display: block !important;
    }

    .d-lg-flex 
    {
        display: flex !important;
    }
}
