@charset "UTF-8";

/*!
 * Bootstrap  v5.2.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
    --bs-blue: #334ac0;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #692340;
    --bs-orange: #fd7e14;
    --bs-yellow: #f39568;
    --bs-green: #0abf53;
    --bs-teal: #077c76;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #8c98a4;
    --bs-gray-dark: #51596c;
    --bs-gray-100: #f5f7fa;
    --bs-gray-200: #f3f6f9;
    --bs-gray-300: #dce0e5;
    --bs-gray-400: #bdc5d1;
    --bs-gray-500: #97a4af;
    --bs-gray-600: #8c98a4;
    --bs-gray-700: #677788;
    --bs-gray-800: #51596c;
    --bs-gray-900: #2d374b;
    --bs-primary: #0abf53;
    --bs-secondary: #51596c;
    --bs-success: #077c76;
    --bs-info: #334ac0;
    --bs-warning: #f39568;
    --bs-danger: #692340;
    --bs-light: #f5f7fa;
    --bs-dark: #2d374b;
    --bs-primary-rgb: 10, 191, 83;
    --bs-secondary-rgb: 81, 89, 108;
    --bs-success-rgb: 7, 124, 118;
    --bs-info-rgb: 51, 74, 192;
    --bs-warning-rgb: 243, 149, 104;
    --bs-danger-rgb: 105, 35, 64;
    --bs-light-rgb: 245, 247, 250;
    --bs-dark-rgb: 45, 55, 75;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 81, 89, 108;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0)
    );
    --bs-body-font-family: Inter, serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #51596c;
    --bs-body-bg: #fff;
    --bs-border-width: 0.0625rem;
    --bs-border-style: solid;
    --bs-border-color: rgba(220, 224, 229, 0.6);
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.8125rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 6.1875rem;
    --bs-link-color: #0abf53;
    --bs-link-hover-color: #07853a;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fdeae1;
}

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

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

h6,
h5,
h4,
h3,
h2,
h1 {
    margin-top: 0;
    margin-bottom: 0.8125rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2d374b;
}

h1 {
    font-size: calc(1.4rem + 1.8vw);
}

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

h2 {
    font-size: calc(1.35rem + 1.2vw);
    counter-reset: h3counter;
}

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

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

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

h4 {
    font-size: calc(1.25625rem + 0.075vw);
}

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

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

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

ul,ol {
    padding-left: 2rem;
}

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

ul ul {
    margin-bottom: 0;
}

blockquote {
    margin: 0 0 1rem;
}

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

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

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

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not(
        [type="week"]
    ):not([type="time"])::-webkit-calendar-picker-indicator {
    display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

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

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

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

/* rtl:raw:
[type="tel"],[type="url"],[type="email"],[type="number"] {
  direction: ltr;
}
*/

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

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

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

[hidden] {
    display: none !important;
}

.display-1 {
    font-size: calc(1.925rem + 8.1vw);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 8rem;
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 700;
    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: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}

.display-4 {
    font-size: calc(1.5rem + 3vw);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.75rem;
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem;
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem;
    }
}

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

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.blockquote {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.blockquote > :last-child {
    margin-bottom: 0;
}

.blockquote-footer {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    color: #2d374b;
}

.blockquote-footer::before {
    content: "— ";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    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 {
    flex: 1 0 0%;
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65;
}

.btn {
    --bs-btn-padding-x: 1.8125rem;
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 0.9375rem;
    --bs-btn-font-weight: 700;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #51596c;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 0.125rem;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.25rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0 rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn,
:not(.btn-check) + .btn:active,
.btn:first-child:active,
.btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible,
:not(.btn-check) + .btn:active:focus-visible,
.btn:first-child:active:focus-visible,
.btn.show:focus-visible {
    box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0abf53;
    --bs-btn-border-color: #0abf53;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #09a247;
    --bs-btn-hover-border-color: #089942;
    --bs-btn-focus-shadow-rgb: 47, 201, 109;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #089942;
    --bs-btn-active-border-color: #088f3e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0abf53;
    --bs-btn-disabled-border-color: #0abf53;
}

.btn-light {
    --bs-btn-color: #000;
    --bs-btn-bg: #f5f7fa;
    --bs-btn-border-color: #f5f7fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d0d2d5;
    --bs-btn-hover-border-color: #c4c6c8;
    --bs-btn-focus-shadow-rgb: 208, 210, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c4c6c8;
    --bs-btn-active-border-color: #b8b9bc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f5f7fa;
    --bs-btn-disabled-border-color: #f5f7fa;
}

.btn-dark {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2d374b;
    --bs-btn-border-color: #2d374b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #4d5566;
    --bs-btn-hover-border-color: #424b5d;
    --bs-btn-focus-shadow-rgb: 77, 85, 102;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #575f6f;
    --bs-btn-active-border-color: #424b5d;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2d374b;
    --bs-btn-disabled-border-color: #2d374b;
}

.btn-link {
    --bs-btn-font-weight: 400;
    --bs-btn-color: var(--bs-link-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--bs-link-hover-color);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: var(--bs-link-hover-color);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: #8c98a4;
    --bs-btn-disabled-border-color: transparent;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-shadow-rgb: 47, 201, 109;
    text-decoration: none;
}

.btn-link:focus-visible {
    color: var(--bs-btn-color);
}

.btn-link:hover {
    color: var(--bs-btn-hover-color);
}

.btn-lg {
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-border-radius: 0.25rem;
}

.btn-sm {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 0.875rem;
    --bs-btn-font-size: 0.8125rem;
    --bs-btn-border-radius: 0.25rem;
}

.collapse:not(.show) {
    display: none;
}

.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: #2d374b;
    --bs-nav-link-hover-color: #07853a;
    --bs-nav-link-disabled-color: #8c98a4;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}

.nav-link:hover,
.nav-link:focus {
    color: var(--bs-nav-link-hover-color);
}

.nav-pills {
    --bs-nav-pills-border-radius: 0.5rem;
    --bs-nav-pills-link-active-color: initial;
    --bs-nav-pills-link-active-bg: #fff;
}

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link:disabled {
    color: var(--bs-nav-link-disabled-color);
    background-color: transparent;
    border-color: transparent;
}

.nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg);
}

.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.75rem;
    --bs-navbar-color: #2d374b;
    --bs-navbar-hover-color: #2d374b;
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-padding-y: 0.40625rem;
    --bs-navbar-brand-margin-end: 1.5rem;
    --bs-navbar-brand-font-size: 1.125rem;
    --bs-navbar-brand-color: #51596c;
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 0.75rem;
    --bs-navbar-toggler-padding-y: 0.5rem;
    --bs-navbar-toggler-padding-x: 0.5rem;
    --bs-navbar-toggler-font-size: 1.125rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d374b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
    --bs-navbar-toggler-border-radius: 0.25rem;
    --bs-navbar-toggler-focus-width: 0;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .show > .nav-link {
    color: var(--bs-navbar-active-color);
}

.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-navbar-color);
}

.navbar-text a,
.navbar-text a:hover,
.navbar-text a:focus {
    color: var(--bs-navbar-active-color);
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y)
        var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: transparent;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-sm .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }

    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.navbar-expand .navbar-nav {
    flex-direction: row;
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-dark {
    --bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: #fff;
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
    --bs-card-spacer-y: 1.75rem;
    --bs-card-spacer-x: 1.75rem;
    --bs-card-title-spacer-y: 0.25rem;
    --bs-card-border-width: 0.0625rem;
    --bs-card-border-color: rgba(220, 224, 229, 0.6);
    --bs-card-border-radius: 0.8125rem;
    --bs-card-box-shadow: 0rem 1rem 1.75rem 0rem rgba(45, 55, 75, 0.1);
    --bs-card-inner-border-radius: 0.75rem;
    --bs-card-cap-padding-y: 1.75rem;
    --bs-card-cap-padding-x: 1.75rem;
    --bs-card-cap-bg: transparent;
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: #fff;
    --bs-card-img-overlay-padding: 1.75rem 1.75rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
}

.card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
}

.card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius)
        var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius)
        var(--bs-card-inner-border-radius);
}

.card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 0.5rem;
    }
}

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:options: {
  "autoRename": true,  "stringMap":[ {
    "name"    : "prev-next",    "search"  : "prev",    "replace" : "next"
  } ]
} */

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

@keyframes placeholder-wave {
    100% {
        mask-position: -200% 0%;
    }
}

.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(10, 191, 83, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
    color: #000 !important;
    background-color: RGBA(245, 247, 250, var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(45, 55, 75, var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
    color: #0abf53 !important;
}

.link-primary:hover,
.link-primary:focus {
    color: #089942 !important;
}

.link-light {
    color: #f5f7fa !important;
}

.link-light:hover,
.link-light:focus {
    color: #f7f9fb !important;
}

.link-dark {
    color: #2d374b !important;
}

.link-dark:hover,
.link-dark:focus {
    color: #242c3c !important;
}

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

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

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

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

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

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

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

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

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

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

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

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

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

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

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

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

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

.top-auto {
    top: auto !important;
}

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

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

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

.bottom-auto {
    bottom: auto !important;
}

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

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

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

.end-auto {
    right: auto !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;
}

.h-65 {
    height: 65% !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-content-between {
    align-content: space-between !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.5rem !important;
}

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

.me-6 {
    margin-right: 2.5rem !important;
}

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

.me-8 {
    margin-right: 3.5rem !important;
}

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

.me-10 {
    margin-right: 4.5rem !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.5rem !important;
}

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

.mb-6 {
    margin-bottom: 2.5rem !important;
}

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

.mb-8 {
    margin-bottom: 3.5rem !important;
}

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

.mb-10 {
    margin-bottom: 4.5rem !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.5rem !important;
}

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

.ms-6 {
    margin-left: 2.5rem !important;
}

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

.ms-8 {
    margin-left: 3.5rem !important;
}

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

.ms-10 {
    margin-left: 4.5rem !important;
}

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

.me-n1 {
    margin-right: -0.25rem !important;
}

.me-n2 {
    margin-right: -0.5rem !important;
}

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

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

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

.me-n6 {
    margin-right: -2.5rem !important;
}

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

.me-n8 {
    margin-right: -3.5rem !important;
}

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

.me-n10 {
    margin-right: -4.5rem !important;
}

.mb-n1 {
    margin-bottom: -0.25rem !important;
}

.mb-n2 {
    margin-bottom: -0.5rem !important;
}

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

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

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

.mb-n6 {
    margin-bottom: -2.5rem !important;
}

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

.mb-n8 {
    margin-bottom: -3.5rem !important;
}

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

.mb-n10 {
    margin-bottom: -4.5rem !important;
}

.ms-n1 {
    margin-left: -0.25rem !important;
}

.ms-n2 {
    margin-left: -0.5rem !important;
}

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

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

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

.ms-n6 {
    margin-left: -2.5rem !important;
}

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

.ms-n8 {
    margin-left: -3.5rem !important;
}

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

.ms-n10 {
    margin-left: -4.5rem !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.5rem !important;
}

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

.p-6 {
    padding: 2.5rem !important;
}

.p-7 {
    padding: 3rem !important;
}

.p-8 {
    padding: 3.5rem !important;
}

.p-9 {
    padding: 4rem !important;
}

.p-10 {
    padding: 4.5rem !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.5rem !important;
    padding-left: 1.5rem !important;
}

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

.px-6 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
}

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

.px-8 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
}

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

.px-10 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !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.5rem !important;
    padding-bottom: 1.5rem !important;
}

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

.py-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

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

.py-8 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

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

.py-10 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !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.5rem !important;
}

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

.pt-6 {
    padding-top: 2.5rem !important;
}

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

.pt-8 {
    padding-top: 3.5rem !important;
}

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

.pt-10 {
    padding-top: 4.5rem !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.5rem !important;
}

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

.pb-6 {
    padding-bottom: 2.5rem !important;
}

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

.pb-8 {
    padding-bottom: 3.5rem !important;
}

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

.pb-10 {
    padding-bottom: 4.5rem !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.5rem !important;
}

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

.gap-6 {
    gap: 2.5rem !important;
}

.gap-7 {
    gap: 3rem !important;
}

.gap-8 {
    gap: 3.5rem !important;
}

.gap-9 {
    gap: 4rem !important;
}

.gap-10 {
    gap: 4.5rem !important;
}

.fs-1 {
    font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-2 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

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

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

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

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

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

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

.fw-medium {
    font-weight: 500 !important;
}

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

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

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

/* rtl:begin:remove */

/* rtl:end:remove */

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-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-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-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}

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

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(
        var(--bs-primary-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-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;
}

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

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

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

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

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

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

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

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

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

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

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

.content-space-t-0 {
    padding-top: 0 !important;
}

.content-space-t-1 {
    padding-top: 3.5rem !important;
}

.content-space-t-2 {
    padding-top: 5rem !important;
}

.content-space-t-3 {
    padding-top: 7.5rem !important;
}

.content-space-t-4 {
    padding-top: 10rem !important;
}

.content-space-t-auto {
    padding-top: auto !important;
}

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

.content-space-1 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

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

.content-space-3 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
}

.content-space-4 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
}

.content-space-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
}

.bg-soft-primary {
    background-color: rgba(10, 191, 83, 0.075) !important;
}

.bg-soft-light {
    background-color: rgba(245, 247, 250, 0.075) !important;
}

.bg-soft-dark {
    background-color: rgba(45, 55, 75, 0.075) !important;
}

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

@media (min-width: 576px) {
    .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-flex {
        display: flex !important;
    }

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

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

    .position-sm-relative {
        position: relative !important;
    }

    .position-sm-absolute {
        position: absolute !important;
    }

    .position-sm-fixed {
        position: fixed !important;
    }

    .top-sm-0 {
        top: 0 !important;
    }

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

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

    .top-sm-auto {
        top: auto !important;
    }

    .bottom-sm-0 {
        bottom: 0 !important;
    }

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

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

    .bottom-sm-auto {
        bottom: auto !important;
    }

    .end-sm-0 {
        right: 0 !important;
    }

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

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

    .end-sm-auto {
        right: auto !important;
    }

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

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

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

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

    .h-sm-auto {
        height: auto !important;
    }

    .h-sm-65 {
        height: 65% !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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.5rem !important;
    }

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

    .me-sm-6 {
        margin-right: 2.5rem !important;
    }

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

    .me-sm-8 {
        margin-right: 3.5rem !important;
    }

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

    .me-sm-10 {
        margin-right: 4.5rem !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.5rem !important;
    }

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

    .mb-sm-6 {
        margin-bottom: 2.5rem !important;
    }

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

    .mb-sm-8 {
        margin-bottom: 3.5rem !important;
    }

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

    .mb-sm-10 {
        margin-bottom: 4.5rem !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.5rem !important;
    }

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

    .ms-sm-6 {
        margin-left: 2.5rem !important;
    }

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

    .ms-sm-8 {
        margin-left: 3.5rem !important;
    }

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

    .ms-sm-10 {
        margin-left: 4.5rem !important;
    }

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

    .me-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .me-sm-n2 {
        margin-right: -0.5rem !important;
    }

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

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

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

    .me-sm-n6 {
        margin-right: -2.5rem !important;
    }

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

    .me-sm-n8 {
        margin-right: -3.5rem !important;
    }

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

    .me-sm-n10 {
        margin-right: -4.5rem !important;
    }

    .mb-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

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

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

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

    .mb-sm-n6 {
        margin-bottom: -2.5rem !important;
    }

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

    .mb-sm-n8 {
        margin-bottom: -3.5rem !important;
    }

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

    .mb-sm-n10 {
        margin-bottom: -4.5rem !important;
    }

    .ms-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-sm-n2 {
        margin-left: -0.5rem !important;
    }

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

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

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

    .ms-sm-n6 {
        margin-left: -2.5rem !important;
    }

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

    .ms-sm-n8 {
        margin-left: -3.5rem !important;
    }

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

    .ms-sm-n10 {
        margin-left: -4.5rem !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.5rem !important;
    }

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

    .p-sm-6 {
        padding: 2.5rem !important;
    }

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

    .p-sm-8 {
        padding: 3.5rem !important;
    }

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

    .p-sm-10 {
        padding: 4.5rem !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.5rem !important;
        padding-left: 1.5rem !important;
    }

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

    .px-sm-6 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

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

    .px-sm-8 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

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

    .px-sm-10 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !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.5rem !important;
        padding-bottom: 1.5rem !important;
    }

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

    .py-sm-6 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

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

    .py-sm-8 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .py-sm-10 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !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.5rem !important;
    }

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

    .pt-sm-6 {
        padding-top: 2.5rem !important;
    }

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

    .pt-sm-8 {
        padding-top: 3.5rem !important;
    }

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

    .pt-sm-10 {
        padding-top: 4.5rem !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.5rem !important;
    }

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

    .pb-sm-6 {
        padding-bottom: 2.5rem !important;
    }

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

    .pb-sm-8 {
        padding-bottom: 3.5rem !important;
    }

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

    .pb-sm-10 {
        padding-bottom: 4.5rem !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.5rem !important;
    }

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

    .gap-sm-6 {
        gap: 2.5rem !important;
    }

    .gap-sm-7 {
        gap: 3rem !important;
    }

    .gap-sm-8 {
        gap: 3.5rem !important;
    }

    .gap-sm-9 {
        gap: 4rem !important;
    }

    .gap-sm-10 {
        gap: 4.5rem !important;
    }

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

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

    .content-space-t-sm-0 {
        padding-top: 0 !important;
    }

    .content-space-t-sm-1 {
        padding-top: 3.5rem !important;
    }

    .content-space-t-sm-2 {
        padding-top: 5rem !important;
    }

    .content-space-t-sm-3 {
        padding-top: 7.5rem !important;
    }

    .content-space-t-sm-4 {
        padding-top: 10rem !important;
    }

    .content-space-t-sm-auto {
        padding-top: auto !important;
    }

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

    .content-space-sm-1 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .content-space-sm-3 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important;
    }

    .content-space-sm-4 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .content-space-sm-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }
}

@media (min-width: 768px) {
    .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-flex {
        display: flex !important;
    }

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

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

    .position-md-relative {
        position: relative !important;
    }

    .position-md-absolute {
        position: absolute !important;
    }

    .position-md-fixed {
        position: fixed !important;
    }

    .top-md-0 {
        top: 0 !important;
    }

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

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

    .top-md-auto {
        top: auto !important;
    }

    .bottom-md-0 {
        bottom: 0 !important;
    }

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

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

    .bottom-md-auto {
        bottom: auto !important;
    }

    .end-md-0 {
        right: 0 !important;
    }

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

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

    .end-md-auto {
        right: auto !important;
    }

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

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

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

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

    .h-md-auto {
        height: auto !important;
    }

    .h-md-65 {
        height: 65% !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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.5rem !important;
    }

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

    .me-md-6 {
        margin-right: 2.5rem !important;
    }

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

    .me-md-8 {
        margin-right: 3.5rem !important;
    }

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

    .me-md-10 {
        margin-right: 4.5rem !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.5rem !important;
    }

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

    .mb-md-6 {
        margin-bottom: 2.5rem !important;
    }

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

    .mb-md-8 {
        margin-bottom: 3.5rem !important;
    }

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

    .mb-md-10 {
        margin-bottom: 4.5rem !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.5rem !important;
    }

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

    .ms-md-6 {
        margin-left: 2.5rem !important;
    }

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

    .ms-md-8 {
        margin-left: 3.5rem !important;
    }

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

    .ms-md-10 {
        margin-left: 4.5rem !important;
    }

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

    .me-md-n1 {
        margin-right: -0.25rem !important;
    }

    .me-md-n2 {
        margin-right: -0.5rem !important;
    }

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

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

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

    .me-md-n6 {
        margin-right: -2.5rem !important;
    }

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

    .me-md-n8 {
        margin-right: -3.5rem !important;
    }

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

    .me-md-n10 {
        margin-right: -4.5rem !important;
    }

    .mb-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-md-n2 {
        margin-bottom: -0.5rem !important;
    }

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

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

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

    .mb-md-n6 {
        margin-bottom: -2.5rem !important;
    }

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

    .mb-md-n8 {
        margin-bottom: -3.5rem !important;
    }

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

    .mb-md-n10 {
        margin-bottom: -4.5rem !important;
    }

    .ms-md-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-md-n2 {
        margin-left: -0.5rem !important;
    }

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

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

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

    .ms-md-n6 {
        margin-left: -2.5rem !important;
    }

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

    .ms-md-n8 {
        margin-left: -3.5rem !important;
    }

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

    .ms-md-n10 {
        margin-left: -4.5rem !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.5rem !important;
    }

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

    .p-md-6 {
        padding: 2.5rem !important;
    }

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

    .p-md-8 {
        padding: 3.5rem !important;
    }

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

    .p-md-10 {
        padding: 4.5rem !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.5rem !important;
        padding-left: 1.5rem !important;
    }

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

    .px-md-6 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

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

    .px-md-8 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

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

    .px-md-10 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !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.5rem !important;
        padding-bottom: 1.5rem !important;
    }

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

    .py-md-6 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

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

    .py-md-8 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .py-md-10 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !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.5rem !important;
    }

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

    .pt-md-6 {
        padding-top: 2.5rem !important;
    }

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

    .pt-md-8 {
        padding-top: 3.5rem !important;
    }

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

    .pt-md-10 {
        padding-top: 4.5rem !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.5rem !important;
    }

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

    .pb-md-6 {
        padding-bottom: 2.5rem !important;
    }

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

    .pb-md-8 {
        padding-bottom: 3.5rem !important;
    }

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

    .pb-md-10 {
        padding-bottom: 4.5rem !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.5rem !important;
    }

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

    .gap-md-6 {
        gap: 2.5rem !important;
    }

    .gap-md-7 {
        gap: 3rem !important;
    }

    .gap-md-8 {
        gap: 3.5rem !important;
    }

    .gap-md-9 {
        gap: 4rem !important;
    }

    .gap-md-10 {
        gap: 4.5rem !important;
    }

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

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

    .content-space-t-md-0 {
        padding-top: 0 !important;
    }

    .content-space-t-md-1 {
        padding-top: 3.5rem !important;
    }

    .content-space-t-md-2 {
        padding-top: 5rem !important;
    }

    .content-space-t-md-3 {
        padding-top: 7.5rem !important;
    }

    .content-space-t-md-4 {
        padding-top: 10rem !important;
    }

    .content-space-t-md-auto {
        padding-top: auto !important;
    }

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

    .content-space-md-1 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .content-space-md-3 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important;
    }

    .content-space-md-4 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .content-space-md-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }
}

@media (min-width: 992px) {
    .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-flex {
        display: flex !important;
    }

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

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

    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .top-lg-0 {
        top: 0 !important;
    }

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

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

    .top-lg-auto {
        top: auto !important;
    }

    .bottom-lg-0 {
        bottom: 0 !important;
    }

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

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

    .bottom-lg-auto {
        bottom: auto !important;
    }

    .end-lg-0 {
        right: 0 !important;
    }

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

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

    .end-lg-auto {
        right: auto !important;
    }

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

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

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

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

    .h-lg-auto {
        height: auto !important;
    }

    .h-lg-65 {
        height: 65% !important;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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.5rem !important;
    }

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

    .me-lg-6 {
        margin-right: 2.5rem !important;
    }

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

    .me-lg-8 {
        margin-right: 3.5rem !important;
    }

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

    .me-lg-10 {
        margin-right: 4.5rem !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.5rem !important;
    }

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

    .mb-lg-6 {
        margin-bottom: 2.5rem !important;
    }

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

    .mb-lg-8 {
        margin-bottom: 3.5rem !important;
    }

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

    .mb-lg-10 {
        margin-bottom: 4.5rem !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.5rem !important;
    }

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

    .ms-lg-6 {
        margin-left: 2.5rem !important;
    }

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

    .ms-lg-8 {
        margin-left: 3.5rem !important;
    }

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

    .ms-lg-10 {
        margin-left: 4.5rem !important;
    }

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

    .me-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .me-lg-n2 {
        margin-right: -0.5rem !important;
    }

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

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

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

    .me-lg-n6 {
        margin-right: -2.5rem !important;
    }

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

    .me-lg-n8 {
        margin-right: -3.5rem !important;
    }

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

    .me-lg-n10 {
        margin-right: -4.5rem !important;
    }

    .mb-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .mb-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

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

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

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

    .mb-lg-n6 {
        margin-bottom: -2.5rem !important;
    }

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

    .mb-lg-n8 {
        margin-bottom: -3.5rem !important;
    }

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

    .mb-lg-n10 {
        margin-bottom: -4.5rem !important;
    }

    .ms-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .ms-lg-n2 {
        margin-left: -0.5rem !important;
    }

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

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

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

    .ms-lg-n6 {
        margin-left: -2.5rem !important;
    }

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

    .ms-lg-n8 {
        margin-left: -3.5rem !important;
    }

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

    .ms-lg-n10 {
        margin-left: -4.5rem !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.5rem !important;
    }

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

    .p-lg-6 {
        padding: 2.5rem !important;
    }

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

    .p-lg-8 {
        padding: 3.5rem !important;
    }

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

    .p-lg-10 {
        padding: 4.5rem !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.5rem !important;
        padding-left: 1.5rem !important;
    }

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

    .px-lg-6 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

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

    .px-lg-8 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

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

    .px-lg-10 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !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.5rem !important;
        padding-bottom: 1.5rem !important;
    }

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

    .py-lg-6 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

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

    .py-lg-8 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .py-lg-10 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !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.5rem !important;
    }

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

    .pt-lg-6 {
        padding-top: 2.5rem !important;
    }

    .pt-lg-7 {
        padding-top: 3rem !important;
    }

    .pt-lg-8 {
        padding-top: 3.5rem !important;
    }

    .pt-lg-9 {
        padding-top: 4rem !important;
    }

    .pt-lg-10 {
        padding-top: 4.5rem !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.5rem !important;
    }

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

    .pb-lg-6 {
        padding-bottom: 2.5rem !important;
    }

    .pb-lg-7 {
        padding-bottom: 3rem !important;
    }

    .pb-lg-8 {
        padding-bottom: 3.5rem !important;
    }

    .pb-lg-9 {
        padding-bottom: 4rem !important;
    }

    .pb-lg-10 {
        padding-bottom: 4.5rem !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.5rem !important;
    }

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

    .gap-lg-6 {
        gap: 2.5rem !important;
    }

    .gap-lg-7 {
        gap: 3rem !important;
    }

    .gap-lg-8 {
        gap: 3.5rem !important;
    }

    .gap-lg-9 {
        gap: 4rem !important;
    }

    .gap-lg-10 {
        gap: 4.5rem !important;
    }

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

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

    .content-space-t-lg-0 {
        padding-top: 0 !important;
    }

    .content-space-t-lg-1 {
        padding-top: 3.5rem !important;
    }

    .content-space-t-lg-2 {
        padding-top: 5rem !important;
    }

    .content-space-t-lg-3 {
        padding-top: 7.5rem !important;
    }

    .content-space-t-lg-4 {
        padding-top: 10rem !important;
    }

    .content-space-t-lg-auto {
        padding-top: auto !important;
    }

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

    .content-space-lg-1 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .content-space-lg-3 {
        padding-top: 7.5rem !important;
        padding-bottom: 7.5rem !important;
    }

    .content-space-lg-4 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .content-space-lg-auto {
        padding-top: auto !important;
        padding-bottom: auto !important;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.25rem !important;
    }

    .fs-2 {
        font-size: 1.75rem !important;
    }
}

/*----------------------------------------------------------------------
  * Unify - Multipurpose Responsive Template version v1.0
  * Copyright 2021 Htmlstream
  * Licensed under Bootstrap Themes (https://themes.getbootstrap.com/licenses/)
------------------------------------------------------------------------*/

/*------------------------------------
  Default Styles
------------------------------------*/

a {
    text-decoration: none;
}

:focus,
a:focus,
button:focus {
    outline-color: rgba(10, 191, 83, 0.5);
}

@media (max-width: 767.98px) {
    h1,
    .h1 {
        font-size: calc(1.525rem + 3.3vw);
    }

    h2,
    .h2 {
        font-size: calc(1.425rem + 2.1vw);
    }
}

figure {
    margin-bottom: 0;
}

p,
ul {
    color: #2d374b;
}

/* Chrome, Safari, Edge, Opera */

/* Firefox */

/* Highlight Color */

::-moz-selection {
    color: #0abf53;
    background-color: rgba(10, 191, 83, 0.1);
}

::selection {
    color: #0abf53;
    background-color: rgba(10, 191, 83, 0.1);
}

.bg-primary ::-moz-selection {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-primary ::selection {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/*------------------------------------
  Animation
------------------------------------*/

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 15px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 10px, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -10px, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

/*------------------------------------
  Accordion
------------------------------------*/

/*------------------------------------
  Alert
------------------------------------*/

/*------------------------------------
  Alert Styles
------------------------------------*/

/*------------------------------------
  Avatar
------------------------------------*/

.avatar {
    position: relative;
    display: inline-block;
    width: 2.875rem;
    height: 2.875rem;
    border-radius: 0.5rem;
}

.avatar:not(img) {
    background-color: #fff;
}

.avatar-img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.avatar-circle {
    border-radius: 50%;
}

.avatar-circle .avatar,
.avatar-circle .avatar-img {
    border-radius: 50%;
}

/*------------------------------------
  Avatar Group
------------------------------------*/

/*------------------------------------
  Avatar Group Sizes
------------------------------------*/

/*------------------------------------
  Avatar Sizes
------------------------------------*/

.avatar.avatar-circle .avatar-status {
    bottom: -0.21875rem;
    right: -0.21875rem;
}

.avatar.avatar-circle .avatar-sm-status {
    bottom: 0;
    right: 0;
}

.avatar.avatar-circle .avatar-lg-status {
    bottom: -0.325rem;
    right: -0.325rem;
}

.avatar-sm {
    width: 2.3125rem;
    height: 2.3125rem;
}

.avatar-sm .avatar-img {
    width: 2.3125rem;
}

.avatar-sm.avatar-circle .avatar-status {
    bottom: -0.21875rem;
    right: -0.21875rem;
}

.avatar-sm.avatar-circle .avatar-sm-status {
    bottom: -0.09375rem;
    right: -0.09375rem;
}

.avatar-sm.avatar-circle .avatar-lg-status {
    bottom: -0.40625rem;
    right: -0.40625rem;
}

.avatar-lg {
    width: 4.25rem;
    height: 4.25rem;
}

.avatar-lg .avatar-img {
    width: 4.25rem;
}

.avatar-lg.avatar-circle .avatar-status {
    bottom: -0.13125rem;
    right: -0.13125rem;
}

.avatar-lg.avatar-circle .avatar-sm-status {
    bottom: 0.09375rem;
    right: 0.09375rem;
}

.avatar-lg.avatar-circle .avatar-lg-status {
    bottom: -0.203125rem;
    right: -0.203125rem;
}

/*------------------------------------
  Avatar Status
------------------------------------*/

.avatar-status {
    position: absolute;
    bottom: -0.525rem;
    right: -0.525rem;
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    vertical-align: baseline;
    border: 0.125rem solid #fff;
    width: 1.3125rem;
    height: 1.3125rem;
    line-height: 1;
    font-size: 0.625rem;
    border-radius: 50%;
}

.avatar-sm-status {
    bottom: -0.2625rem;
    right: -0.2625rem;
    width: 0.9375rem;
    height: 0.9375rem;
    font-size: 0.5rem;
}

.avatar-lg-status {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 0.75rem;
}

/*------------------------------------
  Avatar Styles
------------------------------------*/

.avatar-status-primary {
    color: #fff;
    background-color: #0abf53;
}

.avatar-status-light {
    color: #000;
    background-color: #f5f7fa;
}

.avatar-status-dark {
    color: #fff;
    background-color: #2d374b;
}

.avatar-status-soft-primary {
    color: #0abf53;
    background-color: rgba(10, 191, 83, 0.1);
}

.avatar-status-soft-light {
    color: #f5f7fa;
    background-color: rgba(245, 247, 250, 0.1);
}

.avatar-status-soft-dark {
    color: #2d374b;
    background-color: rgba(45, 55, 75, 0.1);
}

/*------------------------------------
  Avatar Ratio
------------------------------------*/

.avatar.avatar-4x3 {
    width: 3.8333333333rem;
    height: auto;
    border-radius: 0;
}

.avatar.avatar-4x3 .avatar-img {
    width: 3.8333333333rem;
    height: inherit;
}

.avatar-sm.avatar-4x3 {
    width: 3.0833333333rem;
    height: auto;
    border-radius: 0;
}

.avatar-sm.avatar-4x3 .avatar-img {
    width: 3.0833333333rem;
    height: inherit;
}

.avatar-lg.avatar-4x3 {
    width: 5.6666666667rem;
    height: auto;
    border-radius: 0;
}

.avatar-lg.avatar-4x3 .avatar-img {
    width: 5.6666666667rem;
    height: inherit;
}

/*------------------------------------
  Badge
------------------------------------*/

/*------------------------------------
  Blockquote
------------------------------------*/

.blockquote {
    position: relative;
    color: #2d374b;
}

.blockquote::before {
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    width: 4rem;
    height: 4rem;
    background-image: url("data:image/svg+xml,%3csvg width='5' height='4' viewBox='0 0 5 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.244 2.84803C2.244 3.08003 2.168 3.26803 2.016 3.41203C1.864 3.54803 1.672 3.61603 1.44 3.61603C1.16 3.61603 0.927996 3.52403 0.743996 3.34003C0.567996 3.15603 0.479996 2.89203 0.479996 2.54803C0.479996 2.18003 0.583996 1.82003 0.791996 1.46803C1.008 1.10803 1.308 0.824028 1.692 0.616028L1.968 1.03603C1.76 1.18003 1.592 1.34003 1.464 1.51603C1.344 1.69203 1.264 1.89603 1.224 2.12803C1.296 2.09603 1.38 2.08003 1.476 2.08003C1.7 2.08003 1.884 2.15203 2.028 2.29603C2.172 2.44003 2.244 2.62403 2.244 2.84803ZM4.452 2.84803C4.452 3.08003 4.376 3.26803 4.224 3.41203C4.072 3.54803 3.88 3.61603 3.648 3.61603C3.368 3.61603 3.136 3.52403 2.952 3.34003C2.776 3.15603 2.688 2.89203 2.688 2.54803C2.688 2.18003 2.792 1.82003 3 1.46803C3.216 1.10803 3.516 0.824028 3.9 0.616028L4.176 1.03603C3.968 1.18003 3.8 1.34003 3.672 1.51603C3.552 1.69203 3.472 1.89603 3.432 2.12803C3.504 2.09603 3.588 2.08003 3.684 2.08003C3.908 2.08003 4.092 2.15203 4.236 2.29603C4.38 2.44003 4.452 2.62403 4.452 2.84803Z' fill='%232d374b' fill-opacity='.125'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    content: "";
}

.blockquote-footer {
    font-weight: 700;
    line-height: normal;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.blockquote-footer::before {
    content: "";
}

.blockquote-footer-source {
    display: block;
    color: #677788;
    font-size: 0.8125rem;
    font-weight: 400;
    margin-top: 0.25rem;
}

.blockquote-light blockquote,
.blockquote-light .blockquote {
    color: #fff;
}

.blockquote-light blockquote::before,
.blockquote-light .blockquote::before {
    background-image: url("data:image/svg+xml,%3csvg width='5' height='4' viewBox='0 0 5 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.244 2.84803C2.244 3.08003 2.168 3.26803 2.016 3.41203C1.864 3.54803 1.672 3.61603 1.44 3.61603C1.16 3.61603 0.927996 3.52403 0.743996 3.34003C0.567996 3.15603 0.479996 2.89203 0.479996 2.54803C0.479996 2.18003 0.583996 1.82003 0.791996 1.46803C1.008 1.10803 1.308 0.824028 1.692 0.616028L1.968 1.03603C1.76 1.18003 1.592 1.34003 1.464 1.51603C1.344 1.69203 1.264 1.89603 1.224 2.12803C1.296 2.09603 1.38 2.08003 1.476 2.08003C1.7 2.08003 1.884 2.15203 2.028 2.29603C2.172 2.44003 2.244 2.62403 2.244 2.84803ZM4.452 2.84803C4.452 3.08003 4.376 3.26803 4.224 3.41203C4.072 3.54803 3.88 3.61603 3.648 3.61603C3.368 3.61603 3.136 3.52403 2.952 3.34003C2.776 3.15603 2.688 2.89203 2.688 2.54803C2.688 2.18003 2.792 1.82003 3 1.46803C3.216 1.10803 3.516 0.824028 3.9 0.616028L4.176 1.03603C3.968 1.18003 3.8 1.34003 3.672 1.51603C3.552 1.69203 3.472 1.89603 3.432 2.12803C3.504 2.09603 3.588 2.08003 3.684 2.08003C3.908 2.08003 4.092 2.15203 4.236 2.29603C4.38 2.44003 4.452 2.62403 4.452 2.84803Z' fill='%23fff' fill-opacity='.15'/%3e%3c/svg%3e");
}

.blockquote-light .blockquote-footer {
    color: #fff;
}

.blockquote-light .blockquote-footer-source {
    color: rgba(255, 255, 255, 0.7);
}

.blockquote-sm.blockquote,
.blockquote-sm .blockquote {
    font-size: 1rem;
}

.blockquote-sm.blockquote::before,
.blockquote-sm .blockquote::before {
    top: -1.125rem;
    left: -1rem;
    width: 2.5rem;
    height: 2.5rem;
}

.blockquote-lg.blockquote,
.blockquote-lg .blockquote {
    font-size: calc(1.30625rem + 0.675vw);
    font-weight: 500;
}

@media (min-width: 1200px) {
    .blockquote-lg.blockquote,
    .blockquote-lg .blockquote {
        font-size: 1.8125rem;
    }
}

.blockquote-lg.blockquote::before,
.blockquote-lg .blockquote::before {
    top: -3rem;
    left: -2rem;
    width: 6rem;
    height: 6rem;
}

/*------------------------------------
  Breadcrumb
------------------------------------*/

/*------------------------------------
  Buttons
------------------------------------*/

.btn-link:focus {
    box-shadow: none;
}

/*------------------------------------
  Custom Buttons
------------------------------------*/

.btn-pointer {
    position: relative;
    font-weight: 500;
    padding-right: 1.25rem;
    padding-right: 2.5rem;
}

.btn-pointer::after {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem 1.25rem;
    content: "";
    transform: translateY(-50%);
    transition: 0.2s;
}

.btn-pointer:hover::after,
[href]:hover .btn-pointer::after {
    right: 0.4375rem;
}

.btn-white {
    color: #2d374b;
    font-weight: 500;
    background-color: #fff;
    border-color: rgba(220, 224, 229, 0.6);
}

.btn-white .btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%2351596C' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-check:focus + .btn-white,
.btn-white:hover,
.btn-white:focus {
    color: #07853a;
    border-color: rgba(220, 224, 229, 0.6);
    box-shadow: 0px 3px 6px -2px rgba(140, 152, 164, 0.25);
}

.btn-white:disabled {
    color: #bdc5d1;
    background-color: rgba(220, 224, 229, 0.5);
}

.btn-primary:hover.btn-pointer::after,
.btn-check:focus + .btn-primary.btn-pointer::after,
.btn-primary:focus.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-primary.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-light:hover.btn-pointer::after,
.btn-check:focus + .btn-light.btn-pointer::after,
.btn-light:focus.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-light.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-dark:hover.btn-pointer::after,
.btn-check:focus + .btn-dark.btn-pointer::after,
.btn-dark:focus.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-dark.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

/*------------------------------------
  Ghost Buttons Styles
------------------------------------*/

.btn-ghost-primary {
    color: #0abf53;
    background-color: transparent;
}

.btn-ghost-primary:hover,
.btn-check:focus + .btn-ghost-primary,
.btn-ghost-primary:focus,
.btn-check:checked + .btn-ghost-primary,
.btn-check:active + .btn-ghost-primary,
.btn-ghost-primary:active {
    color: #0abf53;
    border-color: transparent;
    background-color: rgba(10, 191, 83, 0.1);
}

.btn-ghost-primary.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%230ABF53' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-ghost-light {
    color: #f5f7fa;
    background-color: transparent;
}

.btn-ghost-light:hover,
.btn-check:focus + .btn-ghost-light,
.btn-ghost-light:focus,
.btn-check:checked + .btn-ghost-light,
.btn-check:active + .btn-ghost-light,
.btn-ghost-light:active {
    color: #f5f7fa;
    border-color: transparent;
    background-color: rgba(245, 247, 250, 0.1);
}

.btn-ghost-light.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23F5F7FA' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-ghost-dark {
    color: #2d374b;
    background-color: transparent;
}

.btn-ghost-dark:hover,
.btn-check:focus + .btn-ghost-dark,
.btn-ghost-dark:focus,
.btn-check:checked + .btn-ghost-dark,
.btn-check:active + .btn-ghost-dark,
.btn-ghost-dark:active {
    color: #2d374b;
    border-color: transparent;
    background-color: rgba(45, 55, 75, 0.1);
}

.btn-ghost-dark.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%232d374b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

/*------------------------------------
  Button Soft
------------------------------------*/

.btn-soft-primary {
    color: #0abf53;
    background-color: rgba(10, 191, 83, 0.1);
    border-color: transparent;
}

.btn-soft-primary:hover,
.btn-check:focus + .btn-soft-primary,
.btn-soft-primary:focus {
    color: #fff;
    background-color: #0abf53;
}

.btn-check:checked + .btn-soft-primary,
.btn-check:active + .btn-soft-primary,
.btn-soft-primary:active {
    color: #fff;
    background-color: #0abf53;
    border-color: transparent;
}

.btn-soft-primary:disabled {
    color: #0abf53;
    background-color: #0abf53;
    border-color: transparent;
}

.btn-soft-light {
    color: #f5f7fa;
    background-color: rgba(245, 247, 250, 0.1);
    border-color: transparent;
}

.btn-soft-light:hover,
.btn-check:focus + .btn-soft-light,
.btn-soft-light:focus {
    color: #000;
    background-color: #f5f7fa;
}

.btn-check:checked + .btn-soft-light,
.btn-check:active + .btn-soft-light,
.btn-soft-light:active {
    color: #000;
    background-color: #f5f7fa;
    border-color: transparent;
}

.btn-soft-light:disabled {
    color: #f5f7fa;
    background-color: #f5f7fa;
    border-color: transparent;
}

.btn-soft-dark {
    color: #2d374b;
    background-color: rgba(45, 55, 75, 0.1);
    border-color: transparent;
}

.btn-soft-dark:hover,
.btn-check:focus + .btn-soft-dark,
.btn-soft-dark:focus {
    color: #fff;
    background-color: #2d374b;
}

.btn-check:checked + .btn-soft-dark,
.btn-check:active + .btn-soft-dark,
.btn-soft-dark:active {
    color: #fff;
    background-color: #2d374b;
    border-color: transparent;
}

.btn-soft-dark:disabled {
    color: #2d374b;
    background-color: #2d374b;
    border-color: transparent;
}

.btn-soft-primary.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%230ABF53' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-check:focus + .btn-soft-primary.btn-pointer::after,
.btn-soft-primary:hover.btn-pointer::after,
.btn-soft-primary:focus.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-soft-light.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23F5F7FA' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-check:focus + .btn-soft-light.btn-pointer::after,
.btn-soft-light:hover.btn-pointer::after,
.btn-soft-light:focus.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-soft-dark.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%232d374b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.btn-check:focus + .btn-soft-dark.btn-pointer::after,
.btn-soft-dark:hover.btn-pointer::after,
.btn-soft-dark:focus.btn-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

/*------------------------------------
  Button Icon
------------------------------------*/

.btn-icon {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    width: 2.875rem;
    height: 2.875rem;
    padding: 0;
}

/*------------------------------------
  Outline Button Styles
------------------------------------*/

/*------------------------------------
  Button Sizes
------------------------------------*/

.btn-icon.btn-sm {
    font-size: 0.8125rem;
    width: 2.3125rem;
    height: 2.3125rem;
}

.btn-icon.btn-lg {
    font-size: 1.125rem;
    width: 4.25rem;
    height: 4.25rem;
}

/*------------------------------------
  Card
------------------------------------*/

.card[href] {
    transition: all 0.2s ease-in-out;
}

.card[href]:hover {
    box-shadow: 0rem 1rem 1.75rem 0rem rgba(45, 55, 75, 0.1);
}

.card-header,
.card-footer {
    border-width: 0;
}

.card-title {
    margin-bottom: 0;
}

.card-title:not(:last-child) {
    margin-bottom: 0.5rem;
}

.card-header-title {
    margin-bottom: 0;
}

.card-header-title:not(:last-child) {
    margin-bottom: 0.25rem;
}

.card-link {
    position: relative;
    display: inline-block;
    font-size: 0.9375rem;
    font-weight: 500;
    padding-right: 2.5rem;
}

.card-link::after {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%230ABF53' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem 1.25rem;
    content: "";
    transform: translateY(-50%);
    transition: 0.2s;
}

.card-link:hover::after,
[href]:hover .card-link::after {
    right: 0.4375rem;
}

.card-link.link-primary::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%230ABF53' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.card-link.link-light::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23F5F7FA' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.card-link.link-dark::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%232d374b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.card-ghost {
    background-color: transparent;
    border-width: 0;
}

.card-ghost[href]:hover {
    box-shadow: none;
}

.card-ghost .card-body {
    padding-left: 0;
    padding-right: 0;
}

.card-ghost .card-footer {
    padding: 0;
}

.card-sm > .card-body,
.card-sm > .card-header,
.card-sm > .card-footer,
.card-sm > .collapse .card-body {
    padding: 0.8125rem 0.8125rem;
}

.card-lg > .card-body,
.card-lg > .card-header,
.card-lg > .card-footer,
.card-lg > .collapse .card-body {
    padding: 2.75rem 2.75rem;
}

@media (max-width: 767.98px) {
    .card-lg > .card-body,
    .card-lg > .card-header,
    .card-lg > .card-footer,
    .card-lg > .collapse .card-body {
        padding: 1.8333333333rem 1.8333333333rem;
    }
}

.card-login {
    flex-grow: 1;
    overflow: hidden;
}

.card-login .card-body {
    padding: 2.75rem 2.75rem;
}

/*------------------------------------
  Card Group Break
------------------------------------*/

/*------------------------------------
  Card Group Row
------------------------------------*/

/*------------------------------------
  Close Button
------------------------------------*/

/*------------------------------------
  Col Divider
------------------------------------*/

/*------------------------------------
  Devices
------------------------------------*/

/*------------------------------------
  Mobile Device
------------------------------------*/

.device-mobile {
    position: relative;
    z-index: 1;
    max-width: 100%;
    width: 15rem;
    height: auto;
}

.device-mobile-img {
    max-width: 100%;
    height: auto;
    border-radius: 1.6rem;
}

/*------------------------------------
  Browser Device
------------------------------------*/

/*------------------------------------
  Dropdown
------------------------------------*/

/*------------------------------------
  Form Check
------------------------------------*/

/*------------------------------------
  Form Check Select
------------------------------------*/

/*------------------------------------
  Form Check Pinned Top End
------------------------------------*/

/*------------------------------------
  Form Select
------------------------------------*/

/*------------------------------------
  Form Switch
------------------------------------*/

/*------------------------------------
  Input Group Merge
------------------------------------*/

/*------------------------------------
  Input Card
------------------------------------*/

/*------------------------------------
  Labels
------------------------------------*/

/*------------------------------------
  Go To
------------------------------------*/

.go-to {
    display: inline-flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    width: 2.875rem;
    height: 2.875rem;
    background-color: rgba(83, 102, 139, 0.1);
    color: #404e6b;
    font-size: 1rem;
    opacity: 0.5;
    border-radius: 0.5rem;
    transition: 0.3s ease-out;
}

.go-to:hover,
.go-to:focus:hover {
    color: #fff;
    background-color: #404e6b;
    opacity: 1;
}

/*------------------------------------
  List Group
------------------------------------*/

/*------------------------------------
  List Checked
------------------------------------*/

.list-checked {
    padding-left: 0;
    list-style: none;
}

.list-checked-item {
    position: relative;
    color: #51596c;
    padding-left: 2rem;
}

.list-checked-item:not(:last-child) {
    margin-bottom: 0.5rem;
}

.list-checked-item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.3035 4.76425C13.5718 4.44865 14.0451 4.41027 14.3607 4.67853C14.6763 4.9468 14.7147 5.42012 14.4464 5.73572L8.07144 13.2357C7.79896 13.5563 7.31616 13.5901 7.00171 13.3105L3.62671 10.3105C3.31713 10.0354 3.28924 9.5613 3.56443 9.25172C3.83962 8.94213 4.31367 8.91424 4.62326 9.18943L7.42515 11.68L13.3035 4.76425Z' fill='%2351596C'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem 1.25rem;
    content: "";
    margin-top: 0.125rem;
}

.list-checked-item[hover]:hover {
    color: #0abf53;
}

[class*="list-checked-bg-"] .list-checked-item::before,
[class*="list-checked-soft-bg-"] .list-checked-item::before {
    margin-top: 0.125rem;
}

.list-checked-primary .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.3035 4.76425C13.5718 4.44865 14.0451 4.41027 14.3607 4.67853C14.6763 4.9468 14.7147 5.42012 14.4464 5.73572L8.07144 13.2357C7.79896 13.5563 7.31616 13.5901 7.00171 13.3105L3.62671 10.3105C3.31713 10.0354 3.28924 9.5613 3.56443 9.25172C3.83962 8.94213 4.31367 8.91424 4.62326 9.18943L7.42515 11.68L13.3035 4.76425Z' fill='%230ABF53'/%3e%3c/svg%3e");
}

.list-checked-bg-primary .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='18' height='18' rx='9' fill='%230ABF53'/%3e%3cpath d='M12.0603 5.78792C12.2511 5.56349 12.5876 5.5362 12.8121 5.72697C13.0365 5.91774 13.0638 6.25432 12.873 6.47875L8.3397 11.8121C8.14594 12.04 7.80261 12.064 7.57901 11.8653L5.17901 9.73195C4.95886 9.53626 4.93903 9.19915 5.13472 8.979C5.33041 8.75885 5.66751 8.73902 5.88766 8.93471L7.88011 10.7058L12.0603 5.78792Z' fill='white'/%3e%3c/svg%3e");
}

.list-checked-soft-bg-primary .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='18' height='18' rx='9' fill='%230ABF53' fill-opacity='0.1'/%3e%3cpath d='M12.0603 5.78792C12.2511 5.56349 12.5876 5.5362 12.8121 5.72697C13.0365 5.91774 13.0638 6.25432 12.873 6.47875L8.3397 11.8121C8.14594 12.04 7.80261 12.064 7.57901 11.8653L5.17901 9.73195C4.95886 9.53626 4.93903 9.19915 5.13472 8.979C5.33041 8.75885 5.66751 8.73902 5.88766 8.93471L7.88011 10.7058L12.0603 5.78792Z' fill='%230ABF53'/%3e%3c/svg%3e");
}

.list-checked-light .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.3035 4.76425C13.5718 4.44865 14.0451 4.41027 14.3607 4.67853C14.6763 4.9468 14.7147 5.42012 14.4464 5.73572L8.07144 13.2357C7.79896 13.5563 7.31616 13.5901 7.00171 13.3105L3.62671 10.3105C3.31713 10.0354 3.28924 9.5613 3.56443 9.25172C3.83962 8.94213 4.31367 8.91424 4.62326 9.18943L7.42515 11.68L13.3035 4.76425Z' fill='%23F5F7FA'/%3e%3c/svg%3e");
}

.list-checked-bg-light .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='18' height='18' rx='9' fill='%23F5F7FA'/%3e%3cpath d='M12.0603 5.78792C12.2511 5.56349 12.5876 5.5362 12.8121 5.72697C13.0365 5.91774 13.0638 6.25432 12.873 6.47875L8.3397 11.8121C8.14594 12.04 7.80261 12.064 7.57901 11.8653L5.17901 9.73195C4.95886 9.53626 4.93903 9.19915 5.13472 8.979C5.33041 8.75885 5.66751 8.73902 5.88766 8.93471L7.88011 10.7058L12.0603 5.78792Z' fill='white'/%3e%3c/svg%3e");
}

.list-checked-soft-bg-light .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='18' height='18' rx='9' fill='%23F5F7FA' fill-opacity='0.1'/%3e%3cpath d='M12.0603 5.78792C12.2511 5.56349 12.5876 5.5362 12.8121 5.72697C13.0365 5.91774 13.0638 6.25432 12.873 6.47875L8.3397 11.8121C8.14594 12.04 7.80261 12.064 7.57901 11.8653L5.17901 9.73195C4.95886 9.53626 4.93903 9.19915 5.13472 8.979C5.33041 8.75885 5.66751 8.73902 5.88766 8.93471L7.88011 10.7058L12.0603 5.78792Z' fill='%23F5F7FA'/%3e%3c/svg%3e");
}

.list-checked-dark .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.3035 4.76425C13.5718 4.44865 14.0451 4.41027 14.3607 4.67853C14.6763 4.9468 14.7147 5.42012 14.4464 5.73572L8.07144 13.2357C7.79896 13.5563 7.31616 13.5901 7.00171 13.3105L3.62671 10.3105C3.31713 10.0354 3.28924 9.5613 3.56443 9.25172C3.83962 8.94213 4.31367 8.91424 4.62326 9.18943L7.42515 11.68L13.3035 4.76425Z' fill='%232d374b'/%3e%3c/svg%3e");
}

.list-checked-bg-dark .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='18' height='18' rx='9' fill='%232d374b'/%3e%3cpath d='M12.0603 5.78792C12.2511 5.56349 12.5876 5.5362 12.8121 5.72697C13.0365 5.91774 13.0638 6.25432 12.873 6.47875L8.3397 11.8121C8.14594 12.04 7.80261 12.064 7.57901 11.8653L5.17901 9.73195C4.95886 9.53626 4.93903 9.19915 5.13472 8.979C5.33041 8.75885 5.66751 8.73902 5.88766 8.93471L7.88011 10.7058L12.0603 5.78792Z' fill='white'/%3e%3c/svg%3e");
}

.list-checked-soft-bg-dark .list-checked-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='18' height='18' rx='9' fill='%232d374b' fill-opacity='0.1'/%3e%3cpath d='M12.0603 5.78792C12.2511 5.56349 12.5876 5.5362 12.8121 5.72697C13.0365 5.91774 13.0638 6.25432 12.873 6.47875L8.3397 11.8121C8.14594 12.04 7.80261 12.064 7.57901 11.8653L5.17901 9.73195C4.95886 9.53626 4.93903 9.19915 5.13472 8.979C5.33041 8.75885 5.66751 8.73902 5.88766 8.93471L7.88011 10.7058L12.0603 5.78792Z' fill='%232d374b'/%3e%3c/svg%3e");
}

.list-checked-sm .list-checked-item {
    padding-left: 1.5rem;
}

.list-checked-sm .list-checked-item::before {
    width: 1rem;
    height: 1rem;
    background-size: 1rem 1rem;
    margin-top: 0.3125rem;
}

.list-checked-sm[class*="list-checked-bg-"] .list-checked-item::before,
.list-checked-sm[class*="list-checked-soft-bg-"] .list-checked-item::before {
    margin-top: 0.25rem;
}

.list-checked-lg .list-checked-item {
    padding-left: 2.5rem;
}

.list-checked-lg .list-checked-item:not(:last-child) {
    margin-bottom: 1.25rem;
}

.list-checked-lg .list-checked-item::before {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem 1.5rem;
    margin-top: 0;
}

.list-checked-lg[class*="list-checked-bg-"] .list-checked-item::before,
.list-checked-lg[class*="list-checked-soft-bg-"] .list-checked-item::before {
    margin-top: -0.0625rem;
}

/*------------------------------------
  List Comment
------------------------------------*/

/*------------------------------------
  List Equal Height
------------------------------------*/

.list-equal-height {
    position: relative;
    display: grid;
    overflow: hidden;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.list-equal-height-2-cols {
    grid-template-columns: 50% 50%;
}

.list-equal-height-3-cols {
    grid-template-columns: 33% 33% 33%;
}

.list-equal-height-4-cols {
    grid-template-columns: 25% 25% 25% 25%;
}

.list-equal-height-item {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
}

.list-equal-height-item::before,
.list-equal-height-item::after {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 0 solid rgba(220, 224, 229, 0.6);
    content: "";
}

.list-equal-height-item::before {
    top: 0;
    border-right-width: 0.125rem;
    margin-left: -0.125rem;
}

.list-equal-height-item::after {
    right: 0;
    border-bottom-width: 0.125rem;
    margin-bottom: -0.125rem;
}

@media (max-width: 991.98px) {
    .list-equal-height-4-cols {
        grid-template-columns: 33% 33% 33%;
    }
}

@media (max-width: 767.98px) {
    .list-equal-height-3-cols,
    .list-equal-height-4-cols {
        grid-template-columns: 50% 50%;
    }
}

@media (max-width: 575.98px) {
    .list-equal-height {
        grid-template-columns: 100%;
    }

    .list-equal-height-item {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }

    .list-equal-height-item:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .list-equal-height-item:last-child::after {
        display: none;
    }
}

/*------------------------------------
  List Padding
------------------------------------*/

.list-py-1 > li:not(:first-child) {
    padding-top: 0.3125rem;
}

.list-py-1 > li:not(:last-child) {
    padding-bottom: 0.3125rem;
}

.list-py-2 > li:not(:first-child) {
    padding-top: 0.5rem;
}

.list-py-2 > li:not(:last-child) {
    padding-bottom: 0.5rem;
}

.list-py-3 > li:not(:first-child) {
    padding-top: 1rem;
}

.list-py-3 > li:not(:last-child) {
    padding-bottom: 1rem;
}

.list-px-1 > li:not(:first-child) {
    padding-left: 0.25rem;
}

.list-px-1 > li:not(:last-child) {
    padding-right: 0.25rem;
}

.list-px-2 > li:not(:first-child) {
    padding-left: 0.5rem;
}

.list-px-2 > li:not(:last-child) {
    padding-right: 0.5rem;
}

.list-px-3 > li:not(:first-child) {
    padding-left: 1rem;
}

.list-px-3 > li:not(:last-child) {
    padding-right: 1rem;
}

/*------------------------------------
  List Pointer
------------------------------------*/

.list-pointer {
    padding-left: 0;
    list-style: none;
}

.list-pointer-item {
    position: relative;
    color: #51596c;
    padding-left: 1.75rem;
}

.list-pointer-item:not(:last-child) {
    margin-bottom: 0.5rem;
}

.list-pointer-item::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%2351596C' d='M15.78,11.28a.75.75,0,0,1,.22.53v.38a.77.77,0,0,1-.22.53l-5.14,5.13a.5.5,0,0,1-.71,0l-.71-.71a.49.49,0,0,1,0-.7L13.67,12,9.22,7.56a.5.5,0,0,1,0-.71l.71-.7a.5.5,0,0,1,.71,0Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem 1.25rem;
    content: "";
    margin-top: 0.1875rem;
}

.list-pointer-item[hover]:hover {
    color: #0abf53;
}

[class*="list-pointer-bg-"] .list-pointer-item::before,
[class*="list-pointer-soft-bg-"] .list-pointer-item::before {
    margin-top: 0.25rem;
}

.list-pointer-primary .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%230ABF53' d='M15.78,11.28a.75.75,0,0,1,.22.53v.38a.77.77,0,0,1-.22.53l-5.14,5.13a.5.5,0,0,1-.71,0l-.71-.71a.49.49,0,0,1,0-.7L13.67,12,9.22,7.56a.5.5,0,0,1,0-.71l.71-.7a.5.5,0,0,1,.71,0Z'/%3e%3c/svg%3e");
}

.list-pointer-bg-primary .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='24' height='24' rx='12' fill='%230ABF53'/%3e%3cpath d='M15.78 11.28C15.9207 11.4205 15.9998 11.6112 16 11.81V12.19C15.9977 12.3884 15.9189 12.5783 15.78 12.72L10.64 17.85C10.5935 17.8969 10.5382 17.9341 10.4773 17.9595C10.4164 17.9848 10.351 17.9979 10.285 17.9979C10.219 17.9979 10.1536 17.9848 10.0927 17.9595C10.0318 17.9341 9.97648 17.8969 9.93 17.85L9.22 17.14C9.17344 17.0944 9.13644 17.0399 9.11119 16.9798C9.08594 16.9197 9.07293 16.8552 9.07293 16.79C9.07293 16.7248 9.08594 16.6603 9.11119 16.6002C9.13644 16.5401 9.17344 16.4856 9.22 16.44L13.67 12L9.22 7.56C9.17314 7.51352 9.13594 7.45822 9.11055 7.39729C9.08517 7.33636 9.0721 7.27101 9.0721 7.205C9.0721 7.139 9.08517 7.07365 9.11055 7.01272C9.13594 6.95179 9.17314 6.89649 9.22 6.85L9.93 6.15C9.97648 6.10314 10.0318 6.06594 10.0927 6.04056C10.1536 6.01517 10.219 6.00211 10.285 6.00211C10.351 6.00211 10.4164 6.01517 10.4773 6.04056C10.5382 6.06594 10.5935 6.10314 10.64 6.15L15.78 11.28Z' fill='%23fff'/%3e%3c/svg%3e");
}

.list-pointer-soft-bg-primary .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='%230ABF53' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='24' height='24' rx='12' fill='%230ABF53' fill-opacity='0.1'/%3e%3cpath d='M15.78 11.28C15.9207 11.4205 15.9998 11.6112 16 11.81V12.19C15.9977 12.3884 15.9189 12.5783 15.78 12.72L10.64 17.85C10.5935 17.8969 10.5382 17.9341 10.4773 17.9595C10.4164 17.9848 10.351 17.9979 10.285 17.9979C10.219 17.9979 10.1536 17.9848 10.0927 17.9595C10.0318 17.9341 9.97648 17.8969 9.93 17.85L9.22 17.14C9.17344 17.0944 9.13644 17.0399 9.11119 16.9798C9.08594 16.9197 9.07293 16.8552 9.07293 16.79C9.07293 16.7248 9.08594 16.6603 9.11119 16.6002C9.13644 16.5401 9.17344 16.4856 9.22 16.44L13.67 12L9.22 7.56C9.17314 7.51352 9.13594 7.45822 9.11055 7.39729C9.08517 7.33636 9.0721 7.27101 9.0721 7.205C9.0721 7.139 9.08517 7.07365 9.11055 7.01272C9.13594 6.95179 9.17314 6.89649 9.22 6.85L9.93 6.15C9.97648 6.10314 10.0318 6.06594 10.0927 6.04056C10.1536 6.01517 10.219 6.00211 10.285 6.00211C10.351 6.00211 10.4164 6.01517 10.4773 6.04056C10.5382 6.06594 10.5935 6.10314 10.64 6.15L15.78 11.28Z' fill='%230ABF53'/%3e%3c/svg%3e");
}

.list-pointer-light .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%23F5F7FA' d='M15.78,11.28a.75.75,0,0,1,.22.53v.38a.77.77,0,0,1-.22.53l-5.14,5.13a.5.5,0,0,1-.71,0l-.71-.71a.49.49,0,0,1,0-.7L13.67,12,9.22,7.56a.5.5,0,0,1,0-.71l.71-.7a.5.5,0,0,1,.71,0Z'/%3e%3c/svg%3e");
}

.list-pointer-bg-light .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='24' height='24' rx='12' fill='%23F5F7FA'/%3e%3cpath d='M15.78 11.28C15.9207 11.4205 15.9998 11.6112 16 11.81V12.19C15.9977 12.3884 15.9189 12.5783 15.78 12.72L10.64 17.85C10.5935 17.8969 10.5382 17.9341 10.4773 17.9595C10.4164 17.9848 10.351 17.9979 10.285 17.9979C10.219 17.9979 10.1536 17.9848 10.0927 17.9595C10.0318 17.9341 9.97648 17.8969 9.93 17.85L9.22 17.14C9.17344 17.0944 9.13644 17.0399 9.11119 16.9798C9.08594 16.9197 9.07293 16.8552 9.07293 16.79C9.07293 16.7248 9.08594 16.6603 9.11119 16.6002C9.13644 16.5401 9.17344 16.4856 9.22 16.44L13.67 12L9.22 7.56C9.17314 7.51352 9.13594 7.45822 9.11055 7.39729C9.08517 7.33636 9.0721 7.27101 9.0721 7.205C9.0721 7.139 9.08517 7.07365 9.11055 7.01272C9.13594 6.95179 9.17314 6.89649 9.22 6.85L9.93 6.15C9.97648 6.10314 10.0318 6.06594 10.0927 6.04056C10.1536 6.01517 10.219 6.00211 10.285 6.00211C10.351 6.00211 10.4164 6.01517 10.4773 6.04056C10.5382 6.06594 10.5935 6.10314 10.64 6.15L15.78 11.28Z' fill='%23000'/%3e%3c/svg%3e");
}

.list-pointer-soft-bg-light .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='%23F5F7FA' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='24' height='24' rx='12' fill='%23F5F7FA' fill-opacity='0.1'/%3e%3cpath d='M15.78 11.28C15.9207 11.4205 15.9998 11.6112 16 11.81V12.19C15.9977 12.3884 15.9189 12.5783 15.78 12.72L10.64 17.85C10.5935 17.8969 10.5382 17.9341 10.4773 17.9595C10.4164 17.9848 10.351 17.9979 10.285 17.9979C10.219 17.9979 10.1536 17.9848 10.0927 17.9595C10.0318 17.9341 9.97648 17.8969 9.93 17.85L9.22 17.14C9.17344 17.0944 9.13644 17.0399 9.11119 16.9798C9.08594 16.9197 9.07293 16.8552 9.07293 16.79C9.07293 16.7248 9.08594 16.6603 9.11119 16.6002C9.13644 16.5401 9.17344 16.4856 9.22 16.44L13.67 12L9.22 7.56C9.17314 7.51352 9.13594 7.45822 9.11055 7.39729C9.08517 7.33636 9.0721 7.27101 9.0721 7.205C9.0721 7.139 9.08517 7.07365 9.11055 7.01272C9.13594 6.95179 9.17314 6.89649 9.22 6.85L9.93 6.15C9.97648 6.10314 10.0318 6.06594 10.0927 6.04056C10.1536 6.01517 10.219 6.00211 10.285 6.00211C10.351 6.00211 10.4164 6.01517 10.4773 6.04056C10.5382 6.06594 10.5935 6.10314 10.64 6.15L15.78 11.28Z' fill='%23F5F7FA'/%3e%3c/svg%3e");
}

.list-pointer-dark .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath fill='%232d374b' d='M15.78,11.28a.75.75,0,0,1,.22.53v.38a.77.77,0,0,1-.22.53l-5.14,5.13a.5.5,0,0,1-.71,0l-.71-.71a.49.49,0,0,1,0-.7L13.67,12,9.22,7.56a.5.5,0,0,1,0-.71l.71-.7a.5.5,0,0,1,.71,0Z'/%3e%3c/svg%3e");
}

.list-pointer-bg-dark .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='24' height='24' rx='12' fill='%232d374b'/%3e%3cpath d='M15.78 11.28C15.9207 11.4205 15.9998 11.6112 16 11.81V12.19C15.9977 12.3884 15.9189 12.5783 15.78 12.72L10.64 17.85C10.5935 17.8969 10.5382 17.9341 10.4773 17.9595C10.4164 17.9848 10.351 17.9979 10.285 17.9979C10.219 17.9979 10.1536 17.9848 10.0927 17.9595C10.0318 17.9341 9.97648 17.8969 9.93 17.85L9.22 17.14C9.17344 17.0944 9.13644 17.0399 9.11119 16.9798C9.08594 16.9197 9.07293 16.8552 9.07293 16.79C9.07293 16.7248 9.08594 16.6603 9.11119 16.6002C9.13644 16.5401 9.17344 16.4856 9.22 16.44L13.67 12L9.22 7.56C9.17314 7.51352 9.13594 7.45822 9.11055 7.39729C9.08517 7.33636 9.0721 7.27101 9.0721 7.205C9.0721 7.139 9.08517 7.07365 9.11055 7.01272C9.13594 6.95179 9.17314 6.89649 9.22 6.85L9.93 6.15C9.97648 6.10314 10.0318 6.06594 10.0927 6.04056C10.1536 6.01517 10.219 6.00211 10.285 6.00211C10.351 6.00211 10.4164 6.01517 10.4773 6.04056C10.5382 6.06594 10.5935 6.10314 10.64 6.15L15.78 11.28Z' fill='%23fff'/%3e%3c/svg%3e");
}

.list-pointer-soft-bg-dark .list-pointer-item::before {
    background-image: url("data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='%232d374b' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='24' height='24' rx='12' fill='%232d374b' fill-opacity='0.1'/%3e%3cpath d='M15.78 11.28C15.9207 11.4205 15.9998 11.6112 16 11.81V12.19C15.9977 12.3884 15.9189 12.5783 15.78 12.72L10.64 17.85C10.5935 17.8969 10.5382 17.9341 10.4773 17.9595C10.4164 17.9848 10.351 17.9979 10.285 17.9979C10.219 17.9979 10.1536 17.9848 10.0927 17.9595C10.0318 17.9341 9.97648 17.8969 9.93 17.85L9.22 17.14C9.17344 17.0944 9.13644 17.0399 9.11119 16.9798C9.08594 16.9197 9.07293 16.8552 9.07293 16.79C9.07293 16.7248 9.08594 16.6603 9.11119 16.6002C9.13644 16.5401 9.17344 16.4856 9.22 16.44L13.67 12L9.22 7.56C9.17314 7.51352 9.13594 7.45822 9.11055 7.39729C9.08517 7.33636 9.0721 7.27101 9.0721 7.205C9.0721 7.139 9.08517 7.07365 9.11055 7.01272C9.13594 6.95179 9.17314 6.89649 9.22 6.85L9.93 6.15C9.97648 6.10314 10.0318 6.06594 10.0927 6.04056C10.1536 6.01517 10.219 6.00211 10.285 6.00211C10.351 6.00211 10.4164 6.01517 10.4773 6.04056C10.5382 6.06594 10.5935 6.10314 10.64 6.15L15.78 11.28Z' fill='%232d374b'/%3e%3c/svg%3e");
}

.list-pointer-sm .list-pointer-item {
    padding-left: 1.5rem;
}

.list-pointer-sm .list-pointer-item::before {
    width: 1rem;
    height: 1rem;
    background-size: 1rem 1rem;
    margin-top: 0.3125rem;
}

.list-pointer-sm[class*="list-pointer-bg-"] .list-pointer-item::before,
.list-pointer-sm[class*="list-pointer-soft-bg-"] .list-pointer-item::before {
    margin-top: 0.25rem;
}

.list-pointer-lg .list-pointer-item {
    padding-left: 2.75rem;
}

.list-pointer-lg .list-pointer-item:not(:last-child) {
    margin-bottom: 1.25rem;
}

.list-pointer-lg .list-pointer-item::before {
    width: 1.75rem;
    height: 1.75rem;
    background-size: 1.75rem 1.75rem;
    margin-top: 0;
}

.list-pointer-lg[class*="list-pointer-bg-"] .list-pointer-item::before,
.list-pointer-lg[class*="list-pointer-soft-bg-"] .list-pointer-item::before {
    margin-top: -0.0625rem;
}

/*------------------------------------
  List Separator
------------------------------------*/

/*------------------------------------
  List Step
------------------------------------*/

/*------------------------------------
  List Timeline
------------------------------------*/

/*------------------------------------
  Modal
------------------------------------*/

/*------------------------------------
  Nav
------------------------------------*/

.nav-title:last-child,
.nav-text:last-child {
    margin-bottom: 0;
}

.nav-icon {
    font-size: 1.125rem;
    opacity: 0.7;
    margin-right: 0.5rem;
}

.nav-collapse .nav-link {
    position: relative;
}

.nav-collapse .nav-link::before {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    content: "•";
}

.nav-pills .nav-item {
    margin: 0.25rem 0.25rem;
}

.nav-pills .nav-link {
    padding: 1rem 1rem;
}

.nav-pills .nav-link:hover {
    color: #2d374b;
}

.nav-pills .show > .nav-link:hover {
    border-color: transparent;
}

.nav-sm .nav-link {
    font-size: 0.875rem;
}

.nav-lg .nav-link {
    font-size: calc(1.35rem + 1.2vw);
    font-weight: 700;
}

@media (min-width: 1200px) {
    .nav-lg .nav-link {
        font-size: 2.25rem;
    }
}

/*------------------------------------
  Navbar
------------------------------------*/

.navbar {
    z-index: 99;
}

.navbar-collapse {
    align-items: flex-start;
}

.navbar-height {
    height: 3.875rem;
}

@keyframes navbar-topbar-collapse-scale-up {
    0% {
        transform: scale(0.5);
        transform-origin: 100% 0%;
    }

    100% {
        transform: scale(1);
        transform-origin: 100% 0%;
    }
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand-logo {
    width: 100%;
    min-width: 12rem;
    max-width: 12rem;
}

.navbar-nav {
    width: 100%;
}

.navbar-nav-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    align-items: center;
}

.navbar-toggler {
    padding: 0.5rem 0.5rem;
    margin-left: auto;
    z-index: 1;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .navbar-toggler-default {
    display: flex;
}

.navbar-toggler .navbar-toggler-toggled {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-default {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-toggled {
    display: flex;
}

.navbar .nav-pills .nav-item {
    margin: 0;
}

.navbar .nav-pills .nav-link {
    padding: 0.75rem 0.75rem;
}

.navbar .nav-pills .nav-link:hover,
.navbar .nav-pills .nav-link:focus {
    color: #07853a;
    background-color: rgba(189, 197, 209, 0.2);
}

.navbar .nav-pills .nav-item:hover > .nav-link {
    background-color: rgba(189, 197, 209, 0.2);
}

/*------------------------------------
  Absolute Positions
------------------------------------*/

@media (min-width: 576px) {
    .navbar-absolute-sm-top {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}

@media (min-width: 768px) {
    .navbar-absolute-md-top {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}

@media (min-width: 992px) {
    .navbar-absolute-lg-top {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}

.navbar-absolute-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 575.98px) {
    .navbar-absolute-md-top .navbar-absolute-top-scroller {
        max-height: 75vh;
        background-color: #fff;
        overflow: hidden;
        overflow-y: auto;
    }

    .navbar-absolute-md-top .navbar-absolute-top-scroller::-webkit-scrollbar {
        width: 0.6125rem;
    }

    .navbar-absolute-md-top
        .navbar-absolute-top-scroller::-webkit-scrollbar-thumb {
        background-color: rgba(189, 197, 209, 0.6);
        visibility: hidden;
    }

    .navbar-absolute-md-top
        .navbar-absolute-top-scroller:hover::-webkit-scrollbar-thumb {
        visibility: visible;
    }
}

@media (max-width: 767.98px) {
    .navbar-absolute-top .navbar-absolute-top-scroller,
    .navbar-absolute-sm-top .navbar-absolute-top-scroller,
    .navbar-absolute-lg-top .navbar-absolute-top-scroller {
        max-height: 75vh;
        background-color: #fff;
        overflow: hidden;
        overflow-y: auto;
    }

    .navbar-absolute-top .navbar-absolute-top-scroller::-webkit-scrollbar,
    .navbar-absolute-sm-top .navbar-absolute-top-scroller::-webkit-scrollbar,
    .navbar-absolute-lg-top .navbar-absolute-top-scroller::-webkit-scrollbar {
        width: 0.6125rem;
    }

    .navbar-absolute-top .navbar-absolute-top-scroller::-webkit-scrollbar-thumb,
    .navbar-absolute-sm-top
        .navbar-absolute-top-scroller::-webkit-scrollbar-thumb,
    .navbar-absolute-lg-top
        .navbar-absolute-top-scroller::-webkit-scrollbar-thumb {
        background-color: rgba(189, 197, 209, 0.6);
        visibility: hidden;
    }

    .navbar-absolute-top
        .navbar-absolute-top-scroller:hover::-webkit-scrollbar-thumb,
    .navbar-absolute-sm-top
        .navbar-absolute-top-scroller:hover::-webkit-scrollbar-thumb,
    .navbar-absolute-lg-top
        .navbar-absolute-top-scroller:hover::-webkit-scrollbar-thumb {
        visibility: visible;
    }
}

/*------------------------------------
  Sticky Positions
------------------------------------*/

/*------------------------------------
  Navbar Expand
------------------------------------*/

@media (min-width: 576px) {
    .navbar-expand-sm .navbar-toggler {
        order: 1;
    }

    .navbar-expand-sm .navbar-collapse {
        width: auto;
        order: 2;
    }

    .navbar-expand-sm .navbar-nav {
        align-items: center;
    }

    .navbar-expand-sm .nav-item:not(:last-child) {
        margin-right: 0.5rem;
    }

    .navbar-expand-sm .nav-item .nav-item {
        margin-right: 0;
    }

    .navbar-expand-sm .navbar-absolute-top-scroller {
        width: 100%;
    }

    .navbar-expand-sm.navbar-end .navbar-nav {
        justify-content: flex-end;
        margin-left: auto;
    }

    .navbar-expand-sm.navbar-end .navbar-absolute-top-scroller {
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md .navbar-toggler {
        order: 1;
    }

    .navbar-expand-md .navbar-collapse {
        width: auto;
        order: 2;
    }

    .navbar-expand-md .navbar-nav {
        align-items: center;
    }

    .navbar-expand-md .nav-item:not(:last-child) {
        margin-right: 0.5rem;
    }

    .navbar-expand-md .nav-item .nav-item {
        margin-right: 0;
    }

    .navbar-expand-md .navbar-absolute-top-scroller {
        width: 100%;
    }

    .navbar-expand-md.navbar-end .navbar-nav {
        justify-content: flex-end;
        margin-left: auto;
    }

    .navbar-expand-md.navbar-end .navbar-absolute-top-scroller {
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        order: 1;
    }

    .navbar-expand-lg .navbar-collapse {
        width: auto;
        order: 2;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }

    .navbar-expand-lg .nav-item:not(:last-child) {
        margin-right: 0.5rem;
    }

    .navbar-expand-lg .nav-item .nav-item {
        margin-right: 0;
    }

    .navbar-expand-lg .navbar-absolute-top-scroller {
        width: 100%;
    }

    .navbar-expand-lg.navbar-end .navbar-nav {
        justify-content: flex-end;
        margin-left: auto;
    }

    .navbar-expand-lg.navbar-end .navbar-absolute-top-scroller {
        margin-left: auto;
    }
}

.navbar-expand .navbar-toggler {
    order: 1;
}

.navbar-expand .navbar-collapse {
    width: auto;
    order: 2;
}

.navbar-expand .navbar-nav {
    align-items: center;
}

.navbar-expand .nav-item:not(:last-child) {
    margin-right: 0.5rem;
}

.navbar-expand .nav-item .nav-item {
    margin-right: 0;
}

.navbar-expand .navbar-absolute-top-scroller {
    width: 100%;
}

.navbar-expand.navbar-end .navbar-nav {
    justify-content: flex-end;
    margin-left: auto;
}

.navbar-expand.navbar-end .navbar-absolute-top-scroller {
    margin-left: auto;
}

.navbar-expand .navbar-collapse {
    background-color: #fff;
}

.navbar-expand .navbar-nav {
    padding: 1rem 0;
}

.navbar-expand .navbar-nav .nav-item {
    margin-bottom: 0.25rem;
}

.navbar-expand .hs-mega-menu {
    max-width: 100% !important;
    min-width: 100% !important;
}

.navbar-expand.navbar-dark .navbar-nav {
    background-color: #2d374b;
}

@media (max-width: 575.98px) {
    .navbar-expand-sm .navbar-collapse {
        background-color: #fff;
    }

    .navbar-expand-sm .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-expand-sm .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
    }

    .navbar-expand-sm .hs-mega-menu {
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .navbar-expand-sm.navbar-dark .navbar-nav {
        background-color: #2d374b;
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md .navbar-collapse {
        background-color: #fff;
    }

    .navbar-expand-md .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-expand-md .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
    }

    .navbar-expand-md .hs-mega-menu {
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .navbar-expand-md.navbar-dark .navbar-nav {
        background-color: #2d374b;
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg .navbar-collapse {
        background-color: #fff;
    }

    .navbar-expand-lg .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-expand-lg .navbar-nav .nav-item {
        margin-bottom: 0.25rem;
    }

    .navbar-expand-lg .hs-mega-menu {
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .navbar-expand-lg.navbar-dark .navbar-nav {
        background-color: #2d374b;
    }
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

/*------------------------------------
  Navbar Sidebar
------------------------------------*/

/*------------------------------------
  Navbar Skins
------------------------------------*/

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
    color: #51596c;
}

.navbar-light .navbar-toggler {
    color: #51596c;
    border-color: transparent;
}

.navbar-light .navbar-nav .nav-link {
    color: #2d374b;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: #2d374b;
}

.navbar-dark .navbar-nav .nav-item:hover .nav-link,
.navbar-dark .navbar-nav .nav-item:hover .nav-link:hover,
.navbar-dark .navbar-nav .nav-item:hover .nav-link:focus {
    color: #fff;
}

/*------------------------------------
  Navbar Helpers
------------------------------------*/

.navbar[data-hs-header-options*="fixMoment"] {
    transition: 0.3s ease;
}

/*------------------------------------
  Pagination
------------------------------------*/

/*------------------------------------
  Popover
------------------------------------*/

/*------------------------------------
  Vertical Progress Bar
------------------------------------*/

/*------------------------------------
  Shapes
------------------------------------*/

/*------------------------------------
  Sliding Image
------------------------------------*/

@keyframes sliding-img-frame-to-start {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: -2880px;
    }
}

@keyframes sliding-img-frame-to-start-sm {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: -2880px;
    }
}

@keyframes sliding-img-frame-to-end {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 2880px;
    }
}

/*------------------------------------
  Step
------------------------------------*/

/*------------------------------------
  Step Avatar
------------------------------------*/

/*------------------------------------
  Step Avatar
------------------------------------*/

/*------------------------------------
  Step Divider
------------------------------------*/

/*------------------------------------
  Step Icon
------------------------------------*/

/*------------------------------------
  Step Icon Sizes
------------------------------------*/

/*------------------------------------
  Step Breakpoints
------------------------------------*/

/*------------------------------------
  Step Centered
------------------------------------*/

/*------------------------------------
  Step States
------------------------------------*/

/*------------------------------------
  Step Colors
------------------------------------*/

/*------------------------------------
  Step Inline
------------------------------------*/

/*------------------------------------
  Step Timeline
------------------------------------*/

/*------------------------------------
  Toasts
------------------------------------*/

/*------------------------------------
  Tables
------------------------------------*/

/*------------------------------------
  Video Bg
------------------------------------*/

/*------------------------------------
  Video Player
------------------------------------*/

@keyframes videoPlayerButton {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/*------------------------------------
  Background Image Style
------------------------------------*/

.bg-img-end {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.bg-img-center {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*------------------------------------
  Gradients
------------------------------------*/

/*------------------------------------
  Link
------------------------------------*/

.link {
    display: inline-block;
    font-size: 0.9375rem;
}

.link-pointer {
    position: relative;
    font-weight: 500;
    padding-right: 2.5rem;
}

.link-pointer::after {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%230ABF53' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1.25rem 1.25rem;
    content: "";
    transform: translateY(-50%);
    transition: 0.2s;
}

.link-pointer:hover::after,
[href]:hover .link-pointer::after {
    right: 0.4375rem;
}

.link-primary.link-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%230ABF53' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.link-primary:hover,
.link-primary:focus {
    opacity: 0.7;
}

.link-light.link-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23F5F7FA' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.link-light:hover,
.link-light:focus {
    opacity: 0.7;
}

.link-dark.link-pointer::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%232d374b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e");
}

.link-dark:hover,
.link-dark:focus {
    opacity: 0.7;
}

.link-light-75 {
    opacity: 0.75;
}

.link-light-75:hover,
.link-light-75:focus {
    opacity: 1;
}

/*------------------------------------
  Typography
------------------------------------*/

/*------------------------------------
  Text Colors
------------------------------------*/

.text-dark {
    color: #2d374b !important;
}

.text-dark[href]:hover {
    color: #07853a !important;
}

.text-body[href]:hover {
    color: #07853a !important;
}

/*------------------------------------
  Divider
------------------------------------*/

/*------------------------------------
  Nav Scroll Horizontal
------------------------------------*/

/*--------------------------------------------------
  Fancybox
----------------------------------------------------*/

/*------------------------------------
  Leaflet
------------------------------------*/

/*------------------------------------
  Swiper
------------------------------------*/

@keyframes swiperThumbProgressDash {
    from {
        stroke-dasharray: 0 477;
    }

    to {
        stroke-dasharray: 477 477;
    }
}

/*------------------------------------
  File for your custom SCSS style
------------------------------------*/

.outline h3 {
    counter-increment: h3counter;
    counter-reset: h4counter;
}

.outline h3:before {
    content: counter(h3counter) ".\0000a0\0000a0";
}

.outline h4 {
    counter-increment: h4counter;
}

.outline h4:before {
    content: counter(h3counter) "." counter(h4counter) ".\0000a0\0000a0";
}

#contact-form {
    input, textarea {
        width: 100%;
        outline: none; 
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.87);
        font-family: "Poppins", sans-serif;
        color: rgba(0, 0, 0, 0.87);
    }

    button.btn-primary {
        margin-top: 1.4em;
        float: right;
    }
}

#confirmation-message {
    font-size: 24px;
}

#error-message {
    font-size: 20px;
    color: black;
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.cf-turnstile {
    min-height: 70px;
}

.cf-turnstile iframe {
    width: 100% !important;
}

.cf-turnstile iframe.cf-error {
    border: 1px red solid;
    border-radius: 2px;
}