:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: Brother 1816, Arial, Helvetica, sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

*,
::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: 1px solid;
    opacity: .25
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

@media(min-width:1200px) {
    h1 {
        font-size: 2.5rem
    }

    h2 {
        font-size: 2rem
    }

    h3 {
        font-size: 1.75rem
    }

    h4 {
        font-size: 1.5rem
    }
}

h5 {
    font-size: 1.25rem
}

h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    margin-bottom: calc(1.28125rem + .375vw)
}

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

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

ol,
ul {
    padding-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: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

blockquote,
figure {
    margin: 0 0 1rem
}

small {
    font-size: .875em
}

mark {
    padding: .1875em;
    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: var(--bs-link-color);
    transition: .3s;
    color: #38d996;
    text-decoration: none
}

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

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
}

img,
svg {
    vertical-align: middle
}

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

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

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

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

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],
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    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
}

::-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: calc(1.275rem + .3vw);
    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] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

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

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --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
    }
}

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

    .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: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --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.3333333333%
}

.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.6666666667%
}

.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.3333333333%
    }

    .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.6666666667%
    }

    .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.3333333333%
    }

    .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.6666666667%
    }

    .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.3333333333%
    }

    .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.6666666667%
    }

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

    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px
    }
}

@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.3333333333%
    }

    .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.6666666667%
    }

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

    .modal-xl {
        --bs-modal-width: 1140px
    }
}

@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.3333333333%
    }

    .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.6666666667%
    }

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

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin)*2)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg)
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity)
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius)
}

.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);
    margin: calc(-.5*var(--bs-modal-header-padding-y)) calc(-.5*var(--bs-modal-header-padding-x)) calc(-.5*var(--bs-modal-header-padding-y)) auto
}

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height)
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding)
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius)
}

.modal-footer>* {
    margin: calc(var(--bs-modal-footer-gap)*.5)
}

@media(min-width:576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto
    }

    .modal-sm {
        --bs-modal-width: 300px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0
}

.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
    border-radius: 0
}

.modal-fullscreen .modal-body {
    overflow-y: auto
}

@media(max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-footer,
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto
    }
}

@media(max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-footer,
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto
    }
}

@media(max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-footer,
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto
    }
}

@media(max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-footer,
    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto
    }
}

@media(max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-footer,
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto
    }
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: left !important
}

.float-end {
    float: right !important
}

.float-none {
    float: none !important
}

.opacity-0 {
    opacity: 0 !important
}

.opacity-25 {
    opacity: .25 !important
}

.opacity-50 {
    opacity: .5 !important
}

.opacity-75 {
    opacity: .75 !important
}

.opacity-100 {
    opacity: 1 !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-visible {
    overflow: visible !important
}

.overflow-scroll {
    overflow: scroll !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    left: 0 !important
}

.start-50 {
    left: 50% !important
}

.start-100 {
    left: 100% !important
}

.end-0 {
    right: 0 !important
}

.end-50 {
    right: 50% !important
}

.end-100 {
    right: 100% !important
}

.translate-middle {
    transform: translate(-50%, -50%) !important
}

.translate-middle-x {
    transform: translateX(-50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-end-0 {
    border-right: 0 !important
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-start-0 {
    border-left: 0 !important
}

.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important
}

.border-secondary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important
}

.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
}

.border-info {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
}

.border-warning {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
}

.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
}

.border-light {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
}

.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important
}

.border-1 {
    --bs-border-width: 1px
}

.border-2 {
    --bs-border-width: 2px
}

.border-3 {
    --bs-border-width: 3px
}

.border-4 {
    --bs-border-width: 4px
}

.border-5 {
    --bs-border-width: 5px
}

.border-opacity-10 {
    --bs-border-opacity: 0.1
}

.border-opacity-25 {
    --bs-border-opacity: 0.25
}

.border-opacity-50 {
    --bs-border-opacity: 0.5
}

.border-opacity-75 {
    --bs-border-opacity: 0.75
}

.border-opacity-100 {
    --bs-border-opacity: 1
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.justify-content-between {
    justify-content: space-between !important
}

.justify-content-around {
    justify-content: space-around !important
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important
}

.mx-1 {
    margin-right: .25rem !important;
    margin-left: .25rem !important
}

.mx-2 {
    margin-right: .5rem !important;
    margin-left: .5rem !important
}

.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important
}

.mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important
}

.mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important
}

.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-left: 0 !important
}

.ms-1 {
    margin-left: .25rem !important
}

.ms-2 {
    margin-left: .5rem !important
}

.ms-3 {
    margin-left: 1rem !important
}

.ms-4 {
    margin-left: 1.5rem !important
}

.ms-5 {
    margin-left: 3rem !important
}

.ms-auto {
    margin-left: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-right: 0 !important
}

.pe-1 {
    padding-right: .25rem !important
}

.pe-2 {
    padding-right: .5rem !important
}

.pe-3 {
    padding-right: 1rem !important
}

.pe-4 {
    padding-right: 1.5rem !important
}

.pe-5 {
    padding-right: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-left: 0 !important
}

.ps-1 {
    padding-left: .25rem !important
}

.ps-2 {
    padding-left: .5rem !important
}

.ps-3 {
    padding-left: 1rem !important
}

.ps-4 {
    padding-left: 1.5rem !important
}

.ps-5 {
    padding-left: 3rem !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fst-italic {
    font-style: italic !important
}

.fst-normal {
    font-style: normal !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-semibold {
    font-weight: 600 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.3 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 1.7 !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, .5) !important
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, .5) !important
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important
}

.text-opacity-25 {
    --bs-text-opacity: 0.25
}

.text-opacity-50 {
    --bs-text-opacity: 0.5
}

.text-opacity-75 {
    --bs-text-opacity: 0.75
}

.text-opacity-100 {
    --bs-text-opacity: 1
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: rgba(0, 0, 0, 0) !important
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75
}

.bg-opacity-100 {
    --bs-bg-opacity: 1
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

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

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

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

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: var(--bs-border-radius) !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important
}

.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important
}

.rounded-4 {
    border-radius: var(--bs-border-radius-xl) !important
}

.rounded-5 {
    border-radius: var(--bs-border-radius-2xl) !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important
}

.rounded-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important
}

.rounded-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important
}

.rounded-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important
}

.rounded-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media(min-width:576px) {
    .float-sm-start {
        float: left !important
    }

    .float-sm-end {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-sm-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-sm-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-sm-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-sm-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-sm-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-right: 0 !important
    }

    .me-sm-1 {
        margin-right: .25rem !important
    }

    .me-sm-2 {
        margin-right: .5rem !important
    }

    .me-sm-3 {
        margin-right: 1rem !important
    }

    .me-sm-4 {
        margin-right: 1.5rem !important
    }

    .me-sm-5 {
        margin-right: 3rem !important
    }

    .me-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-left: 0 !important
    }

    .ms-sm-1 {
        margin-left: .25rem !important
    }

    .ms-sm-2 {
        margin-left: .5rem !important
    }

    .ms-sm-3 {
        margin-left: 1rem !important
    }

    .ms-sm-4 {
        margin-left: 1.5rem !important
    }

    .ms-sm-5 {
        margin-left: 3rem !important
    }

    .ms-sm-auto {
        margin-left: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-sm-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-sm-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-right: 0 !important
    }

    .pe-sm-1 {
        padding-right: .25rem !important
    }

    .pe-sm-2 {
        padding-right: .5rem !important
    }

    .pe-sm-3 {
        padding-right: 1rem !important
    }

    .pe-sm-4 {
        padding-right: 1.5rem !important
    }

    .pe-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-left: 0 !important
    }

    .ps-sm-1 {
        padding-left: .25rem !important
    }

    .ps-sm-2 {
        padding-left: .5rem !important
    }

    .ps-sm-3 {
        padding-left: 1rem !important
    }

    .ps-sm-4 {
        padding-left: 1.5rem !important
    }

    .ps-sm-5 {
        padding-left: 3rem !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .text-sm-start {
        text-align: left !important
    }

    .text-sm-end {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media(min-width:768px) {
    .float-md-start {
        float: left !important
    }

    .float-md-end {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-md-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-md-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-md-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-1 {
        margin-right: .25rem !important
    }

    .me-md-2 {
        margin-right: .5rem !important
    }

    .me-md-3 {
        margin-right: 1rem !important
    }

    .me-md-4 {
        margin-right: 1.5rem !important
    }

    .me-md-5 {
        margin-right: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-left: 0 !important
    }

    .ms-md-1 {
        margin-left: .25rem !important
    }

    .ms-md-2 {
        margin-left: .5rem !important
    }

    .ms-md-3 {
        margin-left: 1rem !important
    }

    .ms-md-4 {
        margin-left: 1.5rem !important
    }

    .ms-md-5 {
        margin-left: 3rem !important
    }

    .ms-md-auto {
        margin-left: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-md-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-md-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-right: 0 !important
    }

    .pe-md-1 {
        padding-right: .25rem !important
    }

    .pe-md-2 {
        padding-right: .5rem !important
    }

    .pe-md-3 {
        padding-right: 1rem !important
    }

    .pe-md-4 {
        padding-right: 1.5rem !important
    }

    .pe-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-left: 0 !important
    }

    .ps-md-1 {
        padding-left: .25rem !important
    }

    .ps-md-2 {
        padding-left: .5rem !important
    }

    .ps-md-3 {
        padding-left: 1rem !important
    }

    .ps-md-4 {
        padding-left: 1.5rem !important
    }

    .ps-md-5 {
        padding-left: 3rem !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .text-md-start {
        text-align: left !important
    }

    .text-md-end {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media(min-width:992px) {
    .float-lg-start {
        float: left !important
    }

    .float-lg-end {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-lg-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-lg-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-lg-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-lg-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-lg-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .me-lg-1 {
        margin-right: .25rem !important
    }

    .me-lg-2 {
        margin-right: .5rem !important
    }

    .me-lg-3 {
        margin-right: 1rem !important
    }

    .me-lg-4 {
        margin-right: 1.5rem !important
    }

    .me-lg-5 {
        margin-right: 3rem !important
    }

    .me-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-left: 0 !important
    }

    .ms-lg-1 {
        margin-left: .25rem !important
    }

    .ms-lg-2 {
        margin-left: .5rem !important
    }

    .ms-lg-3 {
        margin-left: 1rem !important
    }

    .ms-lg-4 {
        margin-left: 1.5rem !important
    }

    .ms-lg-5 {
        margin-left: 3rem !important
    }

    .ms-lg-auto {
        margin-left: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-lg-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-lg-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-right: 0 !important
    }

    .pe-lg-1 {
        padding-right: .25rem !important
    }

    .pe-lg-2 {
        padding-right: .5rem !important
    }

    .pe-lg-3 {
        padding-right: 1rem !important
    }

    .pe-lg-4 {
        padding-right: 1.5rem !important
    }

    .pe-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-left: 0 !important
    }

    .ps-lg-1 {
        padding-left: .25rem !important
    }

    .ps-lg-2 {
        padding-left: .5rem !important
    }

    .ps-lg-3 {
        padding-left: 1rem !important
    }

    .ps-lg-4 {
        padding-left: 1.5rem !important
    }

    .ps-lg-5 {
        padding-left: 3rem !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .text-lg-start {
        text-align: left !important
    }

    .text-lg-end {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media(min-width:1200px) {
    .float-xl-start {
        float: left !important
    }

    .float-xl-end {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-xl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-right: 0 !important
    }

    .me-xl-1 {
        margin-right: .25rem !important
    }

    .me-xl-2 {
        margin-right: .5rem !important
    }

    .me-xl-3 {
        margin-right: 1rem !important
    }

    .me-xl-4 {
        margin-right: 1.5rem !important
    }

    .me-xl-5 {
        margin-right: 3rem !important
    }

    .me-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-left: 0 !important
    }

    .ms-xl-1 {
        margin-left: .25rem !important
    }

    .ms-xl-2 {
        margin-left: .5rem !important
    }

    .ms-xl-3 {
        margin-left: 1rem !important
    }

    .ms-xl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xl-5 {
        margin-left: 3rem !important
    }

    .ms-xl-auto {
        margin-left: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-xl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-right: 0 !important
    }

    .pe-xl-1 {
        padding-right: .25rem !important
    }

    .pe-xl-2 {
        padding-right: .5rem !important
    }

    .pe-xl-3 {
        padding-right: 1rem !important
    }

    .pe-xl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-left: 0 !important
    }

    .ps-xl-1 {
        padding-left: .25rem !important
    }

    .ps-xl-2 {
        padding-left: .5rem !important
    }

    .ps-xl-3 {
        padding-left: 1rem !important
    }

    .ps-xl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xl-5 {
        padding-left: 3rem !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .text-xl-start {
        text-align: left !important
    }

    .text-xl-end {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }

    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media(min-width:1400px) {
    .float-xxl-start {
        float: left !important
    }

    .float-xxl-end {
        float: right !important
    }

    .float-xxl-none {
        float: none !important
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important
    }

    .mx-xxl-1 {
        margin-right: .25rem !important;
        margin-left: .25rem !important
    }

    .mx-xxl-2 {
        margin-right: .5rem !important;
        margin-left: .5rem !important
    }

    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important
    }

    .mx-xxl-4 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-right: 3rem !important;
        margin-left: 3rem !important
    }

    .mx-xxl-auto {
        margin-right: auto !important;
        margin-left: auto !important
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-right: 0 !important
    }

    .me-xxl-1 {
        margin-right: .25rem !important
    }

    .me-xxl-2 {
        margin-right: .5rem !important
    }

    .me-xxl-3 {
        margin-right: 1rem !important
    }

    .me-xxl-4 {
        margin-right: 1.5rem !important
    }

    .me-xxl-5 {
        margin-right: 3rem !important
    }

    .me-xxl-auto {
        margin-right: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-left: 0 !important
    }

    .ms-xxl-1 {
        margin-left: .25rem !important
    }

    .ms-xxl-2 {
        margin-left: .5rem !important
    }

    .ms-xxl-3 {
        margin-left: 1rem !important
    }

    .ms-xxl-4 {
        margin-left: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-left: 3rem !important
    }

    .ms-xxl-auto {
        margin-left: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-xxl-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-xxl-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-xxl-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-xxl-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-right: 0 !important
    }

    .pe-xxl-1 {
        padding-right: .25rem !important
    }

    .pe-xxl-2 {
        padding-right: .5rem !important
    }

    .pe-xxl-3 {
        padding-right: 1rem !important
    }

    .pe-xxl-4 {
        padding-right: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-right: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-left: 0 !important
    }

    .ps-xxl-1 {
        padding-left: .25rem !important
    }

    .ps-xxl-2 {
        padding-left: .5rem !important
    }

    .ps-xxl-3 {
        padding-left: 1rem !important
    }

    .ps-xxl-4 {
        padding-left: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-left: 3rem !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: .25rem !important
    }

    .gap-xxl-2 {
        gap: .5rem !important
    }

    .gap-xxl-3 {
        gap: 1rem !important
    }

    .gap-xxl-4 {
        gap: 1.5rem !important
    }

    .gap-xxl-5 {
        gap: 3rem !important
    }

    .text-xxl-start {
        text-align: left !important
    }

    .text-xxl-end {
        text-align: right !important
    }

    .text-xxl-center {
        text-align: center !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media(prefers-reduced-motion:reduce) {

    .modal.fade .modal-dialog,
    .nav-link {
        transition: none
    }
}

.nav-link:focus,
.nav-link:hover {
    color: var(--bs-nav-link-hover-color)
}

.nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    --bs-nav-tabs-border-width: 1px;
    --bs-nav-tabs-border-color: #dee2e6;
    --bs-nav-tabs-border-radius: 0.375rem;
    --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
    --bs-nav-tabs-link-active-color: #495057;
    --bs-nav-tabs-link-active-bg: #fff;
    --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
    border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
}

.nav-tabs .nav-link {
    margin-bottom: calc(-1*var(--bs-nav-tabs-border-width));
    background: 0 0;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius)
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate;
    border-color: var(--bs-nav-tabs-link-hover-border-color)
}

.nav-tabs .nav-link.disabled,
.nav-tabs .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    background-color: rgba(0, 0, 0, 0);
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color)
}

.nav-tabs .dropdown-menu {
    margin-top: calc(-1*var(--bs-nav-tabs-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.nav-pills {
    --bs-nav-pills-border-radius: 0.375rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #0d6efd
}

.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: var(--bs-nav-pills-border-radius)
}

.nav-pills .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    background-color: rgba(0, 0, 0, 0);
    border-color: transparent
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg)
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.fade {
    transition: opacity .15s linear
}

@media(prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width .35s
}

@media(prefers-reduced-motion:reduce) {

    .collapsing,
    .collapsing.collapse-horizontal {
        transition: none
    }
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020
}

.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020
}

@media(min-width:576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-sm-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media(min-width:768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-md-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media(min-width:992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-lg-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media(min-width:1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

@media(min-width:1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }

    .sticky-xxl-bottom {
        position: sticky;
        bottom: 0;
        z-index: 1020
    }
}

.dropdown,
.dropdown-center,
.dropend,
.dropstart,
.dropup,
.dropup-center {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: #212529;
    --bs-dropdown-bg: #fff;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: 0.375rem;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-dropdown-link-color: #212529;
    --bs-dropdown-link-hover-color: #1e2125;
    --bs-dropdown-link-hover-bg: #e9ecef;
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius)
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer)
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto
}

@media(min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media(min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media(min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media(min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        right: 0;
        left: auto
    }

    p {
        margin-bottom: 1.5625rem
    }
}

@media(min-width:1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: var(--bs-dropdown-spacer)
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: var(--bs-dropdown-spacer)
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: 0;
    border-bottom: .3em solid transparent;
    border-left: .3em solid;
    vertical-align: 0
}

.dropend .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: var(--bs-dropdown-spacer)
}

.dropstart .dropdown-toggle::after {
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    display: none
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-right: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-right: .3em solid;
    border-bottom: .3em solid transparent;
    vertical-align: 0
}

.dropstart .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-divider {
    height: 0;
    margin: var(--bs-dropdown-divider-margin-y) 0;
    overflow: hidden;
    border-top: 1px solid var(--bs-dropdown-divider-bg);
    opacity: 1
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0);
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg)
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg)
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0)
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: .875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color)
}

.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #fff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: #0d6efd;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd
}

.highcharts-axis-labels text {
    color: #79768b !important;
    fill: #79768b !important;
    font-size: 12px !important
}

.highcharts-button rect {
    background: 0 0 !important;
    fill: none !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {
    padding: .9375rem !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner #hs-eu-policy-wording span {
    font-size: 1rem !important;
    line-height: 1.3 !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area {
    margin-right: 0 !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button {
    background: #38d996 !important;
    border-radius: 0 !important;
    border-color: #38d996 !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-decline-button {
    border-radius: 0 !important;
    border-color: #38d996 !important;
    color: #38d996 !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
    margin: 0 0 .625rem !important
}

body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p:last-child {
    margin-bottom: 0 !important
}

.hbspt-form {
    background-color: rgba(0, 0, 0, 0)
}

.hbspt-form .submitted-message {
    overflow: visible !important
}

.hbspt-form .submitted-message p {
    position: relative;
    font-size: .875rem;
    color: #d2d1da
}

.hbspt-form form * {
    box-sizing: border-box !important
}

.hbspt-form form input[type=email],
.hbspt-form form input[type=text],
.hbspt-form form select,
.hbspt-form form textarea {
    border: 1px solid transparent;
    transition: border .3s
}

.hbspt-form form input[type=email],
.hbspt-form form input[type=text] {
    display: block;
    width: 100% !important;
    height: 58px;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: none;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    border: 1px solid transparent;
    color: #0a0a23;
    background-color: #fff;
    border-radius: 0;
    padding: 1.125rem 1.25rem
}

.hbspt-form form input[type=email]:-ms-input-placeholder,
.hbspt-form form input[type=email]::placeholder,
.hbspt-form form input[type=text]:-ms-input-placeholder,
.hbspt-form form input[type=text]::placeholder {
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #0a0a23;
    opacity: .4
}

.hbspt-form form input[type=number] {
    -moz-appearance: textfield
}

.hbspt-form form input[type=email]:active,
.hbspt-form form input[type=email]:focus,
.hbspt-form form input[type=text]:active,
.hbspt-form form input[type=text]:focus,
.hbspt-form form select:active,
.hbspt-form form select:focus,
.hbspt-form form textarea:active,
.hbspt-form form textarea:focus {
    border: 1px solid #38d996;
    transition: border .3s
}

.hbspt-form form .hs-richtext p {
    font-size: .875rem;
    color: #d2d1da
}

.hbspt-form form .hs-richtext p a,
.hbspt-form form .hs-richtext p em {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

.hbspt-form form .hs-richtext p em {
    font-style: italic
}

.hbspt-form form .hs-richtext p a {
    color: #38d996;
    text-decoration: none
}

.hbspt-form form .hs-richtext p a:hover {
    text-decoration: underline
}

.hbspt-form form .actions input[type=submit] {
    position: relative;
    display: block;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: .875rem;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .15);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    min-width: 120px;
    height: 58px;
    background-color: #38d996;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAeCAYAAABNChwpAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASSSURBVHgB7VfNaxtHFH8zqy9rZclKJasqIt2mS1IWmhZUWprTXgvpqch/Qk85B3opplDoH9BLwORgKG3wJTkYArmoudQHu/TQ+JSD2xqErHzY0sZS5J3Zvrezo6zXn7FzzMBj5fl6v99v3nszBnjbztdY/HcQBIDGEv2n3uBNrwmiucFxkzicdrfDmek+1mq1+Pz8PIvPD0iSs5E8tLEIBDni+jscDi9JKe+urq5WsM9AIEZsjl5ztqYIhAy42ijcPDTXdVMAzbTv+/eIKYL46+HDP6vUp8Zo3nwSyAEwqSN8TyZqWefm5rjr9sLf7bbDNzc3mWX5bHl5+dvr17/+lHP2ybVrVxcAdua2toaEPHDddvDoUVWxYCyI7X1kXEzOVMv9ijGEjC3LzeHfWYDGFEA9X6tdNVdWVhwhxD+kxHg8Xmw0vpyieY7jZNQ6MLQScFxM6DTSckXnGTpuNiENYOXIMTmtVp0CwJVpgMp0uXyp9ODB7x8LIUMQo9Ho53q9nldgm2m1R0iGwwlBGTrWQUYAms1mOjhDGwxe/GhZVs627SyBaLVCJQ+owBPOJw2ds15viWGUnymKGQNce9l4/NjH9UO2tBTGk/ZzeAzEIhWBqSgHsCfnrSQvlwAulgsFu1oofDhrmh/UTNN6d3Hx1898X/xL7Le3+z/NzFgzAHRMjSmtAvo/MQ5oIEo1BcC2KeDIeRU3u1AslS6Wp6cvY87XZslxPv9+fWHhl8/39vz/lPSD39T4DAKwixQLRIKOEk4ZA2Hkq1x2MkoBDYBYNS4Qe2Kez19579atxS+wFoTOPc+7T6BonIASAARqKhIUB614Nhwnv1KA0khFfj1fqZD8cQCK/WDg3SfnL1+O/75x47uPqB+zZLZYdC7QkVHGqD1IgTCrjgxCXfmi1oapqfXAtjew0wiePNmWAH1JRdHzhpIxQ1JxuXPn3vfD4eiPmzd/+Ob27bs7VEJ2d0eS812c+xS63R6uT6FNoy3pwhbEJU8ewcSwiGDVs41Go8qF2GCdThEZ7PFiMWcEgY/leYd7XsBMM8/IsWmaQM49byTK5YxIpQai18sKgByCaeC3HUTOtR1Mw+gGC63dpp6SzOV6stMxsK8vKpW+7Pc7gvOR8LyUKBSKqERKkCLD4TjsR8by+fO07PV4xD4TkKLIPojtf0CB8PpkpCvOoa8ad9EGaE+Rvc9qtT3e7c4gcLoXirxUkjhf0m9QsiMrnpLPng0QSFoq9iW0NRqTmqTafr8Ck7tbD2LUopFsa0Gz+U4oZbfbFaQExoWsVLLCMDKh9ftjP5XyxPb2C/+Vc81+TdJeE6aMwWEKQCQARAqE41S82m2Xq+PYQsBjRko0GhtMiDrGRQf7a9hXwy8FXAfNChxnAwE4sL4+Kw87+2ObTkl9J8CkOIWXChkVlYxtf5VVdYLSjMzOqqpH6Utp505uwtd9K+4Dk3gJxcC4kWmHyml08ex7GcFJV/HrqJJURjukb1Tv41fv+RwnWvKxor88UWaT9mZa4hyTTnj8MRPNP3HP86BjkYPJWy/KnFP9P/C26fY/PkJcCd95+3EAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: calc(100% - 12px) calc(50% + 4px);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    padding: 7px 40px 7px 15px;
    transition: background-color .3s
}

.hbspt-form form .actions input[type=submit]:hover {
    background-color: #266f52;
    box-shadow: none;
    transition: background-color .3s
}

.hbspt-form form ul.no-list.hs-error-msgs.inputs-list {
    padding: 0;
    margin: 0
}

.hbspt-form form ul.no-list.hs-error-msgs.inputs-list li {
    list-style: none
}

.hbspt-form form label.hs-error-msg {
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #f74870
}

.hbspt-form form select {
    appearance: none;
    -webkit-appearance: none;
    text-overflow: "";
    width: 100%;
    height: 54px;
    min-width: 100%;
    max-width: 100%;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #0a0a23;
    background-color: #eaebef;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAICAYAAAAiJnXPAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB0SURBVHgBfZHNDYAgDIX78CJbkLiIjsJkjqKjMAYXqO2BhAi0F6B8r7+07yF4fzx6kmE9B70AdIo/1VqunFOaCQAnHAIzvY65RGZWMDi3DRl7gQZWHrOPlnHlxyqiAFHe91+gLIxSmg29wmqajOHQTGit4QNXoFGZsy1X2AAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: calc(100% - 23px) calc(50% + 2px);
    border-radius: 0;
    cursor: pointer;
    padding: 5px 40px 5px 15px
}

.hbspt-form form select:not([disabled]):focus {
    box-shadow: none
}

.hbspt-form form select::-ms-expand {
    display: none
}

.hbspt-form form select option {
    font-size: 16px;
    line-height: 1.4;
    color: #0a0a23
}

.hbspt-form form .hs-form-field {
    margin-bottom: 28px
}

.hbspt-form form .hs-fieldtype-select>label,
.hbspt-form form .hs-fieldtype-text>label,
.hbspt-form form .hs-fieldtype-textarea>label {
    display: block;
    margin-bottom: 10px
}

.hbspt-form form .hs-fieldtype-checkbox,
.hbspt-form form .hs-fieldtype-radio {
    padding: 15px 0 5px
}

.hbspt-form form .hs-fieldtype-checkbox>label,
.hbspt-form form .hs-fieldtype-radio>label {
    display: block;
    margin-bottom: 19px
}

.hbspt-form form .hs-fieldtype-checkbox>label span,
.hbspt-form form .hs-fieldtype-radio>label span {
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #d0cde2
}

.hbspt-form form li.hs-form-booleancheckbox,
.hbspt-form form li.hs-form-checkbox,
.hbspt-form form li.hs-form-radio {
    margin-bottom: 29px
}

.hbspt-form form li.hs-form-booleancheckbox label,
.hbspt-form form li.hs-form-checkbox label,
.hbspt-form form li.hs-form-radio label {
    position: relative;
    display: -ms-flexbox;
    display: flex
}

.hbspt-form form li.hs-form-booleancheckbox input,
.hbspt-form form li.hs-form-checkbox input,
.hbspt-form form li.hs-form-radio input {
    opacity: 0;
    width: 0;
    height: 0
}

.hbspt-form form li.hs-form-booleancheckbox label>span,
.hbspt-form form li.hs-form-checkbox span,
.hbspt-form form li.hs-form-radio span {
    position: relative;
    display: block;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #d0cde2;
    cursor: pointer;
    padding-left: 35px;
    transition: color .3s
}

.hbspt-form form li.hs-form-booleancheckbox span:hover,
.hbspt-form form li.hs-form-checkbox span:hover,
.hbspt-form form li.hs-form-radio span:hover {
    color: #866cff;
    transition: color .3s
}

.hbspt-form form li.hs-form-booleancheckbox span p,
.hbspt-form form li.hs-form-checkbox span p,
.hbspt-form form li.hs-form-radio span p {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit
}

.hbspt-form form li.hs-form-radio input:checked+span:before {
    border-color: #6a4bff;
    transition: .3s
}

.hbspt-form form li.hs-form-radio input:checked+span:after {
    opacity: 1;
    transition: opacity .3s
}

.hbspt-form form li.hs-form-radio span:before {
    position: absolute;
    content: "";
    top: -1px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #7d808e;
    border-radius: 50%;
    transition: .3s
}

.hbspt-form form li.hs-form-radio span:after {
    position: absolute;
    content: "";
    top: 4px;
    left: 5px;
    width: 10px;
    height: 10px;
    background-color: #6a4bff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .3s
}

.hbspt-form form li.hs-form-booleancheckbox input:checked+span:before,
.hbspt-form form li.hs-form-checkbox input:checked+span:before {
    background-color: #6a4bff;
    border-color: #6a4bff;
    transition: .3s
}

.hbspt-form form li.hs-form-booleancheckbox input:checked+span:after,
.hbspt-form form li.hs-form-checkbox input:checked+span:after {
    opacity: 1;
    transition: opacity .3s
}

.hbspt-form form li.hs-form-booleancheckbox label>span:before,
.hbspt-form form li.hs-form-checkbox label>span:before {
    position: absolute;
    content: "";
    top: -2px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #7d808e;
    border-radius: 2px;
    transition: .3s
}

.hbspt-form form li.hs-form-booleancheckbox label>span:after,
.hbspt-form form li.hs-form-checkbox label>span:after {
    position: absolute;
    content: "";
    top: -1px;
    left: 6px;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .3s
}

.hbspt-form form .legal-consent-container {
    padding-top: 15px
}

.hbspt-form form ul.no-list.hs-error-msgs.inputs-list label.hs-main-font-element {
    font-family: CaeciliaLTPro, sans-serif;
    font-size: 11px;
    color: #f74870
}

.hbspt-form form .hs-fieldtype-radio+.legal-consent-container {
    padding-top: 0
}

[id$=".big_play_button_background"] {
    background: rgba(56, 217, 150, .74) !important
}

.w-bottom-bar-lower>div>div:nth-child(2) {
    background: rgba(56, 217, 150, .85) !important
}

.alignleft {
    float: left;
    margin: 0 1.25rem 1.25rem 0
}

.ark-popup {
    position: relative;
    padding: 100px;
    width: 864px;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(10, 10, 35, .85);
    box-shadow: 0 30px 40px rgba(0, 0, 0, .25);
    color: #fff
}

@media screen and (max-width:1024px) {
    .ark-popup {
        padding: 56px
    }
}

@media screen and (max-width:768px) {
    .ark-popup {
        padding: 40px;
        width: 100%;
        margin: 0
    }
}

.ark-popup__header {
    margin-bottom: 40px
}

.ark-popup__header img {
    max-width: 50%;
    margin-bottom: 20px
}

.ark-popup__header:last-child {
    margin-bottom: 0
}

.ark-popup__content {
    font-size: 16px;
    margin-bottom: 40px
}

.ark-popup__content:last-child {
    margin-bottom: 0
}

#entering_popup {
    padding: 56px 100px
}

@media screen and (max-width:1024px) {
    #entering_popup {
        padding: 56px
    }
}

@media screen and (max-width:768px) {
    #entering_popup {
        padding: 40px
    }
}

@media screen and (max-width:425px) {

    #entering_popup,
    .ark-popup {
        padding: 32px
    }
}

#entering_popup .ark-popup__content {
    height: 280px;
    max-height: 280px;
    overflow-y: scroll;
    padding-right: 12px;
    margin-bottom: 56px
}

#entering_popup ::-webkit-scrollbar {
    width: 5px
}

#entering_popup ::-webkit-scrollbar-track {
    background: #163037
}

#entering_popup ::-webkit-scrollbar-thumb {
    background: #38d996
}

#entering_popup .ark-popup__footer .btn {
    min-width: unset
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: .2s ease-in-out;
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8)
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: .3s ease-out
}

.mfp-bg {
    z-index: 100000015 !important;
    pointer-events: none
}

.mfp-wrap {
    position: fixed !important;
    z-index: 100000020 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0)
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: .8
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
    opacity: 0
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0
}

body {
    line-height: 1.5;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    overflow-y: scroll;
    min-width: 320px;
    color: #e8eee8;
    background: #0a0a23;
    font-weight: 400
}

body.admin-bar #header {
    top: 32px
}

a:hover {
    color: #38d996;
    text-decoration: underline
}

button {
    transition: .3s;
    border: none;
    outline: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0)
}

b,
strong {
    font-weight: 700
}

p:last-child {
    margin-bottom: 0
}

img {
    max-width: 100%
}

.container {
    max-width: 1200px
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    line-height: 1.3;
    font-weight: 700;
    color: #fff
}

.h1:last-child,
.h2:last-child,
.h3:last-child,
.h4:last-child,
.h5:last-child,
.h6:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0
}

.h1,
h1 {
    font-size: calc(1.4625rem + 2.55vw);
    margin-bottom: calc(1.3125rem + .75vw);
    font-weight: 800
}

@media(min-width:1200px) {

    .h1,
    h1 {
        font-size: 3.375rem;
        margin-bottom: 1.875rem
    }
}

.h2,
h2 {
    font-size: calc(1.35rem + 1.2vw);
    margin-bottom: calc(1.3125rem + .75vw);
    font-weight: 800
}

@media(min-width:1200px) {

    .h2,
    h2 {
        font-size: 2.25rem;
        margin-bottom: 1.875rem
    }
}

.h3,
h3 {
    margin-bottom: 15px;
    font-size: calc(1.275rem + .3vw);
    font-weight: 700
}

@media(min-width:1200px) {

    .h3,
    h3 {
        font-size: 1.5rem
    }
}

.h4,
h4 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700
}

main {
    position: relative;
    background-image: url(../images/ellipse.webp);
    background-position: calc(50% + 300px) -200px;
    background-repeat: no-repeat;
    z-index: 2
}

main>.overflow-hidden:first-child>section:first-of-type,
main>section:first-of-type {
    padding-top: calc(2.25rem + 12vw)
}

@media(min-width:1200px) {

    main>.overflow-hidden:first-child>section:first-of-type,
    main>section:first-of-type {
        padding-top: 11.25rem
    }
}

.bd-example {
    width: 800px;
    margin: auto
}

.scrollspy-example-2 {
    height: 300px;
    overflow: auto
}

body ::-webkit-scrollbar {
    width: 6px;
    height: 8px;
    background-color: #ced4da;
    border-radius: 5px
}

body ::-webkit-scrollbar-thumb {
    background: #38d996;
    border-radius: 5px
}

.footer {
    padding: calc(1.5rem + 3vw) 0
}

@media(min-width:1200px) {
    .footer {
        padding: 3.75rem 0
    }
}

.footer__top {
    padding: 0 0 30px;
    border-bottom: 1px solid #38d996
}

.footer__top:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.footer__logo {
    margin: 0 0 35px
}

.footer__bottom {
    padding: 30px 0 0
}

.footer__description {
    color: #e8eee8
}

.footer__description p {
    font-size: 14px
}

.footer__description p a {
    text-decoration: none
}

.footer__description p a:hover {
    text-decoration: underline
}

.footer__mail-col {
    margin-right: calc(7.5% - 12px)
}

.footer__mail {
    color: #e8eee8;
    text-decoration: none;
    font-size: 1rem
}

.footer__mail:hover {
    color: #38d996;
    text-decoration: none
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    background: #0a0a23;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    z-index: 5;
    width: 92.5%;
    border-bottom: 1px solid #38d996;
    padding: 0 0 0 20px
}

@media(max-width:992px) {
    .header {
        width: 100%
    }
}

@media(max-width:768px) {
    .header {
        padding: .875rem .75rem
    }

    .historical-list ul li {
        width: auto
    }
}

.splash-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    transition: .4s ease-out;
    visibility: hidden;
    opacity: 0
}

.splash-overlay .splash-background {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background: #0a0a23;
    opacity: .9;
    left: 0;
    top: 0;
    z-index: 300
}

.splash-overlay .close-splash-overlay {
    cursor: pointer;
    position: absolute;
    right: 60px;
    top: 60px;
    z-index: 400
}

.splash-overlay .close-splash-overlay:after {
    display: inline-block;
    content: "×";
    color: #fff;
    font-size: 32px
}

@media screen and (max-width:768px) {
    .splash-overlay .close-splash-overlay {
        right: 20px;
        top: 20px
    }
}

.splash-overlay .splash-content {
    width: 70%;
    height: max-content;
    min-height: 375px;
    display: block;
    background: linear-gradient(116deg, #0a0a23 4%, #1e1e46 56%, #0a0a23 100%);
    border: 2px solid rgba(56, 217, 150, .6);
    padding: 80px 40px;
    text-align: center;
    position: absolute;
    left: 15%;
    top: 25%;
    z-index: 400
}

.splash-overlay .splash-content .splash-title {
    width: 100%;
    font-size: 70px;
    font-weight: 800;
    line-height: 80px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    margin-bottom: 80px
}

@media screen and (max-width:768px) {
    .splash-overlay .splash-content .splash-title {
        font-size: 56px;
        line-height: 64px
    }
}

@media screen and (max-width:475px) {
    .splash-overlay .splash-content .splash-title {
        font-size: 44px;
        line-height: 56px
    }
}

.splash-overlay .splash-content .splash-link {
    margin: 0 30px;
    padding: 12px 20px 16px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: .3s ease-out
}

.splash-overlay .splash-content .splash-link:hover {
    color: #fff;
    background: #38d996;
    border: 1px solid #38d996
}

@media screen and (max-width:1546px) {
    .splash-overlay .splash-content {
        min-height: 450px
    }
}

@media screen and (max-width:964px) {
    .splash-overlay .splash-content {
        min-height: 535px
    }
}

@media screen and (max-width:768px) {
    .splash-overlay .splash-content {
        width: 90%;
        min-height: 420px;
        top: 20%;
        left: 5%
    }
}

@media screen and (max-width:618px) {
    .splash-overlay .splash-content {
        min-height: 485px
    }
}

@media screen and (max-width:475px) {
    .splash-overlay .splash-content {
        padding: 60px 30px;
        min-height: 420px;
        top: 12%
    }
}

.is-open-splash {
    visibility: visible;
    opacity: 1
}

.accordion {
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .accordion {
        margin-bottom: 1.5625rem
    }
}

.accordion__top {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer
}

.accordion__button {
    font-weight: 700;
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    font-size: 1.25rem;
    transition: .3s;
    color: #38d996
}

.accordion__button.collapsed {
    color: #fff
}

.accordion__button.collapsed .accordion__ico {
    transform: rotate(0)
}

.accordion__button.collapsed:hover {
    color: #38d996
}

.accordion__ico {
    margin: 7px 0 0 15px;
    font-size: 10px;
    transition: .3s;
    display: inline-block;
    transform: rotate(180deg)
}

.accordion__text {
    padding: 5px 0 0
}

.accordion:last-child {
    margin-bottom: 0
}

.accordions {
    margin: 30px 0
}

.accordions[data-collapse=content] {
    display: none
}

.detail-author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 30px
}

.detail-author__img {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border: 3px solid #38d996;
    border-radius: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 12px 0 0
}

.detail-author__img img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.detail-author__name {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 8px
}

.detail-author__date {
    font-weight: 400;
    font-size: 14px
}

.b-line {
    display: inline-block;
    vertical-align: middle;
    flex-grow: 1
}

.b-line__bar {
    height: 16px;
    background: #38d996
}

.btn {
    display: inline-flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    border: 1px solid #38d996;
    background: #38d996;
    color: #fff;
    padding: 17px 20px;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    transition: .3s;
    min-width: 188px;
    border-radius: 0;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .15)
}

.btn:active,
.btn:focus,
.btn:hover {
    background: #38d996;
    border-color: #38d996;
    opacity: .9;
    text-decoration: none;
    color: #fff
}

.btn_border {
    background: rgba(0, 0, 0, 0);
    color: #38d996
}

.btn[disabled] {
    background: #dee2e6;
    border-color: #dee2e6;
    color: #6c757d
}

.btn [class*=icon-] {
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    bottom: -1px
}

.btn [class*=icon-].icon-right {
    margin: 0 0 0 10px
}

.btn_full {
    width: 100%
}

.btn_small {
    padding: 5px 15px;
    min-width: 160px
}

.btn_big {
    min-width: 220px;
    padding: 18px 30px
}

.btn_more {
    text-align: left;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between
}

.btn_more [class*=icon-] {
    font-size: 12px;
    transition: .3s
}

.btn_more:hover [class*=icon-] {
    transform: translate(-5px, 0)
}

.btn_download {
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.btn__doc-icon {
    font-size: 1.25rem
}

.btn__content {
    margin-right: 10px
}

.btn__download-icon {
    margin: 0 0 0 auto !important
}

.ad-postcard {
    background: #0a0a23;
    border: 1px solid #38d996;
    display: block;
    text-decoration: none;
    color: #fff
}

.ad-postcard__image {
    overflow: hidden;
    position: relative;
    background-blend-mode: normal, hue, normal;
    transition: transform .3s
}

.ad-postcard__image img {
    width: 100%;
    height: auto;
    transition: .3s;
    opacity: 0
}

.ad-postcard__content {
    padding: calc(1.375rem + 1.5vw) calc(1.3125rem + .75vw)
}

.ad-postcard__title {
    font-weight: 700;
    font-size: calc(1.3rem + .6vw);
    margin-bottom: calc(1.5rem + 3vw);
    line-height: 1.2
}

@media(min-width:1200px) {
    .ad-postcard__content {
        padding: 2.5rem 1.875rem
    }

    .ad-postcard__title {
        font-size: 1.75rem;
        margin-bottom: 3.75rem
    }
}

.ad-postcard__nav>.row {
    margin: -.9375rem
}

.ad-postcard__nav>.row>.col {
    padding: .9375rem
}

.ad-postcard__nav .btn {
    min-width: 120px
}

.article-card {
    background: #0a0a23;
    border: 1px solid #38d996;
    min-height: 100%;
    display: block;
    text-decoration: none;
    color: #fff
}

.article-card__media {
    overflow: hidden;
    min-height: 30px;
    position: relative
}

.article-card__image {
    background-blend-mode: hue;
    background-size: cover;
    transition: transform .3s
}

.article-card__image img {
    width: 100%;
    height: auto;
    transition: .3s;
    opacity: 0
}

.article-card__cat-name {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 10px;
    font-weight: 700;
    font-size: .8125rem;
    text-transform: uppercase;
    background: #38d996;
    color: #fff;
    z-index: 3
}

.article-card__content {
    padding: 1.25rem calc(1.3125rem + .75vw) calc(1.3125rem + .75vw)
}

@media(min-width:1200px) {
    .article-card__content {
        padding: 1.25rem 1.875rem 1.875rem
    }
}

.article-card__author {
    margin-bottom: .625rem;
    font-size: .8125rem;
    color: #737887;
    font-weight: 500
}

.article-card__title {
    font-weight: 700;
    font-size: 1.25rem
}

.article-card__video-icon {
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 10px;
    width: 106px;
    height: 66px;
    background: rgba(56, 217, 150, .74);
    color: #fff;
    font-size: 32px;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    z-index: 2
}

.article-card:active,
.article-card:hover {
    color: #38d996;
    text-decoration: none
}

.article-card:active .article-card__image,
.article-card:hover .article-card__image {
    transform: scale(1.15)
}

.commentary-card {
    border: 1px solid rgba(30, 30, 70, .5);
    display: block;
    text-decoration: none;
    color: #fff
}

.commentary-card__image {
    overflow: hidden
}

.commentary-card__image img {
    width: 100%;
    height: auto;
    transition: .3s
}

.commentary-card__content {
    padding: calc(1.28125rem + .375vw)
}

.commentary-card__cat-name {
    margin-bottom: 1.25rem
}

.commentary-card__cat-name span {
    display: inline-block;
    vertical-align: top;
    padding: 8px 10px;
    font-weight: 700;
    font-size: .8125rem;
    text-transform: uppercase;
    border: 1px solid #38d996;
    color: #fff;
    z-index: 3
}

.commentary-card__title {
    font-weight: 700;
    font-size: calc(1.3125rem + .75vw);
    margin-bottom: .9375rem
}

@media(min-width:1200px) {
    .commentary-card__content {
        padding: 1.5625rem
    }

    .commentary-card__title {
        font-size: 1.875rem
    }
}

.commentary-card__text {
    color: #e8eee8;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 3;
    -webkit-box-orient: vertical
}

.commentary-card:active,
.commentary-card:hover {
    text-decoration: none
}

.commentary-card:active .commentary-card__image img,
.commentary-card:hover .commentary-card__image img {
    transform: scale(1.15)
}

.document-card {
    background: rgba(56, 217, 150, .15);
    border: 1px solid #38d996;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    padding: calc(1.375rem + 1.5vw);
    color: #fff;
    text-decoration: none
}

.document-card__title {
    font-size: calc(1.2875rem + .45vw);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    font-weight: 700
}

@media(min-width:1200px) {
    .document-card {
        padding: 2.5rem
    }

    .document-card__title {
        font-size: 1.625rem
    }
}

.document-card__doc-icon {
    font-size: calc(1.40625rem + 1.875vw);
    margin-right: calc(1.34375rem + 1.125vw)
}

@media(min-width:1200px) {
    .document-card__doc-icon {
        font-size: 2.8125rem;
        margin-right: 2.1875rem
    }
}

.document-card__download-icon {
    font-size: calc(1.275rem + .3vw);
    flex-shrink: 1;
    margin-left: 20px
}

@media(min-width:1200px) {
    .document-card__download-icon {
        font-size: 1.5rem
    }
}

.document-card:active,
.document-card:focus,
.document-card:hover {
    color: #fff;
    text-decoration: none;
    background: rgba(56, 217, 150, .25)
}

.familiar-video-card {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    text-decoration: none
}

.familiar-video-card__video {
    border: 1px solid #38d996;
    width: 118px;
    margin: 0 1.125rem 0 0;
    flex-shrink: 0
}

.familiar-video-card__video .wistia_responsive_padding {
    padding-top: 100% !important
}

.familiar-video-card__video .wistia_responsive_padding [id$=".big_play_button_background"] {
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    top: 50% !important;
    left: 50% !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important
}

.familiar-video-card__video .wistia_responsive_padding [id$=".big_play_button_graphic"] {
    background-size: 36px auto !important;
    background-position: center center !important
}

.familiar-video-card__video .wistia_responsive_padding:hover [id$=".big_play_button_background"] {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0
}

.familiar-video-card__title {
    font-size: 1.25rem;
    flex-shrink: 1;
    text-transform: capitalize
}

.familiar-video-card__title:after {
    content: "";
    width: 60px;
    height: 3px;
    display: block;
    background: #38d996;
    margin-top: .625rem
}

.fund-data-card {
    position: relative;
    height: 100%;
    padding: calc(1.28125rem + .375vw) calc(1.3125rem + .75vw);
    border: 1px solid #38d996;
    border-image-slice: 1
}

.fund-data-card__desc {
    font-weight: 700;
    font-size: .875rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: .625rem
}

.fund-data-card__value {
    font-weight: 700;
    font-size: calc(1.3625rem + 1.35vw);
    line-height: 120%;
    text-transform: capitalize;
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    margin-bottom: .625rem
}

@media(min-width:1200px) {
    .fund-data-card {
        padding: 1.5625rem 1.875rem
    }

    .fund-data-card__value {
        font-size: 2.375rem
    }
}

.fund-data-card__value i {
    font-size: 12px;
    margin: 0 0 0 8px
}

.fund-data-card__value i.green {
    color: #38d996;
    transform: rotate(180deg)
}

.fund-data-card__value i.red {
    color: red
}

.fund-data-card__value span {
    font-weight: 400;
    font-size: .875rem;
    margin: 0 0 7px 8px;
    line-height: 1
}

.fund-data-card__value_suffix-bold {
    align-items: flex-end;
    align-content: flex-end
}

.fund-data-card__value_suffix-bold span {
    font-weight: 700
}

.fund-data-card__date {
    font-size: .875rem;
    line-height: 1;
    color: #38d996
}

.fund-data-card .informal-icon {
    position: absolute;
    right: 10px;
    top: 10px
}

.portfolio-card {
    background: #0e1826;
    border: 1px solid #38d996;
    height: 100%;
    min-height: 286px;
    padding: calc(1.34375rem + 1.125vw) calc(1.3125rem + .75vw) calc(1.375rem + 1.5vw);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    color: #fff;
    cursor: pointer;
    position: relative
}

.portfolio-card__image {
    width: 100%;
    height: 78px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .portfolio-card {
        padding: 2.1875rem 1.875rem 2.5rem
    }

    .portfolio-card__image {
        margin-bottom: 1.5625rem
    }
}

.portfolio-card__image img {
    max-width: 100%;
    max-height: 100%;
    width: auto
}

.portfolio-card__header {
    margin-bottom: .625rem;
    width: 100%
}

.portfolio-card__header:last-child {
    margin-bottom: 0
}

.portfolio-card__title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #38d996
}

.portfolio-card__title:last-child {
    margin-bottom: 0
}

.portfolio-card__category {
    display: none;
    color: #38d996;
    margin-bottom: .625rem
}

.portfolio-card__category:last-child {
    margin-bottom: 0
}

.portfolio-card__date {
    color: #e8eee8;
    display: none
}

.portfolio-card__content {
    display: none
}

.portfolio-card__content-title {
    margin-bottom: .625rem;
    font-weight: 700
}

.portfolio-card__content-info>.row {
    margin: -1.25rem
}

.portfolio-card__content-info>.row>.col {
    padding: 1.25rem
}

@media(max-width:576px) {
    body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner #hs-eu-policy-wording span {
        font-size: .8125rem !important
    }

    body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p {
        font-size: .6875rem !important;
        line-height: 1.3 !important
    }

    main>.overflow-hidden:first-child>section:first-of-type,
    main>section:first-of-type {
        padding-top: 80px
    }

    .portfolio-card__content-info>.row {
        margin: -.625rem
    }

    .portfolio-card__content-info>.row>.col {
        padding: .625rem
    }
}

.portfolio-card__description {
    font-size: 1rem
}

.portfolio-card_show {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    text-align: left;
    z-index: 2;
    overflow-y: auto
}

.portfolio-card_show .portfolio-card__image {
    width: 37%;
    height: 142px;
    border: 1px solid #38d996;
    border-right-color: transparent;
    border-top-color: transparent;
    order: 1;
    padding: calc(1.3125rem + .75vw);
    margin: calc(-1.34375rem - 1.125vw) calc(-1.3125rem - .75vw) calc(1.3125rem + .75vw) 0
}

@media(min-width:1200px) {
    .portfolio-card_show .portfolio-card__image {
        padding: 1.875rem;
        margin: -2.1875rem -1.875rem 1.875rem 0
    }
}

@media(max-width:576px) {
    .portfolio-card_show .portfolio-card__image {
        height: 100px;
        padding: .9375rem
    }
}

.portfolio-card_show .portfolio-card__image img {
    filter: brightness(0) invert(1)
}

.portfolio-card_show .portfolio-card__header {
    width: 60%;
    padding-top: 1.25rem;
    order: 0;
    margin-bottom: calc(1.34375rem + 1.125vw)
}

@media(min-width:1200px) {
    .portfolio-card_show .portfolio-card__header {
        margin-bottom: 2.1875rem
    }
}

.portfolio-card_show .portfolio-card__header_full {
    width: 100%
}

.portfolio-card_show .portfolio-card__title {
    font-size: calc(1.35rem + 1.2vw);
    margin-bottom: .625rem;
    color: #fff
}

.portfolio-card_show .portfolio-card__category {
    display: block
}

.portfolio-card_show .portfolio-card__content {
    display: block;
    order: 3
}

.portfolio-card_show .portfolio-card__content-description {
    max-height: 120px;
    overflow-y: auto
}

.portfolio-card_show .portfolio-card__date {
    display: block
}

.small-video-card {
    border: 1px solid rgba(30, 30, 70, .5);
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    text-decoration: none;
    color: #fff
}

.small-video-card__image {
    overflow: hidden;
    width: 33%;
    position: relative
}

.small-video-card__image img {
    min-height: 185px;
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover
}

.small-video-card__video-icon {
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(56, 217, 150, .74);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    z-index: 2
}

.small-video-card__content {
    padding: calc(1.28125rem + .375vw);
    width: 67%
}

.small-video-card__cat-name {
    margin-bottom: .625rem
}

.small-video-card__cat-name span {
    display: inline-block;
    vertical-align: top;
    padding: 8px 10px;
    font-weight: 700;
    font-size: .8125rem;
    text-transform: uppercase;
    border: 1px solid #38d996;
    color: #fff;
    z-index: 3
}

.small-video-card__title {
    font-weight: 700;
    font-size: calc(1.275rem + .3vw);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical
}

.small-video-card__text {
    color: #e8eee8;
    font-weight: 400
}

.small-video-card:active,
.small-video-card:hover {
    text-decoration: none
}

.small-video-card:active .small-video-card__image img,
.small-video-card:hover .small-video-card__image img {
    transform: scale(1.15)
}

.content-editor {
    margin-bottom: calc(1.6875rem + 5.25vw)
}

.content-editor ul {
    margin: 0 0 calc(1.28125rem + .375vw);
    padding: 0
}

.content-editor ul li {
    padding: 0 0 0 25px;
    margin: 0 0 calc(1.275rem + .3vw);
    color: #38d996;
    position: relative;
    font-weight: 700;
    font-size: 1.25rem;
    display: block
}

@media(min-width:1200px) {
    .portfolio-card_show .portfolio-card__title {
        font-size: 2.25rem
    }

    .small-video-card__content {
        padding: 1.5625rem
    }

    .small-video-card__title {
        font-size: 1.5rem
    }

    .content-editor {
        margin-bottom: 5.625rem
    }

    .content-editor ul {
        margin: 0 0 1.5625rem
    }

    .content-editor ul li {
        margin: 0 0 1.5rem
    }
}

.content-editor ul li:before {
    font-family: icomoon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    content: "";
    font-size: .875rem;
    color: #38d996;
    position: absolute;
    top: 9px;
    left: 0
}

.content-editor ul li:last-child,
.content-editor:last-child {
    margin-bottom: 0
}

.content-editor-splash .accordion__button {
    text-align: left
}

.b-copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #d0cde2
}

.b-copyright a {
    position: relative;
    color: #d0cde2;
    text-decoration: none;
    transition: .3s
}

.b-copyright a:after {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    opacity: 0;
    transition: opacity .3s
}

.b-copyright li:hover a:after {
    opacity: 1;
    transition: opacity .3s
}

.disclaimer {
    font-size: .875rem;
    color: #6c757d
}

.faqs-item {
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .faqs-item {
        margin-bottom: 1.5625rem
    }
}

.faqs-item__button {
    background: 0 0;
    color: #fff;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    padding: 0 0 1.25rem;
    border-radius: 0;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    font-size: 1.25rem;
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid #38d996
}

.faqs-item__button [class^=icon] {
    font-size: 1rem;
    transform: rotate(-90deg);
    margin-left: 15px;
    color: #38d996
}

.faqs-item__button.collapsed [class^=icon] {
    transform: rotate(0)
}

.faqs-item__button:hover {
    color: #38d996
}

.faqs-item__body {
    padding: 20px 0 0;
    font-size: 1rem
}

.faqs-item:last-child {
    margin-bottom: 0
}

.figure {
    position: relative;
    margin: 0 0 calc(1.3125rem + .75vw)
}

@media(min-width:1200px) {
    .figure {
        margin: 0 0 1.875rem
    }
}

.figure__image {
    margin: 0 0 .9375rem;
    background-blend-mode: hue;
    background-size: cover;
    transition: transform .3s
}

.figure__image img {
    width: 100%;
    height: auto;
    opacity: 0
}

.figure__image:last-child {
    margin-bottom: 0
}

.figure__info {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
    gap: 20px;
    font-size: .75rem
}

.figure__description,
.figure__description a {
    color: #737887
}

.figure__description a:hover {
    color: #fff;
    text-decoration: underline
}

.figure:last-child {
    margin-bottom: 0
}

.footnotes {
    margin: 30px 0 90px;
    counter-reset: list
}

.footnotes__item {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: 0 0 30px;
    position: relative
}

.footnotes__item:before {
    counter-increment: list 1;
    content: counter(list) "*";
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #38d996;
    flex-shrink: 0;
    margin: 4px 10px 0 0
}

.footnotes__item-number {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #38d996;
    flex-shrink: 0;
    margin: 0 10px 0 0
}

.footnotes__item-text {
    font-size: .875rem
}

.footnotes__item-text a {
    font-weight: 400;
    line-height: 1;
    color: #38d996;
    text-decoration: none
}

.footnotes__item-text a .icon-share {
    font-size: 12px;
    margin: 0 0 0 5px
}

.footnotes__item-text p {
    opacity: .7
}

.footnotes__item-text p a {
    margin: 7px 0
}

.footnotes__item-text-title {
    margin: 0 0 7px
}

.fund-data-cards>.row {
    margin: -6px
}

.fund-data-cards>.row>.col {
    padding: 6px
}

.fund-wave-bg {
    overflow: hidden;
    position: relative
}

.fund-wave-bg__img {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    left: calc(50% + 200px);
    top: 50px
}

.historical-list {
    margin-bottom: calc(1.34375rem + 1.125vw)
}

.historical-list h3 .informal-icon {
    margin-left: 5px;
    vertical-align: middle
}

.historical-list ul {
    padding: 0;
    margin: 0
}

.historical-list ul li {
    list-style: none;
    border-bottom: 1px solid rgba(56, 217, 150, .5);
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    align-content: stretch;
    justify-content: space-between;
    gap: 10px
}

.historical-list ul li>span {
    font-weight: 400
}

.historical-list ul li ul {
    padding: 0 0 0 calc(1.4375rem + 2.25vw);
    width: 100%
}

@media(min-width:1200px) {
    .historical-list {
        margin-bottom: 2.1875rem
    }

    .historical-list ul li ul {
        padding: 0 0 0 3.125rem
    }
}

.historical-list ul li ul li {
    border-color: transparent;
    text-transform: capitalize
}

@media(max-width:768px) {
    .historical-list ul li ul {
        padding: .3125rem 0 0 .9375rem
    }

    .historical-list ul li ul li {
        width: auto
    }
}

.historical-list ul li:last-child {
    border-bottom: none
}

.historical-list_fees h3 {
    margin-bottom: 9px;
    padding-top: 5px
}

.historical-list_fees ul li>ul {
    padding-top: 1px
}

.historical-list_fees ul li>ul>li:last-child {
    padding-bottom: 0
}

.historical-list .uppercase {
    text-transform: uppercase
}

.informal-icon {
    display: inline-block;
    vertical-align: top
}

.informal-icon i {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    min-width: 0
}

.informal-icon__tooltip-temp {
    display: none
}

.information {
    margin-bottom: calc(1.5rem + 3vw)
}

.information>.row {
    margin: calc(-1.3125rem - .75vw)
}

@media(min-width:1200px) {
    .information {
        margin-bottom: 3.75rem
    }

    .information>.row {
        margin: -1.875rem
    }
}

.information>.row>.col {
    padding: calc(1.3125rem + .75vw)
}

@media(min-width:1200px) {
    .information>.row>.col {
        padding: 1.875rem
    }
}

@media(max-width:576px) {
    .portfolio-card_show .portfolio-card__content-description {
        max-height: none
    }

    .small-video-card__image img {
        min-height: 180px
    }

    .information>.row {
        margin: -.75rem
    }

    .information>.row>.col {
        padding: .75rem
    }
}

.information>.row>.col_img {
    position: relative
}

.information>.row>.col_img-flash:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1000px;
    height: 1000px;
    background: url(../images/ellipse-4.webp) center center/contain no-repeat;
    transform: translate(-50%, -50%);
    z-index: -1
}

.information__buttons {
    margin-top: calc(1.625rem + 4.5vw);
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 20px
}

.information__cta .btn {
    display: inline-flex
}

.information ol,
.information ul {
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .information__buttons {
        margin-top: 5rem
    }

    .information ol,
    .information ul {
        margin-bottom: 1.5625rem
    }
}

.information ol li,
.information ul li {
    margin-bottom: 1.25rem
}

.information ol li:last-child,
.information ol:last-child,
.information ul li:last-child,
.information ul:last-child {
    margin-bottom: 0
}

.information table {
    width: 100%;
    margin-bottom: calc(1.28125rem + .375vw)
}

.information table tr td {
    padding: .9375rem;
    border: 1px solid #2f2f44
}

.information table:last-child,
.information:last-child {
    margin-bottom: 0
}

.load-more {
    padding: calc(1.6875rem + 5.25vw) 0 0;
    text-align: center
}

@media(min-width:1200px) {
    .information table {
        margin-bottom: 1.5625rem
    }

    .load-more {
        padding: 5.625rem 0 0
    }
}

.load-more .btn {
    justify-content: space-between
}

.logo {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    width: 110px
}

.logo img {
    width: 100%
}

.filter-nav {
    margin: 0 0 calc(1.5rem + 3vw)
}

@media(min-width:1200px) {
    .filter-nav {
        margin: 0 0 3.75rem
    }
}

.filter-nav__list {
    padding: 0;
    margin: -.3125rem calc(-1.28125rem - .375vw);
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.filter-nav__list-item {
    list-style: none;
    padding: .3125rem calc(1.28125rem + .375vw)
}

.filter-nav__list-item-link {
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.filter-nav__list-item-link:hover {
    text-decoration: none;
    color: #38d996;
    cursor: pointer
}

.filter-nav__list-item-link.active {
    color: #38d996
}

.filter-nav:last-child {
    margin-bottom: 0
}

.footer-nav {
    overflow: hidden
}

.footer-nav ul {
    padding: 0;
    margin: -10px -30px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.footer-nav ul li {
    list-style: none;
    padding: 10px 30px
}

.footer-nav ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none
}

.footer-nav ul li a:hover {
    color: #38d996;
    text-decoration: none
}

.main-nav ul {
    padding: 0;
    margin: 0 calc(-1.3125rem - .75vw);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start
}

@media(min-width:1200px) {
    .filter-nav__list {
        margin: -.3125rem -1.5625rem
    }

    .filter-nav__list-item {
        padding: .3125rem 1.5625rem
    }

    .main-nav ul {
        margin: 0 -1.875rem
    }
}

.main-nav ul li {
    list-style: none;
    padding: calc(1.2875rem + .45vw) calc(1.3125rem + .75vw);
    margin: 0
}

@media(min-width:1200px) {
    .main-nav ul li {
        padding: 1.625rem 1.875rem
    }
}

@media(max-width:1200px) {
    .main-nav ul {
        margin: 0 -1.25rem
    }

    .main-nav ul li {
        padding: calc(1.2875rem + .45vw) 1.25rem
    }
}

@media(max-width:1200px)and (min-width:1200px) {
    .main-nav ul li {
        padding: 1.625rem 1.25rem
    }
}

@media(max-width:992px) {
    .historical-list ul li {
        font-size: .875rem
    }

    .main-nav ul {
        margin: 0 -.75rem
    }

    .main-nav ul li {
        padding: calc(1.2875rem + .45vw) .75rem
    }
}

.main-nav ul li a {
    display: block;
    font-size: .9375rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500
}

.main-nav ul li a:hover {
    text-decoration: none;
    color: #38d996
}

.main-nav ul li.current-menu-item a {
    color: #38d996
}

.main-nav ul li.button {
    padding-top: 0;
    padding-bottom: 0
}

.main-nav ul li.button a {
    background: #38d996;
    color: #fff;
    padding: calc(1.2875rem + .45vw) calc(1.4375rem + 2.25vw)
}

@media(min-width:1200px) {
    .main-nav ul li.button a {
        padding: 1.625rem 3.125rem
    }
}

@media(max-width:1200px) {
    .main-nav ul li.button a {
        padding: calc(1.2875rem + .45vw) calc(1.3125rem + .75vw)
    }
}

@media(max-width:1200px)and (min-width:1200px) {
    .main-nav ul li.button a {
        padding: 1.625rem 1.875rem
    }
}

@media(max-width:992px) {
    .main-nav ul li.button a {
        padding: calc(1.2875rem + .45vw) 1.25rem
    }
}

@media(max-width:992px)and (min-width:1200px) {
    .main-nav ul li {
        padding: 1.625rem .75rem
    }

    .main-nav ul li.button a {
        padding: 1.625rem 1.25rem
    }
}

@media(max-width:768px) {
    .logo {
        width: 74px
    }

    .filter-nav__list {
        margin: -.3125rem -.75rem
    }

    .filter-nav__list-item {
        padding: .3125rem .75rem
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: calc(100% - 56px);
        overflow-y: auto;
        z-index: 20;
        background: #0d0d29;
        padding: .9375rem 0
    }

    .main-nav ul {
        display: block;
        margin: 0
    }

    .main-nav ul li {
        padding: 0;
        border-bottom: 1px solid #2f2f44
    }

    .main-nav ul li a {
        padding: .75rem;
        font-size: 1.125rem
    }

    .main-nav ul li.button {
        margin-top: calc(1.3125rem + .75vw);
        text-align: center
    }

    .main-nav ul li.button a {
        padding: .75rem .9375rem;
        display: inline-flex;
        vertical-align: top
    }
}

@media(max-width:768px)and (min-width:1200px) {
    .main-nav ul li.button {
        margin-top: 1.875rem
    }
}

.main-nav.active {
    display: block
}

@media(max-width:782px) {
    body.admin-bar #header {
        top: 46px
    }

    body.admin-bar #wpadminbar {
        position: fixed
    }

    body.admin-bar .main-nav {
        top: 102px;
        height: calc(100% - 56px - 46px)
    }
}

.management-menu {
    overflow: hidden;
    margin: 0 0 15px
}

.management-menu ul {
    padding: 0;
    margin: -10px -30px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.management-menu ul li {
    list-style: none;
    padding: 10px 30px
}

.management-menu ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none
}

.management-menu ul li a:hover {
    color: #38d996;
    text-decoration: none
}

.management-menu:last-child {
    margin-bottom: 0
}

.menu-icon {
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: .3s
}

.menu-icon.active {
    transition: .3s;
    z-index: 2000
}

.menu-icon__wrapper {
    position: relative;
    width: 16px;
    height: 13px;
    margin: 0 auto
}

.menu-icon.active b {
    transition: .5s
}

.menu-icon .b-menu__line {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 6px;
    -webkit-transition: background-color .35s, -webkit-transform .175s cubic-bezier(.215, .61, .355, 1), opacity .175s cubic-bezier(.215, .61, .355, 1);
    transition: background-color .35s, transform .175s cubic-bezier(.215, .61, .355, 1), opacity .175s cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0)
}

.menu-icon .b-menu__line_1 {
    top: 0
}

.menu-icon .b-menu__line_2 {
    top: 6px
}

.menu-icon .b-menu__line_3 {
    top: 12px;
    width: 100%
}

.menu-icon.active .b-menu__line {
    background: #fff
}

.menu-icon.active .b-menu__line_1 {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
    top: 0
}

.menu-icon.active .b-menu__line_2 {
    opacity: 0
}

.menu-icon.active .b-menu__line_3 {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
    top: 16px;
    width: 100%
}

.page-nav {
    padding: 1.25rem calc(1.3125rem + .75vw) 1.25rem 0;
    border: 1px solid #38d996
}

@media(min-width:1200px) {
    .page-nav {
        padding: 1.25rem 1.875rem 1.25rem 0
    }
}

.page-nav__list {
    padding: 0;
    margin: 0;
    display: block
}

.page-nav__list-item {
    list-style: none;
    padding: 0
}

.page-nav__list-item .nav-link {
    display: block;
    padding: 1.125rem calc(1.3125rem + .75vw);
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700
}

.page-nav__list-item .nav-link:hover {
    background: #38d996;
    text-decoration: none;
    color: #fff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .15)
}

.page-nav__list-item .nav-link:active,
.page-nav__list-item .nav-link:focus {
    text-decoration: none;
    color: #fff
}

.page-nav__list-item .nav-link.active {
    background: #38d996;
    text-shadow: 0 4px 4px rgba(0, 0, 0, .15)
}

.policy-nav {
    margin-bottom: 1.25rem;
    overflow: hidden
}

.policy-nav ul {
    padding: 0;
    margin: -15px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.policy-nav ul li {
    list-style: none;
    padding: 15px
}

.policy-nav ul li a {
    color: #e8eee8;
    text-decoration: none;
    font-size: .875rem
}

.policy-nav ul li a:hover {
    color: #38d996;
    text-decoration: none
}

.socials ul {
    padding: 0;
    margin: -.75rem;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.socials ul li {
    list-style: none;
    padding: .75rem
}

.socials ul li a {
    text-decoration: none;
    color: #fff
}

.socials ul li a:hover {
    text-decoration: none;
    color: #38d996;
    cursor: pointer
}

.tags {
    margin-bottom: .9375rem
}

.tags__title {
    margin: 0 0 15px
}

.tags__list ul {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: -3px;
    padding: 0
}

.tags__list ul li {
    margin: 0;
    padding: 3px;
    list-style: none
}

.tags__list ul li a {
    background: #38d996;
    font-size: .875rem;
    color: #fff;
    padding: 4px 6px;
    text-decoration: none
}

.tags__list ul li a:hover {
    opacity: .8
}

.tags:last-child {
    margin-bottom: 0
}

.promo-logo {
    margin-bottom: calc(1.6875rem + 5.25vw);
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    padding: calc(1.4375rem + 2.25vw) 0 0
}

@media(min-width:1200px) {
    .page-nav__list-item .nav-link {
        padding: 1.125rem 1.875rem
    }

    .promo-logo {
        margin-bottom: 5.625rem;
        padding: 3.125rem 0 0
    }
}

.promo-logo .logo {
    width: 148px
}

.promo-logo+section {
    padding-top: 0 !important
}

.promo-video-box {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    margin: auto
}

.promo-video-box__photo {
    width: 158px;
    margin: 0 -25px 0 0;
    z-index: 2;
    position: relative
}

.promo-video-box__photo img {
    width: 100%
}

@media(max-width:576px) {
    .filter-nav__list-item-link {
        font-size: 1rem
    }

    .promo-video-box__photo {
        width: 140px
    }
}

.promo-video-box__img {
    width: 190px;
    position: relative;
    z-index: 1
}

@media(max-width:576px) {
    .promo-video-box__img {
        width: 150px
    }
}

.promo-video-box__video {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    z-index: 2
}

.promo-video-box__video .wistia_responsive_padding {
    width: 72px !important;
    height: 48px !important;
    margin: auto
}

.promo-video-box__video [id$=".thumb_container"] {
    width: 72px !important;
    height: 48px !important
}

.promo-video-box__video [id$=".thumbnail"] {
    width: 100% !important;
    height: 100% !important
}

.promo-video-box__video [id$=".big_play_button_background"] {
    background: #38d996 !important;
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    mix-blend-mode: normal !important;
    transition: .3s !important
}

.promo-video-box__video [id$=big_play_button_graphic] {
    width: 100% !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    background-position: center center !important
}

.promo-video-box__video:hover [id$=".big_play_button_background"] {
    background: #00d36b !important
}

.advantages {
    overflow: hidden;
    padding: calc(1.5rem + 3vw) 0 calc(1.75rem + 6vw)
}

.advantages__header {
    margin-bottom: calc(1.5625rem + 3.75vw)
}

@media(min-width:1200px) {
    .advantages {
        padding: 3.75rem 0 6.25rem
    }

    .advantages__header {
        margin-bottom: 4.375rem
    }
}

.advantages__list>.row {
    margin: -35px
}

.advantages__list>.row>.col {
    padding: 35px
}

.advantages__list-item {
    text-align: center
}

.advantages__list-item-image {
    margin-bottom: calc(1.3125rem + .75vw);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 116px
}

@media(min-width:1200px) {
    .advantages__list-item-image {
        margin-bottom: 1.875rem
    }
}

.advantages__list-item-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto
}

.advantages__list-item-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .625rem
}

.advantages__list-item-text {
    font-size: .875rem;
    color: #e8eee8
}

.article-detail {
    padding: calc(1.5rem + 3vw) 0 0
}

@media(min-width:1200px) {
    .article-detail {
        padding: 3.75rem 0 0
    }
}

.article-detail__content {
    border-bottom: 1px solid #38d996;
    padding: 0 0 calc(1.5625rem + 3.75vw)
}

@media(min-width:1200px) {
    .article-detail__content {
        padding: 0 0 4.375rem
    }
}

.article-detail-splash {
    padding-top: 0 !important
}

.articles {
    padding: 0 0 calc(1.75rem + 6vw)
}

.articles__controls {
    margin: 0 0 calc(1.5rem + 3vw)
}

@media(min-width:1200px) {
    .articles {
        padding: 0 0 6.25rem
    }

    .articles__controls {
        margin: 0 0 3.75rem
    }
}

.articles__controls:last-child {
    margin-bottom: 0
}

.articles__controls .dropdown-toggle {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700
}

.articles__controls .dropdown-toggle:after {
    display: none
}

.articles__controls .dropdown-toggle i {
    font-size: .75rem
}

.articles__controls .dropdown-toggle span {
    font-weight: 400;
    margin: 0 6px
}

.articles__controls .dropdown-toggle:hover {
    text-decoration: none;
    color: #38d996
}

.articles__controls .dropdown-menu {
    background: #0a0a23;
    border-radius: 0;
    border: 1px solid #38d996
}

.articles__controls .dropdown-menu li a {
    color: #fff
}

.articles__controls .dropdown-menu li a:hover {
    text-decoration: none;
    color: #38d996;
    background: 0 0
}

.articles__list>.row {
    margin: -10px
}

.articles__list>.row>.col {
    padding: 10px
}

.documents__list>.row {
    margin: -.625rem
}

.documents__list>.row>.col {
    padding: .625rem
}

.error-404 {
    padding: calc(1.875rem + 7.5vw) 0 calc(1.75rem + 6vw)
}

.error-404__content {
    text-align: center;
    position: relative;
    margin-bottom: calc(1.4375rem + 2.25vw)
}

.error-404__title {
    display: block;
    font-weight: 900;
    font-size: calc(3.625rem + 28.5vw);
    line-height: 1;
    text-transform: capitalize;
    color: #38d996;
    opacity: .8
}

@media(min-width:1200px) {
    .error-404 {
        padding: 7.5rem 0 6.25rem
    }

    .error-404__content {
        margin-bottom: 3.125rem
    }

    .error-404__title {
        font-size: 25rem
    }
}

.error-404__text {
    font-size: calc(1.3375rem + 1.05vw);
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    position: absolute;
    display: block;
    top: 55%;
    left: 0;
    width: 100%;
    transform: translateY(-50%)
}

@media(min-width:1200px) {
    .error-404__text {
        font-size: 2.125rem
    }
}

@media(max-width:1200px) {
    .error-404__text {
        font-size: calc(1.3rem + .6vw)
    }
}

@media(max-width:1200px)and (min-width:1200px) {
    .error-404__text {
        font-size: 1.75rem
    }
}

.exposure-breakdowns {
    margin-bottom: calc(1.75rem + 6vw)
}

@media(min-width:1200px) {
    .exposure-breakdowns {
        margin-bottom: 6.25rem
    }
}

.exposure-breakdowns__date {
    color: #38d996;
    font-size: .75rem
}

.exposure-breakdowns:last-child {
    margin-bottom: 0
}

.exposure-breakdowns__content {
    margin-bottom: calc(1.375rem + 1.5vw)
}

.exposure-breakdowns__content:last-child {
    margin-bottom: 0
}

.exposure-breakdowns__top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.exposure-breakdowns__top i {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    text-align: right;
    color: #737887
}

.exposure-breakdowns__tabs-nav {
    padding: 1.25rem calc(1.3125rem + .75vw);
    border-top: 1px solid #38d996;
    border-bottom: 1px solid #38d996;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: space-between
}

.exposure-breakdowns__tabs-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: -20px
}

.exposure-breakdowns__tabs-nav ul li {
    list-style: none;
    padding: 20px
}

.exposure-breakdowns__tabs-nav ul li a {
    font-size: 1.25rem;
    color: #737887;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    padding: 0
}

.exposure-breakdowns__tabs-nav ul li a.active,
.exposure-breakdowns__tabs-nav ul li a:hover {
    color: #38d996
}

.exposure-breakdowns__tabs-nav-date {
    font-size: 1rem;
    color: #38d996;
    font-weight: 700;
    display: none
}

@media(max-width:992px) {
    .exposure-breakdowns__tabs-nav ul {
        margin: -.3125rem -.625rem
    }

    .exposure-breakdowns__tabs-nav ul li {
        padding: .3125rem .625rem
    }

    .exposure-breakdowns__tabs-nav ul li a {
        font-size: 1rem
    }

    .exposure-breakdowns__tabs-nav-date {
        font-size: .875rem
    }
}

.exposure-breakdowns__tabs-nav-date.active {
    display: block
}

.exposure-breakdowns__funds-table {
    position: relative
}

.exposure-breakdowns__funds-table table tr td,
.exposure-breakdowns__funds-table table tr th {
    border-bottom: 1px solid #2f2f44;
    border-right: 1px solid #2f2f44;
    text-align: left;
    width: 50%;
    padding: 1.25rem calc(1.3125rem + .75vw);
    font-size: 1rem;
    font-weight: 700
}

@media(min-width:1200px) {
    .exposure-breakdowns__content {
        margin-bottom: 2.5rem
    }

    .exposure-breakdowns__funds-table table tr td,
    .exposure-breakdowns__funds-table table tr th,
    .exposure-breakdowns__tabs-nav {
        padding: 1.25rem 1.875rem
    }
}

@media(max-width:768px) {
    .main-nav ul li:last-child {
        border-bottom: none
    }

    .exposure-breakdowns__tabs-nav {
        padding: .9375rem .625rem
    }

    .exposure-breakdowns__tabs-nav-date {
        width: 100%;
        padding-top: 10px
    }

    .exposure-breakdowns__funds-table table tr td,
    .exposure-breakdowns__funds-table table tr th {
        padding: .625rem;
        font-size: .875rem
    }
}

.exposure-breakdowns__funds-table table tr td .strong,
.exposure-breakdowns__funds-table table tr th .strong {
    font-weight: 800
}

.exposure-breakdowns__funds-table table tr td:last-child,
.exposure-breakdowns__funds-table table tr th:last-child {
    border-right: none
}

.exposure-breakdowns__funds-table table thead tr th.nosort {
    display: none
}

.exposure-breakdowns__funds-table-row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start
}

.exposure-breakdowns__funds-table-row span {
    min-width: 70px;
    display: block;
    margin-right: .9375rem
}

.exposure-breakdowns__funds-table-name {
    display: block;
    position: relative;
    padding: 0 15px 0 0;
    transition: .3s;
    cursor: pointer
}

.familiar-videos__header {
    margin: 0 0 calc(1.375rem + 1.5vw)
}

.familiar-videos__header h2 {
    font-size: calc(1.3375rem + 1.05vw)
}

.familiar-videos__header:last-child {
    margin-bottom: 0
}

.familiar-videos__container {
    border-top: 1px solid #38d996;
    padding: calc(1.5rem + 3vw) 0 calc(1.5625rem + 3.75vw)
}

@media(min-width:1200px) {
    .familiar-videos__header {
        margin: 0 0 2.5rem
    }

    .familiar-videos__header h2 {
        font-size: 2.125rem
    }

    .familiar-videos__container {
        padding: 3.75rem 0 4.375rem
    }
}

.familiar-videos__content>.row {
    margin: -.75rem
}

.familiar-videos__content>.row>.col {
    padding: .75rem
}

.faq-main {
    padding: calc(1.625rem + 4.5vw) 0
}

@media(min-width:1200px) {
    .faq-main {
        padding: 5rem 0
    }
}

.faq-main__sidebar {
    top: 76px
}

body.admin-bar .faq-main__sidebar {
    top: 108px
}

.faq {
    padding: calc(1.625rem + 4.5vw) 0;
    position: relative;
    overflow: hidden;
    background: url(../images/wave-tape-2.svg) calc(50% + 300px) top no-repeat
}

.faq:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1200px;
    height: 800px;
    max-height: 100%;
    background: url(../images/ellipse.svg) left center/contain no-repeat;
    z-index: -1;
    pointer-events: none
}

.faq__header {
    margin-bottom: calc(1.375rem + 1.5vw)
}

@media(min-width:1200px) {
    .faq {
        padding: 5rem 0
    }

    .faq__header {
        margin-bottom: 2.5rem
    }
}

.faq .faqs-item__button {
    font-size: 1.125rem
}

.faqs {
    padding: 0 0 calc(1.4375rem + 2.25vw)
}

.faqs__title {
    font-size: calc(1.4rem + 1.8vw)
}

@media(min-width:1200px) {
    .faqs {
        padding: 0 0 3.125rem
    }

    .faqs__title {
        font-size: 2.75rem
    }
}

.faqs:last-child {
    margin-bottom: 0
}

.form-section {
    background-size: 55% auto;
    margin-bottom: calc(1.625rem + 4.5vw);
    padding: 0 .75rem
}

.form-section__wrapper {
    background: url(../images/prisme-3.svg) left top/contain no-repeat, linear-gradient(to right, #58ac7c -43.42%, #11113a 120.12%);
    padding: calc(1.75rem + 6vw) 0
}

@media(min-width:1200px) {
    .form-section {
        margin-bottom: 5rem
    }

    .form-section__wrapper {
        padding: 6.25rem 0
    }
}

@media(max-width:992px) {
    .form-section__wrapper {
        padding: calc(1.375rem + 1.5vw) 0
    }
}

@media(max-width:992px)and (min-width:1200px) {
    .form-section__wrapper {
        padding: 2.5rem 0
    }
}

.form-section__title {
    margin-bottom: 1.25rem
}

.form-section__description {
    font-size: 1.25rem;
    margin-bottom: calc(1.5rem + 3vw)
}

.form-section__description b,
.form-section__description strong {
    color: #38d996
}

.form-section__form .hbspt-form form {
    position: relative
}

.form-section__form .hbspt-form form fieldset {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: 0 0 calc(1.28125rem + .375vw);
    max-width: none
}

.form-section__form .hbspt-form form fieldset .hs-form-field {
    margin: 0;
    float: none;
    padding: 0;
    outline: 0;
    width: 100%
}

.form-section__form .hbspt-form form fieldset .hs-form-field label {
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    font-weight: 400
}

.form-section__form .hbspt-form form fieldset .hs-form-field .input {
    margin: 0
}

.form-section__form .hbspt-form form fieldset.form-columns-2 {
    margin-left: -10px;
    margin-right: -10px
}

.form-section__form .hbspt-form form fieldset.form-columns-2 .hs-form-field {
    width: 50%;
    padding: 0 10px
}

@media(max-width:576px) {
    .exposure-breakdowns__funds-table table tr {
        display: block;
        border-bottom: 1px solid #2f2f44;
        padding: .625rem
    }

    .exposure-breakdowns__funds-table table tr td {
        border: none;
        padding: 0 0 5px;
        display: block
    }

    .exposure-breakdowns__funds-table table tr td:last-child {
        padding-bottom: 0
    }

    .form-section__form .hbspt-form form fieldset.form-columns-2 .hs-form-field {
        width: 100%;
        margin: 0 0 calc(1.28125rem + .375vw)
    }

    .form-section__form .hbspt-form form fieldset.form-columns-2 .hs-form-field:last-child {
        margin-bottom: 0
    }
}

.form-section__form .hbspt-form form .hs_email .input input[type=email] {
    flex-shrink: 1;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    margin: 0;
    width: 100%
}

.form-section__form .hbspt-form form .hs_submit {
    margin-top: calc(1.34375rem + 1.125vw)
}

.form-section__form .hbspt-form form .hs_submit .hs-button {
    min-width: 200px;
    font-size: 1.125rem;
    font-weight: 700;
    padding-left: 1.25rem
}

.form-section__form .hbspt-form form .hs_error_rollup {
    display: none
}

.form-section:last-child {
    margin-bottom: 0
}

.fund-info {
    overflow: hidden;
    padding-bottom: 50px;
    color: #fff
}

.fund-info__wrapper {
    padding: calc(1.75rem + 6vw) 0 calc(1.75rem + 6vw) calc(1.75rem + 6vw);
    border-right: none;
    position: relative
}

@media(min-width:1200px) {
    .form-section__description {
        margin-bottom: 3.75rem
    }

    .form-section__form .hbspt-form form fieldset {
        margin: 0 0 1.5625rem
    }

    .form-section__form .hbspt-form form .hs_submit {
        margin-top: 2.1875rem
    }

    .fund-info__wrapper {
        padding: 6.25rem 0 6.25rem 6.25rem
    }
}

@media(max-width:768px) {
    .exposure-breakdowns__funds-table table thead {
        display: none
    }

    .fund-info__wrapper {
        padding: 1.25rem 0 1.25rem .75rem
    }

    .fund-info__short-table tr td b {
        display: block
    }
}

.fund-info__wrapper>* {
    z-index: 2;
    position: relative
}

.fund-info__wrapper:before {
    content: "";
    border: 1px solid #38d996;
    border-right: none;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 10000px;
    height: 100%;
    background: #0a0a23;
    pointer-events: none
}

.fund-info__header {
    margin-bottom: calc(1.4375rem + 2.25vw)
}

@media(min-width:1200px) {
    .fund-info__header {
        margin-bottom: 3.125rem
    }
}

.fund-info__content {
    margin-bottom: calc(1.625rem + 4.5vw)
}

.fund-info__description {
    color: #adb5bd;
    font-size: .875rem
}

.fund-info__short-table {
    width: 100%
}

.fund-info__short-table tr td {
    border-bottom: 1px solid #2f2f44;
    padding: .9375rem 1.25rem;
    font-size: calc(1.275rem + .3vw);
    font-weight: 400;
    vertical-align: top
}

@media(min-width:1200px) {
    .fund-info__content {
        margin-bottom: 5rem
    }

    .fund-info__short-table tr td {
        font-size: 1.5rem
    }
}

@media(max-width:992px) {
    .fund-info__short-table tr td {
        font-size: 1.125rem;
        padding: .9375rem
    }

    .investment-process__container:before {
        display: none
    }
}

.fund-info__short-table tr td b {
    font-family: "Brother 1816", Arial, Helvetica, sans-serif
}

@media(max-width:576px) {
    .fund-info__short-table tr td {
        font-size: .875rem;
        padding: .5rem 0;
        display: block
    }

    .fund-info__short-table tr td b {
        display: inline
    }
}

.fund-info__short-table tr td .custom-font {
    font-family: CaeciliaLTPro, Arial, Helvetica, sans-serif
}

.fund-info__short-table tr td .green {
    color: #38d996
}

.fund-info__short-table tr td:first-child {
    padding-left: 0
}

.fund-info__short-table tr td:last-child {
    padding-right: 0
}

.fund-info__short-table-date {
    font-size: 1rem;
    color: #e8eee8
}

@media(max-width:768px) {
    .fund-info__short-table-date {
        font-size: .75rem
    }
}

.fund-info__date {
    color: #38d996
}

.fund-info__link {
    color: #e8eee8
}

.fund-info__link:hover {
    text-decoration: none
}

.fund-info .highcharts-scrollbar {
    display: none
}

.fund-performance {
    padding: calc(1.3125rem + .75vw) 0;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden
}

.fund-performance__date {
    margin-bottom: 1.25rem;
    color: #38d996;
    font-size: 1.125rem;
    font-weight: 700
}

.fund-performance__data {
    margin-bottom: calc(1.3125rem + .75vw)
}

.fund-performance__data table {
    margin-bottom: calc(1.3125rem + .75vw);
    font-size: 1rem;
    color: #fff;
    width: 100%
}

.fund-performance__data table tr td,
.fund-performance__data table tr th {
    border: 1px solid #2f2f44;
    padding: .9375rem calc(1.3125rem + .75vw);
    text-align: center;
    vertical-align: middle;
    width: 11%
}

.fund-performance__data table tr td:first-child,
.fund-performance__data table tr th:first-child {
    border-left: none
}

.fund-performance__data table tr td:last-child,
.fund-performance__data table tr th:last-child {
    border-right: none
}

.fund-performance__data table tr th:first-child {
    text-align: left;
    width: 17%
}

.fund-performance__data table thead {
    border-top: 2px solid #38d996;
    border-bottom: 2px solid #38d996
}

.fund-performance__data table thead tr th {
    font-weight: 700
}

.fund-performance__data table thead tr:last-child td,
.fund-performance__data table thead tr:last-child th {
    border-bottom: none
}

.fund-performance__data table tbody tr td,
.fund-performance__data table tbody tr th {
    padding: calc(1.28125rem + .375vw) calc(1.3125rem + .75vw)
}

@media(min-width:1200px) {
    .fund-performance {
        padding: 1.875rem 0
    }

    .fund-performance__data,
    .fund-performance__data table {
        margin-bottom: 1.875rem
    }

    .fund-performance__data table tr td,
    .fund-performance__data table tr th {
        padding: .9375rem 1.875rem
    }

    .fund-performance__data table tbody tr td,
    .fund-performance__data table tbody tr th {
        padding: 1.5625rem 1.875rem
    }
}

@media(max-width:768px) {

    .fund-performance__data table tbody tr td,
    .fund-performance__data table tbody tr th,
    .fund-performance__data table tr td,
    .fund-performance__data table tr th {
        padding: .625rem;
        font-size: .875rem
    }
}

.fund-performance__data table tbody tr th {
    font-size: calc(1.275rem + .3vw)
}

.fund-performance__data table:last-child,
.fund-performance__data:last-child {
    margin-bottom: 0
}

.fund-performance__description {
    color: #adb5bd;
    font-size: .875rem
}

.fund-portfolio {
    padding: calc(1.625rem + 4.5vw) 0;
    padding-bottom: 50px
}

.fund-portfolio__date {
    margin-bottom: 1.25rem;
    color: #38d996;
    font-size: 1.125rem;
    font-weight: 700
}

.fund-portfolio__date:last-child {
    margin-bottom: 0
}

.fund-portfolio__data {
    margin-bottom: calc(1.5rem + 3vw)
}

.fund-portfolio__data table {
    font-size: 1rem;
    margin-bottom: calc(1.3125rem + .75vw);
    color: #fff;
    width: 100%;
    border-bottom: 2px solid #38d996
}

.fund-portfolio__data table tr td,
.fund-portfolio__data table tr th {
    border: 1px solid #2f2f44;
    width: auto;
    vertical-align: top;
    padding: calc(1.28125rem + .375vw) calc(1.3125rem + .75vw)
}

.fund-portfolio__data table tr td:first-child,
.fund-portfolio__data table tr th:first-child {
    border-left: none;
    padding-left: calc(1.5rem + 3vw)
}

@media(min-width:1200px) {
    .fund-performance__data table tbody tr th {
        font-size: 1.5rem
    }

    .fund-portfolio {
        padding: 5rem 0
    }

    .fund-portfolio__data {
        margin-bottom: 3.75rem
    }

    .fund-portfolio__data table {
        margin-bottom: 1.875rem
    }

    .fund-portfolio__data table tr td,
    .fund-portfolio__data table tr th {
        padding: 1.5625rem 1.875rem
    }

    .fund-portfolio__data table tr td:first-child,
    .fund-portfolio__data table tr th:first-child {
        padding-left: 3.75rem
    }
}

.fund-portfolio__data table tr td:last-child,
.fund-portfolio__data table tr th:last-child {
    border-right: none
}

@media(max-width:768px) {
    .fund-performance__data table tbody tr th {
        padding: .625rem;
        font-size: 1rem
    }

    .fund-portfolio__date {
        font-size: 1rem
    }

    .fund-portfolio__data table tr td:first-child,
    .fund-portfolio__data table tr th:first-child {
        padding-left: .625rem
    }

    .fund-portfolio__data table tr td,
    .fund-portfolio__data table tr th {
        padding: 10px;
        font-size: .875rem
    }
}

.fund-portfolio__data table caption {
    caption-side: top;
    padding-bottom: 20px;
    overflow: hidden
}

.fund-portfolio__data table thead {
    border-top: 2px solid #38d996;
    border-bottom: 2px solid #38d996;
    padding: .9375rem calc(1.3125rem + .75vw)
}

.fund-portfolio__data table thead tr th {
    font-weight: 700
}

.fund-portfolio__data table thead tr:last-child td,
.fund-portfolio__data table thead tr:last-child th {
    border-bottom: none
}

.fund-portfolio__data table:last-child,
.fund-portfolio__data:last-child {
    margin-bottom: 0
}

.fund-portfolio__download-doc {
    font-size: 1rem;
    color: #38d996;
    text-decoration: none
}

.fund-portfolio__download-doc-pdf {
    margin-right: 5px;
    font-size: 1.125rem;
    vertical-align: middle
}

.fund-portfolio__download-doc-arrow {
    margin-left: 5px;
    font-size: .875rem
}

.fund-portfolio__download-doc span {
    text-decoration: underline
}

.fund-portfolio__download-doc:hover,
.fund-portfolio__download-doc:hover span {
    text-decoration: none
}

.fund-portfolio__description {
    color: #adb5bd;
    font-size: .875rem
}

.information-section {
    padding: calc(1.625rem + 4.5vw) 0 calc(1.75rem + 6vw)
}

@media(min-width:1200px) {
    .fund-portfolio__data table thead {
        padding: .9375rem 1.875rem
    }

    .information-section {
        padding: 5rem 0 6.25rem
    }
}

.investment-process {
    background: #132a32;
    padding: calc(1.75rem + 6vw) 0;
    overflow: hidden
}

.investment-process__header {
    margin-bottom: calc(1.6875rem + 5.25vw);
    text-align: center
}

.investment-process__header h2 {
    font-size: calc(1.4rem + 1.8vw)
}

@media(min-width:1200px) {
    .investment-process {
        padding: 6.25rem 0
    }

    .investment-process__header {
        margin-bottom: 5.625rem
    }

    .investment-process__header h2 {
        font-size: 2.75rem
    }
}

.investment-process__container {
    position: relative;
    margin-bottom: calc(1.625rem + 4.5vw)
}

@media(min-width:1200px) {
    .investment-process__container {
        margin-bottom: 5rem
    }
}

.investment-process__container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed #132a32;
    border-bottom: none;
    background: linear-gradient(#132a32 0 0) padding-box, linear-gradient(to right, #fcc049, #38d996) border-box
}

.investment-process__container-row {
    padding: 0 85px;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    align-content: stretch;
    justify-content: center;
    margin: 0 -.9375rem
}

@media(max-width:1200px) {
    .investment-process__container-row {
        padding: 0 30px
    }
}

@media(max-width:992px) {
    .investment-process__container-row {
        padding: 0;
        margin: 0
    }
}

.investment-process__container-row-item {
    width: 50%;
    padding: 0 .9375rem;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: space-between;
    justify-content: flex-start
}

@media(max-width:992px) {
    .investment-process__container-row-item {
        width: 100%;
        padding: 0;
        margin-bottom: 50px
    }

    .investment-process__container-row-item:last-child {
        margin-bottom: 0
    }
}

.investment-process__container:last-child {
    margin-bottom: 0
}

.investment-process__item {
    width: 100%;
    padding: 0 30px;
    margin-bottom: calc(1.34375rem + 1.125vw)
}

@media(min-width:1200px) {
    .investment-process__item {
        margin-bottom: 2.1875rem
    }
}

.investment-process__item-ico {
    width: 56px;
    height: 56px;
    border-radius: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: -28px auto 30px;
    font-size: 16px;
    color: #0a0a23;
    background: #fcc049
}

.investment-process__item-ico_top {
    background: #38d996
}

.investment-process__item-content {
    text-align: center
}

.investment-process__item-content h3 {
    font-size: calc(1.2625rem + .15vw)
}

.investment-process__detail {
    width: 100%
}

.investment-process__block {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    background: rgba(252, 192, 73, .06);
    border: 1px solid #fcc049;
    border-bottom: none;
    padding: calc(1.28125rem + .375vw);
    position: relative
}

@media(min-width:1200px) {
    .investment-process__item-content h3 {
        font-size: 1.375rem
    }

    .investment-process__block {
        padding: 1.5625rem
    }
}

@media(max-width:576px) {
    .investment-process__block {
        padding: .9375rem
    }
}

.investment-process__block:last-child {
    border-bottom: 1px solid #fcc049
}

.investment-process__block:last-child:before {
    content: "";
    position: absolute;
    width: 85px;
    height: 100%;
    background: #132a32;
    border-top: 1px dashed #fcc049;
    right: calc(100% + 1px);
    top: -1px
}

@media(max-width:992px) {
    .investment-process__item-ico {
        margin-top: 0
    }

    .investment-process__block:last-child:before {
        display: none
    }
}

.investment-process__block_green {
    background: rgba(56, 217, 150, .06);
    border-color: #38d996
}

.investment-process__block_green:last-child {
    border-bottom-color: #38d996
}

.investment-process__block_green:last-child:before {
    right: auto;
    left: calc(100% + 1px);
    border-top-color: #38d996
}

.investment-process__block-img {
    width: 45px;
    margin: 0 20px 0 0;
    flex-shrink: 0;
    text-align: center;
    align-self: flex-start
}

.investment-process__block-text p {
    color: #d2d1da
}

.investment-process__btn {
    text-align: center
}

.investor-experience {
    overflow: hidden;
    padding: calc(1.5rem + 3vw) 0 calc(2rem + 9vw);
    background: #0d0d29
}

.investor-experience>.container {
    width: 1330px;
    max-width: 100%
}

.investor-experience__header {
    margin-bottom: calc(1.5rem + 3vw)
}

.investor-experience__header h2 {
    text-transform: capitalize;
    font-size: calc(1.425rem + 2.1vw)
}

@media(min-width:1200px) {
    .investor-experience {
        padding: 3.75rem 0 8.75rem
    }

    .investor-experience__header {
        margin-bottom: 3.75rem
    }

    .investor-experience__header h2 {
        font-size: 3rem
    }
}

.investor-experience__subtitle {
    text-align: center;
    margin-bottom: .625rem;
    font-size: 1.125rem;
    color: #38d996;
    font-family: CaeciliaLTPro, Arial, Helvetica, sans-serif;
    font-weight: 400
}

.investor-experience__list>.row {
    margin: -8px
}

.investor-experience__list>.row>.col {
    padding: 8px
}

.investor-experience__item {
    height: 345px;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    background: linear-gradient(0deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .1)), linear-gradient(89.32deg, #2a284e -3.75%, #070537 173.26%);
    background-blend-mode: overlay, normal;
    text-decoration: none
}

.investor-experience__item-content {
    font-weight: 700;
    font-size: calc(1.3rem + .6vw);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    color: #fff;
    position: absolute;
    min-height: 100%;
    width: 100%;
    z-index: 2;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

@media(min-width:1200px) {
    .investor-experience__item-content {
        font-size: 1.75rem
    }
}

@media(max-width:576px) {
    .investor-experience__item {
        height: 250px
    }

    .investor-experience__item-content {
        font-size: 1.25rem
    }
}

.investor-experience__label {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    background: #38d996;
    color: #fff;
    z-index: 3
}

@media(max-width:576px) {
    .investor-experience__label {
        font-size: .875rem
    }
}

.investor-experience__item-video-icon {
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 10px;
    width: 120px;
    height: 80px;
    background: rgba(56, 217, 150, .74);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    z-index: 2
}

@media(max-width:576px) {
    .investor-experience__item-video-icon {
        font-size: calc(1.275rem + .3vw);
        width: 90px;
        height: 60px
    }
}

@media(max-width:576px)and (min-width:1200px) {
    .form-section__form .hbspt-form form fieldset.form-columns-2 .hs-form-field {
        margin: 0 0 1.5625rem
    }

    .investor-experience__item-video-icon {
        font-size: 1.5rem
    }
}

.join-us {
    padding: calc(1.4375rem + 2.25vw) 0;
    background: url(../images/wave.svg) calc(50% + 400px) center no-repeat rgba(115, 120, 135, .5);
    background-size: 1000px auto;
    margin: calc(1.625rem + 4.5vw) 0
}

@media(min-width:1200px) {
    .join-us {
        padding: 3.125rem 0;
        margin: 5rem 0
    }
}

.join-us__description {
    font-size: 1rem;
    margin-bottom: calc(1.375rem + 1.5vw)
}

@media(min-width:1200px) {
    .join-us__description {
        margin-bottom: 2.5rem
    }
}

.join-us__gallery {
    margin-bottom: calc(1.375rem + 1.5vw)
}

@media(min-width:1200px) {
    .join-us__gallery {
        margin-bottom: 2.5rem
    }
}

.join-us__gallery-list {
    margin: -10px;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.join-us__gallery-list-item {
    width: 100%;
    padding: 10px
}

.join-us__apps {
    margin-bottom: 20px
}

.join-us__apps-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: -6px -6px -6px 0
}

.join-us__apps-list-item {
    padding: 6px
}

.join-us__apps-list-item a {
    display: block
}

.join-us__apps-list-item a img {
    transition: .3s
}

.join-us__apps-list-item a:hover img {
    transform: translate(0, -3px)
}

.join-us__image {
    text-align: right
}

.join-us__image img {
    display: inline-block;
    vertical-align: top
}

.join-us:first-child {
    margin-top: 0
}

.join-us:last-child {
    margin-bottom: 0
}

.learn-about {
    background-size: 55% auto;
    margin-bottom: calc(1.625rem + 4.5vw);
    padding: 0 .75rem
}

.learn-about__wrapper {
    background: url(../images/prisme.svg) right top/58% auto no-repeat, linear-gradient(to left, #58ac7c -43.42%, #11113a 120.12%);
    padding: calc(1.75rem + 6vw) 0
}

@media(min-width:1200px) {
    .learn-about {
        margin-bottom: 5rem
    }

    .learn-about__wrapper {
        padding: 6.25rem 0
    }
}

@media(max-width:992px) {
    .learn-about__wrapper {
        padding: calc(1.375rem + 1.5vw) 0
    }
}

@media(max-width:992px)and (min-width:1200px) {
    .learn-about__wrapper {
        padding: 2.5rem 0
    }
}

.learn-about__title {
    margin-bottom: 1.25rem
}

.learn-about__description {
    font-size: 1.25rem;
    margin-bottom: calc(1.5rem + 3vw)
}

@media(min-width:1200px) {
    .learn-about__description {
        margin-bottom: 3.75rem
    }
}

.learn-about__description b,
.learn-about__description strong {
    color: #38d996
}

.learn-about__apps-list {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: -6px
}

.learn-about__apps-list-item {
    padding: 6px;
    max-width: 50%
}

.learn-about__apps-list-item a {
    display: block
}

.learn-about__apps-list-item a img {
    height: 56px;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    transition: .3s
}

.learn-about__apps-list-item a:hover img {
    transform: translate(0, -3px)
}

.learn-about:last-child {
    margin-bottom: 0
}

.portfolio {
    padding: 0 0 calc(2.0625rem + 9.75vw);
    overflow: hidden
}

@media(max-width:576px) {
    .learn-about__apps-list-item a img {
        height: auto
    }

    .portfolio__date {
        font-size: 1rem
    }
}

.portfolio__list {
    margin-bottom: calc(1.34375rem + 1.125vw)
}

@media(min-width:1200px) {
    .portfolio {
        padding: 0 0 9.375rem
    }

    .portfolio__list {
        margin-bottom: 2.1875rem
    }
}

.portfolio__list>.row {
    margin: -5px;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.portfolio__list>.row>.col {
    padding: 5px
}

.portfolio__list:last-child {
    margin-bottom: 0
}

.portfolio__disclosure {
    color: #adb5bd;
    font-size: .875rem
}

.home__announcement-banner {
    height: 754px;
    display: block;
    width: 100%;
    padding: 236px 0 112px;
    position: relative;
    background: url(../images/banner-background.png) 0 0/cover #0a0a23
}

@media(max-width:1200px) {
    .investment-process__block:last-child:before {
        width: 30px
    }

    .home__announcement-banner {
        height: 684px;
        padding: 80px 0
    }
}

@media(max-width:768px) {
    .join-us__image {
        text-align: left
    }

    .portfolio__list>.row {
        display: block
    }

    .home__announcement-banner {
        height: 624px;
        padding: 60px 0
    }
}

@media(max-width:600px) {
    .home__announcement-banner {
        height: 714px
    }
}

@media(max-width:530px) {
    .home__announcement-banner {
        height: 844px
    }
}

.home__banner-content {
    width: 100%;
    z-index: 4;
    padding: 0 40px;
    position: absolute;
    left: 0;
    top: 236px
}

@media(max-width:1200px) {
    .home__banner-content {
        top: 120px
    }
}

.home__banner-title {
    width: 100%;
    font-size: 54px;
    font-weight: 800;
    line-height: 79px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    margin-bottom: 64px
}

@media(max-width:768px) {
    .home__banner-content {
        top: 100px;
        padding: 0 20px
    }

    .home__banner-title {
        font-size: 40px;
        line-height: 56px;
        margin-bottom: 48px
    }
}

.home__banner-description {
    max-width: 683px;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: .01em;
    text-align: center;
    color: #fff;
    margin: 0 auto 71px
}

.home__banner-links {
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width:768px) {
    .home__banner-description {
        margin: 0 auto 48px
    }

    .home__banner-links {
        flex-wrap: wrap
    }
}

.home__banner-link {
    min-width: 152px;
    margin: 0 30px;
    padding: 12px 20px 16px;
    border-radius: 30px;
    border: 1px solid #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 31px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    transition: .3s ease-out
}

.home__banner-link:hover {
    color: #fff;
    text-decoration: unset;
    background-color: #38d996;
    border: 1px solid #38d996
}

@media(max-width:1200px) {
    .home__banner-link {
        min-width: 120px;
        margin: 0 20px;
        padding: 10px 16px 12px;
        font-size: 16px;
        line-height: 24px
    }
}

.promo {
    padding: calc(1.625rem + 4.5vw) 0;
    background-repeat: no-repeat;
    background-position: calc(50% + 150px) 60px;
    background-size: 652px auto;
    position: relative
}

@media(min-width:1200px) {
    .promo {
        padding: 5rem 0
    }
}

.promo>.container>.row {
    min-height: 380px
}

.promo>.container>.row_auto-height {
    min-height: 0
}

.promo>.container>.row.row-auto {
    min-height: 200px
}

.promo__bg {
    position: cover;
    pointer-events: none;
    z-index: -1;
    left: calc(50% + 80px);
    top: 45px;
    
}

@media(max-width:576px) {
    .promo>.container>.row.row-auto {
        min-height: 0
    }

    .promo__bg {
        left: 50%;
        transform: translate(-50%, 0)
    }
}

.promo_bg-big .promo__bg {
    width: 50%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: flex-start
}

@media(max-width:768px) {
    .home__banner-link {
        min-width: 160px;
        margin-bottom: 20px
    }

    .promo>.container>.row {
        min-height: 0
    }

    .promo_bg-big .promo__bg {
        width: 70%;
        height: auto;
        left: 30%;
        transform: none
    }
}

.promo_bg-big .promo__bg img {
    width: 100%;
    height: auto
}

.promo_bg-splash {
    padding-bottom: 0 !important
}

.promo_bg-splash>.container>.row {
    min-height: 320px
}

.promo__title {
    margin-bottom: 0
}

.promo__sub-title {
    font-size: 3.375rem;
    margin-bottom: 1.875rem
}

.promo__content {
    margin: 0 0 calc(1.5rem + 3vw);
    font-size: 1.125rem;
    font-weight: 400;
    font-family: CaeciliaLTPro, Arial, Helvetica, sans-serif
}

@media(min-width:1200px) {
    .promo__content {
        margin: 0 0 3.75rem
    }
}

.promo__content b,
.promo__content strong {
    font-weight: 800
}

.promo__content:last-child {
    margin-bottom: 0
}

.promo__col-img {
    text-align: center
}

.promo__col-img img {
    width: auto;
    display: inline-block;
    vertical-align: top
}

.promo__col-img img[width="1"] {
    width: 100% !important
}

.promo__article-img {
    position: absolute;
    width: calc(50% - 90px);
    height: 100%;
    left: calc(50% + 90px);
    top: 0
}

.promo__article-img img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.promo__post-info {
    font-size: 1.125rem;
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .promo__post-info {
        margin-bottom: 1.5625rem
    }
}

.promo__post-info-separator {
    margin: 0 8px
}

.promo_left-bg {
    background-position: left 90px;
    background-size: 60% auto
}

.promo__form .hbspt-form form {
    position: relative
}

.promo__form .hbspt-form form .hs_email .input {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.promo__form .hbspt-form form .hs_email .input input[type=email] {
    flex-shrink: 1;
    background: rgba(56, 217, 150, .25);
    color: #fff;
    font-weight: 400;
    font-family: CaeciliaLTPro, Arial, Helvetica, sans-serif
}

.promo__form .hbspt-form form .hs_email .input .btn {
    height: 58px;
    min-width: 218px;
    padding: 1.125rem .9375rem;
    font-size: .875rem;
    margin: 0 0 0 1.125rem;
    flex-flow: row nowrap;
    flex-grow: 1;
    flex-shrink: 0
}

.promo__form .hbspt-form form .hs_email .input .btn i {
    margin-left: 15px
}

@media(max-width:992px) {
    .portfolio__list>.row {
        grid-template-columns: repeat(3, 1fr)
    }

    .promo__form .hbspt-form form .hs_email .input .btn {
        margin: 1.25rem 0 0;
        min-width: 170px
    }

    .promo__form .hbspt-form form .hs_email .input {
        display: block
    }
}

.promo__form .hbspt-form form .hs_submit {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0
}

.promo__form .hbspt-form form .hs_error_rollup {
    display: none
}

.recent-posts {
    padding: calc(2.25rem + 12vw) 0 calc(1.5rem + 3vw);
    background: rgba(30, 30, 70, .16)
}

.recent-posts__list>.row {
    margin: -10px
}

.recent-posts__list>.row>.col {
    padding: 10px
}

.recent-posts__commentary {
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .recent-posts {
        padding: 11.25rem 0 3.75rem
    }

    .recent-posts__commentary {
        margin-bottom: 1.5625rem
    }
}

.recent-posts__videos {
    margin-bottom: calc(1.28125rem + .375vw)
}

@media(min-width:1200px) {
    .recent-posts__videos {
        margin-bottom: 1.5625rem
    }
}

.recent-posts__videos-item {
    margin-bottom: 1.25rem
}

.recent-posts__videos-item:last-child {
    margin-bottom: 0
}

.recent-posts__btn .btn {
    display: inline-flex
}

.splash {
    background: url(../images/tape-3.svg) center 200px/100% auto no-repeat
}

.splash__header {
    text-align: center
}

.splash__header h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: calc(1.5rem + 3vw)
}

.splash__subtitle {
    text-transform: uppercase;
    background: linear-gradient(223.72deg, #55dfa6 -5.03%, #231d44 168.72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 700;
    font-family: "Brother 1816", Arial, Helvetica, sans-serif;
    margin-bottom: calc(1.375rem + 1.5vw);
    font-size: calc(1.325rem + .9vw)
}

@media(min-width:1200px) {
    .splash__header h1 {
        font-size: 3.75rem
    }

    .splash__subtitle {
        margin-bottom: 2.5rem;
        font-size: 2rem
    }
}

.splash__content {
    margin-bottom: calc(1.71875rem + 5.625vw)
}

@media(min-width:1200px) {
    .splash__content {
        margin-bottom: 5.9375rem
    }
}

.splash__content-description {
    margin-bottom: calc(1.46875rem + 2.625vw)
}

.splash__content:last-child {
    margin-bottom: 0
}

.splash__form .hbspt-form form {
    position: relative
}

.splash__form .hbspt-form form .hs_email .input {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start
}

.splash__form .hbspt-form form .hs_email .input input[type=email] {
    flex-shrink: 1
}

.splash__form .hbspt-form form .hs_email .input .btn {
    height: 58px;
    min-width: 120px;
    padding: 1.125rem .9375rem;
    font-size: .875rem;
    flex-flow: row nowrap;
    flex-grow: 1;
    flex-shrink: 0
}

.splash__form .hbspt-form form .hs_email .input .btn i {
    margin-left: 15px
}

.splash__form .hbspt-form form .hs_submit {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0
}

.splash__form .hbspt-form form .hs_error_rollup {
    display: none
}

.splash__form .hbspt-form form .hs-error-msgs li {
    list-style: none
}

.splash__messages {
    background: rgba(10, 10, 35, .8);
    border: 1px solid rgba(56, 217, 150, .5);
    border-image-source: linear-gradient(to right, rgba(255, 255, 255, .5), rgba(56, 217, 150, .5));
    border-image-slice: 1;
    padding: calc(1.5625rem + 3.75vw) calc(1.8125rem + 6.75vw)
}

@media(min-width:1200px) {
    .splash__content-description {
        margin-bottom: 3.4375rem
    }

    .splash__messages {
        padding: 4.375rem 6.875rem
    }
}

@media(max-width:576px) {
    .splash__form .hbspt-form form .hs_email .input .btn {
        margin-top: 1.25rem
    }

    .splash__form .hbspt-form form .hs_email .input {
        display: block
    }

    .splash__messages {
        padding: calc(1.375rem + 1.5vw)
    }

    body.blog .promo__bg {
        display: none
    }
}

@media(max-width:576px)and (min-width:1200px) {
    .splash__messages {
        padding: 2.5rem
    }
}

.splash__messages-header {
    margin-bottom: calc(1.375rem + 1.5vw)
}

@media(min-width:1200px) {
    .splash__messages-header {
        margin-bottom: 2.5rem
    }
}

.splash__messages-header-icon {
    width: 48px;
    height: 48px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    background: #38d996;
    border-radius: 50%;
    color: #0a0a23;
    font-size: 24px;
    margin: auto
}

.splash__messages-content {
    font-size: 1.25rem;
    margin-bottom: calc(1.34375rem + 1.125vw)
}

@media(min-width:1200px) {
    .splash__messages-content {
        margin-bottom: 2.1875rem
    }
}

.splash__messages-footer {
    text-align: center
}

.splash__messages-footer .btn {
    min-width: 110px;
    text-align: center
}

.splash__socials:last-child {
    margin-bottom: 0
}

.splash__disclosure {
    color: #e8eee8;
    font-size: .875rem
}

.sidebar-info {
    padding: calc(1.375rem + 1.5vw) calc(1.3125rem + .75vw);
    background: url(../images/wave.svg) right -300px top -150px no-repeat #266f52;
    color: #fff;
    margin-bottom: 1.25rem
}

.sidebar-info h2 {
    font-size: calc(1.3rem + .6vw);
    margin-bottom: 1.25rem;
    font-weight: 700
}

@media(min-width:1200px) {
    .sidebar-info {
        padding: 2.5rem 1.875rem
    }

    .sidebar-info h2 {
        font-size: 1.75rem
    }
}

.sidebar-info img {
    display: inline-block;
    vertical-align: top
}

.single-zoom {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 99999;
    padding: 5vh 5%;
    transition: .3s
}

.single-zoom__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 35, .6)
}

.single-zoom__content {
    position: relative;
    max-width: 1380px;
    max-height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
    background: #050512;
    box-shadow: 0 30px 40px rgba(0, 0, 0, .25);
    overflow: hidden;
    z-index: 1;
    padding: 20px 20px 30px;
    transition: .3s
}

@media(max-width:992px) {
    .single-zoom__content {
        padding: 14px 10px
    }
}

.single-zoom__content-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    transition: .3s
}

.single-zoom__btn {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    min-height: 18px;
    font-size: 0;
    margin: 0 0 18px auto
}

@media(max-width:768px) {
    .single-zoom__btn {
        margin-bottom: 15px
    }
}

.single-zoom__btn:after,
.single-zoom__btn:before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: background-color .3s
}

.single-zoom__btn:before {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.single-zoom__btn:after {
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

@media(min-width:992px) {

    .single-zoom__btn:hover:after,
    .single-zoom__btn:hover:before {
        background-color: #8264ff;
        transition: background-color .3s
    }
}

.single-zoom__img-wrap {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 1326px;
    min-width: 420px;
    min-height: 130px;
    margin-bottom: 16px
}

@media(max-width:768px) {
    .single-zoom__img-wrap {
        min-width: 280px;
        margin-bottom: 9px
    }
}

.single-zoom__img-wrap img[role=presentation] {
    background: #050512
}

.single-zoom__img {
    position: relative;
    display: block;
    width: auto !important;
    height: auto !important;
    z-index: 1;
    margin: 0 auto;
    max-height: 75vh;
    max-width: 100%;
    cursor: zoom-in
}

@media(min-height:768px) {
    .single-zoom__img {
        max-height: 75vh
    }
}

.single-zoom__img+img {
    cursor: zoom-in;
    z-index: 99
}

.single-zoom__img+img.zoomed {
    cursor: zoom-out
}

.single-zoom__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: auto;
    transform: translate3d(-50%, -50%, 0);
    max-width: 300px
}

.single-zoom__caption {
    margin-right: auto
}

.single-zoom.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: .3s
}

.b-modal-item {
    position: fixed;
    bottom: 125px;
    right: 55px;
    width: 400px;
    z-index: 15;
    background: #0a0a23;
    border: .424658px solid #38d996;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    backdrop-filter: blur(3.88398px)
}

@media screen and (max-width:500px) {
    .b-modal-item {
        right: 20px;
        width: calc(100% - 40px)
    }
}

.b-modal-item.active {
    z-index: 1120;
    opacity: 1;
    visibility: visible;
    transition: .3s
}

.b-modal-item__close {
    position: absolute;
    top: -13px;
    right: -13px;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #53536f;
    color: #38d996;
    font-size: 10px;
    z-index: 3
}

.b-modal-item__top {
    position: relative
}

.b-modal-item__top-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start
}

.b-modal-item__label {
    padding: 9px 13px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff
}

.b-modal-item__label_green {
    background: #42d481
}

.b-modal-item__content {
    padding: 20px 20px 35px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.b-modal-item__content-desc {
    font-family: CaeciliaLTPro;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #d0cde2;
    display: block;
    margin: 0 0 5px
}

.b-modal-item__content-name {
    display: block;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 5px
}

.b-modal-item__content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    opacity: .8
}

.b-modal-item__content .b-link {
    margin: 20px 0 0
}

.b-link_green {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #42d481;
    text-shadow: 0 4px 9px rgba(10, 10, 35, .32);
    text-decoration: none;
    transition: .3s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    cursor: pointer
}

.b-link_green:after {
    font-family: icomoon;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 14px;
    color: #42d481;
    margin: 5px 0 0 20px;
    transition: .3s
}

.b-link_green:hover {
    text-decoration: none;
    color: #fff;
    transition: .3s;
    opacity: .8
}

.b-link_green:hover:after {
    text-decoration: none;
    color: #fff;
    transition: .3s
}

.slogan {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: .9375rem
}

.slogan:last-child {
    margin-bottom: 0
}

.table-responsive {
    margin-bottom: calc(1.28125rem + .375vw);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media(min-width:1200px) {
    .table-responsive {
        margin-bottom: 1.5625rem
    }
}

.table-responsive:last-child {
    margin-bottom: 0
}

.tooltipster-base.tooltipster-sidetip {
    z-index: 2 !important
}

.tooltipster-base.tooltipster-sidetip .tooltipster-box {
    border: 1px solid #38d996;
    background: #000
}

.tooltipster-base.tooltipster-sidetip .tooltipster-box .tooltipster-content {
    color: #fff;
    font-size: .875rem;
    line-height: 1.3
}

.tooltipster-base.tooltipster-sidetip .tooltipster-box .tooltipster-content>* {
    display: inline-block
}

.tooltipster-base.tooltipster-sidetip .tooltipster-arrow {
    overflow: visible
}

.tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    left: 0;
    border-right-color: #000
}

.tooltipster-base.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    left: -1px;
    border-right-color: #38d996
}

.tooltipster-base.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    left: 0;
    border-left-color: #000
}

.tooltipster-base.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    left: 1px;
    border-left-color: #38d996
}

.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    top: 0;
    border-top-color: #000
}

.tooltipster-base.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    top: 1px;
    border-top-color: #38d996
}

.tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    top: 0;
    border-bottom-color: #000
}

.tooltipster-base.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    top: -1px;
    border-bottom-color: #38d996
}

.video {
    position: relative;
    margin: 0 0 calc(1.625rem + 4.5vw)
}

.video:last-child {
    margin-bottom: 0
}

body.blog .promo {
    padding-bottom: calc(2.0625rem + 9.75vw);
    overflow: hidden
}

body.blog .promo__bg {
    width: 610px;
    left: 63%;
    top: 35px
}

@media(max-width:992px) {
    body.blog .promo__bg {
        left: 50%
    }
}

.funds-template-default main,
body.error404 main {
    background: 0 0
}

.funds-template-default .promo {
    padding-bottom: calc(1.40625rem + 1.875vw);
    background-position-y: 220px
}

.home .fund-info {
    margin-bottom: calc(-1.625rem - 4.5vw)
}

.home .fund-info h2 {
    font-size: calc(1.375rem + 1.5vw)
}

.home .fund-info+section {
    padding-top: calc(2.25rem + 12vw)
}

@media(min-width:1200px) {
    .video {
        margin: 0 0 5rem
    }

    body.blog .promo {
        padding-bottom: 9.375rem
    }

    .funds-template-default .promo {
        padding-bottom: 2.8125rem
    }

    .home .fund-info {
        margin-bottom: -5rem
    }

    .home .fund-info h2 {
        font-size: 2.5rem
    }

    .home .fund-info+section {
        padding-top: 11.25rem
    }
}

.home .information {
    position: relative
}

.home .information:nth-child(2):before {
    content: "";
    background: url(../images/wave-6.svg) left top/contain no-repeat;
    position: absolute;
    right: -550px;
    top: -400px;
    width: 900px;
    height: 900px;
    pointer-events: none;
    z-index: -1
}

.b-wrapper {
    position: relative;
    background: #0a0b22;
    background-blend-mode: multiply;
    mix-blend-mode: normal;
    z-index: 10;
    padding-top: 100px
}

.b-promo__documents {
    background: 0 0;
    padding: 90px 0 150px !important;
    box-sizing: border-box;
    background-blend-mode: multiply;
    mix-blend-mode: normal
}

.b-promo__documents-left h1 {
    margin: 0 0 10px;
    font-weight: 900;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.3;
    font-size: 62px
}

@media(max-width:1229px) {
    .b-promo__documents-left h1 {
        font-size: 52px
    }
}

@media(max-width:991px) {
    .b-promo__documents-left h1 {
        font-size: 38px
    }
}

@media(max-width:767px) {
    .b-promo__documents-left h1 {
        font-size: 30px;
        font-weight: 800
    }
}

.b-promo-text {
    margin: 0 0 45px
}

.b-promo-text p {
    font-family: CaeciliaLTPro;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #d0cde2;
    margin: 0 0 15px
}

.b-promo-text p:last-child {
    margin-bottom: 0
}

.b-materials .b-materials__wrapper {
    background: #050512;
    backdrop-filter: blur(3.88398px)
}

.b-materials__container {
    padding: 50px 70px 55px 46px;
    box-sizing: border-box
}

.b-materials__container.no-sidebar {
    padding: 50px 46px 55px
}

.b-materials-col {
    margin-bottom: 25px
}

.b-materials-block {
    background: #38d996;
    height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    transition: .3s
}

.b-materials-block .b-materials-block__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 13px 15px 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(208, 205, 226, .8)
}

.b-materials-block .b-materials-block__top .b-materials-block__top-img {
    font-size: 23px;
    color: #fff
}

.b-materials-block .b-materials-block__top .b-materials-block__top-img .icon-pdf:before {
    content: "";
    font-size: 23px;
    color: #fff;
    font-family: icomoon !important
}

.b-materials-block .b-materials-block__top .b-materials-block__top-text {
    text-align: right
}

.b-materials-block .b-materials-block__top .b-materials-block__top-text .b-materials-block__top-name {
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 5px
}

.b-materials-block .b-materials-block__top .b-materials-block__top-text .b-materials-block__top-name.uppercase {
    text-transform: uppercase
}

.b-materials-block .b-materials-block__top .b-materials-block__top-text .b-materials-block__top-desc {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #d0cde2
}

.b-materials-block .b-materials-block__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5px 17px 24px 24px;
    box-sizing: border-box
}

.b-materials-block .b-materials-block__footer .b-materials-block__footer-left .b-materials-block__footer-name {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
    transition: .3s
}

.b-materials-block .b-materials-block__footer .b-materials-block__footer-left .b-materials-block__footer-date {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #fff;
    opacity: .6
}

.b-materials-block .b-materials-block__footer .b-materials-block__footer-btn {
    font-size: 20px;
    color: #fff;
    padding: 0 0 2px;
    border-bottom: 2px solid #fff;
    box-sizing: border-box;
    text-decoration: none;
    margin-bottom: 3px;
    transition: .3s
}

.b-materials-block .b-materials-block__footer .b-materials-block__footer-btn .icon-download:before {
    content: "";
    font-size: 20px;
    color: #fff;
    font-family: icomoon !important
}

.b-materials-block:hover {
    background: #163328;
    transition: .3s;
    text-decoration: none
}

.b-materials-block:hover .b-materials-block__footer .b-materials-block__footer-left .b-materials-block__footer-name {
    color: #38d996
}

.green-btn {
    background: #38d996;
    border-radius: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 9px rgba(10, 10, 35, .32);
    padding: 33px 24px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.green-btn:after {
    font-family: icomoon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-size: 14px;
    color: #fff;
    margin: 4px 0 0 20px
}

.green-btn:active,
.green-btn:hover {
    text-decoration: none;
    color: #fff;
    background: #163328;
    transition: .3s
}

.b-section_padding-top {
    padding-top: 40px
}

.b-section_padding-top .b-text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #79768b;
    margin: 0 0 20px
}

@media(max-width:1229px) {
    .b-promo__documents {
        padding: 50px 0 !important
    }

    .b-materials__container.no-sidebar {
        padding: 50px 15px 55px
    }
}

@media(max-width:991px) {
    .b-materials-block .b-materials-block__top {
        padding: 10px
    }

    .b-materials-block .b-materials-block__top .b-materials-block__top-text .b-materials-block__top-name {
        font-size: 15px
    }

    .b-materials-block .b-materials-block__footer {
        padding: 10px
    }

    .b-materials-block .b-materials-block__footer .b-materials-block__footer-left .b-materials-block__footer-name {
        font-size: 18px
    }

    .b-materials-block .b-materials-block__footer .b-materials-block__footer-btn {
        font-size: 15px
    }
}

@media(max-width:767px) {
    .b-promo-text p {
        font-size: 14px
    }

    .b-section_padding-top .b-text p {
        word-break: break-word
    }

    .b-materials-block {
        height: auto
    }
}

body.page-template-about .promo {
    overflow: hidden
}

body.page-template-about .promo__bg {
    width: 50%;
    height: 100%;
    top: 0;
    left: 50%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: center
}

body.page-template-about .promo__bg img {
    width: 100%
}

body.page-template-portfolio .promo__bg {
    top: 70px
}

@media(max-width:768px) {
    body.page-template-portfolio .promo__bg {
        display: none
    }
}

body.page-template-splash {
    background-image: url(../images/ellipse-2.svg);
    background-position: right top;
    background-repeat: no-repeat
}

body.page-template-splash main {
    background: 0 0
}

@font-face {
    font-family: icomoon;
    src: url(../fonts/icomoon.eot);
    src: url(../fonts/icomoon.eot#iefix) format("embedded-opentype"), url(../fonts/icomoon.ttf) format("truetype"), url(../fonts/icomoon.woff) format("woff"), url(../images/icomoon.svg#icomoon) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

[class*=" icon-"],
[class^=icon-] {
    font-family: icomoon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-load1:before {
    content: ""
}

.icon-check:before {
    content: ""
}

.icon-twitter1:before {
    content: ""
}

.icon-instagram:before {
    content: ""
}

.icon-youtube:before {
    content: ""
}

.icon-facebook:before {
    content: ""
}

.icon-linkedin:before {
    content: ""
}

.icon-pdf-4:before {
    content: ""
}

.icon-down-arrow-with-border:before {
    content: ""
}

.icon-download-arrow:before {
    content: ""
}

.icon-pdf-file-format-symbol:before {
    content: ""
}

.icon-files:before {
    content: ""
}

.icon-csv-file-format-extension:before {
    content: ""
}

.icon-erth:before {
    content: ""
}

.icon-search:before {
    content: ""
}

.icon-user:before {
    content: ""
}

.icon-arrow-down__sm:before {
    content: ""
}

.icon-arrow-right:before {
    content: ""
}

.icon-close:before {
    content: ""
}

.icon-angle-top:before {
    content: ""
}

.icon-angle-bottom:before {
    content: ""
}

.icon-angle-left:before {
    content: ""
}

.icon-angle-right:before {
    content: ""
}

.icon-pdf:before {
    content: ""
}

.icon-download:before {
    content: ""
}

.icon-download-right:before {
    content: ""
}

.icon-env:before {
    content: ""
}

.icon-play:before {
    content: ""
}

.icon-user-2:before {
    content: ""
}

.icon-q-mark:before {
    content: ""
}

.icon-i:before {
    content: ""
}

.icon-arrow-long:before {
    content: ""
}

.icon-arrow-bottom:before {
    content: ""
}

.icon-arrow-top:before {
    content: ""
}

.icon-load:before {
    content: ""
}

.icon-share:before {
    content: ""
}

.icon-twitter:before {
    content: ""
}

.icon-xml-file-format-symbol:before {
    content: ""
}

/*# sourceMappingURL=../sourcemaps/style.min.css.map */