/* assets/css/style.css */

@font-face {
    font-family: 'Helvena';
    src: url('../fonts/Helvena-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Define Your New Color Palette */
    --metro-gold: #C99435;
    --metro-gray: #707073;
    --metro-white: #F9F9F9;
    --metro-black: #1a1a1a;
    /* A slightly softer black for better aesthetics */

    /* =================================================================== */
    /* == Override Original Template Variables with Your Color Palette === */
    /* =================================================================== */

    /* --- General Body & Text --- */
    --bs-body-font-family: 'Helvena', sans-serif !important;
    --bs-body-bg: var(--metro-white);
    /* Main background */
    --bs-body-color: var(--metro-black);
    /* Main text color */
    --bs-heading-color: var(--metro-black);
    --bs-link-color: var(--metro-black);
    --bs-link-hover-color: var(--metro-gold);

    /* --- Template Theme Colors (Replacing the original orange/yellow) --- */
    --bs-yellow: var(--metro-gold);
    --bs-orange: #b16b2b;
    /* Using the original darker orange as a hover/accent */
    --color-yellow: var(--metro-gold);
    --color-orange: #b16b2b;
}

/* Customizations */
.site-header:not(.is-opaque) .site-logo {
    filter: brightness(0) invert(1);
    /* White Color */
}

.site-header.is-opaque .site-logo {
    filter: brightness(0) invert(1);
    /* White Color */
}

@media (min-width: 1200px) {
    .nav__link--level-0 {
        font-size: 1rem;
        /* Increased from .875rem */
    }
}

/* Fix mobile menu link visibility */
@media (max-width: 1199.98px) {
    .navbar .nav__link {
        color: #fff !important;
    }

    .navbar .nav__link:hover {
        color: var(--metro-gold) !important;
    }
}

/* Dark theme overrides (optional, but good practice) */
[data-theme=dark] {
    --bs-body-bg: var(--metro-black);
    --bs-body-color: var(--metro-white);
    --bs-heading-color: var(--metro-white);
    --bs-link-color: var(--metro-white);
    --bs-link-hover-color: var(--metro-gold);
}

/* Override hardcoded fonts in template */
body,
button,
input,
select,
textarea,
.btn,
.cta,
.icon-link,
label,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-lg,
.display-xl,
blockquote,
.card__title,
.subnav__heading,
.statistic__inner,
.stockticker__primary,
.font-display,
.font-sans {
    font-family: var(--bs-body-font-family) !important;
}

/* Manual overrides for specific components to ensure color consistency */
.btn {
    background-color: var(--metro-gold);
    color: var(--metro-black);
    border-color: var(--metro-gold);
}

.btn:hover {
    background-color: var(--color-orange);
    /* Darker gold on hover */
    border-color: var(--color-orange);
    color: var(--metro-black);
}

.btn--border {
    color: var(--metro-black);
    border-color: var(--metro-black);
}

.btn--border:hover {
    color: var(--metro-white);
    background-color: var(--metro-black);
    border-color: var(--metro-black);
}

.site-footer {
    background-color: var(--metro-black);
    color: var(--metro-white);
}

.promo.bg-yellow {
    background-color: var(--metro-gold) !important;
}

.text-yellow {
    color: var(--metro-gold) !important;
}

.icon-yellow {
    fill: var(--metro-gold) !important;
}

.flickity-page-dot.is-selected {
    background: var(--metro-gold);
}

.progressbar {
    background-color: var(--metro-gold);
}


/* ==========================================================================
   Original Minified Template CSS
   ========================================================================== */
@charset "UTF-8";

/*!
 * Bootstrap  v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
*,
::after,
::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--bs-heading-color)
}

.h1,
h1 {
    font-size: 2.5rem
}

.h2,
h2 {
    font-size: 1.875rem
}

.h3,
h3 {
    font-size: 1.5rem
}

.h4,
h4 {
    font-size: 1.3125rem
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1.125rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol,
ul {
    padding-left: 2rem
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 600
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: 600
}

.small,
small {
    font-size: .875em
}

.mark,
mark {
    padding: .1875em;
    color: var(--bs-highlight-color);
    background-color: var(--bs-highlight-bg)
}

sub,
sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline
}

a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
    text-decoration: none
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal
}

code {
    font-size: .875em;
    color: var(--bs-code-color);
    word-wrap: break-word
}

a>code {
    color: inherit
}

kbd {
    padding: .1875rem .375rem;
    font-size: .875em;
    color: var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-radius: .25rem
}

kbd kbd {
    padding: 0;
    font-size: 1em
}

figure {
    margin: 0 0 1rem
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: var(--bs-secondary-color);
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
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
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button: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: left;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit
}

legend+* {
    clear: left
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::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
}

.lead {
    font-size: 1.25rem;
    font-weight: 400
}

.display-1 {
    font-size: 3.75rem;
    font-weight: 600;
    line-height: .9
}

.display-2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: .9
}

.display-3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: .9
}

.display-4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: .9
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote>:last-child {
    margin-bottom: 0
}

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d
}

.blockquote-footer::before {
    content: "— "
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1600px) {
    .col-xxxl {
        flex: 1 0 0%
    }

    .row-cols-xxxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxxl-0 {
        margin-left: 0
    }

    .offset-xxxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxxl-3 {
        margin-left: 25%
    }

    .offset-xxxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxxl-6 {
        margin-left: 50%
    }

    .offset-xxxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxxl-9 {
        margin-left: 75%
    }

    .offset-xxxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxxl-0,
    .gx-xxxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxxl-0,
    .gy-xxxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxxl-1,
    .gx-xxxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxxl-1,
    .gy-xxxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxxl-2,
    .gx-xxxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxxl-2,
    .gy-xxxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxxl-3,
    .gx-xxxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxxl-3,
    .gy-xxxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxxl-4,
    .gx-xxxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxxl-4,
    .gy-xxxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxxl-5,
    .gx-xxxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxxl-5,
    .gy-xxxl-5 {
        --bs-gutter-y: 3rem
    }
}

.ratio {
    position: relative;
    width: 100%
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%
}

.ratio-3x4 {
    --bs-aspect-ratio: 133.3333333333%
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%
}

.ratio-5x3 {
    --bs-aspect-ratio: 60%
}

.ratio-6x4 {
    --bs-aspect-ratio: 66.6666666667%
}

.ratio-4x5 {
    --bs-aspect-ratio: 125%
}

.ratio-4x6 {
    --bs-aspect-ratio: 150%
}

.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-focusable:not(:focus):not(:focus-within):not(caption),
.visually-hidden:not(caption) {
    position: absolute !important
}

/*! Flickity v3.0.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
    touch-action: pan-y
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0
}

.flickity-rtl .flickity-slider {
    left: unset;
    right: 0
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-cell {
    position: absolute;
    left: 0
}

.flickity-rtl .flickity-cell {
    left: unset;
    right: 0
}

.flickity-button {
    position: absolute;
    background: hsl(0 0% 100%/75%);
    border: none;
    color: #333
}

.flickity-button:hover {
    background: #fff;
    cursor: pointer
}

.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-button:active {
    opacity: .6
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none
}

.flickity-button-icon {
    fill: currentColor
}

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%)
}

.flickity-prev-next-button.previous {
    left: 10px
}

.flickity-prev-next-button.next {
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dot {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0 8px;
    background: hsl(0 0% 20%/25%);
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-indent: -9999px;
    overflow: hidden
}

.flickity-rtl .flickity-page-dot {
    text-indent: 9999px
}

.flickity-page-dot:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-page-dot.is-selected {
    background: hsl(0 0% 20%/100%)
}

.flickity-enabled.is-fade .flickity-slider>* {
    pointer-events: none;
    z-index: 0
}

.flickity-enabled.is-fade .flickity-slider>.is-selected {
    pointer-events: auto;
    z-index: 1
}

:root {
    --bs-body-font-family: 'Helvena', sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: #fff;
    --bs-body-bg: #000;
    --bs-link-color: #000;
    --bs-link-hover-color: #000;
    --bs-heading-color: inherit;
    --bs-body-text-align: left
}

:root[data-theme=light] {
    --bs-body-color: #000;
    --bs-body-bg: #fff
}

body,
html {
    scroll-padding-top: 5.75rem;
    scroll-behavior: smooth
}

@media (min-width:1200px) {

    body,
    html {
        scroll-padding-top: 9rem
    }
}

html {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    touch-action: manipulation
}

html.scroll-lock {
    overflow-y: hidden
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
    font-variation-settings: "slnt" 0;
    transition: background-color .3s ease
}

.site-content {
    width: 100%
}

.no-transition * {
    transition: none !important
}

.border-bottom-1 {
    border-bottom: 1px solid currentColor
}

.border-top-1 {
    border-top: 1px solid currentColor
}

.opacity-0 {
    opacity: 0
}

.breadcrumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: .75rem;
    font-weight: 500;
    gap: .5rem;
    text-transform: uppercase
}

@media (min-width:1200px) {
    .breadcrumbs {
        gap: .875rem
    }
}

.breadcrumbs a {
    text-underline-offset: 4px
}

.breadcrumbs a:focus,
.breadcrumbs a:hover {
    text-decoration: none
}

.breadcrumbs .separator {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23dbb216' d='M7.795 2l9.663 10.033-9.599 9.967-1.253-1.206 8.437-8.76-8.501-8.827 1.253-1.206z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: .875rem;
    margin: 0;
    width: .875rem
}

.icon {
    display: inline-block;
    fill: currentColor;
    height: 1.5rem;
    pointer-events: none;
    stroke-width: 0;
    stroke: currentColor;
    transition: fill .2s ease;
    vertical-align: middle;
    width: 1.5rem
}

.icon--arrow {
    height: auto;
    width: 2rem
}

.icon--xs {
    height: 1rem;
    width: 1rem
}

.icon--sm {
    height: 1.25rem;
    width: 1.25rem
}

.icon--md {
    height: 1.75rem;
    width: 1.75rem
}

.icon--lg {
    height: 2rem;
    width: 2rem
}

.icon-btn {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    height: 2rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    transition: background-color .2s ease, color .2s ease;
    width: 2rem
}

.icon-btn:focus,
.icon-btn:hover {
    color: inherit
}

.icon-btn[disabled] {
    cursor: not-allowed
}

.icon-btn--md {
    height: 2.5rem;
    width: 2.5rem
}

.icon-btn--lg {
    height: 3rem;
    width: 3rem
}

.icon-btn--yellow {
    background: #dbb216;
    color: #000
}

.icon-btn--yellow:focus,
.icon-btn--yellow:hover {
    background: #b16b2b
}

.icon-btn--yellow[disabled] {
    cursor: not-allowed;
    opacity: .3
}

.icon-btn--yellow[disabled]:focus,
.icon-btn--yellow[disabled]:hover {
    background: #dbb216;
    color: #000
}

.icon-btn--yellow-stroke {
    color: #dbb216
}

.icon-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem
}

.icon-btn-group--narrow {
    gap: .5rem
}

.icon-link {
    background-color: transparent;
    align-items: center;
    border: 0;
    color: inherit;
    display: flex;
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    gap: 1rem;
    line-height: 2;
    outline: 0;
    padding: 0;
    text-decoration: none
}

@media (min-width:1200px) {
    .icon-link {
        font-size: 1rem
    }
}

.icon-link:focus,
.icon-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.btn {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #dbb216;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    font-family: montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 1.5;
    min-height: 2.5rem;
    justify-content: flex-start;
    padding: .5rem .9375rem;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s, color .2s ease, border-color .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

.btn:focus,
.btn:hover {
    background-color: #b16b2b;
    color: #000;
    outline: 0;
    text-decoration: none
}

.btn__icon {
    flex-shrink: 0
}

.btn--blocklink::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.btn--minwidth {
    justify-content: space-between
}

@media (min-width:768px) {
    .btn--minwidth {
        min-width: 18rem
    }
}

.btn--fullwidth {
    min-height: 2.875rem;
    justify-content: space-between;
    width: 100%
}

.btn--submit {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='18' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='m28.723 5.144 3.133 3.133a.492.492 0 0 1 0 .696l-3.133 3.133a.492.492 0 0 1-.696-.696l2.292-2.292H0v-.985h30.32L28.026 5.84a.492.492 0 1 1 .696-.696Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 2rem 1.125rem;
    background-position: right 1rem center;
    background-repeat: no-repeat;
    min-width: 11rem;
    text-align: left
}

[data-theme=light] .btn--submit {
    background-color: #dbb216
}

.bg-yellow .btn--submit {
    background-color: transparent;
    border: 1px solid #000
}

.bg-yellow .btn--submit:focus,
.bg-yellow .btn--submit:hover {
    background-color: #b16b2b;
    border-color: #b16b2b
}

.bg-orange .btn--submit {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='18' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='m28.723 5.144 3.133 3.133a.492.492 0 0 1 0 .696l-3.133 3.133a.492.492 0 0 1-.696-.696l2.292-2.292H0v-.985h30.32L28.026 5.84a.492.492 0 1 1 .696-.696Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    border: 1px solid #fff;
    color: #fff
}

.bg-orange .btn--submit:focus,
.bg-orange .btn--submit:hover {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='18' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='m28.723 5.144 3.133 3.133a.492.492 0 0 1 0 .696l-3.133 3.133a.492.492 0 0 1-.696-.696l2.292-2.292H0v-.985h30.32L28.026 5.84a.492.492 0 1 1 .696-.696Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    border-color: #fff;
    color: #000
}

.btn--white {
    background-color: #fff;
    color: #000
}

.btn--white:focus,
.btn--white:hover {
    color: #fff
}

.btn--border {
    background-color: transparent;
    border: 1px solid currentColor;
    color: inherit
}

.btn--border:focus,
.btn--border:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000
}

.btn--border-black {
    background-color: transparent;
    border: 1px solid #000;
    color: inherit
}

.btn--border-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff
}

.btn--border-white:focus,
.btn--border-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000
}

.btn--border-yellow {
    background-color: transparent;
    border: 1px solid #dbb216;
    color: #dbb216
}

.btn--border-yellow:focus,
.btn--border-yellow:hover {
    background-color: #dbb216;
    border-color: #dbb216
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem
}

.btn-group--stacked {
    align-items: flex-start;
    flex-direction: column
}

.cta {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-family: montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
    gap: 1rem;
    line-height: 2;
    padding: 0;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: background-color .2s, color .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

.cta:focus,
.cta:hover {
    outline: 0;
    text-decoration: underline;
    text-underline-offset: 3px
}

.cta__icon {
    height: 1rem;
    width: 1rem
}

@media (min-width:1200px) {
    .cta__icon {
        height: 1.5rem;
        width: 1.5rem
    }
}

.cta-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem
}

.filter__btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media (min-width:768px) {
    .filter__btn-group {
        flex-direction: row
    }
}

@media (min-width:1200px) {
    .filter__btn-group {
        gap: 1.5rem
    }
}

.filter__control {
    background-color: #000;
    background-position: right .5rem top 50%;
    border-color: transparent;
    color: inherit;
    padding: .5rem 2rem .5rem .5rem
}

.bg-dark-grey .filter__control {
    background-color: #211f1f
}

.bg-dark-grey .filter__control,
[data-theme=light] .filter__control {
    border-color: transparent
}

select.filter__control {
    width: auto
}

.field {
    margin-bottom: 1.25rem;
    position: relative
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    outline: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

input,
label,
select,
textarea {
    font-size: 1rem
}

label,
legend {
    line-height: 1.1;
    margin-bottom: .5rem
}

label {
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    font-weight: 400
}

input,
select,
textarea {
    background-color: #211f1f;
    border: 1px solid currentColor;
    border-radius: 0;
    color: #fff;
    font-family: montserrat, sans-serif;
    font-weight: 400;
    line-height: 1.25;
    width: 100%
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
    color: currentColor
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: currentColor
}

[data-theme=light] input,
[data-theme=light] select,
[data-theme=light] textarea {
    background-color: transparent;
    border-color: #000;
    color: #000
}

.bg-dark-grey input,
.bg-dark-grey select,
.bg-dark-grey textarea {
    border-color: #fff;
    color: #fff
}

input:focus,
select:focus,
textarea:focus {
    border-color: #dbb216;
    outline: 0
}

.bg-orange input:not(.btn),
.bg-orange select,
.bg-orange textarea,
.bg-yellow input:not(.btn),
.bg-yellow select,
.bg-yellow textarea {
    background-color: rgba(255, 255, 255, .6);
    border-color: transparent;
    color: #000
}

[data-theme=light] .bg-orange input:not(.btn),
[data-theme=light] .bg-orange select,
[data-theme=light] .bg-orange textarea,
[data-theme=light] .bg-yellow input:not(.btn),
[data-theme=light] .bg-yellow select,
[data-theme=light] .bg-yellow textarea {
    border-color: transparent
}

input[type=submit] {
    width: auto
}

input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
    font-family: montserrat, sans-serif;
    padding: .75rem 1rem
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

select {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 1rem;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    field-sizing: content;
    font-family: montserrat, sans-serif;
    width: 100%;
    padding: .75rem 3rem .75rem 1rem
}

[data-theme=light] select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='black'/%3E%3C/svg%3E")
}

.bg-dark-grey select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='white'/%3E%3C/svg%3E")
}

select::-ms-expand {
    display: none
}

input[type=date] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%0A%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M4 13.706c0-0.611 0.495-1.105 1.105-1.105h21.789c0.611 0 1.105 0.495 1.105 1.105v12.041c0 1.244-1.008 2.252-2.252 2.252h-19.495c-1.244 0-2.252-1.008-2.252-2.252v-12.041zM6.211 14.812v10.936c0 0.023 0.018 0.041 0.041 0.041h19.495c0.023 0 0.041-0.019 0.041-0.041v-10.936h-19.578z'%3E%3C/path%3E%3Cpath d='M6.252 7.931c-0.023 0-0.041 0.019-0.041 0.041v4.628h19.578v-4.628c0-0.023-0.019-0.041-0.041-0.041h-19.495zM4 7.972c0-1.244 1.008-2.252 2.252-2.252h19.495c1.244 0 2.252 1.008 2.252 2.252v5.734c0 0.611-0.495 1.105-1.105 1.105h-21.789c-0.611 0-1.105-0.495-1.105-1.105v-5.734z'%3E%3C/path%3E%3Cpath d='M11.414 4c0.611 0 1.105 0.495 1.105 1.105v4.587c0 0.611-0.495 1.105-1.105 1.105s-1.105-0.495-1.105-1.105v-4.587c0-0.611 0.495-1.105 1.105-1.105z'%3E%3C/path%3E%3Cpath d='M20.586 4c0.611 0 1.105 0.495 1.105 1.105v4.587c0 0.611-0.495 1.105-1.105 1.105s-1.105-0.495-1.105-1.105v-4.587c0-0.611 0.495-1.105 1.105-1.105z'%3E%3C/path%3E%3Cpath d='M17.188 22.307c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.105-1.105 1.105h-3.44c-0.611 0-1.105-0.495-1.105-1.105z'%3E%3C/path%3E%3Cpath d='M9.161 22.307c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.105-1.105 1.105h-3.44c-0.611 0-1.105-0.495-1.105-1.105z'%3E%3C/path%3E%3Cpath d='M17.188 17.72c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.106-1.105 1.106h-3.44c-0.611 0-1.105-0.495-1.105-1.106z'%3E%3C/path%3E%3Cpath d='M9.161 17.72c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.106-1.105 1.106h-3.44c-0.611 0-1.105-0.495-1.105-1.106z'%3E%3C/path%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 1.5rem;
    color: #000
}

::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0
}

.gfield--type-choice input[type=checkbox],
.gfield--type-choice input[type=radio] {
    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
}

.gfield--type-choice input[type=checkbox]:not(caption),
.gfield--type-choice input[type=radio]:not(caption) {
    position: absolute !important
}

.custom-checkbox,
input[type=checkbox]+.gform-field-label {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    min-height: 2rem;
    padding: .45rem 0 .25rem 3rem;
    position: relative;
    width: auto
}

@media (min-width:992px) {

    .custom-checkbox,
    input[type=checkbox]+.gform-field-label {
        padding-left: 3.5rem
    }
}

.custom-checkbox::after,
.custom-checkbox::before,
input[type=checkbox]+.gform-field-label::after,
input[type=checkbox]+.gform-field-label::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0
}

.custom-checkbox::before,
input[type=checkbox]+.gform-field-label::before {
    background-color: transparent;
    border: 1px solid currentColor;
    height: 1.875rem;
    width: 1.875rem
}

.custom-checkbox::after,
input[type=checkbox]+.gform-field-label::after {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    height: 1.875rem;
    left: 0;
    width: 1.875rem
}

input[type=checkbox]:checked+.custom-checkbox,
input[type=checkbox]:checked+.gform-field-label {
    text-decoration: none
}

input[type=checkbox]:checked+.custom-checkbox::before,
input[type=checkbox]:checked+.gform-field-label::before {
    background-color: #dbb216;
    border-width: 2px
}

.bg-orange input[type=checkbox]:checked+.custom-checkbox::before,
.bg-orange input[type=checkbox]:checked+.gform-field-label::before,
.bg-yellow input[type=checkbox]:checked+.custom-checkbox::before,
.bg-yellow input[type=checkbox]:checked+.gform-field-label::before {
    background-color: #000
}

.custom-radio,
input[type=radio]+.gform-field-label {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    min-height: 2rem;
    padding: .45rem 0 .25rem 3rem;
    position: relative;
    width: auto
}

@media (min-width:992px) {

    .custom-radio,
    input[type=radio]+.gform-field-label {
        padding-left: 3rem
    }
}

.custom-radio::after,
.custom-radio::before,
input[type=radio]+.gform-field-label::after,
input[type=radio]+.gform-field-label::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0
}

.custom-radio::before,
input[type=radio]+.gform-field-label::before {
    background-color: transparent;
    border: 1px solid currentColor;
    height: 1.875rem;
    width: 1.875rem
}

.custom-radio::after,
input[type=radio]+.gform-field-label::after {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    height: 1.875rem;
    left: 0;
    width: 1.875rem
}

input[type=radio]:checked+.custom-radio,
input[type=radio]:checked+.gform-field-label {
    text-decoration: none
}

input[type=radio]:checked+.custom-radio::before,
input[type=radio]:checked+.gform-field-label::before {
    background-color: #dbb216;
    border-width: 2px
}

.bg-orange input[type=radio]:checked+.custom-checkbox::before,
.bg-orange input[type=radio]:checked+.gform-field-label::before,
.bg-yellow input[type=radio]:checked+.custom-checkbox::before,
.bg-yellow input[type=radio]:checked+.gform-field-label::before {
    background-color: #000
}

.gfield {
    margin-bottom: 1.25rem
}

.gfield--type-radio .gfield_label {
    margin-bottom: 2rem
}

.gform_required_legend {
    font-size: 1rem;
    margin-bottom: 1rem
}

.gf_placeholder {
    color: #dbb216
}

.gform_submission_error {
    font-size: 1.25rem
}

.gfield_validation_message {
    color: inherit;
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    padding-top: .25rem
}

.gform-field-label--type-inline {
    margin-bottom: 1.25rem
}

.hidden_label .gfield_label,
.hidden_sub_label {
    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
}

.hidden_label .gfield_label:not(caption),
.hidden_sub_label:not(caption) {
    position: absolute !important
}

.subscribe-form .gform_fields {
    display: grid;
    gap: 0 1.25rem
}

@media (min-width:768px) {
    .subscribe-form .gform_fields {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width:768px) {
    .subscribe-form .gfield--type-email {
        grid-column: 1/3
    }
}

@media (min-width:768px) {
    .sidebar-form .gform_fields {
        display: grid;
        gap: 0 .875rem;
        grid-template-columns: 5fr 7fr
    }

    .sidebar-form .gform_fields>.gfield {
        grid-column: 2/3
    }

    .sidebar-form .gform_fields .sidebar-form__sidebar {
        grid-column: 1/2;
        grid-row: 1/5
    }

    .sidebar-form .gform_footer {
        display: grid;
        gap: 0 .875rem;
        grid-template-columns: 5fr 7fr;
        place-items: flex-start
    }

    .sidebar-form .gform_footer>.gform_button {
        grid-column: 2/3
    }
}

.site-footer {
    padding: 2rem 0
}

@media (min-width:1200px) {
    .site-footer {
        padding: 3.5rem 0 2.5rem
    }
}

.menu {
    font-size: .875rem;
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0
}

.menu a {
    text-decoration: none
}

.menu a:focus,
.menu a:hover {
    text-decoration: underline;
    text-underline-offset: 4px
}

@media (min-width:1200px) {
    .menu {
        font-size: 1.125rem
    }
}

.menu-item {
    padding: .125rem 0
}

@media (min-width:992px) {
    .menu-item {
        padding: .25rem 0
    }
}

.menu--2-column {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
}

@media (min-width:768px) {
    .menu--horizontal {
        display: flex;
        gap: 1.5rem
    }
}

@media (min-width:1200px) {
    .menu--horizontal {
        gap: 2.5rem
    }
}

.container-xxl {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.container-fullwidth {
    max-width: none;
    padding-left: 0;
    padding-right: 0
}

@media (max-width:767.98px) {
    .container-p-0-sm {
        padding: 0
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

@media (min-width:768px) {
    .gutters-sm {
        margin-right: -.5rem;
        margin-left: -.5rem
    }

    .gutters-sm>.col,
    .gutters-sm>[class*=col-] {
        padding-right: .5rem;
        padding-left: .5rem
    }
}

@media (min-width:992px) {
    .gutters-md {
        margin-right: -1rem;
        margin-left: -1rem
    }

    .gutters-md>.col,
    .gutters-md>[class*=col-] {
        padding-right: 1rem;
        padding-left: 1rem
    }
}

@media (min-width:992px) {
    .gutters-lg {
        margin-right: -1.5rem;
        margin-left: -1.5rem
    }

    .gutters-lg>.col,
    .gutters-lg>[class*=col-] {
        padding-right: 1.5rem;
        padding-left: 1.5rem
    }
}

@media (min-width:992px) {
    .gutters-xl {
        margin-right: -2rem;
        margin-left: -2rem
    }

    .gutters-xl>.col,
    .gutters-xl>[class*=col-] {
        padding-right: 2rem;
        padding-left: 2rem
    }
}

.site-header {
    background-color: transparent;
    color: #fff;
    left: 0;
    position: fixed;
    top: 0;
    right: 0;
    transition: background-color .4s ease, color .4s ease;
    z-index: 30
}

[data-theme=light] .site-header.site-header--text-black:not(.is-opaque) {
    color: #000
}

.site-header.is-opaque {
    background-color: #000
}

.admin-bar .site-header {
    top: 2rem
}

.site-header__inner {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 90rem;
    padding: 1rem .75rem 1rem 1.25rem
}

@media (min-width:1200px) {
    .site-header__inner {
        padding: 1rem 1.5rem
    }
}

@media (min-width:1600px) {
    .site-header__inner {
        padding: 1.5rem
    }
}

.site-header__brand {
    position: relative;
    z-index: 30
}

@media (max-width:1199.98px) {
    .site-header__navbar {
        width: 100%
    }
}

.site-header__right {
    position: relative;
    z-index: 20
}

@media (min-width:992px) {
    .site-header__right {
        display: flex;
        justify-content: flex-end
    }
}

.site-link {
    text-decoration: none
}

.site-logo {
    fill: currentColor;
    height: 4.5rem;
    max-width: 100%;
    width: auto;
    transition: height .3s ease-out
}

@media (min-width:1200px) {
    .site-logo {
        height: 7.5rem
    }
}

.site-logo--footer {
    height: 3rem
}

@media (min-width:1200px) {
    .site-logo--footer {
        height: 5rem
    }
}

.progressbar {
    background-color: #dbb216;
    height: .5rem;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 50
}

@supports (animation-timeline:scroll(root)) {
    .progressbar {
        animation-timeline: scroll(root);
        animation-name: scrollProgress;
        animation-duration: auto;
        animation-timing-function: linear;
        transform-origin: 0 50%;
        width: 100%
    }
}

@keyframes scrollProgress {
    0% {
        transform: scaleX(0)
    }

    100% {
        transform: scaleX(1)
    }
}

.language-selector {
    display: flex;
    gap: .25rem
}

.language-selector__link {
    opacity: .5;
    padding: .25rem;
    text-decoration: none;
    text-transform: uppercase;
    transform: opacity .2s ease
}

.language-selector__link.is-active,
.language-selector__link:focus,
.language-selector__link:hover {
    font-weight: 500;
    opacity: 1
}

img {
    height: auto;
    max-width: 100%
}

.object-cover {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.object-contain {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.object-position-left {
    -o-object-position: left center;
    object-position: left center
}

.object-position-top {
    -o-object-position: center top;
    object-position: center top
}

iframe {
    border: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%
}

.modal,
.modal__overlay {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.modal {
    display: flex;
    z-index: 50
}

.modal[aria-hidden=true] {
    display: none
}

.modal__overlay {
    animation: modal-fade-in .2s both;
    background-color: rgba(0, 0, 0, .85)
}

.modal__content {
    animation: modal-fade-in .6s .2s both, modal-slide-up .6s .2s both;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-height: calc(100vh - 64px);
    max-width: 75rem;
    position: relative;
    width: calc(100% - 40px);
    z-index: 2
}

@media (min-width:1400px) {
    .modal__content {
        max-height: calc(100vh - 200px);
        min-height: 20rem
    }
}

.modal__content--video {
    background: 0 0;
    height: 100%;
    justify-content: center
}

.modal__content--video>div {
    max-height: 100%
}

.modal__content--external-link {
    background-color: #fff;
    color: #000;
    min-height: 0;
    padding: 1.5rem
}

@media (min-width:768px) {
    .modal__content--external-link {
        max-width: 30rem
    }
}

.modal__content--gallery {
    background-color: #211f1f
}

@media (min-width:1400px) {
    .modal__content--gallery {
        max-height: calc(100vh - 100px)
    }
}

[data-theme=light] .modal__content--gallery {
    background-color: #fff
}

.modal__content--map {
    background-color: #000;
    max-height: 100svh;
    width: 100%
}

@media (min-width:1200px) {
    .modal__content--map {
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        max-width: 90rem
    }
}

.modal__inner {
    overflow-y: auto
}

.modal__inner::-webkit-scrollbar {
    background-color: #000;
    width: .5rem
}

.modal__inner::-webkit-scrollbar-thumb {
    background-color: #dbb216
}

[data-theme=light] .modal__inner::-webkit-scrollbar {
    background-color: #211f1f
}

.modal__footer {
    padding-top: 1.5rem
}

.modal__close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 10
}

@media (min-width:1200px) {
    .modal__close {
        right: 2.5em;
        top: 2.5rem
    }
}

@media (min-width:1200px) {
    .modal__close--has-label {
        margin-right: 5rem
    }
}

.modal__close--bottom {
    bottom: 2rem;
    right: 2rem;
    top: unset
}

.modal__close__label {
    color: currentColor;
    display: none;
    font-size: .875rem
}

@media (min-width:1200px) {
    .modal__close__label {
        display: block;
        position: absolute;
        left: calc(100% + 1rem);
        top: 50%;
        transform: translateY(-50%)
    }
}

@keyframes modal-fade-in {
    from {
        opacity: 0
    }
}

@keyframes modal-slide-up {
    from {
        transform: translateY(10%)
    }
}

.modal__content--notification {
    background-color: transparent;
    max-height: calc(100vh - 4rem);
    max-width: 47rem;
    min-height: 0
}

.modal__content--notification.has-icon {
    max-width: 56rem
}

.modal-link .modal__inner {
    max-height: 75vh
}

bm-multiselect {
    position: relative
}

.multiselect__button {
    align-self: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 1rem;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    padding: .5rem 3rem .5rem 0;
    width: 100%
}

.multiselect__button:focus,
.multiselect__button:hover {
    color: #dbb216
}

.multiselect__select {
    background-position: right .25rem top 1rem;
    display: none;
    height: auto;
    overflow-y: auto;
    padding: .75rem 2rem .75rem 0
}

.multiselect__select option {
    margin-bottom: .5rem
}

@media (pointer:coarse) {
    .multiselect__select {
        display: block;
        height: 2.75rem
    }

    .multiselect__select+.multiselect__button {
        display: none
    }
}

.multiselect__dropdown {
    background-color: #211f1f;
    color: #fff;
    display: flex;
    filter: drop-shadow(0 0 8px #000);
    flex-direction: column;
    gap: 1.25rem;
    left: 0;
    min-width: 100%;
    padding: .75rem 1rem;
    position: absolute;
    top: calc(100% + .5rem);
    z-index: 10
}

@media (min-width:768px) {
    .multiselect__dropdown {
        min-width: 16rem
    }
}

.multiselect__checkbox:focus+.multiselect__checkbox__label::before {
    background-color: rgba(219, 178, 22, .3)
}

.multiselect__checkbox__label {
    cursor: pointer;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    min-height: 1.25rem;
    padding-right: 3rem;
    position: relative;
    transition: color .2s ease;
    width: 100%
}

.multiselect__checkbox__label::before {
    background-color: transparent;
    content: "";
    display: block;
    height: 1.25rem;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color .2s ease;
    width: 1.25rem
}

.multiselect__checkbox__label::before {
    border: 1px solid currentColor
}

.multiselect__checkbox__label:hover::before {
    background-color: rgba(219, 178, 22, .3)
}

.multiselect__checkbox:checked+.multiselect__checkbox__label {
    color: #dbb216
}

.multiselect__checkbox:checked+.multiselect__checkbox__label::before {
    background-color: #dbb216;
    border-color: #fff
}

.navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 10
}

.nav-is-open .navbar {
    color: #fff
}

@media (max-width:1199.98px) {
    .navbar {
        background-color: #000;
        color: #fff;
        height: 100lvh;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        position: absolute;
        right: 0;
        top: 0;
        transform: translate3d(100%, 0, 0);
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
        visibility: hidden;
        width: 100%
    }

    .nav-is-open .navbar {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }

    .nav-is-open .navbar::before {
        background-color: #000;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        height: 100px;
        z-index: 1
    }
}

@media (min-width:1200px) {
    .navbar {
        padding: 0;
        transition: padding .3s ease
    }
}

.navbar__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10rem 1.25rem 1.25rem
}

@media (min-width:1200px) {
    .navbar__inner {
        align-items: flex-end;
        flex-direction: column-reverse;
        height: auto;
        overflow: unset;
        padding: 0
    }
}

.navbar__utility {
    margin-top: auto;
    padding-bottom: 3rem
}

@media (min-width:1200px) {
    .navbar__utility {
        margin-bottom: 1.5rem;
        padding-bottom: 0
    }
}

@media (min-width:1200px) {
    .nav__content {
        position: relative
    }
}

.nav {
    list-style: none;
    margin: 0;
    padding: 0
}

@media (min-width:1200px) {
    .nav--level-0 {
        display: flex;
        gap: 1.25rem
    }
}

@media (min-width:1400px) {
    .nav--level-0 {
        gap: 2rem
    }
}

@media (min-width:1200px) {
    .nav--level-1 {
        border-color: #fff;
        border-style: solid;
        border-width: 0 1px;
        padding: 0 1.25rem;
        width: 50%
    }
}

.nav__item {
    margin-bottom: .5rem
}

@media (min-width:992px) {
    .nav__item--level-0 {
        margin-bottom: 0
    }
}

.nav__link {
    align-items: center;
    display: flex;
    font-size: 1.125rem;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.5;
    padding: .25rem .5rem;
    position: relative;
    text-decoration: none;
    transition: background-color .1s ease
}

@media (min-width:1200px) {
    .nav__link {
        font-size: 1.375rem
    }
}

.is-current>.nav__link,
.nav__link:focus,
.nav__link:hover {
    background-color: #211f1f;
    background-color: #000;
    text-decoration: none
}

.hashlink.is-current>.nav__link {
    text-decoration: none
}

.nav__link--level-0 {
    font-size: 1.375rem
}

@media (min-width:1200px) {
    .nav__link--level-0 {
        font-size: .875rem;
        padding-left: 0;
        padding-right: 0;
        white-space: nowrap
    }

    .nav__link--level-0::after {
        background-color: currentColor;
        bottom: 0;
        content: "";
        display: block;
        height: 1px;
        left: 0;
        position: absolute;
        transition: width .2s ease;
        width: 0
    }

    .is-current-parent>.nav__link--level-0,
    .is-current>.nav__link--level-0,
    .nav__link--level-0:focus,
    .nav__link--level-0:hover {
        background-color: transparent;
        text-decoration: none
    }

    .is-current-parent>.nav__link--level-0::after,
    .is-current>.nav__link--level-0::after,
    .nav__link--level-0:focus::after,
    .nav__link--level-0:hover::after {
        width: 100%
    }
}

@media (min-width:1200px) {
    .nav__link--level-0[data-subnav-toggle] {
        gap: .5rem
    }

    .nav__link--level-0[data-subnav-toggle] .nav__icon {
        color: inherit;
        transition: transform .2s ease
    }

    .nav__link--level-0[data-subnav-toggle].is-active .nav__icon {
        transform: rotate(180deg)
    }
}

.nav__link--landing {
    justify-content: flex-start;
    margin-bottom: 1.5rem
}

.nav__link--landing .nav__icon {
    height: 2rem;
    margin-left: 1.5rem;
    width: 2rem
}

.nav__icon {
    color: #dbb216;
    height: 1.25rem;
    margin-left: .25rem;
    pointer-events: none;
    transition: transform .2s ease;
    width: 1.25rem
}

.navbar__btn-group {
    align-items: center;
    display: flex;
    gap: 1rem
}

@media (min-width:1200px) {
    .navbar__btn-group {
        gap: 2rem
    }
}

.navbar-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    display: flex;
    font-size: .875rem;
    gap: .5rem;
    padding: 0;
    text-decoration: none
}

.navbar-btn:focus,
.navbar-btn:hover {
    text-decoration: underline;
    text-underline-offset: 5px
}

.is-opaque .navbar-btn:focus,
.is-opaque .navbar-btn:hover {
    color: #dbb216
}

.navbar-btn span {
    pointer-events: none
}

.subnav {
    background-color: #000;
    color: #fff
}

@media (max-width:1199.98px) {
    .subnav {
        bottom: 0;
        left: 0;
        overflow-y: auto;
        overflow-x: hidden;
        position: absolute;
        right: 0;
        top: 8rem;
        transform: translate3d(100%, 0, 0);
        transition: transform .2s ease;
        width: 100%;
        z-index: 1
    }
}

.subnav.is-open {
    transform: translate3d(0, 0, 0);
    transition-timing-function: ease-out
}

@media (min-width:1200px) {
    .subnav-level-1 {
        background-color: #211f1f;
        left: 0;
        max-height: none;
        opacity: 0;
        overflow: unset;
        position: absolute;
        right: 0;
        top: 0;
        transform: none;
        transition: opacity .2s ease, visibility .2s ease .3s;
        visibility: hidden;
        z-index: -1
    }

    .subnav-level-1.is-open {
        max-height: none;
        opacity: 1;
        transition: opacity .2s ease, visibility .2s ease;
        visibility: visible
    }

    .subnav-level-1 .subnav__inner {
        margin: 0 auto;
        max-width: 90rem;
        padding: 11rem 1.5rem 2.5rem
    }
}

.subnav-level-2 {
    top: 0
}

@media (min-width:1200px) {
    .subnav-level-2 {
        background-color: transparent;
        height: 100%;
        left: 50%;
        opacity: 0;
        overflow: auto;
        position: absolute;
        transition: opacity .1s ease, visibility .1s ease;
        transition: none;
        visibility: hidden;
        width: 50%
    }

    .subnav-level-2.is-open {
        opacity: 1;
        visibility: visible
    }

    .subnav-level-2 .subnav__inner {
        padding: 0 1.25rem
    }

    .subnav-level-2::-webkit-scrollbar {
        background-color: #000;
        height: .5rem;
        width: .5rem
    }

    .subnav-level-2::-webkit-scrollbar-thumb {
        background-color: #dbb216
    }
}

.subnav__heading {
    font-family: zuume-edge, serif;
    font-weight: 600;
    font-size: 3.125rem;
    line-height: 1
}

.subnav__inner {
    margin-top: 2.5rem;
    padding: 0 1.25rem
}

@media (min-width:1200px) {
    .subnav__inner {
        margin-top: 0
    }
}

.subnav__control {
    padding: 0 1.25rem
}

.subnav__button {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    display: flex;
    font-size: .875rem;
    padding: .5rem 0;
    width: 100%
}

.subnav__button:focus,
.subnav__button:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.subnav__button__icon {
    pointer-events: none;
    margin-right: .5rem
}

.nav-card {
    position: relative
}

@media (min-width:1200px) {
    .nav-card {
        margin-top: -4rem
    }
}

.nav-card:focus-within .nav-card__link,
.nav-card:hover .nav-card__link {
    text-decoration: underline;
    text-underline-offset: 3px
}

.nav-card__link {
    font-weight: 500;
    text-decoration: none
}

.nav-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.nav-card__media {
    display: grid;
    place-items: center;
    position: relative
}

.nav-card__media>* {
    grid-row: 1;
    grid-column: 1
}

.navbar-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    height: 2.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    transition: color .3s ease;
    width: 2.5rem
}

.navbar-toggle:focus,
.navbar-toggle:hover {
    color: #dbb216;
    outline: 0
}

.navbar-toggle__icon {
    align-items: center;
    fill: currentColor;
    display: flex;
    height: 1.5rem;
    pointer-events: none;
    position: relative;
    transition: fill .3s ease;
    width: 1.5rem
}

.navbar-toggle__icon .svg-open {
    display: none
}

[aria-expanded=true] .navbar-toggle__icon .svg-open {
    display: block
}

[aria-expanded=true] .navbar-toggle__icon .svg-closed {
    display: none
}

.search-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    font-size: .875rem;
    height: 2.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    transition: color .1s ease;
    width: 2.5rem
}

.search-toggle:focus,
.search-toggle:hover {
    color: #dbb216
}

.search-toggle span {
    pointer-events: none
}

.search-panel {
    background-color: #000;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate3d(0, -100%, 0);
    transition: opacity .3s ease, visibility .3s ease, background-color .3s ease;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    visibility: hidden;
    z-index: 20
}

.admin-bar .search-panel {
    top: 2rem
}

.search-panel.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible
}

.search-panel__inner {
    background-color: #dbb216;
    display: flex;
    height: 100%;
    margin-top: 5.75rem;
    padding: 1rem 0;
    position: relative
}

@media (min-width:992px) {
    .search-panel__inner {
        margin-top: 9rem
    }
}

.search-panel__close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.search-field {
    position: relative
}

.search-field__control[type=search] {
    background-color: transparent;
    border: 1px solid #dbb216;
    color: inherit;
    padding: .5625rem 2.5rem .5625rem 1rem
}

.search-field__control[type=search]::-moz-placeholder {
    color: inherit
}

.search-field__control[type=search]::placeholder {
    color: inherit
}

.search-field__button {
    background-color: #dbb216;
    color: #000;
    height: 2.5rem;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 2.5rem
}

.search-field__button:focus,
.search-field__button:hover {
    background-color: #b16b2b
}

.search-field--lg .search-field__control[type=search] {
    border: 0;
    font-size: 1.25rem;
    padding: .5rem 2.5rem .5rem 3rem
}

@media (min-width:1200px) {
    .search-field--lg .search-field__control[type=search] {
        font-size: 1.875rem;
        padding-left: 4rem
    }
}

.search-field--lg .search-field__button {
    color: #fff;
    left: 0;
    right: unset
}

.search-field--lg .search-field__button:focus,
.search-field--lg .search-field__button:hover {
    background-color: transparent;
    color: #b16b2b
}

.search-panel__results {
    color: #000;
    width: 100%
}

.search-result {
    padding: .5rem 0
}

.search-result__title {
    font-size: 1rem
}

.search-result__link {
    text-decoration: none
}

.search-result__link:focus,
.search-result__link:hover {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

.notification {
    background-color: #211f1f;
    color: currentColor;
    padding: 2rem 4rem 2rem 2rem;
    position: relative
}

[data-theme=light] .notification {
    background-color: #fff
}

.has-icon .notification {
    border-radius: .75rem
}

.notification__header {
    align-items: flex-start;
    display: flex;
    gap: 2rem
}

.notification-icon {
    flex-shrink: 0
}

.notification-icon__img {
    width: 3rem
}

@media (min-width:1200px) {
    .notification-icon__img {
        width: 6rem
    }
}

.social-menu {
    display: flex;
    gap: 1.125rem;
    list-style: none;
    padding-left: 0
}

.social-link {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    display: flex;
    height: 2rem;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease;
    width: 2rem
}

.social-link:focus,
.social-link:hover {
    background-color: #dbb216
}

.social-link--yellow {
    background-color: #dbb216
}

.social-link--yellow:focus,
.social-link--yellow:hover {
    background-color: #b16b2b
}

.table-responsive {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch
}

.table-responsive::-webkit-scrollbar {
    background-color: #000;
    height: .5rem;
    width: .5rem
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: #fff
}

table {
    border: 0;
    margin: 1.5rem 0;
    width: 100%
}

td,
th {
    font-size: .875rem;
    padding: .875rem 1rem;
    vertical-align: top
}

td:first-child,
th:first-child {
    padding-left: 0
}

td:last-child,
th:last-child {
    padding-right: 0
}

@media (min-width:1200px) {

    td,
    th {
        font-size: 1rem
    }
}

th {
    line-height: 1.2
}

td {
    border-bottom: 1px solid currentColor
}

tbody tr:first-child td {
    border-top: 1px solid currentColor
}

.table--fixed {
    table-layout: fixed;
    min-width: 100%
}

@media (min-width:992px) {
    .table--lg-fixed {
        table-layout: fixed
    }
}

.table--nowrap {
    white-space: nowrap
}

.table-wrapper {
    margin: 2rem 0;
    width: 100%;
    overflow: scroll;
    position: relative
}

.table-wrapper.scrollable {
    cursor: all-scroll
}

.table-wrapper.scrollable:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 48'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23dbb216; %7D %3C/style%3E%3C/defs%3E%3Cg id='icons'%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-1' d='M29.6,3.2L25.6.2c-.44-.33-1.07-.24-1.4.2-.33.44-.24,1.07.2,1.4l1.6,1.2h-6c-.55,0-1,.45-1,1s.45,1,1,1h6l-1.6,1.2c-.44.33-.53.96-.2,1.4.2.26.5.4.8.4.21,0,.42-.06.6-.2l4-3c.25-.19.4-.48.4-.8s-.15-.61-.4-.8Z'/%3E%3Cpath class='cls-1' d='M10,3H4l1.6-1.2c.44-.33.53-.96.2-1.4-.33-.44-.96-.53-1.4-.2L.4,3.2c-.25.19-.4.48-.4.8s.15.61.4.8l4,3c.18.14.39.2.6.2.3,0,.6-.14.8-.4.33-.44.24-1.07-.2-1.4l-1.6-1.2h6c.55,0,1-.45,1-1s-.45-1-1-1Z'/%3E%3C/g%3E%3Cpath class='cls-1' d='M36,31v-5c0-1.07,0-2.41-1.29-3.71-1.04-1.05-2.76-1.12-3.95-.65-.56-1.54-2.03-2.64-3.76-2.64-.98,0-1.88.35-2.57.94-.7-1.16-1.97-1.94-3.43-1.94-.73,0-1.41.2-2,.54v-8.54c0-2.21-1.79-4-4-4s-4,1.79-4,4v15.13c-.21-.21-.42-.43-.6-.62-1.56-1.63-3.49-3.65-6-3.57-1.47.05-2.87.87-4.17,2.42-.12.16-.23.37-.23.64,0,.25.1.52.29.71.03.03,2.88,2.91,4.78,7.66l.22.58c1.42,3.72,5.74,15.05,17.7,15.05,6.96,0,10.42-2.54,11.97-8.76.68-2.72,1.03-6.21,1.03-8.24h0ZM33.03,38.76c-1.31,5.28-4.03,7.24-10.03,7.24-10.58,0-14.54-10.36-15.84-13.76-.09-.24-.17-.44-.24-.61-1.51-3.78-3.55-6.43-4.58-7.63h0c.71-.67,1.44-1.04,2.12-1.06,1.61-.07,3.2,1.62,4.49,2.96.75.78,1.4,1.45,2.05,1.81v1.31s-.02.63-.66,1.28c-.39.39-.39,1.03,0,1.41.39.39,1.03.39,1.41,0,1.27-1.27,1.25-2.6,1.25-2.71V10c0-1.1.9-2,2-2s2,.9,2,2v14c0,.55.45,1,1,1s1-.45,1-1v-2c0-1.1.9-2,2-2s2,.9,2,2v2c0,.55.45,1,1,1s1-.45,1-1v-1c0-1.1.9-2,2-2s2,.9,2,2v2c0,.55.45,1,1,1s1-.45,1-1v-1c0-.24.26-.4.48-.49.62-.26,1.45-.17,1.82.2.71.71.71,1.37.71,2.29v5h0c0,1.91-.33,5.19-.97,7.76Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top 20% center;
    background-size: 60px;
    transition: all .4s;
    pointer-events: none
}

.table-wrapper.scrollable.hidden:after {
    opacity: 0
}

.display-404 {
    font-size: 12rem;
    line-height: 1
}

.display-404::after {
    background-color: currentColor;
    content: "";
    display: block;
    height: 2rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: calc(100% - 2rem);
    width: 2px
}

.pagination {
    width: 100%
}

.pagination__inner {
    align-items: center;
    display: flex;
    justify-content: center
}

.pagination__menu {
    align-items: center;
    display: flex;
    gap: .5rem;
    justify-content: flex-start;
    width: 100%
}

.pagination__list {
    align-items: center;
    display: flex;
    list-style: none;
    gap: .5rem;
    padding-left: 0
}

.pagination__list li {
    margin: 0
}

.page-numbers {
    align-items: center;
    background-color: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0 .5rem;
    text-align: center;
    text-decoration: none;
    transition: border-color .3s ease, color .3s ease, transform .2s ease
}

.page-numbers.current,
.page-numbers:focus,
.page-numbers:hover {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px
}

.page-numbers.next,
.page-numbers.prev {
    background-color: #dbb216;
    border-radius: 0;
    color: #000;
    height: 2.25rem;
    overflow: hidden;
    padding: 0;
    transition: background-color .3s ease, color .3s ease, transform .2s ease;
    width: 2.25rem
}

.page-numbers.next:focus,
.page-numbers.next:hover,
.page-numbers.prev:focus,
.page-numbers.prev:hover {
    background-color: #b16b2b
}

.page-numbers.next[disabled],
.page-numbers.prev[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .2
}

.page-numbers.next:hover .page-numbers__icon {
    animation: pagination-icon-animate 1.5s ease .2s
}

.page-numbers.prev:hover .page-numbers__icon {
    animation: pagination-icon-animate-left 1.5s ease .2s
}

@keyframes pagination-icon-animate {
    0% {
        transform: translateX(0)
    }

    30% {
        transform: translateX(32px) scale(.5)
    }

    30.5% {
        transform: translateX(-32px)
    }

    60% {
        transform: translateX(0)
    }
}

@keyframes pagination-icon-animate-left {
    0% {
        transform: translateX(0)
    }

    30% {
        transform: translateX(-32px) scale(.5)
    }

    30.5% {
        transform: translateX(32px)
    }

    60% {
        transform: translateX(0)
    }
}

.theme-toggle {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 1.5rem;
    display: flex;
    height: 1.5rem;
    position: relative;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    width: 3rem
}

.theme-toggle:hover {
    background-color: #dbb216;
    border-color: #dbb216;
    color: #fff
}

.theme-toggle__switch {
    display: grid;
    height: 1.375rem;
    left: 0;
    place-items: center;
    position: absolute;
    transition: transform .2s ease;
    top: 0;
    width: 1.375rem
}

.theme-toggle__switch::after {
    border-radius: 50%;
    background-color: currentColor;
    content: "";
    display: block;
    height: .75rem;
    width: .75rem
}

[data-theme=dark] .theme-toggle__switch {
    transform: translateX(1.5rem)
}

.theme-toggle__icon {
    transition: opacity .2s ease
}

[data-theme=light] .theme-toggle__icon.is-sun {
    opacity: 0
}

[data-theme=dark] .theme-toggle__icon.is-moon {
    opacity: 0
}

@media (min-width:1200px) {

    p,
    ul {
        margin-bottom: 1.5rem
    }
}

li {
    margin-bottom: .5rem
}

sub,
sup {
    position: relative;
    font-size: .875em;
    line-height: 0;
    padding: 0 .254em;
    vertical-align: baseline
}

sup {
    top: -.75em
}

sub {
    bottom: -.75em
}

blockquote {
    font-family: zuume-edge, serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin: 2rem 0
}

@media (min-width:1200px) {
    blockquote {
        font-size: 3.75rem;
        margin: 3rem 0
    }
}

blockquote:first-child {
    margin-top: 0
}

@media (min-width:1200px) {
    .blockquote--lg {
        font-size: 4.5rem
    }
}

.datetime,
time {
    font-size: .875rem
}

@media (min-width:1200px) {

    .datetime,
    time {
        font-size: 1rem
    }
}

.editorial :last-child {
    margin-bottom: 0
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 6.25rem
    }
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 3.75rem
    }
}

@media (min-width:1200px) {

    .h3,
    h3 {
        font-size: 2.5rem
    }
}

@media (min-width:1200px) {

    .h4,
    h4 {
        font-size: 1.875rem
    }
}

@media (min-width:1200px) {

    .h5,
    h5 {
        font-size: 1.5rem
    }
}

@media (min-width:1200px) {

    .h6,
    h6 {
        font-size: 1.375rem
    }
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-lg,
.display-xl {
    font-family: zuume-edge, serif;
    font-weight: 600;
    line-height: .9
}

.display-xl {
    font-size: 6rem
}

@media (min-width:768px) {
    .display-xl {
        font-size: 10rem
    }
}

@media (min-width:1200px) {
    .display-xl {
        font-size: 12.5rem
    }
}

@media (min-width:1400px) {
    .display-xl {
        font-size: 25rem
    }
}

.display-lg {
    font-size: 5rem
}

@media (min-width:768px) {
    .display-lg {
        font-size: 8rem
    }
}

@media (min-width:1400px) {
    .display-lg {
        font-size: 12.5rem
    }
}

@media (min-width:992px) {
    .display-1 {
        font-size: 5rem
    }
}

@media (min-width:1200px) {
    .display-1 {
        font-size: 6.25rem
    }
}

@media (min-width:1200px) {
    .display-2 {
        font-size: 3.75rem
    }
}

@media (min-width:1200px) {
    .display-3 {
        font-size: 2.5rem
    }
}

@media (min-width:1200px) {
    .display-4 {
        font-size: 2rem
    }
}

.subheading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.list-style-none {
    list-style: none;
    padding-left: 0
}

.list-highlight {
    display: inline-flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0
}

.list-highlight li {
    border-bottom: 1px solid currentColor;
    margin-bottom: 0;
    padding: .5rem 0
}

.font-sans {
    font-family: montserrat, sans-serif
}

.font-display {
    font-family: zuume-edge, serif
}

.text-xsmall {
    font-size: .675rem
}

@media (min-width:1400px) {
    .text-xsmall {
        font-size: .75rem
    }
}

.text-small {
    font-size: .75rem
}

@media (min-width:1400px) {
    .text-small {
        font-size: .875rem
    }
}

.text-medium {
    font-size: 1.125rem
}

@media (min-width:1400px) {
    .text-medium {
        font-size: 1.375rem
    }
}

.text-large {
    font-size: 1.25rem
}

@media (min-width:1400px) {
    .text-large {
        font-size: 1.5rem
    }
}

.fw-light {
    font-weight: 300
}

.fw-regular {
    font-weight: 400
}

.fw-medium {
    font-weight: 500
}

.fw-semibold {
    font-weight: 500
}

.fw-bold {
    font-weight: 600
}

.fw-xbold {
    font-weight: 700
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.leading-xtight {
    line-height: .8
}

.leading-tight {
    line-height: 1.1
}

.leading-medium {
    line-height: 1.4
}

.text-uppercase {
    text-transform: uppercase
}

.sg-subheader {
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    margin-bottom: 2rem;
    padding-bottom: .5rem
}

.sg-swatch {
    display: inline-block;
    border-radius: 2px;
    height: 2.5rem;
    margin-right: 1rem;
    width: 2.5rem
}

.sg-swatch.bg-white {
    border: 1px solid currentColor
}

.section {
    margin: 4rem 0;
    position: relative
}

@media (min-width:1200px) {
    .section {
        margin: 6rem 0
    }
}

.section:first-child {
    margin-top: 8rem
}

@media (min-width:1200px) {
    .section:first-child {
        margin-top: 14rem
    }
}

.section--lg {
    margin: 6rem 0
}

@media (min-width:1200px) {
    .section--lg {
        margin: 9rem 0
    }
}

.section--padded {
    padding: 4rem 0
}

@media (min-width:1200px) {
    .section--padded {
        padding: 6rem 0
    }
}

.section__bg {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute
}

.section__bg+.container-xxl {
    position: relative
}

.section__inner {
    padding: 2.5rem 1.5rem
}

@media (min-width:1200px) {
    .section__inner {
        padding: 6.25rem 0
    }
}

.has-border-top {
    padding-top: 1.5rem;
    position: relative
}

@media (min-width:1200px) {
    .has-border-top {
        padding-top: 3rem
    }
}

.has-border-top::before {
    background-color: currentColor;
    content: "";
    display: block;
    height: 1px;
    left: 1.125rem;
    margin: auto;
    max-width: calc(90rem - 40px);
    position: absolute;
    right: 1.125rem;
    top: 0
}

@media (min-width:1200px) {
    .has-border-top::before {
        left: .75rem;
        right: .75rem
    }
}

.accordion-item {
    border-top: 1px solid currentColor;
    position: relative
}

.accordion-item__panel {
    height: 0;
    overflow: hidden;
    transition: height ease .3s
}

.is-open .accordion-item__panel {
    height: auto
}

.accordion-item__content {
    padding-bottom: 2rem;
    padding-right: 2.5rem
}

.accordion-item__content :last-child {
    margin-bottom: 0
}

.accordion-item__button {
    display: flex;
    font-weight: 500;
    gap: 2rem;
    justify-content: space-between;
    padding: 2rem 0;
    text-align: left;
    width: 100%
}

.accordion-item__button:focus,
.accordion-item__button:hover {
    text-decoration: underline
}

.accordion-item__icon {
    flex-shrink: 0
}

.accordion-item__icon svg {
    transition: transform .2s ease;
    transform: rotate(45deg)
}

.is-open .accordion-item__icon {
    background-color: #b16b2b
}

.is-open .accordion-item__icon svg {
    transform: rotate(0)
}

@media (min-width:992px) {
    .accordion-item--2-column {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .accordion-item--2-column .accordion-item__content {
        padding-bottom: 6rem;
        padding-top: 2rem
    }

    .accordion-item--2-column .accordion-item__icon {
        bottom: 2rem;
        position: absolute;
        right: 0
    }
}

.blockquote-carousel {
    padding-bottom: 3rem
}

@media (min-width:768px) {
    .blockquote-carousel .flickity-control {
        right: 58.3333333333%
    }
}

.blockquote-carousel__cell {
    margin-left: 1.5rem;
    width: 100%
}

.card {
    display: flex;
    flex-direction: column;
    height: calc(100% - 4rem);
    margin: 0 0 4rem;
    position: relative
}

.card:focus-within .card__link,
.card:hover .card__link {
    color: inherit;
    text-decoration: none
}

.card:focus-within .card__image,
.card:hover .card__image {
    transform: scale(1.1)
}

.card__media {
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%
}

.card__image {
    transform: scale(1);
    transition: transform .3s ease
}

@media (min-width:768px) {
    .card__body {
        display: flex;
        flex-direction: column;
        flex: 1
    }
}

.card__date {
    display: block;
    margin-bottom: .375rem
}

.card__title {
    font-family: zuume-edge, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    margin: .5rem 0 1rem 0;
    text-transform: uppercase
}

@media (min-width:1200px) {
    .card__title {
        font-size: 2.5rem
    }
}

.card__link {
    color: inherit;
    text-decoration: none
}

.card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.card__footer {
    margin-top: auto
}

.card__meta {
    position: relative;
    z-index: 10
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-bottom: 1rem
}

.post-tag {
    border: 1px solid currentColor;
    color: inherit;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .25rem .5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s, color .2s ease;
    white-space: nowrap
}

.post-tag:focus,
.post-tag:hover {
    background-color: #dbb216;
    border-color: #dbb216;
    color: #000
}

@media (min-width:768px) {
    .card--featured {
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

@media (min-width:768px) {
    .card--featured .card__body {
        padding-top: 0;
        width: 30%
    }
}

@media (min-width:768px) {
    .card--featured .card__media {
        width: 60%
    }
}

@media (min-width:768px) {
    .card--featured .card__body {
        flex: 0 1 auto
    }
}

.card--featured .card__footer {
    margin-top: 1rem
}

.carousel {
    padding-bottom: 0
}

.carousel .flickity-page-dots {
    bottom: 1.5rem;
    left: 1.5rem
}

@media (min-width:1200px) {
    .carousel .flickity-page-dots {
        bottom: 4.675rem;
        left: 4rem
    }
}

.carousel .flickity-control {
    bottom: 1.5rem;
    right: 1.5rem
}

@media (min-width:1200px) {
    .carousel .flickity-control {
        bottom: 4rem;
        right: 4rem
    }
}

@media (min-width:992px) {
    .carousel--has-ctagroup .flickity-control {
        right: 50%
    }
}

@media (min-width:992px) {
    .carousel--align-right .flickity-control {
        left: 50%
    }
}

.carousel__cell {
    width: 100%
}

.is-fade .carousel__cell {
    opacity: 0 !important;
    transition: opacity .5s ease-in-out !important
}

.is-fade .carousel__cell.is-selected {
    opacity: 1 !important
}

[data-carousel=carousel].carousel--is-ready .carousel__cell {
    height: 100%
}

.carousel__cta-group {
    margin-top: 2rem
}

@media (min-width:1200px) {
    .carousel__cta-group {
        margin-top: -8rem;
        pointer-events: none
    }
}

@media (min-width:1400px) {
    .carousel__cta-group {
        margin-top: -11rem
    }
}

.carousel-item {
    min-height: 30rem;
    position: relative
}

@media (min-width:992px) {
    .carousel-item {
        min-height: 40rem
    }
}

[data-carousel=carousel].carousel--is-ready .carousel-item {
    height: 100%
}

.carousel-item__media {
    inset: 0;
    position: absolute
}

.carousel-item__media::after {
    background: linear-gradient(238deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55) 100%);
    content: "";
    display: block;
    inset: 0;
    position: absolute
}

.carousel--align-right .carousel-item__media::after {
    background: linear-gradient(100deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .55) 85%)
}

.carousel-item__content {
    height: 100%;
    padding: 6rem 1.5rem;
    position: relative
}

@media (min-width:1200px) {
    .carousel-item__content {
        display: flex;
        flex-direction: column;
        padding: 6rem 4rem
    }
}

.carousel-item__content .list-highlight {
    width: 100%
}

@media (min-width:992px) {
    .carousel-item__content .list-highlight {
        width: 75%
    }
}

.carousel-item__link {
    text-decoration: none
}

.flickity-page-dots {
    bottom: .75rem;
    left: 0;
    justify-content: flex-start;
    position: absolute;
    width: auto
}

.flickity-page-dot {
    background-color: rgba(255, 255, 255, .25);
    margin: 0 .375rem;
    transition: background-color .2s ease
}

[data-theme=light] .flickity-page-dot {
    background-color: #f0ede8
}

.flickity-page-dot.is-selected {
    background-color: #dbb216
}

.flickity-page-dot:focus,
.flickity-page-dot:hover {
    background-color: #b16b2b
}

.flickity-control {
    align-items: center;
    bottom: 0;
    display: flex;
    gap: .625rem;
    position: absolute;
    right: 0
}

.flickity-button {
    background-color: #dbb216;
    border-radius: 0;
    color: #000;
    overflow: hidden;
    transition: background-color .2s ease, color .2s ease
}

.flickity-button:focus,
.flickity-button:hover {
    background-color: #b16b2b
}

.flickity-button:focus {
    box-shadow: none
}

.flickity-prev-next-button {
    bottom: unset;
    height: 2rem;
    position: relative;
    top: unset;
    transform: none;
    width: 2rem
}

.flickity-prev-next-button.previous {
    left: unset
}

.flickity-prev-next-button.next {
    right: unset
}

.chart-heading {
    border-top: 1px solid currentColor;
    margin-bottom: .25rem;
    padding-top: 1.25rem
}

.chart__container {
    aspect-ratio: 2/1;
    position: relative;
    margin: auto;
    width: 100%
}

bm-chart-doughnut .chart__container {
    aspect-ratio: 1/1;
    max-width: 20rem
}

@media (min-width:1400px) {
    bm-chart-doughnut .chart__container {
        max-width: 32.5rem
    }
}

.chart__canvas {
    height: auto;
    max-width: 100%
}

.chart__legend {
    font-size: .75rem;
    font-weight: 500;
    gap: 1rem 2rem;
    list-style: none;
    margin: 1rem auto 0;
    padding: 0
}

@media (min-width:576px) {
    .chart__legend {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:992px) {
    .chart__legend {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (min-width:1200px) {
    .chart__legend {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem 2rem
    }
}

@media (min-width:992px) {
    bm-chart-doughnut .chart__legend {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        max-width: 30rem;
        width: 100%
    }
}

.chart__legend__item {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    line-height: 1.2;
    margin-bottom: 0
}

@media (min-width:768px) {
    .chart__legend__item {
        gap: .75rem
    }
}

.chart__legend__swatch {
    border: 1px solid #fff;
    flex-shrink: 0;
    height: 1.125rem;
    width: 1.25rem
}

[data-theme=light] .chart__legend__swatch {
    border-color: #d3d3d3
}

bm-chart-line .chart__legend__swatch {
    border: 0;
    height: .25rem
}

bm-chart-bar {
    display: block;
    margin: 3rem 0
}

@media (min-width:1200px) {
    bm-chart-bar {
        margin-top: 5rem
    }
}

bm-chart-doughnut {
    display: block;
    margin: 3.5rem 0
}

@media (min-width:992px) {
    bm-chart-doughnut {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr 1fr
    }
}

bm-chart-line {
    display: block;
    margin: 3rem 0
}

@media (min-width:1200px) {
    bm-chart-line {
        margin-top: 5rem
    }
}

:root {
    --content-highlight-offset: 2rem
}

@media (min-width:768px) {
    :root {
        --content-highlight-offset: 4rem
    }
}

@media (min-width:1200px) {
    :root {
        --content-highlight-offset: 8rem
    }
}

.content-highlight__block {
    margin-bottom: var(--content-highlight-offset)
}

.content-highlight__block.is-bottom {
    margin-bottom: 0
}

@media (min-width:768px) {
    .content-highlight__block.is-bottom {
        margin-top: var(--content-highlight-offset);
        padding: var(--content-highlight-offset) 2rem 0
    }
}

@media (min-width:768px) {
    .content-highlight__media.is-offset {
        transform: translateY(var(--content-highlight-offset))
    }
}

@media (min-width:768px) {
    .content-highlight__media.is-offset--notext {
        margin-top: calc(-1 * var(--content-highlight-offset))
    }
}

[data-animate=content-highlight] .content-highlight__media {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s ease
}

[data-animate=content-highlight] .content-highlight__media.is-secondary {
    transition-delay: .4s;
    transition-timing-function: ease
}

[data-animate=content-highlight].animate-in .content-highlight__media {
    clip-path: inset(0 0 0 0)
}

.cta-tile {
    height: 100%;
    display: grid;
    pointer-events: all;
    position: relative
}

.cta-tile:focus-within .cta-tile__image,
.cta-tile:hover .cta-tile__image {
    transform: scale(1.1)
}

.cta-tile__content,
.cta-tile__media {
    grid-row: 1;
    grid-column: 1
}

.cta-tile__media {
    overflow: hidden;
    position: relative
}

.cta-tile__media::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, 0) 100%);
    content: "";
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1
}

.cta-tile__image {
    transform: scale(1);
    transition: transform .3s ease
}

.cta-tile__ratio {
    padding-top: 56.25%
}

@media (min-width:1200px) {
    .cta-tile__ratio {
        padding-top: 100%
    }
}

.cta-tile__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 1
}

@media (min-width:1400px) {
    .cta-tile__content {
        padding: 2rem 2.5rem
    }
}

.contact-block__link {
    display: inline-flex;
    gap: 0 .5rem;
    text-decoration: none
}

.contact-block__link:focus,
.contact-block__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.contact-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem
}

@media (min-width:768px) {
    .contact-card {
        height: calc(100% - 1.5rem)
    }
}

@media (min-width:1200px) {
    .contact-card {
        min-height: 20rem;
        padding: 2rem
    }
}

.document-feed {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch
}

.document-feed::-webkit-scrollbar {
    background-color: #000;
    height: .5rem;
    width: .5rem
}

.document-feed::-webkit-scrollbar-thumb {
    background-color: #fff
}

.document-item {
    display: grid;
    font-size: .875rem;
    grid-template-columns: 120px minmax(200px, auto) 100px;
    position: relative;
    overflow-wrap: break-word
}

@media (min-width:768px) {
    .document-item {
        font-size: 1rem;
        grid-template-columns: 1fr 1fr 1fr
    }
}

.document-item--nodate {
    grid-template-columns: minmax(200px, auto) 120px
}

@media (min-width:768px) {
    .document-item--nodate {
        grid-template-columns: none;
        grid-auto-columns: minmax(0, 1fr);
        grid-auto-flow: column
    }
}

.document-item>div {
    border-bottom: 1px solid currentColor;
    padding: .875rem 1rem
}

.document-item>div:first-child {
    padding-left: 0
}

.document-item>div:last-child {
    padding-right: 0
}

@media (min-width:768px) {
    .document-item>div {
        grid-row: 1
    }
}

.document-item:focus-within,
.document-item:hover {
    background-color: rgba(219, 178, 22, .3)
}

.document-item:focus-within .document-item__link,
.document-item:hover .document-item__link {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document-item__link {
    text-decoration: none
}

.document-item__link:focus,
.document-item__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document-item__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.document-card {
    background-color: #2f2b2b;
    color: #fff;
    font-size: .875rem;
    height: calc(100% - 2rem);
    margin-bottom: 2rem;
    padding: 1.5rem;
    position: relative;
    transition: background-color .3s ease, color .3s ease
}

.document-card:focus-within,
.document-card:hover {
    background-color: #dbb216;
    color: #000
}

.document-card:focus-within .document-card__date,
.document-card:hover .document-card__date {
    color: inherit
}

.document-card__date {
    color: #dbb216
}

.document-card__link {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: .25rem;
    justify-content: space-between;
    text-decoration: none;
    width: 100%
}

.document-card__link:focus,
.document-card__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.document-card__link .icon {
    flex-shrink: 0
}

.document-card__content {
    padding-top: .75rem
}

.scrolltable {
    --cell-width: 340px;
    display: block;
    position: relative
}

.scrolltable__track {
    overflow-x: scroll;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.scrolltable__track::-webkit-scrollbar {
    display: none
}

.scrolltable__table {
    margin: 0;
    table-layout: fixed
}

.scrolltable__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: inherit;
    border: 0;
    color: inherit;
    height: 2rem;
    padding: 0;
    position: absolute;
    top: .25rem;
    transition: transform .3s ease;
    transform: scale(1);
    width: 2rem;
    z-index: 1
}

.scrolltable__button:focus,
.scrolltable__button:hover {
    color: #dbb216
}

.scrolltable__button[disabled] {
    cursor: not-allowed;
    opacity: .5
}

.scrolltable__button[data-prev] {
    left: calc(var(--cell-width, 340px))
}

@media (min-width:1400px) {
    .scrolltable__button[data-prev] {
        left: 18rem
    }
}

.scrolltable__button[data-next] {
    right: 0
}

.scrolltable__button>.icon {
    pointer-events: none
}

.scrolltable__cell {
    border-bottom: 1px solid #fff;
    font-weight: 400;
    line-height: 1;
    min-height: 3rem;
    padding: .625rem .875rem;
    text-align: center;
    transition: color .1s ease;
    vertical-align: top;
    white-space: nowrap;
    width: 21.25rem;
    width: var(--cell-width, 340px)
}

[data-theme=light] .scrolltable__cell {
    border-bottom-color: #000
}

.scrolltable__cell[scope=col] {
    font-weight: 600;
    padding: .875rem
}

.scrolltable__cell[scope=row] {
    background-color: #211f1f;
    left: 0;
    line-height: 1.5;
    position: sticky;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    z-index: 1
}

[data-theme=light] .scrolltable__cell[scope=row] {
    background-color: inherit
}

@media (min-width:1400px) {
    .scrolltable__cell[scope=row] {
        width: 20rem
    }
}

.scrolltable__cell.is-invisible {
    color: transparent;
    background: 0 0;
    pointer-events: none
}

.scrolltable__docs {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0;
    min-height: 1.5rem;
    padding: 0;
    justify-content: center
}

.scrolltable__docs li {
    margin: 0 .375rem
}

.scrolltable__doclink {
    color: #dbb216;
    display: block;
    font-weight: 600;
    text-underline-offset: 3px;
    text-decoration: underline;
    text-decoration-thickness: 1px
}

.scrolltable__doclink:focus,
.scrolltable__doclink:hover {
    text-decoration: none
}

.events-carousel.flickity-enabled {
    padding-bottom: 4rem
}

.events-carousel__cell {
    overflow: hidden;
    width: 100%
}

.event-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between
}

.addeventatc.btn {
    background-color: #dbb216;
    background-image: none;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    color: #000;
    display: inline-flex;
    font-family: montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
    padding: .5rem .9375rem;
    text-shadow: none !important;
    z-index: 20
}

.addeventatc.btn:hover {
    background-color: #b16b2b;
    font-size: .75rem;
    text-decoration: none
}

.addeventatc.btn .copyx {
    display: none
}

.addeventatc.btn .addeventatc_dropdown {
    padding: .5rem 0;
    text-transform: none
}

.addeventatc.btn .addeventatc_icon {
    display: none
}

.events {
    border-top: 1px solid currentColor
}

.event-item {
    border-bottom: 1px solid currentColor;
    display: grid;
    padding: 1rem 0;
    position: relative
}

@media (min-width:768px) {
    .event-item {
        grid-template-columns: 2.5fr 1fr;
        padding: 1.5rem 0
    }
}

@media (min-width:1200px) {
    .event-item {
        padding: 1.5rem 0 1.25rem
    }
}

.event-item__meta {
    margin-top: .5rem
}

.event-item__link {
    text-decoration: none
}

.event-item__link:focus,
.event-item__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.addeventatc {
    visibility: hidden
}

.addeventatc.icon-link {
    background-color: transparent;
    border: 0;
    box-shadow: none !important;
    color: inherit !important;
    display: flex;
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    padding: 0;
    text-shadow: none !important;
    z-index: 10
}

@media (min-width:1200px) {
    .addeventatc.icon-link {
        font-size: 1rem
    }
}

.addeventatc.icon-link:hover {
    background-color: transparent;
    font-size: 1rem;
    text-decoration: underline
}

.addeventatc.icon-link .copyx {
    display: none
}

.addeventatc.icon-link .addeventatc_dropdown {
    padding: .5rem 0
}

.addeventatc.icon-link .addeventatc_icon {
    display: none
}

.tile {
    min-height: 30rem;
    display: grid
}

@media (min-width:768px) {
    .tile {
        height: 100%
    }
}

@media (min-width:1400px) {
    .tile {
        min-height: 40rem
    }
}

.tile:focus-within .tile__image,
.tile:hover .tile__image {
    transform: scale(1.1)
}

.tile:not(.tile--toggle):focus-within .btn,
.tile:not(.tile--toggle):hover .btn {
    background-color: #b16b2b
}

.tile__content,
.tile__media,
.tile__panel {
    grid-column: 1;
    grid-row: 1
}

.tile__media {
    max-height: 42.5rem;
    overflow: hidden;
    position: relative
}

.tile__media::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .6) 60%);
    content: "";
    inset: 0;
    position: absolute
}

.tile__image {
    transform: scale(1);
    transition: transform .3s ease
}

.tile__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 6rem 1.25rem 2.5rem;
    position: relative;
    z-index: 1
}

@media (min-width:992px) {
    .tile__content {
        padding: 4rem 2rem 2.5rem
    }
}

@media (min-width:1400px) {
    .tile__content {
        padding-bottom: 4rem;
        padding-top: 14rem
    }
}

.tile__link {
    text-decoration: none
}

.tile__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.tile--toggle {
    position: relative
}

.tile--toggle .tile__content {
    justify-content: center;
    padding: 2.5rem
}

@media (min-width:1400px) {
    .tile--toggle .tile__content {
        padding: 4rem
    }
}

.tile--toggle .tile__panel {
    border: 1px solid #fff;
    align-items: center;
    display: flex;
    height: 100%;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

@media (min-width:1400px) {
    .tile--toggle .tile__panel {
        padding: 4rem 4rem 8rem
    }
}

.tile--toggle .tile__control__icon {
    transition: transform .3s ease
}

.tile--toggle.is-open .tile__panel {
    opacity: 1;
    pointer-events: all
}

.tile--toggle.is-open .tile__control__icon {
    transform: rotate(45deg)
}

.tile__control {
    display: flex;
    bottom: 2rem;
    justify-content: center;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 3
}

@media (min-width:1400px) {
    .tile__control {
        bottom: 5rem
    }
}

.job-listing__body {
    border-bottom: 1px solid currentColor
}

.job-listing__row {
    border-top: 1px solid currentColor
}

@media (min-width:768px) {
    .job-listing__row {
        display: grid;
        grid-template-columns: 3.25fr 1fr 1fr 1fr 1fr
    }
}

.job-listing__row>div {
    margin: .875rem 0
}

@media (min-width:768px) {
    .job-listing__row>div {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .job-listing__row>div:first-child {
        padding-left: 0
    }

    .job-listing__row>div:last-child {
        padding-right: 0
    }
}

.job-listing__row--header {
    border: 0
}

@media (max-width:767.98px) {
    .job-listing__row--header {
        display: none
    }
}

.job-listing__row--header>div {
    font-weight: 600
}

.job-feed__title {
    display: block;
    margin-bottom: .5rem;
    text-decoration: none
}

.job-feed__title:focus,
.job-feed__title:hover {
    color: #dbb216;
    text-decoration: underline;
    text-underline-offset: 4px
}

@media (min-width:768px) {
    .job-meta {
        display: grid;
        gap: 0 1rem;
        grid-template-columns: 1fr 1fr
    }
}

.job-meta>div {
    border-bottom: 1px solid #fff;
    display: flex;
    gap: .5rem;
    padding: .25rem 0
}

.job-meta dt {
    font-weight: 400;
    margin-bottom: 0
}

.job-meta dd {
    font-weight: 600;
    margin-bottom: 0
}

.loader {
    animation: loading_rotation 1s linear infinite;
    border: 5px solid #dbb216;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: block;
    height: 2.5rem;
    margin: 2rem auto;
    width: 2.5rem
}

@keyframes loading_rotation {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.hero {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 30rem;
    padding: 14rem 0 4rem;
    position: relative
}

[data-theme=light] .hero {
    background: 0 0
}

.hero::before {
    background: linear-gradient(20deg, transparent 45%, #b16b2b 120%);
    content: "";
    display: block;
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1
}

.hero--no-gradient::before {
    content: none
}

.hero__bg {
    inset: 0;
    pointer-events: none;
    position: absolute
}

.hero__bg::after,
.hero__bg::before {
    content: "";
    display: block;
    inset: 0;
    position: absolute
}

.hero__bg::before {
    background-image: linear-gradient(235deg, rgba(0, 0, 0, 0) 50%, #000 100%);
    z-index: 0
}

.hero__bg::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #000 100%);
    z-index: 2
}

.hero__image {
    -o-object-position: bottom center;
    object-position: bottom center;
    pointer-events: none
}

@media (min-width:992px) {
    .hero__image {
        -o-object-position: bottom right;
        object-position: bottom right
    }

    .op-bottom-left .hero__image {
        -o-object-position: bottom left;
        object-position: bottom left
    }

    .op-bottom-center .hero__image {
        -o-object-position: bottom center;
        object-position: bottom center
    }

    .op-bottom-right .hero__image {
        -o-object-position: bottom right;
        object-position: bottom right
    }

    .op-left .hero__image {
        -o-object-position: left center;
        object-position: left center
    }

    .op-center .hero__image {
        -o-object-position: center;
        object-position: center
    }

    .op-right .hero__image {
        -o-object-position: right center;
        object-position: right center
    }

    .op-top-left .hero__image {
        -o-object-position: top left;
        object-position: top left
    }

    .op-top-center .hero__image {
        -o-object-position: top center;
        object-position: top center
    }

    .op-top-right .hero__image {
        -o-object-position: top right;
        object-position: top right
    }
}

.hero__image--fg {
    inset: 0;
    position: absolute
}

@media (min-width:992px) {
    .hero__image--fg {
        z-index: 2
    }
}

.hero__content {
    text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    position: relative
}

@media (min-width:992px) {
    .hero__content {
        text-shadow: none
    }
}

.hero__body,
.hero__footer,
.hero__title {
    position: relative;
    z-index: 2
}

.hero--person {
    min-height: 0;
    padding-bottom: 0
}

@media (min-width:1200px) {
    .hero--has-image {
        min-height: 40rem
    }
}

@media (min-width:1400px) {
    .hero--has-image {
        min-height: 48rem
    }
}

@media (min-width:1200px) {
    .hero--sm {
        min-height: 30rem
    }
}

.hero--xl .hero__bg::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%)
}

@media (min-width:1400px) {
    .hero--xl {
        min-height: 75rem
    }
}

@media (min-width:100em) {
    .hero--xl {
        min-height: 85rem
    }
}

.split-heading {
    display: inline-flex;
    flex-direction: column;
    margin: 0;
    padding-right: 1rem
}

.split-heading span {
    display: block
}

.split-heading__title {
    padding: 0 1rem;
    z-index: 2
}

@media (min-width:768px) {
    .split-heading__title {
        padding: 0 4rem
    }
}

@media (min-width:1200px) {
    .split-heading__title {
        padding-right: 8rem;
        z-index: 1
    }
}

.split-heading__prefix {
    z-index: 2
}

@media (min-width:1200px) {
    .split-heading__prefix {
        margin-bottom: -1rem
    }
}

.split-heading__suffix {
    align-self: flex-end;
    position: relative;
    z-index: 3
}

@media (min-width:1200px) {
    .split-heading__suffix {
        margin-top: -1.5rem
    }
}

[data-animate=hero-parallax] .hero__bg,
[data-animate=hero] .hero__bg {
    opacity: 0;
    transition: opacity .3s ease
}

[data-animate=hero-parallax] .hero__title,
[data-animate=hero] .hero__title {
    opacity: 0;
    transition: opacity .6s ease .3s
}

[data-animate=hero-parallax] .split-heading__prefix,
[data-animate=hero-parallax] .split-heading__suffix,
[data-animate=hero-parallax] .split-heading__title,
[data-animate=hero] .split-heading__prefix,
[data-animate=hero] .split-heading__suffix,
[data-animate=hero] .split-heading__title {
    opacity: 0;
    transition: opacity 1s ease .3s
}

[data-animate=hero-parallax] .hero__body,
[data-animate=hero] .hero__body {
    opacity: 0;
    transition: opacity 1s ease .7s
}

[data-animate=hero-parallax].animate-in .hero__bg,
[data-animate=hero-parallax].animate-in .hero__body,
[data-animate=hero-parallax].animate-in .hero__title,
[data-animate=hero].animate-in .hero__bg,
[data-animate=hero].animate-in .hero__body,
[data-animate=hero].animate-in .hero__title {
    opacity: 1
}

[data-animate=hero-parallax].animate-in .split-heading__prefix,
[data-animate=hero-parallax].animate-in .split-heading__suffix,
[data-animate=hero-parallax].animate-in .split-heading__title,
[data-animate=hero].animate-in .split-heading__prefix,
[data-animate=hero].animate-in .split-heading__suffix,
[data-animate=hero].animate-in .split-heading__title {
    opacity: 1
}

.image-carousel {
    padding-bottom: 3rem
}

@media (max-width:767.98px) {
    .image-carousel .flickity-page-dots {
        left: 1.25rem
    }
}

@media (max-width:767.98px) {
    .image-carousel .flickity-control {
        right: 1.25rem
    }
}

.image-carousel .flickity-prev-next-button {
    height: 2rem;
    width: 2rem
}

.image-carousel__cell {
    overflow: hidden;
    width: 100%
}

.is-fade .image-carousel__cell {
    opacity: 0 !important;
    transition: opacity .8s ease-in-out !important
}

.is-fade .image-carousel__cell.is-selected {
    opacity: 1 !important
}

@media (min-width:576px) {
    .image-carousel--gallery .image-carousel__cell {
        margin-left: 1.5rem;
        width: 50%
    }

    .image-carousel--gallery .flickity-viewport {
        overflow: visible
    }
}

.image-carousel--gallery .flickity-control {
    left: 0;
    right: unset
}

.image-carousel--gallery .flickity-page-dots {
    bottom: .875rem;
    left: 6.25rem;
    right: 0
}

.image-carousel--gallery .flickity-page-dot {
    border-radius: 0;
    flex: 1 0 auto;
    height: 3px;
    margin: 0
}

.investorhighlight-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.post-list__item {
    margin-bottom: .75rem;
    padding: 0 0 1rem 0
}

.post-list__item:not(:last-child) {
    border-bottom: 1px solid currentColor
}

.post-list__link {
    display: block;
    text-decoration: none
}

@media (min-width:1200px) {
    .post-list__link {
        font-size: 1.125rem
    }
}

.post-list__link:focus,
.post-list__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

@media (min-width:992px) {
    .latest-results__item {
        width: 20%
    }
}

.result-card {
    margin-bottom: 1.5rem;
    position: relative
}

@media (min-width:576px) {
    .result-card {
        display: flex;
        flex-direction: column;
        height: calc(100% - 1.5rem)
    }
}

.result-card:focus-within .result-card__fauxlink,
.result-card:hover .result-card__fauxlink {
    text-decoration: underline
}

.result-card__link {
    line-height: 1;
    text-decoration: none
}

.result-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.result-card__icon {
    height: 8.75rem;
    margin: 0 auto 2rem;
    width: 8.75rem
}

@media (min-width:1200px) {
    .result-card__icon {
        margin-bottom: 3rem
    }
}

.result-card__fauxlink {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase
}

.logo-carousel {
    padding-bottom: 3rem
}

@media (min-width:576px) {
    .logo-carousel {
        margin: 0 -.75rem
    }

    .logo-carousel .flickity-page-dots {
        left: .75rem
    }

    .logo-carousel .flickity-control {
        right: .75rem
    }
}

.logo-carousel__cell {
    overflow: hidden;
    width: 100%
}

@media (min-width:576px) {
    .logo-carousel__cell {
        padding: 0 .75rem;
        width: 50%
    }
}

@media (min-width:768px) {
    .logo-carousel__cell {
        width: 33.3333333333%
    }
}

.logo-carousel__item {
    aspect-ratio: 4/3;
    background-color: #211f1f;
    display: grid;
    place-items: center;
    transition: background-color .3s ease-in-out
}

.logo-carousel__item:focus,
.logo-carousel__item:hover {
    background-color: #fff
}

.logo-carousel__item:focus .logo-carousel__image:first-child,
.logo-carousel__item:hover .logo-carousel__image:first-child {
    opacity: 0
}

.logo-carousel__item:focus .logo-carousel__image:last-child,
.logo-carousel__item:hover .logo-carousel__image:last-child {
    opacity: 1
}

.logo-carousel__image {
    grid-column: 1;
    grid-row: 1;
    max-width: 15rem;
    width: 100%;
    transition: opacity .3s ease-in-out
}

@media (min-width:992px) {
    .logo-carousel__image {
        max-width: 20rem
    }
}

.logo-carousel__image:last-child {
    opacity: 0
}

.office-card {
    padding: 2rem;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .office-card {
        height: calc(100% - 1.5rem)
    }
}

@media (min-width:1200px) {
    .office-card {
        padding-top: 4rem
    }
}

.office-card__inner {
    margin-bottom: 2rem
}

@media (min-width:768px) {
    .office-card__inner {
        margin-bottom: 0
    }
}

.office-card__inner :last-child {
    margin-bottom: 0
}

.operations-carousel {
    margin: 0 -.375rem;
    padding-bottom: 4rem
}

.operations-carousel .flickity-control {
    left: .375rem;
    right: unset
}

.operations-carousel .flickity-button:disabled {
    opacity: 0
}

.operations-carousel__cell {
    padding: 0 .375rem;
    width: 100%
}

@media (min-width:768px) {
    .operations-carousel__cell {
        width: 33.3333333333%
    }
}

.operations-tile {
    position: relative;
    transition: clip-path .3s ease
}

@media (min-width:768px) {
    .operations-tile {
        clip-path: inset(20% 0 20% 0)
    }

    .is-selected .operations-tile {
        clip-path: inset(0 0 0 0)
    }
}

.operations-tile:focus-within,
.operations-tile:hover {
    clip-path: inset(0 0 0 0)
}

.operations-tile__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 72.71%, #000 102.14%);
    content: "";
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1
}

.operations-tile__media+.operations-tile__content {
    inset: 0;
    position: absolute
}

.operations-tile__ratio {
    padding-top: 100%
}

@media (min-width:768px) {
    .operations-tile__ratio {
        padding-top: 150%
    }
}

.operations-tile__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 4.25rem 1.25rem 1.25rem;
    z-index: 1
}

.operations-tile__link {
    color: inherit;
    text-decoration: none
}

.operations-tile__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.operations-tile__icon-btn {
    background-color: #dbb216;
    bottom: 1.25rem;
    color: #000;
    right: 1.25rem;
    position: absolute
}

@media (min-width:992px) {
    .operations-listing {
        margin-top: -2.25rem
    }
}

.operations-map__image {
    width: 100%
}

.operations-map__pin {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 1rem;
    justify-content: center;
    left: var(--left, 0);
    position: absolute;
    top: var(--top, 0);
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition: background-color .1s ease, transform .3s ease;
    width: 1rem
}

@media (min-width:1200px) {
    .operations-map__pin {
        height: 2rem;
        width: 2rem
    }
}

.operations-map__pin:hover {
    background-color: #fff;
    transform: translate3d(-50%, -50%, 0) scale(1.1)
}

.operations-map__pin .icon {
    height: .5rem;
    width: .5rem
}

@media (min-width:1200px) {
    .operations-map__pin .icon {
        height: 1.25rem;
        width: 1.25rem
    }
}

.operations-legend {
    display: inline-flex;
    flex-direction: column
}

.operations-legend__item {
    align-items: center;
    display: flex;
    padding: .5rem 0
}

.operations-legend__item:not(:last-child) {
    border-bottom: 1px solid currentColor
}

.operations-legend__pin {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 1rem;
    justify-content: center;
    margin-right: 1.25rem;
    padding: .25rem;
    transition: background-color .1s ease;
    width: 1rem
}

@media (min-width:1200px) {
    .operations-legend__pin {
        height: 2rem;
        padding: .35rem;
        width: 2rem
    }
}

.operations-legend__pin .icon {
    height: 100%;
    width: 100%
}

.operation-panel {
    height: 100%
}

.operation-panel__image {
    align-items: center;
    display: flex;
    height: 20rem;
    justify-content: flex-end;
    overflow: hidden
}

@media (min-width:992px) {
    .operation-panel__image {
        height: 30rem
    }
}

@media (min-width:1200px) {
    .operation-panel__image {
        height: 100%
    }
}

.operation-panel__image>img {
    display: block;
    margin: auto;
    max-height: 100%;
    width: auto
}

.operation-panel__map {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    overflow: hidden
}

.operation-panel__map>img {
    display: block;
    height: 100%;
    margin: auto
}

.operation-details {
    list-style: none;
    padding-left: 0
}

.operation-details li:not(:last-child) {
    border-bottom: .5px solid currentColor;
    padding-bottom: .5rem
}

.operation-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    padding-left: 0
}

.operation-progress__phase {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 3rem;
    justify-content: center;
    opacity: .5;
    width: 3rem
}

.operation-progress__phase.is-active {
    opacity: 1
}

.operation-progress__icon {
    display: block;
    height: 100%;
    width: 100%
}

.switch {
    align-items: center;
    display: inline-flex;
    position: relative
}

.switch__input:checked+.switch__label .switch__toggle {
    border-color: #dbb216
}

.switch__input:checked+.switch__label .switch__toggle__icon {
    transform: translateX(1.5rem)
}

.switch__input:checked+.switch__label .switch__toggle__icon::after {
    background-color: #dbb216
}

.switch__label {
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    gap: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    min-height: 1.5rem;
    padding-right: 4rem;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap
}

.switch__toggle {
    border: 1px solid currentColor;
    border-radius: 1.5rem;
    flex-shrink: 0;
    height: 1.5rem;
    position: relative;
    transition: border-color .2s, color .2s ease;
    width: 3rem
}

.switch__toggle__icon {
    align-items: center;
    display: flex;
    height: 1.375rem;
    justify-content: center;
    transition: transform .2s ease;
    width: 1.375rem
}

.switch__toggle__icon::after {
    border-radius: 50%;
    background-color: currentColor;
    content: "";
    display: block;
    height: .75rem;
    width: .75rem
}

.person-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    position: relative
}

.person-card:focus-within .person-card__image,
.person-card:hover .person-card__image {
    transform: scale(1.1)
}

.person-card:focus-within .person-card__link,
.person-card:hover .person-card__link {
    color: inherit;
    text-decoration: none
}

.person-card:focus-within .cta,
.person-card:hover .cta {
    text-decoration: underline;
    text-underline-offset: 3px
}

.person-card:focus-within .cta__icon,
.person-card:hover .cta__icon {
    animation: cta-icon-animate-small 1.5s ease .2s
}

.person-card__media {
    overflow: hidden;
    position: relative;
    width: 100%
}

.person-card__image {
    transform: scale(1);
    transition: transform .3s ease
}

@media (min-width:768px) {
    .person-card__body {
        display: flex;
        flex-direction: column;
        flex: 1
    }
}

.person-card__content {
    padding: .75rem 0
}

.person-card__link {
    color: inherit;
    text-decoration: none
}

.person-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.person-card__footer {
    margin-top: auto
}

.promo {
    position: relative
}

.promo--has-media {
    padding: 12rem 0 4rem
}

@media (min-width:1200px) {
    .promo--has-media {
        padding-bottom: 6rem
    }
}

.promo__bg {
    inset: 0;
    position: absolute
}

.promo__bg::before {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, .4) 90%);
    content: "";
    display: block;
    inset: 0;
    position: absolute
}

.promo--align-right .promo__bg::before {
    background: linear-gradient(100deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, .4) 90%)
}

.promo__content {
    position: relative
}

[data-animate=promo] {
    clip-path: inset(1rem 1rem 1rem 1rem);
    transition: clip-path .6s ease .3s
}

@media (min-width:1200px) {
    [data-animate=promo] {
        clip-path: inset(4rem 4rem 4rem 4rem)
    }
}

[data-animate=promo].animate-in {
    clip-path: inset(0 0 0 0)
}

.quicklink-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    padding: 2rem
}

@media (min-width:1200px) {
    .quicklink-card {
        padding-top: 3rem
    }
}

.quicklink-card__icon {
    height: 7rem;
    margin-left: -1.75rem;
    margin-top: -1.75rem;
    width: 7rem
}

@media (min-width:1200px) {
    .quicklink-card__icon {
        height: 8.75rem;
        margin-left: -2.5rem;
        margin-top: -3rem;
        width: 8.75rem
    }
}

.quicklink-card__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%
}

.quicklink-card__summary {
    min-height: 7rem
}

.editorial .h2:not(:first-child),
.editorial .h3:not(:first-child),
.editorial .h4:not(:first-child),
.editorial h2:not(:first-child),
.editorial h3:not(:first-child),
.editorial h4:not(:first-child) {
    margin-top: 2rem
}

.richtext-media__content {
    margin-bottom: 4rem;
    padding: 0 1.25rem
}

.richtext-media__content :last-child {
    margin-bottom: 0
}

@media (min-width:992px) {
    .richtext-media__content {
        padding: 0;
        margin-bottom: 0
    }
}

@media (min-width:1200px) {
    .richtext-media__content {
        position: sticky;
        top: 9rem
    }
}

@media (min-width:992px) {
    .richtext-media__content.is-padded-top {
        padding-top: 2rem
    }
}

@media (min-width:1200px) {
    .richtext-media__content.is-padded-top {
        padding-top: 7rem
    }
}

[data-animate=rich-text-media] .richtext-media__clipped {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s ease
}

[data-animate=rich-text-media] .image-carousel,
[data-animate=rich-text-media] .richtext-media__embed {
    transform: scale(1.4);
    transition: transform 1.2s ease
}

[data-animate=rich-text-media].animate-in .richtext-media__clipped {
    clip-path: inset(0 0 0 0)
}

[data-animate=rich-text-media].animate-in .image-carousel,
[data-animate=rich-text-media].animate-in .richtext-media__embed {
    transform: scale(1)
}

.statistic {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem
}

@media (min-width:1200px) {
    .statistic {
        margin-bottom: 4rem
    }
}

.statistic__inner {
    align-items: baseline;
    color: inherit;
    display: flex;
    font-family: zuume-edge, serif;
    font-size: 4.375rem;
    font-variant-numeric: lining-nums proportional-nums;
    font-weight: 700;
    line-height: .9
}

@media (min-width:1200px) {
    .statistic__inner {
        font-size: 8.75rem
    }
}

.statistic__prefix span,
.statistic__prefix sub,
.statistic__prefix sup {
    font-size: 3.125rem
}

@media (min-width:1200px) {

    .statistic__prefix span,
    .statistic__prefix sub,
    .statistic__prefix sup {
        font-size: 6.25rem
    }
}

.statistic__prefix sub,
.statistic__prefix sup {
    bottom: unset;
    display: inline-flex;
    line-height: .9;
    padding: 0;
    top: unset
}

.statistic__suffix {
    align-items: center;
    display: inline-flex;
    font-size: 3.125rem
}

@media (min-width:1200px) {
    .statistic__suffix {
        font-size: 6.25rem
    }
}

.statistic__suffix sub,
.statistic__suffix sup {
    font-size: .75em;
    padding: 0 .05em
}

.statistic__suffix sup {
    top: -.4em
}

.statistic__suffix sub {
    bottom: -.25em
}

.statistic__icon-block {
    align-items: center;
    display: flex;
    gap: 1rem
}

.statistic__icon {
    align-items: center;
    background-color: transparent;
    border: 1px solid #dbb216;
    border-radius: 50%;
    fill: #000;
    flex-shrink: 0;
    display: flex;
    height: 6rem;
    justify-content: center;
    transition: background-color .3s ease, border-color .3s ease;
    width: 6rem
}

@media (min-width:1200px) {
    .statistic__icon {
        height: 7rem;
        width: 7rem
    }
}

.is-selected .statistic__icon {
    background-color: #dbb216;
    border-color: #dbb216
}

.statistic__icon svg {
    fill: currentColor;
    height: 100%;
    width: 100%
}

[data-animate=statistics] .statistic-row__item {
    opacity: 0;
    transform: translateY(4rem);
    transition: opacity .6s ease, transform .6s ease
}

[data-animate=statistics] .statistic-row__item:nth-child(2) {
    transition-delay: .2s
}

[data-animate=statistics] .statistic-row__item:nth-child(3) {
    transition-delay: .3s
}

[data-animate=statistics] .statistic-row__item:nth-child(4) {
    transition-delay: .4s
}

[data-animate=statistics] .statistic-row__item:nth-child(5) {
    transition-delay: .5s
}

[data-animate=statistics] .statistic-row__item:nth-child(6) {
    transition-delay: .6s
}

[data-animate=statistics] .statistic-row__item:nth-child(7) {
    transition-delay: .7s
}

[data-animate=statistics] .statistic-row__item:nth-child(8) {
    transition-delay: .8s
}

[data-animate=statistics] .statistic-row__item:nth-child(9) {
    transition-delay: .9s
}

[data-animate=statistics].animate-in .statistic-row__item {
    opacity: 1;
    transform: translateY(0)
}

bm-stickymenu~.section {
    scroll-margin-top: 120px
}

@media (min-width:992px) {
    bm-stickymenu~.section {
        scroll-margin-top: 148px
    }
}

.stickymenu-container {
    position: sticky;
    top: 5.75rem;
    z-index: 19
}

@media (min-width:992px) {
    .stickymenu-container {
        top: 8rem
    }

    .admin-bar .stickymenu-container {
        top: 10rem
    }
}

.stickymenu-inner {
    padding: 1.5rem;
    transition: padding .2s ease
}

@media (min-width:992px) {
    .stickymenu-inner {
        padding: 4rem 1.5rem
    }
}

@media (min-width:1200px) {
    .stickymenu-inner {
        padding: 5rem 0
    }

    .is-pinned .stickymenu-inner {
        padding: 3rem 0
    }
}

.stickymenu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0
}

@media (min-width:992px) {
    .stickymenu {
        flex-direction: row;
        position: relative
    }

    .stickymenu::before {
        background-color: #555;
        bottom: 0;
        content: "";
        display: block;
        height: .5rem;
        left: 0;
        position: absolute;
        width: 100%
    }
}

.stickymenu__item {
    flex: 1 0 auto;
    margin-bottom: 0;
    position: relative;
    z-index: 1
}

.stickymenu__link {
    border-bottom: .5rem solid transparent;
    display: block;
    font-weight: 700;
    padding: .5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: border-color .3s ease
}

.stickymenu__link.is-active,
.stickymenu__link:focus,
.stickymenu__link:hover {
    border-color: #dbb216
}

@media (min-width:1200px) {
    .stickymenu__link {
        font-size: 1.375rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
}

.stockquote__grid {
    border-top: 1px solid #fff;
    margin: .5rem 0
}

@media (min-width:768px) {
    .stockquote__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

.stockquote__list {
    margin-bottom: 0
}

.stockquote__list dd,
.stockquote__list dt {
    font-weight: 400;
    margin-bottom: 0;
    padding: .75rem 0
}

@media (min-width:768px) {
    .stockquote__list--right dt {
        padding-left: 33.3333333333%
    }

    .stockquote__list--right dd {
        text-align: right
    }
}

.stockquote__item {
    border-bottom: 1px solid #fff;
    display: grid;
    gap: 1rem;
    grid-template-columns: 2fr 1fr
}

@media (min-width:768px) {
    .stockquote__footer {
        display: flex;
        justify-content: space-between
    }
}

.stockquote__grid--historical .stockquote__item {
    gap: 0;
    grid-template-columns: 1fr 1fr
}

.stockquote__grid--historical dd,
.stockquote__grid--historical dt {
    padding: .75rem 1rem
}

.stockquote__grid--historical dd {
    background-color: rgba(255, 193, 7, .3)
}

.stockticker {
    display: flex;
    flex-direction: column;
    height: 100%
}

.stockticker__header {
    display: flex;
    gap: 1.5rem
}

.stockticker__primary {
    font-family: zuume-edge, serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: .8
}

.stockticker__secondary {
    border-top: 1px solid currentColor;
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: .5rem
}

.stockticker__footer {
    margin-top: auto;
    padding-top: 2rem
}

.is-down .stockticker__icon {
    transform: rotate(180deg)
}

.timeline-carousel {
    padding: 4rem 0 0
}

@media (min-width:768px) {
    .timeline-carousel {
        margin: 0 -1.25rem
    }
}

.timeline-carousel .flickity-viewport {
    overflow: visible
}

.timeline-carousel .flickity-control {
    left: 0;
    right: unset
}

@media (min-width:768px) {
    .timeline-carousel .flickity-control {
        left: 1.25rem
    }
}

.timeline-carousel__cell {
    border-top: 1px solid currentColor;
    width: 100%
}

@media (min-width:768px) {
    .timeline-carousel__cell {
        width: 75%
    }
}

@media (min-width:992px) {
    .timeline-carousel__cell {
        width: 40%
    }
}

.timeline-carousel__cell.is-selected {
    z-index: 1
}

.timeline-carousel__cell.is-selected .timeline-item__content {
    border-color: transparent;
    opacity: 1
}

.timeline-carousel__cell.is-selected .display-1 {
    font-weight: 600
}

.timeline-item {
    padding-top: 3.5rem;
    position: relative
}

.timeline-item::before {
    background-color: currentColor;
    border: 4px solid #000;
    border-radius: 50%;
    content: "";
    display: block;
    height: 1.25rem;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    width: 1.25rem;
    z-index: 1
}

.is-selected .timeline-item::before {
    background-color: #dbb216;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M10.393 2.667l12.884 13.378-12.798 13.289-1.67-1.609 11.249-11.68-11.335-11.769 1.67-1.609z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    height: 2.5rem;
    transform: translate3d(0, -50%, 0);
    width: 2.5rem
}

@media (min-width:768px) {
    .is-selected .timeline-item::before {
        left: .75rem
    }
}

[data-theme=light] .timeline-item::before {
    border: 4px solid #fff
}

.timeline-item .display-1 {
    font-weight: 400
}

.timeline-item__content {
    opacity: .3;
    padding: 0 1.25rem 7.5rem 0;
    transition: border-color .3s ease, opacity .3s ease
}

@media (min-width:768px) {
    .timeline-item__content {
        border-left: 1px solid #fff;
        padding: 0 1.25rem 7.5rem
    }
}

@media (min-width:1200px) {
    .timeline-item__content {
        padding-right: 7.5rem
    }
}

.timeline-item__icon {
    align-items: center;
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    fill: #000;
    display: flex;
    height: 6rem;
    justify-content: center;
    transition: background-color .3s ease, border-color .3s ease;
    width: 6rem
}

@media (min-width:1200px) {
    .timeline-item__icon {
        height: 8.75rem;
        width: 8.75rem
    }
}

.is-selected .timeline-item__icon {
    background-color: #dbb216;
    border-color: #dbb216;
    color: #000
}

.timeline-item__icon svg {
    fill: currentColor;
    height: 100%;
    width: 100%
}

.timeline-item__label {
    bottom: calc(100% + 1.5rem);
    left: 0;
    position: absolute
}

@media (min-width:768px) {
    .is-selected .timeline-item__label {
        left: 1.75rem
    }
}

.video-player {
    display: grid;
    place-items: center;
    position: relative
}

.video-player>* {
    grid-row: 1;
    grid-column: 1
}

.video-player__facade {
    display: grid;
    place-items: center;
    position: relative;
    width: 100%
}

.video-player__facade>* {
    grid-row: 1;
    grid-column: 1
}

.is-ready .video-player__facade {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
    visibility: hidden
}

.video-playbutton {
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 3.5rem;
    justify-content: center;
    width: 3.5rem;
    transition: background-color .2s, color .2s ease, transform .1s ease;
    z-index: 1
}

.video-playbutton:focus,
.video-playbutton:hover {
    background-color: #fff;
    color: #000
}

.video-playbutton::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.video-player {
    animation: video-player-fadein .4s ease both .1s
}

@keyframes video-player-fadein {
    from {
        opacity: 0
    }
}

[data-animate=video-embed] .video-player {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s ease
}

[data-animate=video-embed].animate-in .video-player {
    clip-path: inset(0 0 0 0)
}

.locations-modal .modal__overlay {
    background-color: rgba(0, 0, 0, .1)
}

.locations-modal .modal__content {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .3)
}

.locations-modal .notification__header {
    border-bottom: 1px solid #fff
}

.locations-modal .modal__close--bottom {
    bottom: unset;
    top: 2rem;
    right: 2rem
}

.locations-modal .h2,
.locations-modal h2 {
    max-width: 75%
}

.locations-legend {
    display: inline-flex;
    flex-direction: column
}

.locations-legend__item {
    align-items: center;
    display: flex;
    padding: .5rem 0;
    border-bottom: 1px solid currentColor
}

.locations-legend__pin {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 1rem;
    justify-content: center;
    margin-right: 1.25rem;
    padding: .25rem;
    transition: background-color .1s ease;
    width: 1rem
}

@media (min-width:1200px) {
    .locations-legend__pin {
        height: 2rem;
        padding: .35rem;
        width: 2rem
    }
}

.locations-legend__pin .icon {
    height: 100%;
    width: 100%
}

.tooltip-pin:hover {
    z-index: 100
}

.tooltip-pin:hover .location-tooltip {
    opacity: 1;
    transform: translateY(0)
}

.location-tooltip {
    position: absolute;
    opacity: 0;
    transform: translateY(1rem);
    transition: all .4s;
    pointer-events: none;
    width: 12rem
}

.location-tooltip.top-left {
    left: 0;
    bottom: 1rem;
    text-align: left
}

.location-tooltip.top-right {
    right: 0;
    bottom: 1rem;
    text-align: right
}

.location-tooltip p {
    width: 100%
}

.bg-black {
    background-color: #000
}

.text-black {
    color: #000
}

.icon-black {
    fill: #000
}

.bg-white {
    background-color: #fff
}

.text-white {
    color: #fff
}

.icon-white {
    fill: #fff
}

.bg-yellow {
    background-color: #dbb216
}

.text-yellow {
    color: #dbb216
}

.icon-yellow {
    fill: #dbb216
}

.bg-orange {
    background-color: #b16b2b
}

.text-orange {
    color: #b16b2b
}

.icon-orange {
    fill: #b16b2b
}

.bg-dark-grey {
    background-color: #211f1f
}

.text-dark-grey {
    color: #211f1f
}

.icon-dark-grey {
    fill: #211f1f
}

.bg-mid-grey {
    background-color: #555
}

.text-mid-grey {
    color: #555
}

.icon-mid-grey {
    fill: #555
}

.bg-beige {
    background-color: #c1ba9a
}

.text-beige {
    color: #c1ba9a
}

.icon-beige {
    fill: #c1ba9a
}

.bg-light-grey {
    background-color: #f0ede8
}

.text-light-grey {
    color: #f0ede8
}

.icon-light-grey {
    fill: #f0ede8
}

.bg-transparent {
    background-color: transparent
}

[data-theme=light] .section.bg-dark-grey {
    background: #f0ede8;
    color: inherit
}

[data-theme=light] .light\:bg-black {
    background-color: #000
}

[data-theme=light] .light\:bg-white {
    background-color: #fff
}

[data-theme=light] .light\:bg-light-grey {
    background-color: #f0ede8
}

[data-theme=light] .light\:text-black {
    color: #000
}

[data-theme=light] .light\:text-white {
    color: #fff
}

.align-items-start {
    align-items: flex-start
}

.align-items-end {
    align-items: flex-end
}

.align-items-center {
    align-items: center
}

.align-items-baseline {
    align-items: baseline
}

.align-items-stretch {
    align-items: stretch
}

.align-self-auto {
    align-self: auto
}

.align-self-start {
    align-self: flex-start
}

.align-self-end {
    align-self: flex-end
}

.align-self-center {
    align-self: center
}

.d-inline {
    display: inline
}

.d-inline-block {
    display: inline-block
}

.d-block {
    display: block
}

.d-grid {
    display: grid
}

.d-flex {
    display: flex
}

.d-inline-flex {
    display: inline-flex
}

.d-none {
    display: none
}

.justify-content-start {
    justify-content: flex-start
}

.justify-content-end {
    justify-content: flex-end
}

.justify-content-center {
    justify-content: center
}

.justify-content-between {
    justify-content: space-between
}

.justify-content-around {
    justify-content: space-around
}

.justify-content-evenly {
    justify-content: space-evenly
}

.order-first {
    order: -1
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-last {
    order: 6
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-visible {
    overflow: visible
}

.overflow-scroll {
    overflow: scroll
}

.position-static {
    position: static
}

.position-relative {
    position: relative
}

.position-absolute {
    position: absolute
}

.position-fixed {
    position: fixed
}

.position-sticky {
    position: sticky
}

.flex-fill {
    flex: 1 1 auto
}

.flex-row {
    flex-direction: row
}

.flex-column {
    flex-direction: column
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-column-reverse {
    flex-direction: column-reverse
}

.m-0 {
    margin: 0
}

.m-1 {
    margin: 1rem
}

.m-2 {
    margin: 1.5rem
}

.m-3 {
    margin: 2rem
}

.m-4 {
    margin: 3rem
}

.m-5 {
    margin: 4rem
}

.m-auto {
    margin: auto
}

.mt-0 {
    margin-top: 0
}

.mt-1 {
    margin-top: 1rem
}

.mt-2 {
    margin-top: 1.5rem
}

.mt-3 {
    margin-top: 2rem
}

.mt-4 {
    margin-top: 3rem
}

.mt-5 {
    margin-top: 4rem
}

.mt-auto {
    margin-top: auto
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: 1.5rem
}

.mb-3 {
    margin-bottom: 2rem
}

.mb-4 {
    margin-bottom: 3rem
}

.mb-5 {
    margin-bottom: 4rem
}

.mb-auto {
    margin-bottom: auto
}

.ms-0 {
    margin-left: 0
}

.ms-1 {
    margin-left: 1rem
}

.ms-2 {
    margin-left: 1.5rem
}

.ms-3 {
    margin-left: 2rem
}

.ms-4 {
    margin-left: 3rem
}

.ms-5 {
    margin-left: 4rem
}

.ms-auto {
    margin-left: auto
}

.me-0 {
    margin-right: 0
}

.me-1 {
    margin-right: 1rem
}

.me-2 {
    margin-right: 1.5rem
}

.me-3 {
    margin-right: 2rem
}

.me-4 {
    margin-right: 3rem
}

.me-5 {
    margin-right: 4rem
}

.me-auto {
    margin-right: auto
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: 1rem
}

.p-2 {
    padding: 1.5rem
}

.p-3 {
    padding: 2rem
}

.p-4 {
    padding: 3rem
}

.p-5 {
    padding: 4rem
}

.p-auto {
    padding: auto
}

.pb-0 {
    padding-bottom: 0
}

.pb-1 {
    padding-bottom: 1rem
}

.pb-2 {
    padding-bottom: 1.5rem
}

.pb-3 {
    padding-bottom: 2rem
}

.pb-4 {
    padding-bottom: 3rem
}

.pb-5 {
    padding-bottom: 4rem
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: 1rem
}

.pt-2 {
    padding-top: 1.5rem
}

.pt-3 {
    padding-top: 2rem
}

.pt-4 {
    padding-top: 3rem
}

.pt-5 {
    padding-top: 4rem
}

.ps-0 {
    padding-left: 0
}

.ps-1 {
    padding-left: 1rem
}

.ps-2 {
    padding-left: 1.5rem
}

.ps-3 {
    padding-left: 2rem
}

.ps-4 {
    padding-left: 3rem
}

.ps-5 {
    padding-left: 4rem
}

.pe-0 {
    padding-right: 0
}

.pe-1 {
    padding-right: 1rem
}

.pe-2 {
    padding-right: 1.5rem
}

.pe-3 {
    padding-right: 2rem
}

.pe-4 {
    padding-right: 3rem
}

.pe-5 {
    padding-right: 4rem
}

.text-start {
    text-align: left
}

.text-end {
    text-align: right
}

.text-center {
    text-align: center
}

@media (min-width:576px) {
    .align-items-sm-start {
        align-items: flex-start
    }

    .align-items-sm-end {
        align-items: flex-end
    }

    .align-items-sm-center {
        align-items: center
    }

    .align-items-sm-baseline {
        align-items: baseline
    }

    .align-items-sm-stretch {
        align-items: stretch
    }

    .align-self-sm-auto {
        align-self: auto
    }

    .align-self-sm-start {
        align-self: flex-start
    }

    .align-self-sm-end {
        align-self: flex-end
    }

    .align-self-sm-center {
        align-self: center
    }

    .d-sm-inline {
        display: inline
    }

    .d-sm-inline-block {
        display: inline-block
    }

    .d-sm-block {
        display: block
    }

    .d-sm-grid {
        display: grid
    }

    .d-sm-flex {
        display: flex
    }

    .d-sm-inline-flex {
        display: inline-flex
    }

    .d-sm-none {
        display: none
    }

    .justify-content-sm-start {
        justify-content: flex-start
    }

    .justify-content-sm-end {
        justify-content: flex-end
    }

    .justify-content-sm-center {
        justify-content: center
    }

    .justify-content-sm-between {
        justify-content: space-between
    }

    .justify-content-sm-around {
        justify-content: space-around
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-last {
        order: 6
    }

    .flex-sm-fill {
        flex: 1 1 auto
    }

    .mt-sm-0 {
        margin-top: 0
    }

    .mt-sm-1 {
        margin-top: 1rem
    }

    .mt-sm-2 {
        margin-top: 1.5rem
    }

    .mt-sm-3 {
        margin-top: 2rem
    }

    .mt-sm-4 {
        margin-top: 3rem
    }

    .mt-sm-5 {
        margin-top: 4rem
    }

    .mt-sm-auto {
        margin-top: auto
    }

    .mb-sm-0 {
        margin-bottom: 0
    }

    .mb-sm-1 {
        margin-bottom: 1rem
    }

    .mb-sm-2 {
        margin-bottom: 1.5rem
    }

    .mb-sm-3 {
        margin-bottom: 2rem
    }

    .mb-sm-4 {
        margin-bottom: 3rem
    }

    .mb-sm-5 {
        margin-bottom: 4rem
    }

    .mb-sm-auto {
        margin-bottom: auto
    }

    .ms-sm-0 {
        margin-left: 0
    }

    .ms-sm-1 {
        margin-left: 1rem
    }

    .ms-sm-2 {
        margin-left: 1.5rem
    }

    .ms-sm-3 {
        margin-left: 2rem
    }

    .ms-sm-4 {
        margin-left: 3rem
    }

    .ms-sm-5 {
        margin-left: 4rem
    }

    .ms-sm-auto {
        margin-left: auto
    }

    .me-sm-0 {
        margin-right: 0
    }

    .me-sm-1 {
        margin-right: 1rem
    }

    .me-sm-2 {
        margin-right: 1.5rem
    }

    .me-sm-3 {
        margin-right: 2rem
    }

    .me-sm-4 {
        margin-right: 3rem
    }

    .me-sm-5 {
        margin-right: 4rem
    }

    .me-sm-auto {
        margin-right: auto
    }

    .p-sm-0 {
        padding: 0
    }

    .p-sm-1 {
        padding: 1rem
    }

    .p-sm-2 {
        padding: 1.5rem
    }

    .p-sm-3 {
        padding: 2rem
    }

    .p-sm-4 {
        padding: 3rem
    }

    .p-sm-5 {
        padding: 4rem
    }

    .p-sm-auto {
        padding: auto
    }

    .pb-sm-0 {
        padding-bottom: 0
    }

    .pb-sm-1 {
        padding-bottom: 1rem
    }

    .pb-sm-2 {
        padding-bottom: 1.5rem
    }

    .pb-sm-3 {
        padding-bottom: 2rem
    }

    .pb-sm-4 {
        padding-bottom: 3rem
    }

    .pb-sm-5 {
        padding-bottom: 4rem
    }

    .pt-sm-0 {
        padding-top: 0
    }

    .pt-sm-1 {
        padding-top: 1rem
    }

    .pt-sm-2 {
        padding-top: 1.5rem
    }

    .pt-sm-3 {
        padding-top: 2rem
    }

    .pt-sm-4 {
        padding-top: 3rem
    }

    .pt-sm-5 {
        padding-top: 4rem
    }

    .ps-sm-0 {
        padding-left: 0
    }

    .ps-sm-1 {
        padding-left: 1rem
    }

    .ps-sm-2 {
        padding-left: 1.5rem
    }

    .ps-sm-3 {
        padding-left: 2rem
    }

    .ps-sm-4 {
        padding-left: 3rem
    }

    .ps-sm-5 {
        padding-left: 4rem
    }

    .pe-sm-0 {
        padding-right: 0
    }

    .pe-sm-1 {
        padding-right: 1rem
    }

    .pe-sm-2 {
        padding-right: 1.5rem
    }

    .pe-sm-3 {
        padding-right: 2rem
    }

    .pe-sm-4 {
        padding-right: 3rem
    }

    .pe-sm-5 {
        padding-right: 4rem
    }

    .text-sm-start {
        text-align: left
    }

    .text-sm-end {
        text-align: right
    }

    .text-sm-center {
        text-align: center
    }
}

@media (min-width:768px) {
    .align-items-md-start {
        align-items: flex-start
    }

    .align-items-md-end {
        align-items: flex-end
    }

    .align-items-md-center {
        align-items: center
    }

    .align-items-md-baseline {
        align-items: baseline
    }

    .align-items-md-stretch {
        align-items: stretch
    }

    .align-self-md-auto {
        align-self: auto
    }

    .align-self-md-start {
        align-self: flex-start
    }

    .align-self-md-end {
        align-self: flex-end
    }

    .align-self-md-center {
        align-self: center
    }

    .d-md-inline {
        display: inline
    }

    .d-md-inline-block {
        display: inline-block
    }

    .d-md-block {
        display: block
    }

    .d-md-grid {
        display: grid
    }

    .d-md-flex {
        display: flex
    }

    .d-md-inline-flex {
        display: inline-flex
    }

    .d-md-none {
        display: none
    }

    .justify-content-md-start {
        justify-content: flex-start
    }

    .justify-content-md-end {
        justify-content: flex-end
    }

    .justify-content-md-center {
        justify-content: center
    }

    .justify-content-md-between {
        justify-content: space-between
    }

    .justify-content-md-around {
        justify-content: space-around
    }

    .justify-content-md-evenly {
        justify-content: space-evenly
    }

    .order-md-first {
        order: -1
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-last {
        order: 6
    }

    .flex-md-fill {
        flex: 1 1 auto
    }

    .mt-md-0 {
        margin-top: 0
    }

    .mt-md-1 {
        margin-top: 1rem
    }

    .mt-md-2 {
        margin-top: 1.5rem
    }

    .mt-md-3 {
        margin-top: 2rem
    }

    .mt-md-4 {
        margin-top: 3rem
    }

    .mt-md-5 {
        margin-top: 4rem
    }

    .mt-md-auto {
        margin-top: auto
    }

    .mb-md-0 {
        margin-bottom: 0
    }

    .mb-md-1 {
        margin-bottom: 1rem
    }

    .mb-md-2 {
        margin-bottom: 1.5rem
    }

    .mb-md-3 {
        margin-bottom: 2rem
    }

    .mb-md-4 {
        margin-bottom: 3rem
    }

    .mb-md-5 {
        margin-bottom: 4rem
    }

    .mb-md-auto {
        margin-bottom: auto
    }

    .ms-md-0 {
        margin-left: 0
    }

    .ms-md-1 {
        margin-left: 1rem
    }

    .ms-md-2 {
        margin-left: 1.5rem
    }

    .ms-md-3 {
        margin-left: 2rem
    }

    .ms-md-4 {
        margin-left: 3rem
    }

    .ms-md-5 {
        margin-left: 4rem
    }

    .ms-md-auto {
        margin-left: auto
    }

    .me-md-0 {
        margin-right: 0
    }

    .me-md-1 {
        margin-right: 1rem
    }

    .me-md-2 {
        margin-right: 1.5rem
    }

    .me-md-3 {
        margin-right: 2rem
    }

    .me-md-4 {
        margin-right: 3rem
    }

    .me-md-5 {
        margin-right: 4rem
    }

    .me-md-auto {
        margin-right: auto
    }

    .p-md-0 {
        padding: 0
    }

    .p-md-1 {
        padding: 1rem
    }

    .p-md-2 {
        padding: 1.5rem
    }

    .p-md-3 {
        padding: 2rem
    }

    .p-md-4 {
        padding: 3rem
    }

    .p-md-5 {
        padding: 4rem
    }

    .p-md-auto {
        padding: auto
    }

    .pb-md-0 {
        padding-bottom: 0
    }

    .pb-md-1 {
        padding-bottom: 1rem
    }

    .pb-md-2 {
        padding-bottom: 1.5rem
    }

    .pb-md-3 {
        padding-bottom: 2rem
    }

    .pb-md-4 {
        padding-bottom: 3rem
    }

    .pb-md-5 {
        padding-bottom: 4rem
    }

    .pt-md-0 {
        padding-top: 0
    }

    .pt-md-1 {
        padding-top: 1rem
    }

    .pt-md-2 {
        padding-top: 1.5rem
    }

    .pt-md-3 {
        padding-top: 2rem
    }

    .pt-md-4 {
        padding-top: 3rem
    }

    .pt-md-5 {
        padding-top: 4rem
    }

    .ps-md-0 {
        padding-left: 0
    }

    .ps-md-1 {
        padding-left: 1rem
    }

    .ps-md-2 {
        padding-left: 1.5rem
    }

    .ps-md-3 {
        padding-left: 2rem
    }

    .ps-md-4 {
        padding-left: 3rem
    }

    .ps-md-5 {
        padding-left: 4rem
    }

    .pe-md-0 {
        padding-right: 0
    }

    .pe-md-1 {
        padding-right: 1rem
    }

    .pe-md-2 {
        padding-right: 1.5rem
    }

    .pe-md-3 {
        padding-right: 2rem
    }

    .pe-md-4 {
        padding-right: 3rem
    }

    .pe-md-5 {
        padding-right: 4rem
    }

    .text-md-start {
        text-align: left
    }

    .text-md-end {
        text-align: right
    }

    .text-md-center {
        text-align: center
    }
}

@media (min-width:992px) {
    .align-items-lg-start {
        align-items: flex-start
    }

    .align-items-lg-end {
        align-items: flex-end
    }

    .align-items-lg-center {
        align-items: center
    }

    .align-items-lg-baseline {
        align-items: baseline
    }

    .align-items-lg-stretch {
        align-items: stretch
    }

    .align-self-lg-auto {
        align-self: auto
    }

    .align-self-lg-start {
        align-self: flex-start
    }

    .align-self-lg-end {
        align-self: flex-end
    }

    .align-self-lg-center {
        align-self: center
    }

    .d-lg-inline {
        display: inline
    }

    .d-lg-inline-block {
        display: inline-block
    }

    .d-lg-block {
        display: block
    }

    .d-lg-grid {
        display: grid
    }

    .d-lg-flex {
        display: flex
    }

    .d-lg-inline-flex {
        display: inline-flex
    }

    .d-lg-none {
        display: none
    }

    .justify-content-lg-start {
        justify-content: flex-start
    }

    .justify-content-lg-end {
        justify-content: flex-end
    }

    .justify-content-lg-center {
        justify-content: center
    }

    .justify-content-lg-between {
        justify-content: space-between
    }

    .justify-content-lg-around {
        justify-content: space-around
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-last {
        order: 6
    }

    .flex-lg-fill {
        flex: 1 1 auto
    }

    .mt-lg-0 {
        margin-top: 0
    }

    .mt-lg-1 {
        margin-top: 1rem
    }

    .mt-lg-2 {
        margin-top: 1.5rem
    }

    .mt-lg-3 {
        margin-top: 2rem
    }

    .mt-lg-4 {
        margin-top: 3rem
    }

    .mt-lg-5 {
        margin-top: 4rem
    }

    .mt-lg-auto {
        margin-top: auto
    }

    .mb-lg-0 {
        margin-bottom: 0
    }

    .mb-lg-1 {
        margin-bottom: 1rem
    }

    .mb-lg-2 {
        margin-bottom: 1.5rem
    }

    .mb-lg-3 {
        margin-bottom: 2rem
    }

    .mb-lg-4 {
        margin-bottom: 3rem
    }

    .mb-lg-5 {
        margin-bottom: 4rem
    }

    .mb-lg-auto {
        margin-bottom: auto
    }

    .ms-lg-0 {
        margin-left: 0
    }

    .ms-lg-1 {
        margin-left: 1rem
    }

    .ms-lg-2 {
        margin-left: 1.5rem
    }

    .ms-lg-3 {
        margin-left: 2rem
    }

    .ms-lg-4 {
        margin-left: 3rem
    }

    .ms-lg-5 {
        margin-left: 4rem
    }

    .ms-lg-auto {
        margin-left: auto
    }

    .me-lg-0 {
        margin-right: 0
    }

    .me-lg-1 {
        margin-right: 1rem
    }

    .me-lg-2 {
        margin-right: 1.5rem
    }

    .me-lg-3 {
        margin-right: 2rem
    }

    .me-lg-4 {
        margin-right: 3rem
    }

    .me-lg-5 {
        margin-right: 4rem
    }

    .me-lg-auto {
        margin-right: auto
    }

    .p-lg-0 {
        padding: 0
    }

    .p-lg-1 {
        padding: 1rem
    }

    .p-lg-2 {
        padding: 1.5rem
    }

    .p-lg-3 {
        padding: 2rem
    }

    .p-lg-4 {
        padding: 3rem
    }

    .p-lg-5 {
        padding: 4rem
    }

    .p-lg-auto {
        padding: auto
    }

    .pb-lg-0 {
        padding-bottom: 0
    }

    .pb-lg-1 {
        padding-bottom: 1rem
    }

    .pb-lg-2 {
        padding-bottom: 1.5rem
    }

    .pb-lg-3 {
        padding-bottom: 2rem
    }

    .pb-lg-4 {
        padding-bottom: 3rem
    }

    .pb-lg-5 {
        padding-bottom: 4rem
    }

    .pt-lg-0 {
        padding-top: 0
    }

    .pt-lg-1 {
        padding-top: 1rem
    }

    .pt-lg-2 {
        padding-top: 1.5rem
    }

    .pt-lg-3 {
        padding-top: 2rem
    }

    .pt-lg-4 {
        padding-top: 3rem
    }

    .pt-lg-5 {
        padding-top: 4rem
    }

    .ps-lg-0 {
        padding-left: 0
    }

    .ps-lg-1 {
        padding-left: 1rem
    }

    .ps-lg-2 {
        padding-left: 1.5rem
    }

    .ps-lg-3 {
        padding-left: 2rem
    }

    .ps-lg-4 {
        padding-left: 3rem
    }

    .ps-lg-5 {
        padding-left: 4rem
    }

    .pe-lg-0 {
        padding-right: 0
    }

    .pe-lg-1 {
        padding-right: 1rem
    }

    .pe-lg-2 {
        padding-right: 1.5rem
    }

    .pe-lg-3 {
        padding-right: 2rem
    }

    .pe-lg-4 {
        padding-right: 3rem
    }

    .pe-lg-5 {
        padding-right: 4rem
    }

    .text-lg-start {
        text-align: left
    }

    .text-lg-end {
        text-align: right
    }

    .text-lg-center {
        text-align: center
    }
}

@media (min-width:1200px) {
    .align-items-xl-start {
        align-items: flex-start
    }

    .align-items-xl-end {
        align-items: flex-end
    }

    .align-items-xl-center {
        align-items: center
    }

    .align-items-xl-baseline {
        align-items: baseline
    }

    .align-items-xl-stretch {
        align-items: stretch
    }

    .align-self-xl-auto {
        align-self: auto
    }

    .align-self-xl-start {
        align-self: flex-start
    }

    .align-self-xl-end {
        align-self: flex-end
    }

    .align-self-xl-center {
        align-self: center
    }

    .d-xl-inline {
        display: inline
    }

    .d-xl-inline-block {
        display: inline-block
    }

    .d-xl-block {
        display: block
    }

    .d-xl-grid {
        display: grid
    }

    .d-xl-flex {
        display: flex
    }

    .d-xl-inline-flex {
        display: inline-flex
    }

    .d-xl-none {
        display: none
    }

    .justify-content-xl-start {
        justify-content: flex-start
    }

    .justify-content-xl-end {
        justify-content: flex-end
    }

    .justify-content-xl-center {
        justify-content: center
    }

    .justify-content-xl-between {
        justify-content: space-between
    }

    .justify-content-xl-around {
        justify-content: space-around
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-last {
        order: 6
    }

    .flex-xl-fill {
        flex: 1 1 auto
    }

    .mt-xl-0 {
        margin-top: 0
    }

    .mt-xl-1 {
        margin-top: 1rem
    }

    .mt-xl-2 {
        margin-top: 1.5rem
    }

    .mt-xl-3 {
        margin-top: 2rem
    }

    .mt-xl-4 {
        margin-top: 3rem
    }

    .mt-xl-5 {
        margin-top: 4rem
    }

    .mt-xl-auto {
        margin-top: auto
    }

    .mb-xl-0 {
        margin-bottom: 0
    }

    .mb-xl-1 {
        margin-bottom: 1rem
    }

    .mb-xl-2 {
        margin-bottom: 1.5rem
    }

    .mb-xl-3 {
        margin-bottom: 2rem
    }

    .mb-xl-4 {
        margin-bottom: 3rem
    }

    .mb-xl-5 {
        margin-bottom: 4rem
    }

    .mb-xl-auto {
        margin-bottom: auto
    }

    .ms-xl-0 {
        margin-left: 0
    }

    .ms-xl-1 {
        margin-left: 1rem
    }

    .ms-xl-2 {
        margin-left: 1.5rem
    }

    .ms-xl-3 {
        margin-left: 2rem
    }

    .ms-xl-4 {
        margin-left: 3rem
    }

    .ms-xl-5 {
        margin-left: 4rem
    }

    .ms-xl-auto {
        margin-left: auto
    }

    .me-xl-0 {
        margin-right: 0
    }

    .me-xl-1 {
        margin-right: 1rem
    }

    .me-xl-2 {
        margin-right: 1.5rem
    }

    .me-xl-3 {
        margin-right: 2rem
    }

    .me-xl-4 {
        margin-right: 3rem
    }

    .me-xl-5 {
        margin-right: 4rem
    }

    .me-xl-auto {
        margin-right: auto
    }

    .p-xl-0 {
        padding: 0
    }

    .p-xl-1 {
        padding: 1rem
    }

    .p-xl-2 {
        padding: 1.5rem
    }

    .p-xl-3 {
        padding: 2rem
    }

    .p-xl-4 {
        padding: 3rem
    }

    .p-xl-5 {
        padding: 4rem
    }

    .p-xl-auto {
        padding: auto
    }

    .pb-xl-0 {
        padding-bottom: 0
    }

    .pb-xl-1 {
        padding-bottom: 1rem
    }

    .pb-xl-2 {
        padding-bottom: 1.5rem
    }

    .pb-xl-3 {
        padding-bottom: 2rem
    }

    .pb-xl-4 {
        padding-bottom: 3rem
    }

    .pb-xl-5 {
        padding-bottom: 4rem
    }

    .pt-xl-0 {
        padding-top: 0
    }

    .pt-xl-1 {
        padding-top: 1rem
    }

    .pt-xl-2 {
        padding-top: 1.5rem
    }

    .pt-xl-3 {
        padding-top: 2rem
    }

    .pt-xl-4 {
        padding-top: 3rem
    }

    .pt-xl-5 {
        padding-top: 4rem
    }

    .ps-xl-0 {
        padding-left: 0
    }

    .ps-xl-1 {
        padding-left: 1rem
    }

    .ps-xl-2 {
        padding-left: 1.5rem
    }

    .ps-xl-3 {
        padding-left: 2rem
    }

    .ps-xl-4 {
        padding-left: 3rem
    }

    .ps-xl-5 {
        padding-left: 4rem
    }

    .pe-xl-0 {
        padding-right: 0
    }

    .pe-xl-1 {
        padding-right: 1rem
    }

    .pe-xl-2 {
        padding-right: 1.5rem
    }

    .pe-xl-3 {
        padding-right: 2rem
    }

    .pe-xl-4 {
        padding-right: 3rem
    }

    .pe-xl-5 {
        padding-right: 4rem
    }

    .text-xl-start {
        text-align: left
    }

    .text-xl-end {
        text-align: right
    }

    .text-xl-center {
        text-align: center
    }
}

@media (min-width:1400px) {
    .align-items-xxl-start {
        align-items: flex-start
    }

    .align-items-xxl-end {
        align-items: flex-end
    }

    .align-items-xxl-center {
        align-items: center
    }

    .align-items-xxl-baseline {
        align-items: baseline
    }

    .align-items-xxl-stretch {
        align-items: stretch
    }

    .align-self-xxl-auto {
        align-self: auto
    }

    .align-self-xxl-start {
        align-self: flex-start
    }

    .align-self-xxl-end {
        align-self: flex-end
    }

    .align-self-xxl-center {
        align-self: center
    }

    .d-xxl-inline {
        display: inline
    }

    .d-xxl-inline-block {
        display: inline-block
    }

    .d-xxl-block {
        display: block
    }

    .d-xxl-grid {
        display: grid
    }

    .d-xxl-flex {
        display: flex
    }

    .d-xxl-inline-flex {
        display: inline-flex
    }

    .d-xxl-none {
        display: none
    }

    .justify-content-xxl-start {
        justify-content: flex-start
    }

    .justify-content-xxl-end {
        justify-content: flex-end
    }

    .justify-content-xxl-center {
        justify-content: center
    }

    .justify-content-xxl-between {
        justify-content: space-between
    }

    .justify-content-xxl-around {
        justify-content: space-around
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly
    }

    .order-xxl-first {
        order: -1
    }

    .order-xxl-0 {
        order: 0
    }

    .order-xxl-1 {
        order: 1
    }

    .order-xxl-2 {
        order: 2
    }

    .order-xxl-3 {
        order: 3
    }

    .order-xxl-4 {
        order: 4
    }

    .order-xxl-5 {
        order: 5
    }

    .order-xxl-last {
        order: 6
    }

    .flex-xxl-fill {
        flex: 1 1 auto
    }

    .mt-xxl-0 {
        margin-top: 0
    }

    .mt-xxl-1 {
        margin-top: 1rem
    }

    .mt-xxl-2 {
        margin-top: 1.5rem
    }

    .mt-xxl-3 {
        margin-top: 2rem
    }

    .mt-xxl-4 {
        margin-top: 3rem
    }

    .mt-xxl-5 {
        margin-top: 4rem
    }

    .mt-xxl-auto {
        margin-top: auto
    }

    .mb-xxl-0 {
        margin-bottom: 0
    }

    .mb-xxl-1 {
        margin-bottom: 1rem
    }

    .mb-xxl-2 {
        margin-bottom: 1.5rem
    }

    .mb-xxl-3 {
        margin-bottom: 2rem
    }

    .mb-xxl-4 {
        margin-bottom: 3rem
    }

    .mb-xxl-5 {
        margin-bottom: 4rem
    }

    .mb-xxl-auto {
        margin-bottom: auto
    }

    .ms-xxl-0 {
        margin-left: 0
    }

    .ms-xxl-1 {
        margin-left: 1rem
    }

    .ms-xxl-2 {
        margin-left: 1.5rem
    }

    .ms-xxl-3 {
        margin-left: 2rem
    }

    .ms-xxl-4 {
        margin-left: 3rem
    }

    .ms-xxl-5 {
        margin-left: 4rem
    }

    .ms-xxl-auto {
        margin-left: auto
    }

    .me-xxl-0 {
        margin-right: 0
    }

    .me-xxl-1 {
        margin-right: 1rem
    }

    .me-xxl-2 {
        margin-right: 1.5rem
    }

    .me-xxl-3 {
        margin-right: 2rem
    }

    .me-xxl-4 {
        margin-right: 3rem
    }

    .me-xxl-5 {
        margin-right: 4rem
    }

    .me-xxl-auto {
        margin-right: auto
    }

    .p-xxl-0 {
        padding: 0
    }

    .p-xxl-1 {
        padding: 1rem
    }

    .p-xxl-2 {
        padding: 1.5rem
    }

    .p-xxl-3 {
        padding: 2rem
    }

    .p-xxl-4 {
        padding: 3rem
    }

    .p-xxl-5 {
        padding: 4rem
    }

    .p-xxl-auto {
        padding: auto
    }

    .pb-xxl-0 {
        padding-bottom: 0
    }

    .pb-xxl-1 {
        padding-bottom: 1rem
    }

    .pb-xxl-2 {
        padding-bottom: 1.5rem
    }

    .pb-xxl-3 {
        padding-bottom: 2rem
    }

    .pb-xxl-4 {
        padding-bottom: 3rem
    }

    .pb-xxl-5 {
        padding-bottom: 4rem
    }

    .pt-xxl-0 {
        padding-top: 0
    }

    .pt-xxl-1 {
        padding-top: 1rem
    }

    .pt-xxl-2 {
        padding-top: 1.5rem
    }

    .pt-xxl-3 {
        padding-top: 2rem
    }

    .pt-xxl-4 {
        padding-top: 3rem
    }

    .pt-xxl-5 {
        padding-top: 4rem
    }

    .ps-xxl-0 {
        padding-left: 0
    }

    .ps-xxl-1 {
        padding-left: 1rem
    }

    .ps-xxl-2 {
        padding-left: 1.5rem
    }

    .ps-xxl-3 {
        padding-left: 2rem
    }

    .ps-xxl-4 {
        padding-left: 3rem
    }

    .ps-xxl-5 {
        padding-left: 4rem
    }

    .pe-xxl-0 {
        padding-right: 0
    }

    .pe-xxl-1 {
        padding-right: 1rem
    }

    .pe-xxl-2 {
        padding-right: 1.5rem
    }

    .pe-xxl-3 {
        padding-right: 2rem
    }

    .pe-xxl-4 {
        padding-right: 3rem
    }

    .pe-xxl-5 {
        padding-right: 4rem
    }

    .text-xxl-start {
        text-align: left
    }

    .text-xxl-end {
        text-align: right
    }

    .text-xxl-center {
        text-align: center
    }
}

@media (min-width:1600px) {
    .align-items-xxxl-start {
        align-items: flex-start
    }

    .align-items-xxxl-end {
        align-items: flex-end
    }

    .align-items-xxxl-center {
        align-items: center
    }

    .align-items-xxxl-baseline {
        align-items: baseline
    }

    .align-items-xxxl-stretch {
        align-items: stretch
    }

    .align-self-xxxl-auto {
        align-self: auto
    }

    .align-self-xxxl-start {
        align-self: flex-start
    }

    .align-self-xxxl-end {
        align-self: flex-end
    }

    .align-self-xxxl-center {
        align-self: center
    }

    .d-xxxl-inline {
        display: inline
    }

    .d-xxxl-inline-block {
        display: inline-block
    }

    .d-xxxl-block {
        display: block
    }

    .d-xxxl-grid {
        display: grid
    }

    .d-xxxl-flex {
        display: flex
    }

    .d-xxxl-inline-flex {
        display: inline-flex
    }

    .d-xxxl-none {
        display: none
    }

    .justify-content-xxxl-start {
        justify-content: flex-start
    }

    .justify-content-xxxl-end {
        justify-content: flex-end
    }

    .justify-content-xxxl-center {
        justify-content: center
    }

    .justify-content-xxxl-between {
        justify-content: space-between
    }

    .justify-content-xxxl-around {
        justify-content: space-around
    }

    .justify-content-xxxl-evenly {
        justify-content: space-evenly
    }

    .order-xxxl-first {
        order: -1
    }

    .order-xxxl-0 {
        order: 0
    }

    .order-xxxl-1 {
        order: 1
    }

    .order-xxxl-2 {
        order: 2
    }

    .order-xxxl-3 {
        order: 3
    }

    .order-xxxl-4 {
        order: 4
    }

    .order-xxxl-5 {
        order: 5
    }

    .order-xxxl-last {
        order: 6
    }

    .flex-xxxl-fill {
        flex: 1 1 auto
    }

    .mt-xxxl-0 {
        margin-top: 0
    }

    .mt-xxxl-1 {
        margin-top: 1rem
    }

    .mt-xxxl-2 {
        margin-top: 1.5rem
    }

    .mt-xxxl-3 {
        margin-top: 2rem
    }

    .mt-xxxl-4 {
        margin-top: 3rem
    }

    .mt-xxxl-5 {
        margin-top: 4rem
    }

    .mt-xxxl-auto {
        margin-top: auto
    }

    .mb-xxxl-0 {
        margin-bottom: 0
    }

    .mb-xxxl-1 {
        margin-bottom: 1rem
    }

    .mb-xxxl-2 {
        margin-bottom: 1.5rem
    }

    .mb-xxxl-3 {
        margin-bottom: 2rem
    }

    .mb-xxxl-4 {
        margin-bottom: 3rem
    }

    .mb-xxxl-5 {
        margin-bottom: 4rem
    }

    .mb-xxxl-auto {
        margin-bottom: auto
    }

    .ms-xxxl-0 {
        margin-left: 0
    }

    .ms-xxxl-1 {
        margin-left: 1rem
    }

    .ms-xxxl-2 {
        margin-left: 1.5rem
    }

    .ms-xxxl-3 {
        margin-left: 2rem
    }

    .ms-xxxl-4 {
        margin-left: 3rem
    }

    .ms-xxxl-5 {
        margin-left: 4rem
    }

    .ms-xxxl-auto {
        margin-left: auto
    }

    .me-xxxl-0 {
        margin-right: 0
    }

    .me-xxxl-1 {
        margin-right: 1rem
    }

    .me-xxxl-2 {
        margin-right: 1.5rem
    }

    .me-xxxl-3 {
        margin-right: 2rem
    }

    .me-xxxl-4 {
        margin-right: 3rem
    }

    .me-xxxl-5 {
        margin-right: 4rem
    }

    .me-xxxl-auto {
        margin-right: auto
    }

    .p-xxxl-0 {
        padding: 0
    }

    .p-xxxl-1 {
        padding: 1rem
    }

    .p-xxxl-2 {
        padding: 1.5rem
    }

    .p-xxxl-3 {
        padding: 2rem
    }

    .p-xxxl-4 {
        padding: 3rem
    }

    .p-xxxl-5 {
        padding: 4rem
    }

    .p-xxxl-auto {
        padding: auto
    }

    .pb-xxxl-0 {
        padding-bottom: 0
    }

    .pb-xxxl-1 {
        padding-bottom: 1rem
    }

    .pb-xxxl-2 {
        padding-bottom: 1.5rem
    }

    .pb-xxxl-3 {
        padding-bottom: 2rem
    }

    .pb-xxxl-4 {
        padding-bottom: 3rem
    }

    .pb-xxxl-5 {
        padding-bottom: 4rem
    }

    .pt-xxxl-0 {
        padding-top: 0
    }

    .pt-xxxl-1 {
        padding-top: 1rem
    }

    .pt-xxxl-2 {
        padding-top: 1.5rem
    }

    .pt-xxxl-3 {
        padding-top: 2rem
    }

    .pt-xxxl-4 {
        padding-top: 3rem
    }

    .pt-xxxl-5 {
        padding-top: 4rem
    }

    .ps-xxxl-0 {
        padding-left: 0
    }

    .ps-xxxl-1 {
        padding-left: 1rem
    }

    .ps-xxxl-2 {
        padding-left: 1.5rem
    }

    .ps-xxxl-3 {
        padding-left: 2rem
    }

    .ps-xxxl-4 {
        padding-left: 3rem
    }

    .ps-xxxl-5 {
        padding-left: 4rem
    }

    .pe-xxxl-0 {
        padding-right: 0
    }

    .pe-xxxl-1 {
        padding-right: 1rem
    }

    .pe-xxxl-2 {
        padding-right: 1.5rem
    }

    .pe-xxxl-3 {
        padding-right: 2rem
    }

    .pe-xxxl-4 {
        padding-right: 3rem
    }

    .pe-xxxl-5 {
        padding-right: 4rem
    }

    .text-xxxl-start {
        text-align: left
    }

    .text-xxxl-end {
        text-align: right
    }

    .text-xxxl-center {
        text-align: center
    }
}

@media print {
    .d-print-inline {
        display: inline
    }

    .d-print-inline-block {
        display: inline-block
    }

    .d-print-block {
        display: block
    }

    .d-print-grid {
        display: grid
    }

    .d-print-flex {
        display: flex
    }

    .d-print-inline-flex {
        display: inline-flex
    }

    .d-print-none {
        display: none
    }
}
}
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1440px
    }
}

:root {
    --bs-breakpoint-xs: 0;
    --bs-breakpoint-sm: 576px;
    --bs-breakpoint-md: 768px;
    --bs-breakpoint-lg: 992px;
    --bs-breakpoint-xl: 1200px;
    --bs-breakpoint-xxl: 1400px;
    --bs-breakpoint-xxxl: 1600px
}

.row {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.33333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1600px) {
    .col-xxxl {
        flex: 1 0 0%
    }

    .row-cols-xxxl-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxxl-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxxl-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .row-cols-xxxl-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxxl-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxxl-0 {
        margin-left: 0
    }

    .offset-xxxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxxl-3 {
        margin-left: 25%
    }

    .offset-xxxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxxl-6 {
        margin-left: 50%
    }

    .offset-xxxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxxl-9 {
        margin-left: 75%
    }

    .offset-xxxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxxl-0,
    .gx-xxxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxxl-0,
    .gy-xxxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxxl-1,
    .gx-xxxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxxl-1,
    .gy-xxxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxxl-2,
    .gx-xxxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxxl-2,
    .gy-xxxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxxl-3,
    .gx-xxxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxxl-3,
    .gy-xxxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxxl-4,
    .gx-xxxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxxl-4,
    .gy-xxxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxxl-5,
    .gx-xxxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxxl-5,
    .gy-xxxl-5 {
        --bs-gutter-y: 3rem
    }
}

.ratio {
    position: relative;
    width: 100%
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%
}

.ratio-3x4 {
    --bs-aspect-ratio: 133.3333333333%
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%
}

.ratio-5x3 {
    --bs-aspect-ratio: 60%
}

.ratio-6x4 {
    --bs-aspect-ratio: 66.6666666667%
}

.ratio-4x5 {
    --bs-aspect-ratio: 125%
}

.ratio-4x6 {
    --bs-aspect-ratio: 150%
}

.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-focusable:not(:focus):not(:focus-within):not(caption),
.visually-hidden:not(caption) {
    position: absolute !important
}

/*! Flickity v3.0.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative
}

.flickity-enabled:focus {
    outline: 0
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
    touch-action: pan-y
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0
}

.flickity-rtl .flickity-slider {
    left: unset;
    right: 0
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing
}

.flickity-cell {
    position: absolute;
    left: 0
}

.flickity-rtl .flickity-cell {
    left: unset;
    right: 0
}

.flickity-button {
    position: absolute;
    background: hsl(0 0% 100%/75%);
    border: none;
    color: #333
}

.flickity-button:hover {
    background: #fff;
    cursor: pointer
}

.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-button:active {
    opacity: .6
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none
}

.flickity-button-icon {
    fill: currentColor
}

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%)
}

.flickity-prev-next-button.previous {
    left: 10px
}

.flickity-prev-next-button.next {
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dot {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0 8px;
    background: hsl(0 0% 20%/25%);
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-indent: -9999px;
    overflow: hidden
}

.flickity-rtl .flickity-page-dot {
    text-indent: 9999px
}

.flickity-page-dot:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f
}

.flickity-page-dot.is-selected {
    background: hsl(0 0% 20%/100%)
}

.flickity-enabled.is-fade .flickity-slider>* {
    pointer-events: none;
    z-index: 0
}

.flickity-enabled.is-fade .flickity-slider>.is-selected {
    pointer-events: auto;
    z-index: 1
}

:root {
    --bs-body-font-family: montserrat, sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
    --bs-body-color: #fff;
    --bs-body-bg: #000;
    --bs-link-color: #000;
    --bs-link-hover-color: #000;
    --bs-heading-color: inherit;
    --bs-body-text-align: left
}

:root[data-theme=light] {
    --bs-body-color: #000;
    --bs-body-bg: #fff
}

body,
html {
    scroll-padding-top: 5.75rem;
    scroll-behavior: smooth
}

@media (min-width:1200px) {

    body,
    html {
        scroll-padding-top: 9rem
    }
}

html {
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    touch-action: manipulation
}

html.scroll-lock {
    overflow-y: hidden
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
    font-variation-settings: "slnt" 0;
    transition: background-color .3s ease
}

.site-content {
    width: 100%
}

.no-transition * {
    transition: none !important
}

.border-bottom-1 {
    border-bottom: 1px solid currentColor
}

.border-top-1 {
    border-top: 1px solid currentColor
}

.opacity-0 {
    opacity: 0
}

.breadcrumbs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: .75rem;
    font-weight: 500;
    gap: .5rem;
    text-transform: uppercase
}

@media (min-width:1200px) {
    .breadcrumbs {
        gap: .875rem
    }
}

.breadcrumbs a {
    text-underline-offset: 4px
}

.breadcrumbs a:focus,
.breadcrumbs a:hover {
    text-decoration: none
}

.breadcrumbs .separator {
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23dbb216' d='M7.795 2l9.663 10.033-9.599 9.967-1.253-1.206 8.437-8.76-8.501-8.827 1.253-1.206z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    height: .875rem;
    margin: 0;
    width: .875rem
}

.icon {
    display: inline-block;
    fill: currentColor;
    height: 1.5rem;
    pointer-events: none;
    stroke-width: 0;
    stroke: currentColor;
    transition: fill .2s ease;
    vertical-align: middle;
    width: 1.5rem
}

.icon--arrow {
    height: auto;
    width: 2rem
}

.icon--xs {
    height: 1rem;
    width: 1rem
}

.icon--sm {
    height: 1.25rem;
    width: 1.25rem
}

.icon--md {
    height: 1.75rem;
    width: 1.75rem
}

.icon--lg {
    height: 2rem;
    width: 2rem
}

.icon-btn {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    height: 2rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    transition: background-color .2s ease, color .2s ease;
    width: 2rem
}

.icon-btn:focus,
.icon-btn:hover {
    color: inherit
}

.icon-btn[disabled] {
    cursor: not-allowed
}

.icon-btn--md {
    height: 2.5rem;
    width: 2.5rem
}

.icon-btn--lg {
    height: 3rem;
    width: 3rem
}

.icon-btn--yellow {
    background: #dbb216;
    color: #000
}

.icon-btn--yellow:focus,
.icon-btn--yellow:hover {
    background: #b16b2b
}

.icon-btn--yellow[disabled] {
    cursor: not-allowed;
    opacity: .3
}

.icon-btn--yellow[disabled]:focus,
.icon-btn--yellow[disabled]:hover {
    background: #dbb216;
    color: #000
}

.icon-btn--yellow-stroke {
    color: #dbb216
}

.icon-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem
}

.icon-btn-group--narrow {
    gap: .5rem
}

.icon-link {
    background-color: transparent;
    align-items: center;
    border: 0;
    color: inherit;
    display: flex;
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    gap: 1rem;
    line-height: 2;
    outline: 0;
    padding: 0;
    text-decoration: none
}

@media (min-width:1200px) {
    .icon-link {
        font-size: 1rem
    }
}

.icon-link:focus,
.icon-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.btn {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #dbb216;
    background-repeat: no-repeat;
    border: 0;
    border-radius: 0;
    color: #000;
    cursor: pointer;
    display: inline-flex;
    font-family: montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 1.5;
    min-height: 2.5rem;
    justify-content: flex-start;
    padding: .5rem .9375rem;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s, color .2s ease, border-color .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

.btn:focus,
.btn:hover {
    background-color: #b16b2b;
    color: #000;
    outline: 0;
    text-decoration: none
}

.btn__icon {
    flex-shrink: 0
}

.btn--blocklink::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.btn--minwidth {
    justify-content: space-between
}

@media (min-width:768px) {
    .btn--minwidth {
        min-width: 18rem
    }
}

.btn--fullwidth {
    min-height: 2.875rem;
    justify-content: space-between;
    width: 100%
}

.btn--submit {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='18' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='m28.723 5.144 3.133 3.133a.492.492 0 0 1 0 .696l-3.133 3.133a.492.492 0 0 1-.696-.696l2.292-2.292H0v-.985h30.32L28.026 5.84a.492.492 0 1 1 .696-.696Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 2rem 1.125rem;
    background-position: right 1rem center;
    background-repeat: no-repeat;
    min-width: 11rem;
    text-align: left
}

[data-theme=light] .btn--submit {
    background-color: #dbb216
}

.bg-yellow .btn--submit {
    background-color: transparent;
    border: 1px solid #000
}

.bg-yellow .btn--submit:focus,
.bg-yellow .btn--submit:hover {
    background-color: #b16b2b;
    border-color: #b16b2b
}

.bg-orange .btn--submit {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='18' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='m28.723 5.144 3.133 3.133a.492.492 0 0 1 0 .696l-3.133 3.133a.492.492 0 0 1-.696-.696l2.292-2.292H0v-.985h30.32L28.026 5.84a.492.492 0 1 1 .696-.696Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    border: 1px solid #fff;
    color: #fff
}

.bg-orange .btn--submit:focus,
.bg-orange .btn--submit:hover {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='18' fill='%23000'%3E%3Cpath fill-rule='evenodd' d='m28.723 5.144 3.133 3.133a.492.492 0 0 1 0 .696l-3.133 3.133a.492.492 0 0 1-.696-.696l2.292-2.292H0v-.985h30.32L28.026 5.84a.492.492 0 1 1 .696-.696Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    border-color: #fff;
    color: #000
}

.btn--white {
    background-color: #fff;
    color: #000
}

.btn--white:focus,
.btn--white:hover {
    color: #fff
}

.btn--border {
    background-color: transparent;
    border: 1px solid currentColor;
    color: inherit
}

.btn--border:focus,
.btn--border:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000
}

.btn--border-black {
    background-color: transparent;
    border: 1px solid #000;
    color: inherit
}

.btn--border-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff
}

.btn--border-white:focus,
.btn--border-white:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000
}

.btn--border-yellow {
    background-color: transparent;
    border: 1px solid #dbb216;
    color: #dbb216
}

.btn--border-yellow:focus,
.btn--border-yellow:hover {
    background-color: #dbb216;
    border-color: #dbb216
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem
}

.btn-group--stacked {
    align-items: flex-start;
    flex-direction: column
}

.cta {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-family: montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
    gap: 1rem;
    line-height: 2;
    padding: 0;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: background-color .2s, color .2s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

.cta:focus,
.cta:hover {
    outline: 0;
    text-decoration: underline;
    text-underline-offset: 3px
}

.cta__icon {
    height: 1rem;
    width: 1rem
}

@media (min-width:1200px) {
    .cta__icon {
        height: 1.5rem;
        width: 1.5rem
    }
}

.cta-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem
}

.filter__btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media (min-width:768px) {
    .filter__btn-group {
        flex-direction: row
    }
}

@media (min-width:1200px) {
    .filter__btn-group {
        gap: 1.5rem
    }
}

.filter__control {
    background-color: #000;
    background-position: right .5rem top 50%;
    border-color: transparent;
    color: inherit;
    padding: .5rem 2rem .5rem .5rem
}

.bg-dark-grey .filter__control {
    background-color: #211f1f
}

.bg-dark-grey .filter__control,
[data-theme=light] .filter__control {
    border-color: transparent
}

select.filter__control {
    width: auto
}

.field {
    margin-bottom: 1.25rem;
    position: relative
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    outline: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

input,
label,
select,
textarea {
    font-size: 1rem
}

label,
legend {
    line-height: 1.1;
    margin-bottom: .5rem
}

label {
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    font-weight: 400
}

input,
select,
textarea {
    background-color: #211f1f;
    border: 1px solid currentColor;
    border-radius: 0;
    color: #fff;
    font-family: montserrat, sans-serif;
    font-weight: 400;
    line-height: 1.25;
    width: 100%
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
    color: currentColor
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: currentColor
}

[data-theme=light] input,
[data-theme=light] select,
[data-theme=light] textarea {
    background-color: transparent;
    border-color: #000;
    color: #000
}

.bg-dark-grey input,
.bg-dark-grey select,
.bg-dark-grey textarea {
    border-color: #fff;
    color: #fff
}

input:focus,
select:focus,
textarea:focus {
    border-color: #dbb216;
    outline: 0
}

.bg-orange input:not(.btn),
.bg-orange select,
.bg-orange textarea,
.bg-yellow input:not(.btn),
.bg-yellow select,
.bg-yellow textarea {
    background-color: rgba(255, 255, 255, .6);
    border-color: transparent;
    color: #000
}

[data-theme=light] .bg-orange input:not(.btn),
[data-theme=light] .bg-orange select,
[data-theme=light] .bg-orange textarea,
[data-theme=light] .bg-yellow input:not(.btn),
[data-theme=light] .bg-yellow select,
[data-theme=light] .bg-yellow textarea {
    border-color: transparent
}

input[type=submit] {
    width: auto
}

input[type=date],
input[type=datetime-local],
input[type=datetime],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
    font-family: montserrat, sans-serif;
    padding: .75rem 1rem
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    -webkit-appearance: none
}

select {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 1rem;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    field-sizing: content;
    font-family: montserrat, sans-serif;
    width: 100%;
    padding: .75rem 3rem .75rem 1rem
}

[data-theme=light] select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='black'/%3E%3C/svg%3E")
}

.bg-dark-grey select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='white'/%3E%3C/svg%3E")
}

select::-ms-expand {
    display: none
}

input[type=date] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%0A%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M4 13.706c0-0.611 0.495-1.105 1.105-1.105h21.789c0.611 0 1.105 0.495 1.105 1.105v12.041c0 1.244-1.008 2.252-2.252 2.252h-19.495c-1.244 0-2.252-1.008-2.252-2.252v-12.041zM6.211 14.812v10.936c0 0.023 0.018 0.041 0.041 0.041h19.495c0.023 0 0.041-0.019 0.041-0.041v-10.936h-19.578z'%3E%3C/path%3E%3Cpath d='M6.252 7.931c-0.023 0-0.041 0.019-0.041 0.041v4.628h19.578v-4.628c0-0.023-0.019-0.041-0.041-0.041h-19.495zM4 7.972c0-1.244 1.008-2.252 2.252-2.252h19.495c1.244 0 2.252 1.008 2.252 2.252v5.734c0 0.611-0.495 1.105-1.105 1.105h-21.789c-0.611 0-1.105-0.495-1.105-1.105v-5.734z'%3E%3C/path%3E%3Cpath d='M11.414 4c0.611 0 1.105 0.495 1.105 1.105v4.587c0 0.611-0.495 1.105-1.105 1.105s-1.105-0.495-1.105-1.105v-4.587c0-0.611 0.495-1.105 1.105-1.105z'%3E%3C/path%3E%3Cpath d='M20.586 4c0.611 0 1.105 0.495 1.105 1.105v4.587c0 0.611-0.495 1.105-1.105 1.105s-1.105-0.495-1.105-1.105v-4.587c0-0.611 0.495-1.105 1.105-1.105z'%3E%3C/path%3E%3Cpath d='M17.188 22.307c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.105-1.105 1.105h-3.44c-0.611 0-1.105-0.495-1.105-1.105z'%3E%3C/path%3E%3Cpath d='M9.161 22.307c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.105-1.105 1.105h-3.44c-0.611 0-1.105-0.495-1.105-1.105z'%3E%3C/path%3E%3Cpath d='M17.188 17.72c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.106-1.105 1.106h-3.44c-0.611 0-1.105-0.495-1.105-1.106z'%3E%3C/path%3E%3Cpath d='M9.161 17.72c0-0.611 0.495-1.105 1.105-1.105h3.44c0.611 0 1.105 0.495 1.105 1.105s-0.495 1.106-1.105 1.106h-3.44c-0.611 0-1.105-0.495-1.105-1.106z'%3E%3C/path%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 1.5rem;
    color: #000
}

::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0
}

.gfield--type-choice input[type=checkbox],
.gfield--type-choice input[type=radio] {
    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
}

.gfield--type-choice input[type=checkbox]:not(caption),
.gfield--type-choice input[type=radio]:not(caption) {
    position: absolute !important
}

.custom-checkbox,
input[type=checkbox]+.gform-field-label {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    min-height: 2rem;
    padding: .45rem 0 .25rem 3rem;
    position: relative;
    width: auto
}

@media (min-width:992px) {

    .custom-checkbox,
    input[type=checkbox]+.gform-field-label {
        padding-left: 3.5rem
    }
}

.custom-checkbox::after,
.custom-checkbox::before,
input[type=checkbox]+.gform-field-label::after,
input[type=checkbox]+.gform-field-label::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0
}

.custom-checkbox::before,
input[type=checkbox]+.gform-field-label::before {
    background-color: transparent;
    border: 1px solid currentColor;
    height: 1.875rem;
    width: 1.875rem
}

.custom-checkbox::after,
input[type=checkbox]+.gform-field-label::after {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    height: 1.875rem;
    left: 0;
    width: 1.875rem
}

input[type=checkbox]:checked+.custom-checkbox,
input[type=checkbox]:checked+.gform-field-label {
    text-decoration: none
}

input[type=checkbox]:checked+.custom-checkbox::before,
input[type=checkbox]:checked+.gform-field-label::before {
    background-color: #dbb216;
    border-width: 2px
}

.bg-orange input[type=checkbox]:checked+.custom-checkbox::before,
.bg-orange input[type=checkbox]:checked+.gform-field-label::before,
.bg-yellow input[type=checkbox]:checked+.custom-checkbox::before,
.bg-yellow input[type=checkbox]:checked+.gform-field-label::before {
    background-color: #000
}

.custom-radio,
input[type=radio]+.gform-field-label {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    min-height: 2rem;
    padding: .45rem 0 .25rem 3rem;
    position: relative;
    width: auto
}

@media (min-width:992px) {

    .custom-radio,
    input[type=radio]+.gform-field-label {
        padding-left: 3rem
    }
}

.custom-radio::after,
.custom-radio::before,
input[type=radio]+.gform-field-label::after,
input[type=radio]+.gform-field-label::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0
}

.custom-radio::before,
input[type=radio]+.gform-field-label::before {
    background-color: transparent;
    border: 1px solid currentColor;
    height: 1.875rem;
    width: 1.875rem
}

.custom-radio::after,
input[type=radio]+.gform-field-label::after {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.25rem;
    height: 1.875rem;
    left: 0;
    width: 1.875rem
}

input[type=radio]:checked+.custom-radio,
input[type=radio]:checked+.gform-field-label {
    text-decoration: none
}

input[type=radio]:checked+.custom-radio::before,
input[type=radio]:checked+.gform-field-label::before {
    background-color: #dbb216;
    border-width: 2px
}

.bg-orange input[type=radio]:checked+.custom-checkbox::before,
.bg-orange input[type=radio]:checked+.gform-field-label::before,
.bg-yellow input[type=radio]:checked+.custom-checkbox::before,
.bg-yellow input[type=radio]:checked+.gform-field-label::before {
    background-color: #000
}

.gfield {
    margin-bottom: 1.25rem
}

.gfield--type-radio .gfield_label {
    margin-bottom: 2rem
}

.gform_required_legend {
    font-size: 1rem;
    margin-bottom: 1rem
}

.gf_placeholder {
    color: #dbb216
}

.gform_submission_error {
    font-size: 1.25rem
}

.gfield_validation_message {
    color: inherit;
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    padding-top: .25rem
}

.gform-field-label--type-inline {
    margin-bottom: 1.25rem
}

.hidden_label .gfield_label,
.hidden_sub_label {
    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
}

.hidden_label .gfield_label:not(caption),
.hidden_sub_label:not(caption) {
    position: absolute !important
}

.subscribe-form .gform_fields {
    display: grid;
    gap: 0 1.25rem
}

@media (min-width:768px) {
    .subscribe-form .gform_fields {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width:768px) {
    .subscribe-form .gfield--type-email {
        grid-column: 1/3
    }
}

@media (min-width:768px) {
    .sidebar-form .gform_fields {
        display: grid;
        gap: 0 .875rem;
        grid-template-columns: 5fr 7fr
    }

    .sidebar-form .gform_fields>.gfield {
        grid-column: 2/3
    }

    .sidebar-form .gform_fields .sidebar-form__sidebar {
        grid-column: 1/2;
        grid-row: 1/5
    }

    .sidebar-form .gform_footer {
        display: grid;
        gap: 0 .875rem;
        grid-template-columns: 5fr 7fr;
        place-items: flex-start
    }

    .sidebar-form .gform_footer>.gform_button {
        grid-column: 2/3
    }
}

.site-footer {
    padding: 2rem 0
}

@media (min-width:1200px) {
    .site-footer {
        padding: 3.5rem 0 2.5rem
    }
}

.menu {
    font-size: .875rem;
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0
}

.menu a {
    text-decoration: none
}

.menu a:focus,
.menu a:hover {
    text-decoration: underline;
    text-underline-offset: 4px
}

@media (min-width:1200px) {
    .menu {
        font-size: 1.125rem
    }
}

.menu-item {
    padding: .125rem 0
}

@media (min-width:992px) {
    .menu-item {
        padding: .25rem 0
    }
}

.menu--2-column {
    -moz-columns: 2;
    columns: 2;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
}

@media (min-width:768px) {
    .menu--horizontal {
        display: flex;
        gap: 1.5rem
    }
}

@media (min-width:1200px) {
    .menu--horizontal {
        gap: 2.5rem
    }
}

.container-xxl {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.container-fullwidth {
    max-width: none;
    padding-left: 0;
    padding-right: 0
}

@media (max-width:767.98px) {
    .container-p-0-sm {
        padding: 0
    }
}

.no-gutters {
    margin-right: 0;
    margin-left: 0
}

.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0
}

@media (min-width:768px) {
    .gutters-sm {
        margin-right: -.5rem;
        margin-left: -.5rem
    }

    .gutters-sm>.col,
    .gutters-sm>[class*=col-] {
        padding-right: .5rem;
        padding-left: .5rem
    }
}

@media (min-width:992px) {
    .gutters-md {
        margin-right: -1rem;
        margin-left: -1rem
    }

    .gutters-md>.col,
    .gutters-md>[class*=col-] {
        padding-right: 1rem;
        padding-left: 1rem
    }
}

@media (min-width:992px) {
    .gutters-lg {
        margin-right: -1.5rem;
        margin-left: -1.5rem
    }

    .gutters-lg>.col,
    .gutters-lg>[class*=col-] {
        padding-right: 1.5rem;
        padding-left: 1.5rem
    }
}

@media (min-width:992px) {
    .gutters-xl {
        margin-right: -2rem;
        margin-left: -2rem
    }

    .gutters-xl>.col,
    .gutters-xl>[class*=col-] {
        padding-right: 2rem;
        padding-left: 2rem
    }
}

.site-header {
    background-color: transparent;
    color: #fff;
    left: 0;
    position: fixed;
    top: 0;
    right: 0;
    transition: background-color .4s ease, color .4s ease;
    z-index: 30
}

[data-theme=light] .site-header.site-header--text-black:not(.is-opaque) {
    color: #000
}

.site-header.is-opaque {
    background-color: #000
}

.admin-bar .site-header {
    top: 2rem
}

.site-header__inner {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 90rem;
    padding: 1rem .75rem 1rem 1.25rem
}

@media (min-width:1200px) {
    .site-header__inner {
        padding: 1rem 1.5rem
    }
}

@media (min-width:1600px) {
    .site-header__inner {
        padding: 1.5rem
    }
}

.site-header__brand {
    position: relative;
    z-index: 30
}

@media (max-width:1199.98px) {
    .site-header__navbar {
        width: 100%
    }
}

.site-header__right {
    position: relative;
    z-index: 20
}

@media (min-width:992px) {
    .site-header__right {
        display: flex;
        justify-content: flex-end
    }
}

.site-link {
    text-decoration: none
}

.site-logo {
    fill: currentColor;
    height: 3.75rem;
    max-width: 100%;
    width: auto;
    transition: height .3s ease-out
}

@media (min-width:1200px) {
    .site-logo {
        height: 6rem
    }
}

.site-logo--footer {
    height: 3rem
}

@media (min-width:1200px) {
    .site-logo--footer {
        height: 5rem
    }
}

.progressbar {
    background-color: #dbb216;
    height: .5rem;
    left: 0;
    position: fixed;
    top: 0;
    z-index: 50
}

@supports (animation-timeline:scroll(root)) {
    .progressbar {
        animation-timeline: scroll(root);
        animation-name: scrollProgress;
        animation-duration: auto;
        animation-timing-function: linear;
        transform-origin: 0 50%;
        width: 100%
    }
}

@keyframes scrollProgress {
    0% {
        transform: scaleX(0)
    }

    100% {
        transform: scaleX(1)
    }
}

.language-selector {
    display: flex;
    gap: .25rem
}

.language-selector__link {
    opacity: .5;
    padding: .25rem;
    text-decoration: none;
    text-transform: uppercase;
    transform: opacity .2s ease
}

.language-selector__link.is-active,
.language-selector__link:focus,
.language-selector__link:hover {
    font-weight: 500;
    opacity: 1
}

img {
    height: auto;
    max-width: 100%
}

.object-cover {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.object-contain {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.object-position-left {
    -o-object-position: left center;
    object-position: left center
}

.object-position-top {
    -o-object-position: center top;
    object-position: center top
}

iframe {
    border: 0;
    min-width: 100%;
    max-width: 100%;
    width: 100%
}

.modal,
.modal__overlay {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0
}

.modal {
    display: flex;
    z-index: 50
}

.modal[aria-hidden=true] {
    display: none
}

.modal__overlay {
    animation: modal-fade-in .2s both;
    background-color: rgba(0, 0, 0, .85)
}

.modal__content {
    animation: modal-fade-in .6s .2s both, modal-slide-up .6s .2s both;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin: auto;
    max-height: calc(100vh - 64px);
    max-width: 75rem;
    position: relative;
    width: calc(100% - 40px);
    z-index: 2
}

@media (min-width:1400px) {
    .modal__content {
        max-height: calc(100vh - 200px);
        min-height: 20rem
    }
}

.modal__content--video {
    background: 0 0;
    height: 100%;
    justify-content: center
}

.modal__content--video>div {
    max-height: 100%
}

.modal__content--external-link {
    background-color: #fff;
    color: #000;
    min-height: 0;
    padding: 1.5rem
}

@media (min-width:768px) {
    .modal__content--external-link {
        max-width: 30rem
    }
}

.modal__content--gallery {
    background-color: #211f1f
}

@media (min-width:1400px) {
    .modal__content--gallery {
        max-height: calc(100vh - 100px)
    }
}

[data-theme=light] .modal__content--gallery {
    background-color: #fff
}

.modal__content--map {
    background-color: #000;
    max-height: 100svh;
    width: 100%
}

@media (min-width:1200px) {
    .modal__content--map {
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        max-width: 90rem
    }
}

.modal__inner {
    overflow-y: auto
}

.modal__inner::-webkit-scrollbar {
    background-color: #000;
    width: .5rem
}

.modal__inner::-webkit-scrollbar-thumb {
    background-color: #dbb216
}

[data-theme=light] .modal__inner::-webkit-scrollbar {
    background-color: #211f1f
}

.modal__footer {
    padding-top: 1.5rem
}

.modal__close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    z-index: 10
}

@media (min-width:1200px) {
    .modal__close {
        right: 2.5em;
        top: 2.5rem
    }
}

@media (min-width:1200px) {
    .modal__close--has-label {
        margin-right: 5rem
    }
}

.modal__close--bottom {
    bottom: 2rem;
    right: 2rem;
    top: unset
}

.modal__close__label {
    color: currentColor;
    display: none;
    font-size: .875rem
}

@media (min-width:1200px) {
    .modal__close__label {
        display: block;
        position: absolute;
        left: calc(100% + 1rem);
        top: 50%;
        transform: translateY(-50%)
    }
}

@keyframes modal-fade-in {
    from {
        opacity: 0
    }
}

@keyframes modal-slide-up {
    from {
        transform: translateY(10%)
    }
}

.modal__content--notification {
    background-color: transparent;
    max-height: calc(100vh - 4rem);
    max-width: 47rem;
    min-height: 0
}

.modal__content--notification.has-icon {
    max-width: 56rem
}

.modal-link .modal__inner {
    max-height: 75vh
}

bm-multiselect {
    position: relative
}

.multiselect__button {
    align-self: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M6.90576 8L0.925189 0.499999L12.8863 0.5L6.90576 8Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem top 50%;
    background-size: 1rem;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    padding: .5rem 3rem .5rem 0;
    width: 100%
}

.multiselect__button:focus,
.multiselect__button:hover {
    color: #dbb216
}

.multiselect__select {
    background-position: right .25rem top 1rem;
    display: none;
    height: auto;
    overflow-y: auto;
    padding: .75rem 2rem .75rem 0
}

.multiselect__select option {
    margin-bottom: .5rem
}

@media (pointer:coarse) {
    .multiselect__select {
        display: block;
        height: 2.75rem
    }

    .multiselect__select+.multiselect__button {
        display: none
    }
}

.multiselect__dropdown {
    background-color: #211f1f;
    color: #fff;
    display: flex;
    filter: drop-shadow(0 0 8px #000);
    flex-direction: column;
    gap: 1.25rem;
    left: 0;
    min-width: 100%;
    padding: .75rem 1rem;
    position: absolute;
    top: calc(100% + .5rem);
    z-index: 10
}

@media (min-width:768px) {
    .multiselect__dropdown {
        min-width: 16rem
    }
}

.multiselect__checkbox:focus+.multiselect__checkbox__label::before {
    background-color: rgba(219, 178, 22, .3)
}

.multiselect__checkbox__label {
    cursor: pointer;
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    min-height: 1.25rem;
    padding-right: 3rem;
    position: relative;
    transition: color .2s ease;
    width: 100%
}

.multiselect__checkbox__label::before {
    background-color: transparent;
    content: "";
    display: block;
    height: 1.25rem;
    position: absolute;
    right: 0;
    top: 0;
    transition: background-color .2s ease;
    width: 1.25rem
}

.multiselect__checkbox__label::before {
    border: 1px solid currentColor
}

.multiselect__checkbox__label:hover::before {
    background-color: rgba(219, 178, 22, .3)
}

.multiselect__checkbox:checked+.multiselect__checkbox__label {
    color: #dbb216
}

.multiselect__checkbox:checked+.multiselect__checkbox__label::before {
    background-color: #dbb216;
    border-color: #fff
}

.navbar {
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 10
}

.nav-is-open .navbar {
    color: #fff
}

@media (max-width:1199.98px) {
    .navbar {
        background-color: #000;
        color: #fff;
        height: 100lvh;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        position: absolute;
        right: 0;
        top: 0;
        transform: translate3d(100%, 0, 0);
        transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
        visibility: hidden;
        width: 100%
    }

    .nav-is-open .navbar {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }

    .nav-is-open .navbar::before {
        background-color: #000;
        content: "";
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        height: 100px;
        z-index: 1
    }
}

@media (min-width:1200px) {
    .navbar {
        padding: 0;
        transition: padding .3s ease
    }
}

.navbar__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10rem 1.25rem 1.25rem
}

@media (min-width:1200px) {
    .navbar__inner {
        align-items: flex-end;
        flex-direction: column-reverse;
        height: auto;
        overflow: unset;
        padding: 0
    }
}

.navbar__utility {
    margin-top: auto;
    padding-bottom: 3rem
}

@media (min-width:1200px) {
    .navbar__utility {
        margin-bottom: 1.5rem;
        padding-bottom: 0
    }
}

@media (min-width:1200px) {
    .nav__content {
        position: relative
    }
}

.nav {
    list-style: none;
    margin: 0;
    padding: 0
}

@media (min-width:1200px) {
    .nav--level-0 {
        display: flex;
        gap: 1.25rem
    }
}

@media (min-width:1400px) {
    .nav--level-0 {
        gap: 2rem
    }
}

@media (min-width:1200px) {
    .nav--level-1 {
        border-color: #fff;
        border-style: solid;
        border-width: 0 1px;
        padding: 0 1.25rem;
        width: 50%
    }
}

.nav__item {
    margin-bottom: .5rem
}

@media (min-width:992px) {
    .nav__item--level-0 {
        margin-bottom: 0
    }
}

.nav__link {
    align-items: center;
    display: flex;
    font-size: 1.125rem;
    font-weight: 400;
    justify-content: space-between;
    line-height: 1.5;
    padding: .25rem .5rem;
    position: relative;
    text-decoration: none;
    transition: background-color .1s ease
}

@media (min-width:1200px) {
    .nav__link {
        font-size: 1.375rem
    }
}

.is-current>.nav__link,
.nav__link:focus,
.nav__link:hover {
    background-color: #211f1f;
    background-color: #000;
    text-decoration: none
}

.hashlink.is-current>.nav__link {
    text-decoration: none
}

.nav__link--level-0 {
    font-size: 1.375rem
}

@media (min-width:1200px) {
    .nav__link--level-0 {
        font-size: .875rem;
        padding-left: 0;
        padding-right: 0;
        white-space: nowrap
    }

    .nav__link--level-0::after {
        background-color: currentColor;
        bottom: 0;
        content: "";
        display: block;
        height: 1px;
        left: 0;
        position: absolute;
        transition: width .2s ease;
        width: 0
    }

    .is-current-parent>.nav__link--level-0,
    .is-current>.nav__link--level-0,
    .nav__link--level-0:focus,
    .nav__link--level-0:hover {
        background-color: transparent;
        text-decoration: none
    }

    .is-current-parent>.nav__link--level-0::after,
    .is-current>.nav__link--level-0::after,
    .nav__link--level-0:focus::after,
    .nav__link--level-0:hover::after {
        width: 100%
    }
}

@media (min-width:1200px) {
    .nav__link--level-0[data-subnav-toggle] {
        gap: .5rem
    }

    .nav__link--level-0[data-subnav-toggle] .nav__icon {
        color: inherit;
        transition: transform .2s ease
    }

    .nav__link--level-0[data-subnav-toggle].is-active .nav__icon {
        transform: rotate(180deg)
    }
}

.nav__link--landing {
    justify-content: flex-start;
    margin-bottom: 1.5rem
}

.nav__link--landing .nav__icon {
    height: 2rem;
    margin-left: 1.5rem;
    width: 2rem
}

.nav__icon {
    color: #dbb216;
    height: 1.25rem;
    margin-left: .25rem;
    pointer-events: none;
    transition: transform .2s ease;
    width: 1.25rem
}

.navbar__btn-group {
    align-items: center;
    display: flex;
    gap: 1rem
}

@media (min-width:1200px) {
    .navbar__btn-group {
        gap: 2rem
    }
}

.navbar-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    display: flex;
    font-size: .875rem;
    gap: .5rem;
    padding: 0;
    text-decoration: none
}

.navbar-btn:focus,
.navbar-btn:hover {
    text-decoration: underline;
    text-underline-offset: 5px
}

.is-opaque .navbar-btn:focus,
.is-opaque .navbar-btn:hover {
    color: #dbb216
}

.navbar-btn span {
    pointer-events: none
}

.subnav {
    background-color: #000;
    color: #fff
}

@media (max-width:1199.98px) {
    .subnav {
        bottom: 0;
        left: 0;
        overflow-y: auto;
        overflow-x: hidden;
        position: absolute;
        right: 0;
        top: 8rem;
        transform: translate3d(100%, 0, 0);
        transition: transform .2s ease;
        width: 100%;
        z-index: 1
    }
}

.subnav.is-open {
    transform: translate3d(0, 0, 0);
    transition-timing-function: ease-out
}

@media (min-width:1200px) {
    .subnav-level-1 {
        background-color: #211f1f;
        left: 0;
        max-height: none;
        opacity: 0;
        overflow: unset;
        position: absolute;
        right: 0;
        top: 0;
        transform: none;
        transition: opacity .2s ease, visibility .2s ease .3s;
        visibility: hidden;
        z-index: -1
    }

    .subnav-level-1.is-open {
        max-height: none;
        opacity: 1;
        transition: opacity .2s ease, visibility .2s ease;
        visibility: visible
    }

    .subnav-level-1 .subnav__inner {
        margin: 0 auto;
        max-width: 90rem;
        padding: 11rem 1.5rem 2.5rem
    }
}

.subnav-level-2 {
    top: 0
}

@media (min-width:1200px) {
    .subnav-level-2 {
        background-color: transparent;
        height: 100%;
        left: 50%;
        opacity: 0;
        overflow: auto;
        position: absolute;
        transition: opacity .1s ease, visibility .1s ease;
        transition: none;
        visibility: hidden;
        width: 50%
    }

    .subnav-level-2.is-open {
        opacity: 1;
        visibility: visible
    }

    .subnav-level-2 .subnav__inner {
        padding: 0 1.25rem
    }

    .subnav-level-2::-webkit-scrollbar {
        background-color: #000;
        height: .5rem;
        width: .5rem
    }

    .subnav-level-2::-webkit-scrollbar-thumb {
        background-color: #dbb216
    }
}

.subnav__heading {
    font-family: zuume-edge, serif;
    font-weight: 600;
    font-size: 3.125rem;
    line-height: 1
}

.subnav__inner {
    margin-top: 2.5rem;
    padding: 0 1.25rem
}

@media (min-width:1200px) {
    .subnav__inner {
        margin-top: 0
    }
}

.subnav__control {
    padding: 0 1.25rem
}

.subnav__button {
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    display: flex;
    font-size: .875rem;
    padding: .5rem 0;
    width: 100%
}

.subnav__button:focus,
.subnav__button:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.subnav__button__icon {
    pointer-events: none;
    margin-right: .5rem
}

.nav-card {
    position: relative
}

@media (min-width:1200px) {
    .nav-card {
        margin-top: -4rem
    }
}

.nav-card:focus-within .nav-card__link,
.nav-card:hover .nav-card__link {
    text-decoration: underline;
    text-underline-offset: 3px
}

.nav-card__link {
    font-weight: 500;
    text-decoration: none
}

.nav-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.nav-card__media {
    display: grid;
    place-items: center;
    position: relative
}

.nav-card__media>* {
    grid-row: 1;
    grid-column: 1
}

.navbar-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    height: 2.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    transition: color .3s ease;
    width: 2.5rem
}

.navbar-toggle:focus,
.navbar-toggle:hover {
    color: #dbb216;
    outline: 0
}

.navbar-toggle__icon {
    align-items: center;
    fill: currentColor;
    display: flex;
    height: 1.5rem;
    pointer-events: none;
    position: relative;
    transition: fill .3s ease;
    width: 1.5rem
}

.navbar-toggle__icon .svg-open {
    display: none
}

[aria-expanded=true] .navbar-toggle__icon .svg-open {
    display: block
}

[aria-expanded=true] .navbar-toggle__icon .svg-closed {
    display: none
}

.search-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    font-size: .875rem;
    height: 2.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    transition: color .1s ease;
    width: 2.5rem
}

.search-toggle:focus,
.search-toggle:hover {
    color: #dbb216
}

.search-toggle span {
    pointer-events: none
}

.search-panel {
    background-color: #000;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translate3d(0, -100%, 0);
    transition: opacity .3s ease, visibility .3s ease, background-color .3s ease;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    visibility: hidden;
    z-index: 20
}

.admin-bar .search-panel {
    top: 2rem
}

.search-panel.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible
}

.search-panel__inner {
    background-color: #dbb216;
    display: flex;
    height: 100%;
    margin-top: 5.75rem;
    padding: 1rem 0;
    position: relative
}

@media (min-width:992px) {
    .search-panel__inner {
        margin-top: 9rem
    }
}

.search-panel__close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
}

.search-field {
    position: relative
}

.search-field__control[type=search] {
    background-color: transparent;
    border: 1px solid #dbb216;
    color: inherit;
    padding: .5625rem 2.5rem .5625rem 1rem
}

.search-field__control[type=search]::-moz-placeholder {
    color: inherit
}

.search-field__control[type=search]::placeholder {
    color: inherit
}

.search-field__button {
    background-color: #dbb216;
    color: #000;
    height: 2.5rem;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 2.5rem
}

.search-field__button:focus,
.search-field__button:hover {
    background-color: #b16b2b
}

.search-field--lg .search-field__control[type=search] {
    border: 0;
    font-size: 1.25rem;
    padding: .5rem 2.5rem .5rem 3rem
}

@media (min-width:1200px) {
    .search-field--lg .search-field__control[type=search] {
        font-size: 1.875rem;
        padding-left: 4rem
    }
}

.search-field--lg .search-field__button {
    color: #fff;
    left: 0;
    right: unset
}

.search-field--lg .search-field__button:focus,
.search-field--lg .search-field__button:hover {
    background-color: transparent;
    color: #b16b2b
}

.search-panel__results {
    color: #000;
    width: 100%
}

.search-result {
    padding: .5rem 0
}

.search-result__title {
    font-size: 1rem
}

.search-result__link {
    text-decoration: none
}

.search-result__link:focus,
.search-result__link:hover {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px
}

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

.notification {
    background-color: #211f1f;
    color: currentColor;
    padding: 2rem 4rem 2rem 2rem;
    position: relative
}

[data-theme=light] .notification {
    background-color: #fff
}

.has-icon .notification {
    border-radius: .75rem
}

.notification__header {
    align-items: flex-start;
    display: flex;
    gap: 2rem
}

.notification-icon {
    flex-shrink: 0
}

.notification-icon__img {
    width: 3rem
}

@media (min-width:1200px) {
    .notification-icon__img {
        width: 6rem
    }
}

.social-menu {
    display: flex;
    gap: 1.125rem;
    list-style: none;
    padding-left: 0
}

.social-link {
    align-items: center;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    display: flex;
    height: 2rem;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease;
    width: 2rem
}

.social-link:focus,
.social-link:hover {
    background-color: #dbb216
}

.social-link--yellow {
    background-color: #dbb216
}

.social-link--yellow:focus,
.social-link--yellow:hover {
    background-color: #b16b2b
}

.table-responsive {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch
}

.table-responsive::-webkit-scrollbar {
    background-color: #000;
    height: .5rem;
    width: .5rem
}

.table-responsive::-webkit-scrollbar-thumb {
    background-color: #fff
}

table {
    border: 0;
    margin: 1.5rem 0;
    width: 100%
}

td,
th {
    font-size: .875rem;
    padding: .875rem 1rem;
    vertical-align: top
}

td:first-child,
th:first-child {
    padding-left: 0
}

td:last-child,
th:last-child {
    padding-right: 0
}

@media (min-width:1200px) {

    td,
    th {
        font-size: 1rem
    }
}

th {
    line-height: 1.2
}

td {
    border-bottom: 1px solid currentColor
}

tbody tr:first-child td {
    border-top: 1px solid currentColor
}

.table--fixed {
    table-layout: fixed;
    min-width: 100%
}

@media (min-width:992px) {
    .table--lg-fixed {
        table-layout: fixed
    }
}

.table--nowrap {
    white-space: nowrap
}

.table-wrapper {
    margin: 2rem 0;
    width: 100%;
    overflow: scroll;
    position: relative
}

.table-wrapper.scrollable {
    cursor: all-scroll
}

.table-wrapper.scrollable:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_2' data-name='Layer 2' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 48'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23dbb216; %7D %3C/style%3E%3C/defs%3E%3Cg id='icons'%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-1' d='M29.6,3.2L25.6.2c-.44-.33-1.07-.24-1.4.2-.33.44-.24,1.07.2,1.4l1.6,1.2h-6c-.55,0-1,.45-1,1s.45,1,1,1h6l-1.6,1.2c-.44.33-.53.96-.2,1.4.2.26.5.4.8.4.21,0,.42-.06.6-.2l4-3c.25-.19.4-.48.4-.8s-.15-.61-.4-.8Z'/%3E%3Cpath class='cls-1' d='M10,3H4l1.6-1.2c.44-.33.53-.96.2-1.4-.33-.44-.96-.53-1.4-.2L.4,3.2c-.25.19-.4.48-.4.8s.15.61.4.8l4,3c.18.14.39.2.6.2.3,0,.6-.14.8-.4.33-.44.24-1.07-.2-1.4l-1.6-1.2h6c.55,0,1-.45,1-1s-.45-1-1-1Z'/%3E%3C/g%3E%3Cpath class='cls-1' d='M36,31v-5c0-1.07,0-2.41-1.29-3.71-1.04-1.05-2.76-1.12-3.95-.65-.56-1.54-2.03-2.64-3.76-2.64-.98,0-1.88.35-2.57.94-.7-1.16-1.97-1.94-3.43-1.94-.73,0-1.41.2-2,.54v-8.54c0-2.21-1.79-4-4-4s-4,1.79-4,4v15.13c-.21-.21-.42-.43-.6-.62-1.56-1.63-3.49-3.65-6-3.57-1.47.05-2.87.87-4.17,2.42-.12.16-.23.37-.23.64,0,.25.1.52.29.71.03.03,2.88,2.91,4.78,7.66l.22.58c1.42,3.72,5.74,15.05,17.7,15.05,6.96,0,10.42-2.54,11.97-8.76.68-2.72,1.03-6.21,1.03-8.24h0ZM33.03,38.76c-1.31,5.28-4.03,7.24-10.03,7.24-10.58,0-14.54-10.36-15.84-13.76-.09-.24-.17-.44-.24-.61-1.51-3.78-3.55-6.43-4.58-7.63h0c.71-.67,1.44-1.04,2.12-1.06,1.61-.07,3.2,1.62,4.49,2.96.75.78,1.4,1.45,2.05,1.81v1.31s-.02.63-.66,1.28c-.39.39-.39,1.03,0,1.41.39.39,1.03.39,1.41,0,1.27-1.27,1.25-2.6,1.25-2.71V10c0-1.1.9-2,2-2s2,.9,2,2v14c0,.55.45,1,1,1s1-.45,1-1v-2c0-1.1.9-2,2-2s2,.9,2,2v2c0,.55.45,1,1,1s1-.45,1-1v-1c0-1.1.9-2,2-2s2,.9,2,2v2c0,.55.45,1,1,1s1-.45,1-1v-1c0-.24.26-.4.48-.49.62-.26,1.45-.17,1.82.2.71.71.71,1.37.71,2.29v5h0c0,1.91-.33,5.19-.97,7.76Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: top 20% center;
    background-size: 60px;
    transition: all .4s;
    pointer-events: none
}

.table-wrapper.scrollable.hidden:after {
    opacity: 0
}

.display-404 {
    font-size: 12rem;
    line-height: 1
}

@media (max-width: 991.98px) {
    .display-404 {
        font-size: 6rem;
    }
}

.display-404::after {
    background-color: currentColor;
    content: "";
    display: block;
    height: 2rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    top: calc(100% - 2rem);
    width: 2px
}

.pagination {
    width: 100%
}

.pagination__inner {
    align-items: center;
    display: flex;
    justify-content: center
}

.pagination__menu {
    align-items: center;
    display: flex;
    gap: .5rem;
    justify-content: flex-start;
    width: 100%
}

.pagination__list {
    align-items: center;
    display: flex;
    list-style: none;
    gap: .5rem;
    padding-left: 0
}

.pagination__list li {
    margin: 0
}

.page-numbers {
    align-items: center;
    background-color: transparent;
    border: 0;
    display: flex;
    justify-content: center;
    line-height: 1;
    margin: 0;
    padding: 0 .5rem;
    text-align: center;
    text-decoration: none;
    transition: border-color .3s ease, color .3s ease, transform .2s ease
}

.page-numbers.current,
.page-numbers:focus,
.page-numbers:hover {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px
}

.page-numbers.next,
.page-numbers.prev {
    background-color: #dbb216;
    border-radius: 0;
    color: #000;
    height: 2.25rem;
    overflow: hidden;
    padding: 0;
    transition: background-color .3s ease, color .3s ease, transform .2s ease;
    width: 2.25rem
}

.page-numbers.next:focus,
.page-numbers.next:hover,
.page-numbers.prev:focus,
.page-numbers.prev:hover {
    background-color: #b16b2b
}

.page-numbers.next[disabled],
.page-numbers.prev[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .2
}

.page-numbers.next:hover .page-numbers__icon {
    animation: pagination-icon-animate 1.5s ease .2s
}

.page-numbers.prev:hover .page-numbers__icon {
    animation: pagination-icon-animate-left 1.5s ease .2s
}

@keyframes pagination-icon-animate {
    0% {
        transform: translateX(0)
    }

    30% {
        transform: translateX(32px) scale(.5)
    }

    30.5% {
        transform: translateX(-32px)
    }

    60% {
        transform: translateX(0)
    }
}

@keyframes pagination-icon-animate-left {
    0% {
        transform: translateX(0)
    }

    30% {
        transform: translateX(-32px) scale(.5)
    }

    30.5% {
        transform: translateX(32px)
    }

    60% {
        transform: translateX(0)
    }
}

.theme-toggle {
    align-items: center;
    border: 1px solid currentColor;
    border-radius: 1.5rem;
    display: flex;
    height: 1.5rem;
    position: relative;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    width: 3rem
}

.theme-toggle:hover {
    background-color: #dbb216;
    border-color: #dbb216;
    color: #fff
}

.theme-toggle__switch {
    display: grid;
    height: 1.375rem;
    left: 0;
    place-items: center;
    position: absolute;
    transition: transform .2s ease;
    top: 0;
    width: 1.375rem
}

.theme-toggle__switch::after {
    border-radius: 50%;
    background-color: currentColor;
    content: "";
    display: block;
    height: .75rem;
    width: .75rem
}

[data-theme=dark] .theme-toggle__switch {
    transform: translateX(1.5rem)
}

.theme-toggle__icon {
    transition: opacity .2s ease
}

[data-theme=light] .theme-toggle__icon.is-sun {
    opacity: 0
}

[data-theme=dark] .theme-toggle__icon.is-moon {
    opacity: 0
}

@media (min-width:1200px) {

    p,
    ul {
        margin-bottom: 1.5rem
    }
}

li {
    margin-bottom: .5rem
}

sub,
sup {
    position: relative;
    font-size: .875em;
    line-height: 0;
    padding: 0 .254em;
    vertical-align: baseline
}

sup {
    top: -.75em
}

sub {
    bottom: -.75em
}

blockquote {
    font-family: zuume-edge, serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin: 2rem 0
}

@media (min-width:1200px) {
    blockquote {
        font-size: 3.75rem;
        margin: 3rem 0
    }
}

blockquote:first-child {
    margin-top: 0
}

@media (min-width:1200px) {
    .blockquote--lg {
        font-size: 4.5rem
    }
}

.datetime,
time {
    font-size: .875rem
}

@media (min-width:1200px) {

    .datetime,
    time {
        font-size: 1rem
    }
}

.editorial :last-child {
    margin-bottom: 0
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 6.25rem
    }
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 3.75rem
    }
}

@media (min-width:1200px) {

    .h3,
    h3 {
        font-size: 2.5rem
    }
}

@media (min-width:1200px) {

    .h4,
    h4 {
        font-size: 1.875rem
    }
}

@media (min-width:1200px) {

    .h5,
    h5 {
        font-size: 1.5rem
    }
}

@media (min-width:1200px) {

    .h6,
    h6 {
        font-size: 1.375rem
    }
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-lg,
.display-xl {
    font-family: zuume-edge, serif;
    font-weight: 600;
    line-height: .9
}

.display-xl {
    font-size: 6rem
}

@media (min-width:768px) {
    .display-xl {
        font-size: 10rem
    }
}

@media (min-width:1200px) {
    .display-xl {
        font-size: 12.5rem
    }
}

@media (min-width:1400px) {
    .display-xl {
        font-size: 25rem
    }
}

.display-lg {
    font-size: 5rem
}

@media (min-width:768px) {
    .display-lg {
        font-size: 8rem
    }
}

@media (min-width:1400px) {
    .display-lg {
        font-size: 12.5rem
    }
}

@media (min-width:992px) {
    .display-1 {
        font-size: 5rem
    }
}

@media (min-width:1200px) {
    .display-1 {
        font-size: 6.25rem
    }
}

@media (min-width:1200px) {
    .display-2 {
        font-size: 3.75rem
    }
}

@media (min-width:1200px) {
    .display-3 {
        font-size: 2.5rem
    }
}

@media (min-width:1200px) {
    .display-4 {
        font-size: 2rem
    }
}

.subheading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.list-style-none {
    list-style: none;
    padding-left: 0
}

.list-highlight {
    display: inline-flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0
}

.list-highlight li {
    border-bottom: 1px solid currentColor;
    margin-bottom: 0;
    padding: .5rem 0
}

.font-sans {
    font-family: montserrat, sans-serif
}

.font-display {
    font-family: zuume-edge, serif
}

.text-xsmall {
    font-size: .675rem
}

@media (min-width:1400px) {
    .text-xsmall {
        font-size: .75rem
    }
}

.text-small {
    font-size: .75rem
}

@media (min-width:1400px) {
    .text-small {
        font-size: .875rem
    }
}

.text-medium {
    font-size: 1.125rem
}

@media (min-width:1400px) {
    .text-medium {
        font-size: 1.375rem
    }
}

.text-large {
    font-size: 1.25rem
}

@media (min-width:1400px) {
    .text-large {
        font-size: 1.5rem
    }
}

.fw-light {
    font-weight: 300
}

.fw-regular {
    font-weight: 400
}

.fw-medium {
    font-weight: 500
}

.fw-semibold {
    font-weight: 500
}

.fw-bold {
    font-weight: 600
}

.fw-xbold {
    font-weight: 700
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.leading-xtight {
    line-height: .8
}

.leading-tight {
    line-height: 1.1
}

.leading-medium {
    line-height: 1.4
}

.text-uppercase {
    text-transform: uppercase
}

.sg-subheader {
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    margin-bottom: 2rem;
    padding-bottom: .5rem
}

.sg-swatch {
    display: inline-block;
    border-radius: 2px;
    height: 2.5rem;
    margin-right: 1rem;
    width: 2.5rem
}

.sg-swatch.bg-white {
    border: 1px solid currentColor
}

.section {
    margin: 4rem 0;
    position: relative
}

@media (min-width:1200px) {
    .section {
        margin: 6rem 0
    }
}

.section:first-child {
    margin-top: 8rem
}

@media (min-width:1200px) {
    .section:first-child {
        margin-top: 14rem
    }
}

.section--lg {
    margin: 6rem 0
}

@media (min-width:1200px) {
    .section--lg {
        margin: 9rem 0
    }
}

.section--padded {
    padding: 4rem 0
}

@media (min-width:1200px) {
    .section--padded {
        padding: 6rem 0
    }
}

.section__bg {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    position: absolute
}

.section__bg+.container-xxl {
    position: relative
}

.section__inner {
    padding: 2.5rem 1.5rem
}

@media (min-width:1200px) {
    .section__inner {
        padding: 6.25rem 0
    }
}

.has-border-top {
    padding-top: 1.5rem;
    position: relative
}

@media (min-width:1200px) {
    .has-border-top {
        padding-top: 3rem
    }
}

.has-border-top::before {
    background-color: currentColor;
    content: "";
    display: block;
    height: 1px;
    left: 1.125rem;
    margin: auto;
    max-width: calc(90rem - 40px);
    position: absolute;
    right: 1.125rem;
    top: 0
}

@media (min-width:1200px) {
    .has-border-top::before {
        left: .75rem;
        right: .75rem
    }
}

.accordion-item {
    border-top: 1px solid currentColor;
    position: relative
}

.accordion-item__panel {
    height: 0;
    overflow: hidden;
    transition: height ease .3s
}

.is-open .accordion-item__panel {
    height: auto
}

.accordion-item__content {
    padding-bottom: 2rem;
    padding-right: 2.5rem
}

.accordion-item__content :last-child {
    margin-bottom: 0
}

.accordion-item__button {
    display: flex;
    font-weight: 500;
    gap: 2rem;
    justify-content: space-between;
    padding: 2rem 0;
    text-align: left;
    width: 100%
}

.accordion-item__button:focus,
.accordion-item__button:hover {
    text-decoration: underline
}

.accordion-item__icon {
    flex-shrink: 0
}

.accordion-item__icon svg {
    transition: transform .2s ease;
    transform: rotate(45deg)
}

.is-open .accordion-item__icon {
    background-color: #b16b2b
}

.is-open .accordion-item__icon svg {
    transform: rotate(0)
}

@media (min-width:992px) {
    .accordion-item--2-column {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .accordion-item--2-column .accordion-item__content {
        padding-bottom: 6rem;
        padding-top: 2rem
    }

    .accordion-item--2-column .accordion-item__icon {
        bottom: 2rem;
        position: absolute;
        right: 0
    }
}

.blockquote-carousel {
    padding-bottom: 3rem
}

@media (min-width:768px) {
    .blockquote-carousel .flickity-control {
        right: 58.3333333333%
    }
}

.blockquote-carousel__cell {
    margin-left: 1.5rem;
    width: 100%
}

.card {
    display: flex;
    flex-direction: column;
    height: calc(100% - 4rem);
    margin: 0 0 4rem;
    position: relative
}

.card:focus-within .card__link,
.card:hover .card__link {
    color: inherit;
    text-decoration: none
}

.card:focus-within .card__image,
.card:hover .card__image {
    transform: scale(1.1)
}

.card__media {
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%
}

.card__image {
    transform: scale(1);
    transition: transform .3s ease
}

@media (min-width:768px) {
    .card__body {
        display: flex;
        flex-direction: column;
        flex: 1
    }
}

.card__date {
    display: block;
    margin-bottom: .375rem
}

.card__title {
    font-family: zuume-edge, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    margin: .5rem 0 1rem 0;
    text-transform: uppercase
}

@media (min-width:1200px) {
    .card__title {
        font-size: 2.5rem
    }
}

.card__link {
    color: inherit;
    text-decoration: none
}

.card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.card__footer {
    margin-top: auto
}

.card__meta {
    position: relative;
    z-index: 10
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    margin-bottom: 1rem
}

.post-tag {
    border: 1px solid currentColor;
    color: inherit;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.25;
    padding: .25rem .5rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s, color .2s ease;
    white-space: nowrap
}

.post-tag:focus,
.post-tag:hover {
    background-color: #dbb216;
    border-color: #dbb216;
    color: #000
}

@media (min-width:768px) {
    .card--featured {
        flex-direction: row-reverse;
        justify-content: space-between
    }
}

@media (min-width:768px) {
    .card--featured .card__body {
        padding-top: 0;
        width: 30%
    }
}

@media (min-width:768px) {
    .card--featured .card__media {
        width: 60%
    }
}

@media (min-width:768px) {
    .card--featured .card__body {
        flex: 0 1 auto
    }
}

.card--featured .card__footer {
    margin-top: 1rem
}

.carousel {
    padding-bottom: 0
}

.carousel .flickity-page-dots {
    bottom: 1.5rem;
    left: 1.5rem
}

@media (min-width:1200px) {
    .carousel .flickity-page-dots {
        bottom: 4.675rem;
        left: 4rem
    }
}

.carousel .flickity-control {
    bottom: 1.5rem;
    right: 1.5rem
}

@media (min-width:1200px) {
    .carousel .flickity-control {
        bottom: 4rem;
        right: 4rem
    }
}

@media (min-width:992px) {
    .carousel--has-ctagroup .flickity-control {
        right: 50%
    }
}

@media (min-width:992px) {
    .carousel--align-right .flickity-control {
        left: 50%
    }
}

.carousel__cell {
    width: 100%
}

.is-fade .carousel__cell {
    opacity: 0 !important;
    transition: opacity .5s ease-in-out !important
}

.is-fade .carousel__cell.is-selected {
    opacity: 1 !important
}

[data-carousel=carousel].carousel--is-ready .carousel__cell {
    height: 100%
}

.carousel__cta-group {
    margin-top: 2rem
}

@media (min-width:1200px) {
    .carousel__cta-group {
        margin-top: -8rem;
        pointer-events: none
    }
}

@media (min-width:1400px) {
    .carousel__cta-group {
        margin-top: -11rem
    }
}

.carousel-item {
    min-height: 30rem;
    position: relative
}

@media (min-width:992px) {
    .carousel-item {
        min-height: 40rem
    }
}

[data-carousel=carousel].carousel--is-ready .carousel-item {
    height: 100%
}

.carousel-item__media {
    inset: 0;
    position: absolute
}

.carousel-item__media::after {
    background: linear-gradient(238deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .55) 100%);
    content: "";
    display: block;
    inset: 0;
    position: absolute
}

.carousel--align-right .carousel-item__media::after {
    background: linear-gradient(100deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .55) 85%)
}

.carousel-item__content {
    height: 100%;
    padding: 6rem 1.5rem;
    position: relative
}

@media (min-width:1200px) {
    .carousel-item__content {
        display: flex;
        flex-direction: column;
        padding: 6rem 4rem
    }
}

.carousel-item__content .list-highlight {
    width: 100%
}

@media (min-width:992px) {
    .carousel-item__content .list-highlight {
        width: 75%
    }
}

.carousel-item__link {
    text-decoration: none
}

.flickity-page-dots {
    bottom: .75rem;
    left: 0;
    justify-content: flex-start;
    position: absolute;
    width: auto
}

.flickity-page-dot {
    background-color: rgba(255, 255, 255, .25);
    margin: 0 .375rem;
    transition: background-color .2s ease
}

[data-theme=light] .flickity-page-dot {
    background-color: #f0ede8
}

.flickity-page-dot.is-selected {
    background-color: #dbb216
}

.flickity-page-dot:focus,
.flickity-page-dot:hover {
    background-color: #b16b2b
}

.flickity-control {
    align-items: center;
    bottom: 0;
    display: flex;
    gap: .625rem;
    position: absolute;
    right: 0
}

.flickity-button {
    background-color: #dbb216;
    border-radius: 0;
    color: #000;
    overflow: hidden;
    transition: background-color .2s ease, color .2s ease
}

.flickity-button:focus,
.flickity-button:hover {
    background-color: #b16b2b
}

.flickity-button:focus {
    box-shadow: none
}

.flickity-prev-next-button {
    bottom: unset;
    height: 2rem;
    position: relative;
    top: unset;
    transform: none;
    width: 2rem
}

.flickity-prev-next-button.previous {
    left: unset
}

.flickity-prev-next-button.next {
    right: unset
}

.chart-heading {
    border-top: 1px solid currentColor;
    margin-bottom: .25rem;
    padding-top: 1.25rem
}

.chart__container {
    aspect-ratio: 2/1;
    position: relative;
    margin: auto;
    width: 100%
}

bm-chart-doughnut .chart__container {
    aspect-ratio: 1/1;
    max-width: 20rem
}

@media (min-width:1400px) {
    bm-chart-doughnut .chart__container {
        max-width: 32.5rem
    }
}

.chart__canvas {
    height: auto;
    max-width: 100%
}

.chart__legend {
    font-size: .75rem;
    font-weight: 500;
    gap: 1rem 2rem;
    list-style: none;
    margin: 1rem auto 0;
    padding: 0
}

@media (min-width:576px) {
    .chart__legend {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:992px) {
    .chart__legend {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (min-width:1200px) {
    .chart__legend {
        grid-template-columns: repeat(6, 1fr);
        gap: 1.25rem 2rem
    }
}

@media (min-width:992px) {
    bm-chart-doughnut .chart__legend {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
        max-width: 30rem;
        width: 100%
    }
}

.chart__legend__item {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: .5rem;
    line-height: 1.2;
    margin-bottom: 0
}

@media (min-width:768px) {
    .chart__legend__item {
        gap: .75rem
    }
}

.chart__legend__swatch {
    border: 1px solid #fff;
    flex-shrink: 0;
    height: 1.125rem;
    width: 1.25rem
}

[data-theme=light] .chart__legend__swatch {
    border-color: #d3d3d3
}

bm-chart-line .chart__legend__swatch {
    border: 0;
    height: .25rem
}

bm-chart-bar {
    display: block;
    margin: 3rem 0
}

@media (min-width:1200px) {
    bm-chart-bar {
        margin-top: 5rem
    }
}

bm-chart-doughnut {
    display: block;
    margin: 3.5rem 0
}

@media (min-width:992px) {
    bm-chart-doughnut {
        align-items: center;
        display: grid;
        grid-template-columns: 1fr 1fr
    }
}

bm-chart-line {
    display: block;
    margin: 3rem 0
}

@media (min-width:1200px) {
    bm-chart-line {
        margin-top: 5rem
    }
}

:root {
    --content-highlight-offset: 2rem
}

@media (min-width:768px) {
    :root {
        --content-highlight-offset: 4rem
    }
}

@media (min-width:1200px) {
    :root {
        --content-highlight-offset: 8rem
    }
}

.content-highlight__block {
    margin-bottom: var(--content-highlight-offset)
}

.content-highlight__block.is-bottom {
    margin-bottom: 0
}

@media (min-width:768px) {
    .content-highlight__block.is-bottom {
        margin-top: var(--content-highlight-offset);
        padding: var(--content-highlight-offset) 2rem 0
    }
}

@media (min-width:768px) {
    .content-highlight__media.is-offset {
        transform: translateY(var(--content-highlight-offset))
    }
}

@media (min-width:768px) {
    .content-highlight__media.is-offset--notext {
        margin-top: calc(-1 * var(--content-highlight-offset))
    }
}

[data-animate=content-highlight] .content-highlight__media {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s ease
}

[data-animate=content-highlight] .content-highlight__media.is-secondary {
    transition-delay: .4s;
    transition-timing-function: ease
}

[data-animate=content-highlight].animate-in .content-highlight__media {
    clip-path: inset(0 0 0 0)
}

.cta-tile {
    height: 100%;
    display: grid;
    pointer-events: all;
    position: relative
}

.cta-tile:focus-within .cta-tile__image,
.cta-tile:hover .cta-tile__image {
    transform: scale(1.1)
}

.cta-tile__content,
.cta-tile__media {
    grid-row: 1;
    grid-column: 1
}

.cta-tile__media {
    overflow: hidden;
    position: relative
}

.cta-tile__media::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, 0) 100%);
    content: "";
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1
}

.cta-tile__image {
    transform: scale(1);
    transition: transform .3s ease
}

.cta-tile__ratio {
    padding-top: 56.25%
}

@media (min-width:1200px) {
    .cta-tile__ratio {
        padding-top: 100%
    }
}

.cta-tile__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 1
}

@media (min-width:1400px) {
    .cta-tile__content {
        padding: 2rem 2.5rem
    }
}

.contact-block__link {
    display: inline-flex;
    gap: 0 .5rem;
    text-decoration: none
}

.contact-block__link:focus,
.contact-block__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.contact-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem
}

@media (min-width:768px) {
    .contact-card {
        height: calc(100% - 1.5rem)
    }
}

@media (min-width:1200px) {
    .contact-card {
        min-height: 20rem;
        padding: 2rem
    }
}

.document-feed {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch
}

.document-feed::-webkit-scrollbar {
    background-color: #000;
    height: .5rem;
    width: .5rem
}

.document-feed::-webkit-scrollbar-thumb {
    background-color: #fff
}

.document-item {
    display: grid;
    font-size: .875rem;
    grid-template-columns: 120px minmax(200px, auto) 100px;
    position: relative;
    overflow-wrap: break-word
}

@media (min-width:768px) {
    .document-item {
        font-size: 1rem;
        grid-template-columns: 1fr 1fr 1fr
    }
}

.document-item--nodate {
    grid-template-columns: minmax(200px, auto) 120px
}

@media (min-width:768px) {
    .document-item--nodate {
        grid-template-columns: none;
        grid-auto-columns: minmax(0, 1fr);
        grid-auto-flow: column
    }
}

.document-item>div {
    border-bottom: 1px solid currentColor;
    padding: .875rem 1rem
}

.document-item>div:first-child {
    padding-left: 0
}

.document-item>div:last-child {
    padding-right: 0
}

@media (min-width:768px) {
    .document-item>div {
        grid-row: 1
    }
}

.document-item:focus-within,
.document-item:hover {
    background-color: rgba(219, 178, 22, .3)
}

.document-item:focus-within .document-item__link,
.document-item:hover .document-item__link {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document-item__link {
    text-decoration: none
}

.document-item__link:focus,
.document-item__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document-item__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.document-card {
    background-color: #2f2b2b;
    color: #fff;
    font-size: .875rem;
    height: calc(100% - 2rem);
    margin-bottom: 2rem;
    padding: 1.5rem;
    position: relative;
    transition: background-color .3s ease, color .3s ease
}

.document-card:focus-within,
.document-card:hover {
    background-color: #dbb216;
    color: #000
}

.document-card:focus-within .document-card__date,
.document-card:hover .document-card__date {
    color: inherit
}

.document-card__date {
    color: #dbb216
}

.document-card__link {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: .25rem;
    justify-content: space-between;
    text-decoration: none;
    width: 100%
}

.document-card__link:focus,
.document-card__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.document-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.document-card__link .icon {
    flex-shrink: 0
}

.document-card__content {
    padding-top: .75rem
}

.scrolltable {
    --cell-width: 340px;
    display: block;
    position: relative
}

.scrolltable__track {
    overflow-x: scroll;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.scrolltable__track::-webkit-scrollbar {
    display: none
}

.scrolltable__table {
    margin: 0;
    table-layout: fixed
}

.scrolltable__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: inherit;
    border: 0;
    color: inherit;
    height: 2rem;
    padding: 0;
    position: absolute;
    top: .25rem;
    transition: transform .3s ease;
    transform: scale(1);
    width: 2rem;
    z-index: 1
}

.scrolltable__button:focus,
.scrolltable__button:hover {
    color: #dbb216
}

.scrolltable__button[disabled] {
    cursor: not-allowed;
    opacity: .5
}

.scrolltable__button[data-prev] {
    left: calc(var(--cell-width, 340px))
}

@media (min-width:1400px) {
    .scrolltable__button[data-prev] {
        left: 18rem
    }
}

.scrolltable__button[data-next] {
    right: 0
}

.scrolltable__button>.icon {
    pointer-events: none
}

.scrolltable__cell {
    border-bottom: 1px solid #fff;
    font-weight: 400;
    line-height: 1;
    min-height: 3rem;
    padding: .625rem .875rem;
    text-align: center;
    transition: color .1s ease;
    vertical-align: top;
    white-space: nowrap;
    width: 21.25rem;
    width: var(--cell-width, 340px)
}

[data-theme=light] .scrolltable__cell {
    border-bottom-color: #000
}

.scrolltable__cell[scope=col] {
    font-weight: 600;
    padding: .875rem
}

.scrolltable__cell[scope=row] {
    background-color: #211f1f;
    left: 0;
    line-height: 1.5;
    position: sticky;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    z-index: 1
}

[data-theme=light] .scrolltable__cell[scope=row] {
    background-color: inherit
}

@media (min-width:1400px) {
    .scrolltable__cell[scope=row] {
        width: 20rem
    }
}

.scrolltable__cell.is-invisible {
    color: transparent;
    background: 0 0;
    pointer-events: none
}

.scrolltable__docs {
    align-items: center;
    display: flex;
    list-style: none;
    margin: 0;
    min-height: 1.5rem;
    padding: 0;
    justify-content: center
}

.scrolltable__docs li {
    margin: 0 .375rem
}

.scrolltable__doclink {
    color: #dbb216;
    display: block;
    font-weight: 600;
    text-underline-offset: 3px;
    text-decoration: underline;
    text-decoration-thickness: 1px
}

.scrolltable__doclink:focus,
.scrolltable__doclink:hover {
    text-decoration: none
}

.events-carousel.flickity-enabled {
    padding-bottom: 4rem
}

.events-carousel__cell {
    overflow: hidden;
    width: 100%
}

.event-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between
}

.addeventatc.btn {
    background-color: #dbb216;
    background-image: none;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    color: #000;
    display: inline-flex;
    font-family: montserrat, sans-serif;
    font-size: .75rem;
    font-weight: 500;
    padding: .5rem .9375rem;
    text-shadow: none !important;
    z-index: 20
}

.addeventatc.btn:hover {
    background-color: #b16b2b;
    font-size: .75rem;
    text-decoration: none
}

.addeventatc.btn .copyx {
    display: none
}

.addeventatc.btn .addeventatc_dropdown {
    padding: .5rem 0;
    text-transform: none
}

.addeventatc.btn .addeventatc_icon {
    display: none
}

.events {
    border-top: 1px solid currentColor
}

.event-item {
    border-bottom: 1px solid currentColor;
    display: grid;
    padding: 1rem 0;
    position: relative
}

@media (min-width:768px) {
    .event-item {
        grid-template-columns: 2.5fr 1fr;
        padding: 1.5rem 0
    }
}

@media (min-width:1200px) {
    .event-item {
        padding: 1.5rem 0 1.25rem
    }
}

.event-item__meta {
    margin-top: .5rem
}

.event-item__link {
    text-decoration: none
}

.event-item__link:focus,
.event-item__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

.addeventatc {
    visibility: hidden
}

.addeventatc.icon-link {
    background-color: transparent;
    border: 0;
    box-shadow: none !important;
    color: inherit !important;
    display: flex;
    font-family: montserrat, sans-serif;
    font-size: .875rem;
    font-weight: 400;
    padding: 0;
    text-shadow: none !important;
    z-index: 10
}

@media (min-width:1200px) {
    .addeventatc.icon-link {
        font-size: 1rem
    }
}

.addeventatc.icon-link:hover {
    background-color: transparent;
    font-size: 1rem;
    text-decoration: underline
}

.addeventatc.icon-link .copyx {
    display: none
}

.addeventatc.icon-link .addeventatc_dropdown {
    padding: .5rem 0
}

.addeventatc.icon-link .addeventatc_icon {
    display: none
}

.tile {
    min-height: 30rem;
    display: grid
}

@media (min-width:768px) {
    .tile {
        height: 100%
    }
}

@media (min-width:1400px) {
    .tile {
        min-height: 40rem
    }
}

.tile:focus-within .tile__image,
.tile:hover .tile__image {
    transform: scale(1.1)
}

.tile:not(.tile--toggle):focus-within .btn,
.tile:not(.tile--toggle):hover .btn {
    background-color: #b16b2b
}

.tile__content,
.tile__media,
.tile__panel {
    grid-column: 1;
    grid-row: 1
}

.tile__media {
    max-height: 42.5rem;
    overflow: hidden;
    position: relative
}

.tile__media::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .6) 60%);
    content: "";
    inset: 0;
    position: absolute
}

.tile__image {
    transform: scale(1);
    transition: transform .3s ease
}

.tile__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 6rem 1.25rem 2.5rem;
    position: relative;
    z-index: 1
}

@media (min-width:992px) {
    .tile__content {
        padding: 4rem 2rem 2.5rem
    }
}

@media (min-width:1400px) {
    .tile__content {
        padding-bottom: 4rem;
        padding-top: 14rem
    }
}

.tile__link {
    text-decoration: none
}

.tile__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.tile--toggle {
    position: relative
}

.tile--toggle .tile__content {
    justify-content: center;
    padding: 2.5rem
}

@media (min-width:1400px) {
    .tile--toggle .tile__content {
        padding: 4rem
    }
}

.tile--toggle .tile__panel {
    border: 1px solid #fff;
    align-items: center;
    display: flex;
    height: 100%;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

@media (min-width:1400px) {
    .tile--toggle .tile__panel {
        padding: 4rem 4rem 8rem
    }
}

.tile--toggle .tile__control__icon {
    transition: transform .3s ease
}

.tile--toggle.is-open .tile__panel {
    opacity: 1;
    pointer-events: all
}

.tile--toggle.is-open .tile__control__icon {
    transform: rotate(45deg)
}

.tile__control {
    display: flex;
    bottom: 2rem;
    justify-content: center;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 3
}

@media (min-width:1400px) {
    .tile__control {
        bottom: 5rem
    }
}

.job-listing__body {
    border-bottom: 1px solid currentColor
}

.job-listing__row {
    border-top: 1px solid currentColor
}

@media (min-width:768px) {
    .job-listing__row {
        display: grid;
        grid-template-columns: 3.25fr 1fr 1fr 1fr 1fr
    }
}

.job-listing__row>div {
    margin: .875rem 0
}

@media (min-width:768px) {
    .job-listing__row>div {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .job-listing__row>div:first-child {
        padding-left: 0
    }

    .job-listing__row>div:last-child {
        padding-right: 0
    }
}

.job-listing__row--header {
    border: 0
}

@media (max-width:767.98px) {
    .job-listing__row--header {
        display: none
    }
}

.job-listing__row--header>div {
    font-weight: 600
}

.job-feed__title {
    display: block;
    margin-bottom: .5rem;
    text-decoration: none
}

.job-feed__title:focus,
.job-feed__title:hover {
    color: #dbb216;
    text-decoration: underline;
    text-underline-offset: 4px
}

@media (min-width:768px) {
    .job-meta {
        display: grid;
        gap: 0 1rem;
        grid-template-columns: 1fr 1fr
    }
}

.job-meta>div {
    border-bottom: 1px solid #fff;
    display: flex;
    gap: .5rem;
    padding: .25rem 0
}

.job-meta dt {
    font-weight: 400;
    margin-bottom: 0
}

.job-meta dd {
    font-weight: 600;
    margin-bottom: 0
}

.loader {
    animation: loading_rotation 1s linear infinite;
    border: 5px solid #dbb216;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: block;
    height: 2.5rem;
    margin: 2rem auto;
    width: 2.5rem
}

@keyframes loading_rotation {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.hero {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 30rem;
    padding: 14rem 0 4rem;
    position: relative
}

[data-theme=light] .hero {
    background: 0 0
}

.hero::before {
    background: linear-gradient(20deg, transparent 45%, var(--metro-gold) 120%);
    content: "";
    display: block;
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1
}

.hero--no-gradient::before {
    content: none
}

.hero__bg {
    inset: 0;
    pointer-events: none;
    position: absolute
}

.hero__bg::after,
.hero__bg::before {
    content: "";
    display: block;
    inset: 0;
    position: absolute
}

.hero__bg::before {
    background-image: linear-gradient(235deg, rgba(0, 0, 0, 0) 50%, #000 100%);
    z-index: 0
}

.hero__bg::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #000 100%);
    z-index: 2
}

.hero__image {
    -o-object-position: bottom center;
    object-position: bottom center;
    pointer-events: none
}

@media (min-width:992px) {
    .hero__image {
        -o-object-position: bottom right;
        object-position: bottom right
    }

    .op-bottom-left .hero__image {
        -o-object-position: bottom left;
        object-position: bottom left
    }

    .op-bottom-center .hero__image {
        -o-object-position: bottom center;
        object-position: bottom center
    }

    .op-bottom-right .hero__image {
        -o-object-position: bottom right;
        object-position: bottom right
    }

    .op-left .hero__image {
        -o-object-position: left center;
        object-position: left center
    }

    .op-center .hero__image {
        -o-object-position: center;
        object-position: center
    }

    .op-right .hero__image {
        -o-object-position: right center;
        object-position: right center
    }

    .op-top-left .hero__image {
        -o-object-position: top left;
        object-position: top left
    }

    .op-top-center .hero__image {
        -o-object-position: top center;
        object-position: top center
    }

    .op-top-right .hero__image {
        -o-object-position: top right;
        object-position: top right
    }
}

.hero__image--fg {
    inset: 0;
    position: absolute
}

@media (min-width:992px) {
    .hero__image--fg {
        z-index: 2
    }
}

.hero__content {
    text-shadow: 0 1px 1px rgba(0, 0, 0, .5);
    position: relative
}

@media (min-width:992px) {
    .hero__content {
        text-shadow: none
    }
}

.hero__body,
.hero__footer,
.hero__title {
    position: relative;
    z-index: 2
}

.hero--person {
    min-height: 0;
    padding-bottom: 0
}

@media (min-width:1200px) {
    .hero--has-image {
        min-height: 40rem
    }
}

@media (min-width:1400px) {
    .hero--has-image {
        min-height: 48rem
    }
}

@media (min-width:1200px) {
    .hero--sm {
        min-height: 30rem
    }
}

.hero--xl .hero__bg::after {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000 100%)
}

@media (min-width:1400px) {
    .hero--xl {
        min-height: 75rem
    }
}

@media (min-width:100em) {
    .hero--xl {
        min-height: 85rem
    }
}

.split-heading {
    display: inline-flex;
    flex-direction: column;
    margin: 0;
    padding-right: 1rem
}

.split-heading span {
    display: block
}

.split-heading__title {
    padding: 0 1rem;
    z-index: 2
}

@media (min-width:768px) {
    .split-heading__title {
        padding: 0 4rem
    }
}

@media (min-width:1200px) {
    .split-heading__title {
        padding-right: 8rem;
        z-index: 1
    }
}

.split-heading__prefix {
    z-index: 2
}

@media (min-width:1200px) {
    .split-heading__prefix {
        margin-bottom: -1rem
    }
}

.split-heading__suffix {
    align-self: flex-end;
    position: relative;
    z-index: 3
}

@media (min-width:1200px) {
    .split-heading__suffix {
        margin-top: -1.5rem
    }
}

[data-animate=hero-parallax] .hero__bg,
[data-animate=hero] .hero__bg {
    opacity: 0;
    transition: opacity .3s ease
}

[data-animate=hero-parallax] .hero__title,
[data-animate=hero] .hero__title {
    opacity: 0;
    transition: opacity .6s ease .3s
}

[data-animate=hero-parallax] .split-heading__prefix,
[data-animate=hero-parallax] .split-heading__suffix,
[data-animate=hero-parallax] .split-heading__title,
[data-animate=hero] .split-heading__prefix,
[data-animate=hero] .split-heading__suffix,
[data-animate=hero] .split-heading__title {
    opacity: 0;
    transition: opacity 1s ease .3s
}

[data-animate=hero-parallax] .hero__body,
[data-animate=hero] .hero__body {
    opacity: 0;
    transition: opacity 1s ease .7s
}

[data-animate=hero-parallax].animate-in .hero__bg,
[data-animate=hero-parallax].animate-in .hero__body,
[data-animate=hero-parallax].animate-in .hero__title,
[data-animate=hero].animate-in .hero__bg,
[data-animate=hero].animate-in .hero__body,
[data-animate=hero].animate-in .hero__title {
    opacity: 1
}

[data-animate=hero-parallax].animate-in .split-heading__prefix,
[data-animate=hero-parallax].animate-in .split-heading__suffix,
[data-animate=hero-parallax].animate-in .split-heading__title,
[data-animate=hero].animate-in .split-heading__prefix,
[data-animate=hero].animate-in .split-heading__suffix,
[data-animate=hero].animate-in .split-heading__title {
    opacity: 1
}

.image-carousel {
    padding-bottom: 3rem
}

@media (max-width:767.98px) {
    .image-carousel .flickity-page-dots {
        left: 1.25rem
    }
}

@media (max-width:767.98px) {
    .image-carousel .flickity-control {
        right: 1.25rem
    }
}

.image-carousel .flickity-prev-next-button {
    height: 2rem;
    width: 2rem
}

.image-carousel__cell {
    overflow: hidden;
    width: 100%
}

.is-fade .image-carousel__cell {
    opacity: 0 !important;
    transition: opacity .8s ease-in-out !important
}

.is-fade .image-carousel__cell.is-selected {
    opacity: 1 !important
}

@media (min-width:576px) {
    .image-carousel--gallery .image-carousel__cell {
        margin-left: 1.5rem;
        width: 50%
    }

    .image-carousel--gallery .flickity-viewport {
        overflow: visible
    }
}

.image-carousel--gallery .flickity-control {
    left: 0;
    right: unset
}

.image-carousel--gallery .flickity-page-dots {
    bottom: .875rem;
    left: 6.25rem;
    right: 0
}

.image-carousel--gallery .flickity-page-dot {
    border-radius: 0;
    flex: 1 0 auto;
    height: 3px;
    margin: 0
}

.investorhighlight-card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.post-list__item {
    margin-bottom: .75rem;
    padding: 0 0 1rem 0
}

.post-list__item:not(:last-child) {
    border-bottom: 1px solid currentColor
}

.post-list__link {
    display: block;
    text-decoration: none
}

@media (min-width:1200px) {
    .post-list__link {
        font-size: 1.125rem
    }
}

.post-list__link:focus,
.post-list__link:hover {
    text-decoration: underline;
    text-underline-offset: 3px
}

@media (min-width:992px) {
    .latest-results__item {
        width: 20%
    }
}

.result-card {
    margin-bottom: 1.5rem;
    position: relative
}

@media (min-width:576px) {
    .result-card {
        display: flex;
        flex-direction: column;
        height: calc(100% - 1.5rem)
    }
}

.result-card:focus-within .result-card__fauxlink,
.result-card:hover .result-card__fauxlink {
    text-decoration: underline
}

.result-card__link {
    line-height: 1;
    text-decoration: none
}

.result-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.result-card__icon {
    height: 8.75rem;
    margin: 0 auto 2rem;
    width: 8.75rem
}

@media (min-width:1200px) {
    .result-card__icon {
        margin-bottom: 3rem
    }
}

.result-card__fauxlink {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase
}

.logo-carousel {
    padding-bottom: 3rem
}

@media (min-width:576px) {
    .logo-carousel {
        margin: 0 -.75rem
    }

    .logo-carousel .flickity-page-dots {
        left: .75rem
    }

    .logo-carousel .flickity-control {
        right: .75rem
    }
}

.logo-carousel__cell {
    overflow: hidden;
    width: 100%
}

@media (min-width:576px) {
    .logo-carousel__cell {
        padding: 0 .75rem;
        width: 50%
    }
}

@media (min-width:768px) {
    .logo-carousel__cell {
        width: 33.3333333333%
    }
}

.logo-carousel__item {
    aspect-ratio: 4/3;
    background-color: #211f1f;
    display: grid;
    place-items: center;
    transition: background-color .3s ease-in-out
}

.logo-carousel__item:focus,
.logo-carousel__item:hover {
    background-color: #fff
}

.logo-carousel__item:focus .logo-carousel__image:first-child,
.logo-carousel__item:hover .logo-carousel__image:first-child {
    opacity: 0
}

.logo-carousel__item:focus .logo-carousel__image:last-child,
.logo-carousel__item:hover .logo-carousel__image:last-child {
    opacity: 1
}

.logo-carousel__image {
    grid-column: 1;
    grid-row: 1;
    max-width: 15rem;
    width: 100%;
    transition: opacity .3s ease-in-out
}

@media (min-width:992px) {
    .logo-carousel__image {
        max-width: 20rem
    }
}

.logo-carousel__image:last-child {
    opacity: 0
}

.office-card {
    padding: 2rem;
    margin-bottom: 1.5rem
}

@media (min-width:768px) {
    .office-card {
        height: calc(100% - 1.5rem)
    }
}

@media (min-width:1200px) {
    .office-card {
        padding-top: 4rem
    }
}

.office-card__inner {
    margin-bottom: 2rem
}

@media (min-width:768px) {
    .office-card__inner {
        margin-bottom: 0
    }
}

.office-card__inner :last-child {
    margin-bottom: 0
}

.operations-carousel {
    margin: 0 -.375rem;
    padding-bottom: 4rem
}

.operations-carousel .flickity-control {
    left: .375rem;
    right: unset
}

.operations-carousel .flickity-button:disabled {
    opacity: 0
}

.operations-carousel__cell {
    padding: 0 .375rem;
    width: 100%
}

@media (min-width:768px) {
    .operations-carousel__cell {
        width: 33.3333333333%
    }
}

.operations-tile {
    position: relative;
    transition: clip-path .3s ease
}

@media (min-width:768px) {
    .operations-tile {
        clip-path: inset(20% 0 20% 0)
    }

    .is-selected .operations-tile {
        clip-path: inset(0 0 0 0)
    }
}

.operations-tile:focus-within,
.operations-tile:hover {
    clip-path: inset(0 0 0 0)
}

.operations-tile__media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 72.71%, #000 102.14%);
    content: "";
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1
}

.carousel-overlay {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #000 100%);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-logo-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: auto;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .hero-logo-overlay {
        height: 25%;
        right: 1rem;
        opacity: 0.8;
    }
}

.operations-tile__media+.operations-tile__content {
    inset: 0;
    position: absolute
}

.operations-tile__ratio {
    padding-top: 100%
}

@media (min-width:768px) {
    .operations-tile__ratio {
        padding-top: 150%
    }
}

.operations-tile__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 4.25rem 1.25rem 1.25rem;
    z-index: 1
}

.operations-tile__link {
    color: inherit;
    text-decoration: none
}

.operations-tile__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.operations-tile__icon-btn {
    background-color: #dbb216;
    bottom: 1.25rem;
    color: #000;
    right: 1.25rem;
    position: absolute
}

@media (min-width:992px) {
    .operations-listing {
        margin-top: -2.25rem
    }
}

.operations-map__image {
    width: 100%
}

.operations-map__pin {
    align-items: center;
    border-radius: 50%;
    display: flex;
    height: 1rem;
    justify-content: center;
    left: var(--left, 0);
    position: absolute;
    top: var(--top, 0);
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition: background-color .1s ease, transform .3s ease;
    width: 1rem
}

@media (min-width:1200px) {
    .operations-map__pin {
        height: 2rem;
        width: 2rem
    }
}

.operations-map__pin:hover {
    background-color: #fff;
    transform: translate3d(-50%, -50%, 0) scale(1.1)
}

.operations-map__pin .icon {
    height: .5rem;
    width: .5rem
}

@media (min-width:1200px) {
    .operations-map__pin .icon {
        height: 1.25rem;
        width: 1.25rem
    }
}

.operations-legend {
    display: inline-flex;
    flex-direction: column
}

.operations-legend__item {
    align-items: center;
    display: flex;
    padding: .5rem 0
}

.operations-legend__item:not(:last-child) {
    border-bottom: 1px solid currentColor
}

.operations-legend__pin {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 1rem;
    justify-content: center;
    margin-right: 1.25rem;
    padding: .25rem;
    transition: background-color .1s ease;
    width: 1rem
}

@media (min-width:1200px) {
    .operations-legend__pin {
        height: 2rem;
        padding: .35rem;
        width: 2rem
    }
}

.operations-legend__pin .icon {
    height: 100%;
    width: 100%
}

.operation-panel {
    height: 100%
}

.operation-panel__image {
    align-items: center;
    display: flex;
    height: 20rem;
    justify-content: flex-end;
    overflow: hidden
}

@media (min-width:992px) {
    .operation-panel__image {
        height: 30rem
    }
}

@media (min-width:1200px) {
    .operation-panel__image {
        height: 100%
    }
}

.operation-panel__image>img {
    display: block;
    margin: auto;
    max-height: 100%;
    width: auto
}

.operation-panel__map {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: flex-end;
    overflow: hidden
}

.operation-panel__map>img {
    display: block;
    height: 100%;
    margin: auto
}

.operation-details {
    list-style: none;
    padding-left: 0
}

.operation-details li:not(:last-child) {
    border-bottom: .5px solid currentColor;
    padding-bottom: .5rem
}

.operation-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
    padding-left: 0
}

.operation-progress__phase {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 3rem;
    justify-content: center;
    opacity: .5;
    width: 3rem
}

.operation-progress__phase.is-active {
    opacity: 1
}

.operation-progress__icon {
    display: block;
    height: 100%;
    width: 100%
}

.switch {
    align-items: center;
    display: inline-flex;
    position: relative
}

.switch__input:checked+.switch__label .switch__toggle {
    border-color: #dbb216
}

.switch__input:checked+.switch__label .switch__toggle__icon {
    transform: translateX(1.5rem)
}

.switch__input:checked+.switch__label .switch__toggle__icon::after {
    background-color: #dbb216
}

.switch__label {
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    gap: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    min-height: 1.5rem;
    padding-right: 4rem;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap
}

.switch__toggle {
    border: 1px solid currentColor;
    border-radius: 1.5rem;
    flex-shrink: 0;
    height: 1.5rem;
    position: relative;
    transition: border-color .2s, color .2s ease;
    width: 3rem
}

.switch__toggle__icon {
    align-items: center;
    display: flex;
    height: 1.375rem;
    justify-content: center;
    transition: transform .2s ease;
    width: 1.375rem
}

.switch__toggle__icon::after {
    border-radius: 50%;
    background-color: currentColor;
    content: "";
    display: block;
    height: .75rem;
    width: .75rem
}

.person-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    position: relative
}

.person-card:focus-within .person-card__image,
.person-card:hover .person-card__image {
    transform: scale(1.1)
}

.person-card:focus-within .person-card__link,
.person-card:hover .person-card__link {
    color: inherit;
    text-decoration: none
}

.person-card:focus-within .cta,
.person-card:hover .cta {
    text-decoration: underline;
    text-underline-offset: 3px
}

.person-card:focus-within .cta__icon,
.person-card:hover .cta__icon {
    animation: cta-icon-animate-small 1.5s ease .2s
}

.person-card__media {
    overflow: hidden;
    position: relative;
    width: 100%
}

.person-card__image {
    transform: scale(1);
    transition: transform .3s ease
}

@media (min-width:768px) {
    .person-card__body {
        display: flex;
        flex-direction: column;
        flex: 1
    }
}

.person-card__content {
    padding: .75rem 0
}

.person-card__link {
    color: inherit;
    text-decoration: none
}

.person-card__link::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.person-card__footer {
    margin-top: auto
}

.promo {
    position: relative
}

.promo--has-media {
    padding: 12rem 0 4rem
}

@media (min-width:1200px) {
    .promo--has-media {
        padding-bottom: 6rem
    }
}

.promo__bg {
    inset: 0;
    position: absolute
}

.promo__bg::before {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, .4) 90%);
    content: "";
    display: block;
    inset: 0;
    position: absolute
}

.promo--align-right .promo__bg::before {
    background: linear-gradient(100deg, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, .4) 90%)
}

.promo__content {
    position: relative
}

[data-animate=promo] {
    clip-path: inset(1rem 1rem 1rem 1rem);
    transition: clip-path .6s ease .3s
}

@media (min-width:1200px) {
    [data-animate=promo] {
        clip-path: inset(4rem 4rem 4rem 4rem)
    }
}

[data-animate=promo].animate-in {
    clip-path: inset(0 0 0 0)
}

.quicklink-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    padding: 2rem
}

@media (min-width:1200px) {
    .quicklink-card {
        padding-top: 3rem
    }
}

.quicklink-card__icon {
    height: 7rem;
    margin-left: -1.75rem;
    margin-top: -1.75rem;
    width: 7rem
}

@media (min-width:1200px) {
    .quicklink-card__icon {
        height: 8.75rem;
        margin-left: -2.5rem;
        margin-top: -3rem;
        width: 8.75rem
    }
}

.quicklink-card__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%
}

.quicklink-card__summary {
    min-height: 7rem
}

.editorial .h2:not(:first-child),
.editorial .h3:not(:first-child),
.editorial .h4:not(:first-child),
.editorial h2:not(:first-child),
.editorial h3:not(:first-child),
.editorial h4:not(:first-child) {
    margin-top: 2rem
}

.richtext-media__content {
    margin-bottom: 4rem;
    padding: 0 1.25rem
}

.richtext-media__content :last-child {
    margin-bottom: 0
}

@media (min-width:992px) {
    .richtext-media__content {
        padding: 0;
        margin-bottom: 0
    }
}

@media (min-width:1200px) {
    .richtext-media__content {
        position: sticky;
        top: 9rem
    }
}

@media (min-width:992px) {
    .richtext-media__content.is-padded-top {
        padding-top: 2rem
    }
}

@media (min-width:1200px) {
    .richtext-media__content.is-padded-top {
        padding-top: 7rem
    }
}

[data-animate=rich-text-media] .richtext-media__clipped {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s ease
}

[data-animate=rich-text-media] .image-carousel,
[data-animate=rich-text-media] .richtext-media__embed {
    transform: scale(1.4);
    transition: transform 1.2s ease
}

[data-animate=rich-text-media].animate-in .richtext-media__clipped {
    clip-path: inset(0 0 0 0)
}

[data-animate=rich-text-media].animate-in .image-carousel,
[data-animate=rich-text-media].animate-in .richtext-media__embed {
    transform: scale(1)
}

.statistic {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem
}

@media (min-width:1200px) {
    .statistic {
        margin-bottom: 4rem
    }
}

.statistic__inner {
    align-items: baseline;
    color: inherit;
    display: flex;
    font-family: zuume-edge, serif;
    font-size: 4.375rem;
    font-variant-numeric: lining-nums proportional-nums;
    font-weight: 700;
    line-height: .9
}

@media (min-width:1200px) {
    .statistic__inner {
        font-size: 8.75rem
    }
}

.statistic__prefix span,
.statistic__prefix sub,
.statistic__prefix sup {
    font-size: 3.125rem
}

@media (min-width:1200px) {

    .statistic__prefix span,
    .statistic__prefix sub,
    .statistic__prefix sup {
        font-size: 6.25rem
    }
}

.statistic__prefix sub,
.statistic__prefix sup {
    bottom: unset;
    display: inline-flex;
    line-height: .9;
    padding: 0;
    top: unset
}

.statistic__suffix {
    align-items: center;
    display: inline-flex;
    font-size: 3.125rem
}

@media (min-width:1200px) {
    .statistic__suffix {
        font-size: 6.25rem
    }
}

.statistic__suffix sub,
.statistic__suffix sup {
    font-size: .75em;
    padding: 0 .05em
}

.statistic__suffix sup {
    top: -.4em
}

.statistic__suffix sub {
    bottom: -.25em
}

.statistic__icon-block {
    align-items: center;
    display: flex;
    gap: 1rem
}

.statistic__icon {
    align-items: center;
    background-color: transparent;
    border: 1px solid #dbb216;
    border-radius: 50%;
    fill: #000;
    flex-shrink: 0;
    display: flex;
    height: 6rem;
    justify-content: center;
    transition: background-color .3s ease, border-color .3s ease;
    width: 6rem
}

@media (min-width:1200px) {
    .statistic__icon {
        height: 7rem;
        width: 7rem
    }
}

.is-selected .statistic__icon {
    background-color: #dbb216;
    border-color: #dbb216
}

.statistic__icon svg {
    fill: currentColor;
    height: 100%;
    width: 100%
}

[data-animate=statistics] .statistic-row__item {
    opacity: 0;
    transform: translateY(4rem);
    transition: opacity .6s ease, transform .6s ease
}

[data-animate=statistics] .statistic-row__item:nth-child(2) {
    transition-delay: .2s
}

[data-animate=statistics] .statistic-row__item:nth-child(3) {
    transition-delay: .3s
}

[data-animate=statistics] .statistic-row__item:nth-child(4) {
    transition-delay: .4s
}

[data-animate=statistics] .statistic-row__item:nth-child(5) {
    transition-delay: .5s
}

[data-animate=statistics] .statistic-row__item:nth-child(6) {
    transition-delay: .6s
}

[data-animate=statistics] .statistic-row__item:nth-child(7) {
    transition-delay: .7s
}

[data-animate=statistics] .statistic-row__item:nth-child(8) {
    transition-delay: .8s
}

[data-animate=statistics] .statistic-row__item:nth-child(9) {
    transition-delay: .9s
}

[data-animate=statistics].animate-in .statistic-row__item {
    opacity: 1;
    transform: translateY(0)
}

bm-stickymenu~.section {
    scroll-margin-top: 120px
}

@media (min-width:992px) {
    bm-stickymenu~.section {
        scroll-margin-top: 148px
    }
}

.stickymenu-container {
    position: sticky;
    top: 5.75rem;
    z-index: 19
}

@media (min-width:992px) {
    .stickymenu-container {
        top: 8rem
    }

    .admin-bar .stickymenu-container {
        top: 10rem
    }
}

.stickymenu-inner {
    padding: 1.5rem;
    transition: padding .2s ease
}

@media (min-width:992px) {
    .stickymenu-inner {
        padding: 4rem 1.5rem
    }
}

@media (min-width:1200px) {
    .stickymenu-inner {
        padding: 5rem 0
    }

    .is-pinned .stickymenu-inner {
        padding: 3rem 0
    }
}

.stickymenu {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0
}

@media (min-width:992px) {
    .stickymenu {
        flex-direction: row;
        position: relative
    }

    .stickymenu::before {
        background-color: #555;
        bottom: 0;
        content: "";
        display: block;
        height: .5rem;
        left: 0;
        position: absolute;
        width: 100%
    }
}

.stickymenu__item {
    flex: 1 0 auto;
    margin-bottom: 0;
    position: relative;
    z-index: 1
}

.stickymenu__link {
    border-bottom: .5rem solid transparent;
    display: block;
    font-weight: 700;
    padding: .5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: border-color .3s ease
}

.stickymenu__link.is-active,
.stickymenu__link:focus,
.stickymenu__link:hover {
    border-color: #dbb216
}

@media (min-width:1200px) {
    .stickymenu__link {
        font-size: 1.375rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
}

.stockquote__grid {
    border-top: 1px solid #fff;
    margin: .5rem 0
}

@media (min-width:768px) {
    .stockquote__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }
}

.stockquote__list {
    margin-bottom: 0
}

.stockquote__list dd,
.stockquote__list dt {
    font-weight: 400;
    margin-bottom: 0;
    padding: .75rem 0
}

@media (min-width:768px) {
    .stockquote__list--right dt {
        padding-left: 33.3333333333%
    }

    .stockquote__list--right dd {
        text-align: right
    }
}

.stockquote__item {
    border-bottom: 1px solid #fff;
    display: grid;
    gap: 1rem;
    grid-template-columns: 2fr 1fr
}

@media (min-width:768px) {
    .stockquote__footer {
        display: flex;
        justify-content: space-between
    }
}

.stockquote__grid--historical .stockquote__item {
    gap: 0;
    grid-template-columns: 1fr 1fr
}

.stockquote__grid--historical dd,
.stockquote__grid--historical dt {
    padding: .75rem 1rem
}

.stockquote__grid--historical dd {
    background-color: rgba(255, 193, 7, .3)
}

.stockticker {
    display: flex;
    flex-direction: column;
    height: 100%
}

.stockticker__header {
    display: flex;
    gap: 1.5rem
}

.stockticker__primary {
    font-family: zuume-edge, serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: .8
}

.stockticker__secondary {
    border-top: 1px solid currentColor;
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: .5rem
}

.stockticker__footer {
    margin-top: auto;
    padding-top: 2rem
}

.is-down .stockticker__icon {
    transform: rotate(180deg)
}

.timeline-carousel {
    padding: 4rem 0 0
}

@media (min-width:768px) {
    .timeline-carousel {
        margin: 0 -1.25rem
    }
}

.timeline-carousel .flickity-viewport {
    overflow: visible
}

.timeline-carousel .flickity-control {
    left: 0;
    right: unset
}

@media (min-width:768px) {
    .timeline-carousel .flickity-control {
        left: 1.25rem
    }
}

.timeline-carousel__cell {
    border-top: 1px solid currentColor;
    width: 100%
}

@media (min-width:768px) {
    .timeline-carousel__cell {
        width: 75%
    }
}

@media (min-width:992px) {
    .timeline-carousel__cell {
        width: 40%
    }
}

.timeline-carousel__cell.is-selected {
    z-index: 1
}

.timeline-carousel__cell.is-selected .timeline-item__content {
    border-color: transparent;
    opacity: 1
}

.timeline-carousel__cell.is-selected .display-1 {
    font-weight: 600
}

.timeline-item {
    padding-top: 3.5rem;
    position: relative
}

.timeline-item::before {
    background-color: currentColor;
    border: 4px solid #000;
    border-radius: 50%;
    content: "";
    display: block;
    height: 1.25rem;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    width: 1.25rem;
    z-index: 1
}

.is-selected .timeline-item::before {
    background-color: #dbb216;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M10.393 2.667l12.884 13.378-12.798 13.289-1.67-1.609 11.249-11.68-11.335-11.769 1.67-1.609z' fill='%23ffffff'%3E%3C/path%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    height: 2.5rem;
    transform: translate3d(0, -50%, 0);
    width: 2.5rem
}

@media (min-width:768px) {
    .is-selected .timeline-item::before {
        left: .75rem
    }
}

[data-theme=light] .timeline-item::before {
    border: 4px solid #fff
}

.timeline-item .display-1 {
    font-weight: 400
}

.timeline-item__content {
    opacity: .3;
    padding: 0 1.25rem 7.5rem 0;
    transition: border-color .3s ease, opacity .3s ease
}

@media (min-width:768px) {
    .timeline-item__content {
        border-left: 1px solid #fff;
        padding: 0 1.25rem 7.5rem
    }
}

@media (min-width:1200px) {
    .timeline-item__content {
        padding-right: 7.5rem
    }
}

.timeline-item__icon {
    align-items: center;
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    fill: #000;
    display: flex;
    height: 6rem;
    justify-content: center;
    transition: background-color .3s ease, border-color .3s ease;
    width: 6rem
}

@media (min-width:1200px) {
    .timeline-item__icon {
        height: 8.75rem;
        width: 8.75rem
    }
}

.is-selected .timeline-item__icon {
    background-color: #dbb216;
    border-color: #dbb216;
    color: #000
}

.timeline-item__icon svg {
    fill: currentColor;
    height: 100%;
    width: 100%
}

.timeline-item__label {
    bottom: calc(100% + 1.5rem);
    left: 0;
    position: absolute
}

@media (min-width:768px) {
    .is-selected .timeline-item__label {
        left: 1.75rem
    }
}

.video-player {
    display: grid;
    place-items: center;
    position: relative
}

.video-player>* {
    grid-row: 1;
    grid-column: 1
}

.video-player__facade {
    display: grid;
    place-items: center;
    position: relative;
    width: 100%
}

.video-player__facade>* {
    grid-row: 1;
    grid-column: 1
}

.is-ready .video-player__facade {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
    visibility: hidden
}

.video-playbutton {
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 3.5rem;
    justify-content: center;
    width: 3.5rem;
    transition: background-color .2s, color .2s ease, transform .1s ease;
    z-index: 1
}

.video-playbutton:focus,
.video-playbutton:hover {
    background-color: #fff;
    color: #000
}

.video-playbutton::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

.video-player {
    animation: video-player-fadein .4s ease both .1s
}

@keyframes video-player-fadein {
    from {
        opacity: 0
    }
}

[data-animate=video-embed] .video-player {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s ease
}

[data-animate=video-embed].animate-in .video-player {
    clip-path: inset(0 0 0 0)
}

.locations-modal .modal__overlay {
    background-color: rgba(0, 0, 0, .1)
}

.locations-modal .modal__content {
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .3)
}

.locations-modal .notification__header {
    border-bottom: 1px solid #fff
}

.locations-modal .modal__close--bottom {
    bottom: unset;
    top: 2rem;
    right: 2rem
}

.locations-modal .h2,
.locations-modal h2 {
    max-width: 75%
}

.locations-legend {
    display: inline-flex;
    flex-direction: column
}

.locations-legend__item {
    align-items: center;
    display: flex;
    padding: .5rem 0;
    border-bottom: 1px solid currentColor
}

.locations-legend__pin {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 1rem;
    justify-content: center;
    margin-right: 1.25rem;
    padding: .25rem;
    transition: background-color .1s ease;
    width: 1rem
}

@media (min-width:1200px) {
    .locations-legend__pin {
        height: 2rem;
        padding: .35rem;
        width: 2rem
    }
}

.locations-legend__pin .icon {
    height: 100%;
    width: 100%
}

.tooltip-pin:hover {
    z-index: 100
}

.tooltip-pin:hover .location-tooltip {
    opacity: 1;
    transform: translateY(0)
}

.location-tooltip {
    position: absolute;
    opacity: 0;
    transform: translateY(1rem);
    transition: all .4s;
    pointer-events: none;
    width: 12rem
}

.location-tooltip.top-left {
    left: 0;
    bottom: 1rem;
    text-align: left
}

.location-tooltip.top-right {
    right: 0;
    bottom: 1rem;
    text-align: right
}

.location-tooltip p {
    width: 100%
}

.bg-black {
    background-color: #000
}

.text-black {
    color: #000
}

.icon-black {
    fill: #000
}

.bg-white {
    background-color: #fff
}

.text-white {
    color: #fff
}

.icon-white {
    fill: #fff
}

.bg-yellow {
    background-color: #dbb216
}

.text-yellow {
    color: #dbb216
}

.icon-yellow {
    fill: #dbb216
}

.bg-orange {
    background-color: #b16b2b
}

.text-orange {
    color: #b16b2b
}

.icon-orange {
    fill: #b16b2b
}

.bg-dark-grey {
    background-color: #211f1f
}

.text-dark-grey {
    color: #211f1f
}

.icon-dark-grey {
    fill: #211f1f
}

.bg-mid-grey {
    background-color: #555
}

.text-mid-grey {
    color: #555
}

.icon-mid-grey {
    fill: #555
}

.bg-beige {
    background-color: #c1ba9a
}

.text-beige {
    color: #c1ba9a
}

.icon-beige {
    fill: #c1ba9a
}

.bg-light-grey {
    background-color: #f0ede8
}

.text-light-grey {
    color: #f0ede8
}

.icon-light-grey {
    fill: #f0ede8
}

.bg-transparent {
    background-color: transparent
}

[data-theme=light] .section.bg-dark-grey {
    background: #f0ede8;
    color: inherit
}

[data-theme=light] .light\:bg-black {
    background-color: #000
}

[data-theme=light] .light\:bg-white {
    background-color: #fff
}

[data-theme=light] .light\:bg-light-grey {
    background-color: #f0ede8
}

[data-theme=light] .light\:text-black {
    color: #000
}

[data-theme=light] .light\:text-white {
    color: #fff
}

.align-items-start {
    align-items: flex-start
}

.align-items-end {
    align-items: flex-end
}

.align-items-center {
    align-items: center
}

.align-items-baseline {
    align-items: baseline
}

.align-items-stretch {
    align-items: stretch
}

.align-self-auto {
    align-self: auto
}

.align-self-start {
    align-self: flex-start
}

.align-self-end {
    align-self: flex-end
}

.align-self-center {
    align-self: center
}

.d-inline {
    display: inline
}

.d-inline-block {
    display: inline-block
}

.d-block {
    display: block
}

.d-grid {
    display: grid
}

.d-flex {
    display: flex
}

.d-inline-flex {
    display: inline-flex
}

.d-none {
    display: none
}

.justify-content-start {
    justify-content: flex-start
}

.justify-content-end {
    justify-content: flex-end
}

.justify-content-center {
    justify-content: center
}

.justify-content-between {
    justify-content: space-between
}

.justify-content-around {
    justify-content: space-around
}

.justify-content-evenly {
    justify-content: space-evenly
}

.order-first {
    order: -1
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-last {
    order: 6
}

.overflow-auto {
    overflow: auto
}

.overflow-hidden {
    overflow: hidden
}

.overflow-visible {
    overflow: visible
}

.overflow-scroll {
    overflow: scroll
}

.position-static {
    position: static
}

.position-relative {
    position: relative
}

.position-absolute {
    position: absolute
}

.position-fixed {
    position: fixed
}

.position-sticky {
    position: sticky
}

.flex-fill {
    flex: 1 1 auto
}

.flex-row {
    flex-direction: row
}

.flex-column {
    flex-direction: column
}

.flex-row-reverse {
    flex-direction: row-reverse
}

.flex-column-reverse {
    flex-direction: column-reverse
}

.m-0 {
    margin: 0
}

.m-1 {
    margin: 1rem
}

.m-2 {
    margin: 1.5rem
}

.m-3 {
    margin: 2rem
}

.m-4 {
    margin: 3rem
}

.m-5 {
    margin: 4rem
}

.m-auto {
    margin: auto
}

.mt-0 {
    margin-top: 0
}

.mt-1 {
    margin-top: 1rem
}

.mt-2 {
    margin-top: 1.5rem
}

.mt-3 {
    margin-top: 2rem
}

.mt-4 {
    margin-top: 3rem
}

.mt-5 {
    margin-top: 4rem
}

.mt-auto {
    margin-top: auto
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: 1.5rem
}

.mb-3 {
    margin-bottom: 2rem
}

.mb-4 {
    margin-bottom: 3rem
}

.mb-5 {
    margin-bottom: 4rem
}

.mb-auto {
    margin-bottom: auto
}

.ms-0 {
    margin-left: 0
}

.ms-1 {
    margin-left: 1rem
}

.ms-2 {
    margin-left: 1.5rem
}

.ms-3 {
    margin-left: 2rem
}

.ms-4 {
    margin-left: 3rem
}

.ms-5 {
    margin-left: 4rem
}

.ms-auto {
    margin-left: auto
}

.me-0 {
    margin-right: 0
}

.me-1 {
    margin-right: 1rem
}

.me-2 {
    margin-right: 1.5rem
}

.me-3 {
    margin-right: 2rem
}

.me-4 {
    margin-right: 3rem
}

.me-5 {
    margin-right: 4rem
}

.me-auto {
    margin-right: auto
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: 1rem
}

.p-2 {
    padding: 1.5rem
}

.p-3 {
    padding: 2rem
}

.p-4 {
    padding: 3rem
}

.p-5 {
    padding: 4rem
}

.p-auto {
    padding: auto
}

.pb-0 {
    padding-bottom: 0
}

.pb-1 {
    padding-bottom: 1rem
}

.pb-2 {
    padding-bottom: 1.5rem
}

.pb-3 {
    padding-bottom: 2rem
}

.pb-4 {
    padding-bottom: 3rem
}

.pb-5 {
    padding-bottom: 4rem
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: 1rem
}

.pt-2 {
    padding-top: 1.5rem
}

.pt-3 {
    padding-top: 2rem
}

.pt-4 {
    padding-top: 3rem
}

.pt-5 {
    padding-top: 4rem
}

.ps-0 {
    padding-left: 0
}

.ps-1 {
    padding-left: 1rem
}

.ps-2 {
    padding-left: 1.5rem
}

.ps-3 {
    padding-left: 2rem
}

.ps-4 {
    padding-left: 3rem
}

.ps-5 {
    padding-left: 4rem
}

.pe-0 {
    padding-right: 0
}

.pe-1 {
    padding-right: 1rem
}

.pe-2 {
    padding-right: 1.5rem
}

.pe-3 {
    padding-right: 2rem
}

.pe-4 {
    padding-right: 3rem
}

.pe-5 {
    padding-right: 4rem
}

.text-start {
    text-align: left
}

.text-end {
    text-align: right
}

.text-center {
    text-align: center
}

@media (min-width:576px) {
    .align-items-sm-start {
        align-items: flex-start
    }

    .align-items-sm-end {
        align-items: flex-end
    }

    .align-items-sm-center {
        align-items: center
    }

    .align-items-sm-baseline {
        align-items: baseline
    }

    .align-items-sm-stretch {
        align-items: stretch
    }

    .align-self-sm-auto {
        align-self: auto
    }

    .align-self-sm-start {
        align-self: flex-start
    }

    .align-self-sm-end {
        align-self: flex-end
    }

    .align-self-sm-center {
        align-self: center
    }

    .d-sm-inline {
        display: inline
    }

    .d-sm-inline-block {
        display: inline-block
    }

    .d-sm-block {
        display: block
    }

    .d-sm-grid {
        display: grid
    }

    .d-sm-flex {
        display: flex
    }

    .d-sm-inline-flex {
        display: inline-flex
    }

    .d-sm-none {
        display: none
    }

    .justify-content-sm-start {
        justify-content: flex-start
    }

    .justify-content-sm-end {
        justify-content: flex-end
    }

    .justify-content-sm-center {
        justify-content: center
    }

    .justify-content-sm-between {
        justify-content: space-between
    }

    .justify-content-sm-around {
        justify-content: space-around
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-last {
        order: 6
    }

    .flex-sm-fill {
        flex: 1 1 auto
    }

    .mt-sm-0 {
        margin-top: 0
    }

    .mt-sm-1 {
        margin-top: 1rem
    }

    .mt-sm-2 {
        margin-top: 1.5rem
    }

    .mt-sm-3 {
        margin-top: 2rem
    }

    .mt-sm-4 {
        margin-top: 3rem
    }

    .mt-sm-5 {
        margin-top: 4rem
    }

    .mt-sm-auto {
        margin-top: auto
    }

    .mb-sm-0 {
        margin-bottom: 0
    }

    .mb-sm-1 {
        margin-bottom: 1rem
    }

    .mb-sm-2 {
        margin-bottom: 1.5rem
    }

    .mb-sm-3 {
        margin-bottom: 2rem
    }

    .mb-sm-4 {
        margin-bottom: 3rem
    }

    .mb-sm-5 {
        margin-bottom: 4rem
    }

    .mb-sm-auto {
        margin-bottom: auto
    }

    .ms-sm-0 {
        margin-left: 0
    }

    .ms-sm-1 {
        margin-left: 1rem
    }

    .ms-sm-2 {
        margin-left: 1.5rem
    }

    .ms-sm-3 {
        margin-left: 2rem
    }

    .ms-sm-4 {
        margin-left: 3rem
    }

    .ms-sm-5 {
        margin-left: 4rem
    }

    .ms-sm-auto {
        margin-left: auto
    }

    .me-sm-0 {
        margin-right: 0
    }

    .me-sm-1 {
        margin-right: 1rem
    }

    .me-sm-2 {
        margin-right: 1.5rem
    }

    .me-sm-3 {
        margin-right: 2rem
    }

    .me-sm-4 {
        margin-right: 3rem
    }

    .me-sm-5 {
        margin-right: 4rem
    }

    .me-sm-auto {
        margin-right: auto
    }

    .p-sm-0 {
        padding: 0
    }

    .p-sm-1 {
        padding: 1rem
    }

    .p-sm-2 {
        padding: 1.5rem
    }

    .p-sm-3 {
        padding: 2rem
    }

    .p-sm-4 {
        padding: 3rem
    }

    .p-sm-5 {
        padding: 4rem
    }

    .p-sm-auto {
        padding: auto
    }

    .pb-sm-0 {
        padding-bottom: 0
    }

    .pb-sm-1 {
        padding-bottom: 1rem
    }

    .pb-sm-2 {
        padding-bottom: 1.5rem
    }

    .pb-sm-3 {
        padding-bottom: 2rem
    }

    .pb-sm-4 {
        padding-bottom: 3rem
    }

    .pb-sm-5 {
        padding-bottom: 4rem
    }

    .pt-sm-0 {
        padding-top: 0
    }

    .pt-sm-1 {
        padding-top: 1rem
    }

    .pt-sm-2 {
        padding-top: 1.5rem
    }

    .pt-sm-3 {
        padding-top: 2rem
    }

    .pt-sm-4 {
        padding-top: 3rem
    }

    .pt-sm-5 {
        padding-top: 4rem
    }

    .ps-sm-0 {
        padding-left: 0
    }

    .ps-sm-1 {
        padding-left: 1rem
    }

    .ps-sm-2 {
        padding-left: 1.5rem
    }

    .ps-sm-3 {
        padding-left: 2rem
    }

    .ps-sm-4 {
        padding-left: 3rem
    }

    .ps-sm-5 {
        padding-left: 4rem
    }

    .pe-sm-0 {
        padding-right: 0
    }

    .pe-sm-1 {
        padding-right: 1rem
    }

    .pe-sm-2 {
        padding-right: 1.5rem
    }

    .pe-sm-3 {
        padding-right: 2rem
    }

    .pe-sm-4 {
        padding-right: 3rem
    }

    .pe-sm-5 {
        padding-right: 4rem
    }

    .text-sm-start {
        text-align: left
    }

    .text-sm-end {
        text-align: right
    }

    .text-sm-center {
        text-align: center
    }
}

@media (min-width:768px) {
    .align-items-md-start {
        align-items: flex-start
    }

    .align-items-md-end {
        align-items: flex-end
    }

    .align-items-md-center {
        align-items: center
    }

    .align-items-md-baseline {
        align-items: baseline
    }

    .align-items-md-stretch {
        align-items: stretch
    }

    .align-self-md-auto {
        align-self: auto
    }

    .align-self-md-start {
        align-self: flex-start
    }

    .align-self-md-end {
        align-self: flex-end
    }

    .align-self-md-center {
        align-self: center
    }

    .d-md-inline {
        display: inline
    }

    .d-md-inline-block {
        display: inline-block
    }

    .d-md-block {
        display: block
    }

    .d-md-grid {
        display: grid
    }

    .d-md-flex {
        display: flex
    }

    .d-md-inline-flex {
        display: inline-flex
    }

    .d-md-none {
        display: none
    }

    .justify-content-md-start {
        justify-content: flex-start
    }

    .justify-content-md-end {
        justify-content: flex-end
    }

    .justify-content-md-center {
        justify-content: center
    }

    .justify-content-md-between {
        justify-content: space-between
    }

    .justify-content-md-around {
        justify-content: space-around
    }

    .justify-content-md-evenly {
        justify-content: space-evenly
    }

    .order-md-first {
        order: -1
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-last {
        order: 6
    }

    .flex-md-fill {
        flex: 1 1 auto
    }

    .mt-md-0 {
        margin-top: 0
    }

    .mt-md-1 {
        margin-top: 1rem
    }

    .mt-md-2 {
        margin-top: 1.5rem
    }

    .mt-md-3 {
        margin-top: 2rem
    }

    .mt-md-4 {
        margin-top: 3rem
    }

    .mt-md-5 {
        margin-top: 4rem
    }

    .mt-md-auto {
        margin-top: auto
    }

    .mb-md-0 {
        margin-bottom: 0
    }

    .mb-md-1 {
        margin-bottom: 1rem
    }

    .mb-md-2 {
        margin-bottom: 1.5rem
    }

    .mb-md-3 {
        margin-bottom: 2rem
    }

    .mb-md-4 {
        margin-bottom: 3rem
    }

    .mb-md-5 {
        margin-bottom: 4rem
    }

    .mb-md-auto {
        margin-bottom: auto
    }

    .ms-md-0 {
        margin-left: 0
    }

    .ms-md-1 {
        margin-left: 1rem
    }

    .ms-md-2 {
        margin-left: 1.5rem
    }

    .ms-md-3 {
        margin-left: 2rem
    }

    .ms-md-4 {
        margin-left: 3rem
    }

    .ms-md-5 {
        margin-left: 4rem
    }

    .ms-md-auto {
        margin-left: auto
    }

    .me-md-0 {
        margin-right: 0
    }

    .me-md-1 {
        margin-right: 1rem
    }

    .me-md-2 {
        margin-right: 1.5rem
    }

    .me-md-3 {
        margin-right: 2rem
    }

    .me-md-4 {
        margin-right: 3rem
    }

    .me-md-5 {
        margin-right: 4rem
    }

    .me-md-auto {
        margin-right: auto
    }

    .p-md-0 {
        padding: 0
    }

    .p-md-1 {
        padding: 1rem
    }

    .p-md-2 {
        padding: 1.5rem
    }

    .p-md-3 {
        padding: 2rem
    }

    .p-md-4 {
        padding: 3rem
    }

    .p-md-5 {
        padding: 4rem
    }

    .p-md-auto {
        padding: auto
    }

    .pb-md-0 {
        padding-bottom: 0
    }

    .pb-md-1 {
        padding-bottom: 1rem
    }

    .pb-md-2 {
        padding-bottom: 1.5rem
    }

    .pb-md-3 {
        padding-bottom: 2rem
    }

    .pb-md-4 {
        padding-bottom: 3rem
    }

    .pb-md-5 {
        padding-bottom: 4rem
    }

    .pt-md-0 {
        padding-top: 0
    }

    .pt-md-1 {
        padding-top: 1rem
    }

    .pt-md-2 {
        padding-top: 1.5rem
    }

    .pt-md-3 {
        padding-top: 2rem
    }

    .pt-md-4 {
        padding-top: 3rem
    }

    .pt-md-5 {
        padding-top: 4rem
    }

    .ps-md-0 {
        padding-left: 0
    }

    .ps-md-1 {
        padding-left: 1rem
    }

    .ps-md-2 {
        padding-left: 1.5rem
    }

    .ps-md-3 {
        padding-left: 2rem
    }

    .ps-md-4 {
        padding-left: 3rem
    }

    .ps-md-5 {
        padding-left: 4rem
    }

    .pe-md-0 {
        padding-right: 0
    }

    .pe-md-1 {
        padding-right: 1rem
    }

    .pe-md-2 {
        padding-right: 1.5rem
    }

    .pe-md-3 {
        padding-right: 2rem
    }

    .pe-md-4 {
        padding-right: 3rem
    }

    .pe-md-5 {
        padding-right: 4rem
    }

    .text-md-start {
        text-align: left
    }

    .text-md-end {
        text-align: right
    }

    .text-md-center {
        text-align: center
    }
}

@media (min-width:992px) {
    .align-items-lg-start {
        align-items: flex-start
    }

    .align-items-lg-end {
        align-items: flex-end
    }

    .align-items-lg-center {
        align-items: center
    }

    .align-items-lg-baseline {
        align-items: baseline
    }

    .align-items-lg-stretch {
        align-items: stretch
    }

    .align-self-lg-auto {
        align-self: auto
    }

    .align-self-lg-start {
        align-self: flex-start
    }

    .align-self-lg-end {
        align-self: flex-end
    }

    .align-self-lg-center {
        align-self: center
    }

    .d-lg-inline {
        display: inline
    }

    .d-lg-inline-block {
        display: inline-block
    }

    .d-lg-block {
        display: block
    }

    .d-lg-grid {
        display: grid
    }

    .d-lg-flex {
        display: flex
    }

    .d-lg-inline-flex {
        display: inline-flex
    }

    .d-lg-none {
        display: none
    }

    .justify-content-lg-start {
        justify-content: flex-start
    }

    .justify-content-lg-end {
        justify-content: flex-end
    }

    .justify-content-lg-center {
        justify-content: center
    }

    .justify-content-lg-between {
        justify-content: space-between
    }

    .justify-content-lg-around {
        justify-content: space-around
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-last {
        order: 6
    }

    .flex-lg-fill {
        flex: 1 1 auto
    }

    .mt-lg-0 {
        margin-top: 0
    }

    .mt-lg-1 {
        margin-top: 1rem
    }

    .mt-lg-2 {
        margin-top: 1.5rem
    }

    .mt-lg-3 {
        margin-top: 2rem
    }

    .mt-lg-4 {
        margin-top: 3rem
    }

    .mt-lg-5 {
        margin-top: 4rem
    }

    .mt-lg-auto {
        margin-top: auto
    }

    .mb-lg-0 {
        margin-bottom: 0
    }

    .mb-lg-1 {
        margin-bottom: 1rem
    }

    .mb-lg-2 {
        margin-bottom: 1.5rem
    }

    .mb-lg-3 {
        margin-bottom: 2rem
    }

    .mb-lg-4 {
        margin-bottom: 3rem
    }

    .mb-lg-5 {
        margin-bottom: 4rem
    }

    .mb-lg-auto {
        margin-bottom: auto
    }

    .ms-lg-0 {
        margin-left: 0
    }

    .ms-lg-1 {
        margin-left: 1rem
    }

    .ms-lg-2 {
        margin-left: 1.5rem
    }

    .ms-lg-3 {
        margin-left: 2rem
    }

    .ms-lg-4 {
        margin-left: 3rem
    }

    .ms-lg-5 {
        margin-left: 4rem
    }

    .ms-lg-auto {
        margin-left: auto
    }

    .me-lg-0 {
        margin-right: 0
    }

    .me-lg-1 {
        margin-right: 1rem
    }

    .me-lg-2 {
        margin-right: 1.5rem
    }

    .me-lg-3 {
        margin-right: 2rem
    }

    .me-lg-4 {
        margin-right: 3rem
    }

    .me-lg-5 {
        margin-right: 4rem
    }

    .me-lg-auto {
        margin-right: auto
    }

    .p-lg-0 {
        padding: 0
    }

    .p-lg-1 {
        padding: 1rem
    }

    .p-lg-2 {
        padding: 1.5rem
    }

    .p-lg-3 {
        padding: 2rem
    }

    .p-lg-4 {
        padding: 3rem
    }

    .p-lg-5 {
        padding: 4rem
    }

    .p-lg-auto {
        padding: auto
    }

    .pb-lg-0 {
        padding-bottom: 0
    }

    .pb-lg-1 {
        padding-bottom: 1rem
    }

    .pb-lg-2 {
        padding-bottom: 1.5rem
    }

    .pb-lg-3 {
        padding-bottom: 2rem
    }

    .pb-lg-4 {
        padding-bottom: 3rem
    }

    .pb-lg-5 {
        padding-bottom: 4rem
    }

    .pt-lg-0 {
        padding-top: 0
    }

    .pt-lg-1 {
        padding-top: 1rem
    }

    .pt-lg-2 {
        padding-top: 1.5rem
    }

    .pt-lg-3 {
        padding-top: 2rem
    }

    .pt-lg-4 {
        padding-top: 3rem
    }

    .pt-lg-5 {
        padding-top: 4rem
    }

    .ps-lg-0 {
        padding-left: 0
    }

    .ps-lg-1 {
        padding-left: 1rem
    }

    .ps-lg-2 {
        padding-left: 1.5rem
    }

    .ps-lg-3 {
        padding-left: 2rem
    }

    .ps-lg-4 {
        padding-left: 3rem
    }

    .ps-lg-5 {
        padding-left: 4rem
    }

    .pe-lg-0 {
        padding-right: 0
    }

    .pe-lg-1 {
        padding-right: 1rem
    }

    .pe-lg-2 {
        padding-right: 1.5rem
    }

    .pe-lg-3 {
        padding-right: 2rem
    }

    .pe-lg-4 {
        padding-right: 3rem
    }

    .pe-lg-5 {
        padding-right: 4rem
    }

    .text-lg-start {
        text-align: left
    }

    .text-lg-end {
        text-align: right
    }

    .text-lg-center {
        text-align: center
    }
}

@media (min-width:1200px) {
    .align-items-xl-start {
        align-items: flex-start
    }

    .align-items-xl-end {
        align-items: flex-end
    }

    .align-items-xl-center {
        align-items: center
    }

    .align-items-xl-baseline {
        align-items: baseline
    }

    .align-items-xl-stretch {
        align-items: stretch
    }

    .align-self-xl-auto {
        align-self: auto
    }

    .align-self-xl-start {
        align-self: flex-start
    }

    .align-self-xl-end {
        align-self: flex-end
    }

    .align-self-xl-center {
        align-self: center
    }

    .d-xl-inline {
        display: inline
    }

    .d-xl-inline-block {
        display: inline-block
    }

    .d-xl-block {
        display: block
    }

    .d-xl-grid {
        display: grid
    }

    .d-xl-flex {
        display: flex
    }

    .d-xl-inline-flex {
        display: inline-flex
    }

    .d-xl-none {
        display: none
    }

    .justify-content-xl-start {
        justify-content: flex-start
    }

    .justify-content-xl-end {
        justify-content: flex-end
    }

    .justify-content-xl-center {
        justify-content: center
    }

    .justify-content-xl-between {
        justify-content: space-between
    }

    .justify-content-xl-around {
        justify-content: space-around
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-last {
        order: 6
    }

    .flex-xl-fill {
        flex: 1 1 auto
    }

    .mt-xl-0 {
        margin-top: 0
    }

    .mt-xl-1 {
        margin-top: 1rem
    }

    .mt-xl-2 {
        margin-top: 1.5rem
    }

    .mt-xl-3 {
        margin-top: 2rem
    }

    .mt-xl-4 {
        margin-top: 3rem
    }

    .mt-xl-5 {
        margin-top: 4rem
    }

    .mt-xl-auto {
        margin-top: auto
    }

    .mb-xl-0 {
        margin-bottom: 0
    }

    .mb-xl-1 {
        margin-bottom: 1rem
    }

    .mb-xl-2 {
        margin-bottom: 1.5rem
    }

    .mb-xl-3 {
        margin-bottom: 2rem
    }

    .mb-xl-4 {
        margin-bottom: 3rem
    }

    .mb-xl-5 {
        margin-bottom: 4rem
    }

    .mb-xl-auto {
        margin-bottom: auto
    }

    .ms-xl-0 {
        margin-left: 0
    }

    .ms-xl-1 {
        margin-left: 1rem
    }

    .ms-xl-2 {
        margin-left: 1.5rem
    }

    .ms-xl-3 {
        margin-left: 2rem
    }

    .ms-xl-4 {
        margin-left: 3rem
    }

    .ms-xl-5 {
        margin-left: 4rem
    }

    .ms-xl-auto {
        margin-left: auto
    }

    .me-xl-0 {
        margin-right: 0
    }

    .me-xl-1 {
        margin-right: 1rem
    }

    .me-xl-2 {
        margin-right: 1.5rem
    }

    .me-xl-3 {
        margin-right: 2rem
    }

    .me-xl-4 {
        margin-right: 3rem
    }

    .me-xl-5 {
        margin-right: 4rem
    }

    .me-xl-auto {
        margin-right: auto
    }

    .p-xl-0 {
        padding: 0
    }

    .p-xl-1 {
        padding: 1rem
    }

    .p-xl-2 {
        padding: 1.5rem
    }

    .p-xl-3 {
        padding: 2rem
    }

    .p-xl-4 {
        padding: 3rem
    }

    .p-xl-5 {
        padding: 4rem
    }

    .p-xl-auto {
        padding: auto
    }

    .pb-xl-0 {
        padding-bottom: 0
    }

    .pb-xl-1 {
        padding-bottom: 1rem
    }

    .pb-xl-2 {
        padding-bottom: 1.5rem
    }

    .pb-xl-3 {
        padding-bottom: 2rem
    }

    .pb-xl-4 {
        padding-bottom: 3rem
    }

    .pb-xl-5 {
        padding-bottom: 4rem
    }

    .pt-xl-0 {
        padding-top: 0
    }

    .pt-xl-1 {
        padding-top: 1rem
    }

    .pt-xl-2 {
        padding-top: 1.5rem
    }

    .pt-xl-3 {
        padding-top: 2rem
    }

    .pt-xl-4 {
        padding-top: 3rem
    }

    .pt-xl-5 {
        padding-top: 4rem
    }

    .ps-xl-0 {
        padding-left: 0
    }

    .ps-xl-1 {
        padding-left: 1rem
    }

    .ps-xl-2 {
        padding-left: 1.5rem
    }

    .ps-xl-3 {
        padding-left: 2rem
    }

    .ps-xl-4 {
        padding-left: 3rem
    }

    .ps-xl-5 {
        padding-left: 4rem
    }

    .pe-xl-0 {
        padding-right: 0
    }

    .pe-xl-1 {
        padding-right: 1rem
    }

    .pe-xl-2 {
        padding-right: 1.5rem
    }

    .pe-xl-3 {
        padding-right: 2rem
    }

    .pe-xl-4 {
        padding-right: 3rem
    }

    .pe-xl-5 {
        padding-right: 4rem
    }

    .text-xl-start {
        text-align: left
    }

    .text-xl-end {
        text-align: right
    }

    .text-xl-center {
        text-align: center
    }
}

@media (min-width:1400px) {
    .align-items-xxl-start {
        align-items: flex-start
    }

    .align-items-xxl-end {
        align-items: flex-end
    }

    .align-items-xxl-center {
        align-items: center
    }

    .align-items-xxl-baseline {
        align-items: baseline
    }

    .align-items-xxl-stretch {
        align-items: stretch
    }

    .align-self-xxl-auto {
        align-self: auto
    }

    .align-self-xxl-start {
        align-self: flex-start
    }

    .align-self-xxl-end {
        align-self: flex-end
    }

    .align-self-xxl-center {
        align-self: center
    }

    .d-xxl-inline {
        display: inline
    }

    .d-xxl-inline-block {
        display: inline-block
    }

    .d-xxl-block {
        display: block
    }

    .d-xxl-grid {
        display: grid
    }

    .d-xxl-flex {
        display: flex
    }

    .d-xxl-inline-flex {
        display: inline-flex
    }

    .d-xxl-none {
        display: none
    }

    .justify-content-xxl-start {
        justify-content: flex-start
    }

    .justify-content-xxl-end {
        justify-content: flex-end
    }

    .justify-content-xxl-center {
        justify-content: center
    }

    .justify-content-xxl-between {
        justify-content: space-between
    }

    .justify-content-xxl-around {
        justify-content: space-around
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly
    }

    .order-xxl-first {
        order: -1
    }

    .order-xxl-0 {
        order: 0
    }

    .order-xxl-1 {
        order: 1
    }

    .order-xxl-2 {
        order: 2
    }

    .order-xxl-3 {
        order: 3
    }

    .order-xxl-4 {
        order: 4
    }

    .order-xxl-5 {
        order: 5
    }

    .order-xxl-last {
        order: 6
    }

    .flex-xxl-fill {
        flex: 1 1 auto
    }

    .mt-xxl-0 {
        margin-top: 0
    }

    .mt-xxl-1 {
        margin-top: 1rem
    }

    .mt-xxl-2 {
        margin-top: 1.5rem
    }

    .mt-xxl-3 {
        margin-top: 2rem
    }

    .mt-xxl-4 {
        margin-top: 3rem
    }

    .mt-xxl-5 {
        margin-top: 4rem
    }

    .mt-xxl-auto {
        margin-top: auto
    }

    .mb-xxl-0 {
        margin-bottom: 0
    }

    .mb-xxl-1 {
        margin-bottom: 1rem
    }

    .mb-xxl-2 {
        margin-bottom: 1.5rem
    }

    .mb-xxl-3 {
        margin-bottom: 2rem
    }

    .mb-xxl-4 {
        margin-bottom: 3rem
    }

    .mb-xxl-5 {
        margin-bottom: 4rem
    }

    .mb-xxl-auto {
        margin-bottom: auto
    }

    .ms-xxl-0 {
        margin-left: 0
    }

    .ms-xxl-1 {
        margin-left: 1rem
    }

    .ms-xxl-2 {
        margin-left: 1.5rem
    }

    .ms-xxl-3 {
        margin-left: 2rem
    }

    .ms-xxl-4 {
        margin-left: 3rem
    }

    .ms-xxl-5 {
        margin-left: 4rem
    }

    .ms-xxl-auto {
        margin-left: auto
    }

    .me-xxl-0 {
        margin-right: 0
    }

    .me-xxl-1 {
        margin-right: 1rem
    }

    .me-xxl-2 {
        margin-right: 1.5rem
    }

    .me-xxl-3 {
        margin-right: 2rem
    }

    .me-xxl-4 {
        margin-right: 3rem
    }

    .me-xxl-5 {
        margin-right: 4rem
    }

    .me-xxl-auto {
        margin-right: auto
    }

    .p-xxl-0 {
        padding: 0
    }

    .p-xxl-1 {
        padding: 1rem
    }

    .p-xxl-2 {
        padding: 1.5rem
    }

    .p-xxl-3 {
        padding: 2rem
    }

    .p-xxl-4 {
        padding: 3rem
    }

    .p-xxl-5 {
        padding: 4rem
    }

    .p-xxl-auto {
        padding: auto
    }

    .pb-xxl-0 {
        padding-bottom: 0
    }

    .pb-xxl-1 {
        padding-bottom: 1rem
    }

    .pb-xxl-2 {
        padding-bottom: 1.5rem
    }

    .pb-xxl-3 {
        padding-bottom: 2rem
    }

    .pb-xxl-4 {
        padding-bottom: 3rem
    }

    .pb-xxl-5 {
        padding-bottom: 4rem
    }

    .pt-xxl-0 {
        padding-top: 0
    }

    .pt-xxl-1 {
        padding-top: 1rem
    }

    .pt-xxl-2 {
        padding-top: 1.5rem
    }

    .pt-xxl-3 {
        padding-top: 2rem
    }

    .pt-xxl-4 {
        padding-top: 3rem
    }

    .pt-xxl-5 {
        padding-top: 4rem
    }

    .ps-xxl-0 {
        padding-left: 0
    }

    .ps-xxl-1 {
        padding-left: 1rem
    }

    .ps-xxl-2 {
        padding-left: 1.5rem
    }

    .ps-xxl-3 {
        padding-left: 2rem
    }

    .ps-xxl-4 {
        padding-left: 3rem
    }

    .ps-xxl-5 {
        padding-left: 4rem
    }

    .pe-xxl-0 {
        padding-right: 0
    }

    .pe-xxl-1 {
        padding-right: 1rem
    }

    .pe-xxl-2 {
        padding-right: 1.5rem
    }

    .pe-xxl-3 {
        padding-right: 2rem
    }

    .pe-xxl-4 {
        padding-right: 3rem
    }

    .pe-xxl-5 {
        padding-right: 4rem
    }

    .text-xxl-start {
        text-align: left
    }

    .text-xxl-end {
        text-align: right
    }

    .text-xxl-center {
        text-align: center
    }
}

@media (min-width:1600px) {
    .align-items-xxxl-start {
        align-items: flex-start
    }

    .align-items-xxxl-end {
        align-items: flex-end
    }

    .align-items-xxxl-center {
        align-items: center
    }

    .align-items-xxxl-baseline {
        align-items: baseline
    }

    .align-items-xxxl-stretch {
        align-items: stretch
    }

    .align-self-xxxl-auto {
        align-self: auto
    }

    .align-self-xxxl-start {
        align-self: flex-start
    }

    .align-self-xxxl-end {
        align-self: flex-end
    }

    .align-self-xxxl-center {
        align-self: center
    }

    .d-xxxl-inline {
        display: inline
    }

    .d-xxxl-inline-block {
        display: inline-block
    }

    .d-xxxl-block {
        display: block
    }

    .d-xxxl-grid {
        display: grid
    }

    .d-xxxl-flex {
        display: flex
    }

    .d-xxxl-inline-flex {
        display: inline-flex
    }

    .d-xxxl-none {
        display: none
    }

    .justify-content-xxxl-start {
        justify-content: flex-start
    }

    .justify-content-xxxl-end {
        justify-content: flex-end
    }

    .justify-content-xxxl-center {
        justify-content: center
    }

    .justify-content-xxxl-between {
        justify-content: space-between
    }

    .justify-content-xxxl-around {
        justify-content: space-around
    }

    .justify-content-xxxl-evenly {
        justify-content: space-evenly
    }

    .order-xxxl-first {
        order: -1
    }

    .order-xxxl-0 {
        order: 0
    }

    .order-xxxl-1 {
        order: 1
    }

    .order-xxxl-2 {
        order: 2
    }

    .order-xxxl-3 {
        order: 3
    }

    .order-xxxl-4 {
        order: 4
    }

    .order-xxxl-5 {
        order: 5
    }

    .order-xxxl-last {
        order: 6
    }

    .flex-xxxl-fill {
        flex: 1 1 auto
    }

    .mt-xxxl-0 {
        margin-top: 0
    }

    .mt-xxxl-1 {
        margin-top: 1rem
    }

    .mt-xxxl-2 {
        margin-top: 1.5rem
    }

    .mt-xxxl-3 {
        margin-top: 2rem
    }

    .mt-xxxl-4 {
        margin-top: 3rem
    }

    .mt-xxxl-5 {
        margin-top: 4rem
    }

    .mt-xxxl-auto {
        margin-top: auto
    }

    .mb-xxxl-0 {
        margin-bottom: 0
    }

    .mb-xxxl-1 {
        margin-bottom: 1rem
    }

    .mb-xxxl-2 {
        margin-bottom: 1.5rem
    }

    .mb-xxxl-3 {
        margin-bottom: 2rem
    }

    .mb-xxxl-4 {
        margin-bottom: 3rem
    }

    .mb-xxxl-5 {
        margin-bottom: 4rem
    }

    .mb-xxxl-auto {
        margin-bottom: auto
    }

    .ms-xxxl-0 {
        margin-left: 0
    }

    .ms-xxxl-1 {
        margin-left: 1rem
    }

    .ms-xxxl-2 {
        margin-left: 1.5rem
    }

    .ms-xxxl-3 {
        margin-left: 2rem
    }

    .ms-xxxl-4 {
        margin-left: 3rem
    }

    .ms-xxxl-5 {
        margin-left: 4rem
    }

    .ms-xxxl-auto {
        margin-left: auto
    }

    .me-xxxl-0 {
        margin-right: 0
    }

    .me-xxxl-1 {
        margin-right: 1rem
    }

    .me-xxxl-2 {
        margin-right: 1.5rem
    }

    .me-xxxl-3 {
        margin-right: 2rem
    }

    .me-xxxl-4 {
        margin-right: 3rem
    }

    .me-xxxl-5 {
        margin-right: 4rem
    }

    .me-xxxl-auto {
        margin-right: auto
    }

    .p-xxxl-0 {
        padding: 0
    }

    .p-xxxl-1 {
        padding: 1rem
    }

    .p-xxxl-2 {
        padding: 1.5rem
    }

    .p-xxxl-3 {
        padding: 2rem
    }

    .p-xxxl-4 {
        padding: 3rem
    }

    .p-xxxl-5 {
        padding: 4rem
    }

    .p-xxxl-auto {
        padding: auto
    }

    .pb-xxxl-0 {
        padding-bottom: 0
    }

    .pb-xxxl-1 {
        padding-bottom: 1rem
    }

    .pb-xxxl-2 {
        padding-bottom: 1.5rem
    }

    .pb-xxxl-3 {
        padding-bottom: 2rem
    }

    .pb-xxxl-4 {
        padding-bottom: 3rem
    }

    .pb-xxxl-5 {
        padding-bottom: 4rem
    }

    .pt-xxxl-0 {
        padding-top: 0
    }

    .pt-xxxl-1 {
        padding-top: 1rem
    }

    .pt-xxxl-2 {
        padding-top: 1.5rem
    }

    .pt-xxxl-3 {
        padding-top: 2rem
    }

    .pt-xxxl-4 {
        padding-top: 3rem
    }

    .pt-xxxl-5 {
        padding-top: 4rem
    }

    .ps-xxxl-0 {
        padding-left: 0
    }

    .ps-xxxl-1 {
        padding-left: 1rem
    }

    .ps-xxxl-2 {
        padding-left: 1.5rem
    }

    .ps-xxxl-3 {
        padding-left: 2rem
    }

    .ps-xxxl-4 {
        padding-left: 3rem
    }

    .ps-xxxl-5 {
        padding-left: 4rem
    }

    .pe-xxxl-0 {
        padding-right: 0
    }

    .pe-xxxl-1 {
        padding-right: 1rem
    }

    .pe-xxxl-2 {
        padding-right: 1.5rem
    }

    .pe-xxxl-3 {
        padding-right: 2rem
    }

    .pe-xxxl-4 {
        padding-right: 3rem
    }

    .pe-xxxl-5 {
        padding-right: 4rem
    }

    .text-xxxl-start {
        text-align: left
    }

    .text-xxxl-end {
        text-align: right
    }

    .text-xxxl-center {
        text-align: center
    }
}

@media print {
    .d-print-inline {
        display: inline
    }

    .d-print-inline-block {
        display: inline-block
    }

    .d-print-block {
        display: block
    }

    .d-print-grid {
        display: grid
    }

    .d-print-flex {
        display: flex
    }

    .d-print-inline-flex {
        display: inline-flex
    }

    .d-print-none {
        display: none
    }
}