/*!
Bootstrap Reboot
Normalization of HTML elements, manually forked from Normalize.css to remove styles targeting irrelevant browsers while applying new styles.
Normalize is licensed MIT. https://github.com/necolas/normalize.css 
*/

@font-face {
    font-family: 'Myriad Pro Regular';
    src: url('fonts/Myriad-Pro-Regular.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro Consended';
    src: url('fonts/Myriad-Pro-Condensed.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro Consended Italic';
    src: url('fonts/Myriad-Pro-Condensed-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro Light Consended';
    src: url('fonts/Myriad-Pro-Light-Condensed.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro Bold Condensed';
    src: url('fonts/Myriad-Pro-Bold-Condensed.woff2') format('woff2');
    font-weight: normal;
    font-display: swap;
}

:root {
    color-scheme: light;
    --body-bg: #fefefe;
    --body-color: #1d1d1f;
    --body-color-50: rgb(30 30 32 / .5);
    --body-color-10: rgb(30 30 32 / .1);
    --main-bg: #f9f9f9;
    --main-bg-light: #fff;
    --color-gray-30: hsl(0, 0%, 30%);
    --color-gray-90: hsl(0, 0%, 90%);
    --color-gray-95: hsl(0, 0%, 95%);
    --color-primary: #007ac9;
    --color-primary-hover: #1b99fc;

    --heading-color: var(--body-color);

    --highlight-color: #dee2e6;
    --highlight-bg: var(--body-color);

    --link-color: var(--color-primary);
    --link-hover-color: var(--color-primary-hover);

    @media (prefers-color-scheme: dark) {
        --body-bg: #1d1d1f;
        --body-color: #fefefe;
        --main-bg: #2e2e2f;
        --main-bg-light: #333;
        --color-gray-90: hsl(0, 0%, 25%);
        --link-color: #2faaff;
        --link-hover-color: #73bdf1;
    }

    --body-font: 'Myriad Pro Regular',
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    "Noto Sans",
    "Liberation Sans",
    Arial,
    sans-serif;
    --font-head: 'Myriad Pro Bold Condensed';
    --font-condensed: 'Myriad Pro Condensed';
    --font-condensed-italic: 'Myriad Pro Condensed Italic';
    --font-light-condensed: 'Myriad Pro Light Consended';
    --font-monospace: SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    "Liberation Mono",
    "Courier New",
    monospace;
    --body-font-size: 1rem;
    --font-weight-400: 400;
    --font-weight-900: 900;
    --body-line-height: 1.5;

    --font-size-h1: clamp(2.25rem, 2.25rem + 1.5vw, 4rem);
    --font-size-h2: clamp(1.75rem, 1.75rem + 1vw, 2.75rem);
    --font-size-h3: clamp(1.3rem, 1.3rem + 0.6vw, 1.75rem);
    --font-size-h4: clamp(1.275rem, 1.275rem + 0.3vw, 1.5rem);
    --font-size-h5: 1.25rem;
    --font-size-h6: 1rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    font-weight: var(--font-weight-400);
    line-height: var(--body-line-height);
    color: var(--body-color);
    background-color: var(--body-bg);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: #000;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
}

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: .25rem;
    font-family: var(--font-head);
    font-weight: var(--font-weight-900);
    line-height: 1.2;
    color: var(--heading-color);
}

.wp-block-heading {
    margin-block-end: 1rem;
    padding-block-start: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-inline-start: 1.2rem;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

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

li {
    line-height: 1.4;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-inline-end: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

i,
em {
    font-family: var(--font-condensed-italic);
}

small {
    font-size: 0.875em;
}

mark {
    padding: 0.1875em;
    color: var(--highlight-color);
    background-color: var(--highlight-bg);
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

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

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

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

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

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: var(--code-color);
    word-wrap: break-word;
}

a>code {
    color: inherit;
}

kbd {
    padding: 0.1875rem 0.375rem;
    font-size: 0.875em;
    color: var(--body-bg);
    background-color: var(--body-color);
    border-radius: 0.25rem;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
}

figure,
img,
svg,
iframe {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--secondary-color);
    text-align: end;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

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;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[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;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: inline-start;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    line-height: inherit;
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend+* {
    clear: all;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button {
    cursor: pointer;
    filter: grayscale(1);
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

::file-selector-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}


b,
strong,
th {
    font-weight: 500;
    letter-spacing: -0.01rem;
}

small,
.small {
    font-size: .875rem;
}

:where(h1, h2, h3, h4, h5, h6) :where(b, strong) {
    letter-spacing: normal;
    font-weight: 400;
}

:focus {
    outline-color: transparent;
}

:focus-visible {
    outline: none;
}

hr {
    width: 10%;
}

table {
    max-width: 100%;
    margin: 1rem 0;
    font-size: inherit;
    color: currentColor;
}

td {
    border: none;
}

table+figcaption {
    padding-top: 1rem;
    text-align: center;
}

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

ul,
ol {
    margin-inline: 0;
}

ul:not(.list-unstyled) li {
    list-style-type: circle;
}

ol {
    list-style-position: inside;
    padding-inline-start: 0;
}

label {
    margin-bottom: 0;
}

blockquote {
    position: relative;
    padding-inline-start: 2rem;

    &::before {
        content: "”";
        position: absolute;
        top: -0.15rem;
        inset-inline-start: 0;
        font-family: sans-serif;
        font-size: 4rem;
        line-height: 1;
        color: var(--color-primary-hover-hover);
    }

    & p {
        font-style: italic;
    }

    & cite {
        display: block;
        font-size: .9rem;
        font-style: normal;
        text-align: end;
        transform: translateY(-0.5rem);
    }
}

.hyphen,
body,
th,
td {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.no-hyphen,
a[href^="mailto:"],
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: normal;
    word-wrap: normal;
    -webkit-hyphens: none;
    hyphens: none;
}


.ratio {
    position: relative;
    width: 100%
}

.ratio::before {
    display: block;
    padding-top: var(--aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 100%
}

.ratio-1x1 {
    --aspect-ratio: 100%
}

.ratio-4x3 {
    --aspect-ratio: 75%
}

.ratio-16x9 {
    --aspect-ratio: 56.25%
}

.ratio-21x9 {
    --aspect-ratio: 42.8571428571%
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
    position: absolute !important
}

.user-select-all {
    user-select: all !important
}

.user-select-auto {
    user-select: auto !important
}

.user-select-none {
    user-select: none !important
}