/* Reset */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
* {
    box-sizing: border-box;
}
.input {
    padding-bottom: 1em;
}
/* radio buttons */
fieldset>legend {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}
fieldset>label {
    margin-left: 10px;
}
body > div.clearfix,
body > div.col-md-4.col-md-offset-4 {
    display: none;
}
body {
    background: whitesmoke;
}

/* Variables */
:root {
    /* generic colors */
    --color-primary: #1f524d;
    --color-primary-dark: hsl(161, 72%, 35%);
    --color-primary-light: hsl(161, 72%, 55%);
    --color-primary-dark-rgb: 25, 154, 113;

    --color-secondary: hsl(223, 66%, 44%);
    --color-secondary-dark: hsl(223, 66%, 34%);
    --color-secondary-light: hsl(223, 66%, 54%);
    --color-secondary-dark-rgb: 29, 62, 144;

    --color-tertiary: hsl(200, 65%, 46%);
    --color-tertiary-light: hsl(200, 65%, 56%);
    --color-tertiary-dark: hsl(200, 65%, 36%);
    --color-tertiary-rgb: 41, 143, 194;
    --color-tertiary-extralight: hsl(200, 65%, 66%);

    /* color for specific elements */
    --color-main-bg: var(--color-secondary-light);
    --color-hero-bg-rgb: var(--color-tertiary-rgb);
    --color-hero-popup: var(--color-primary);
    --color-hero-copy: var(--color-primary-dark-trans);
    --color-copy2-bg: var(--color-primary-dark);
    --color-form-divider: var(--color-primary-dark);
    --color-faq-border: var(--color-primary-dark);
    --color-faq-panel: var(--color-secondary);
    --color-faq-header: rgba(var(--color-primary-dark-rgb), 0.6);
    --color-tile-bg: var(--color-primary-dark-rgb);

    /* icons panel */
    --icons-panel-text: #333;
    --icons-panel-mast-text: blue;
    --icons-panel-mobile-border: 3px solid var(--color-primary);
    --icons-panel-item-border: 5px solid var(--color-primary-dark);
    --icons-panel-item-bg: blue;
    --icons-panel-item-text: white;
    --icons-panel-icon: var(--color-secondary);

    /* compound panel */
    --panel-compound-vpad: 30px;
    --panel-compound-border: 30px;
    --panel-compound-color-outer: rgba(var(--color-secondary-dark-rgb), 0.6);
    --panel-compound-color-inner: rgba(255, 255, 255, 0.9);
    --panel-compound-banner-left: var(--color-secondary-dark);
    --panel-compound-banner-right: var(--color-secondary-light);
    --table-border-color: black;
}

/* Utilities */

/* Containers */
.container-xs {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.container-sm {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.container-md {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.container-lg {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.container-xl {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Panel Alterations */
.panel-rounded {
    border-radius: 8px;
}
.panel-top {
    border-bottom: none !important;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.panel-bottom {
    border-top: none !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Panel Basic */
.panel-basic {
    background: #eee;
}

/* Panel Solid */
.panel-solid {
    border: 1px solid white;
    color: white;
    background: hsl(273, 25%, 28%);
}
.panel-solid.alt {
    border: 1px solid rgb(26, 35, 126);
}

/* Panel Card */
.panel-card {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
                0 1px 2px rgba(0, 0, 0, 0.24);
}

/* Panel Transparent */
.panel-transparent {
    color: #333;
    background: rgba(255, 255, 255, 0.7);
}
.panel-transparent.alt {
    color: #333;
    background: rgba(var(--color-primary-dark-rgb), 0.4);
    border-radius: 0;
}

/* Panel Outline */
.panel-outline {
    border: 1px solid rgb(26, 35, 126);
    background: rgba(26, 35, 126, 0.2);
}

/* Panel Image Borders (Needs border-image-source in ctp) */
/* border-image-slice is how much of the image to repeat, should be < 49% */
.panel-solar {
    border-style: solid;
    border-image-repeat: round;
    border-image-slice: 12.75%;
    border-width: 2em;
}
.panel-cobwebs {
    border-style: solid;
    border-image-repeat: round;
    border-image-slice: 25%;
    border-width: 1em;
}

/* Panel Image */
/* 2 divs: first is for image, second is for copy/nested panels */
.panel-image {
    position: relative;
}
.panel-image img {
    width: 100%;
}
.panel-image > div:last-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Panel Slant */
.panel-slant-left,
.panel-slant-right {
    display: none;
}
@supports(display: flex) {
    .panel-slant {
        display: flex;
    }
    .panel-slant-body {
        flex: 1;
    }
    .panel-slant-body .copy {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .panel-slant-left,
    .panel-slant-right {
        width: 2em;
        display: flex;
        flex-direction: column;
    }
    .panel-slant-left-bottom,
    .panel-slant-right-top {
        flex: 1;
    }
    .panel-slant-left-top,
    .panel-slant-right-bottom {
        height: 2em;
    }
    .panel-slant-left-top:before,
    .panel-slant-right-bottom:before {
        content: '';
        position: absolute;
    }
}
/* Panel Slant Color - Default */
.panel-slant-body {
    background: rgba(255,255,255,0.8);
}
.panel-slant-left-bottom,
.panel-slant-right-top {
    background: rgba(255,255,255,0.8);
}
.panel-slant-left-top:before {
    border-bottom: 2em solid rgba(255,255,255,0.8);
    border-left: 2em solid transparent;
}
.panel-slant-right-bottom:before {
    border-top: 2em solid rgba(255,255,255,0.8);
    border-right: 2em solid transparent;
}
/* Panel Slant Color - Primary */
.panel-slant-primary .panel-slant-body {
    color: white !important;
}
.panel-slant-primary .panel-slant-body {
    background: rgba(156, 39, 176, 0.8);
}
.panel-slant-primary .panel-slant-left-bottom,
.panel-slant-primary .panel-slant-right-top {
    background: rgba(156, 39, 176, 0.8);
}
.panel-slant-primary .panel-slant-left-top:before {
    border-bottom: 2em solid rgba(156, 39, 176, 0.8);
}
.panel-slant-primary .panel-slant-right-bottom:before {
    border-top: 2em solid rgba(156, 39, 176, 0.8);
}
/* Panel Slant Size - Large */
.panel-slant-lg  .panel-slant-left,
.panel-slant-lg  .panel-slant-right {
    width: 4em;
}
.panel-slant-lg  .panel-slant-left-top,
.panel-slant-lg  .panel-slant-right-bottom {
    height: 4em;
}
.panel-slant-lg .panel-slant-left-top:before {
    border-bottom-width: 4em;
    border-left: 4em solid transparent;
}
.panel-slant-lg .panel-slant-right-bottom:before {
    border-top-width: 4em;
    border-right: 4em solid transparent;
}
/* Panel Slant Size - Small */
.panel-slant-sm  .panel-slant-left,
.panel-slant-sm  .panel-slant-right {
    width: 1em;
}
.panel-slant-sm  .panel-slant-left-top,
.panel-slant-sm  .panel-slant-right-bottom {
    height: 1em;
}
.panel-slant-sm .panel-slant-left-top:before {
    border-bottom-width: 1em;
    border-left: 1em solid transparent;
}
.panel-slant-sm .panel-slant-right-bottom:before {
    border-top-width: 1em;
    border-right: 1em solid transparent;
}

/* Copy */
.copy {
    padding: 2em;
}
.copy.copy-sm {
    padding: 1em;
}
.copy h1, .copy h2, .copy h3 {
    margin-bottom: 0.5em;
}
.copy > :first-child {
    margin-top: 0;
}
.copy > :last-child {
    margin-bottom: 0;
}
.copy.center h1, .copy.center h2, .copy.center h3 {
    text-align: center;
}

/* Force text color for nested panels */
.copy.copy-dark {
    color: #333 !important;
}
.copy.copy-light {
    color: white !important;
}
.copy.copy-light-shadow {
    color: white !important;
    text-shadow:1px 1px 1px black,1px -1px 1px black,-1px 1px 1px black,-1px -1px 1px black;
}
.copy.copy-dark-shadow {
    color: #333 !important;
    text-shadow:1px 1px 1px white,1px -1px 1px white,-1px 1px 1px white,-1px -1px 1px white;
}

/* Buttons */
.button {
    border: 2px solid black;
    background: black;
    color: white;
    padding: 0.25em 1em !important;
    font-size: 16px;
    transition: all 0.3s;
    margin-top: 0.5em;
    text-transform: uppercase;
    font-weight: bold;
}
.button:hover {
    border-color: #222;
    background: #222;
}
.button-sm {
    font-size: 0.85em;
    border-width: 1px;
}
.button-lg {
    font-size: 24px;
    border-width: 4px;
}
.button-xl {
    border-width: 6px;
    font-size: 1.7em;
}
.button-ghost {
    background: transparent;
    color: black;
}
.button-ghost:hover {
    border-color: black;
    background: black;
    color: white;
}
.button-round {
    border-radius: 8px;
}

/* Button Primary */
.button-primary {
    border-color: var(--color-primary);
    background: var(--color-primary);
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
}
.button-primary:hover {
    border-color: var(--color-primary-light);
    background: var(--color-primary-light);
    box-shadow: 5px 5px 0 rgb(0 0 0 / 20%);
}
.button-primary.button-ghost {
    background: transparent;
    color: #1a237e;
}
.button-primary.button-ghost:hover {
    border-color: #1a237e;
    background: #1a237e;
    color: white;
}

/* Button Secondary */
.button-secondary {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.button-secondary:hover {
    border-color: var(--color-secondary-light);
    background: var(--color-secondary-light);
    box-shadow: 5px 5px 0 rgb(0 0 0 / 20%);
}

/* Masthead */
.masthead {
    color: #333;
    text-align: center;
    padding: 2em 1em;
}

@media screen and (min-width: 1000px) {
    .masthead {
        text-align: left;
    }
    .masthead hr {
        margin: 0;
        margin-left: auto;
    }
}

/* Iconbox */
.iconbox {
    height: 120px;
    width: 120px;
    background: #1a237e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2em auto;
}
.iconbox i {
    font-size: 75px;
    padding: 20px;
    color: white;
}
.iconbox.alternate {
    background: #b71c1c;
}

/* Image Radio Buttons */
.image-radio legend {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
}
.image-radio > div {
    display: inline-block;
    padding: 0.5em;
    width: 50%;
}
.image-radio label {
    margin: 0;
    text-align: center;
}
.image-radio label::after {
    padding-top: 1em;
}
.image-radio img {
    margin-bottom: 0.5em;
    width: 100%;
    border: 5px solid white;
    border-radius: 5px;
    box-shadow: 0px 0px 12px 2px rgba(0,0,0,0.5);
    opacity: 0.5;
    background-color: #b4e8ff;
}
.image-radio img:hover {
    opacity: 1;
    cursor: pointer;
}
.image-radio input {
    opacity: 0;
    position: absolute;
}
/* selected */
.image-radio input:checked + label::after {
    color: #b71c1c;
}
.image-radio input:checked + label > img {
    border-color: #b71c1c;
    opacity: 1;
}
@supports (grid-area: auto) {
    @media screen and (min-width: 850px) {
        /* undo gridless */
        .image-radio > div {
            display: block;
            width: 100%;
            padding: 0;
            padding-bottom: 1em;
        }
        /* grid */
        .image-radio {
            display: grid;
            grid-gap: 0 1em;
            /* grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); */
            grid-template-columns: 1fr 1fr;
        }
        .image-radio legend {
            grid-column: 1 / -1;
        }
    }
}

/* Sections */

/* Header */
header {
    text-align: center;
}
header a,
header a:focus,
header a:hover {
    color: white;
    text-decoration: none;
}
.header-inner > div {
    margin-bottom: 0.5em;
}
.header-inner > div:last-child {
    margin-bottom: 0;
}
.header-inner > div:not(:first-child) {
    padding: 0 1em;
}
.header-logo {
    background: white;
}
.header-logo img {
    width: 80%;
    padding: 0.5em 0;
}
@media screen and (min-width: 850px) {
    header {
        background: white;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-inner > div {
        margin-bottom: 0;
    }
    .header-inner > div:not(:first-child) {
        padding: 0;
    }
    .header-logo {
        padding: 1em 0 0 1em;
    }
    .header-logo img {
        max-width: none;
        width: 400px;
    }
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 1em;
}
@media screen and (min-width: 850px) {
    footer {
        padding: 1em 2em;
    }
}

/* Layout */
.layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
main > * {
    position: relative;
}

/* Larger Sections */

/* Modal */
.modal {
    padding: 0 !important;
}
.modal-dialog {
    margin: 0;
    width: 100%;
}
.modal-content {
    min-height: 100vh;
    border: none;
    border-radius: 0;
}
.modal-footer {
    padding: 0;
}
.modal-content {
    display: flex;
    flex-direction: column;
}
.modal img {
    width: 100%;
    max-width: 250px;
    padding: 1.5em;
}
.modal-content {
    position: relative;
}
.modal-header {
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-gap: 1em;
}
.modal-header .modal-title {
    text-align: center;
}
.modal button {
    position: fixed;
    top: 0.5em;
    right: 2em;
    z-index: 1051;
}
.modal-body {
    flex: 1;
}
@media screen and (min-width: 850px) {
    .modal-header::before {
        content: '';
        display: none;
    }
    .modal-header {
        grid-template-columns: 250px 1fr 250px;
    }
}
.modal .input-group {
    display: flex;
}
.modal .input-group > :first-child {
    flex: 1;
}
.modal .input-group > :last-child {
    flex: 4;
}
.modal .input-group-addon h4 {
    text-align: left;
}
.modal .input-group-addon {
    white-space: unset;
    display: flex;
    align-items: center;
}
.modal .input-group .panel {
    margin: 0;
    width: 100%;
    min-height: 100%;
}
.modal .panel .input-group-addon {
    background: white;
}
tbody p {
    margin: 0;
}
tbody td, thead th {
    vertical-align: middle !important;
}
tbody td:last-child,
tbody td:nth-child(2) {
    text-align: center;
}

/* Accreditation Images */
.accreditation-images {
    padding-bottom: 1em;
    max-width: 200px;
    margin: 0 auto;
}
.accreditation img {
    width: 100%;
    padding: 1em 0.5em;
}
@media screen and (min-width: 500px) {
    .accreditation-images {
        display: flex;
        justify-content: center;
        flex-flow: wrap;
        gap: 1em 0;
        max-width: none;
    }
    .accreditation img {
        width: auto;
        max-width: none;
        max-height: calc(150px + 2em);
        padding: 1em 2em;
    }
    .accreditation img:last-child {
        border-right: none;
    }
}

/* CTA */
.cta {
    padding: 2em;
    display: grid;
    grid-gap: 2em;
}
.cta.spacer {
    padding: 1em;
}
.cta.alt {
    background: white !important;
}
.cta .button {
    margin-top: 0;
}
.cta a {
    text-align: center;
    display: inline-block;
}
.cta a,
.cta a:focus,
.cta a:hover {
    color: white;
    text-decoration: none;
}
@media screen and (min-width: 850px) {
    .cta {
        padding: 4em;
        grid-gap: 4em;
        grid-template-columns: 1fr 1fr;
    }
    .cta.spacer {
        padding: 2em;
    }
}
@media screen and (min-width: 1000px) {
    .cta > :first-child {
        grid-column: 2;
    }
    .cta {
        grid-template-columns: 1fr 35vw 35vw 1fr;
    }
}
@media screen and (min-width: 1400px) {
    .cta {
        grid-template-columns: 1fr 25vw 25vw 1fr;
    }
}

/* Icons Panel */
.icons-panel {
    color: var(--icons-panel-text);
    background: var(--icons-panel-bg);
}
.icons-panel > h1 {
    padding: 1em;
    font-weight: bold;
    color: #333;
    font-size: 3em;
}
.icons-panel-item {
    border: var(--icons-panel-mobile-border);
    margin-bottom: 2em;
    padding: 1em;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: center;
    justify-content:  center;
    text-align: center;
    border: none;
}
.icons-panel-icon {
    padding-right: 1em;
}
.icons-panel-icon-inner {
    border-radius: 50%;
    color: var(--icons-panel-icon);
    margin: 0 0 0 auto;
}
.icons-panel-header {
    padding-bottom: 1em;
}
.icons-panel-copy {
    padding-top: 1em;
    grid-column: 2;
}
@media screen and (min-width: 850px) {
    .icons-panel-header {
        padding: 1em 0 0.5em;
    }
    .icons-panel-copy {
        padding: 0.5em 0;
    }
    .icons-panel-inner {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 2em;
    }
    .icons-panel-item {
        border: none;
        max-width: none;
        margin: 0;
    }
    .icons-panel-icon {
        order: -1;
    }
    .icons-panel-item p {
        margin-top: 0;
    }
}
@media screen and (min-width: 850px) {
    .icons-panel {
        border-radius: 8px;
    }
    .icons-panel > h1 {
        text-align: center;
    }
    .icons-panel-header {
        padding: 0;
    }
    .icons-panel-copy {
        padding: 0;
    }
}
@media screen and (min-width: 1350px) {
    .icons-panel {
        padding: 1em;
        margin-left: 5em;
        margin-right: 5em;
    }
    .icons-panel-item h4.text-left {
        padding-left: 15%;
    }
}

/* Full Panel */
.full-panel-inner {
    color: white;
    padding: 2em 0;
}
.full-panel h1 {
    font-size: 3em;
    padding: 0.5em 0;
    text-align: center;
}
.full-panel .form-copy-image {
    width: 100%;
    min-height: 700px;
}
.full-panel-copy {
    max-width: 600px;
    margin: 0 auto;
}
.full-panel-icons-item {
    padding: 0.5em;
    border-bottom: 1px solid rgba(255,255,255,0.25);
}
.full-panel-icons-item:last-child {
    border-bottom: none;
    padding-bottom: none;
}
.full-panel-icons-item p {
    margin-bottom: 0;
}
.full-panel-header > * {
    padding: 1em 0;
}
.full-panel-icon-inner {
    color: var(--color-tertiary);
}
.full-panel {
    padding: 2em;
}
.full-panel .form-copy-image {
    max-width: 500px;
    margin: 0 auto;
}
.full-panel-checkmarks li {
    font-size: 20px;
    margin-left: 1em;
}
.full-panel-checkmarks .fa {
    color: var(--color-primary);
}
.full-panel-header {
    display: flex;
    align-items: center;
}
.full-panel-header .fa {
    padding-right: 10px;
    color: var(--color-primary-light);
}
@media screen and (min-width: 600px) {
    .full-panel-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .full-panel-icons-item {
        border-bottom: none;
    }
    .full-panel-icons-item:nth-child(1) {
        border-right: 1px solid rgba(255,255,255,0.25);
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding-bottom: 1em;
        padding-right: 1em;
    }
    .full-panel-icons-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding-bottom: 1em;
        padding-left: 1em;
    }
    .full-panel-icons-item:nth-child(3) {
        border-right: 1px solid rgba(255,255,255,0.25);
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding-top: 1em;
        padding-right: 1em;
    }
    .full-panel-icons-item:nth-child(4) {
        border-bottom: 1px solid rgba(255,255,255,0.25);
        padding-top: 1em;
        padding-left: 1em;
    }
    .full-panel-icons-item:nth-child(5) {
        border-right: 1px solid rgba(255,255,255,0.25);
        padding-top: 1em;
        padding-right: 1em;
    }
    .full-panel-icons-item:nth-child(6) {
        padding-top: 1em;
        padding-left: 1em;
    }
}
@media screen and (min-width: 850px) {
    .full-panel {
        display: grid;
        grid-template-columns: 2fr 1fr;
        padding: 0;
    }
    .full-panel-inner {
        padding: 2em;
    }
}
@media screen and (min-width: 1150px) {
    .full-panel {
        grid-template-columns: 1fr 1fr;
        padding: 2em;
    }
    .full-panel-inner {
        padding: 0;
    }
    .full-panel .form-copy-image {
        max-width: none;
        margin: 0;
    }
}

/* Hero */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 10;
}
.hero-popup {
    color: white;
    padding: 1em;
    margin-top: 15em;
    z-index: 20;
}
.hero-popup-inner {
    background: var(--color-hero-popup);
    padding: 0.5em 1em;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
}
.hero-popup-inner p {
    margin: 0;
}
.hero-copy {
    background-image: linear-gradient(
        rgba(var(--color-primary-dark-rgb), 0.5),
        rgba(var(--color-primary-dark-rgb), 1)
    );
    color: white;
}
.hero-copy ul {
    display: grid;
    grid-gap: 2em 4em;
    justify-content: center;
    list-style: none;
    padding: 0;
    padding-top: 3em;
}
.hero-copy.new {
    background: none;
    height: auto;
    padding: 1em;
}
.hero-copy-inner {
    padding-top: 3em;
}
.hero-copy li i {
    vertical-align: middle;
}
span {
    color: var(--color-secondary);
}
.hero-copy-inner h1 {
    font-size: 4em;
}
.banner {
    background: var(--color-tertiary);
    color: white;
    padding: 0.5em;
    margin-left: -28px;
    width: 90%;
    clip-path: polygon(
            0 0,
            100% 0,
            95% 100%,
            0 100%
        );
}
@media screen and (min-width: 850px) {
    .hero {
        min-height: 45vh;
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(auto, 600px)
            minmax(auto, 600px)
            minmax(0, 1fr);
        grid-template-areas:
            'h h h h'
            '. . . .'
            '. . m m'
            '. . p p';
    }
    .content .hero {
        grid-template-areas:
            'h h h h'
            '. . f .'
            'm m f .'
            '. . f .'
            'c c c c';
    }
    .hero .header-phone {
        grid-area: p;
    }
    header {
        grid-area: h;
    }
    .hero-copy {
        grid-area: c;
    }
    .form {
        grid-area: f;
    }
    .masthead {
        grid-area: m;
    }
    .overlay {
        grid-column: 3 / -1;
        grid-row: 1 / -1;
        height: 100%;
        background: rgba(255,255,255, 0.7);
        clip-path: polygon(
            10% 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    .hero-popup {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        margin-top: 8em;
    }
    .hero-popup-inner {
        max-width: none;
    }
    .hero-copy ul {
        grid-template-columns: repeat(3, auto);
    }
}

/* Form */
.form {
    position: relative;
    z-index: 15;
    padding: 1em 0;
}
.form-wrap {
    position: relative;
    z-index: 2;
    padding-top: 1em;
    margin: 0 auto;
    background: white;
}
.form .greeting {
    padding-top: 0.5em;
}
.form ul {
    padding: 0 1em;
}
.form ul > * {
    border-bottom: 1px solid #333 !important;
}
.form ul > li a,
.form ul > li a:hover {
    background: white;
    border: 1px solid #333;
    font-weight: bold;
    color: var(--color-primary);
}
.form ul > li.active a {
    background: var(--color-primary) !important;
    color: white !important;
    font-weight: bold;
}
.form ul a {
    margin-bottom: 0 !important;
}
@media screen and (min-width: 1000px) {
    .form-inner .copy {
        background: transparent;
    }
}

/* Form Copy */
.form-copy {
    margin-top: 2em;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(auto, 200px) minmax(auto, 200px) minmax(0, 1fr);
    grid-template-areas:
        'h h h h'
        'r r r r'
        'i i i i'
        'p p p p'
        '. . . .'
        'b b b b';
    margin-bottom: 1em;
}
.form-copy .form-copy-image {
    grid-area: i;
    width: 100%;
    min-height: 500px;
    height: 100%;
}
.form-copy h3 {
    grid-area: h;
    padding: 0 14px;
}
.form-copy hr {
    grid-area: r;
}
.form-copy-inner {
    grid-area: p;
    margin-top: 1em;
    padding: 0 1em;
}
.form-copy .button {
    grid-area: b;
    justify-self: center;
}
.form-copy {
    grid-gap: 0 2em;
}
.form-copy small, .full-panel small, .copy1 small {
    color: var(--color-primary);
}
.checkmarks h1 {
    padding-bottom: 1em;
}
.checkmarks li {
    font-size: 20px;
    margin-left: 1em;
}
.checkmarks .fa {
    color: var(--color-primary);
}
@media screen and (min-width: 500px) {
.form-copy {
    grid-template-areas:
        'h h h h'
        'r r r r'
        '. i i .'
        'p p p p'
        '. . . .'
        'b b b b';
    }
}
@media screen and (min-width: 1000px) {
    .form-wrap {
        max-width: none;
        width: 100%;
        padding-top: 2em;
    }
    .form-copy {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
        'i h'
        'i r'
        'i p'
        'i .'
        'i b';
        margin-bottom: 2em;
    }
    .form-copy.alt {
        grid-template-areas:
        'h i'
        'r i'
        'p i'
        '. i'
        'b i';
    }
    .checkmarks h1 {
        padding-bottom: 0;
    }
}

/* Testimonials */
.copy1 {
    background: white;
    text-align: center;
    padding: 1em;
}
.copy1-inner > h1 {
    color: #333;
}
.copy1-boxes {
    padding: 1em 0;
    max-width: 400px;
    margin: 0 auto;
    display: grid;
    grid-gap: 1em 0;
}
.copy1-box {
    padding: 1em;
    display: flex;
    flex-direction: column;
}
.copy1-box h1 {
    font-size: 3.5em;
    margin-bottom: 0.25em;
}
.copy1-box p {
    text-align: left;
}
.copy1-box p.blurb {
    flex: 1;
}
.copy1-box p.stars {
    justify-self: end;
}
p.stars .fa {
    color: yellow;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: orange;
}
.copy1 .testimonial-name {
    justify-self: flex-end;

    display: flex;
    align-items: center;
}
.copy1 .testimonial-icon {
    color: white;
    float: left;
    height: 70px;
    width: 70px;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    line-height: 1.7;
    border-radius: 50%;
    margin-right: 0.5em;
}
@media screen and (min-width: 650px) {
    .copy1 {
        padding: 2em;
    }
    .copy1-boxes {
        padding: 2em 0;
        max-width: none;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2em;
    }
    .copy1-box h1 {
        font-size: 5em;
        margin-bottom: 0.5em;
    }
}
@media screen and (min-width: 1000px) {
    .copy1-boxes {
        grid-template-columns: repeat(6, 1fr);
    }
    .copy1-box {
        padding: 2em;
        grid-column: span 2;
    }
}

/* Big Image */
.copy2 {
    padding: 1em;
}
.copy2-calculator {
    background: var(--color-copy2-bg);
}
.copy2 h1 {
    text-align: center;
}
.copy2-img {
    padding: 1em 1em 0 1em;
    max-width: 400px;
    margin: 0 auto;
}
.copy2 img {
    width: 100%;
}
.copy2-calculator {
    grid-template-columns: 1fr 1fr;
}
.copy2-calculator-inner {
    color: white;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
}
@media screen and (min-width: 850px) {
    .copy2 {
        padding: 2em;
    }
    .copy2-calculator-inner {
        padding: 2em;
    }
}
@media screen and (min-width: 1050px) {
    .copy2-calculator {
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .copy2-img {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* Completed Projects */
.copy3 {
    color: white;
    text-align: center;
    position: relative;
}
.copy3-inner {
    padding: 1em 0;
}
.carousel-control.left,
.carousel-control.right {
    background: transparent;
    color: white;
    opacity: 1;
}
.carousel-inner .item {
    padding: 0 1em;
}
.item-inner {
    width: 100%;
    margin: 0 auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    padding-top: 3em;
    padding-bottom: 5em;
}
.item-inner p {
    font-size: 1.6em;
}
.item-inner img {
    border: 5px solid white;
    border-bottom-width: 30px;
}
@media screen and (min-width: 850px) {
    .copy3-inner {
        padding: 2em;
        padding-bottom: 0;
    }
    .carousel-control.left,
    .carousel-control.right {
        width: 15%;
    }
    .item-inner {
        width: 60%;
    }
}

/* FAQ */
.copy4 {
    padding: 1em;
}
.copy4 .panel-group {
    margin-bottom: 0.5em;
}
.copy4 .panel-group > .panel:last-child {
    margin: 0;
}
.copy4 .panel {
    background: var(--color-faq-panel);
    border-color: var(--color-faq-border);
    margin-bottom: 2em;
}
.copy4 .panel-heading {
    padding: 0;
    border-bottom: 1px solid var(--color-faq-border);
    background: var(--color-faq-header);
}
.copy4 a {
    display: block;
    padding: 1em;
    text-decoration: none;
    color: white;
    text-shadow: 3px 3px 5px black;
}
@media screen and (min-width: 850px) {
    .copy4 {
        padding: 2em;
    }
    .copy4 .panel-group {
        margin-bottom: 1.5em;
    }
}

/* Common */

/* tooltip */
.tooltip {
    opacity: 1 !important;
    font-size: 12px;
    padding: 1em !important;
    border-radius: 4px;
    background: radial-gradient(rgba(0,0,0,0.2), transparent);
}
.tooltip-inner {
    padding: 1em;
    background: white;
    color: black;
}
.tooltip-arrow {
    bottom: 0.55em !important;
    z-index: 100;
    border-top-color: white !important;
}

/* inputs, labels, jumping labels */
.input label {
    font-size: 16px;
}
.input.jumping {
    padding-top: 1.2em;
}
.input.jumping label {
    position: absolute;
    padding-left: 1em;
    transform: translateY(-2em);
    transition: transform 200ms, color 200ms;
    color: #999;
    pointer-events: none;
}
.input.jumping .form-control:focus ~ label,
.input.jumping .form-control:not(:placeholder-shown) ~ label {
    transform: translateY(-4.3em);
    color: var(--color-primary);
}

/* select */
.input.jumping select {
    padding: 0.8em;
}

/* submit button */
.button[type="submit"] {
    padding: 0.1em 3em;
}

/* small text */
p > small {
    font-size: 12px;
    text-align: center;
}

/* overlay */
.overlay {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.overlay img {
    width: 150%;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Misc */
.big-box-shadow {
    box-shadow: 0 20px 40px 8px rgb(0 0 0 / 25%);
}
.big-box-shadow-light {
    box-shadow: 0 20px 40px 8px rgb(255 255 255 / 25%);
}
.text-shadow {
    text-shadow:3px 3px 5px black;
}
hr {
    width: 80px;
    border-top: 8px solid var(--color-primary);
}
hr.alt {
    border-top: 8px solid var(--color-primary);
}
p {
    font-size: 2rem;
}
.required label::after {
    content: " *";
    color: red;
}

/* Page Specific */

/* Welcome Page */
.welcome main {
    display: flex;
    flex-direction: column;
}
.welcome .inner {
    flex: 1;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
}
.welcome .grid {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}
.welcome .grid > div {
    margin-bottom: 1em;
}
.welcome .grid > .masthead {
    margin-bottom: 0;
}
.welcome .copy-panel {
    text-align: center;
}
.welcome .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.welcome .image img {
    width: 100%;
    max-width: 480px;
    justify-self: flex-end !important;
}
.welcome .greeting span {
    cursor: pointer;
}
@media screen and (min-width: 850px) {
    .welcome .grid > div {
        margin-bottom: 0;
    }
    .welcome main {
        display: flex;
        flex-direction: column;
    }
    .welcome .form-panel {
        grid-area: f;
    }
    .welcome .masthead {
        grid-area: m;
    }
    .welcome .image {
        height: 100%;
        grid-area: i;
        padding: 0 2em;
    }
}

/* Content Page */
.content main {
    display: flex;
    flex-direction: column;
}
.content .inner {
    flex: 1;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
}
.content .grid {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}
.content .grid > div {
    margin-bottom: 1em;
}
.content .grid > .masthead {
    margin-bottom: 0;
}
.content .copy-panel {
    text-align: center;
}
.content .image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.content .image img {
    width: 100%;
    max-width: 480px;
    justify-self: flex-end !important;
}
.content .form-panel > .copy {
    padding-top: 0;
    padding-bottom: 1em;
}
.content .form-panel > .copy span {
    color: var(--color-primary);
    cursor: pointer;
}
.content .hero {
    grid-template-columns:
        minmax(0, 1fr)
        0
        minmax(auto, 600px)
        minmax(0, 1fr);
}
@media screen and (min-width: 1000px) {
    .content .grid > div {
        margin-bottom: 0;
    }
    .content main {
        display: flex;
        flex-direction: column;
    }
    .content .grid {
        max-width: none;
        margin: 0;
        display: grid;
        grid-template-columns: minmax(15%, 40%) minmax(0, 1fr) 700px minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        grid-template-areas:
            'i m m m'
            'i . f .';
    }
    .content .hero {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(auto, 600px)
            minmax(auto, 800px)
            minmax(0, 1fr);
    }
    .content .form-panel {
        grid-area: f;
    }
    .content .masthead {
        grid-area: m;
    }
    .content .image {
        height: 100%;
        grid-area: i;
        padding: 0 2em;
    }
    .content .grid-double {
        grid-column: 1 / span 2;
    }
    .content form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 1em;
    }
}
.content .jumping label {
    z-index: 10;
}
.content .jumping.addon label {
    transform: translateY(-2em) translateX(-0.5em);
}
.content .jumping.addon {
    display: table;
}
.content .jumping.addon span {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    border-right: 0;
    font-size: 18px;
    font-weight: bold;
}
.content .jumping.addon input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 0.5em !important;
}

/* Thankyou Page */
.thankyou .hero {
    flex: 1;
    min-height: 0;
    justify-content: flex-start;
}
.thankyou .hero-popup2 {
    color: #333;
    margin-bottom: 0;
    margin-top: -2em;
    padding: 2em 1em 2em 1em;
}
.thankyou .hero-popup2 .hero-popup-inner {
    background: white;
}
.thankyou .inner {
    padding: 1em;
    max-width: 700px;
    margin: 0 auto;
}
.thankyou .image {
    text-align: center;
}
.thankyou .image img {
    width: 100%;
    max-width: 320px;
}
.thankyou .hero-copy {
    height: auto;
    background: transparent;
}
.thankyou .hero-popup-inner {
    padding: 2em;
    background: transparent;
}
.thankyou .hero-popup {
    display: block;
}
.thankyou .hero a,
.thankyou .hero a:focus,
.thankyou .hero a:hover {
    text-align: center;
    color: white;
    text-decoration: none;
}
.thankyou header {
    grid-column: span 5;
}
.thankyou .hero > div:last-child {
    padding: 1em;
    grid-column: -1;
}
.thankyou .hero-popup {
    margin: 0;
    padding: 2em;
    display: flex !important;
    align-items: flex-end;
}
@media screen and (min-width: 850px) {
    .thankyou .hero-popup2 {
        grid-template-columns: repeat(6, 1fr);
    }
    .thankyou .hero-popup2 .hero-popup-inner {
        grid-column: 3 / 6;
    }
}

/* icon panel */
.icons-panel {
    padding: 0 1.5em;
}
.icons-panel h1 {
    text-align: center;
}
@media screen and (min-width: 1000px) {
    .icons-panel h1 {
        padding-left: 0;
    }
}

/* what is panel */
.what-is {
    padding: 0 1.5em;
}

/* compound panel (transparent) */
.panel-compound .banner {
    background-image: linear-gradient(to right, var(--panel-compound-banner-left), var(--panel-compound-banner-right));
    margin-left: calc(-28px - var(--panel-compound-border));
}
.panel-compound {
    padding: 0;
}
.panel-compound > div {
    border-left: var(--panel-compound-border) solid var(--panel-compound-color-outer);
    border-right: var(--panel-compound-border) solid var(--panel-compound-color-outer);
}
.panel-compound > div > div {
    background: var(--panel-compound-color-inner);
}
.panel-compound > div:first-child,
.panel-compound > div:last-child {
    background: none;
    border: none;
    height: var(--panel-compound-vpad);
    background: var(--panel-compound-color-outer);
}

/* masthead */
.hero .masthead h1 {
    font-weight: bold;
    color: var(--color-secondary);
}

/* retired */
.retired-wrap {
    background: var(--color-secondary-dark);
    color: white;
}
.form-wrap {
    padding: 1em;
}
input[type="checkbox"] {
    margin-right: 8px;
}
.optin {
    padding-bottom: 0;
}
label[for="DomainOptIn"] {
    display: inline;
    font-weight: normal;
    font-size: 1.1em;
    margin-bottom: 0;
}

/* big phone button */
.header-phone a {
    display: inline-block;
    margin-top: 15px;
    text-align: left;
}
.header-phone a {
    display: flex;
    align-items: stretch;
    padding: 0 !important;
    border-width: 0;
    text-shadow: none;
    color: black;
    font-weight: bold;
    text-decoration: none;
    background: transparent;
}
.header-phone span {
    color: black;
}
.header-phone small {
    color: white;
}
.header-phone img {
    height: 100px;
    padding: 16px;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    background: var(--color-primary);
}
.header-phone div {
    flex: 1;
    padding: 0 1em;
    display: flex;
    align-items: center;
    background: var(--color-primary);
}
.header-phone a:hover {
    background: transparent;
    box-shadow: none;
}
.header-phone a:hover img,
.header-phone a:hover div {
    background: var(--color-primary-light);
    box-shadow: 5px 5px 0 rgb(0 0 0 / 20%);
}
.header-phone {
    padding: 0 0 1em 0.5em !important;
}
.header-phone a {
    font-size: 19px;
}
@media screen and (min-width: 450px) {
    .header-phone {
        padding: 0 0 1em 1em !important;
    }
    .header-phone a {
        font-size: 24px;
    }
}
@media screen and (min-width: 850px) {
    .header-phone a {
        font-size: 26px;
    }
}
@media screen and (min-width: 1100px) {
    .header-phone a {
        font-size: 30px;
    }
}

/* form */
.form {
    display: block;
    max-width: none;
    padding: 0 1em;
}
.form-wrap {
    max-width: 800px;
    margin-bottom: 1em;
    border: 1px solid #c0c0c0;
}
.form-inner {
    max-width: 500px;
    margin: 0 auto;
}
.welcome .form-control {
    height: 48px;
    font-size: 18px;
    text-align: center;
    width: 50%;
    margin: 0 auto;
}

/* icons panel */
.icons-panel-item > * {
    margin-bottom: 1em;
}

/* cta button */
@media screen and (max-width: 999px) {
    .cta {
        display: block;
    }
}
.cta-button {
    border: none !important;
    grid-column: 2 / 4 !important;
}
.cta-button a {
    padding: 0 !important;
    border: none !important;
    display: flex;
    border-radius: 12px;
    height: 111px;
}
.cta-button div {
    padding-top: 5px;
    flex: 1;
    font-size: 16px;
}
.cta-button div span {
    color: black;
}
.cta-button div small {
    font-size: 12px;
}
@media screen and (min-width: 350px) {
    .cta-button div {
        font-size: 22px;
    }
    .cta-button div small {
        font-size: 13px;
    }
}
@media screen and (min-width: 500px) {
    .cta-button div {
        font-size: 25px;
    }
    .cta-button div small {
        font-size: 16px;
    }
}
@media screen and (min-width: 650px) {
    .cta-button div {
        font-size: 28px;
    }
    .cta-button div small {
        font-size: 20px;
    }
}

/* table */
.table-panel .full-panel-icons {
    display: grid;
}
.table-wrap.retired-wrap {
    color: black;
    background: transparent;
}
@media screen and (min-width: 1000px) {
.table-panel.form-copy.alt {
    grid-template-areas:
        'h h'
        'r r'
        'p p'
        '. .'
        'b b';
    }
}
.table-panel .full-panel-icons {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1em;
    box-shadow: 0 20px 40px 8px rgb(0 0 0 / 25%);
}
@media screen and (max-width: 849px) {
    .table-panel .full-panel-icons {
        grid-template-columns: 1fr;
        padding: 1em;
    }
    .full-panel-icons-item {
        order: 10;
    }
    .table-panel .full-panel-icons-item {
        border: 3px solid var(--table-border-color) !important;
    }
    .full-panel-icons-item:nth-child(1) {
        order: 1;
        border-bottom: none !important;
    }
    .full-panel-icons-item:nth-child(4) {
        order: 2;
        border-top: none !important;
        border-bottom: none !important;
    }
    .full-panel-icons-item:nth-child(7) {
        order: 3;
        border-top: none !important;
        margin-bottom: 1em;
    }
    .full-panel-icons-item:nth-child(2) {
        order: 4;
        border-bottom: none !important;
    }
    .full-panel-icons-item:nth-child(5) {
        order: 5;
        border-top: none !important;
        border-bottom: none !important;
    }
    .full-panel-icons-item:nth-child(8) {
        order: 6;
        border-top: none !important;
        margin-bottom: 1em;
    }
    .full-panel-icons-item:nth-child(3) {
        border-bottom: none !important;
    }
    .full-panel-icons-item:nth-child(6) {
        border-top: none !important;
        border-bottom: none !important;
    }
    .full-panel-icons-item:nth-child(9) {
        border-top: none !important;
    }
}
.table-panel .full-panel-icons-item {
    color: var(--color-secondary);
}
.table-panel .full-panel-icons-item:nth-child(1) {
    border-right: 2px solid #ccc;
}
.table-panel .full-panel-icons-item:nth-child(2) {
    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;
}
.table-panel .full-panel-icons-item:nth-child(3) {
    border-left: 2px solid #ccc;
}
.table-panel .full-panel-icons-item.v2 {
    color: white;
    background: var(--color-tertiary);
    border: 2px solid #f6f6f6;
}
.table-panel .full-panel-icons-item.v3 {
    color: white;
    background: var(--color-primary);
    border: 2px solid #f6f6f6;
}
.table-panel .full-panel-header {
    display: block;
    text-align: center;
}
.table-panel .full-panel-header > * {
    padding: 0;
    font-weight: bold;
    margin-bottom: 10px;
}
.table-wrap p {
    font-size: 14px;
    padding: 1em 2em;
}

/* tag panel */
.tag-wrap.retired-wrap {
    color: black;
    background: transparent;
    padding: 0 1em;
}
.tag-panel {
    margin: 0;
    border: 3px solid var(--color-primary);
    border-radius: 48px;
    overflow: hidden;
    grid-template-columns: 1fr !important;
    grid-template-areas:
        'h'
        'i'
        'c';
    grid-gap: 0;
}
.tag-panel .form-copy-image {
    display: flex;
    min-height: 0;
    height: 300px;
    justify-self: end;
}
.tag-panel .form-copy-image-inner {
    flex: 1;
}
.tag-panel h1 {
    background: var(--color-primary);
    color: white;
    padding: 0.5em;
}
.tag-panel h4 {
    font-weight: bold;
    padding-left: 1em;
}
.tag-panel br {
    display: none;
}
.tag-panel h1 {
    grid-area: h;
}
.tag-panel .form-copy-image {
    grid-area: i;
}
.tag-panel .form-copy-inner {
    margin-top: 0;
    grid-area: c;
}
@media screen and (min-width: 1000px) {
    .tag-panel.form-copy {
        grid-template-columns: 2fr 1fr !important;
        grid-template-areas:
            'h i'
            'c i'
            'c i';
    }
    .tag-wrap.retired-wrap {
        padding: 1em 6em;
    }
    .tag-panel .form-copy-image {
        height: auto;
    }
}
@media screen and (min-width: 1600px) {
    .tag-panel br {
        display: block;
    }
}

/* cta-large */
.cta-large {
    margin-top: calc(15px + 1em);
    margin-bottom: 0.5em;
}
.cta-large a {
    text-align: center;
    height: auto;
    min-height: 200px;
    flex-direction: column;
    margin: 0;
}
.cta-large a:hover {
    text-decoration: none;
}
.cta-large a img {
    width: 100px;
    align-self: center;
    margin-top: -50px;
}
.cta-large div {
    color: black;
    font-size: 36px;
    font-weight: bold;
    padding: 0.25em;
}
.cta-large small {
    color: white;
    font-size: 24px !important;
}
@media screen and (min-width: 850px) {
    .cta-large {
        min-height: 50vh;
        margin-top: calc(50px + 1em);
        margin-bottom: -25vh;
        background: var(--color-primary);
    }
}

/* welcome specific */
.welcome .form {
    padding-top: 0;
}

/* content specific */
.content .form-wrap {
    background: white;
}
.content .icons-panel {
    padding-top: 2em;
}
.content .form-inner {
    width: auto;
    padding: 1em 2em;
}

/* thankyou specific */
.thankyou .hero > .header-phone {
    display: none;
}
.thankyou .hero .masthead {
    display: none;
    grid-row: 1;
}
.thankyou-panel {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2em 2em 2em;
}
.thankyou .hero {
    background-position: 50% 100px !important;
    max-height: 60vh;
}
@media screen and (min-width: 1000px) {
    .thankyou .hero {
        background-position: 50% 0 !important;
        max-height: 50vh;
    }
}

/* norefcode */
.norefcode-form .btn {
    font-size: inherit;
    padding: 0 0 2px 0;
}

#flashMessage {
    text-align: center;
}

.text-secondary {
    color: var(--color-secondary) !important;
}
.text-white {
    color: white !important;
}
.icons-section {
    position: relative;
}
.icons-panel {
    position: relative;
    z-index: 100;
}
.spacer {
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 10;
    background: whitesmoke;
}
.thankyou-spacer {
    flex: 1;
}

.masthead span {
    color: white !important;
    background: var(--color-secondary);
    padding: 0 0.25em;
}
