@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
: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-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", Arial, "Noto Sans", "Liberation Sans", 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: Helvetica Neue, 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;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    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: rgba(0, 0, 0, 0);
}
body::-webkit-scrollbar {
     width: 12px;
}

body::-webkit-scrollbar-track {
     background-color: #FFF;
}

body::-webkit-scrollbar-thumb {
     border-radius: 50px;
     background-color: #0044AA;
}
hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}
hr:not([size]) {
    height: 1px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}
h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
    h1,
    .h1 {
        font-size: 2.5rem;
    }
}
h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
    h2,
    .h2 {
        font-size: 2rem;
    }
}
h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
    h3,
    .h3 {
        font-size: 1.75rem;
    }
}
h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
    h4,
    .h4 {
        font-size: 1.5rem;
    }
}
h5,
.h5 {
    font-size: 1.25rem;
}
h6,
.h6 {
    font-size: 1rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}
ol,
ul {
    padding-left: 2rem;
}
ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small,
.small {
    font-size: 0.875em;
}
mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}
sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #0d6efd;
    text-decoration: underline;
}
a:hover {
    color: #002b6b;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
pre,
code,
kbd,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr /* rtl:ignore */;
    unicode-bidi: bidi-override;
}
pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}
a > code {
    color: inherit;
}
kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}
kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}
figure {
    margin: 0 0 1rem;
}
img,
svg {
    vertical-align: middle;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}
caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #6c757d;
    text-align: left;
}
th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}
label {
    display: inline-block;
}
button {
    border-radius: 0;
}
button:focus:not(:focus-visible) {
    outline: 0;
}
input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
select {
    text-transform: none;
}
[role="button"] {
    cursor: pointer;
}
select {
    word-wrap: normal;
}
select:disabled {
    opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
    display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}
::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
textarea {
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    float: left;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}
@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}
legend + * {
    clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}
::-webkit-inner-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}
::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
    padding: 0;
}
::file-selector-button {
    font: inherit;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
iframe {
    border: 0;
}
summary {
    display: list-item;
    cursor: pointer;
}
progress {
    vertical-align: baseline;
}
[hidden] {
    display: none !important;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem;
    }
}
.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem;
    }
}
.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}
.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem;
    }
}
.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}
.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2;
}
@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline {
    padding-left: 0;
    list-style: none;
}
.list-inline-item {
    display: inline-block;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.blockquote > :last-child {
    margin-bottom: 0;
}
.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: 0.875em;
    color: #6c757d;
}
.blockquote-footer::before {
    content: "\2014\00A0";
}
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
}
@media (min-width: 1024px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
}
@media (min-width: 1440px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}
@media (min-width: 1600px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}
.row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}
.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.row-cols-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.row-cols-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}
.row-cols-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}
.row-cols-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
}
.row-cols-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}
.row-cols-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
}
.row-cols-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
}
.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333%;
}
.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66667%;
}
.col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}
.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333%;
}
.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66667%;
}
.col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}
.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333%;
}
.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66667%;
}
.col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}
.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333%;
}
.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66667%;
}
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}
.offset-1 {
    margin-left: 8.33333%;
}
.offset-2 {
    margin-left: 16.66667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.33333%;
}
.offset-5 {
    margin-left: 41.66667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.33333%;
}
.offset-8 {
    margin-left: 66.66667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.33333%;
}
.offset-11 {
    margin-left: 91.66667%;
}
.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;
}
.g-6,
.gx-6 {
    --bs-gutter-x: 1.4375rem;
}
.g-6,
.gy-6 {
    --bs-gutter-y: 1.4375rem;
}
.g-7,
.gx-7 {
    --bs-gutter-x: 1.6875rem;
}
.g-7,
.gy-7 {
    --bs-gutter-y: 1.6875rem;
}
.g-8,
.gx-8 {
    --bs-gutter-x: 5rem;
}
.g-8,
.gy-8 {
    --bs-gutter-y: 5rem;
}
@media (min-width: 576px) {
    .col-sm {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }
    .row-cols-sm-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-sm-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-sm-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-sm-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-sm-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-sm-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-sm-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333%;
    }
    .offset-sm-2 {
        margin-left: 16.66667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333%;
    }
    .offset-sm-5 {
        margin-left: 41.66667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333%;
    }
    .offset-sm-8 {
        margin-left: 66.66667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333%;
    }
    .offset-sm-11 {
        margin-left: 91.66667%;
    }
    .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;
    }
    .g-sm-6,
    .gx-sm-6 {
        --bs-gutter-x: 1.4375rem;
    }
    .g-sm-6,
    .gy-sm-6 {
        --bs-gutter-y: 1.4375rem;
    }
    .g-sm-7,
    .gx-sm-7 {
        --bs-gutter-x: 1.6875rem;
    }
    .g-sm-7,
    .gy-sm-7 {
        --bs-gutter-y: 1.6875rem;
    }
    .g-sm-8,
    .gx-sm-8 {
        --bs-gutter-x: 5rem;
    }
    .g-sm-8,
    .gy-sm-8 {
        --bs-gutter-y: 5rem;
    }
}
@media (min-width: 768px) {
    .col-md {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }
    .row-cols-md-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-md-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-md-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-md-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-md-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-md-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-md-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333%;
    }
    .offset-md-2 {
        margin-left: 16.66667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333%;
    }
    .offset-md-5 {
        margin-left: 41.66667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333%;
    }
    .offset-md-8 {
        margin-left: 66.66667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333%;
    }
    .offset-md-11 {
        margin-left: 91.66667%;
    }
    .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;
    }
    .g-md-6,
    .gx-md-6 {
        --bs-gutter-x: 1.4375rem;
    }
    .g-md-6,
    .gy-md-6 {
        --bs-gutter-y: 1.4375rem;
    }
    .g-md-7,
    .gx-md-7 {
        --bs-gutter-x: 1.6875rem;
    }
    .g-md-7,
    .gy-md-7 {
        --bs-gutter-y: 1.6875rem;
    }
    .g-md-8,
    .gx-md-8 {
        --bs-gutter-x: 5rem;
    }
    .g-md-8,
    .gy-md-8 {
        --bs-gutter-y: 5rem;
    }
}
@media (min-width: 1024px) {
    .col-lg {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }
    .row-cols-lg-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-lg-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-lg-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-lg-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-lg-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-lg-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-lg-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333%;
    }
    .offset-lg-2 {
        margin-left: 16.66667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333%;
    }
    .offset-lg-5 {
        margin-left: 41.66667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333%;
    }
    .offset-lg-8 {
        margin-left: 66.66667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333%;
    }
    .offset-lg-11 {
        margin-left: 91.66667%;
    }
    .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;
    }
    .g-lg-6,
    .gx-lg-6 {
        --bs-gutter-x: 1.4375rem;
    }
    .g-lg-6,
    .gy-lg-6 {
        --bs-gutter-y: 1.4375rem;
    }
    .g-lg-7,
    .gx-lg-7 {
        --bs-gutter-x: 1.6875rem;
    }
    .g-lg-7,
    .gy-lg-7 {
        --bs-gutter-y: 1.6875rem;
    }
    .g-lg-8,
    .gx-lg-8 {
        --bs-gutter-x: 5rem;
    }
    .g-lg-8,
    .gy-lg-8 {
        --bs-gutter-y: 5rem;
    }
}
@media (min-width: 1440px) {
    .col-xl {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }
    .row-cols-xl-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xl-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xl-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xl-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-xl-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xl-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xl-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333%;
    }
    .offset-xl-2 {
        margin-left: 16.66667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333%;
    }
    .offset-xl-5 {
        margin-left: 41.66667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333%;
    }
    .offset-xl-8 {
        margin-left: 66.66667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333%;
    }
    .offset-xl-11 {
        margin-left: 91.66667%;
    }
    .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;
    }
    .g-xl-6,
    .gx-xl-6 {
        --bs-gutter-x: 1.4375rem;
    }
    .g-xl-6,
    .gy-xl-6 {
        --bs-gutter-y: 1.4375rem;
    }
    .g-xl-7,
    .gx-xl-7 {
        --bs-gutter-x: 1.6875rem;
    }
    .g-xl-7,
    .gy-xl-7 {
        --bs-gutter-y: 1.6875rem;
    }
    .g-xl-8,
    .gx-xl-8 {
        --bs-gutter-x: 5rem;
    }
    .g-xl-8,
    .gy-xl-8 {
        --bs-gutter-y: 5rem;
    }
}
@media (min-width: 1600px) {
    .col-xxl {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }
    .row-cols-xxl-auto > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .row-cols-xxl-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .row-cols-xxl-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .row-cols-xxl-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .row-cols-xxl-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .row-cols-xxl-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }
    .row-cols-xxl-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xxl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }
    .col-xxl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333%;
    }
    .col-xxl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66667%;
    }
    .col-xxl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333%;
    }
    .col-xxl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66667%;
    }
    .col-xxl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333%;
    }
    .col-xxl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66667%;
    }
    .col-xxl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333%;
    }
    .col-xxl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66667%;
    }
    .col-xxl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.33333%;
    }
    .offset-xxl-2 {
        margin-left: 16.66667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.33333%;
    }
    .offset-xxl-5 {
        margin-left: 41.66667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.33333%;
    }
    .offset-xxl-8 {
        margin-left: 66.66667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.33333%;
    }
    .offset-xxl-11 {
        margin-left: 91.66667%;
    }
    .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;
    }
    .g-xxl-6,
    .gx-xxl-6 {
        --bs-gutter-x: 1.4375rem;
    }
    .g-xxl-6,
    .gy-xxl-6 {
        --bs-gutter-y: 1.4375rem;
    }
    .g-xxl-7,
    .gx-xxl-7 {
        --bs-gutter-x: 1.6875rem;
    }
    .g-xxl-7,
    .gy-xxl-7 {
        --bs-gutter-y: 1.6875rem;
    }
    .g-xxl-8,
    .gx-xxl-8 {
        --bs-gutter-x: 5rem;
    }
    .g-xxl-8,
    .gy-xxl-8 {
        --bs-gutter-y: 5rem;
    }
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.link-primary {
    color: #0d6efd;
}
.link-primary:hover,
.link-primary:focus {
    color: #0a58ca;
}
.link-secondary {
    color: #6c757d;
}
.link-secondary:hover,
.link-secondary:focus {
    color: #565e64;
}
.link-success {
    color: #198754;
}
.link-success:hover,
.link-success:focus {
    color: #146c43;
}
.link-info {
    color: #0dcaf0;
}
.link-info:hover,
.link-info:focus {
    color: #3dd5f3;
}
.link-warning {
    color: #ffc107;
}
.link-warning:hover,
.link-warning:focus {
    color: #ffcd39;
}
.link-danger {
    color: #dc3545;
}
.link-danger:hover,
.link-danger:focus {
    color: #b02a37;
}
.link-light {
    color: #f8f9fa;
}
.link-light:hover,
.link-light:focus {
    color: #f9fafb;
}
.link-dark {
    color: #212529;
}
.link-dark:hover,
.link-dark:focus {
    color: #1a1e21;
}
.ratio {
    position: relative;
    width: 100%;
}
.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}
.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}
.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%);
}
.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%);
}
.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%);
}
.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;
}
@media (min-width: 576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
@media (min-width: 768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
@media (min-width: 1024px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
@media (min-width: 1440px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
@media (min-width: 1600px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
.hstack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}
.vstack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.vr {
    display: inline-block;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentColor;
    opacity: 0.25;
}
.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: 0.25 !important;
}
.opacity-50 {
    opacity: 0.5 !important;
}
.opacity-75 {
    opacity: 0.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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}
.d-none {
    display: none !important;
}
.shadow {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
    -webkit-box-shadow: none !important;
    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 {
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
}
.translate-middle-x {
    -webkit-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
}
.translate-middle-y {
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.border-0 {
    border: 0 !important;
}
.border-top,
.block-contacts .container-fluid > .row:nth-child(2),
.block-contacts .container-sm > .row:nth-child(2),
.block-contacts .container-md > .row:nth-child(2),
.block-contacts .container-lg > .row:nth-child(2),
.block-contacts .container-xl > .row:nth-child(2),
.block-contacts .container-xxl > .row:nth-child(2),
.block-contacts .contacts-info .row > div:last-child .item {
    border-top: 1px solid #dee2e6 !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.border-end {
    border-right: 1px solid #dee2e6 !important;
}
.border-end-0 {
    border-right: 0 !important;
}
.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}
.border-bottom-0 {
    border-bottom: 0 !important;
}
.border-start {
    border-left: 1px solid #dee2e6 !important;
}
.border-start-0 {
    border-left: 0 !important;
}
.border-primary {
    border-color: #0d6efd !important;
}
.border-secondary {
    border-color: #6c757d !important;
}
.border-success {
    border-color: #198754 !important;
}
.border-info {
    border-color: #0dcaf0 !important;
}
.border-warning {
    border-color: #ffc107 !important;
}
.border-danger {
    border-color: #dc3545 !important;
}
.border-light {
    border-color: #f8f9fa !important;
}
.border-dark {
    border-color: #212529 !important;
}
.border-white {
    border-color: #fff !important;
}
.border-1 {
    border-width: 1px !important;
}
.border-2 {
    border-width: 2px !important;
}
.border-3 {
    border-width: 3px !important;
}
.border-4 {
    border-width: 4px !important;
}
.border-5 {
    border-width: 5px !important;
}
.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 {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}
.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}
.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}
.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}
.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}
.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}
.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}
.gap-0 {
    gap: 0 !important;
}
.gap-1 {
    gap: 0.25rem !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.gap-4 {
    gap: 1.25rem !important;
}
.gap-5 {
    gap: 1.5625rem !important;
}
.gap-6 {
    gap: 1.875rem !important;
}
.gap-7 {
    gap: 2.5rem !important;
}
.gap-8 {
    gap: 2.8125rem !important;
}
.gap-9 {
    gap: 4.6875rem !important;
}
.gap-10 {
    gap: 6.25rem !important;
}
.gap-11 {
    gap: 9.375rem !important;
}
.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}
.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}
.justify-content-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
}
.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}
.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}
.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}
.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}
.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}
.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}
.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}
.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}
.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}
.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}
.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}
.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}
.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}
.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}
.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}
.order-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
}
.order-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
}
.order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
}
.order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
}
.order-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
}
.order-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
}
.order-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
}
.order-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
}
.m-0 {
    margin: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.m-4 {
    margin: 1.25rem !important;
}
.m-5 {
    margin: 1.5625rem !important;
}
.m-6 {
    margin: 1.875rem !important;
}
.m-7 {
    margin: 2.5rem !important;
}
.m-8 {
    margin: 2.8125rem !important;
}
.m-9 {
    margin: 4.6875rem !important;
}
.m-10 {
    margin: 6.25rem !important;
}
.m-11 {
    margin: 9.375rem !important;
}
.m-auto {
    margin: auto !important;
}
.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
}
.mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
}
.mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
}
.mx-4 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
}
.mx-5 {
    margin-right: 1.5625rem !important;
    margin-left: 1.5625rem !important;
}
.mx-6 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
}
.mx-7 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
}
.mx-8 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
}
.mx-9 {
    margin-right: 4.6875rem !important;
    margin-left: 4.6875rem !important;
}
.mx-10 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
}
.mx-11 {
    margin-right: 9.375rem !important;
    margin-left: 9.375rem !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: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}
.my-4 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
}
.my-5 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
}
.my-6 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
}
.my-7 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
}
.my-8 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
}
.my-9 {
    margin-top: 4.6875rem !important;
    margin-bottom: 4.6875rem !important;
}
.my-10 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
}
.my-11 {
    margin-top: 9.375rem !important;
    margin-bottom: 9.375rem !important;
}
.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.25rem !important;
}
.mt-5 {
    margin-top: 1.5625rem !important;
}
.mt-6 {
    margin-top: 1.875rem !important;
}
.mt-7 {
    margin-top: 2.5rem !important;
}
.mt-8 {
    margin-top: 2.8125rem !important;
}
.mt-9 {
    margin-top: 4.6875rem !important;
}
.mt-10 {
    margin-top: 6.25rem !important;
}
.mt-11 {
    margin-top: 9.375rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.me-0 {
    margin-right: 0 !important;
}
.me-1 {
    margin-right: 0.25rem !important;
}
.me-2 {
    margin-right: 0.5rem !important;
}
.me-3 {
    margin-right: 1rem !important;
}
.me-4 {
    margin-right: 1.25rem !important;
}
.me-5 {
    margin-right: 1.5625rem !important;
}
.me-6 {
    margin-right: 1.875rem !important;
}
.me-7 {
    margin-right: 2.5rem !important;
}
.me-8 {
    margin-right: 2.8125rem !important;
}
.me-9 {
    margin-right: 4.6875rem !important;
}
.me-10 {
    margin-right: 6.25rem !important;
}
.me-11 {
    margin-right: 9.375rem !important;
}
.me-auto {
    margin-right: auto !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.25rem !important;
}
.mb-5 {
    margin-bottom: 1.5625rem !important;
}
.mb-6 {
    margin-bottom: 1.875rem !important;
}
.mb-7 {
    margin-bottom: 2.5rem !important;
}
.mb-8 {
    margin-bottom: 2.8125rem !important;
}
.mb-9 {
    margin-bottom: 4.6875rem !important;
}
.mb-10 {
    margin-bottom: 6.25rem !important;
}
.mb-11 {
    margin-bottom: 9.375rem !important;
}
.mb-auto {
    margin-bottom: auto !important;
}
.ms-0 {
    margin-left: 0 !important;
}
.ms-1 {
    margin-left: 0.25rem !important;
}
.ms-2 {
    margin-left: 0.5rem !important;
}
.ms-3 {
    margin-left: 1rem !important;
}
.ms-4 {
    margin-left: 1.25rem !important;
}
.ms-5 {
    margin-left: 1.5625rem !important;
}
.ms-6 {
    margin-left: 1.875rem !important;
}
.ms-7 {
    margin-left: 2.5rem !important;
}
.ms-8 {
    margin-left: 2.8125rem !important;
}
.ms-9 {
    margin-left: 4.6875rem !important;
}
.ms-10 {
    margin-left: 6.25rem !important;
}
.ms-11 {
    margin-left: 9.375rem !important;
}
.ms-auto {
    margin-left: auto !important;
}
.p-0 {
    padding: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.p-4 {
    padding: 1.25rem !important;
}
.p-5 {
    padding: 1.5625rem !important;
}
.p-6 {
    padding: 1.875rem !important;
}
.p-7 {
    padding: 2.5rem !important;
}
.p-8 {
    padding: 2.8125rem !important;
}
.p-9 {
    padding: 4.6875rem !important;
}
.p-10 {
    padding: 6.25rem !important;
}
.p-11 {
    padding: 9.375rem !important;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}
.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.px-4 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
}
.px-5 {
    padding-right: 1.5625rem !important;
    padding-left: 1.5625rem !important;
}
.px-6 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
}
.px-7 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}
.px-8 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
}
.px-9 {
    padding-right: 4.6875rem !important;
    padding-left: 4.6875rem !important;
}
.px-10 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
}
.px-11 {
    padding-right: 9.375rem !important;
    padding-left: 9.375rem !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}
.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.py-4 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
}
.py-5 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
}
.py-6 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
}
.py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}
.py-8 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
}
.py-9 {
    padding-top: 4.6875rem !important;
    padding-bottom: 4.6875rem !important;
}
.py-10 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
}
.py-11 {
    padding-top: 9.375rem !important;
    padding-bottom: 9.375rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-1 {
    padding-top: 0.25rem !important;
}
.pt-2 {
    padding-top: 0.5rem !important;
}
.pt-3 {
    padding-top: 1rem !important;
}
.pt-4 {
    padding-top: 1.25rem !important;
}
.pt-5 {
    padding-top: 1.5625rem !important;
}
.pt-6 {
    padding-top: 1.875rem !important;
}
.pt-7 {
    padding-top: 2.5rem !important;
}
.pt-8 {
    padding-top: 2.8125rem !important;
}
.pt-9 {
    padding-top: 4.6875rem !important;
}
.pt-10 {
    padding-top: 6.25rem !important;
}
.pt-11 {
    padding-top: 9.375rem !important;
}
.pe-0 {
    padding-right: 0 !important;
}
.pe-1 {
    padding-right: 0.25rem !important;
}
.pe-2 {
    padding-right: 0.5rem !important;
}
.pe-3 {
    padding-right: 1rem !important;
}
.pe-4 {
    padding-right: 1.25rem !important;
}
.pe-5 {
    padding-right: 1.5625rem !important;
}
.pe-6 {
    padding-right: 1.875rem !important;
}
.pe-7 {
    padding-right: 2.5rem !important;
}
.pe-8 {
    padding-right: 2.8125rem !important;
}
.pe-9 {
    padding-right: 4.6875rem !important;
}
.pe-10 {
    padding-right: 6.25rem !important;
}
.pe-11 {
    padding-right: 9.375rem !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-1 {
    padding-bottom: 0.25rem !important;
}
.pb-2 {
    padding-bottom: 0.5rem !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.pb-4 {
    padding-bottom: 1.25rem !important;
}
.pb-5 {
    padding-bottom: 1.5625rem !important;
}
.pb-6 {
    padding-bottom: 1.875rem !important;
}
.pb-7 {
    padding-bottom: 2.5rem !important;
}
.pb-8 {
    padding-bottom: 2.8125rem !important;
}
.pb-9 {
    padding-bottom: 4.6875rem !important;
}
.pb-10 {
    padding-bottom: 6.25rem !important;
}
.pb-11 {
    padding-bottom: 9.375rem !important;
}
.ps-0 {
    padding-left: 0 !important;
}
.ps-1 {
    padding-left: 0.25rem !important;
}
.ps-2 {
    padding-left: 0.5rem !important;
}
.ps-3 {
    padding-left: 1rem !important;
}
.ps-4 {
    padding-left: 1.25rem !important;
}
.ps-5 {
    padding-left: 1.5625rem !important;
}
.ps-6 {
    padding-left: 1.875rem !important;
}
.ps-7 {
    padding-left: 2.5rem !important;
}
.ps-8 {
    padding-left: 2.8125rem !important;
}
.ps-9 {
    padding-left: 4.6875rem !important;
}
.ps-10 {
    padding-left: 6.25rem !important;
}
.ps-11 {
    padding-left: 9.375rem !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 + 0.9vw) !important;
}
.fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
    font-size: calc(1.275rem + 0.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-bolder {
    font-weight: bolder !important;
}
.lh-1 {
    line-height: 1 !important;
}
.lh-sm {
    line-height: 1.25 !important;
}
.lh-base {
    line-height: 1.5 !important;
}
.lh-lg {
    line-height: 2 !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, 0.5) !important;
}
.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.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 {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important;
}
.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}
.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
.pe-none {
    pointer-events: none !important;
}
.pe-auto {
    pointer-events: auto !important;
}
.rounded {
    border-radius: 0.25rem !important;
}
.rounded-0 {
    border-radius: 0 !important;
}
.rounded-1 {
    border-radius: 0.2rem !important;
}
.rounded-2 {
    border-radius: 0.25rem !important;
}
.rounded-3 {
    border-radius: 0.3rem !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}
.rounded-top {
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
}
.rounded-end {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
}
.rounded-start {
    border-bottom-left-radius: 0.25rem !important;
    border-top-left-radius: 0.25rem !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    .d-sm-none {
        display: none !important;
    }
    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .gap-sm-0 {
        gap: 0 !important;
    }
    .gap-sm-1 {
        gap: 0.25rem !important;
    }
    .gap-sm-2 {
        gap: 0.5rem !important;
    }
    .gap-sm-3 {
        gap: 1rem !important;
    }
    .gap-sm-4 {
        gap: 1.25rem !important;
    }
    .gap-sm-5 {
        gap: 1.5625rem !important;
    }
    .gap-sm-6 {
        gap: 1.875rem !important;
    }
    .gap-sm-7 {
        gap: 2.5rem !important;
    }
    .gap-sm-8 {
        gap: 2.8125rem !important;
    }
    .gap-sm-9 {
        gap: 4.6875rem !important;
    }
    .gap-sm-10 {
        gap: 6.25rem !important;
    }
    .gap-sm-11 {
        gap: 9.375rem !important;
    }
    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .justify-content-sm-evenly {
        -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }
    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .order-sm-0 {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-sm-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .m-sm-0 {
        margin: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.25rem !important;
    }
    .m-sm-5 {
        margin: 1.5625rem !important;
    }
    .m-sm-6 {
        margin: 1.875rem !important;
    }
    .m-sm-7 {
        margin: 2.5rem !important;
    }
    .m-sm-8 {
        margin: 2.8125rem !important;
    }
    .m-sm-9 {
        margin: 4.6875rem !important;
    }
    .m-sm-10 {
        margin: 6.25rem !important;
    }
    .m-sm-11 {
        margin: 9.375rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mx-sm-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-sm-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-sm-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-sm-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-sm-4 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important;
    }
    .mx-sm-5 {
        margin-right: 1.5625rem !important;
        margin-left: 1.5625rem !important;
    }
    .mx-sm-6 {
        margin-right: 1.875rem !important;
        margin-left: 1.875rem !important;
    }
    .mx-sm-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }
    .mx-sm-8 {
        margin-right: 2.8125rem !important;
        margin-left: 2.8125rem !important;
    }
    .mx-sm-9 {
        margin-right: 4.6875rem !important;
        margin-left: 4.6875rem !important;
    }
    .mx-sm-10 {
        margin-right: 6.25rem !important;
        margin-left: 6.25rem !important;
    }
    .mx-sm-11 {
        margin-right: 9.375rem !important;
        margin-left: 9.375rem !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: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-sm-4 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    .my-sm-5 {
        margin-top: 1.5625rem !important;
        margin-bottom: 1.5625rem !important;
    }
    .my-sm-6 {
        margin-top: 1.875rem !important;
        margin-bottom: 1.875rem !important;
    }
    .my-sm-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    .my-sm-8 {
        margin-top: 2.8125rem !important;
        margin-bottom: 2.8125rem !important;
    }
    .my-sm-9 {
        margin-top: 4.6875rem !important;
        margin-bottom: 4.6875rem !important;
    }
    .my-sm-10 {
        margin-top: 6.25rem !important;
        margin-bottom: 6.25rem !important;
    }
    .my-sm-11 {
        margin-top: 9.375rem !important;
        margin-bottom: 9.375rem !important;
    }
    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-sm-0 {
        margin-top: 0 !important;
    }
    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mt-sm-3 {
        margin-top: 1rem !important;
    }
    .mt-sm-4 {
        margin-top: 1.25rem !important;
    }
    .mt-sm-5 {
        margin-top: 1.5625rem !important;
    }
    .mt-sm-6 {
        margin-top: 1.875rem !important;
    }
    .mt-sm-7 {
        margin-top: 2.5rem !important;
    }
    .mt-sm-8 {
        margin-top: 2.8125rem !important;
    }
    .mt-sm-9 {
        margin-top: 4.6875rem !important;
    }
    .mt-sm-10 {
        margin-top: 6.25rem !important;
    }
    .mt-sm-11 {
        margin-top: 9.375rem !important;
    }
    .mt-sm-auto {
        margin-top: auto !important;
    }
    .me-sm-0 {
        margin-right: 0 !important;
    }
    .me-sm-1 {
        margin-right: 0.25rem !important;
    }
    .me-sm-2 {
        margin-right: 0.5rem !important;
    }
    .me-sm-3 {
        margin-right: 1rem !important;
    }
    .me-sm-4 {
        margin-right: 1.25rem !important;
    }
    .me-sm-5 {
        margin-right: 1.5625rem !important;
    }
    .me-sm-6 {
        margin-right: 1.875rem !important;
    }
    .me-sm-7 {
        margin-right: 2.5rem !important;
    }
    .me-sm-8 {
        margin-right: 2.8125rem !important;
    }
    .me-sm-9 {
        margin-right: 4.6875rem !important;
    }
    .me-sm-10 {
        margin-right: 6.25rem !important;
    }
    .me-sm-11 {
        margin-right: 9.375rem !important;
    }
    .me-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }
    .mb-sm-4 {
        margin-bottom: 1.25rem !important;
    }
    .mb-sm-5 {
        margin-bottom: 1.5625rem !important;
    }
    .mb-sm-6 {
        margin-bottom: 1.875rem !important;
    }
    .mb-sm-7 {
        margin-bottom: 2.5rem !important;
    }
    .mb-sm-8 {
        margin-bottom: 2.8125rem !important;
    }
    .mb-sm-9 {
        margin-bottom: 4.6875rem !important;
    }
    .mb-sm-10 {
        margin-bottom: 6.25rem !important;
    }
    .mb-sm-11 {
        margin-bottom: 9.375rem !important;
    }
    .mb-sm-auto {
        margin-bottom: auto !important;
    }
    .ms-sm-0 {
        margin-left: 0 !important;
    }
    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }
    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }
    .ms-sm-3 {
        margin-left: 1rem !important;
    }
    .ms-sm-4 {
        margin-left: 1.25rem !important;
    }
    .ms-sm-5 {
        margin-left: 1.5625rem !important;
    }
    .ms-sm-6 {
        margin-left: 1.875rem !important;
    }
    .ms-sm-7 {
        margin-left: 2.5rem !important;
    }
    .ms-sm-8 {
        margin-left: 2.8125rem !important;
    }
    .ms-sm-9 {
        margin-left: 4.6875rem !important;
    }
    .ms-sm-10 {
        margin-left: 6.25rem !important;
    }
    .ms-sm-11 {
        margin-left: 9.375rem !important;
    }
    .ms-sm-auto {
        margin-left: auto !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.25rem !important;
    }
    .p-sm-5 {
        padding: 1.5625rem !important;
    }
    .p-sm-6 {
        padding: 1.875rem !important;
    }
    .p-sm-7 {
        padding: 2.5rem !important;
    }
    .p-sm-8 {
        padding: 2.8125rem !important;
    }
    .p-sm-9 {
        padding: 4.6875rem !important;
    }
    .p-sm-10 {
        padding: 6.25rem !important;
    }
    .p-sm-11 {
        padding: 9.375rem !important;
    }
    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-sm-4 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }
    .px-sm-5 {
        padding-right: 1.5625rem !important;
        padding-left: 1.5625rem !important;
    }
    .px-sm-6 {
        padding-right: 1.875rem !important;
        padding-left: 1.875rem !important;
    }
    .px-sm-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
    .px-sm-8 {
        padding-right: 2.8125rem !important;
        padding-left: 2.8125rem !important;
    }
    .px-sm-9 {
        padding-right: 4.6875rem !important;
        padding-left: 4.6875rem !important;
    }
    .px-sm-10 {
        padding-right: 6.25rem !important;
        padding-left: 6.25rem !important;
    }
    .px-sm-11 {
        padding-right: 9.375rem !important;
        padding-left: 9.375rem !important;
    }
    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-sm-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .py-sm-5 {
        padding-top: 1.5625rem !important;
        padding-bottom: 1.5625rem !important;
    }
    .py-sm-6 {
        padding-top: 1.875rem !important;
        padding-bottom: 1.875rem !important;
    }
    .py-sm-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .py-sm-8 {
        padding-top: 2.8125rem !important;
        padding-bottom: 2.8125rem !important;
    }
    .py-sm-9 {
        padding-top: 4.6875rem !important;
        padding-bottom: 4.6875rem !important;
    }
    .py-sm-10 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }
    .py-sm-11 {
        padding-top: 9.375rem !important;
        padding-bottom: 9.375rem !important;
    }
    .pt-sm-0 {
        padding-top: 0 !important;
    }
    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pt-sm-3 {
        padding-top: 1rem !important;
    }
    .pt-sm-4 {
        padding-top: 1.25rem !important;
    }
    .pt-sm-5 {
        padding-top: 1.5625rem !important;
    }
    .pt-sm-6 {
        padding-top: 1.875rem !important;
    }
    .pt-sm-7 {
        padding-top: 2.5rem !important;
    }
    .pt-sm-8 {
        padding-top: 2.8125rem !important;
    }
    .pt-sm-9 {
        padding-top: 4.6875rem !important;
    }
    .pt-sm-10 {
        padding-top: 6.25rem !important;
    }
    .pt-sm-11 {
        padding-top: 9.375rem !important;
    }
    .pe-sm-0 {
        padding-right: 0 !important;
    }
    .pe-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pe-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pe-sm-3 {
        padding-right: 1rem !important;
    }
    .pe-sm-4 {
        padding-right: 1.25rem !important;
    }
    .pe-sm-5 {
        padding-right: 1.5625rem !important;
    }
    .pe-sm-6 {
        padding-right: 1.875rem !important;
    }
    .pe-sm-7 {
        padding-right: 2.5rem !important;
    }
    .pe-sm-8 {
        padding-right: 2.8125rem !important;
    }
    .pe-sm-9 {
        padding-right: 4.6875rem !important;
    }
    .pe-sm-10 {
        padding-right: 6.25rem !important;
    }
    .pe-sm-11 {
        padding-right: 9.375rem !important;
    }
    .pb-sm-0 {
        padding-bottom: 0 !important;
    }
    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pb-sm-4 {
        padding-bottom: 1.25rem !important;
    }
    .pb-sm-5 {
        padding-bottom: 1.5625rem !important;
    }
    .pb-sm-6 {
        padding-bottom: 1.875rem !important;
    }
    .pb-sm-7 {
        padding-bottom: 2.5rem !important;
    }
    .pb-sm-8 {
        padding-bottom: 2.8125rem !important;
    }
    .pb-sm-9 {
        padding-bottom: 4.6875rem !important;
    }
    .pb-sm-10 {
        padding-bottom: 6.25rem !important;
    }
    .pb-sm-11 {
        padding-bottom: 9.375rem !important;
    }
    .ps-sm-0 {
        padding-left: 0 !important;
    }
    .ps-sm-1 {
        padding-left: 0.25rem !important;
    }
    .ps-sm-2 {
        padding-left: 0.5rem !important;
    }
    .ps-sm-3 {
        padding-left: 1rem !important;
    }
    .ps-sm-4 {
        padding-left: 1.25rem !important;
    }
    .ps-sm-5 {
        padding-left: 1.5625rem !important;
    }
    .ps-sm-6 {
        padding-left: 1.875rem !important;
    }
    .ps-sm-7 {
        padding-left: 2.5rem !important;
    }
    .ps-sm-8 {
        padding-left: 2.8125rem !important;
    }
    .ps-sm-9 {
        padding-left: 4.6875rem !important;
    }
    .ps-sm-10 {
        padding-left: 6.25rem !important;
    }
    .ps-sm-11 {
        padding-left: 9.375rem !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    .d-md-none {
        display: none !important;
    }
    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .gap-md-0 {
        gap: 0 !important;
    }
    .gap-md-1 {
        gap: 0.25rem !important;
    }
    .gap-md-2 {
        gap: 0.5rem !important;
    }
    .gap-md-3 {
        gap: 1rem !important;
    }
    .gap-md-4 {
        gap: 1.25rem !important;
    }
    .gap-md-5 {
        gap: 1.5625rem !important;
    }
    .gap-md-6 {
        gap: 1.875rem !important;
    }
    .gap-md-7 {
        gap: 2.5rem !important;
    }
    .gap-md-8 {
        gap: 2.8125rem !important;
    }
    .gap-md-9 {
        gap: 4.6875rem !important;
    }
    .gap-md-10 {
        gap: 6.25rem !important;
    }
    .gap-md-11 {
        gap: 9.375rem !important;
    }
    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .justify-content-md-evenly {
        -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }
    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .order-md-0 {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-md-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .m-md-0 {
        margin: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .m-md-4 {
        margin: 1.25rem !important;
    }
    .m-md-5 {
        margin: 1.5625rem !important;
    }
    .m-md-6 {
        margin: 1.875rem !important;
    }
    .m-md-7 {
        margin: 2.5rem !important;
    }
    .m-md-8 {
        margin: 2.8125rem !important;
    }
    .m-md-9 {
        margin: 4.6875rem !important;
    }
    .m-md-10 {
        margin: 6.25rem !important;
    }
    .m-md-11 {
        margin: 9.375rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mx-md-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-md-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-md-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-md-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-md-4 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important;
    }
    .mx-md-5 {
        margin-right: 1.5625rem !important;
        margin-left: 1.5625rem !important;
    }
    .mx-md-6 {
        margin-right: 1.875rem !important;
        margin-left: 1.875rem !important;
    }
    .mx-md-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }
    .mx-md-8 {
        margin-right: 2.8125rem !important;
        margin-left: 2.8125rem !important;
    }
    .mx-md-9 {
        margin-right: 4.6875rem !important;
        margin-left: 4.6875rem !important;
    }
    .mx-md-10 {
        margin-right: 6.25rem !important;
        margin-left: 6.25rem !important;
    }
    .mx-md-11 {
        margin-right: 9.375rem !important;
        margin-left: 9.375rem !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: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-md-4 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    .my-md-5 {
        margin-top: 1.5625rem !important;
        margin-bottom: 1.5625rem !important;
    }
    .my-md-6 {
        margin-top: 1.875rem !important;
        margin-bottom: 1.875rem !important;
    }
    .my-md-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    .my-md-8 {
        margin-top: 2.8125rem !important;
        margin-bottom: 2.8125rem !important;
    }
    .my-md-9 {
        margin-top: 4.6875rem !important;
        margin-bottom: 4.6875rem !important;
    }
    .my-md-10 {
        margin-top: 6.25rem !important;
        margin-bottom: 6.25rem !important;
    }
    .my-md-11 {
        margin-top: 9.375rem !important;
        margin-bottom: 9.375rem !important;
    }
    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-md-0 {
        margin-top: 0 !important;
    }
    .mt-md-1 {
        margin-top: 0.25rem !important;
    }
    .mt-md-2 {
        margin-top: 0.5rem !important;
    }
    .mt-md-3 {
        margin-top: 1rem !important;
    }
    .mt-md-4 {
        margin-top: 1.25rem !important;
    }
    .mt-md-5 {
        margin-top: 1.5625rem !important;
    }
    .mt-md-6 {
        margin-top: 1.875rem !important;
    }
    .mt-md-7 {
        margin-top: 2.5rem !important;
    }
    .mt-md-8 {
        margin-top: 2.8125rem !important;
    }
    .mt-md-9 {
        margin-top: 4.6875rem !important;
    }
    .mt-md-10 {
        margin-top: 6.25rem !important;
    }
    .mt-md-11 {
        margin-top: 9.375rem !important;
    }
    .mt-md-auto {
        margin-top: auto !important;
    }
    .me-md-0 {
        margin-right: 0 !important;
    }
    .me-md-1 {
        margin-right: 0.25rem !important;
    }
    .me-md-2 {
        margin-right: 0.5rem !important;
    }
    .me-md-3 {
        margin-right: 1rem !important;
    }
    .me-md-4 {
        margin-right: 1.25rem !important;
    }
    .me-md-5 {
        margin-right: 1.5625rem !important;
    }
    .me-md-6 {
        margin-right: 1.875rem !important;
    }
    .me-md-7 {
        margin-right: 2.5rem !important;
    }
    .me-md-8 {
        margin-right: 2.8125rem !important;
    }
    .me-md-9 {
        margin-right: 4.6875rem !important;
    }
    .me-md-10 {
        margin-right: 6.25rem !important;
    }
    .me-md-11 {
        margin-right: 9.375rem !important;
    }
    .me-md-auto {
        margin-right: auto !important;
    }
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-md-3 {
        margin-bottom: 1rem !important;
    }
    .mb-md-4 {
        margin-bottom: 1.25rem !important;
    }
    .mb-md-5 {
        margin-bottom: 1.5625rem !important;
    }
    .mb-md-6 {
        margin-bottom: 1.875rem !important;
    }
    .mb-md-7 {
        margin-bottom: 2.5rem !important;
    }
    .mb-md-8 {
        margin-bottom: 2.8125rem !important;
    }
    .mb-md-9 {
        margin-bottom: 4.6875rem !important;
    }
    .mb-md-10 {
        margin-bottom: 6.25rem !important;
    }
    .mb-md-11 {
        margin-bottom: 9.375rem !important;
    }
    .mb-md-auto {
        margin-bottom: auto !important;
    }
    .ms-md-0 {
        margin-left: 0 !important;
    }
    .ms-md-1 {
        margin-left: 0.25rem !important;
    }
    .ms-md-2 {
        margin-left: 0.5rem !important;
    }
    .ms-md-3 {
        margin-left: 1rem !important;
    }
    .ms-md-4 {
        margin-left: 1.25rem !important;
    }
    .ms-md-5 {
        margin-left: 1.5625rem !important;
    }
    .ms-md-6 {
        margin-left: 1.875rem !important;
    }
    .ms-md-7 {
        margin-left: 2.5rem !important;
    }
    .ms-md-8 {
        margin-left: 2.8125rem !important;
    }
    .ms-md-9 {
        margin-left: 4.6875rem !important;
    }
    .ms-md-10 {
        margin-left: 6.25rem !important;
    }
    .ms-md-11 {
        margin-left: 9.375rem !important;
    }
    .ms-md-auto {
        margin-left: auto !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .p-md-4 {
        padding: 1.25rem !important;
    }
    .p-md-5 {
        padding: 1.5625rem !important;
    }
    .p-md-6 {
        padding: 1.875rem !important;
    }
    .p-md-7 {
        padding: 2.5rem !important;
    }
    .p-md-8 {
        padding: 2.8125rem !important;
    }
    .p-md-9 {
        padding: 4.6875rem !important;
    }
    .p-md-10 {
        padding: 6.25rem !important;
    }
    .p-md-11 {
        padding: 9.375rem !important;
    }
    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-md-4 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }
    .px-md-5 {
        padding-right: 1.5625rem !important;
        padding-left: 1.5625rem !important;
    }
    .px-md-6 {
        padding-right: 1.875rem !important;
        padding-left: 1.875rem !important;
    }
    .px-md-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
    .px-md-8 {
        padding-right: 2.8125rem !important;
        padding-left: 2.8125rem !important;
    }
    .px-md-9 {
        padding-right: 4.6875rem !important;
        padding-left: 4.6875rem !important;
    }
    .px-md-10 {
        padding-right: 6.25rem !important;
        padding-left: 6.25rem !important;
    }
    .px-md-11 {
        padding-right: 9.375rem !important;
        padding-left: 9.375rem !important;
    }
    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-md-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .py-md-5 {
        padding-top: 1.5625rem !important;
        padding-bottom: 1.5625rem !important;
    }
    .py-md-6 {
        padding-top: 1.875rem !important;
        padding-bottom: 1.875rem !important;
    }
    .py-md-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .py-md-8 {
        padding-top: 2.8125rem !important;
        padding-bottom: 2.8125rem !important;
    }
    .py-md-9 {
        padding-top: 4.6875rem !important;
        padding-bottom: 4.6875rem !important;
    }
    .py-md-10 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }
    .py-md-11 {
        padding-top: 9.375rem !important;
        padding-bottom: 9.375rem !important;
    }
    .pt-md-0 {
        padding-top: 0 !important;
    }
    .pt-md-1 {
        padding-top: 0.25rem !important;
    }
    .pt-md-2 {
        padding-top: 0.5rem !important;
    }
    .pt-md-3 {
        padding-top: 1rem !important;
    }
    .pt-md-4 {
        padding-top: 1.25rem !important;
    }
    .pt-md-5 {
        padding-top: 1.5625rem !important;
    }
    .pt-md-6 {
        padding-top: 1.875rem !important;
    }
    .pt-md-7 {
        padding-top: 2.5rem !important;
    }
    .pt-md-8 {
        padding-top: 2.8125rem !important;
    }
    .pt-md-9 {
        padding-top: 4.6875rem !important;
    }
    .pt-md-10 {
        padding-top: 6.25rem !important;
    }
    .pt-md-11 {
        padding-top: 9.375rem !important;
    }
    .pe-md-0 {
        padding-right: 0 !important;
    }
    .pe-md-1 {
        padding-right: 0.25rem !important;
    }
    .pe-md-2 {
        padding-right: 0.5rem !important;
    }
    .pe-md-3 {
        padding-right: 1rem !important;
    }
    .pe-md-4 {
        padding-right: 1.25rem !important;
    }
    .pe-md-5 {
        padding-right: 1.5625rem !important;
    }
    .pe-md-6 {
        padding-right: 1.875rem !important;
    }
    .pe-md-7 {
        padding-right: 2.5rem !important;
    }
    .pe-md-8 {
        padding-right: 2.8125rem !important;
    }
    .pe-md-9 {
        padding-right: 4.6875rem !important;
    }
    .pe-md-10 {
        padding-right: 6.25rem !important;
    }
    .pe-md-11 {
        padding-right: 9.375rem !important;
    }
    .pb-md-0 {
        padding-bottom: 0 !important;
    }
    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-md-3 {
        padding-bottom: 1rem !important;
    }
    .pb-md-4 {
        padding-bottom: 1.25rem !important;
    }
    .pb-md-5 {
        padding-bottom: 1.5625rem !important;
    }
    .pb-md-6 {
        padding-bottom: 1.875rem !important;
    }
    .pb-md-7 {
        padding-bottom: 2.5rem !important;
    }
    .pb-md-8 {
        padding-bottom: 2.8125rem !important;
    }
    .pb-md-9 {
        padding-bottom: 4.6875rem !important;
    }
    .pb-md-10 {
        padding-bottom: 6.25rem !important;
    }
    .pb-md-11 {
        padding-bottom: 9.375rem !important;
    }
    .ps-md-0 {
        padding-left: 0 !important;
    }
    .ps-md-1 {
        padding-left: 0.25rem !important;
    }
    .ps-md-2 {
        padding-left: 0.5rem !important;
    }
    .ps-md-3 {
        padding-left: 1rem !important;
    }
    .ps-md-4 {
        padding-left: 1.25rem !important;
    }
    .ps-md-5 {
        padding-left: 1.5625rem !important;
    }
    .ps-md-6 {
        padding-left: 1.875rem !important;
    }
    .ps-md-7 {
        padding-left: 2.5rem !important;
    }
    .ps-md-8 {
        padding-left: 2.8125rem !important;
    }
    .ps-md-9 {
        padding-left: 4.6875rem !important;
    }
    .ps-md-10 {
        padding-left: 6.25rem !important;
    }
    .ps-md-11 {
        padding-left: 9.375rem !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: 1024px) {
    .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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    .d-lg-none {
        display: none !important;
    }
    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .gap-lg-0 {
        gap: 0 !important;
    }
    .gap-lg-1 {
        gap: 0.25rem !important;
    }
    .gap-lg-2 {
        gap: 0.5rem !important;
    }
    .gap-lg-3 {
        gap: 1rem !important;
    }
    .gap-lg-4 {
        gap: 1.25rem !important;
    }
    .gap-lg-5 {
        gap: 1.5625rem !important;
    }
    .gap-lg-6 {
        gap: 1.875rem !important;
    }
    .gap-lg-7 {
        gap: 2.5rem !important;
    }
    .gap-lg-8 {
        gap: 2.8125rem !important;
    }
    .gap-lg-9 {
        gap: 4.6875rem !important;
    }
    .gap-lg-10 {
        gap: 6.25rem !important;
    }
    .gap-lg-11 {
        gap: 9.375rem !important;
    }
    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .justify-content-lg-evenly {
        -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }
    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .order-lg-0 {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-lg-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .m-lg-0 {
        margin: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.25rem !important;
    }
    .m-lg-5 {
        margin: 1.5625rem !important;
    }
    .m-lg-6 {
        margin: 1.875rem !important;
    }
    .m-lg-7 {
        margin: 2.5rem !important;
    }
    .m-lg-8 {
        margin: 2.8125rem !important;
    }
    .m-lg-9 {
        margin: 4.6875rem !important;
    }
    .m-lg-10 {
        margin: 6.25rem !important;
    }
    .m-lg-11 {
        margin: 9.375rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mx-lg-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-lg-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-lg-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-lg-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-lg-4 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important;
    }
    .mx-lg-5 {
        margin-right: 1.5625rem !important;
        margin-left: 1.5625rem !important;
    }
    .mx-lg-6 {
        margin-right: 1.875rem !important;
        margin-left: 1.875rem !important;
    }
    .mx-lg-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }
    .mx-lg-8 {
        margin-right: 2.8125rem !important;
        margin-left: 2.8125rem !important;
    }
    .mx-lg-9 {
        margin-right: 4.6875rem !important;
        margin-left: 4.6875rem !important;
    }
    .mx-lg-10 {
        margin-right: 6.25rem !important;
        margin-left: 6.25rem !important;
    }
    .mx-lg-11 {
        margin-right: 9.375rem !important;
        margin-left: 9.375rem !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: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-lg-4 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    .my-lg-5 {
        margin-top: 1.5625rem !important;
        margin-bottom: 1.5625rem !important;
    }
    .my-lg-6 {
        margin-top: 1.875rem !important;
        margin-bottom: 1.875rem !important;
    }
    .my-lg-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    .my-lg-8 {
        margin-top: 2.8125rem !important;
        margin-bottom: 2.8125rem !important;
    }
    .my-lg-9 {
        margin-top: 4.6875rem !important;
        margin-bottom: 4.6875rem !important;
    }
    .my-lg-10 {
        margin-top: 6.25rem !important;
        margin-bottom: 6.25rem !important;
    }
    .my-lg-11 {
        margin-top: 9.375rem !important;
        margin-bottom: 9.375rem !important;
    }
    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-lg-0 {
        margin-top: 0 !important;
    }
    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mt-lg-3 {
        margin-top: 1rem !important;
    }
    .mt-lg-4 {
        margin-top: 1.25rem !important;
    }
    .mt-lg-5 {
        margin-top: 1.5625rem !important;
    }
    .mt-lg-6 {
        margin-top: 1.875rem !important;
    }
    .mt-lg-7 {
        margin-top: 2.5rem !important;
    }
    .mt-lg-8 {
        margin-top: 2.8125rem !important;
    }
    .mt-lg-9 {
        margin-top: 4.6875rem !important;
    }
    .mt-lg-10 {
        margin-top: 6.25rem !important;
    }
    .mt-lg-11 {
        margin-top: 9.375rem !important;
    }
    .mt-lg-auto {
        margin-top: auto !important;
    }
    .me-lg-0 {
        margin-right: 0 !important;
    }
    .me-lg-1 {
        margin-right: 0.25rem !important;
    }
    .me-lg-2 {
        margin-right: 0.5rem !important;
    }
    .me-lg-3 {
        margin-right: 1rem !important;
    }
    .me-lg-4 {
        margin-right: 1.25rem !important;
    }
    .me-lg-5 {
        margin-right: 1.5625rem !important;
    }
    .me-lg-6 {
        margin-right: 1.875rem !important;
    }
    .me-lg-7 {
        margin-right: 2.5rem !important;
    }
    .me-lg-8 {
        margin-right: 2.8125rem !important;
    }
    .me-lg-9 {
        margin-right: 4.6875rem !important;
    }
    .me-lg-10 {
        margin-right: 6.25rem !important;
    }
    .me-lg-11 {
        margin-right: 9.375rem !important;
    }
    .me-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }
    .mb-lg-4 {
        margin-bottom: 1.25rem !important;
    }
    .mb-lg-5 {
        margin-bottom: 1.5625rem !important;
    }
    .mb-lg-6 {
        margin-bottom: 1.875rem !important;
    }
    .mb-lg-7 {
        margin-bottom: 2.5rem !important;
    }
    .mb-lg-8 {
        margin-bottom: 2.8125rem !important;
    }
    .mb-lg-9 {
        margin-bottom: 4.6875rem !important;
    }
    .mb-lg-10 {
        margin-bottom: 6.25rem !important;
    }
    .mb-lg-11 {
        margin-bottom: 9.375rem !important;
    }
    .mb-lg-auto {
        margin-bottom: auto !important;
    }
    .ms-lg-0 {
        margin-left: 0 !important;
    }
    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }
    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }
    .ms-lg-3 {
        margin-left: 1rem !important;
    }
    .ms-lg-4 {
        margin-left: 1.25rem !important;
    }
    .ms-lg-5 {
        margin-left: 1.5625rem !important;
    }
    .ms-lg-6 {
        margin-left: 1.875rem !important;
    }
    .ms-lg-7 {
        margin-left: 2.5rem !important;
    }
    .ms-lg-8 {
        margin-left: 2.8125rem !important;
    }
    .ms-lg-9 {
        margin-left: 4.6875rem !important;
    }
    .ms-lg-10 {
        margin-left: 6.25rem !important;
    }
    .ms-lg-11 {
        margin-left: 9.375rem !important;
    }
    .ms-lg-auto {
        margin-left: auto !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.25rem !important;
    }
    .p-lg-5 {
        padding: 1.5625rem !important;
    }
    .p-lg-6 {
        padding: 1.875rem !important;
    }
    .p-lg-7 {
        padding: 2.5rem !important;
    }
    .p-lg-8 {
        padding: 2.8125rem !important;
    }
    .p-lg-9 {
        padding: 4.6875rem !important;
    }
    .p-lg-10 {
        padding: 6.25rem !important;
    }
    .p-lg-11 {
        padding: 9.375rem !important;
    }
    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-lg-4 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }
    .px-lg-5 {
        padding-right: 1.5625rem !important;
        padding-left: 1.5625rem !important;
    }
    .px-lg-6 {
        padding-right: 1.875rem !important;
        padding-left: 1.875rem !important;
    }
    .px-lg-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
    .px-lg-8 {
        padding-right: 2.8125rem !important;
        padding-left: 2.8125rem !important;
    }
    .px-lg-9 {
        padding-right: 4.6875rem !important;
        padding-left: 4.6875rem !important;
    }
    .px-lg-10 {
        padding-right: 6.25rem !important;
        padding-left: 6.25rem !important;
    }
    .px-lg-11 {
        padding-right: 9.375rem !important;
        padding-left: 9.375rem !important;
    }
    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-lg-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .py-lg-5 {
        padding-top: 1.5625rem !important;
        padding-bottom: 1.5625rem !important;
    }
    .py-lg-6 {
        padding-top: 1.875rem !important;
        padding-bottom: 1.875rem !important;
    }
    .py-lg-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .py-lg-8 {
        padding-top: 2.8125rem !important;
        padding-bottom: 2.8125rem !important;
    }
    .py-lg-9 {
        padding-top: 4.6875rem !important;
        padding-bottom: 4.6875rem !important;
    }
    .py-lg-10 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }
    .py-lg-11 {
        padding-top: 9.375rem !important;
        padding-bottom: 9.375rem !important;
    }
    .pt-lg-0 {
        padding-top: 0 !important;
    }
    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pt-lg-3 {
        padding-top: 1rem !important;
    }
    .pt-lg-4 {
        padding-top: 1.25rem !important;
    }
    .pt-lg-5 {
        padding-top: 1.5625rem !important;
    }
    .pt-lg-6 {
        padding-top: 1.875rem !important;
    }
    .pt-lg-7 {
        padding-top: 2.5rem !important;
    }
    .pt-lg-8 {
        padding-top: 2.8125rem !important;
    }
    .pt-lg-9 {
        padding-top: 4.6875rem !important;
    }
    .pt-lg-10 {
        padding-top: 6.25rem !important;
    }
    .pt-lg-11 {
        padding-top: 9.375rem !important;
    }
    .pe-lg-0 {
        padding-right: 0 !important;
    }
    .pe-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pe-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pe-lg-3 {
        padding-right: 1rem !important;
    }
    .pe-lg-4 {
        padding-right: 1.25rem !important;
    }
    .pe-lg-5 {
        padding-right: 1.5625rem !important;
    }
    .pe-lg-6 {
        padding-right: 1.875rem !important;
    }
    .pe-lg-7 {
        padding-right: 2.5rem !important;
    }
    .pe-lg-8 {
        padding-right: 2.8125rem !important;
    }
    .pe-lg-9 {
        padding-right: 4.6875rem !important;
    }
    .pe-lg-10 {
        padding-right: 6.25rem !important;
    }
    .pe-lg-11 {
        padding-right: 9.375rem !important;
    }
    .pb-lg-0 {
        padding-bottom: 0 !important;
    }
    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pb-lg-4 {
        padding-bottom: 1.25rem !important;
    }
    .pb-lg-5 {
        padding-bottom: 1.5625rem !important;
    }
    .pb-lg-6 {
        padding-bottom: 1.875rem !important;
    }
    .pb-lg-7 {
        padding-bottom: 2.5rem !important;
    }
    .pb-lg-8 {
        padding-bottom: 2.8125rem !important;
    }
    .pb-lg-9 {
        padding-bottom: 4.6875rem !important;
    }
    .pb-lg-10 {
        padding-bottom: 6.25rem !important;
    }
    .pb-lg-11 {
        padding-bottom: 9.375rem !important;
    }
    .ps-lg-0 {
        padding-left: 0 !important;
    }
    .ps-lg-1 {
        padding-left: 0.25rem !important;
    }
    .ps-lg-2 {
        padding-left: 0.5rem !important;
    }
    .ps-lg-3 {
        padding-left: 1rem !important;
    }
    .ps-lg-4 {
        padding-left: 1.25rem !important;
    }
    .ps-lg-5 {
        padding-left: 1.5625rem !important;
    }
    .ps-lg-6 {
        padding-left: 1.875rem !important;
    }
    .ps-lg-7 {
        padding-left: 2.5rem !important;
    }
    .ps-lg-8 {
        padding-left: 2.8125rem !important;
    }
    .ps-lg-9 {
        padding-left: 4.6875rem !important;
    }
    .ps-lg-10 {
        padding-left: 6.25rem !important;
    }
    .ps-lg-11 {
        padding-left: 9.375rem !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: 1440px) {
    .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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    .d-xl-none {
        display: none !important;
    }
    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .gap-xl-0 {
        gap: 0 !important;
    }
    .gap-xl-1 {
        gap: 0.25rem !important;
    }
    .gap-xl-2 {
        gap: 0.5rem !important;
    }
    .gap-xl-3 {
        gap: 1rem !important;
    }
    .gap-xl-4 {
        gap: 1.25rem !important;
    }
    .gap-xl-5 {
        gap: 1.5625rem !important;
    }
    .gap-xl-6 {
        gap: 1.875rem !important;
    }
    .gap-xl-7 {
        gap: 2.5rem !important;
    }
    .gap-xl-8 {
        gap: 2.8125rem !important;
    }
    .gap-xl-9 {
        gap: 4.6875rem !important;
    }
    .gap-xl-10 {
        gap: 6.25rem !important;
    }
    .gap-xl-11 {
        gap: 9.375rem !important;
    }
    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .justify-content-xl-evenly {
        -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }
    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .order-xl-0 {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-xl-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .m-xl-0 {
        margin: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.25rem !important;
    }
    .m-xl-5 {
        margin: 1.5625rem !important;
    }
    .m-xl-6 {
        margin: 1.875rem !important;
    }
    .m-xl-7 {
        margin: 2.5rem !important;
    }
    .m-xl-8 {
        margin: 2.8125rem !important;
    }
    .m-xl-9 {
        margin: 4.6875rem !important;
    }
    .m-xl-10 {
        margin: 6.25rem !important;
    }
    .m-xl-11 {
        margin: 9.375rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mx-xl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-xl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-xl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-xl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-xl-4 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important;
    }
    .mx-xl-5 {
        margin-right: 1.5625rem !important;
        margin-left: 1.5625rem !important;
    }
    .mx-xl-6 {
        margin-right: 1.875rem !important;
        margin-left: 1.875rem !important;
    }
    .mx-xl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }
    .mx-xl-8 {
        margin-right: 2.8125rem !important;
        margin-left: 2.8125rem !important;
    }
    .mx-xl-9 {
        margin-right: 4.6875rem !important;
        margin-left: 4.6875rem !important;
    }
    .mx-xl-10 {
        margin-right: 6.25rem !important;
        margin-left: 6.25rem !important;
    }
    .mx-xl-11 {
        margin-right: 9.375rem !important;
        margin-left: 9.375rem !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: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-xl-4 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    .my-xl-5 {
        margin-top: 1.5625rem !important;
        margin-bottom: 1.5625rem !important;
    }
    .my-xl-6 {
        margin-top: 1.875rem !important;
        margin-bottom: 1.875rem !important;
    }
    .my-xl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    .my-xl-8 {
        margin-top: 2.8125rem !important;
        margin-bottom: 2.8125rem !important;
    }
    .my-xl-9 {
        margin-top: 4.6875rem !important;
        margin-bottom: 4.6875rem !important;
    }
    .my-xl-10 {
        margin-top: 6.25rem !important;
        margin-bottom: 6.25rem !important;
    }
    .my-xl-11 {
        margin-top: 9.375rem !important;
        margin-bottom: 9.375rem !important;
    }
    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-xl-0 {
        margin-top: 0 !important;
    }
    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mt-xl-3 {
        margin-top: 1rem !important;
    }
    .mt-xl-4 {
        margin-top: 1.25rem !important;
    }
    .mt-xl-5 {
        margin-top: 1.5625rem !important;
    }
    .mt-xl-6 {
        margin-top: 1.875rem !important;
    }
    .mt-xl-7 {
        margin-top: 2.5rem !important;
    }
    .mt-xl-8 {
        margin-top: 2.8125rem !important;
    }
    .mt-xl-9 {
        margin-top: 4.6875rem !important;
    }
    .mt-xl-10 {
        margin-top: 6.25rem !important;
    }
    .mt-xl-11 {
        margin-top: 9.375rem !important;
    }
    .mt-xl-auto {
        margin-top: auto !important;
    }
    .me-xl-0 {
        margin-right: 0 !important;
    }
    .me-xl-1 {
        margin-right: 0.25rem !important;
    }
    .me-xl-2 {
        margin-right: 0.5rem !important;
    }
    .me-xl-3 {
        margin-right: 1rem !important;
    }
    .me-xl-4 {
        margin-right: 1.25rem !important;
    }
    .me-xl-5 {
        margin-right: 1.5625rem !important;
    }
    .me-xl-6 {
        margin-right: 1.875rem !important;
    }
    .me-xl-7 {
        margin-right: 2.5rem !important;
    }
    .me-xl-8 {
        margin-right: 2.8125rem !important;
    }
    .me-xl-9 {
        margin-right: 4.6875rem !important;
    }
    .me-xl-10 {
        margin-right: 6.25rem !important;
    }
    .me-xl-11 {
        margin-right: 9.375rem !important;
    }
    .me-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-0 {
        margin-bottom: 0 !important;
    }
    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }
    .mb-xl-4 {
        margin-bottom: 1.25rem !important;
    }
    .mb-xl-5 {
        margin-bottom: 1.5625rem !important;
    }
    .mb-xl-6 {
        margin-bottom: 1.875rem !important;
    }
    .mb-xl-7 {
        margin-bottom: 2.5rem !important;
    }
    .mb-xl-8 {
        margin-bottom: 2.8125rem !important;
    }
    .mb-xl-9 {
        margin-bottom: 4.6875rem !important;
    }
    .mb-xl-10 {
        margin-bottom: 6.25rem !important;
    }
    .mb-xl-11 {
        margin-bottom: 9.375rem !important;
    }
    .mb-xl-auto {
        margin-bottom: auto !important;
    }
    .ms-xl-0 {
        margin-left: 0 !important;
    }
    .ms-xl-1 {
        margin-left: 0.25rem !important;
    }
    .ms-xl-2 {
        margin-left: 0.5rem !important;
    }
    .ms-xl-3 {
        margin-left: 1rem !important;
    }
    .ms-xl-4 {
        margin-left: 1.25rem !important;
    }
    .ms-xl-5 {
        margin-left: 1.5625rem !important;
    }
    .ms-xl-6 {
        margin-left: 1.875rem !important;
    }
    .ms-xl-7 {
        margin-left: 2.5rem !important;
    }
    .ms-xl-8 {
        margin-left: 2.8125rem !important;
    }
    .ms-xl-9 {
        margin-left: 4.6875rem !important;
    }
    .ms-xl-10 {
        margin-left: 6.25rem !important;
    }
    .ms-xl-11 {
        margin-left: 9.375rem !important;
    }
    .ms-xl-auto {
        margin-left: auto !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.25rem !important;
    }
    .p-xl-5 {
        padding: 1.5625rem !important;
    }
    .p-xl-6 {
        padding: 1.875rem !important;
    }
    .p-xl-7 {
        padding: 2.5rem !important;
    }
    .p-xl-8 {
        padding: 2.8125rem !important;
    }
    .p-xl-9 {
        padding: 4.6875rem !important;
    }
    .p-xl-10 {
        padding: 6.25rem !important;
    }
    .p-xl-11 {
        padding: 9.375rem !important;
    }
    .px-xl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-xl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-xl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-xl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-xl-4 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }
    .px-xl-5 {
        padding-right: 1.5625rem !important;
        padding-left: 1.5625rem !important;
    }
    .px-xl-6 {
        padding-right: 1.875rem !important;
        padding-left: 1.875rem !important;
    }
    .px-xl-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
    .px-xl-8 {
        padding-right: 2.8125rem !important;
        padding-left: 2.8125rem !important;
    }
    .px-xl-9 {
        padding-right: 4.6875rem !important;
        padding-left: 4.6875rem !important;
    }
    .px-xl-10 {
        padding-right: 6.25rem !important;
        padding-left: 6.25rem !important;
    }
    .px-xl-11 {
        padding-right: 9.375rem !important;
        padding-left: 9.375rem !important;
    }
    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-xl-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .py-xl-5 {
        padding-top: 1.5625rem !important;
        padding-bottom: 1.5625rem !important;
    }
    .py-xl-6 {
        padding-top: 1.875rem !important;
        padding-bottom: 1.875rem !important;
    }
    .py-xl-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .py-xl-8 {
        padding-top: 2.8125rem !important;
        padding-bottom: 2.8125rem !important;
    }
    .py-xl-9 {
        padding-top: 4.6875rem !important;
        padding-bottom: 4.6875rem !important;
    }
    .py-xl-10 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }
    .py-xl-11 {
        padding-top: 9.375rem !important;
        padding-bottom: 9.375rem !important;
    }
    .pt-xl-0 {
        padding-top: 0 !important;
    }
    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pt-xl-3 {
        padding-top: 1rem !important;
    }
    .pt-xl-4 {
        padding-top: 1.25rem !important;
    }
    .pt-xl-5 {
        padding-top: 1.5625rem !important;
    }
    .pt-xl-6 {
        padding-top: 1.875rem !important;
    }
    .pt-xl-7 {
        padding-top: 2.5rem !important;
    }
    .pt-xl-8 {
        padding-top: 2.8125rem !important;
    }
    .pt-xl-9 {
        padding-top: 4.6875rem !important;
    }
    .pt-xl-10 {
        padding-top: 6.25rem !important;
    }
    .pt-xl-11 {
        padding-top: 9.375rem !important;
    }
    .pe-xl-0 {
        padding-right: 0 !important;
    }
    .pe-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pe-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pe-xl-3 {
        padding-right: 1rem !important;
    }
    .pe-xl-4 {
        padding-right: 1.25rem !important;
    }
    .pe-xl-5 {
        padding-right: 1.5625rem !important;
    }
    .pe-xl-6 {
        padding-right: 1.875rem !important;
    }
    .pe-xl-7 {
        padding-right: 2.5rem !important;
    }
    .pe-xl-8 {
        padding-right: 2.8125rem !important;
    }
    .pe-xl-9 {
        padding-right: 4.6875rem !important;
    }
    .pe-xl-10 {
        padding-right: 6.25rem !important;
    }
    .pe-xl-11 {
        padding-right: 9.375rem !important;
    }
    .pb-xl-0 {
        padding-bottom: 0 !important;
    }
    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pb-xl-4 {
        padding-bottom: 1.25rem !important;
    }
    .pb-xl-5 {
        padding-bottom: 1.5625rem !important;
    }
    .pb-xl-6 {
        padding-bottom: 1.875rem !important;
    }
    .pb-xl-7 {
        padding-bottom: 2.5rem !important;
    }
    .pb-xl-8 {
        padding-bottom: 2.8125rem !important;
    }
    .pb-xl-9 {
        padding-bottom: 4.6875rem !important;
    }
    .pb-xl-10 {
        padding-bottom: 6.25rem !important;
    }
    .pb-xl-11 {
        padding-bottom: 9.375rem !important;
    }
    .ps-xl-0 {
        padding-left: 0 !important;
    }
    .ps-xl-1 {
        padding-left: 0.25rem !important;
    }
    .ps-xl-2 {
        padding-left: 0.5rem !important;
    }
    .ps-xl-3 {
        padding-left: 1rem !important;
    }
    .ps-xl-4 {
        padding-left: 1.25rem !important;
    }
    .ps-xl-5 {
        padding-left: 1.5625rem !important;
    }
    .ps-xl-6 {
        padding-left: 1.875rem !important;
    }
    .ps-xl-7 {
        padding-left: 2.5rem !important;
    }
    .ps-xl-8 {
        padding-left: 2.8125rem !important;
    }
    .ps-xl-9 {
        padding-left: 4.6875rem !important;
    }
    .ps-xl-10 {
        padding-left: 6.25rem !important;
    }
    .ps-xl-11 {
        padding-left: 9.375rem !important;
    }
    .text-xl-start {
        text-align: left !important;
    }
    .text-xl-end {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}
@media (min-width: 1600px) {
    .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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xxl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    .d-xxl-none {
        display: none !important;
    }
    .flex-xxl-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-xxl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xxl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xxl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xxl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xxl-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-xxl-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xxl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-xxl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .flex-xxl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xxl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xxl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .gap-xxl-0 {
        gap: 0 !important;
    }
    .gap-xxl-1 {
        gap: 0.25rem !important;
    }
    .gap-xxl-2 {
        gap: 0.5rem !important;
    }
    .gap-xxl-3 {
        gap: 1rem !important;
    }
    .gap-xxl-4 {
        gap: 1.25rem !important;
    }
    .gap-xxl-5 {
        gap: 1.5625rem !important;
    }
    .gap-xxl-6 {
        gap: 1.875rem !important;
    }
    .gap-xxl-7 {
        gap: 2.5rem !important;
    }
    .gap-xxl-8 {
        gap: 2.8125rem !important;
    }
    .gap-xxl-9 {
        gap: 4.6875rem !important;
    }
    .gap-xxl-10 {
        gap: 6.25rem !important;
    }
    .gap-xxl-11 {
        gap: 9.375rem !important;
    }
    .justify-content-xxl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xxl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xxl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xxl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xxl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .justify-content-xxl-evenly {
        -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }
    .align-items-xxl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xxl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xxl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xxl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xxl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xxl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xxl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xxl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xxl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xxl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xxl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xxl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xxl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xxl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xxl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xxl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xxl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
    .order-xxl-first {
        -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .order-xxl-0 {
        -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }
    .order-xxl-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-xxl-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-xxl-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-xxl-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-xxl-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-xxl-last {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .m-xxl-0 {
        margin: 0 !important;
    }
    .m-xxl-1 {
        margin: 0.25rem !important;
    }
    .m-xxl-2 {
        margin: 0.5rem !important;
    }
    .m-xxl-3 {
        margin: 1rem !important;
    }
    .m-xxl-4 {
        margin: 1.25rem !important;
    }
    .m-xxl-5 {
        margin: 1.5625rem !important;
    }
    .m-xxl-6 {
        margin: 1.875rem !important;
    }
    .m-xxl-7 {
        margin: 2.5rem !important;
    }
    .m-xxl-8 {
        margin: 2.8125rem !important;
    }
    .m-xxl-9 {
        margin: 4.6875rem !important;
    }
    .m-xxl-10 {
        margin: 6.25rem !important;
    }
    .m-xxl-11 {
        margin: 9.375rem !important;
    }
    .m-xxl-auto {
        margin: auto !important;
    }
    .mx-xxl-0 {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    .mx-xxl-1 {
        margin-right: 0.25rem !important;
        margin-left: 0.25rem !important;
    }
    .mx-xxl-2 {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
    }
    .mx-xxl-3 {
        margin-right: 1rem !important;
        margin-left: 1rem !important;
    }
    .mx-xxl-4 {
        margin-right: 1.25rem !important;
        margin-left: 1.25rem !important;
    }
    .mx-xxl-5 {
        margin-right: 1.5625rem !important;
        margin-left: 1.5625rem !important;
    }
    .mx-xxl-6 {
        margin-right: 1.875rem !important;
        margin-left: 1.875rem !important;
    }
    .mx-xxl-7 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }
    .mx-xxl-8 {
        margin-right: 2.8125rem !important;
        margin-left: 2.8125rem !important;
    }
    .mx-xxl-9 {
        margin-right: 4.6875rem !important;
        margin-left: 4.6875rem !important;
    }
    .mx-xxl-10 {
        margin-right: 6.25rem !important;
        margin-left: 6.25rem !important;
    }
    .mx-xxl-11 {
        margin-right: 9.375rem !important;
        margin-left: 9.375rem !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: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }
    .my-xxl-4 {
        margin-top: 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    .my-xxl-5 {
        margin-top: 1.5625rem !important;
        margin-bottom: 1.5625rem !important;
    }
    .my-xxl-6 {
        margin-top: 1.875rem !important;
        margin-bottom: 1.875rem !important;
    }
    .my-xxl-7 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    .my-xxl-8 {
        margin-top: 2.8125rem !important;
        margin-bottom: 2.8125rem !important;
    }
    .my-xxl-9 {
        margin-top: 4.6875rem !important;
        margin-bottom: 4.6875rem !important;
    }
    .my-xxl-10 {
        margin-top: 6.25rem !important;
        margin-bottom: 6.25rem !important;
    }
    .my-xxl-11 {
        margin-top: 9.375rem !important;
        margin-bottom: 9.375rem !important;
    }
    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }
    .mt-xxl-0 {
        margin-top: 0 !important;
    }
    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }
    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }
    .mt-xxl-3 {
        margin-top: 1rem !important;
    }
    .mt-xxl-4 {
        margin-top: 1.25rem !important;
    }
    .mt-xxl-5 {
        margin-top: 1.5625rem !important;
    }
    .mt-xxl-6 {
        margin-top: 1.875rem !important;
    }
    .mt-xxl-7 {
        margin-top: 2.5rem !important;
    }
    .mt-xxl-8 {
        margin-top: 2.8125rem !important;
    }
    .mt-xxl-9 {
        margin-top: 4.6875rem !important;
    }
    .mt-xxl-10 {
        margin-top: 6.25rem !important;
    }
    .mt-xxl-11 {
        margin-top: 9.375rem !important;
    }
    .mt-xxl-auto {
        margin-top: auto !important;
    }
    .me-xxl-0 {
        margin-right: 0 !important;
    }
    .me-xxl-1 {
        margin-right: 0.25rem !important;
    }
    .me-xxl-2 {
        margin-right: 0.5rem !important;
    }
    .me-xxl-3 {
        margin-right: 1rem !important;
    }
    .me-xxl-4 {
        margin-right: 1.25rem !important;
    }
    .me-xxl-5 {
        margin-right: 1.5625rem !important;
    }
    .me-xxl-6 {
        margin-right: 1.875rem !important;
    }
    .me-xxl-7 {
        margin-right: 2.5rem !important;
    }
    .me-xxl-8 {
        margin-right: 2.8125rem !important;
    }
    .me-xxl-9 {
        margin-right: 4.6875rem !important;
    }
    .me-xxl-10 {
        margin-right: 6.25rem !important;
    }
    .me-xxl-11 {
        margin-right: 9.375rem !important;
    }
    .me-xxl-auto {
        margin-right: auto !important;
    }
    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }
    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-xxl-3 {
        margin-bottom: 1rem !important;
    }
    .mb-xxl-4 {
        margin-bottom: 1.25rem !important;
    }
    .mb-xxl-5 {
        margin-bottom: 1.5625rem !important;
    }
    .mb-xxl-6 {
        margin-bottom: 1.875rem !important;
    }
    .mb-xxl-7 {
        margin-bottom: 2.5rem !important;
    }
    .mb-xxl-8 {
        margin-bottom: 2.8125rem !important;
    }
    .mb-xxl-9 {
        margin-bottom: 4.6875rem !important;
    }
    .mb-xxl-10 {
        margin-bottom: 6.25rem !important;
    }
    .mb-xxl-11 {
        margin-bottom: 9.375rem !important;
    }
    .mb-xxl-auto {
        margin-bottom: auto !important;
    }
    .ms-xxl-0 {
        margin-left: 0 !important;
    }
    .ms-xxl-1 {
        margin-left: 0.25rem !important;
    }
    .ms-xxl-2 {
        margin-left: 0.5rem !important;
    }
    .ms-xxl-3 {
        margin-left: 1rem !important;
    }
    .ms-xxl-4 {
        margin-left: 1.25rem !important;
    }
    .ms-xxl-5 {
        margin-left: 1.5625rem !important;
    }
    .ms-xxl-6 {
        margin-left: 1.875rem !important;
    }
    .ms-xxl-7 {
        margin-left: 2.5rem !important;
    }
    .ms-xxl-8 {
        margin-left: 2.8125rem !important;
    }
    .ms-xxl-9 {
        margin-left: 4.6875rem !important;
    }
    .ms-xxl-10 {
        margin-left: 6.25rem !important;
    }
    .ms-xxl-11 {
        margin-left: 9.375rem !important;
    }
    .ms-xxl-auto {
        margin-left: auto !important;
    }
    .p-xxl-0 {
        padding: 0 !important;
    }
    .p-xxl-1 {
        padding: 0.25rem !important;
    }
    .p-xxl-2 {
        padding: 0.5rem !important;
    }
    .p-xxl-3 {
        padding: 1rem !important;
    }
    .p-xxl-4 {
        padding: 1.25rem !important;
    }
    .p-xxl-5 {
        padding: 1.5625rem !important;
    }
    .p-xxl-6 {
        padding: 1.875rem !important;
    }
    .p-xxl-7 {
        padding: 2.5rem !important;
    }
    .p-xxl-8 {
        padding: 2.8125rem !important;
    }
    .p-xxl-9 {
        padding: 4.6875rem !important;
    }
    .p-xxl-10 {
        padding: 6.25rem !important;
    }
    .p-xxl-11 {
        padding: 9.375rem !important;
    }
    .px-xxl-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-xxl-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-xxl-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-xxl-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-xxl-4 {
        padding-right: 1.25rem !important;
        padding-left: 1.25rem !important;
    }
    .px-xxl-5 {
        padding-right: 1.5625rem !important;
        padding-left: 1.5625rem !important;
    }
    .px-xxl-6 {
        padding-right: 1.875rem !important;
        padding-left: 1.875rem !important;
    }
    .px-xxl-7 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }
    .px-xxl-8 {
        padding-right: 2.8125rem !important;
        padding-left: 2.8125rem !important;
    }
    .px-xxl-9 {
        padding-right: 4.6875rem !important;
        padding-left: 4.6875rem !important;
    }
    .px-xxl-10 {
        padding-right: 6.25rem !important;
        padding-left: 6.25rem !important;
    }
    .px-xxl-11 {
        padding-right: 9.375rem !important;
        padding-left: 9.375rem !important;
    }
    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    .py-xxl-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    .py-xxl-5 {
        padding-top: 1.5625rem !important;
        padding-bottom: 1.5625rem !important;
    }
    .py-xxl-6 {
        padding-top: 1.875rem !important;
        padding-bottom: 1.875rem !important;
    }
    .py-xxl-7 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .py-xxl-8 {
        padding-top: 2.8125rem !important;
        padding-bottom: 2.8125rem !important;
    }
    .py-xxl-9 {
        padding-top: 4.6875rem !important;
        padding-bottom: 4.6875rem !important;
    }
    .py-xxl-10 {
        padding-top: 6.25rem !important;
        padding-bottom: 6.25rem !important;
    }
    .py-xxl-11 {
        padding-top: 9.375rem !important;
        padding-bottom: 9.375rem !important;
    }
    .pt-xxl-0 {
        padding-top: 0 !important;
    }
    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }
    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }
    .pt-xxl-3 {
        padding-top: 1rem !important;
    }
    .pt-xxl-4 {
        padding-top: 1.25rem !important;
    }
    .pt-xxl-5 {
        padding-top: 1.5625rem !important;
    }
    .pt-xxl-6 {
        padding-top: 1.875rem !important;
    }
    .pt-xxl-7 {
        padding-top: 2.5rem !important;
    }
    .pt-xxl-8 {
        padding-top: 2.8125rem !important;
    }
    .pt-xxl-9 {
        padding-top: 4.6875rem !important;
    }
    .pt-xxl-10 {
        padding-top: 6.25rem !important;
    }
    .pt-xxl-11 {
        padding-top: 9.375rem !important;
    }
    .pe-xxl-0 {
        padding-right: 0 !important;
    }
    .pe-xxl-1 {
        padding-right: 0.25rem !important;
    }
    .pe-xxl-2 {
        padding-right: 0.5rem !important;
    }
    .pe-xxl-3 {
        padding-right: 1rem !important;
    }
    .pe-xxl-4 {
        padding-right: 1.25rem !important;
    }
    .pe-xxl-5 {
        padding-right: 1.5625rem !important;
    }
    .pe-xxl-6 {
        padding-right: 1.875rem !important;
    }
    .pe-xxl-7 {
        padding-right: 2.5rem !important;
    }
    .pe-xxl-8 {
        padding-right: 2.8125rem !important;
    }
    .pe-xxl-9 {
        padding-right: 4.6875rem !important;
    }
    .pe-xxl-10 {
        padding-right: 6.25rem !important;
    }
    .pe-xxl-11 {
        padding-right: 9.375rem !important;
    }
    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }
    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-xxl-3 {
        padding-bottom: 1rem !important;
    }
    .pb-xxl-4 {
        padding-bottom: 1.25rem !important;
    }
    .pb-xxl-5 {
        padding-bottom: 1.5625rem !important;
    }
    .pb-xxl-6 {
        padding-bottom: 1.875rem !important;
    }
    .pb-xxl-7 {
        padding-bottom: 2.5rem !important;
    }
    .pb-xxl-8 {
        padding-bottom: 2.8125rem !important;
    }
    .pb-xxl-9 {
        padding-bottom: 4.6875rem !important;
    }
    .pb-xxl-10 {
        padding-bottom: 6.25rem !important;
    }
    .pb-xxl-11 {
        padding-bottom: 9.375rem !important;
    }
    .ps-xxl-0 {
        padding-left: 0 !important;
    }
    .ps-xxl-1 {
        padding-left: 0.25rem !important;
    }
    .ps-xxl-2 {
        padding-left: 0.5rem !important;
    }
    .ps-xxl-3 {
        padding-left: 1rem !important;
    }
    .ps-xxl-4 {
        padding-left: 1.25rem !important;
    }
    .ps-xxl-5 {
        padding-left: 1.5625rem !important;
    }
    .ps-xxl-6 {
        padding-left: 1.875rem !important;
    }
    .ps-xxl-7 {
        padding-left: 2.5rem !important;
    }
    .ps-xxl-8 {
        padding-left: 2.8125rem !important;
    }
    .ps-xxl-9 {
        padding-left: 4.6875rem !important;
    }
    .ps-xxl-10 {
        padding-left: 6.25rem !important;
    }
    .ps-xxl-11 {
        padding-left: 9.375rem !important;
    }
    .text-xxl-start {
        text-align: left !important;
    }
    .text-xxl-end {
        text-align: right !important;
    }
    .text-xxl-center {
        text-align: center !important;
    }
}
@media (min-width: 1200px) {
    .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 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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
    .d-print-none {
        display: none !important;
    }
}
.form-label {
    margin-bottom: 0.5rem;
}
.col-form-label {
    padding-top: calc(1rem + 1px);
    padding-bottom: calc(1rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 20px;
}
.col-form-label-lg {
    padding-top: calc(1.1rem + 1px);
    padding-bottom: calc(1.1rem + 1px);
    font-size: 1rem;
}
.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
}
.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #6c757d;
}
.form-control {
    display: block;
    width: 100%;
    padding: 1rem 1rem;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 43, 107, 0.8);
    background-color: rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border: 1px solid rgba(0, 43, 107, 0.12);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control[type="file"] {
    overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control:focus {
    color: rgba(0, 43, 107, 0.8);
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 43, 107, 0.12);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-control::-webkit-date-and-time-value {
    height: 20px;
}
.form-control::-webkit-input-placeholder {
    color: rgba(0, 43, 107, 0.8);
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: rgba(0, 43, 107, 0.8);
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: rgba(0, 43, 107, 0.8);
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: rgba(0, 43, 107, 0.8);
    opacity: 1;
}
.form-control::placeholder {
    color: rgba(0, 43, 107, 0.8);
    opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
.form-control::file-selector-button {
    padding: 1rem 1rem;
    margin: -1rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::file-selector-button {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
    padding: 1rem 1rem;
    margin: -1rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}
.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 1rem 0;
    margin-bottom: 0;
    line-height: 20px;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}
.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0;
}
.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}
.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: 1.1rem 1.2rem;
    font-size: 1rem;
    border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
    padding: 1.1rem 1.2rem;
    margin: -1.1rem -1.2rem;
    -webkit-margin-end: 1.2rem;
    margin-inline-end: 1.2rem;
}
.form-control-lg::-webkit-file-upload-button {
    padding: 1.1rem 1.2rem;
    margin: -1.1rem -1.2rem;
    -webkit-margin-end: 1.2rem;
    margin-inline-end: 1.2rem;
}
textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
    width: 3rem;
    height: auto;
    padding: 1rem;
}
.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}
.form-control-color::-moz-color-swatch {
    height: 20px;
    border-radius: 2px;
}
.form-control-color::-webkit-color-swatch {
    height: 20px;
    border-radius: 2px;
}
.form-select {
    display: block;
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    -moz-padding-start: calc(1rem - 3px);
    font-family: "Helvetica Neue", sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 20px;
    color: rgba(0, 43, 107, 0.8);
    background-color: rgba(0, 0, 0, 0);
    background-image: url("data:image/svg+xml,%3csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1.5L4 4.5L7 1.5' stroke='%23002b6b' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 8px 5px;
    border: 1px solid rgba(0, 43, 107, 0.12);
    border-radius: 2px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-select {
        -webkit-transition: none;
        transition: none;
    }
}
.form-select:focus {
    border-color: rgba(0, 43, 107, 0.12);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 1rem;
    background-image: none;
}
.form-select:disabled {
    background-color: #e9ecef;
}
.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 rgba(0, 43, 107, 0.8);
}
.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.form-select-lg {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}
.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: 0.125rem;
}
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
}
.form-check-input[type="radio"] {
    border-radius: 50%;
}
.form-check-input:active {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
}
.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.form-check-input:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
    pointer-events: none;
    -webkit-filter: none;
    filter: none;
    opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
    opacity: 0.5;
}
.form-switch {
    padding-left: 2.5em;
}
.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    -webkit-transition: background-position 0.15s ease-in-out;
    transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-switch .form-check-input {
        -webkit-transition: none;
        transition: none;
    }
}
.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}
.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
    pointer-events: none;
    -webkit-filter: none;
    filter: none;
    opacity: 0.65;
}
.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-range:focus {
    outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
    border: 0;
}
.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}
.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}
.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe;
}
.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.form-range:disabled {
    pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}
.form-floating {
    position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        -webkit-transition: none;
        transition: none;
    }
}
.form-floating > .form-control {
    padding: 1rem 0.75rem;
}
.form-floating > .form-control::-webkit-input-placeholder {
    color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
    color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
    color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
    color: transparent;
}
.form-floating > .form-control::placeholder {
    color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
    z-index: 3;
}
.input-group .btn {
    position: relative;
    z-index: 2;
}
.input-group .btn:focus {
    z-index: 3;
}
.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 20px;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 2px;
}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    padding: 1.1rem 1.2rem;
    font-size: 1rem;
    border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-right: 4rem;
}
.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}
.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(25, 135, 84, 0.9);
    border-radius: 0.25rem;
}
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
    display: block;
}
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
    border-color: #198754;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:valid,
.form-select.is-valid {
    border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1.5L4 4.5L7 1.5' stroke='%23002b6b' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right 1rem center, center right 2.25rem;
    background-size: 8px 5px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
    border-color: #198754;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid,
.form-check-input.is-valid {
    border-color: #198754;
}
.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
    background-color: #198754;
}
.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
    color: #198754;
}
.form-check-inline .form-check-input ~ .valid-feedback {
    margin-left: 0.5em;
}
.was-validated .input-group .form-control:valid,
.input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
    z-index: 1;
}
.was-validated .input-group .form-control:valid:focus,
.input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
    z-index: 3;
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}
.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem;
}
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
    display: block;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.was-validated .form-select:invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1.5L4 4.5L7 1.5' stroke='%23002b6b' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e"),
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-position: right 1rem center, center right 2.25rem;
    background-size: 8px 5px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
    border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
    background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
    -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-left: 0.5em;
}
.was-validated .input-group .form-control:invalid,
.input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
    z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus,
.input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
    z-index: 3;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
.modal-dialog-scrollable {
    height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
    margin: 0.25rem;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-sm {
        max-width: 300px;
    }
}
@media (min-width: 1024px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 1440px) {
    .modal-xl {
        max-width: 1140px;
    }
}
.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-header {
    border-radius: 0;
}
.modal-fullscreen .modal-body {
    overflow-y: auto;
}
.modal-fullscreen .modal-footer {
    border-radius: 0;
}
@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-header {
        border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }
    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }
}
@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-header {
        border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }
}
@media (max-width: 1023.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-header {
        border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }
    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }
}
@media (max-width: 1439.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-header {
        border-radius: 0;
    }
    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }
    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }
}
@media (max-width: 1599.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-header {
        border-radius: 0;
    }
    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }
    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }
}
.btn-close {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
        center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}
.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}
.btn-close:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    opacity: 1;
}
.btn-close:disabled,
.btn-close.disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.25;
}
.btn-close-white {
    -webkit-filter: invert(1) grayscale(100%) brightness(200%);
    filter: invert(1) grayscale(100%) brightness(200%);
}
.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none;
}
.collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none;
    }
}
.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    -webkit-transition: width 0.35s ease;
    transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        -webkit-transition: none;
        transition: none;
    }
}
@font-face {
    font-family: "swiper-icons";
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
        format("woff");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/helveticaneue.woff2") format("woff2"), url("../fonts/helveticaneue.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/helveticaneue-light.woff2") format("woff2"), url("../fonts/helveticaneue-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Helvetica Neue";
    src: url("../fonts/helveticaneue-medium.woff2") format("woff2"), url("../fonts/helveticaneue-medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
input:hover,
input:focus,
select:hover,
select:focus,
textarea:hover,
textarea:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
html,
body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
    background: #fff;
}
.page-wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.page-wrapper.page-wrapper-article {
    overflow: visible;
}
.page-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}
.page-footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    --bs-gutter-x: 12px;
    max-width: 1376px;
}
@media (min-width: 1440px) {
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 40px;
    }
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.banner img {
    display: block;
    width: 100%;
    height: auto;
}
.banner + * {
    margin-top: 0 !important;
}
@media (min-width: 1024px) {
    .banner.banner-top img {
        max-height: 680px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
}
.border-top,
.block-contacts .container-fluid > .row:nth-child(2),
.block-contacts .container-sm > .row:nth-child(2),
.block-contacts .container-md > .row:nth-child(2),
.block-contacts .container-lg > .row:nth-child(2),
.block-contacts .container-xl > .row:nth-child(2),
.block-contacts .container-xxl > .row:nth-child(2),
.block-contacts .contacts-info .row > div:last-child .item,
.border-bottom {
    border-color: #e8e8eb !important;
}
div .tag {
    border: 1px solid #e0e0e1;
    padding: 0 8px 1px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 30px;
    height: 26px;
    font-size: 12px;
    line-height: 14px;
    text-transform: capitalize;
    margin: 0 0 12px;
}
@media (min-width: 1024px) {
    div .tag {
        font-size: 14px;
        line-height: 17px;
        height: 29px;
        padding: 0 10px 1px;
        margin: 0 0 42px;
    }
}
.wpcf7-response-output {
    display: none !important;
}
.btn-fixed {
    background: #d1003f;
    width: 45px;
    height: 45px;
    border-radius: 99px;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-fixed img {
    display: block;
    width: 24px;
    height: auto;
}
body {
    color: #000;
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 400;
}
input,
select,
textarea,
button {
    font-family: "Helvetica Neue", sans-serif;
}
p,
ol,
ul,
dl {
    margin: 0;
}
.font-1,
body {
    font-size: 14px;
    line-height: 18px;
}
@media (min-width: 1024px) {
    .font-1,
    body {
        font-size: 16px;
        line-height: 22px;
    }
}
.font-2 {
    font-size: 14px;
    line-height: 18px;
}
@media (min-width: 1024px) {
    .font-2 {
        font-size: 16px;
        line-height: 1.15;
    }
}
.font-3 {
    font-size: 16px;
    line-height: 19px;
}
@media (min-width: 1024px) {
    .font-3 {
        font-size: 20px;
        line-height: 26px;
    }
}
@media (min-width: 1600px) {
    .font-3 {
        font-size: 24px;
        line-height: 30px;
    }
}
.font-4 {
    font-size: 16px;
    line-height: 19px;
}
@media (min-width: 1024px) {
    .font-4 {
        font-size: 22px;
        line-height: 28px;
    }
}
@media (min-width: 1600px) {
    .font-4 {
        font-size: 28px;
        line-height: 33px;
    }
}
.font-5 {
    font-size: 16px;
    line-height: normal;
}
@media (min-width: 1024px) {
    .font-5 {
        font-size: 18px;
    }
}
@media (min-width: 1600px) {
    .font-5 {
        font-size: 20px;
        line-height: 25px;
    }
}
.font-6 {
    font-size: 16px;
    line-height: 19px;
}
@media (min-width: 1024px) {
    .font-6 {
        font-size: 22px;
        line-height: 28px;
    }
}
@media (min-width: 1600px) {
    .font-6 {
        font-size: 30px;
        line-height: 1.2;
    }
}
.font-7 {
    font-size: 16px;
    line-height: 1.16;
}
@media (min-width: 1024px) {
    .font-7 {
        font-size: 20px;
    }
}
@media (min-width: 1600px) {
    .font-7 {
        font-size: 26px;
    }
}
h5,
.h5 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}
@media (min-width: 1024px) {
    h5,
    .h5 {
        font-size: 20px;
        line-height: 26px;
    }
}
.spacing-1 {
    padding: 9px 0 70px;
}
.spacing-1 .row {
    --bs-gutter-y: 25px;
}
@media (min-width: 1024px) {
    .spacing-1 {
        padding: 35px 0 107px;
    }
}
.spacing-2 {
    padding: 24px 0 100px;
}
.spacing-2 .row {
    --bs-gutter-y: 25px;
}
@media (min-width: 1024px) {
    .spacing-2 {
        padding: 40px 0 110px;
    }
}
.spacing-3 {
    padding: 0 0 72px;
}
.spacing-3 .row {
    --bs-gutter-y: 29px;
}
@media (min-width: 1024px) {
    .spacing-3 {
        padding: 0 0 110px;
    }
}
@media (min-width: 1440px) {
    .spacing-3 {
        padding: 0 0 212px;
    }
}
.spacing-4 {
    padding: 8px 0 78px;
    margin: 0 0 12px;
}
.spacing-4 .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0;
}
@media (min-width: 1024px) {
    .spacing-4 {
        padding: 12px 0;
        margin: 0 0 120px;
    }
}
@media (min-width: 1440px) {
    .spacing-4 .row {
        --bs-gutter-x: 34px;
    }
}
@media (min-width: 1600px) {
    .spacing-4 {
        margin: 0 0 158px;
    }
    .spacing-4 .row {
        --bs-gutter-x: 44px;
    }
}
.spacing-5 {
    padding: 24px 0;
}
.spacing-5 .row {
    --bs-gutter-y: 98px;
}
@media (min-width: 1024px) {
    .spacing-5 {
        padding: 160px 0 157px;
    }
}
.spacing-6 {
    padding: 60px 0 57px;
}
.spacing-6 .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 28px;
    margin-bottom: 30px;
}
@media (min-width: 1024px) {
    .spacing-6 {
        padding: 160px 0;
    }
    .spacing-6 .row {
        margin-bottom: 84px;
    }
    .spacing-6 .row:first-child {
        margin-bottom: 100px;
    }
}
@media (min-width: 1024px) {
    .spacing-7 {
        margin-bottom: 100px;
    }
}
@media (min-width: 1600px) {
    .spacing-7 {
        margin-bottom: 160px;
    }
}
.spacing-8 {
    padding: 8px 0;
}
@media (min-width: 1024px) {
    .spacing-8 {
        border-top: 1px solid #e8e8eb;
        padding: 38px 0 0;
        margin: 0 0 100px;
    }
}
@media (min-width: 1600px) {
    .spacing-8 {
        margin-bottom: 160px;
    }
}
.spacing-9 {
    padding: 9px 0 70px;
}
.spacing-9 .row {
    --bs-gutter-y: 25px;
}
@media (min-width: 1024px) {
    .spacing-9 {
        padding: 40px 0 110px;
    }
}
.spacing-10 {
    padding: 0 0 72px;
}
.spacing-10 .row {
    --bs-gutter-y: 29px;
}
@media (min-width: 1024px) {
    .spacing-10 {
        padding: 0 0 110px;
    }
}
@media (min-width: 1440px) {
    .spacing-10 {
        padding: 0 0 159px;
    }
}
.spacing-11 {
    padding: 12px 0;
}
.spacing-11 .row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 24px;
}
.spacing-11 .block-title {
    margin: 0 0 100px;
}
@media (min-width: 1024px) {
    .spacing-11 {
        padding: 100px 0;
    }
}
@media (min-width: 1440px) {
    .spacing-11 {
        padding: 160px 0;
    }
    .spacing-11 .block-title {
        margin: 0 0 60px;
    }
}
.spacing-12 {
    padding: 12px 0 0;
}
.spacing-12 .block-title {
    margin: 0 0 12px;
}
@media (min-width: 1024px) {
    .spacing-12 {
        padding: 60px 0 100px;
    }
}
@media (min-width: 1440px) {
    .spacing-12 {
        padding: 60px 0 160px;
    }
    .spacing-12 .block-title {
        margin: 0 0 60px;
    }
}
.spacing-13 {
    padding: 12px 0 0;
}
.spacing-13 .block-title {
    margin: 0 0 12px;
}
@media (min-width: 1024px) {
    .spacing-13 {
        padding: 60px 0 0;
        border-bottom: 1px solid #e8e8eb;
        margin: 0 0 75px;
    }
}
@media (min-width: 1440px) {
    .spacing-13 {
        padding: 60px 0 0;
    }
    .spacing-13 .block-title {
        margin: 0 0 60px;
    }
}
@media (min-width: 1440px) {
    .spacing-14 .block-team-single-intro {
        padding-bottom: 120px;
    }
}
.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    padding: 12px 0;
}
.header .container-fluid,
.header .container-sm,
.header .container-md,
.header .container-lg,
.header .container-xl,
.header .container-xxl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: none;
}
@media (min-width: 1440px) {
    .header .container-fluid,
    .header .container-sm,
    .header .container-md,
    .header .container-lg,
    .header .container-xl,
    .header .container-xxl {
        --bs-gutter-x: 12px;
    }
}
.header .header-panel {
    background: rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(45px);
    backdrop-filter: blur(45px);
    border-radius: 99px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4px 6px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.header .header-panel:hover {
    background: #f4f5f7;
}
.header .header-panel--logo .logo {
    width: 67px;
    margin: 0 0 0 11px;
}
.header .header-panel--logo .logo img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}
.header .header-panel--meta .search-wrapper .search-form {
    background: #f4f5f7;
    border-radius: 30px;
}
.header .header-panel--meta .search-wrapper .search-form input {
    background: none;
    border: none;
    width: 100%;
    display: block;
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 17px 12px;
    font-size: 15px;
    line-height: 20px;
    color: #000;
}
.header .header-panel--meta .search-wrapper .search-form input::-webkit-input-placeholder {
    color: #999;
    opacity: 1;
}
.header .header-panel--meta .search-wrapper .search-form input:-moz-placeholder {
    color: #999;
    opacity: 1;
}
.header .header-panel--meta .search-wrapper .search-form input::-moz-placeholder {
    color: #999;
    opacity: 1;
}
.header .header-panel--meta .search-wrapper .search-form input:-ms-input-placeholder {
    color: #999;
    opacity: 1;
}
.header .header-panel--meta .search-wrapper .search-form button {
    display: none;
}
@media (max-width: 1023.98px) {
    .header .header-panel--logo {
        width: 100%;
        max-width: 300px;
        position: relative;
        z-index: 2;
    }
    .header .header-panel--navigation {
        background: rgba(0, 0, 0, 0.28);
        border-radius: 0;
        padding: 6px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 100vh;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        padding: 60px 12px 0;
        display: block;
    }
    .header .header-panel--navigation.active {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .header .header-panel--navigation .main-navigation {
        background-color: #fff;
        border-radius: 2px;
        padding: 6px;
    }
    .header .header-panel--navigation .main-navigation ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .header .header-panel--navigation .main-navigation ul li {
        border-top: 1px solid #e8e8eb;
        padding: 4px 0;
    }
    .header .header-panel--navigation .main-navigation ul li:first-child {
        border: none;
    }
    .header .header-panel--navigation .main-navigation ul li a {
        display: block;
        padding: 12px 16px;
        background-color: #fff;
        font-size: 16px;
        line-height: 19px;
        border-radius: 2px;
    }
    .header .header-panel--navigation .main-navigation ul li.current-menu-item a,
    .header .header-panel--navigation .main-navigation ul li:hover a {
        color: #fff;
        background-color: #000;
    }
    .header .header-panel--meta {
        background: none !important;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        padding: 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .header .header-panel--meta .search-wrapper .search-form {
        position: absolute;
        left: 12px;
        top: 12px;
        width: calc(100% - 120px);
        height: 42px;
        display: none;
        z-index: 9;
    }
    .header .header-panel--meta .search-wrapper .search-form.active {
        display: block;
    }
    .header .header-panel--meta .lang-wrapper {
        display: none;
    }
    .header .header-panel--meta .search-trigger,
    .header .header-panel--meta .nav-trigger {
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.22);
        -webkit-backdrop-filter: blur(45px);
        backdrop-filter: blur(45px);
        border-radius: 100%;
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: 6px;
    }
    .header .header-panel--meta .search-trigger img,
    .header .header-panel--meta .nav-trigger img {
        display: block;
    }
    .header .header-panel--meta .search-trigger img.trigger-close,
    .header .header-panel--meta .nav-trigger img.trigger-close {
        display: none;
    }
    .header .header-panel--meta .search-trigger:hover,
    .header .header-panel--meta .nav-trigger:hover {
        background: #f4f5f7;
    }
    .header .header-panel--meta .search-trigger.active,
    .header .header-panel--meta .nav-trigger.active {
        background: #f4f5f7;
    }
    .header .header-panel--meta .search-trigger.active img.trigger-base,
    .header .header-panel--meta .nav-trigger.active img.trigger-base {
        display: none;
    }
    .header .header-panel--meta .search-trigger.active img.trigger-close,
    .header .header-panel--meta .nav-trigger.active img.trigger-close {
        display: block;
    }
    .header .header-panel--meta .nav-trigger {
        position: relative;
    }
}
@media (min-width: 1024px) {
    .header .header-panel--logo {
        width: 220px;
    }
    .header .header-panel--navigation {
        padding: 6px;
        margin: 0 12px;
    }
    .header .header-panel--navigation .main-navigation ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .header .header-panel--navigation .main-navigation ul li {
        position: relative;
        padding: 0 6px;
    }
    .header .header-panel--navigation .main-navigation ul li:first-child {
        padding-left: 0;
    }
    .header .header-panel--navigation .main-navigation ul li:last-child {
        padding-right: 0;
    }
    .header .header-panel--navigation .main-navigation ul li:last-child:after {
        display: none;
    }
    .header .header-panel--navigation .main-navigation ul li:after {
        content: "";
        width: 1px;
        height: 9px;
        background-color: rgba(0, 0, 0, 0.08);
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .header .header-panel--navigation .main-navigation ul li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 75px;
        height: 30px;
        border-radius: 30px;
        font-size: 15px;
        text-transform: capitalize;
    }
    .header .header-panel--navigation .main-navigation ul li.current-menu-item a {
        background-color: #04a;
        color: #fff;
    }
    .header .header-panel--meta .search-wrapper .search-trigger {
        display: none;
    }
    .header .header-panel--meta .search-wrapper .search-form {
        background: transparent;
        border-radius: 30px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
    }
    .header .header-panel--meta .search-wrapper .search-form input {
        padding: 5px 17px;
        font-size: 15px;
        line-height: 18px;
        color: #000;
    }
    .header .header-panel--meta .search-wrapper .search-form input::-webkit-input-placeholder {
        color: #000;
        opacity: 1;
    }
    .header .header-panel--meta .search-wrapper .search-form input:-moz-placeholder {
        color: #000;
        opacity: 1;
    }
    .header .header-panel--meta .search-wrapper .search-form input::-moz-placeholder {
        color: #000;
        opacity: 1;
    }
    .header .header-panel--meta .search-wrapper .search-form input:-ms-input-placeholder {
        color: #000;
        opacity: 1;
    }
    .header .header-panel--meta .search-wrapper .search-form button {
        display: block;
        background: none;
        border: none;
        position: absolute;
        right: 18px;
        top: 50%;
        -webkit-transform: translateY(-55%);
        transform: translateY(-55%);
        padding: 0;
    }
    .header .header-panel--meta .nav-trigger {
        display: none;
    }
    .header .header-panel--meta .lang-wrapper {
        position: relative;
        margin-left: 12px;
    }
    .header .header-panel--meta .lang-wrapper .lang-current {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: none;
        border-radius: 30px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        height: 30px;
        padding: 0 18px;
    }
    .header .header-panel--meta .lang-wrapper .lang-current:after {
        content: "";
        display: block;
        width: 24px;
        height: 12px;
        background: url(../img/icons/ico-arrow-down.svg) right center no-repeat;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        margin-left: 18px;
    }
    .header .header-panel--meta .lang-wrapper ul {
        position: absolute;
        left: 0;
        top: 100%;
        right: 0;
        background: #fff;
        border-radius: 20px;
        padding: 18px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0;
        list-style: none;
        line-height: 2;
        display: none;
    }
    .header .header-panel--meta .lang-wrapper:hover ul {
        display: block;
    }
}
@media (min-width: 1440px) {
    .header .header-panel--logo {
        width: 120px;
    }
    .header .header-panel--logo .logo {
        width: 80px;
        margin: 0 0 0 14px;
    }
    .header .header-panel--logo .btn.btn-red {
        height: 30px;
        font-size: 15px;
        padding: 0 27px;
    }
    .header .header-panel--navigation {
        margin: 0;
    }
    .header .header-panel--navigation .main-navigation ul li {
        padding: 0 8px;
    }
    .header .header-panel--navigation .main-navigation ul li a {
        width: 100px;
    }
    .header .header-panel--meta .search-wrapper {
        width: 184px;
    }
    .header .header-panel--meta .lang-wrapper {
        width: 104px;
    }
}
@media (min-width: 1600px) {
    .header .header-panel--navigation {
        margin: 0;
    }
    .header .header-panel--navigation .main-navigation ul li a {
        width: 122px;
    }
}
.page-footer {
    background: #000;
    color: #fff;
    overflow: hidden;
}
.page-footer a:hover {
    color: #fff;
}
.page-footer .footer-main {
    padding: 28px 0 177px;
    position: relative;
}
.page-footer .footer-main .clutch-block {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 28px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.page-footer .footer-main .clutch-block a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #dcdcde;
    font-size: 12px;
}
.page-footer .footer-main .clutch-block a .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 66.66%;
}
.page-footer .footer-main .clutch-block img {
    max-width: 100%;
    height: auto;
    width: auto;
}
.page-footer .footer-main .subscription {
    margin: 0 0 40px;
}
.page-footer .footer-main .subscription p {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 35px;
}
.page-footer .footer-main .subscription .fields {
    position: relative;
    border-radius: 2px 0px 0px 2px;
    border: 1px solid #333;
    padding: 0 132px 0 0;
}
.page-footer .footer-main .subscription .fields .submit {
    position: absolute;
    top: -1px;
    bottom: -1px;
    right: 0;
}
.page-footer .footer-main .subscription .fields .submit:hover .btn-text {
    opacity: 0;
}
.page-footer .footer-main .subscription .fields .submit:hover .btn {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.page-footer .footer-main .subscription .fields .btn-text {
    height: 100%;
    width: 132px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    background-color: #292929;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.page-footer .footer-main .subscription .fields .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    opacity: 0;
    border: none;
    border-radius: 0;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.page-footer .footer-main .subscription .fields input {
    color: #fff;
    padding: 13px 20px;
}
.page-footer .footer-main .subscription .fields input::-webkit-input-placeholder {
    color: #565657;
    opacity: 1;
}
.page-footer .footer-main .subscription .fields input:-moz-placeholder {
    color: #565657;
    opacity: 1;
}
.page-footer .footer-main .subscription .fields input::-moz-placeholder {
    color: #565657;
    opacity: 1;
}
.page-footer .footer-main .subscription .fields input:-ms-input-placeholder {
    color: #565657;
    opacity: 1;
}
.page-footer .footer-main .subscription .fields .wpcf7-form-control-wrap {
    position: static;
}
.page-footer .footer-main .subscription .fields .wpcf7-not-valid-tip {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    right: 0;
    font-size: 0.8em;
}
.page-footer .footer-main .flex-md-row-reverse {
    --bs-gutter-y: 30px;
}
.page-footer .footer-main dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    line-height: 1.25;
    margin: 0 0 20px;
}
.page-footer .footer-main dl dt {
    width: 40%;
    font-weight: 400;
}
.page-footer .footer-main dl dd {
    width: 60%;
}
.page-footer .footer-main dl .socials {
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-footer .footer-main dl .socials li {
    margin: 0 0 8px;
}
.page-footer .footer-main dl .socials li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    background-color: #292929;
    border-radius: 30px;
}
.page-footer .footer-main dl .socials li a:hover {
    color: #fff;
    opacity: 0.9;
}
.page-footer .footer-bottom {
    background: #121212;
    padding: 13px 0;
    font-size: 10px;
}
.page-footer .footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.page-footer .footer-bottom .copyright p:after {
    content: "|";
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}
.page-footer .footer-bottom .copyright a {
    margin: 0 15px 0 0;
}
.page-footer .footer-bottom .copyright a:hover {
    color: #fff;
}
@media (min-width: 768px) {
    .page-footer .footer-main {
        padding: 40px 0 90px;
    }
    .page-footer .footer-main .clutch-block {
        position: static;
        padding: 18px 20px;
        width: 199px;
    }
    .page-footer .footer-main .clutch-block a {
        color: #d0d0d0;
        font-size: 14px;
    }
    .page-footer .footer-main .clutch-block a .text {
        display: block;
        width: auto;
    }
    .page-footer .footer-main .clutch-block a .text img {
        display: block;
        margin: 0 0 5px;
    }
    .page-footer .footer-main dl {
        font-size: 14px;
        margin: 0;
        min-height: 72px;
    }
    .page-footer .footer-main dl dt {
        width: 50%;
    }
    .page-footer .footer-main dl dd {
        width: 50%;
    }
    .page-footer .footer-main dl .socials {
        padding: 7px 0 0;
    }
    .page-footer .footer-main dl .socials li {
        margin: 0 0 2px;
    }
    .page-footer .footer-main dl .socials li a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: auto;
        padding: 0;
        background-color: transparent;
        border-radius: 0;
    }
    .page-footer .footer-bottom {
        color: #d0d0d0;
        padding: 11px 0;
        font-size: 12px;
    }
    .page-footer .footer-bottom nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: 695px;
    }
}
@media (min-width: 1440px) {
    .page-footer .footer-main {
        padding: 75px 0 123px;
    }
    .page-footer .footer-main .subscription {
        margin: 0 0 139px;
    }
    .page-footer .footer-main .subscription p {
        font-size: 21px;
        line-height: 1.2;
        margin: 0 0 50px;
    }
    .page-footer .footer-main .subscription .fields {
        padding: 0 144px 0 0;
        max-width: 624px;
    }
    .page-footer .footer-main .subscription .fields .btn-text {
        width: 144px;
        font-size: 16px;
    }
    .page-footer .footer-main .subscription .fields input {
        padding: 16px 20px;
        font-size: 16px;
    }
    .page-footer .footer-main .flex-md-row-reverse {
        --bs-gutter-y: 30px;
    }
    .page-footer .footer-main dl {
        font-size: 20px;
    }
    .page-footer .footer-bottom {
        padding: 8px 0;
        font-size: 14px;
    }
}
@media (min-width: 1600px) {
    .page-footer .footer-main dl {
        font-size: 20px;
    }
    .page-footer .footer-main dl dt {
        width: 100%;
    }
    .page-footer .footer-main dl dd {
        width: 41%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .page-footer .footer-main .row > div:first-child dl dd {
        width: 204px;
    }
    .page-footer .footer-bottom {
        padding: 8px 0;
        font-size: 14px;
    }
    .page-footer .footer-bottom .copyright p:after {
        margin: 0 14px;
    }
    .page-footer .footer-bottom .copyright a {
        margin: 0 30px 0 0;
    }
    .page-footer .footer-bottom .copyright a:last-child {
        margin: 0;
    }
    .page-footer .footer-bottom nav ul {
        padding: 0 0 0 50px;
        max-width: 740px;
    }
}
.block-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    background-color: #e8e8eb;
    border-radius: 30px;
    padding: 8px 20px 8px 8px;
}
.block-title span {
    width: 28px;
    height: 28px;
    background: #f7f8fa;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 14px 0 0;
    font-size: 14px;
    line-height: 17px;
}
.block-title .block-title-amount {
    position: absolute;
    top: 0;
    left: calc(100% + 10px);
    font-size: 14px;
    line-height: 17px;
    color: #999;
}
.block-title--red {
    background-color: #f0e6e9;
    color: #d1003f;
}
.block-title--blue {
    background-color: #dee3ec;
    color: #04a;
}
@media (min-width: 768px) {
    .block-title {
        font-size: 20px;
        line-height: 24px;
    }
}
@media (min-width: 1440px) {
    .block-title {
        padding: 8.5px 20px 8.5px 8px;
        font-size: 24px;
        line-height: 30px;
    }
    .block-title span {
        width: 29px;
        height: 29px;
        margin: 0 12px 0 0;
    }
}
a,
button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    text-decoration: none;
    cursor: pointer;
}
a:hover,
button:hover {
    text-decoration: none;
}
a:focus,
button:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn {
    width: auto;
    height: 34px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    border: none;
    border-radius: 30px;
    padding: 0 18px;
    white-space: nowrap;
    text-align: center;
}
.btn.btn-red {
    background-color: #d1003f;
    color: #fff;
}
.btn.btn-red:hover {
    background-color: #d1003f;
    color: #fff;
}
.btn.btn-red:active {
    background-color: #d1003f;
    color: #fff;
}
.btn.btn-arrow-red {
    height: 50px;
    background-color: #f4f5f7;
    color: #000;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    padding: 0 18px;
    position: relative;
}
.btn.btn-arrow-red:before {
    content: "";
    width: 1px;
    height: 9px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 54px;
}
.btn.btn-arrow-red .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #d1003f;
    margin-left: 40px;
}
.btn.btn-arrow-red .icon svg {
    display: block;
    width: 4px;
    height: 6px;
}
.btn.btn-arrow-red .icon svg path {
    stroke: #f4f5f7;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn.btn-arrow-red:hover,
.btn.btn-arrow-red.active,
.btn.btn-arrow-red.btn-solid {
    background-color: #d1003f;
    color: #fff;
}
.btn.btn-arrow-red:hover:before,
.btn.btn-arrow-red.active:before,
.btn.btn-arrow-red.btn-solid:before {
    background-color: rgba(255, 255, 255, 0.33);
}
.btn.btn-arrow-red:hover .icon,
.btn.btn-arrow-red.active .icon,
.btn.btn-arrow-red.btn-solid .icon {
    background-color: #fff;
}
.btn.btn-arrow-red:hover .icon svg path,
.btn.btn-arrow-red.active .icon svg path,
.btn.btn-arrow-red.btn-solid .icon svg path {
    stroke: #d1003f;
}
@media (min-width: 1024px) {
    .btn.btn-arrow-red {
        height: 60px;
        padding: 0 25px;
        font-size: 16px;
        line-height: 20px;
    }
    .btn.btn-arrow-red:before {
        right: 74px;
    }
    .btn.btn-arrow-red .icon {
        width: 24px;
        height: 24px;
        margin-left: 50px;
    }
    .btn.btn-arrow-red .icon svg {
        width: 5px;
        height: 8px;
    }
    .btn.btn-arrow-red.btn-lg {
        height: 72px;
        padding: 0 30px;
        font-size: 19px;
        line-height: 19px;
    }
    .btn.btn-arrow-red.btn-lg:before {
        right: 84px;
    }
    .btn.btn-arrow-red.btn-lg .icon {
        width: 30px;
        height: 30px;
        margin-left: 60px;
    }
    .btn.btn-arrow-red.btn-lg .icon svg {
        width: 6px;
        height: 10px;
    }
}
.btn.btn-arrow-blue {
    height: 50px;
    background-color: #f4f5f7;
    color: #000;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    padding: 0 18px;
    position: relative;
}
.btn.btn-arrow-blue:before {
    content: "";
    width: 1px;
    height: 9px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 54px;
}
.btn.btn-arrow-blue .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #04a;
    margin-left: 40px;
}
.btn.btn-arrow-blue .icon svg {
    display: block;
    width: 4px;
    height: 6px;
}
.btn.btn-arrow-blue .icon svg path {
    stroke: #f4f5f7;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn.btn-arrow-blue:hover,
.btn.btn-arrow-blue.active {
    background-color: #04a;
    color: #fff;
}
.btn.btn-arrow-blue:hover:before,
.btn.btn-arrow-blue.active:before {
    background-color: rgba(255, 255, 255, 0.33);
}
.btn.btn-arrow-blue:hover .icon,
.btn.btn-arrow-blue.active .icon {
    background-color: #fff;
}
.btn.btn-arrow-blue:hover .icon svg path,
.btn.btn-arrow-blue.active .icon svg path {
    stroke: #04a;
}
@media (min-width: 1024px) {
    .btn.btn-arrow-blue {
        height: 60px;
        padding: 0 25px;
        font-size: 16px;
        line-height: 20px;
    }
    .btn.btn-arrow-blue:before {
        right: 74px;
    }
    .btn.btn-arrow-blue .icon {
        width: 24px;
        height: 24px;
        margin-left: 50px;
    }
    .btn.btn-arrow-blue .icon svg {
        width: 5px;
        height: 8px;
    }
    .btn.btn-arrow-blue.btn-lg {
        height: 72px;
        padding: 0 30px;
        font-size: 19px;
        line-height: 19px;
    }
    .btn.btn-arrow-blue.btn-lg:before {
        right: 84px;
    }
    .btn.btn-arrow-blue.btn-lg .icon {
        width: 30px;
        height: 30px;
        margin-left: 60px;
    }
    .btn.btn-arrow-blue.btn-lg .icon svg {
        width: 6px;
        height: 10px;
    }
}
.btn.btn-arrow {
    height: 50px;
    background-color: #f4f5f7;
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 0 18px;
    position: relative;
}
.btn.btn-arrow:before {
    content: "";
    width: 1px;
    height: 9px;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 39px;
}
.btn.btn-arrow .icon {
    margin-left: 40px;
}
.btn.btn-arrow .icon svg {
    display: block;
    width: 4px;
    height: 6px;
}
.btn.btn-arrow .icon svg path {
    stroke: #000;
}
@media (min-width: 1024px) {
    .btn.btn-arrow {
        height: 40px;
        padding: 0 20px;
        font-size: 16px;
        line-height: 19px;
    }
    .btn.btn-arrow .icon svg {
        width: 5px;
        height: 8px;
    }
}
.btn.btn-outline {
    height: 49px;
    border: 1px solid #dcdcde;
    color: #000;
    font-size: 14px;
    line-height: 17px;
}
.btn.btn-outline span {
    opacity: 0.5;
    margin-left: 10px;
}
.btn.btn-outline:hover {
    background-color: #f4f5f7;
    border-color: #f4f5f7;
}
@media (min-width: 1024px) {
    .btn.btn-outline {
        font-size: 16px;
    }
}
.link-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #59595a;
}
.link-arrow .icon {
    width: 16px;
    height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 16px;
    margin-top: 3px;
    border-radius: 100%;
    background: #f4f5f7;
}
.link-arrow .icon svg {
    display: block;
    width: 4px;
    height: 6px;
}
.link-arrow .icon svg path {
    stroke: #000;
}
.link-arrow:hover {
    color: inherit;
}
@media (min-width: 1024px) {
    .link-arrow {
        font-size: 16px;
        line-height: 20px;
    }
    .link-arrow .icon {
        width: 24px;
        height: 24px;
    }
    .link-arrow .icon svg {
        width: 5px;
        height: 8px;
    }
}
.content-nav {
    padding: 10px 10px 0.1px;
    margin: 100px 0 0;
    border-top: 1px solid #e8e8eb;
    border-bottom: 1px solid #e8e8eb;
}
.content-nav + .block-team-single .block-team-single-intro {
    border-top: none !important;
}
.content-nav .link-back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid #dcdcde;
    border-radius: 99px;
    height: 34px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
    color: #000;
    white-space: nowrap;
    margin: 0 0 10px;
}
.content-nav .link-back img {
    margin: 0 16px 0 0;
    display: block;
}
.content-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.content-nav ul li {
    margin: 0 10px 10px 0;
}
.content-nav ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 8px;
    border: 1px solid #e0e0e1;
    border-radius: 2px;
    height: 29px;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #000;
    white-space: nowrap;
}
.content-nav ul a:hover {
    background-color: #f4f5f7;
    border-color: #f4f5f7;
}
.content-nav--type1 ul li {
    margin: 0 12px 12px 0;
}
.content-nav--type1 ul a,
.content-nav--type1 ul button {
    padding: 0 16px;
    border: 1px solid #dcdcde;
    border-radius: 99px;
    height: 34px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: none;
    color: #000;
    white-space: nowrap;
    background: none;
}
.content-nav--type1 ul a:hover,
.content-nav--type1 ul a.active,
.content-nav--type1 ul button:hover,
.content-nav--type1 ul button.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}
@media (min-width: 1440px) {
    .content-nav {
        padding: 11px 40px 12px;
        margin: 145px 0 0;
    }
    .content-nav .link-back {
        padding: 0 25px;
        height: 39px;
        font-size: 16px;
        margin: 0;
    }
    .content-nav .link-back img {
        margin: 0 26px 0 0;
    }
    .content-nav ul {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .content-nav ul li {
        margin: 0 10.5px 0 0;
    }
    .content-nav ul a {
        padding: 1px 10px;
    }
    .content-nav--type1 ul a,
    .content-nav--type1 ul button {
        padding: 0 25px;
        height: 39px;
        font-size: 16px;
    }
}
.case-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (max-width: 767.98px) {
    .case-item:nth-child(3),
    .case-item:nth-child(4) {
        display: none;
    }
}
.case-item .case-item-image {
    border-radius: 8px;
    background: #e8e8eb;
    display: block;
    position: relative;
    padding-top: 106.28%;
}
.case-item .case-item-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.case-item .case-item-image img {
    border-radius: 8px;
}
.case-item .case-item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0 0;
}
.case-item .case-item-info .image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    margin: 0 24px 0 0;
}
.case-item .case-item-info .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    border-radius: 100%;
}
.case-item .case-item-info .text .title {
    font-size: 16px;
    line-height: 1.333;
    margin: 0 0 12px;
}
.case-item .case-item-info .text .position {
    font-size: 14px;
    line-height: 1.2;
}
@media (min-width: 1024px) {
    .case-item .case-item-info .image {
        width: 94px;
        height: 94px;
    }
    .case-item .case-item-info .text .title {
        font-size: 18px;
    }
    .case-item .case-item-info .text .position {
        font-size: 14px;
    }
}
@media (min-width: 1600px) {
    .case-item .case-item-info .image {
        margin: 0 24px 0 0;
    }
}
.blog-item {
    border: 1px solid #e8e8eb;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 8px;
}
.blog-item .image {
    display: block;
    position: relative;
    padding-top: 76.2%;
    margin: -1px -1px 0;
}
.blog-item .image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.blog-item .image img {
    border-radius: 8px 8px 0 0;
}
.blog-item .title {
    padding: 15px;
    min-height: 101px;
}
.blog-item .title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 20px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
}
.blog-item .title a:before {
    content: "";
    width: 13px;
    height: 15px;
    background: url(../img/icons/ico-blog.svg) no-repeat;
    margin: 5px 8px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.blog-item .title a:after {
    content: "";
    margin-left: auto;
    width: 30px;
    height: 30px;
    background: url(../img/bg/card-arrow.png) 50% no-repeat;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.blog-item .title a span {
    display: block;
    margin: 0 50px 0 0;
}
.blog-item .text {
    margin-top: auto;
    border-top: 1px solid #e8e8eb;
    padding: 15px;
}
.blog-item .text p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 19px;
    max-height: 38px;
    color: #333;
}
.blog-item .text .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0 0;
}
.blog-item .text .tags a {
    font-family: "Roboto Mono", monospace;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 12px 5px 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px 2px;
    height: 24px;
    border: 1px solid rgba(13, 110, 253, 0.5);
    border-radius: 30px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #333;
}
@media (min-width: 1440px) {
    .blog-item .title {
        padding: 19px 17px 19px 16px;
        min-height: 0;
    }
    .blog-item .title a {
        font-size: 24px;
        line-height: 30px;
    }
    .blog-item .title a:before {
        width: 15px;
        height: 15px;
        margin: 8px 8px 0 0;
    }
    .blog-item .title a:after {
        margin: 9px 5px 0 0;
    }
    .blog-item .title a span {
        margin: 0 60px 0 0;
    }
    .blog-item .text {
        padding: 20px 17px 65px;
    }
}
.clients-list .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.clients-list .swiper-slide {
    width: auto;
}
.clients-list figure {
    height: 182px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}
.review-item {
    border-top: 1px solid #e8e8eb;
    padding: 0 0 49px;
}
.review-item:last-child {
    padding-bottom: 12px;
}
.review-item p {
    font-size: 12px;
    line-height: 14px;
    margin: 0 0 20px;
}
.review-item .text {
    border-bottom: 1px solid #e8e8eb;
    padding: 11px 0 28px;
    margin: 0 0 11px;
}
.review-item .text p {
    font-size: 14px;
    line-height: 17px;
}
.review-item .author {
    padding: 6px 0 0;
}
.review-item .author figure {
    margin: 0;
    width: 36px;
    height: 36px;
}
.review-item .author figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    border-radius: 100%;
}
@media (min-width: 1024px) {
    .review-item {
        padding: 12px 0 50px;
    }
    .review-item:last-child {
        padding-bottom: 50px;
    }
    .review-item p {
        font-size: 14px;
        line-height: 17px;
        margin: 0;
    }
    .review-item .text {
        border-bottom: none;
        padding: 0;
        margin: 0;
    }
    .review-item .text p {
        font-size: 18px;
        line-height: 22px;
        margin: 0 0 25px;
    }
    .review-item .author {
        padding: 0;
    }
    .review-item .author figure {
        margin: 30px 0 0;
        width: 50px;
        height: 50px;
    }
    .review-item .date {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}
@media (min-width: 1440px) {
    .review-item .text {
        padding-left: 64px;
    }
    .review-item .text p {
        font-size: 22px;
        line-height: 26px;
        margin: 0 0 30px;
    }
}
.team-member figure {
    position: relative;
    padding-top: 100%;
    margin: 0 0 12px;
}
.team-member figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -o-object-position: center top;
    object-position: center top;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.team-member figure img.img-hover {
    opacity: 0;
}
.team-member:hover figure img.img-hover {
    opacity: 1;
}
.team-member .team-member-title {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin: 0 0 8px;
}
.team-member p {
    margin: 0 0 17px;
    color: #333;
}
.team-member .team-member-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.team-member .team-member-tags span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 5px 5px 0 0;
    padding: 0 9px;
    border-radius: 99px;
    border: 1px solid #e8e8eb;
    font-family: "Roboto Mono", monospace;
    height: 24px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
}
@media (max-width: 767.98px) {
    .team-member .team-member-tags {
        height: auto !important;
    }
}
@media (min-width: 768px) {
    .team-member {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }
    .team-member .team-member-tags {
        margin-top: auto;
    }
}
@media (min-width: 1440px) {
    .team-member figure {
        margin: 0 0 19px;
    }
    .team-member .team-member-title {
        font-size: 18px;
        line-height: 24px;
    }
    .team-member p {
        font-size: 14px;
        margin: 0 0 41px;
    }
}
@media (min-width: 1600px) {
    .team-member p {
        margin: 0 0 26px;
    }
    .team-member .team-member-tags span {
        margin: 20px 5px 0 0;
    }
}
.sertificates-slider {
    border-top: 1px solid #e8e8eb;
}
.sertificates-slider .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
}
.sertificates-slider .swiper-slide {
    width: 238px;
    padding: 8px 0 0;
}
.sertificates-slider figure {
    height: 246px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #e8e8eb;
}
.sertificates-slider figure img {
    display: block;
    -o-object-position: center;
    object-position: center;
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (min-width: 1024px) {
    .sertificates-slider .swiper-slide {
        width: 300px;
        padding: 12px 0;
    }
}
@media (min-width: 1440px) {
    .sertificates-slider .swiper-slide {
        width: 350px;
    }
    .sertificates-slider figure {
        height: 284px;
    }
}
.numbered-list ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: myCounter;
}
.numbered-list ol li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    border-top: 1px solid #e8e8eb;
}
.numbered-list ol li:after {
    counter-increment: myCounter;
    content: "0" counter(myCounter);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 99px;
    border: 1px solid #e8e8eb;
    font-family: "Roboto Mono", monospace;
    height: 24px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin-left: 25px;
}
.numbered-list ol li p {
    margin: 0;
    max-width: 665px;
}
@media (min-width: 768px) {
    .numbered-list ol li:first-child {
        border: none;
        padding-top: 0;
    }
}
@media (min-width: 1440px) {
    .numbered-list ol li {
        font-size: 18px;
        line-height: 24px;
        padding: 19.5px 0;
    }
    .numbered-list ol li:after {
        font-size: 14px;
        height: 30px;
    }
}
.box-border {
    --space: 0px;
    padding: 0 0 0 23px;
    color: #59595a;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    position: relative;
}
.box-border:before {
    content: "";
    position: absolute;
    left: 0;
    top: var(--space);
    bottom: var(--space);
    width: 3px;
    background-color: #d1003f;
    border-radius: 99px;
}
.box-border p {
    margin: 0 0 1.2em;
}
.box-border p:last-child {
    margin: 0;
}
@media (min-width: 1440px) {
    .box-border {
        font-size: 18px;
        line-height: 24px;
    }
    .box-border p {
        margin: 0 0 24px;
    }
}
.advantages-list {
    background-color: #f4f5f7;
}
.advantages-list .list {
    margin: 0 0 40px;
}
.advantages-list .list .text {
    padding: 20px 0;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.advantages-list .list .text:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 1px;
    width: 40px;
    background: #dadada;
    -webkit-transition: all 1s;
    transition: all 1s;
}
.advantages-list .list .text.active {
    color: #d1003f;
}
.advantages-list .list .text:last-child:after {
    display: none;
}
.advantages-list .list .number {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    margin: 0 0 10px;
}
.advantages-list .advantages-image {
    text-align: center;
    position: relative;
}
.advantages-list .advantages-image svg {
    display: block;
    width: 100%;
    height: auto;
}
.advantages-list .advantages-image svg.img-main {
    mix-blend-mode: luminosity;
}
.advantages-list .advantages-image svg.img-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.advantages-list .advantages-text {
    display: none;
}
.advantages-list .advantages-text.active {
    display: block;
}
.advantages-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.advantages-list ul li {
    margin: 0 0 15px;
}
.advantages-list ul li:last-child {
    margin: 0;
}
@media (min-width: 576px) {
    .advantages-list .list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .advantages-list .list .text {
        width: 50%;
    }
    .advantages-list .list .text:after {
        display: none;
    }
}
@media (min-width: 768px) {
    .advantages-list .list {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .advantages-list .list .text {
        padding: 0 20px;
        width: 25%;
    }
    .advantages-list .list .text:after {
        top: 50%;
        left: 100%;
        display: block;
    }
}
@media (min-width: 1024px) {
    .advantages-list .list {
        margin: 0 0 57px;
    }
    .advantages-list .list .text:after {
        display: block;
    }
    .advantages-list figure {
        text-align: left;
    }
}
@media (min-width: 1440px) {
    .advantages-list .list .text {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        padding: 0;
    }
    .advantages-list .list .text:after {
        left: calc(100% + 81px);
        -webkit-transform: none;
        transform: none;
    }
    .advantages-list .list .text .number {
        font-size: 60px;
        line-height: 62px;
        margin: 0 0 18px;
    }
    .advantages-list ul li {
        margin: 0 0 12px;
    }
}
.block-teams .team-item {
    margin: -12px;
}
.block-teams .team-item .row {
    height: 100%;
}
.block-teams .team-item .team-toggler {
    height: 100%;
    position: relative;
    cursor: pointer;
}
.block-teams .team-item .team-toggler .team-title {
    color: #999;
    font-size: 16px;
    line-height: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 54px;
}
.block-teams .team-item .team-toggler .team-title .team-title-text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    margin: 0 20px 0 0;
    padding: 8px 20px 8px 8px;
    border-radius: 30px;
}
.block-teams .team-item .team-toggler .team-title .team-title-text .team-letter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 17px;
    margin: 0 12px 0 0;
    background: #f7f8fa;
    -webkit-animation: rotate 2s ease-in-out 0s infinite forwards;
    animation: rotate 2s ease-in-out 0s infinite forwards;
}
.block-teams .team-item .team-toggler .team-images {
    position: relative;
    overflow: hidden;
    margin: 0 0 40px;
}
.block-teams .team-item .team-toggler .team-images ul {
    margin: 0 -20px;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.block-teams .team-item .team-toggler .team-images ul li {
    width: 100%;
    margin: 0 20px;
    aspect-ratio: 1/1;
}
.block-teams .team-item .team-toggler .team-images ul li img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.block-teams .team-item .team-toggler .team-icons {
    position: relative;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.block-teams .team-item .team-toggler .team-icons:before {
    content: "";
    width: 1px;
    height: 34px;
    background-color: #f7f8fa;
    position: absolute;
    left: 50%;
    top: 16px;
}
.block-teams .team-item .team-toggler .team-icons .team-icon {
    width: 66px;
    height: 66px;
    border-radius: 100%;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    margin: 0 14px;
    padding: 2px;
    color: #999;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.block-teams .team-item .team-toggler .team-icons .team-icon:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
}
.block-teams .team-item .team-toggler .team-icons .team-icon--blue:before {
    background: -webkit-gradient(linear, left top, right top, from(#04a), to(rgba(0, 68, 170, 0)));
    background: linear-gradient(to right, #04a 0%, rgba(0, 68, 170, 0) 100%);
}
.block-teams .team-item .team-toggler .team-icons .team-icon--blue.active {
    background-color: #04a;
    color: #fff;
}
.block-teams .team-item .team-toggler .team-icons .team-icon--blue.active:before {
    display: none;
}
.block-teams .team-item .team-toggler .team-icons .team-icon--red:before {
    background: -webkit-gradient(linear, left top, right top, from(#d1003f), to(rgba(209, 0, 63, 0)));
    background: linear-gradient(to right, #d1003f 0%, rgba(209, 0, 63, 0) 100%);
}
.block-teams .team-item .team-toggler .team-icons .team-icon--red.active {
    background-color: #d1003f;
    color: #fff;
}
.block-teams .team-item .team-toggler .team-icons .team-icon--red.active:before {
    display: none;
}
.block-teams .team-item .team-toggler .team-icons .team-icon span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.block-teams .team-item .team-toggler .team-icons .team-icon.active span {
    background-color: transparent;
}
.block-teams .team-item .team-toggler .team-icons .team-icon:not(.active):before {
    -webkit-animation: rotate 4s linear 0s infinite forwards;
    animation: rotate 4s linear 0s infinite forwards;
}
.block-teams .team-item .team-toggler:hover .team-title .team-title-text .team-letter {
    -webkit-animation: none;
    animation: rotate none;
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.block-teams .team-item .team-item-description {
    padding: 15px 10px;
    height: 100%;
}
.block-teams .team-item .team-item-description .team-item-description-top {
    margin: 0 0 75px;
}
.block-teams .team-item .team-item-description .team-item-description-top p {
    margin: 0 0 1.14em;
}
.block-teams .team-item .team-item-description .team-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 55px;
    padding: 8px 20px 8px 8px;
    border-radius: 30px;
}
.block-teams .team-item .team-item-description .team-title .team-letter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 17px;
    margin: 0 12px 0 0;
    background: #f7f8fa;
}
.block-teams .team-item .team-item-description .link-arrow {
    margin: 35px 0 0;
}
.block-teams .team-item .team-item-description .team-item-description-bottom {
    border-top: 1px solid #f2e9eb;
    padding: 20px 0 0;
}
.block-teams .team-item .team-item-description .team-item-description-bottom h5,
.block-teams .team-item .team-item-description .team-item-description-bottom .h5 {
    margin: 0 0 13px;
}
.block-teams .team-item .team-item-description .team-item-description-bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    padding: 0;
    list-style: none;
}
.block-teams .team-item .team-item-description .team-item-description-bottom ul li {
    width: calc(50% - 20px);
    border-top: 1px solid #f2e9eb;
    padding: 13px 0;
    margin: 0 10px 12px;
}
@media (max-width: 767.98px) {
    .block-teams .team-item .team-item-description .team-item-description-bottom ul li.last {
        width: 100%;
    }
}
.block-teams .team-item .team-item-description .team-item-description-bottom ul li .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 31px;
    height: 24px;
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 20px;
    font-family: "Roboto Mono", monospace;
    border-radius: 20px;
    opacity: 0;
}
.block-teams .team-item .team-item-description .team-item-description-bottom ul li p {
    opacity: 0;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
}
.block-teams .team-item--red {
    border-width: 1px 0 0;
}
.block-teams .team-item--red .team-toggler .team-title .team-title-text {
    background-color: #f0e6e9;
    color: #d1003f;
}
.block-teams .team-item--red .team-toggler .team-title .team-title-text .team-letter {
    color: #d1003f;
}
.block-teams .team-item--red .team-item-description {
    background: #fcf7f9;
    color: #6b0020;
}
.block-teams .team-item--red .team-item-description .team-title {
    background-color: #f0e6e9;
    color: #d1003f;
}
.block-teams .team-item--red .team-item-description .team-title .team-letter {
    color: #d1003f;
}
.block-teams .team-item--red .team-item-description .link-arrow {
    color: #6b0020;
}
.block-teams .team-item--red .team-item-description .link-arrow .icon {
    background: #fceff3;
}
.block-teams .team-item--red .team-item-description .link-arrow .icon svg path {
    stroke: #6b0020;
}
.block-teams .team-item--red .team-item-description .team-item-description-bottom ul li .number {
    background: #f2e9eb;
}
.block-teams .team-item--blue .team-toggler .team-title .team-title-text {
    background-color: #f5f7fa;
    color: #04a;
}
.block-teams .team-item--blue .team-toggler .team-title .team-title-text .team-letter {
    color: #04a;
    background-color: #fff;
}
.block-teams .team-item--blue .team-item-description {
    background: #f5f7fa;
    color: #002b6b;
}
.block-teams .team-item--blue .team-item-description .team-title {
    background-color: #dee3ec;
    color: #04a;
}
.block-teams .team-item--blue .team-item-description .team-title .team-letter {
    color: #04a;
}
.block-teams .team-item--blue .team-item-description .link-arrow {
    color: #002b6b;
}
.block-teams .team-item--blue .team-item-description .link-arrow .icon {
    background: #eff4fc;
}
.block-teams .team-item--blue .team-item-description .link-arrow .icon svg path {
    stroke: #002b6b;
}
.block-teams .team-item--blue .team-item-description .team-item-description-bottom ul li .number {
    background: #ebeff5;
}
@media (min-width: 1024px) {
    .block-teams {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 200vw;
    }
    .block-teams.moved {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .block-teams .team-item {
        width: 100vw;
        opacity: 0;
        -webkit-transition: opacity 1s;
        transition: opacity 1s;
        border: none;
        margin: 0;
        position: relative;
    }
    .block-teams .team-item.active {
        opacity: 1;
    }
    .block-teams .team-item:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
    }
    .block-teams .team-item .team-toggler,
    .block-teams .team-item .team-item-description {
        padding: 20px;
    }
    .block-teams .team-item .team-item-description {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        z-index: 2;
        background-color: transparent;
    }
    .block-teams .team-item .team-item-description .team-item-description-top {
        font-size: 18px;
        line-height: 1.2;
    }
    .block-teams .team-item .team-item-description .team-item-description-bottom {
        margin-top: auto;
    }
    .block-teams .team-item--red:before {
        right: 0;
        background: #fcf7f9;
    }
    .block-teams .team-item--blue:before {
        left: 0;
        background: #f5f7fa;
    }
}
@media (min-width: 1600px) {
    .block-teams .team-item {
        position: relative;
    }
    .block-teams .team-item:before {
        width: 49.25%;
    }
    .block-teams .team-item .team-toggler {
        padding: 76px 38px 0 0;
    }
    .block-teams .team-item .team-toggler .team-title {
        font-size: 18px;
        line-height: 30px;
        font-weight: 500;
        margin: 0 0 75px;
    }
    .block-teams .team-item .team-toggler .team-title .team-title-text {
        font-size: 24px;
        line-height: 30px;
        margin: 0 25px 0 0;
        font-weight: 400;
    }
    .block-teams .team-item .team-toggler .team-images {
        margin: 0 0 75px;
    }
    .block-teams .team-item .team-toggler .team-images ul {
        margin: 0 -25px;
    }
    .block-teams .team-item .team-toggler .team-images ul li {
        margin: 0 25px;
    }
    .block-teams .team-item .team-item-description {
        padding: 76px 0 40px 74px;
        background-color: transparent;
        margin: 0 -20px 0 0;
    }
    .block-teams .team-item .team-item-description .team-title {
        font-size: 24px;
        line-height: 30px;
    }
    .block-teams .team-item .team-item-description .team-item-description-bottom ul li {
        padding: 24px 20px 19px 0;
        margin: 12px 10px;
    }
    .block-teams .team-item .team-item-description .team-item-description-bottom ul li .number {
        width: 37px;
        height: 30px;
        font-size: 14px;
        margin: 0 0 22px;
    }
    .block-teams .team-item--blue .team-toggler {
        padding: 76px 0 0 38px;
    }
    .block-teams .team-item--blue .team-item-description {
        padding: 76px 74px 40px 0;
    }
}
.contact-form {
    background-color: #f7f8fa;
    padding: 14px 0 22px;
    color: #002b6b;
}
.contact-form .text {
    margin: 0 0 100px;
    max-width: 515px;
}
.contact-form .text .form-sticker {
    display: none;
}
.contact-form .title {
    color: rgba(0, 43, 107, 0.6);
    font-size: 12px;
    margin: 0 0 30px;
}
.contact-form form .row {
    --bs-gutter-x: 12px;
}
.contact-form .field {
    margin: 0 0 12px;
}
.contact-form .field textarea {
    resize: none;
    height: 106px !important;
}
.contact-form .submit .btn-arrow-blue {
    background: #ebeff5;
    color: #002b6b;
    font-size: 16px;
    font-weight: 400;
    padding: 0 17px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 270px;
}
.contact-form .submit .btn-arrow-blue:before {
    right: 50px;
}
.contact-form .submit .btn-arrow-blue .icon {
    margin-left: 0;
}
.contact-form .submit .info {
    margin: 22px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #315488;
    font-size: 12px;
    line-height: 16px;
    max-width: 302px;
}
.contact-form .submit .info .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 20px 0 0;
}
@media (min-width: 768px) {
    .contact-form {
        padding: 15px 0;
    }
    .contact-form .text {
        margin: 0;
        height: 100%;
        position: relative;
    }
    .contact-form .text .form-sticker {
        display: block;
        position: absolute;
        left: 0px;
        bottom: 10px;
        color: #637da4;
        font-size: 16px;
        text-transform: capitalize;
    }
    .contact-form .submit .btn-arrow-blue {
        min-width: 302px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        max-width: none;
        width: auto;
    }
    .contact-form .submit .btn-arrow-blue:before {
        right: 65px;
    }
    .contact-form > .row > div:first-child {
        border-right: 1px solid rgba(0, 43, 107, 0.1);
    }
}
@media (min-width: 1024px) {
    .contact-form {
        padding: 73px 0 57px;
    }
    .contact-form .text {
        padding: 0;
    }
    .contact-form .form {
        padding: 0;
    }
}
@media (min-width: 1440px) {
    .contact-form .title {
        color: #002b6b;
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 44px;
    }
    .contact-form .field {
        margin: 0 0 13px;
    }
    .contact-form .field .form-control {
        font-size: 16px;
        padding: 1.1rem 1.2rem;
        height: calc(2.2rem + 24px);
    }
    .contact-form .field .form-select {
        font-size: 16px;
        padding: 1.1rem 3rem 1.1rem 1.2rem;
        background-size: 12px 8px;
        height: calc(2.2rem + 24px);
    }
    .contact-form .field textarea {
        height: 137px !important;
    }
    .contact-form .submit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        padding: 8px 0 0;
    }
    .contact-form .submit .btn-arrow-blue {
        background: #ebeff5;
        color: #002b6b;
        margin-left: 10px;
    }
    .contact-form .submit .info {
        margin: 0;
    }
}
@media (min-width: 1600px) {
    .contact-form .submit .btn-arrow-blue {
        width: calc(50% - 10px);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 25px;
    }
}
.block-form-steps {
    background-color: #f7f8fa;
    color: #002b6b;
    font-size: 16px;
    padding: 15px 0;
    overflow: hidden;
}
.block-form-steps > .row > div:first-child {
    border-right: 1px solid #dee3ec;
}
.block-form-steps .form-left,
.block-form-steps .form-right {
    height: 100%;
    position: relative;
    padding-bottom: 38px;
}
.block-form-steps .form-left .form-sticker,
.block-form-steps .form-right .form-sticker {
    position: absolute;
    left: 0;
    bottom: 0;
}
.block-form-steps .form-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.block-form-steps .form-left .form-sticker {
    color: #637da4;
}
.block-form-steps .form-left .step4 .step-header {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.block-form-steps .form-right .step2 .step-header {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.block-form-steps .form-right .form-sticker {
    opacity: 0.8;
}
.block-form-steps .form-right .form-sticker span {
    margin: 0 208px 0 0;
}
.block-form-steps .form-right .form-fields .row {
    --bs-gutter-x: 12px;
}
.block-form-steps .form-right .form-fields .field {
    margin: 0 0 12px;
}
.block-form-steps .form-right .form-fields .field textarea {
    resize: none;
    height: 137px;
}
.block-form-steps .form-right .form-fields .submit .btn-arrow-blue {
    background: #ebeff5;
    color: #002b6b;
}
.block-form-steps .form-right .form-fields .submit .info {
    margin: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #315488;
    font-size: 12px;
    line-height: 16px;
    max-width: 302px;
}
.block-form-steps .form-right .form-fields .submit .info .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 20px 0 0;
}
.block-form-steps .form-steps {
    margin: -6px 0 44px;
    color: #637da4;
}
.block-form-steps .form-steps > span {
    color: #002b6b;
    margin-left: 20px;
}
.block-form-steps .form-subtitle {
    margin: 0 0 40px;
    color: #637da4;
    max-width: 21em;
}
.block-form-steps .form-title {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 42px;
}
.block-form-steps .form-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.block-form-steps .form-options .form-option {
    margin: 0 8px 7px 0;
    border-radius: 50px;
    border: 1px solid #d8dde5;
}
.block-form-steps .form-options .form-option input {
    display: none;
}
.block-form-steps .form-options .form-option label {
    display: block;
    padding: 10px 25.5px 9px;
    line-height: 19px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    cursor: pointer;
    border-radius: 50px;
}
.block-form-steps .form-options .form-option label:hover {
    color: #fff;
    background-color: #04a;
    border-color: #04a;
}
.block-form-steps .form-result {
    padding: 12px 0 0;
}
.block-form-steps .form-result dl {
    overflow: hidden;
}
.block-form-steps .form-result dl dt {
    float: left;
    width: 118px;
    height: 39px;
    line-height: 39px;
    clear: both;
    margin: 0 0 8px;
    font-weight: 400;
}
.block-form-steps .form-result dl dd {
    float: left;
    height: 39px;
    line-height: 39px;
    padding: 0 26px;
    background-color: #edeff2;
    margin: 0 0 8px;
}
.block-form-steps .form-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: auto;
    padding: 15px 0 0;
}
.block-form-steps .form-nav .btn.btn-arrow {
    border: 1px solid #d8dde5;
    background-color: transparent;
}
.block-form-steps .form-nav .btn.btn-arrow.btn-prev:before {
    right: auto;
    left: 39px;
}
.block-form-steps .form-nav .btn.btn-arrow.btn-prev .icon {
    margin-left: 0;
    margin-right: 40px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.block-form-steps .form-nav .btn.btn-arrow[disabled] {
    opacity: 0;
}
.block-form-steps[data-step="1"] .form-left .step2,
.block-form-steps[data-step="1"] .form-left .step3,
.block-form-steps[data-step="1"] .form-left .step4 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="1"] .form-right .step2 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="2"] .form-left .step1,
.block-form-steps[data-step="2"] .form-left .step3,
.block-form-steps[data-step="2"] .form-left .step4 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="2"] .form-right .step2 .step-header {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.block-form-steps[data-step="2"] .form-right .step1 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="2"] .form-right .form-sticker {
    display: none;
}
.block-form-steps[data-step="3"] .form-left .step1,
.block-form-steps[data-step="3"] .form-left .step2,
.block-form-steps[data-step="3"] .form-left .step4 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="3"] .form-right .step2 .step-header {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition: none;
    transition: none;
}
.block-form-steps[data-step="3"] .form-right .step1 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="3"] .form-right .form-sticker {
    display: none;
}
.block-form-steps[data-step="4"] .step2 .step-header {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -webkit-transition: none;
    transition: none;
}
.block-form-steps[data-step="4"] .form-left .step1,
.block-form-steps[data-step="4"] .form-left .step2,
.block-form-steps[data-step="4"] .form-left .step3 {
    height: 0;
    overflow: hidden;
}
.block-form-steps[data-step="4"] .form-left .form-steps {
    display: none;
}
.block-form-steps[data-step="4"] .form-left .step4 .step-header {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
.block-form-steps[data-step="4"] .form-right .step1,
.block-form-steps[data-step="4"] .form-right .form-sticker {
    display: none;
}
.block-form-steps[data-step="4"] .form-right .step2 .step-header {
    display: none;
}
@media (min-width: 1440px) {
    .block-form-steps form,
    .block-form-steps .row {
        height: 100%;
    }
    .block-form-steps .form-subtitle {
        font-size: 21px;
        font-weight: 400;
        line-height: 1.2;
    }
    .block-form-steps .form-right .form-sticker {
        opacity: 0.8;
    }
    .block-form-steps .form-right .form-sticker span {
        margin: 0 208px 0 0;
    }
    .block-form-steps .form-right .form-fields .row {
        --bs-gutter-x: 12px;
    }
    .block-form-steps .form-right .form-fields .field {
        margin: 0 0 12px;
    }
    .block-form-steps .form-right .form-fields .field .form-control {
        font-size: 16px;
        padding: 1.1rem 1.2rem;
    }
    .block-form-steps .form-right .form-fields .field .form-select {
        font-size: 16px;
        padding: 1.2rem 3rem 1.2rem 1.2rem;
        background-size: 12px 8px;
    }
    .block-form-steps .form-right .form-fields .field textarea {
        resize: none;
        height: 137px;
    }
    .block-form-steps .form-right .form-fields .submit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (min-width: 1600px) {
    .block-form-steps .form-right .form-fields .submit .btn-arrow-blue {
        width: calc(50% - 16px);
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 25px;
    }
}
.modal-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    z-index: 99999;
    padding: 110px 0 0;
    opacity: 0;
}
.modal-wrapper .modal-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.modal-wrapper .modal-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-height: calc(100% - 112px);
    overflow: auto;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.modal-wrapper .container-fluid,
.modal-wrapper .container-sm,
.modal-wrapper .container-md,
.modal-wrapper .container-lg,
.modal-wrapper .container-xl,
.modal-wrapper .container-xxl {
    overflow: hidden;
}
.modal-wrapper.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: none;
    transition: none;
}
.modal-wrapper.active .modal-bg {
    opacity: 1;
}
.modal-wrapper.active .modal-box {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
#modalForm1 .contact-form .form {
    padding-bottom: 20px;
}
.block-team-single .block-title {
    margin: 0 0 20px;
}
.block-team-single > div {
    padding: 40px 0;
}
@media (min-width: 1024px) {
    .block-team-single .block-title {
        margin: 0 0 75px;
    }
    .block-team-single > div {
        padding: 75px 0;
    }
}
.block-team-single-intro {
    border-top: 1px solid #e8e8eb;
}
.block-team-single-intro .images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 26px;
}
.block-team-single-intro .images span {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 12px 12px 0;
}
.block-team-single-intro .images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    border-radius: 100%;
}
.block-team-single-intro .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.block-team-single-intro .buttons .btn {
    margin: 0 20px 8px 0;
}
@media (min-width: 400px) {
    .block-team-single-intro .buttons .btn {
        margin-right: 8px;
    }
}
.block-team-single-intro .font-5 {
    margin-top: 75px;
}
.block-team-single-intro p {
    margin: 0 0 20px;
}
.block-team-single-intro p:last-child {
    margin: 0;
}
.block-team-single-intro .box-border {
    margin: 20px 0 28px;
}
.block-team-single-members {
    border-top: 1px solid #e8e8eb;
}
.block-team-single-members .row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 24px;
}
.block-team-single-list {
    border-top: 1px solid #e8e8eb;
    padding: 12px 0 60px;
}
.block-team-single-services {
    padding: 12px;
}
.block-team-single-services .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 12px;
}
.block-team-single-services .item {
    border: 1px solid;
    padding: 20px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.block-team-single-services .item .title {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: normal;
    margin: 0 0 20px;
}
@media (max-width: 767.98px) {
    .block-team-single-services .item .title {
        height: auto !important;
    }
}
.block-team-single-services .item p {
    margin: 0 0 40px;
}
.block-team-single-services--red {
    border-top: 1px solid #f0e6e9;
    background: #fcf7f9;
}
.block-team-single-services--red .item {
    border-color: #f0e6e9;
    color: #6b0020;
}
.block-team-single-services--red .item:hover {
    background-color: #f2e9eb;
}
.block-team-single-services--red .item .link-arrow {
    color: #6b0020;
}
.block-team-single-services--red .item .link-arrow .icon {
    background: #6b0020;
}
.block-team-single-services--red .item .link-arrow .icon svg path {
    stroke: #fff;
}
.block-team-single-services--blue {
    border-top: 1px solid #e1e5eb;
    background: #f5f7fa;
}
.block-team-single-services--blue .item {
    border-color: #e1e5eb;
    color: #002b6b;
}
.block-team-single-services--blue .item:hover {
    background-color: #dee3ec;
}
.block-team-single-services--blue .item .link-arrow {
    color: #002b6b;
}
.block-team-single-services--blue .item .link-arrow .icon {
    background: #002b6b;
}
.block-team-single-services--blue .item .link-arrow .icon svg path {
    stroke: #fff;
}
@media (min-width: 768px) {
    .block-team-single-intro .font-5 {
        margin-top: 0;
    }
    .block-team-single-services .item {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 20px 27px;
    }
    .block-team-single-services .item p {
        margin: 0 0 31px;
    }
    .block-team-single-services .item .link-arrow {
        font-size: 14px;
    }
}
@media (min-width: 1440px) {
    .block-team-single-intro .buttons .btn {
        margin: 0 12px 12px 0;
    }
    .block-team-single-intro p {
        margin: 0 0 25px;
    }
    .block-team-single-intro p:last-child {
        margin: 0;
    }
    .block-team-single-intro .box-border {
        margin: 35px 0 47px;
    }
    .block-team-single-members .team-member figure {
        padding-top: 95.36%;
    }
    .block-team-single-services .item .title {
        font-size: 20px;
        line-height: 26px;
        font-weight: 400;
    }
    .block-team-single-services .item .link-arrow {
        margin-top: auto;
    }
}
.block-service {
    padding: 12px 0;
}
.block-service .block-title {
    margin: 0 0 75px;
}
.block-service .item-number {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 99px;
    font-family: "Roboto Mono", monospace;
    height: 24px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    margin: 0 0 12px;
    background-color: #f7f8fa;
    color: #999;
}
.block-service .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}
.block-service--red {
    border-top: 1px solid #f0e6e9;
    border-bottom: 1px solid #f0e6e9;
    background: #fcf7f9;
    color: #6b0020;
}
.block-service--red .item-number {
    color: #6b0020;
    background-color: #fcf7f9;
}
.block-service--blue {
    border-top: 1px solid #e1e5eb;
    border-bottom: 1px solid #e1e5eb;
    background: #f5f7fa;
    color: #002b6b;
}
.block-service--blue .item-number {
    color: #002b6b;
    background-color: #f5f7fa;
}
.block-service.block-service-01 .item {
    padding: 20px 20px 74px;
    position: relative;
    height: 100%;
}
.block-service.block-service-01 .item:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    height: 6px;
    border-radius: 10px;
}
.block-service.block-service-01 .item p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.block-service.block-service-01 .item p span {
    opacity: 0.56;
}
.block-service.block-service-01.block-service--red .item {
    background: #f0e6e9;
}
.block-service.block-service-01.block-service--red.block-service-01--items3 .row > div:nth-child(1) .item:after {
    background-color: rgba(107, 0, 32, 0.14);
}
.block-service.block-service-01.block-service--red.block-service-01--items3 .row > div:nth-child(2) .item:after {
    background-color: rgba(107, 0, 32, 0.5);
}
.block-service.block-service-01.block-service--red.block-service-01--items3 .row > div:nth-child(3) .item:after {
    background-color: #6b0020;
}
.block-service.block-service-01.block-service--red.block-service-01--items4 .row > div:nth-child(1) .item:after {
    background-color: rgba(107, 0, 32, 0.14);
}
.block-service.block-service-01.block-service--red.block-service-01--items4 .row > div:nth-child(2) .item:after {
    background-color: rgba(107, 0, 32, 0.22);
}
.block-service.block-service-01.block-service--red.block-service-01--items4 .row > div:nth-child(3) .item:after {
    background-color: rgba(107, 0, 32, 0.5);
}
.block-service.block-service-01.block-service--red.block-service-01--items4 .row > div:nth-child(4) .item:after {
    background-color: #6b0020;
}
.block-service.block-service-01.block-service--red.block-service-01--items5 .row > div:nth-child(1) .item:after {
    background-color: rgba(107, 0, 32, 0.14);
}
.block-service.block-service-01.block-service--red.block-service-01--items5 .row > div:nth-child(2) .item:after {
    background-color: rgba(107, 0, 32, 0.22);
}
.block-service.block-service-01.block-service--red.block-service-01--items5 .row > div:nth-child(3) .item:after {
    background-color: rgba(107, 0, 32, 0.28);
}
.block-service.block-service-01.block-service--red.block-service-01--items5 .row > div:nth-child(4) .item:after {
    background-color: rgba(107, 0, 32, 0.5);
}
.block-service.block-service-01.block-service--red.block-service-01--items5 .row > div:nth-child(5) .item:after {
    background-color: #6b0020;
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(1) .item:after {
    background-color: rgba(107, 0, 32, 0.14);
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(2) .item:after {
    background-color: rgba(107, 0, 32, 0.22);
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(3) .item:after {
    background-color: rgba(107, 0, 32, 0.28);
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(4) .item:after {
    background-color: rgba(107, 0, 32, 0.35);
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(5) .item:after {
    background-color: rgba(107, 0, 32, 0.48);
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(6) .item:after {
    background-color: rgba(107, 0, 32, 0.58);
}
.block-service.block-service-01.block-service--red.block-service-01--items7 .row > div:nth-child(7) .item:after {
    background-color: #6b0020;
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(1) .item:after {
    background-color: rgba(107, 0, 32, 0.14);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(2) .item:after {
    background-color: rgba(107, 0, 32, 0.22);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(3) .item:after {
    background-color: rgba(107, 0, 32, 0.28);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(4) .item:after {
    background-color: rgba(107, 0, 32, 0.35);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(5) .item:after {
    background-color: rgba(107, 0, 32, 0.48);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(6) .item:after {
    background-color: rgba(107, 0, 32, 0.58);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(7) .item:after {
    background-color: rgba(107, 0, 32, 0.67);
}
.block-service.block-service-01.block-service--red.block-service-01--items8 .row > div:nth-child(8) .item:after {
    background-color: #6b0020;
}
.block-service.block-service-01.block-service--blue .item {
    background: #e1e5eb;
}
.block-service.block-service-01.block-service--blue.block-service-01--items3 .row > div:nth-child(1) .item:after {
    background-color: rgba(0, 68, 170, 0.14);
}
.block-service.block-service-01.block-service--blue.block-service-01--items3 .row > div:nth-child(2) .item:after {
    background-color: rgba(0, 68, 170, 0.5);
}
.block-service.block-service-01.block-service--blue.block-service-01--items3 .row > div:nth-child(3) .item:after {
    background-color: #04a;
}
.block-service.block-service-01.block-service--blue.block-service-01--items5 .row > div:nth-child(1) .item:after {
    background-color: rgba(0, 68, 170, 0.14);
}
.block-service.block-service-01.block-service--blue.block-service-01--items5 .row > div:nth-child(2) .item:after {
    background-color: rgba(0, 68, 170, 0.25);
}
.block-service.block-service-01.block-service--blue.block-service-01--items5 .row > div:nth-child(3) .item:after {
    background-color: rgba(0, 68, 170, 0.38);
}
.block-service.block-service-01.block-service--blue.block-service-01--items5 .row > div:nth-child(4) .item:after {
    background-color: rgba(0, 68, 170, 0.65);
}
.block-service.block-service-01.block-service--blue.block-service-01--items5 .row > div:nth-child(5) .item:after {
    background-color: #04a;
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(1) .item:after {
    background-color: rgba(0, 68, 170, 0.14);
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(2) .item:after {
    background-color: rgba(0, 68, 170, 0.25);
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(3) .item:after {
    background-color: rgba(0, 68, 170, 0.38);
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(4) .item:after {
    background-color: rgba(0, 68, 170, 0.5);
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(5) .item:after {
    background-color: rgba(0, 68, 170, 0.65);
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(6) .item:after {
    background-color: rgba(0, 68, 170, 0.78);
}
.block-service.block-service-01.block-service--blue.block-service-01--items7 .row > div:nth-child(7) .item:after {
    background-color: #04a;
}
.block-service.block-service-02 .item {
    border: 1px solid #e8e8eb;
    padding: 20px 20px 74px;
    position: relative;
    height: 100%;
}
.block-service.block-service-02 .item:after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    height: 6px;
    border-radius: 10px;
    background-color: #707070;
}
.block-service.block-service-02 .item p {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.block-service.block-service-02 .row > div:nth-child(1) .item:after {
    background-color: #dbdbdb;
}
.block-service.block-service-02 .row > div:nth-child(2) .item:after {
    background-color: #c7c7c7;
}
.block-service.block-service-02 .row > div:nth-child(3) .item:after {
    background-color: #b8b8b8;
}
.block-service.block-service-02 .row > div:nth-child(4) .item:after {
    background-color: #808080;
}
.block-service.block-service-03 .item {
    padding: 20px;
    border-left: 3px solid;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.block-service.block-service-03 .item p {
    margin: 0 0 34px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}
.block-service.block-service-03 .item .item-number {
    margin: auto 0 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
}
.block-service.block-service-03.block-service--red .item {
    background: #f0e6e9;
    border-color: #d1003f;
}
.block-service.block-service-03.block-service--blue .item {
    background: #e1e5eb;
    border-color: #04a;
}
.block-service.block-service-04 {
    padding-bottom: 40px;
}
.block-service.block-service-04 .item {
    margin: 0 0 20px;
}
.block-service.block-service-04 .item .item-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 0;
}
.block-service.block-service-04 .item ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #999;
}
.block-service.block-service-04 .item ul li {
    border-top: 1px solid #e8e8eb;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.block-service.block-service-04 .item ul li p {
    color: #000;
    margin: 0;
    width: calc(50% - 6px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
@media (min-width: 1440px) {
    .block-service {
        padding: 75px 0;
    }
    .block-service .block-title {
        margin: 0 0 75px;
    }
    .block-service .item-number {
        height: 30px;
        font-size: 14px;
        margin: 0 0 20px;
    }
    .block-service.block-service-01 .item,
    .block-service.block-service-02 .item {
        min-height: 504px;
    }
    .block-service.block-service-01 .item:after,
    .block-service.block-service-02 .item:after {
        height: 8px;
    }
    .block-service.block-service-01 .item p,
    .block-service.block-service-02 .item p {
        font-size: 24px;
        line-height: 30px;
    }
    .block-service.block-service-03 .item {
        min-height: 188px;
    }
    .block-service.block-service-03 .item p {
        font-size: 20px;
        line-height: normal;
    }
    .block-service.block-service-04 .item {
        margin: 0 0 48px;
    }
    .block-service.block-service-04 .item .item-title {
        font-size: 24px;
        line-height: 30px;
        padding: 0 0 20px;
    }
    .block-service.block-service-04 .item ul {
        font-size: 18px;
        line-height: 24px;
    }
    .block-service.block-service-04 .item ul li {
        padding: 19.5px 0;
    }
    .block-service.block-service-04 .item ul li p {
        width: 65.2%;
    }
}
.service-images {
    margin: 0 0 60px;
}
.service-images .row {
    --bs-gutter-x: 14px;
}
.service-images figure {
    position: relative;
    padding-top: 142%;
}
.service-images figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@media (min-width: 1440px) {
    .service-images {
        margin: 0 0 75px;
    }
}
.blog-list {
    padding: 12px 0;
}
.blog-list .row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 10px;
}
.blog-list .blog-list-item {
    padding: 0 0 20px;
}
.blog-list .blog-list-item .blog-item-img {
    display: block;
    position: relative;
    padding-top: 127.64%;
}
.blog-list .blog-list-item .blog-item-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.blog-list .blog-list-item .blog-item-title {
    margin: 15px 0 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.blog-list .blog-list-item p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 28px;
    margin: 0 0 15px;
}
.blog-list .blog-list-item .blog-item-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog-list .blog-list-item .blog-item-tags a {
    font-family: "Roboto Mono", monospace;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px 5px 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px 1px;
    height: 24px;
    border: 1px solid #e8e8eb;
    border-radius: 30px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #333;
}
@media (min-width: 768px) {
    .blog-list .blog-list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }
    .blog-list .blog-list-item .blog-item-img {
        padding-top: 0;
        height: 448px;
    }
    .blog-list .blog-list-item .blog-item-tags {
        margin-top: auto;
    }
}
@media (min-width: 1024px) {
    .blog-list .blog-list-item p {
        max-height: 34px;
    }
}
@media (min-width: 1440px) {
    .blog-list {
        padding-bottom: 172px;
    }
    .blog-list .blog-list-item {
        padding: 0 0 22px;
    }
    .blog-list .blog-list-item .blog-item-img {
        padding-top: 0;
        height: 680px;
    }
    .blog-list .blog-list-item .blog-item-title {
        margin: 16px 0 13px;
        font-size: 24px;
        line-height: 30px;
    }
    .blog-list .blog-list-item p {
        font-size: 16px;
        line-height: 1.2;
        max-height: 2.4em;
        margin: 0 0 24px;
    }
}
.article {
    padding: 12px 12px 100px;
}
.article .article-content .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 20px;
}
.article .article-content .tags a {
    font-family: "Roboto Mono", monospace;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 5px 5px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px 1px;
    height: 24px;
    border: 1px solid #e8e8eb;
    border-radius: 30px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #333;
}
.article .article-content h1,
.article .article-content .h1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
    margin: 0 0 20px;
}
.article .article-content h2,
.article .article-content .h2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin: 20px 0 16px;
    opacity: 0.8;
}
.article .article-content .subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    opacity: 0.8;
    margin: 0 0 20px;
}
.article .article-content p {
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1.2em;
}
.article .article-content figure {
    margin: 20px 0;
}
.article .article-content figure img {
    display: block;
    width: 100%;
    height: auto;
}
.article .article-content figure figcaption {
    display: block;
    margin: 12px 0 0;
    color: #999;
}
.article .article-next {
    border: 1px solid #e8e8eb;
    display: block;
    padding: 16px 20px;
    margin: 16px 0 0;
}
.article .article-next .title {
    font-size: 14px;
    line-height: normal;
    margin: 0 0 20px;
    font-weight: 400;
}
.article .article-next p {
    line-height: normal;
    margin: 0 !important;
    font-weight: 400;
    opacity: 0.5;
}
@media (min-width: 1024px) {
    .article {
        padding: 40px 9.01vw 0 8.59vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .article .article-info {
        border-left: 1px solid #e8e8eb;
        padding: 12px 20px 0 20px;
        width: 50.25%;
    }
    .article .article-info .author {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 0 100px;
    }
    .article .article-info .author figure {
        width: 51px;
        height: 51px;
        margin: 0 18px 0 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
    .article .article-info .author figure img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        display: block;
        border-radius: 100%;
    }
    .article .article-info .author p {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }
    .article .article-info .author p span {
        display: block;
        margin: 4px 0 0;
        font-size: 14px;
        line-height: normal;
        color: #333;
    }
    .article .article-info .article-nav {
        padding: 0 0 125px;
    }
    .article .article-info .article-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .article .article-info .article-nav ul li {
        font-size: 14px;
        font-weight: 400;
        line-height: normal;
        text-transform: capitalize;
        margin: 0 0 16px;
    }
    .article .article-info .article-nav ul li a {
        color: #999;
    }
    .article .article-info .article-nav ul li a.active {
        color: #000;
    }
    .article .article-sidebar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        height: 100%;
        max-width: 347px;
    }
    .article .article-sidebar:after {
        content: "";
        width: 1px;
        height: 100%;
    }
    .article .article-sidebar .sticky {
        width: 100%;
        position: sticky;
        top: 100px;
    }
    .article .article-content {
        width: 49.75%;
        border-left: 1px solid #e8e8eb;
        padding: 12px 0 125px 24px;
    }
    .article .article-content h1,
    .article .article-content .h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    .article .article-content h2,
    .article .article-content .h2 {
        font-size: 22px;
        line-height: 1.2;
        opacity: 1;
    }
    .article .article-next {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 14px 20px;
        margin: 47px 0 0;
        min-height: 155px;
    }
    .article .article-next .title {
        font-size: 16px;
        margin: 0;
        white-space: nowrap;
        margin: 0 20px 0 0;
    }
    .article .article-next p {
        font-size: 16px !important;
        line-height: 1.2;
        max-width: 360px;
    }
}
@media (min-width: 1440px) {
    .article .article-info .author {
        margin: 0 0 275px;
    }
    .article .article-info .article-nav ul li {
        line-height: 1.2;
    }
    .article .article-content .tags {
        margin: 0 0 42px;
    }
    .article .article-content h1,
    .article .article-content .h1 {
        font-size: 40px;
        line-height: 1.2;
    }
    .article .article-content h2,
    .article .article-content .h2 {
        font-size: 30px;
        line-height: 1.2;
        margin: 45px 0 44px;
    }
    .article .article-content .subtitle {
        font-size: 24px;
        line-height: 30px;
        opacity: 0.8;
        margin: 0 0 20px;
    }
    .article .article-content p {
        font-size: 18px;
        line-height: 24px;
        margin: 0 0 24px;
    }
    .article .article-content figure {
        margin-bottom: 47px;
    }
    .article .article-content figure figcaption {
        margin: 10px 0 0;
    }
}
.block-contacts {
    margin: 100px 0 0;
    padding: 14px 0 0;
}
.block-contacts .contacts-intro {
    padding: 0 20px 0 0;
    margin: 0 0 100px;
    font-size: 16px;
    line-height: 1.2;
}
.block-contacts .contacts-intro p {
    margin: 30px 0 0;
}
.block-contacts .contact-form {
    background-color: transparent;
    padding: 0 0 14px;
}
.block-contacts .contact-form .form {
    padding: 0 !important;
}
.block-contacts .contact-form .form-control {
    background-color: #f7f8fa;
}
.block-contacts .contact-form .submit {
    padding: 88px 0 0;
}
.block-contacts .contact-form .submit .btn {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.block-contacts .contact-form .submit .info {
    margin: 20px 0 0;
    color: #333;
    max-width: 240px;
}
.block-contacts .contacts-info .row > div:last-child .item {
    height: 151px;
}
.block-contacts .contacts-info .item {
    padding: 14px 0;
    height: 202px;
    font-weight: 400;
}
.block-contacts .contacts-info .item .title {
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 22px;
}
.block-contacts .contacts-info .item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}
.block-contacts .contacts-info .sticker {
    display: none;
}
@media (min-width: 768px) {
    .block-contacts .contact-form .submit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        padding: 8px 0 0;
    }
    .block-contacts .contact-form .submit .btn {
        width: 50%;
    }
    .block-contacts .contact-form .submit .info {
        margin: 0;
    }
    .block-contacts .contacts-info .row > div:last-child {
        border-left: 1px solid #e8e8eb;
    }
    .block-contacts .contacts-info .row > div:last-child .item {
        border: none !important;
        height: 200px;
    }
    .block-contacts .contacts-info .item {
        padding: 10px 0;
        height: 200px;
    }
    .block-contacts .contacts-info .item .title {
        color: #000;
        padding: 0 0 20px;
        font-size: 18px;
        line-height: 22px;
        border-bottom: 1px solid #e8e8eb;
        margin: 0 0 20px;
    }
}
@media (min-width: 1024px) {
    .block-contacts .container-fluid > .row > div:last-child,
    .block-contacts .container-sm > .row > div:last-child,
    .block-contacts .container-md > .row > div:last-child,
    .block-contacts .container-lg > .row > div:last-child,
    .block-contacts .container-xl > .row > div:last-child,
    .block-contacts .container-xxl > .row > div:last-child {
        border-left: 1px solid #e8e8eb;
    }
    .block-contacts .container-fluid > .row:nth-child(2),
    .block-contacts .container-sm > .row:nth-child(2),
    .block-contacts .container-md > .row:nth-child(2),
    .block-contacts .container-lg > .row:nth-child(2),
    .block-contacts .container-xl > .row:nth-child(2),
    .block-contacts .container-xxl > .row:nth-child(2) {
        border: none !important;
    }
    .block-contacts .contact-form {
        padding: 0 0 60px;
    }
    .block-contacts .contact-form .submit .btn {
        width: 60%;
        max-width: 437px;
    }
    .block-contacts .contacts-info {
        border-top: 1px solid #e8e8eb;
        padding: 12px 0;
        height: 100%;
        position: relative;
    }
    .block-contacts .contacts-info .row {
        height: 100%;
    }
    .block-contacts .contacts-info .row > div:last-child .item {
        height: auto;
    }
    .block-contacts .contacts-info .item {
        height: auto;
    }
    .block-contacts .contacts-info .item .title {
        color: #000;
        padding: 0 0 20px;
        font-size: 20px;
        line-height: 30px;
        border-bottom: 1px solid #e8e8eb;
        margin: 0 0 20px;
    }
    .block-contacts .contacts-info .sticker {
        position: absolute;
        display: block;
        left: 12px;
        bottom: 30px;
        font-size: 16px;
        line-height: 19px;
    }
    .block-contacts .contacts-image {
        margin: 0;
        padding: 0 0 27px;
    }
    .block-contacts .contacts-image img {
        display: block;
        width: 100%;
        height: auto;
    }
}
@media (min-width: 1440px) {
    .block-contacts {
        margin: 145px 0 0;
    }
    .block-contacts .contacts-intro {
        padding: 26px 0 0;
        font-size: 24px;
        line-height: 30px;
    }
    .block-contacts .contacts-intro p {
        margin: 44px 0 0;
        color: #333;
        max-width: 515px;
    }
    .block-contacts .contact-form {
        padding: 24px 0 63px;
    }
    .block-contacts .contacts-info {
        padding: 12px;
    }
    .block-contacts .contacts-info .item .title {
        padding: 0 0 20px;
        font-size: 24px;
        line-height: 30px;
    }
    .block-contacts .contacts-info .item p {
        font-size: 20px;
        line-height: 1.2;
        color: #333;
    }
}
.block-search-result {
    padding: 100px 0 0;
    min-height: 100vh;
}
.block-search-result .block-search-header {
    padding: 12px 0;
}
.block-search-result .block-search-header a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}
.block-search-result .block-search-header a .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 34px;
    height: 34px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 99px;
    border: 1px solid #dcdcde;
    margin: 0 12px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-search-result .block-search-header a span {
    color: #59595a;
}
.block-search-result .block-search-content {
    padding: 12px 0;
}
.block-search-result .block-search-content .block-search-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 100px;
}
.block-search-result .block-search-content .block-search-title .num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 28px;
    height: 28px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 99px;
    background: #f7f8fa;
    font-size: 14px;
    font-weight: 400;
    margin: 0 12px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-search-result .block-search-content .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
}
.block-search-result .block-search-content .search-card {
    border: 1px solid #e8e8eb;
    padding: 20px;
}
.block-search-result .block-search-content .search-card .title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0 0 20px;
}
.block-search-result .block-search-content .search-card p {
    margin: 0 0 40px;
}
.block-search-result .block-search-content .search-card .link-arrow {
    color: #000;
    padding: 8px 0;
}
.block-search-result .block-search-content .search-card .link-arrow .icon {
    background-color: #000;
}
.block-search-result .block-search-content .search-card .link-arrow .icon svg path {
    stroke: #fff;
}
.block-search-result .block-search-content--empty {
    height: calc(100vh - 160px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.block-search-result .block-search-content--empty p {
    color: #59595a;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
@media (min-width: 768px) {
    .block-search-result .block-search-content .search-card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
    }
    .block-search-result .block-search-content .search-card .link-arrow {
        margin-top: auto;
    }
}
@media (min-width: 1440px) {
    .block-search-result {
        padding: 145px 0 0;
    }
    .block-search-result .block-search-header {
        padding: 20px 0;
    }
    .block-search-result .block-search-header a {
        font-size: 32px;
        line-height: 1;
    }
    .block-search-result .block-search-header a .icon {
        width: 39px;
        height: 39px;
        margin: 0 16px 0 0;
    }
    .block-search-result .block-search-content {
        padding: 20px 0 27px;
    }
    .block-search-result .block-search-content .block-search-title {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 36px;
    }
    .block-search-result .block-search-content .block-search-title .num {
        width: 30px;
        height: 30px;
    }
    .block-search-result .block-search-content .search-card {
        min-height: 382px;
    }
    .block-search-result .block-search-content .search-card .title {
        font-size: 20px;
        line-height: 26px;
        margin: 0 0 45px;
    }
    .block-search-result .block-search-content .search-card .link-arrow {
        font-size: 14px;
        padding: 4px 0;
    }
    .block-search-result .block-search-content--empty p {
        font-size: 20px;
    }
}
.block-cases {
    padding: 0 0 80px;
}
.block-cases .cases-list .case-list-item {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 13px 0 20px;
    border-bottom: 1px solid #e8e8eb;
}
.block-cases .cases-list .case-list-item .title {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    padding: 0 0 0 27px;
    margin: 0 0 12px;
    text-transform: uppercase;
}
.block-cases .cases-list .case-list-item .title:before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 2px;
    background: #04a;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.block-cases .cases-list .case-list-item p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 42px;
    color: #59595a;
    margin: 0 0 15px;
}
.block-cases .cases-list .case-list-item .tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.block-cases .cases-list .case-list-item .tags span {
    font-family: "Roboto Mono", monospace;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 5px 5px 0 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px 1px;
    height: 24px;
    border: 1px solid #8697b3;
    border-radius: 30px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000;
}
@media (min-width: 768px) {
    .block-cases .cases-list .case-list-item .description {
        border-left: 3px solid #04a;
        padding: 0 0 0 20px;
    }
    .block-cases .cases-list .case-list-item .description p {
        margin: 0;
        display: block;
        overflow: visible;
        text-overflow: unset;
        max-height: none;
    }
}
@media (min-width: 1024px) {
    .block-cases .cases-list .case-list-item {
        padding: 52px 0;
    }
    .block-cases .cases-list .case-list-item .container-fluid,
    .block-cases .cases-list .case-list-item .container-sm,
    .block-cases .cases-list .case-list-item .container-md,
    .block-cases .cases-list .case-list-item .container-lg,
    .block-cases .cases-list .case-list-item .container-xl,
    .block-cases .cases-list .case-list-item .container-xxl {
        position: relative;
    }
    .block-cases .cases-list .case-list-item .container-fluid:after,
    .block-cases .cases-list .case-list-item .container-sm:after,
    .block-cases .cases-list .case-list-item .container-md:after,
    .block-cases .cases-list .case-list-item .container-lg:after,
    .block-cases .cases-list .case-list-item .container-xl:after,
    .block-cases .cases-list .case-list-item .container-xxl:after {
        content: "";
        position: absolute;
        right: 20px;
        top: 0;
        background: url(../img/icons/ico-arrow-case.svg);
        width: 43px;
        height: 43px;
    }
    .block-cases .cases-list .case-list-item .description {
        margin: 0 100px 0 0;
    }
}
@media (min-width: 1440px) {
    .block-cases .cases-list .case-list-item .container-fluid:after,
    .block-cases .cases-list .case-list-item .container-sm:after,
    .block-cases .cases-list .case-list-item .container-md:after,
    .block-cases .cases-list .case-list-item .container-lg:after,
    .block-cases .cases-list .case-list-item .container-xl:after,
    .block-cases .cases-list .case-list-item .container-xxl:after {
        right: 40px;
    }
    .block-cases .cases-list .case-list-item .title {
        font-size: 24px;
        line-height: 30px;
        padding: 0 0 0 30px;
        margin: 0 0 14px;
    }
    .block-cases .cases-list .case-list-item .description {
        margin: 0 100px 0 0;
        max-width: 783px;
    }
    .block-cases .cases-list .case-list-item .description p {
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
    }
}
.block-case-singe {
    padding: 40px 0;
}
.block-case-singe .case-headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -12px 12px;
    padding: 8px 12px 20px;
    border-bottom: 1px solid #e8e8eb;
}
.block-case-singe .case-headline .number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 29px;
    height: 29px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 99px;
    background: #d1003f;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin: 0 12px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-case-singe .case-headline h1,
.block-case-singe .case-headline .h1 {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin: 0;
}
.block-case-singe h4,
.block-case-singe .h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 12px;
}
.block-case-singe .box-border {
    --space: 8px;
    padding-top: var(--space);
    padding-bottom: var(--space);
    max-width: 775px;
}
.block-case-singe .block-title {
    margin: 0 0 100px;
}
.block-case-singe .cite .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 30px;
}
.block-case-singe .cite .author figure {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #04a;
    margin: 0 20px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.block-case-singe .cite .author figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    display: block;
    border-radius: 100%;
}
.block-case-singe .cite .author p {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    max-width: 390px;
}
.block-case-singe .cite .author p span {
    display: block;
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}
.block-case-singe .cite blockquote {
    margin: 0;
}
.block-case-singe .cite blockquote p {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
}
.block-case-singe--red {
    border-top: 1px solid #e8e8eb;
    border-bottom: 1px solid #e8e8eb;
    background: #fcf7f9;
    color: #6b0020;
}
.block-case-singe--blue {
    border-top: 1px solid #e8e8eb;
    border-bottom: 1px solid #e8e8eb;
    background: #f5f7fa;
}
.block-case-singe--blue .block-title {
    margin: 0 0 40px;
}
.block-case-singe:nth-child(2) .box-border {
    max-width: 860px;
}
.block-case-singe:nth-child(6) .cite .author {
    margin: 18px 0 40px;
}
.block-case-singe:nth-child(6) .cite blockquote {
    max-width: 783px;
}
@media (min-width: 768px) {
    .block-case-singe .case-headline {
        margin: 0;
        padding: 0;
        border-bottom: none;
    }
    .block-case-singe .block-title {
        margin: 0 0 30px;
    }
    .block-case-singe--blue {
        border: none;
    }
}
@media (min-width: 1440px) {
    .block-case-singe {
        padding: 75px 0;
    }
    .block-case-singe .case-headline h1,
    .block-case-singe .case-headline .h1 {
        font-size: 40px;
        line-height: 1.2;
    }
    .block-case-singe h4,
    .block-case-singe .h4 {
        margin: 0 0 28px;
    }
    .block-case-singe .cite .author {
        margin: 8px 0 30px;
    }
    .block-case-singe .cite .author figure {
        width: 80px;
        height: 80px;
    }
    .block-case-singe .cite .author p {
        font-size: 16px;
        line-height: 20px;
    }
    .block-case-singe .cite .author p span {
        margin: 9px 0 0;
        font-size: 14px;
    }
    .block-case-singe .cite blockquote p {
        line-height: 26px;
    }
    .block-case-singe .numbered-list ol li {
        padding: 19px 0;
    }
    .block-case-singe .numbered-list ol li:first-child {
        padding-top: 0;
    }
    .block-case-singe .numbered-list ol li p {
        max-width: 560px;
    }
}
.description-list {
    border: 1px solid #e8e8eb;
    border-radius: 8px;
}
.description-list .row > div {
    border-bottom: 1px solid #e8e8eb;
}
.description-list .row > div:last-child {
    border: none;
}
/* .description-list .row > div:nth-child(2n + 1) .item .tag:before {
    background: -webkit-gradient(linear, left top, right top, from(#d1003f), to(rgba(0, 68, 170, 0)));
    background: linear-gradient(to right, #d1003f 0%, rgba(0, 68, 170, 0) 100%);
} */
.description-list .row > div:nth-child(2n + 1) .item .tag span {
    background-color: #04a;
}
/* .description-list .row > div:nth-child(2n) .item .tag:before {
    background: -webkit-gradient(linear, left top, right top, from(#04a), to(rgba(0, 68, 170, 0)));
    background: linear-gradient(to right, #04a 0%, rgba(0, 68, 170, 0) 100%);
} */
.description-list .row > div:nth-child(2n) .item .tag span {
    background-color: #d1003f;
}
.description-list .item {
    padding: 20px;
}
.description-list .item .tag {
    color: #fff;
    border: none;
    position: relative;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
    padding: 3px;
    height: auto;
}
.description-list .item .tag:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 200%;
    aspect-ratio: 1/1;
    border-radius: 30px;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
    -webkit-animation: rotate1 2s linear 0s infinite forwards;
    animation: rotate1 2s linear 0s infinite forwards;
    -webkit-transform-origin: center;
    transform-origin: center;
}
.description-list .item .tag span {
    position: relative;
    padding: 7px 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 30px;
}
@keyframes rotate1 {
    0% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
        transform: translate3d(-50%, -50%, 0) rotate(0);
    }
    100% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}
@-webkit-keyframes rotate1 {
    0% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(0);
        transform: translate3d(-50%, -50%, 0) rotate(0);
    }
    100% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}
@media (min-width: 768px) {
    .description-list .row > div:nth-child(1) {
        border-right: 1px solid #e8e8eb;
    }
    .description-list .row > div:nth-child(3) {
        border-bottom: none;
        border-right: 1px solid #e8e8eb;
    }
    /* .description-list .row > div:nth-child(1) .item .tag:before,
    .description-list .row > div:nth-child(4) .item .tag:before {
        background: -webkit-gradient(linear, left top, right top, from(#d1003f), to(rgba(0, 68, 170, 0)));
        background: linear-gradient(to right, #d1003f 0%, rgba(0, 68, 170, 0) 100%);
    }
    .description-list .row > div:nth-child(1) .item .tag span,
    .description-list .row > div:nth-child(4) .item .tag span {
        background-color: #04a;
    }
    .description-list .row > div:nth-child(2) .item .tag:before,
    .description-list .row > div:nth-child(3) .item .tag:before {
        background: -webkit-gradient(linear, left top, right top, from(#04a), to(rgba(0, 68, 170, 0)));
        background: linear-gradient(to right, #04a 0%, rgba(0, 68, 170, 0) 100%);
    }
    .description-list .row > div:nth-child(2) .item .tag span,
    .description-list .row > div:nth-child(3) .item .tag span {
        background-color: #d1003f;
    } */
}
@media (min-width: 1024px) {
    .description-list .item {
        padding: 23px 50px 32px 30px;
    }
    .description-list .item .tag {
        margin: 0 0 25px;
    }
}
.block-activity .block-title {
    margin: 0 0 30px;
}
.block-activity figure {
    text-align: center;
}
.block-activity figure img,
.block-activity figure svg {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.block-activity ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.block-activity ul li {
    margin: 0 0 15px;
}
.block-activity ul a {
    display: block;
    position: relative;
    padding: 0 0 0 33px;
}
.block-activity ul a:before {
    content: "";
    width: 18px;
    height: 6px;
    border-radius: 50px;
    background: #e8e8eb;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -3px 0 0;
}
.block-activity ul a:after {
    content: "";
    width: 18px;
    height: 6px;
    border-radius: 50px;
    background: #d1003f;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -3px 0 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.block-activity ul a:hover {
    color: #d1003f;
}
.block-activity ul a:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
@media (min-width: 576px) {
    .block-activity ul {
        width: 50%;
        padding: 0 30px 0 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
@media (min-width: 1024px) {
    .block-activity .block-title {
        margin: 0 0 41px;
    }
    .block-activity figure {
        text-align: right;
    }
    .block-activity ul {
        font-size: 18px;
        line-height: 1.2;
    }
    .block-activity ul li {
        margin: 0 0 20px;
    }
    .block-activity ul li:last-child {
        margin: 0;
    }
}
@media (min-width: 1440px) {
    .block-activity ul {
        font-size: 21px;
        padding: 0 50px 0 0;
    }
    .block-activity ul li {
        margin: 0 0 30px;
    }
}

/* Update  New */
@media (min-width: 1600px) {
	.banner.banner-top img {
		max-height: 920px;
	}
}

@media (min-width: 1921px) {
	.banner.banner-top img {
		max-height: 1200px;
	}
}


@media only screen and (max-width: 600px) {
	.header .header-panel--meta .lang-wrapper {
    width: 104px;
	}
	.header .header-panel--meta .lang-wrapper {
    position: relative;
    margin-left: 12px;
	}
	.header .header-panel--meta .lang-wrapper .lang-current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 30px;
    padding: 0 18px;
	}
	.header .header-panel--meta .lang-wrapper ul {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
    list-style: none;
    line-height: 2;
    display: none;
	}
	.header .header-panel--meta .lang-wrapper .lang-current:after {
    content: "";
    display: block;
    width: 24px;
    height: 12px;
    background: url(../img/icons/ico-arrow-down.svg) right center no-repeat;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 18px;
	}
}

a.rnb-quiz {
    background: #ffffff !important;
    border-radius: 50px !important;
    padding: 4px 12px !important;
}