﻿:root {
    /* Colors */

    --color-primary-blue-1: #096491;
    --color-primary-blue-2: #0b78af;
    --color-primary-blue-3: #009fcb;
    --color-primary-blue-4: #b3e4fa;
    --color-primary-blue-5: #b3e4fa;

    --color-primary-blue: var(--color-primary-blue-2);

    --color-orange-dark: #e67c08;
    --color-orange: #f78f1e;
    --color-orange-light: #fcdbb6;

    --color-eggplant-dark: #1e08ea;
    --color-eggplant: #310d5d;
    --color-eggplant-light: #dbcfed;

    --color-teal-dark: #083e61;
    --color-teal: #086375;
    --color-teal-light: #d5f2e8;

    --color-aqua-dark: #189c84;
    --color-aqua: #1dd3b0;
    --color-aqua-light: #bcf6e6;

    --color-mint-dark: #8ccb7e;
    --color-mint: #b2ff9e;
    --color-mint-light: #e5ffd9;

    --color-lime-dark: #87c136;
    --color-lime: #affc41;
    --color-lime-light: #d5fc8f;

    --color-robins-egg-dark: #84c3c7;
    --color-robins-egg: #a0eaec;
    --color-robins-egg-light: #d2fcfb;

    --color-white: #fff;
    --color-red: #e83145;
    --color-text: #1b313c;

    --color-grey-light: #e6e6e6;

    --color-page-header: #f4fafc;

    /* Fonts */
    /*--font-primary: system-ui, sans-serif;*/
    --font-primary: 
        /* Safari for OS X and iOS (San Francisco) */
        -apple-system,
        /* Chrome < 56 for OS X (San Francisco) */
        BlinkMacSystemFont,
        /*  Windows */
        /*"Segoe UI",*/
        /* Android */
        "Roboto",
        /* Basic web fallback */
        "Helvetica Neue", Arial, sans-serif;

    --font-serif: 'Times New Roman', 'serif';

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-bold: 500;
    --font-weight-extra-bold: 700;

    /* Sizes */
    --content-width: 1240px;

    --screen-size-large: 1439px; /* $laptop-lg: 1439px */
    --screen-size-medium: 1024px; /* $laptop: 1023px */
    --screen-size-tablet: 768px; /* $tablet: 767px */
    --screen-size-mobile-large: 424px; /* $mobile-lg: 424px */
    --screen-size-mobile-medium: 374px; /* $mobile-md: 374px */
    --screen-size-mobile-small: 319px; /* $mobile-sm: 319px */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    height: 100%;
}

body {
    overflow-x: hidden;
    color: var(--color-text);
    line-height: 1.625rem;
    font-family: var(--font-primary);
    margin: 0;
    background-color: var(--color-white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(#000, 0);
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    line-height: 48px;
}

h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h2 {
    font-weight: var(--font-weight-light);
    font-size: 1.8rem;
    line-height: 38px;
    margin-top: 0;
    margin-bottom: .83rem;
}

h1.lime {
    color: var(--color-lime);
}

h5 {
    text-transform: none;
    font-weight: var(--font-weight-normal);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 28px;
    margin: 0;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-blue);
}

a:hover {
    color: var(--color-text);
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

ul.fa-ul,
ul.checked {
    list-style: none;
    padding-left: 0;
}

ul.fa-ul li,
ul.checked li {
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
}

ul.fa-ul li::before,
ul.checked li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 1em;
    height: 1em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20' width='17.5' viewBox='0 0 448 512'%3E%3Cpath fill='%23FFD43B' d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    
}

dt {
  font-weight: var(--font-weight-bold);
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

dfn {
    font-style: normal;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

small {
    font-size: .7rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

/* https://stackoverflow.com/a/54997118*/
[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-inner-spin-button {
  height: auto;
}

textarea {
  resize: vertical;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

iframe {
  border: 0;
}

[hidden] {
  display: none !important;
}

.main {
    display: grid;
    min-height: 100%;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 100%;
}

.content-grid {
	--padding-inline: 1rem;
	--content-max-width: 1380px;
	--breakout-max-width: 1480px;
	--breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
	display: grid;
	grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
}

.content-grid > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
    grid-column: content;
}


.content-grid > .breakout {
    grid-column: breakout;
}

.content-grid > .full-width {
    grid-column: full-width;
    display: grid;
    grid-template-columns: inherit;
}

.flow > * + * {
    margin-top: var(--flow-spacing, 1em);
}

img.full-width {
    width: 100%;
    max-height: 45vh;
    object-fit: cover;
}

.img.contain {
    width: 100%;
    max-height: 45vh;
    object-fit: contain;
}

.container {
    max-width: 1140px;
}

.wrapper {
    --content-max-width: 1140px;
    --space-off-sides-inline: 2rem;

    width: min(var(--content-max-width), 100% - (var(--space-off-sides-inline) / 2));
    margin-inline: auto;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

/* Legacy rules from old SASS files that may still be in use. */

strong {
  font-weight: var(--font-weight-bold);
}

.blue-text {
    color: var(--color-primary-blue);
}

.primary-background {
    background-color: var(--color-primary-blue);
}

/* Utils */

.sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.pl1 {
    margin-left: 1rem;
}

.pt1 {
    margin-top: 1rem;
}

.pb1 {
    margin-top: 1rem;
}

.via-modal {
    display: none;
}

.chevron-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%230b78af' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
    width: 1em;
    vertical-align: middle;
    aspect-ratio: 1;
    display: inline-block;
    background-repeat: no-repeat;
}

/* End Utils */

/* Buttons */

.via-button {
    display: grid;
    background-color: var(--color-primary-blue);
    cursor: pointer;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px;
    color: var(--color-white);
    justify-content: center;
    align-content: center;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: .5px;
}

input[type=submit].via-button {
    border: none;
}

.via-button.tight {
    padding: .8rem;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
}

.via-button.larger {
    width: 420px;
}

.via-button.full-width {
    width: auto;
}

input[type=submit].via-button.full-width {
    width: 100%;
}

.via-button.fit-content {
    display: inline-block;
}

.via-button:hover {
    background-color: #1b323d;
    text-decoration: none;
    color: #fff;
}

.via-button.lime {
    background-color: var(--color-lime-light);
    color: var(--color-text);
}

.via-button.primary-blue {
    background-color: var(--color-primary-blue);
    color: var(--color-white);
}

.via-button.primary-blue:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.via-button.lime:hover {
    color: var(--color-white);
    background-color: var(--color-text);
}

button.via-button {
    border: none;
}

button.via-button.full-width {
    width: 100%;
}

/* End Buttons */

/* Inputs */

.via-input[type=text], 
.via-input[type=number] {
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

/* End Inputs */