/************************************
/*----------------------------------
/* CUSTOM PROPERTIES
/*----------------------------------
/*************************************/


:root {
    /*----- Row Width -----*/
    --row-max-width-px: 1200px;
    --row-max-width-rem: 75rem;
    /*----- Colors -----*/
    /*----- Base  -----*/
    --color-base: #1A2D3C;
    /* rgb(10,10,10) | Base Font Color */
    --color-base-rgb: 10, 10, 10;
    --color-white: #fefefe;
    /* rgb(254,254,254) */
    --color-white-rgb: 254, 254, 254;
    --color-black: #0a0a0a;
    /* rgb(10,10,10) */
    --color-black-rgb: 10, 10, 10;
    /*----- Primary  -----*/
    --color-primary: #9f092d;
    /* rgb(159,9,45) */
    --color-primary-rgb: 159, 9, 45;
    --color-primary-dark: #700821;
    /* rgb(112,8,33) */
    --color-primary-dark-rgb: 112, 8, 33;
    /*----- Secondary  -----*/
    --color-secondary: #24578a;
    /* rgb(36,88,122) */
    --color-secondary-rgb: 36, 88, 122;
    --color-secondary-alt: #142742;
    /* rgb(104,170,201) */
    --color-secondary-alt-rgb: 104, 170, 201;
    /*----- Tertiary  -----*/
    --color-tertiary: #394044;
    --color-tertiary-rgb: 57, 64, 68;
    /*----- Colors Incorporated from New Design Pieces  -----*/
    --color-bonus-01: #349098;
    /* rgb (52,144,152) */
    --color-bonus-01-rgb: 52, 144, 152;
    --color-bonus-02: #00527A;
    /*----- Accents  -----*/
    --color-gray-accent: #f0f0f0;
    /* rgb(240,240,240) */
    --color-gray-accent-rgb: 240, 240, 240;
    --color-gray-accent-alt: #F5F5F5;
    /* rgb(245,245,245) */
    --color-gray-accent-alt-rgb: 245, 245, 245;
    --color-nav-accent01: #f0f0f0;
    /* rgb(240,240,240) */
    --color-nav-accent01-rgb: 240, 240, 240;
    --color-nav-accent02: #e8e8e8;
    /* rgb(232,232,232) */
    --color-nav-accent02-rgb: 232, 232, 232;
    --color-highlight: #fff3cd;
    /* rgb(255,243,205) | <mark> */
    --color-highlight-alt: #feeaea;
    /* rgb(254,234,234) | <code> */
    /*----- Font Families -----*/
    --font-primary: 'Lato', sans-serif;
    /* 400 & 700 */
    --font-secondary: 'Catamaran', sans-serif;
    /* 400 & 700 */
    /*----- Font Sizes -----*/
    --font-size-base: 1.125rem;
    /* Paragraphs and such */
    --font-size-lead: 1.25rem;
    --font-size-h6: 1.5rem;
    --font-size-h5: 2rem;
    --font-size-h4: 2.313rem;
    --font-size-h3: 1.625rem;
    --font-size-h2: 1.875rem;
    --font-size-h1: 2rem;
    /*----- Border Radius -----*/
    --button-radius: 5px;
}

html {
    font-size: 16px;
    font-size: 1rem;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    overflow-anchor: none;
}

a {
    color: #9f092d;
    font-weight: 700;
}

a:hover,
a:focus,
a:active {
    color: #700821;
    text-decoration: none;
}

.row {
    max-width: 75rem;
}

.small-collapse>.column,
.small-collapse>.columns {
    padding-right: 0;
    padding-left: 0;
}

.small-uncollapse>.column,
.small-uncollapse>.columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
}

@media only screen and (min-width: 40rem) {

    .medium-collapse>.column,
    .medium-collapse>.columns {
        padding-right: 0;
        padding-left: 0;
    }

    .medium-uncollapse>.column,
    .medium-uncollapse>.columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

@media only screen and (min-width: 64rem) {

    .large-collapse>.column,
    .large-collapse>.columns {
        padding-right: 0;
        padding-left: 0;
    }

    .large-uncollapse>.column,
    .large-uncollapse>.columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

@media only screen and (min-width: 75rem) {

    .xl-collapse>.column,
    .xl-collapse>.columns {
        padding-right: 0;
        padding-left: 0;
    }

    .xl-uncollapse>.column,
    .xl-uncollapse>.columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

@media only screen and (min-width: 90rem) {

    .xxl-collapse>.column,
    .xxl-collapse>.columns {
        padding-right: 0;
        padding-left: 0;
    }

    .xxl-uncollapse>.column,
    .xxl-uncollapse>.columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

@media only screen and (min-width: 40rem) {
    .medium-expand {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media only screen and (min-width: 64rem) {
    .large-expand {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
        max-width: none;
    }
}

@media only screen and (min-width: 75rem) {
    .xl-expand {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media only screen and (min-width: 90rem) {
    .xxl-expand {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

.row.small-unstack>.column,
.row.small-unstack>.columns {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
}

@media only screen and (min-width: 40rem) {

    .row.medium-unstack>.column,
    .row.medium-unstack>.columns {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media only screen and (min-width: 64rem) {

    .row.large-unstack>.column,
    .row.large-unstack>.columns {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media only screen and (min-width: 75rem) {

    .row.xl-unstack>.column,
    .row.xl-unstack>.columns {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

@media only screen and (min-width: 90rem) {

    .row.xxl-unstack>.column,
    .row.xxl-unstack>.columns {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
        flex: 1 1 0px;
    }
}

.shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
}

@media only screen and (min-width: 40rem) {
    .medium-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }
}

@media only screen and (min-width: 64rem) {
    .large-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }
}

@media only screen and (min-width: 75rem) {
    .xl-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }
}

@media only screen and (min-width: 90rem) {
    .xxl-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }
}

.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-spaced {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-self-top {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-self-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-self-middle {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.align-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.align-center-middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

@media only screen and (min-width: 40rem) {
    .medium-align-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .medium-align-left {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .medium-align-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .medium-align-justify {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .medium-align-spaced {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .medium-align-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .medium-align-self-top {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .medium-align-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .medium-align-self-bottom {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .medium-align-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .medium-align-self-middle {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .medium-align-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .medium-align-self-stretch {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .medium-align-center-middle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
    }
}

@media only screen and (min-width: 64rem) {
    .large-align-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .large-align-left {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .large-align-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .large-align-justify {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .large-align-spaced {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .large-align-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .large-align-self-top {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .large-align-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .large-align-self-bottom {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .large-align-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .large-align-self-middle {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .large-align-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .large-align-self-stretch {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .large-align-center-middle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
    }
}

@media only screen and (min-width: 75rem) {
    .xl-align-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .xl-align-left {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .xl-align-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .xl-align-justify {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .xl-align-spaced {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .xl-align-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .xl-align-self-top {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .xl-align-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .xl-align-self-bottom {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .xl-align-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .xl-align-self-middle {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .xl-align-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .xl-align-self-stretch {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .xl-align-center-middle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
    }
}

@media only screen and (min-width: 90rem) {
    .xxl-align-right {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .xxl-align-left {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .xxl-align-center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .xxl-align-justify {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .xxl-align-spaced {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .xxl-align-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .xxl-align-self-top {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .xxl-align-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .xxl-align-self-bottom {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .xxl-align-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .xxl-align-self-middle {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .xxl-align-stretch {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .xxl-align-self-stretch {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .xxl-align-center-middle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
    }
}

.small-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.small-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.small-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.small-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.small-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.small-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

@media only screen and (min-width: 40rem) {
    .medium-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .medium-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .medium-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .medium-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .medium-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .medium-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

@media only screen and (min-width: 64rem) {
    .large-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .large-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .large-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .large-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .large-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .large-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

@media only screen and (min-width: 75rem) {
    .xl-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .xl-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .xl-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .xl-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .xl-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .xl-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

@media only screen and (min-width: 90rem) {
    .xxl-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .xxl-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .xxl-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .xxl-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .xxl-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .xxl-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

.color-primary {
    color: #9f092d;
}

.color-secondary {
    color: #24587a;
}

.color-third {
    color: #394044;
}

.color-white {
    color: #ffffff;
}

.color-black {
    color: #000000;
}

.color-light {
    color: #7ba0b2;
}

.background-primary {
    background: #9f092d;
}

.background-secondary {
    background: #24587a;
}

.background-third {
    background: #394044;
}

.background-white {
    color: #ffffff;
}

.background-black {
    color: #000000;
}

.marg {
    margin: 0.5rem;
}

.marg-0 {
    margin: 0;
}

.marg-vert {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.marg-horiz {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.marg-top {
    margin-top: 0.5rem;
}

.marg-bottom {
    margin-bottom: 0.5rem;
}

.marg-left {
    margin-left: 0.5rem;
}

.marg-right {
    margin-right: 0.5rem;
}

.marg-half {
    margin: 0.25rem;
}

.marg-half-vert {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.marg-half-horiz {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.marg-half-top {
    margin-top: 0.25rem;
}

.marg-half-bottom {
    margin-bottom: 0.25rem;
}

.marg-half-left {
    margin-left: 0.25rem;
}

.marg-half-right {
    margin-right: 0.25rem;
}

.marg-2x {
    margin: 1rem;
}

.marg-2x-vert {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.marg-2x-horiz {
    margin-left: 1rem;
    margin-right: 1rem;
}

.marg-2x-top {
    margin-top: 1rem;
}

.marg-2x-bottom {
    margin-bottom: 1rem;
}

.marg-2x-left {
    margin-left: 1rem;
}

.marg-2x-right {
    margin-right: 1rem;
}

.marg-3x {
    margin: 1.5rem;
}

.marg-3x-vert {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.marg-3x-horiz {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.marg-3x-top {
    margin-top: 1.5rem;
}

.marg-3x-bottom {
    margin-bottom: 1.5rem;
}

.marg-3x-left {
    margin-left: 1.5rem;
}

.marg-3x-right {
    margin-right: 1.5rem;
}

@media only screen and (min-width: 40rem) {
    .marg {
        margin: 1rem;
    }

    .marg-vert {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .marg-horiz {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .marg-top {
        margin-top: 1rem;
    }

    .marg-bottom {
        margin-bottom: 1rem;
    }

    .marg-left {
        margin-left: 1rem;
    }

    .marg-right {
        margin-right: 1rem;
    }

    .marg-half {
        margin: 0.5rem;
    }

    .marg-half-vert {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .marg-half-horiz {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .marg-half-top {
        margin-top: 0.5rem;
    }

    .marg-half-bottom {
        margin-bottom: 0.5rem;
    }

    .marg-half-left {
        margin-left: 0.5rem;
    }

    .marg-half-right {
        margin-right: 0.5rem;
    }

    .marg-2x {
        margin: 2rem;
    }

    .marg-2x-vert {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .marg-2x-horiz {
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .marg-2x-top {
        margin-top: 2rem;
    }

    .marg-2x-bottom {
        margin-bottom: 2rem;
    }

    .marg-2x-left {
        margin-left: 2rem;
    }

    .marg-2x-right {
        margin-right: 2rem;
    }

    .marg-3x {
        margin: 3rem;
    }

    .marg-3x-vert {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .marg-3x-horiz {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .marg-3x-top {
        margin-top: 3rem;
    }

    .marg-3x-bottom {
        margin-bottom: 3rem;
    }

    .marg-3x-left {
        margin-left: 3rem;
    }

    .marg-3x-right {
        margin-right: 3rem;
    }
}

@media only screen and (min-width: 64rem) {
    .marg {
        margin: 1.5rem;
    }

    .marg-vert {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .marg-horiz {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .marg-top {
        margin-top: 1.5rem;
    }

    .marg-bottom {
        margin-bottom: 1.5rem;
    }

    .marg-left {
        margin-left: 1.5rem;
    }

    .marg-right {
        margin-right: 1.5rem;
    }

    .marg-half {
        margin: 0.75rem;
    }

    .marg-half-vert {
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .marg-half-horiz {
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }

    .marg-half-top {
        margin-top: 0.75rem;
    }

    .marg-half-bottom {
        margin-bottom: 0.75rem;
    }

    .marg-half-left {
        margin-left: 0.75rem;
    }

    .marg-half-right {
        margin-right: 0.75rem;
    }

    .marg-2x {
        margin: 3rem;
    }

    .marg-2x-vert {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .marg-2x-horiz {
        margin-left: 3rem;
        margin-right: 3rem;
    }

    .marg-2x-top {
        margin-top: 3rem;
    }

    .marg-2x-bottom {
        margin-bottom: 3rem;
    }

    .marg-2x-left {
        margin-left: 3rem;
    }

    .marg-2x-right {
        margin-right: 3rem;
    }

    .marg-3x {
        margin: 4.5rem;
    }

    .marg-3x-vert {
        margin-top: 4.5rem;
        margin-bottom: 4.5rem;
    }

    .marg-3x-horiz {
        margin-left: 4.5rem;
        margin-right: 4.5rem;
    }

    .marg-3x-top {
        margin-top: 4.5rem;
    }

    .marg-3x-bottom {
        margin-bottom: 4.5rem;
    }

    .marg-3x-left {
        margin-left: 4.5rem;
    }

    .marg-3x-right {
        margin-right: 4.5rem;
    }
}

.pad {
    padding: 0.5rem;
}

.pad-0 {
    padding: 0;
}

.pad-vert {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pad-horiz {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.pad-top {
    padding-top: 0.5rem;
}

.pad-bottom {
    padding-bottom: 0.5rem;
}

.pad-left {
    padding-left: 0.5rem;
}

.pad-right {
    padding-right: 0.5rem;
}

.pad-2x {
    padding: 1rem;
}

.pad-2x-vert {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pad-2x-horiz {
    padding-left: 1rem;
    padding-right: 1rem;
}

.pad-2x-top {
    padding-top: 1rem;
}

.pad-2x-bottom {
    padding-bottom: 1rem;
}

.pad-2x-left {
    padding-left: 1rem;
}

.pad-2x-right {
    padding-right: 1rem;
}

.pad-3x {
    padding: 1.5rem;
}

.pad-3x-vert {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.pad-3x-horiz {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pad-3x-top {
    padding-top: 1.5rem;
}

.pad-3x-bottom {
    padding-bottom: 1.5rem;
}

.pad-3x-left {
    padding-left: 1.5rem;
}

.pad-3x-right {
    padding-right: 1.5rem;
}

@media only screen and (min-width: 40rem) {
    .pad {
        padding: 1rem;
    }

    .pad-vert {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .pad-horiz {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pad-top {
        padding-top: 1rem;
    }

    .pad-bottom {
        padding-bottom: 1rem;
    }

    .pad-left {
        padding-left: 1rem;
    }

    .pad-right {
        padding-right: 1rem;
    }

    .pad-2x {
        padding: 2rem;
    }

    .pad-2x-vert {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .pad-2x-horiz {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .pad-2x-top {
        padding-top: 2rem;
    }

    .pad-2x-bottom {
        padding-bottom: 2rem;
    }

    .pad-2x-left {
        padding-left: 2rem;
    }

    .pad-2x-right {
        padding-right: 2rem;
    }

    .pad-3x {
        padding: 3rem;
    }

    .pad-3x-vert {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pad-3x-horiz {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .pad-3x-top {
        padding-top: 3rem;
    }

    .pad-3x-bottom {
        padding-bottom: 3rem;
    }

    .pad-3x-left {
        padding-left: 3rem;
    }

    .pad-3x-right {
        padding-right: 3rem;
    }
}

@media only screen and (min-width: 64rem) {
    .pad {
        padding: 1.5rem;
    }

    .pad-vert {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .pad-horiz {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pad-top {
        padding-top: 1.5rem;
    }

    .pad-bottom {
        padding-bottom: 1.5rem;
    }

    .pad-left {
        padding-left: 1.5rem;
    }

    .pad-right {
        padding-right: 1.5rem;
    }

    .pad-2x {
        padding: 3rem;
    }

    .pad-2x-vert {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .pad-2x-horiz {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .pad-2x-top {
        padding-top: 3rem;
    }

    .pad-2x-bottom {
        padding-bottom: 3rem;
    }

    .pad-2x-left {
        padding-left: 3rem;
    }

    .pad-2x-right {
        padding-right: 3rem;
    }

    .pad-3x {
        padding: 4.5rem;
    }

    .pad-3x-vert {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .pad-3x-horiz {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }

    .pad-3x-top {
        padding-top: 4.5rem;
    }

    .pad-3x-bottom {
        padding-bottom: 4.5rem;
    }

    .pad-3x-left {
        padding-left: 4.5rem;
    }

    .pad-3x-right {
        padding-right: 4.5rem;
    }
}

.font-primary {
    font-family: 'Lato', sans-serif;
}

.font-secondary {
    font-family: 'Catamaran', sans-serif;
}

.fs-normal {
    font-style: normal;
}

.fs-italic {
    font-style: italic;
}

.fs-oblique {
    font-style: oblique;
}

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.fw-bold {
    font-weight: bold;
}

.fw-bolder {
    font-weight: bolder;
}

.fw-lighter {
    font-weight: lighter;
}

.fw-normal {
    font-weight: normal;
}

.fw-unset {
    font-weight: unset;
}

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

.tt-titlecase,
.tt-capitalize {
    text-transform: capitalize;
}

.tt-lowercase {
    text-transform: lowercase;
}

.td-underline {
    text-decoration: underline;
}

.td-overline {
    text-decoration: overline;
}

.td-strike {
    text-decoration: line-through;
}

.td-over-under {
    text-decoration: overline underline;
}

.ta-left,
.text-left {
    text-align: left;
}

.ta-right,
.text-right {
    text-align: right;
}

.ta-center,
.text-center {
    text-align: center;
}

.ta-justify,
.text-justify {
    text-align: justify;
}

.text-center-small {
    text-align: center;
}

@media only screen and (min-width: 40rem) {
    .text-center-small {
        text-align: left;
    }
}

.text-center-small-medium {
    text-align: center;
}

@media only screen and (min-width: 64rem) {
    .text-center-small-medium {
        text-align: left;
    }
}

.text-center-medium {
    text-align: left;
}

@media only screen and (min-width: 40rem) {
    .text-center-medium {
        text-align: center;
    }
}

@media only screen and (min-width: 64rem) {
    .text-center-medium {
        text-align: left;
    }
}

.text-center-medium-large {
    text-align: left;
}

@media only screen and (min-width: 40rem) {
    .text-center-medium-large {
        text-align: center;
    }
}

.text-center-large {
    text-align: left;
}

@media only screen and (min-width: 64rem) {
    .text-center-large {
        text-align: center;
    }
}




.modal {
    /* background-color: rgba(0, 0, 0, 0.8); */
    background-color: transparent;
    border: none;
    display: none;
    max-width: 100%;
    padding: 0.5rem 1rem;
    visibility: hidden;
    z-index: 9999;
}

.modal.active {
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* height: 100%; */
    left: 0;
    max-height: 100%;
    overflow: auto;
    position: fixed;
    right: 0;
    /* top: 50px; */
    top: 0;
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}

.modal--form.active {
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

@media only screen and (min-width: 64rem) and (min-height: 920px) {
    .modal.active {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        top: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .modal.theater.active {
        width: 1200px;
    }

    .modal.modal--form.active {
        width: 52.5rem;
    }

    .modal.active {
        max-width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.modal:focus {
    outline: none;
}

.modal-bg {
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
    position: fixed;
    left: 0;
    opacity: 0.9;
    right: 0;
    top: 0;
    z-index: 9998;
}


.search__modal__container {
    width: 100%;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
}

.search__modal__title {
    color: #ffffff;
    font-size: 3rem;
    margin: 0;
}

.search__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search__input {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 86%;
    flex: 0 0 86%;
    height: 70px;
    font-size: 1.25rem;
    border: 0;
    border-radius: 0;
    margin: 0;
}

@media only screen and (min-width: 64rem) {
    .search__input {
        font-size: 1.5rem;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
    }
}

.search__button {
    background: #24587a;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    height: 72px;
    cursor: pointer;
    border: 0;
    border-radius: 0;
}

@media only screen and (min-width: 64rem) {
    .search__button {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
    }
}

.search__button__icon {
    fill: white;
    height: 20px;
    width: 20px;
}

@media only screen and (min-width: 64rem) {
    .search__button__icon {
        height: 40px;
        width: 40px;
    }
}

.search__close {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 30px;
    background: white;
    color: #9f092d;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    border-radius: 0;
}

.search__close:hover {
    color: #700821;
    background: #e6e6e6;
}

#header {
    height: 120px;
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.top-header {
    width: 100%;
}

.top-header .phone-part {
    text-align: right;
}

.phone-part-title {
    font-size: 16px;
    color: #ffffff;
}

.phone-part .phone-link {
    font-size: 26px;
    line-height: 26px;
    color: #ffffff;
    font-weight: normal;
}

.phone-part .search {
    margin-right: 28px;
}

#header .bottom-header {
    padding-top: 10px;
    width: 100%;
}

#header .nav-link {
    color: #ffffff;
}

.bottom-header .nav {
    width: 100%;
}

@media screen and (max-width: 992px) {
    #header {
        height: auto;
        clear: both;
        min-height: 60px;
    }

    #header .navbar {
        width: calc(100% - 100px);
        float: left;
    }

    #header .bottom-header {
        float: right;
        width: auto;
    }

    .navbar-collapse .btn.close {
        display: block;
        float: none;
        margin-left: auto;
        margin-bottom: 10px;
    }

    .navbar-collapse.collapse {
        position: fixed;
        right: -100%;
        min-height: 100%;
        top: 0;
        bottom: 0;
    }

    .navbar-collapse.collapsing {
        right: -100%;
    }

    .navbar-collapse.collapse.show {
        right: 0;
    }

    .navbar-collapse.collapse.show,
    .navbar-collapse.collapsing {
        position: fixed;
        padding: 30px;
        top: 0;
        bottom: 0;
        z-index: 5;
        background-color: #45718e;
        box-shadow: 1px 1px 5px 5px #3333;
    }
}

@media screen and (max-width: 768px) {
    #header {
        height: auto;
        min-height: 120px;
    }

    .top-header .logo {
        width: 140px;
    }

    .phone-part .phone-link {
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    #header .navbar {
        width: 100%;
    }
}

@media screen and (max-width: 425px) {
    #header .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    .top-header .logo {
        width: 130px;
    }

    .phone-part .phone-link {
        font-size: 16px;
    }

    .phone-part-title {
        font-size: 14px;
    }

    .phone-part .search {
        margin-right: 10px;
    }
}

@media screen and (min-width: 992px) {
    .navbar-collapse .btn.close {
        display: none;
    }

    #header .navbar-nav {
        width: 100%;
    }
}

/* .footer {
    background: #394044;
    padding: 2rem 0 5rem 0;
}

.footer__info {
    color:#F1F1F2;
    font-size: 0.875rem;
    text-align: center;
}

.footer__info:first-child {
    margin-top: 1rem;
}

@media screen and (min-width: 640px) {
    .footer__info {
        text-align: left;
    }
}

@media screen and (min-width: 1024px) {
    .footer__info {
        text-align: center;
        font-size: .625rem;
    }
    .footer__info:first-child {
        margin-top: 0;
    }
}

@media screen and (min-width: 1140px) {
    .footer__info {
        font-size: .875rem;
    }
}

.footer__info a {
    color:#F1F1F2;
    font-weight: 400;
}

.footer__copy {
    color: #ffffff;
    font-size: 0.75rem;
    text-align: center;
} */

.footer {
    background: #394044;
    padding-top: 3.125rem;
}

.footer-lighter-bg {
    background-color: #484F53;
    padding-top: 1.25rem;
    padding-bottom: 1.75rem;
}

.footer-badges .columns {
    margin-bottom: 1.875rem;
}

.footer__info {
    color: #F1F1F2;
    font-size: 1rem;
}

.footer__info a {
    color: currentColor;
    font-weight: 400;
}

.footer__copy {
    color: #A2A2A2;
    font-size: 0.813rem;
}

.footer__line {
    border-color: #6E6E6E;
    max-width: 100%;
}

.footer__badge {
    margin-bottom: 1.5rem;
}

@media only screen and (min-width: 64rem) {
    .footer__badge {
        margin-bottom: 0;
    }
}

.bbb-badge {
    color: transparent;
    background-image: url('../images/BBB.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    text-indent: -9999px;
    white-space: nowrap;
    width: 132px;
    height: 50px;
    display: inline-block;
}

.bbb-badge:hover,
.bbb-badge:focus {
    color: transparent;
}

.social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 1rem;
}

@media only screen and (min-width: 40rem) {
    .social {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: 0;
        margin-bottom: 1rem;
    }
}

.social__item {
    margin: 0 0.25rem;
}

/* .social__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #ffffff;
} */

.social__icon {
    line-height: 0;
    fill: #B0B2B5;
    height: 42px;
    width: 42px;
    transition: fill 350ms ease-in-out;
}

.social__link:hover .social__icon {
    fill: #ffffff;
}

.hidden-pixels {
    position: absolute;
    top: -9999px;
    left: -9999px;
}



.popup-form {
    width: 100%;
    max-width: 52.5rem;
    background-color: #24587a;
    color: #ffffff;
    border-radius: 10px;
    padding: 2rem 1rem;
    position: relative;
}

@media only screen and (min-width: 64rem) {
    .popup-form {
        padding: 2.5rem;
    }
}

.popup-form__title {
    color: #ffffff;
}

.popup-form .close-button {
    color: #ffffff;
}

.popup-form .formPage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media only screen and (min-width: 64rem) {
    .popup-form .formPage {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.popup-form .formRow {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 48%;
    flex: 0 1 48%;
}

.popup-form .formElements label {
    font-weight: normal;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.popup-form .formElements p {
    font-size: 1rem;
    margin: 0;
}

.popup-form .formElements .formRow>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.popup-form .formElements .formRow>ul>li,
.button-hero .formElements .formRow>ul>li {
    float: none;
}

.popup-form .formElements .formRow:nth-child(2)>ul>li:first-child {
    padding-bottom: 0;
}

.popup-form .formElements .formRow:nth-child(2)>ul>li:nth-child(2) {
    padding-top: 0;
}

.popup-form .currentForm input[type=submit],
.button-hero .currentForm input[type=submit] {
    border: none;
    background-color: #9f092d;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Catamaran', sans-serif;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    font-size: 1.75rem;
    padding: 0.75rem 1.75rem;
    line-height: 1;
    border-radius: 0;
    cursor: pointer;
}

.button-hero .currentForm input[type=submit] {
    margin-top: 0;
    margin-bottom: 1rem;
    border-radius: 7px;
}

.popup-form [type=color],
.popup-form [type=date],
.popup-form [type=datetime-local],
.popup-form [type=datetime],
.popup-form [type=email],
.popup-form [type=month],
.popup-form [type=number],
.popup-form [type=password],
.popup-form [type=search],
.popup-form [type=tel],
.popup-form [type=text],
.popup-form [type=time],
.popup-form [type=url],
.popup-form [type=week],
.popup-form textarea,
.popup-form select {
    margin-bottom: 0;
}

/*  OPT IN */
.popup-form .formPage {
    flex-wrap: wrap;
}

.popup-form .formPage #row-2 {
    flex: 1 0 80%;
}

.popup-form .formPage .formRow ul li.checkbox fieldset legend {
    font-weight: 400;
    padding-top: .5rem;
}

.hero {
    position: relative;
}

.hero__image,
.hero--has-button-hero>img {
    position: absolute;
    top: 0;
    left: -999px;
    right: -999px;
    min-width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: none;
    display: none;
}

.hero:is(.hero--has-button-hero)::before {
    display: none;
}

.hero--has-button-hero>img {
    display: block;
    mix-blend-mode: multiply;
}

.hero__content {
    position: relative;
    padding-top: 1.5rem;
}

.hero__title {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.1;
    font-size: var(--font-size-h1);
}

@media only screen and (min-width: 64rem) {
    .hero__image,
    .hero--has-button-hero>img {
        display: inherit;
        mix-blend-mode: normal;
    }
    .hero__title {
        font-size: 3rem;
    }
    .hero__content {
        padding-top: 130px;
    }
}

@supports ((-o-object-fit: cover) or (object-fit: cover)) {
    .hero__image,
    .hero--has-button-hero>img {
        width: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }
    /* .hero--has-button-hero>img {
        object-position: bottom left;
    } */
}



/* Yet another new form style. This is a desktop (1024) up button form in the hero area. */


.hero__form-container {
    position: relative;
    /* min-height: 560px; */
}

.hero--has-button-hero {
    /* margin-bottom: 2rem; */
    background-color: rgba(0, 0, 0, .6);
}

.button-hero {
    /* border: 3px solid #24587a; */
    text-align: center;
    position: relative;
    background-color: rgba(var(--color-gray-accent-alt-rgb), .83);
    border-radius: 12px;
    width: 100%;
    /* max-width: 90%; */
    /* margin-top: 134px; */
    margin-top: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.button-hero--index {
    margin-top: 1rem;
    margin-bottom: 0;
}

.button-hero .currentForm {
    text-align: center; 
}

.button-hero::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 100%;
    left: -10px;
    right: 0;
    height: auto;
    aspect-ratio: 223/67;
    background-image: url(../cmss_files/imagelibrary/mesothelioma-packet-condensed.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
}

.button-hero .cmForm .hidden {
    display: none;
}

.button-hero--index::before {
    display: none;
}

.button-hero__header {
    background-color: var(--color-primary);
    padding: .5rem 1rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.button-hero__body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.button-hero__title {
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}

.button-hero .formElements .checkbox fieldset legend {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    margin: 0;
    padding-bottom: .5rem;
}

.button-hero .formElements .checkbox fieldset legend {
    font-size: .875rem;
}

.button-hero .formElements li:not(.checkbox) fieldset legend,
.button-hero .like-label {
    color: var(--color-base);
    width: 100%;
    padding: .5rem;
    margin-bottom: .25rem;
    line-height: 1.2;
    font-weight: normal;
    text-align: left;
    /* display: flex;
    justify-content: center; */
}

.button-hero .formElements .checkbox fieldset legend {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

.button-hero .formElements li.radio span label {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 44px;
    /* width: 200px; */
    width: 90%;
    background-color: #24587A;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: #ffffff;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    border-radius: 7px;
    margin-top: 0;
}

.button-hero .formElements span label {
    font-size: 1rem;
}

.button-hero .formElements .checkbox span label {
    font-size: .875rem;
    font-weight: bold;
}

.button-hero .formElements li.radio span label {
    border-radius: 5px;
    height: 40px;
}

.button-hero .currentForm input[type=submit] {
    background-color: var(--color-primary);
    text-transform: uppercase;
    font-size: 1.125rem;
    border-radius: 5px;
    height: 40px;
    font-weight: bold;
}

.button-hero .like-label {
    margin-bottom: 0;
}

.button-hero [type=text],
.button-hero [type=email],
.button-hero [type=address],
.button-hero [type=phone] {
    margin-bottom: 0;
    border: 1px solid #BEBEBE;
}

.button-hero .formElements .formRow>ul>li.radio span {
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

.button-hero .formElements .formRow>ul>li.radio span {
    width: 50%;
}

.button-hero .formElements .formRow>ul>li.checkbox span {
    display: flex;
    width: 100%;
}

.button-hero .formElements li.radio span label:focus {
    background-color: #5FA9C3;
}

.button-hero .formElements li.radio span input:checked+label {
    /* color: #54b8c0; */
    background-color: var(--color-white);
    color: var(--color-bonus-02);
    box-shadow: inset 0 0 0 4px var(--color-bonus-02);
}

.button-hero input[type="radio"] {
    opacity: 0;
    position: absolute;
    visibility: hidden;
}

.hero--force-height {
    min-height: 300px;
}

.hero--has-button-hero.hero--force-height>img {
    mix-blend-mode: normal;
}

@media all and (min-width:1024px) {
    .button-hero::before {
        display: none;
    }

    .button-hero {
        margin-top: 0;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero__form-container {
        min-height: 490px;
    }

    .hero--has-button-hero:not(.hero--index) {
        margin-bottom: 3rem;
        background-color: #000000;
    }

    .hero--has-button-hero:not(.hero--index) {
        min-height: 656px;
    }
}

.button-hero [type=text], .button-hero [type=email], .button-hero [type=address], .button-hero [type=phone], .button-hero select {
    margin-bottom: 0;
    border: 1px solid #BEBEBE;
}
@media all and (min-width: 1024px) {
    .hero__form-container {
        min-height: 560px;
    }
}

.button-hero #pageButton {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: .85rem;
    /* position: absolute; */
}
.button-hero .pageNext, .button-hero .pageBack {
    display: flex;
    padding: .625rem;
    font-size: .875rem;
}
.button-hero .pageNext {
    display:none!important;
}
.button-hero .pageNext::after {
    content: '\00A0\003E';
}
.button-hero .pageBack::before {
    content: '\003C\00A0';
}
.button-hero .currentForm input[type=submit] {
    position: absolute;
    right: 1.25rem;
    bottom: 0;
}
.button-hero .formElements .formRow>ul>li.radio span:last-child, .button-hero .formElements .formRow>ul>li.radio span:nth-last-child(2) {
    margin-bottom: 0;
}

[id^='form-sub-ant-spm'], .fancy-form input[type="submit"] {
    display: none;
}

.no-js [id^='form-sub-ant-spm'] {
    display: block;
}