/*!
Theme Name: sbx-starter-theme
Theme URI: https://starboxtech.com/
Author: StarBox Technologies
Author URI: https://starboxtech.com/
Description: A custom theme developed by StarBox Technologies Ltd. for The Skin Workshop
Version: 1.0.0
License: LICENSE
License URI: LICENSE
Text Domain: sbx-starter-theme
Tags: sbx, starboxtech, starbox-technologies

sbx-starter-theme is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/**
 *
 * The variables.scss file contains default style variables for
 * the project theme and also for overriding Bootstrap.
 *
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #ffffff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #2f3a69;
  --bs-secondary: #54b34c;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f5f5f5;
  --bs-dark: #1b1c1d;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

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

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

body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

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

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

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

h2, .h2, .sitemap h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2, .h2, .sitemap h2 {
    font-size: 2rem;
  }
}

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

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

h4, .h4, .search-results .search-cards h2, .search-results .search-cards .h2 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4, .h4, .search-results .search-cards h2, .search-results .search-cards .h2 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

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

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #2f3a69;
  text-decoration: underline;
}

a:hover {
  color: #262e54;
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

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

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

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #ffffff;
  background-color: #212529;
  border-radius: 0.2rem;
}

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

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

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

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

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

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

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

textarea {
  resize: vertical;
}

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

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

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

legend + * {
  clear: left;
}

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

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

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

/* 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-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

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

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}

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

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

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

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

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

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

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

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

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

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

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

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

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

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

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

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

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

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

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

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

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

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

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

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}

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

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}

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

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}

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

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 1rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 1rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 2rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 2rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 3rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 3rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 4rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 4rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 5rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 5rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 6rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 6rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 7rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 7rem;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 8rem;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 8rem;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 9rem;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 9rem;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10rem;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 10rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 4rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 5rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 7rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 7rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 8rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 8rem;
  }
  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 9rem;
  }
  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 9rem;
  }
  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 10rem;
  }
  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 10rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 1rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 1rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 2rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 2rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 3rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 3rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 4rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 4rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 5rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 5rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 6rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 6rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 7rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 7rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 8rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 8rem;
  }
  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 9rem;
  }
  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 9rem;
  }
  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 10rem;
  }
  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 10rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 4rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 5rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 7rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 7rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 8rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 8rem;
  }
  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 9rem;
  }
  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 9rem;
  }
  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 10rem;
  }
  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 10rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 4rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 5rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 7rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 7rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 8rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 8rem;
  }
  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 9rem;
  }
  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 9rem;
  }
  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 10rem;
  }
  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 10rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 4rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 4rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 5rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 5rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 7rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 7rem;
  }
  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 8rem;
  }
  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 8rem;
  }
  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 9rem;
  }
  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 9rem;
  }
  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 10rem;
  }
  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 10rem;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

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

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: #212529;
  background-color: #ffffff;
  border-color: #979db4;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-select:focus {
  border-color: #979db4;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: #e9ecef;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #979db4;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.form-check-input:checked {
  background-color: #2f3a69;
  border-color: #2f3a69;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: #2f3a69;
  border-color: #2f3a69;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23979db4'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

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

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

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
          box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #2f3a69;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #c1c4d2;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #2f3a69;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #c1c4d2;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    -webkit-transition: none;
    transition: none;
  }
}

.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}

.form-floating > .form-control::placeholder {
  color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}

.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}

.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus, .was-validated
.input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}

.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}

.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus, .was-validated
.input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 5rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

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

.btn:hover {
  color: #212529;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.btn:disabled, .btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #ffffff;
  background-color: #2f3a69;
  border-color: #2f3a69;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #283159;
  border-color: #262e54;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #ffffff;
  background-color: #283159;
  border-color: #262e54;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(78, 88, 128, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(78, 88, 128, 0.5);
}

.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #262e54;
  border-color: #232c4f;
}

.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(78, 88, 128, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(78, 88, 128, 0.5);
}

.btn-primary:disabled, .btn-primary.disabled {
  color: #ffffff;
  background-color: #2f3a69;
  border-color: #2f3a69;
}

.btn-secondary {
  color: #000000;
  background-color: #54b34c;
  border-color: #54b34c;
}

.btn-secondary:hover {
  color: #000000;
  background-color: #6ebe67;
  border-color: #65bb5e;
}

.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000000;
  background-color: #6ebe67;
  border-color: #65bb5e;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(71, 152, 65, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(71, 152, 65, 0.5);
}

.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
  color: #000000;
  background-color: #76c270;
  border-color: #65bb5e;
}

.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(71, 152, 65, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(71, 152, 65, 0.5);
}

.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000000;
  background-color: #54b34c;
  border-color: #54b34c;
}

.btn-success {
  color: #ffffff;
  background-color: #198754;
  border-color: #198754;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #157347;
  border-color: #146c43;
}

.btn-check:focus + .btn-success, .btn-success:focus {
  color: #ffffff;
  background-color: #157347;
  border-color: #146c43;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}

.btn-check:checked + .btn-success,
.btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
.show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #146c43;
  border-color: #13653f;
}

.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}

.btn-success:disabled, .btn-success.disabled {
  color: #ffffff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-info:hover {
  color: #000000;
  background-color: #31d2f2;
  border-color: #25cff2;
}

.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000000;
  background-color: #31d2f2;
  border-color: #25cff2;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}

.btn-check:checked + .btn-info,
.btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
.show > .btn-info.dropdown-toggle {
  color: #000000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}

.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}

.btn-info:disabled, .btn-info.disabled {
  color: #000000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #000000;
  background-color: #ffca2c;
  border-color: #ffc720;
}

.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000000;
  background-color: #ffca2c;
  border-color: #ffc720;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}

.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
.show > .btn-warning.dropdown-toggle {
  color: #000000;
  background-color: #ffcd39;
  border-color: #ffc720;
}

.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}

.btn-warning:disabled, .btn-warning.disabled {
  color: #000000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}

.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #ffffff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}

.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
.show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #b02a37;
  border-color: #a52834;
}

.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}

.btn-danger:disabled, .btn-danger.disabled {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-light:hover {
  color: #000000;
  background-color: #f7f7f7;
  border-color: #f6f6f6;
}

.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000000;
  background-color: #f7f7f7;
  border-color: #f6f6f6;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}

.btn-check:checked + .btn-light,
.btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
.show > .btn-light.dropdown-toggle {
  color: #000000;
  background-color: #f7f7f7;
  border-color: #f6f6f6;
}

.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(208, 208, 208, 0.5);
}

.btn-light:disabled, .btn-light.disabled {
  color: #000000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-dark {
  color: #ffffff;
  background-color: #1b1c1d;
  border-color: #1b1c1d;
}

.btn-dark:hover {
  color: #ffffff;
  background-color: #171819;
  border-color: #161617;
}

.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #ffffff;
  background-color: #171819;
  border-color: #161617;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(61, 62, 63, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(61, 62, 63, 0.5);
}

.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #161617;
  border-color: #141516;
}

.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(61, 62, 63, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(61, 62, 63, 0.5);
}

.btn-dark:disabled, .btn-dark.disabled {
  color: #ffffff;
  background-color: #1b1c1d;
  border-color: #1b1c1d;
}

.btn-outline-primary {
  color: #2f3a69;
  border-color: #2f3a69;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #2f3a69;
  border-color: #2f3a69;
}

.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.5);
}

.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #ffffff;
  background-color: #2f3a69;
  border-color: #2f3a69;
}

.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.5);
}

.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #2f3a69;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #54b34c;
  border-color: #54b34c;
}

.btn-outline-secondary:hover {
  color: #000000;
  background-color: #54b34c;
  border-color: #54b34c;
}

.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(84, 179, 76, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(84, 179, 76, 0.5);
}

.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #000000;
  background-color: #54b34c;
  border-color: #54b34c;
}

.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(84, 179, 76, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(84, 179, 76, 0.5);
}

.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #54b34c;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}

.btn-outline-success:hover {
  color: #ffffff;
  background-color: #198754;
  border-color: #198754;
}

.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #ffffff;
  background-color: #198754;
  border-color: #198754;
}

.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}

.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-outline-info:hover {
  color: #000000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}

.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}

.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #000000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}

.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-outline-light:hover {
  color: #000000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}

.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000000;
  background-color: #f5f5f5;
  border-color: #f5f5f5;
}

.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(245, 245, 245, 0.5);
}

.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f5f5f5;
  background-color: transparent;
}

.btn-outline-dark {
  color: #1b1c1d;
  border-color: #1b1c1d;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #1b1c1d;
  border-color: #1b1c1d;
}

.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(27, 28, 29, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(27, 28, 29, 0.5);
}

.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #ffffff;
  background-color: #1b1c1d;
  border-color: #1b1c1d;
}

.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(27, 28, 29, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(27, 28, 29, 0.5);
}

.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #1b1c1d;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #2f3a69;
  text-decoration: underline;
}

.btn-link:hover {
  color: #262e54;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

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

.fade:not(.show) {
  opacity: 0;
}

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

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

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

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto /* rtl:ignore */;
  left: 0 /* rtl:ignore */;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0 /* rtl:ignore */;
  left: auto /* rtl:ignore */;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #2f3a69;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #ffffff;
  background-color: #2f3a69;
}

.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #2f3a69;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  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 {
    -webkit-transition: none;
    transition: none;
  }
}

.nav-link:hover, .nav-link:focus {
  color: #262e54;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #ffffff;
  border-color: #dee2e6 #dee2e6 #ffffff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ffffff;
  background-color: #2f3a69;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: inherit;
      flex-wrap: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0px;
  -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

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

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

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem;
          box-shadow: 0 0 0 0.25rem;
}

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

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

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

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #ffffff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: 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");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #ffffff;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #2f3a69;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

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

.page-link:hover {
  z-index: 2;
  color: #262e54;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  color: #262e54;
  background-color: #e9ecef;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(47, 58, 105, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #ffffff;
  background-color: #2f3a69;
  border-color: #2f3a69;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #ffffff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

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

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

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

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

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

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

.float-start {
  float: left !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: 1px solid #dee2e6 !important;
}

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

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

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

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

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

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

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

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

.border-primary {
  border-color: #2f3a69 !important;
}

.border-secondary {
  border-color: #54b34c !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f5f5f5 !important;
}

.border-dark {
  border-color: #1b1c1d !important;
}

.border-white {
  border-color: #ffffff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

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

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

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

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

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

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

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

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

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

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

.m-6 {
  margin: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-6 {
  margin-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-10 {
  padding: 10rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-6 {
  padding-right: 6rem !important;
}

.pe-7 {
  padding-right: 7rem !important;
}

.pe-8 {
  padding-right: 8rem !important;
}

.pe-9 {
  padding-right: 9rem !important;
}

.pe-10 {
  padding-right: 10rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ps-6 {
  padding-left: 6rem !important;
}

.ps-7 {
  padding-left: 7rem !important;
}

.ps-8 {
  padding-left: 8rem !important;
}

.ps-9 {
  padding-left: 9rem !important;
}

.ps-10 {
  padding-left: 10rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lh-sm {
  line-height: 1.25 !important;
}

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

.lh-lg {
  line-height: 2 !important;
}

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

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

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

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

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

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

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

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

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

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

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

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #2f3a69 !important;
}

.text-secondary {
  color: #54b34c !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f5f5f5 !important;
}

.text-dark {
  color: #1b1c1d !important;
}

.text-white {
  color: #ffffff !important;
}

.text-body {
  color: #212529 !important;
}

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

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.bg-primary {
  background-color: #2f3a69 !important;
}

.bg-secondary {
  background-color: #54b34c !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f5f5f5 !important;
}

.bg-dark {
  background-color: #1b1c1d !important;
}

.bg-body {
  background-color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

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

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

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

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

.rounded {
  border-radius: 0.25rem !important;
}

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

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

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

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 1rem !important;
  }
  .gap-sm-2 {
    gap: 2rem !important;
  }
  .gap-sm-3 {
    gap: 3rem !important;
  }
  .gap-sm-4 {
    gap: 4rem !important;
  }
  .gap-sm-5 {
    gap: 5rem !important;
  }
  .gap-sm-6 {
    gap: 6rem !important;
  }
  .gap-sm-7 {
    gap: 7rem !important;
  }
  .gap-sm-8 {
    gap: 8rem !important;
  }
  .gap-sm-9 {
    gap: 9rem !important;
  }
  .gap-sm-10 {
    gap: 10rem !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 1rem !important;
  }
  .me-sm-2 {
    margin-right: 2rem !important;
  }
  .me-sm-3 {
    margin-right: 3rem !important;
  }
  .me-sm-4 {
    margin-right: 4rem !important;
  }
  .me-sm-5 {
    margin-right: 5rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 7rem !important;
  }
  .me-sm-8 {
    margin-right: 8rem !important;
  }
  .me-sm-9 {
    margin-right: 9rem !important;
  }
  .me-sm-10 {
    margin-right: 10rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 1rem !important;
  }
  .ms-sm-2 {
    margin-left: 2rem !important;
  }
  .ms-sm-3 {
    margin-left: 3rem !important;
  }
  .ms-sm-4 {
    margin-left: 4rem !important;
  }
  .ms-sm-5 {
    margin-left: 5rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 7rem !important;
  }
  .ms-sm-8 {
    margin-left: 8rem !important;
  }
  .ms-sm-9 {
    margin-left: 9rem !important;
  }
  .ms-sm-10 {
    margin-left: 10rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 1rem !important;
  }
  .pe-sm-2 {
    padding-right: 2rem !important;
  }
  .pe-sm-3 {
    padding-right: 3rem !important;
  }
  .pe-sm-4 {
    padding-right: 4rem !important;
  }
  .pe-sm-5 {
    padding-right: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 7rem !important;
  }
  .pe-sm-8 {
    padding-right: 8rem !important;
  }
  .pe-sm-9 {
    padding-right: 9rem !important;
  }
  .pe-sm-10 {
    padding-right: 10rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 1rem !important;
  }
  .ps-sm-2 {
    padding-left: 2rem !important;
  }
  .ps-sm-3 {
    padding-left: 3rem !important;
  }
  .ps-sm-4 {
    padding-left: 4rem !important;
  }
  .ps-sm-5 {
    padding-left: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 7rem !important;
  }
  .ps-sm-8 {
    padding-left: 8rem !important;
  }
  .ps-sm-9 {
    padding-left: 9rem !important;
  }
  .ps-sm-10 {
    padding-left: 10rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 1rem !important;
  }
  .gap-md-2 {
    gap: 2rem !important;
  }
  .gap-md-3 {
    gap: 3rem !important;
  }
  .gap-md-4 {
    gap: 4rem !important;
  }
  .gap-md-5 {
    gap: 5rem !important;
  }
  .gap-md-6 {
    gap: 6rem !important;
  }
  .gap-md-7 {
    gap: 7rem !important;
  }
  .gap-md-8 {
    gap: 8rem !important;
  }
  .gap-md-9 {
    gap: 9rem !important;
  }
  .gap-md-10 {
    gap: 10rem !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 1rem !important;
  }
  .me-md-2 {
    margin-right: 2rem !important;
  }
  .me-md-3 {
    margin-right: 3rem !important;
  }
  .me-md-4 {
    margin-right: 4rem !important;
  }
  .me-md-5 {
    margin-right: 5rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 7rem !important;
  }
  .me-md-8 {
    margin-right: 8rem !important;
  }
  .me-md-9 {
    margin-right: 9rem !important;
  }
  .me-md-10 {
    margin-right: 10rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 1rem !important;
  }
  .ms-md-2 {
    margin-left: 2rem !important;
  }
  .ms-md-3 {
    margin-left: 3rem !important;
  }
  .ms-md-4 {
    margin-left: 4rem !important;
  }
  .ms-md-5 {
    margin-left: 5rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 7rem !important;
  }
  .ms-md-8 {
    margin-left: 8rem !important;
  }
  .ms-md-9 {
    margin-left: 9rem !important;
  }
  .ms-md-10 {
    margin-left: 10rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 1rem !important;
  }
  .pe-md-2 {
    padding-right: 2rem !important;
  }
  .pe-md-3 {
    padding-right: 3rem !important;
  }
  .pe-md-4 {
    padding-right: 4rem !important;
  }
  .pe-md-5 {
    padding-right: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 7rem !important;
  }
  .pe-md-8 {
    padding-right: 8rem !important;
  }
  .pe-md-9 {
    padding-right: 9rem !important;
  }
  .pe-md-10 {
    padding-right: 10rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 1rem !important;
  }
  .ps-md-2 {
    padding-left: 2rem !important;
  }
  .ps-md-3 {
    padding-left: 3rem !important;
  }
  .ps-md-4 {
    padding-left: 4rem !important;
  }
  .ps-md-5 {
    padding-left: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 7rem !important;
  }
  .ps-md-8 {
    padding-left: 8rem !important;
  }
  .ps-md-9 {
    padding-left: 9rem !important;
  }
  .ps-md-10 {
    padding-left: 10rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 1rem !important;
  }
  .gap-lg-2 {
    gap: 2rem !important;
  }
  .gap-lg-3 {
    gap: 3rem !important;
  }
  .gap-lg-4 {
    gap: 4rem !important;
  }
  .gap-lg-5 {
    gap: 5rem !important;
  }
  .gap-lg-6 {
    gap: 6rem !important;
  }
  .gap-lg-7 {
    gap: 7rem !important;
  }
  .gap-lg-8 {
    gap: 8rem !important;
  }
  .gap-lg-9 {
    gap: 9rem !important;
  }
  .gap-lg-10 {
    gap: 10rem !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 1rem !important;
  }
  .me-lg-2 {
    margin-right: 2rem !important;
  }
  .me-lg-3 {
    margin-right: 3rem !important;
  }
  .me-lg-4 {
    margin-right: 4rem !important;
  }
  .me-lg-5 {
    margin-right: 5rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 7rem !important;
  }
  .me-lg-8 {
    margin-right: 8rem !important;
  }
  .me-lg-9 {
    margin-right: 9rem !important;
  }
  .me-lg-10 {
    margin-right: 10rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 1rem !important;
  }
  .ms-lg-2 {
    margin-left: 2rem !important;
  }
  .ms-lg-3 {
    margin-left: 3rem !important;
  }
  .ms-lg-4 {
    margin-left: 4rem !important;
  }
  .ms-lg-5 {
    margin-left: 5rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 7rem !important;
  }
  .ms-lg-8 {
    margin-left: 8rem !important;
  }
  .ms-lg-9 {
    margin-left: 9rem !important;
  }
  .ms-lg-10 {
    margin-left: 10rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 1rem !important;
  }
  .pe-lg-2 {
    padding-right: 2rem !important;
  }
  .pe-lg-3 {
    padding-right: 3rem !important;
  }
  .pe-lg-4 {
    padding-right: 4rem !important;
  }
  .pe-lg-5 {
    padding-right: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 7rem !important;
  }
  .pe-lg-8 {
    padding-right: 8rem !important;
  }
  .pe-lg-9 {
    padding-right: 9rem !important;
  }
  .pe-lg-10 {
    padding-right: 10rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 1rem !important;
  }
  .ps-lg-2 {
    padding-left: 2rem !important;
  }
  .ps-lg-3 {
    padding-left: 3rem !important;
  }
  .ps-lg-4 {
    padding-left: 4rem !important;
  }
  .ps-lg-5 {
    padding-left: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 7rem !important;
  }
  .ps-lg-8 {
    padding-left: 8rem !important;
  }
  .ps-lg-9 {
    padding-left: 9rem !important;
  }
  .ps-lg-10 {
    padding-left: 10rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 1rem !important;
  }
  .gap-xl-2 {
    gap: 2rem !important;
  }
  .gap-xl-3 {
    gap: 3rem !important;
  }
  .gap-xl-4 {
    gap: 4rem !important;
  }
  .gap-xl-5 {
    gap: 5rem !important;
  }
  .gap-xl-6 {
    gap: 6rem !important;
  }
  .gap-xl-7 {
    gap: 7rem !important;
  }
  .gap-xl-8 {
    gap: 8rem !important;
  }
  .gap-xl-9 {
    gap: 9rem !important;
  }
  .gap-xl-10 {
    gap: 10rem !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 1rem !important;
  }
  .me-xl-2 {
    margin-right: 2rem !important;
  }
  .me-xl-3 {
    margin-right: 3rem !important;
  }
  .me-xl-4 {
    margin-right: 4rem !important;
  }
  .me-xl-5 {
    margin-right: 5rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 7rem !important;
  }
  .me-xl-8 {
    margin-right: 8rem !important;
  }
  .me-xl-9 {
    margin-right: 9rem !important;
  }
  .me-xl-10 {
    margin-right: 10rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 1rem !important;
  }
  .ms-xl-2 {
    margin-left: 2rem !important;
  }
  .ms-xl-3 {
    margin-left: 3rem !important;
  }
  .ms-xl-4 {
    margin-left: 4rem !important;
  }
  .ms-xl-5 {
    margin-left: 5rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 7rem !important;
  }
  .ms-xl-8 {
    margin-left: 8rem !important;
  }
  .ms-xl-9 {
    margin-left: 9rem !important;
  }
  .ms-xl-10 {
    margin-left: 10rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 1rem !important;
  }
  .pe-xl-2 {
    padding-right: 2rem !important;
  }
  .pe-xl-3 {
    padding-right: 3rem !important;
  }
  .pe-xl-4 {
    padding-right: 4rem !important;
  }
  .pe-xl-5 {
    padding-right: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 7rem !important;
  }
  .pe-xl-8 {
    padding-right: 8rem !important;
  }
  .pe-xl-9 {
    padding-right: 9rem !important;
  }
  .pe-xl-10 {
    padding-right: 10rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 1rem !important;
  }
  .ps-xl-2 {
    padding-left: 2rem !important;
  }
  .ps-xl-3 {
    padding-left: 3rem !important;
  }
  .ps-xl-4 {
    padding-left: 4rem !important;
  }
  .ps-xl-5 {
    padding-left: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 7rem !important;
  }
  .ps-xl-8 {
    padding-left: 8rem !important;
  }
  .ps-xl-9 {
    padding-left: 9rem !important;
  }
  .ps-xl-10 {
    padding-left: 10rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 1rem !important;
  }
  .gap-xxl-2 {
    gap: 2rem !important;
  }
  .gap-xxl-3 {
    gap: 3rem !important;
  }
  .gap-xxl-4 {
    gap: 4rem !important;
  }
  .gap-xxl-5 {
    gap: 5rem !important;
  }
  .gap-xxl-6 {
    gap: 6rem !important;
  }
  .gap-xxl-7 {
    gap: 7rem !important;
  }
  .gap-xxl-8 {
    gap: 8rem !important;
  }
  .gap-xxl-9 {
    gap: 9rem !important;
  }
  .gap-xxl-10 {
    gap: 10rem !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxl-10 {
    padding-right: 10rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxl-10 {
    padding-left: 10rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}

/*=============================================
=            Layouts            =
=============================================*/
/**
 *
 * Creates a flex layout. Centred by default
 *
 */
/*=====  End of Layouts  ======*/
/*=============================================
=          Backgrounds  & Gradients          =
=============================================*/
/**
 *
 * Creates backgrounds with default images
 * from placeholder.com.
 *
 */
/**
 *
 * Creates a linear gradient with two colours.
 * The gradient direction can also be specified. 
 *
 */
/**
 *
 * Creates a background with an image and a linear gradient on top
 * The linear gradient is composed of two colors and the direction can be specified
 *
 */
/**
 *
 * Creates a box-shadow effect and adds a hover state also. 
 *
 */
/*=====  End of Backgrounds  ======*/
/*=============================================
=            Media queries            =
=============================================*/
/**
 *
 * Defines breakpoints for media queries below.
 * Uses default breakpoints set in variables.scss
 *
 */
/**
 *
 * Defines breakpoints for high pixel density devices (>2x)
 *
 */
/**
 *
 * Media queries using desktop-first approach (max)
 *
 */
/**
 *
 * Media queries using mobile-first approach
 *
 */
/**
 *
 * Media queries targeting high pixel density devices (>2x)
 *
 */
/*=====  End of Media queries  ======*/
/*=============================================
=            Components           =
=============================================*/
/**
 * Creates a 'tailwind CSS' style link underline 
 */
/**
 *
 * Overrides default Bootstrap .btn class.
 * This class defines the base button styles
 * Deprecated! (Use the 'Button styles' section of _variables.scss)
 *
 */
/**
 *
 * Custom SBX outline button style.
 * Deprecated! (Use Bootstrap .btn-outline-$color)
 *
 */
/**
 *
 * Custom SBX solid button style.
 * Deprecated! (Use Bootstrap .btn-$color)
 *
 */
/*=====  End of Components  ======*/
/**
 *
 * Default WordPress styles.
 *
 */
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/**
 * Forms
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
button,
input {
  overflow: visible;
}

/**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
button,
select {
  text-transform: none;
}

/**
  * Correct the inability to style clickable types in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
  * Remove the inner border and padding in Firefox.
  */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus styles unset by the previous rule.
  */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Correct the padding in Firefox.
  */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
  * 1. Correct the text wrapping in Edge and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  * 3. Remove the padding so developers are not caught out when they zero out
  *		`fieldset` elements in all browsers.
  */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
progress {
  vertical-align: baseline;
}

/**
  * Remove the default vertical scrollbar in IE 10+.
  */
textarea {
  overflow: auto;
}

/**
  * 1. Add the correct box sizing in IE 10.
  * 2. Remove the padding in IE 10.
  */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
  * Remove the inner padding in Chrome and Safari on macOS.
  */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

.forminator-custom-form {
  font-family: "FR", "Helvetica", Arial, serif !important;
}

.forminator-custom-form h1, .forminator-custom-form .h1,
.forminator-custom-form h2,
.forminator-custom-form .h2,
.forminator-custom-form h3,
.forminator-custom-form .h3,
.forminator-custom-form h4,
.forminator-custom-form .h4,
.forminator-custom-form .search-results .search-cards h2,
.search-results .search-cards .forminator-custom-form h2,
.forminator-custom-form .search-results .search-cards .h2,
.search-results .search-cards .forminator-custom-form .h2,
.forminator-custom-form h5,
.forminator-custom-form .h5,
.forminator-custom-form h6,
.forminator-custom-form .h6 {
  margin: 0;
}

.forminator-custom-form .forminator-field label,
.forminator-custom-form .forminator-field .forminator-label {
  font-family: "FR", "Helvetica", Arial, serif !important;
  font-size: 0.85rem !important;
  color: #1b1c1d !important;
  margin-top: 0.5rem !important;
  padding-left: 0.1rem !important;
}

.forminator-custom-form .forminator-field label .forminator-required,
.forminator-custom-form .forminator-field .forminator-label .forminator-required {
  color: #1b1c1d !important;
}

.forminator-custom-form .forminator-field input,
.forminator-custom-form .forminator-field textarea {
  font-family: "FR", "Helvetica", Arial, serif !important;
  padding: 0.5rem 1rem 1rem 0.1rem !important;
  font-size: 1rem !important;
  color: #1b1c1d !important;
  background-color: transparent !important;
  border-bottom: 1px solid #54b34c !important;
}

.forminator-custom-form .forminator-field input:hover, .forminator-custom-form .forminator-field input:focus,
.forminator-custom-form .forminator-field textarea:hover,
.forminator-custom-form .forminator-field textarea:focus {
  background-color: transparent !important;
}

.forminator-custom-form .forminator-field input[type="checkbox"]:checked ~ span.forminator-checkbox-box::before {
  color: #2f3a69 !important;
}

.forminator-custom-form .forminator-field input[type="radio"]:checked ~ span.forminator-radio-bullet::before {
  background-color: #2f3a69 !important;
}

.forminator-custom-form .forminator-field span.select2 .select2-selection {
  height: 2.855rem !important;
  background-color: transparent !important;
  border-bottom: 1px solid #54b34c !important;
}

.forminator-custom-form .forminator-field span.select2 .select2-selection__rendered {
  font-family: "FR", "Helvetica", Arial, serif !important;
  padding-left: 0.1rem !important;
}

.forminator-custom-form .forminator-field span.select2 .select2-selection__placeholder {
  color: #707070 !important;
}

.forminator-custom-form .forminator-field span.select2 .select2-selection__arrow {
  color: #2f3a69 !important;
}

.forminator-custom-form #upload-1 {
  margin-bottom: 1.5rem !important;
}

.forminator-custom-form #upload-1 .forminator-label {
  margin: 1rem 0 !important;
  color: #494d50 !important;
  font-family: "FB", "Helvetica", Arial, serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

@media only screen and (min-width: 768px) {
  .forminator-custom-form #upload-1 .forminator-label {
    font-size: 1.25rem !important;
  }
}

@media only screen and (min-width: 992px) {
  .forminator-custom-form #upload-1 .forminator-label {
    font-size: 1.33rem !important;
  }
}

.forminator-custom-form #upload-1 .forminator-multi-upload {
  background-color: #fcfcfc !important;
}

.forminator-custom-form #upload-1 .forminator-multi-upload a {
  color: #2f3a69 !important;
}

.forminator-custom-form #upload-1 .forminator-multi-upload .forminator-icon-upload {
  margin-bottom: 1.5rem !important;
}

.forminator-custom-form #upload-1 .forminator-multi-upload .forminator-icon-upload::before {
  content: "" !important;
  background: url("../img/pdf-icon.svg") no-repeat !important;
  background-size: contain !important;
  width: 2rem !important;
  height: 2rem !important;
}

.forminator-custom-form #group-1,
.forminator-custom-form #group-2,
.forminator-custom-form .forminator-checkbox-label {
  font-size: 0.7rem !important;
}

.forminator-custom-form .forminator-button-submit {
  background-color: #2f3a69 !important;
  border-color: #2f3a69 !important;
  color: #ffffff !important;
  -webkit-transition: all 0.2s !important;
  transition: all 0.2s !important;
  width: 100% !important;
}

.forminator-custom-form .forminator-button-submit:hover, .forminator-custom-form .forminator-button-submit:focus, .forminator-custom-form .forminator-button-submit:active, .forminator-custom-form .forminator-button-submit.active {
  background-color: #37447b !important;
  border-color: #37447b !important;
  color: #ffffff !important;
}

.forminator-custom-form .forminator-button-submit:hover:after {
  right: 9%;
}

.forminator-custom-form .forminator-button-submit:after {
  right: 11%;
}

@media only screen and (min-width: 768px) {
  .forminator-custom-form .forminator-button-submit {
    min-width: 19.5rem !important;
  }
}

.jobapplication1 {
  padding: 2rem 0;
}

.jobapplication1 h3, .jobapplication1 .h3 {
  color: #54b34c;
}

/**
 *
 * Custom SBX utilities. Overrides Bootstrap.
 *
*/
/*=============================================
=            Containers            =
=============================================*/
.container-lg {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  max-width: 992px;
}

.container-md {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  max-width: 768px;
}

.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  max-width: 576px;
}

.contained-text {
  display: block;
  max-width: 450px;
}

/*=====  End of Containers  ======*/
.fa-custom::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.gs__reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  left: 0;
  top: 0;
}

.hero__support {
  text-align: center;
  padding: 2.5rem 0;
  background-color: #0a3652;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .hero__support {
    padding: 2.5rem 0;
    text-align: left;
  }
}

.hero__support .sec-hdr {
  position: relative;
  padding-top: 1rem;
  color: #d9d9d9;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .hero__support .sec-hdr {
    padding-top: 1.5rem;
    margin-bottom: 0;
  }
}

.hero__support .sec-hdr:before {
  content: '';
  width: 10%;
  height: 3px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #2f3a69;
  left: 50%;
  top: 0;
}

@media only screen and (min-width: 768px) {
  .hero__support .sec-hdr:before {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.hero__support .sec-text {
  color: #fcfcfc;
}

/**
 *
 * Styles related to base HTML components
 * are contained here
 *
*/
:root {
  font-size: 100%;
}

html {
  height: 100%;
}

body {
  overflow-x: hidden;
  font-family: "FR", "Helvetica", Arial, serif;
  font-weight: 400;
  height: 100%;
}

a {
  text-decoration: none;
}

h1 span, .h1 span,
.h1 span,
h2 span,
.h2 span,
.sitemap h2 span,
.h2 span {
  color: #2f3a69;
}

/* Custom selection color */
*::-moz-selection {
  background-color: #2f3a69;
  color: #ffffff;
}
*::selection {
  background-color: #2f3a69;
  color: #ffffff;
}

[data-link] {
  cursor: pointer;
}

.site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  overflow-x: hidden;
  -ms-flex-direction: column;
      flex-direction: column;
  height: auto;
}

.flex-fill {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.default {
  padding: 0 0 3rem;
}

.btn {
  width: auto;
  font-size: 1rem;
  font-family: "FB", "Helvetica", Arial, serif;
  text-transform: capitalize;
  letter-spacing: 0.06rem;
  white-space: nowrap;
  border-radius: 5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  padding: 20px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn [class*="fa-"] {
  font-size: 1.25em;
  margin-left: 1em;
}

.btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

@media only screen and (max-width: 768px) {
  .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.7rem 0.85rem;
  }
  .btn [class*="fa-"] {
    margin-left: 0.75em;
  }
}

.btn.auto {
  width: 94%;
}

@media only screen and (min-width: 768px) {
  .btn.auto {
    width: auto;
  }
}

.btn.btn_bold {
  font-weight: 600;
}

.btn.btn_bold.up {
  text-transform: uppercase;
}

.btn.transparent {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1rem;
  letter-spacing: 0.06rem;
  padding: 0;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .btn.transparent {
    width: auto;
  }
}

.btn.transparent span {
  width: 4rem;
  height: 4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 2px solid white;
  border-radius: 50%;
  margin-right: 1rem;
}

.btn.transparent span img {
  width: auto;
  height: 1.5rem;
  margin-left: 0.4rem;
}

@media only screen and (min-width: 768px) {
  .btn.transparent span img {
    height: 1.5rem;
    margin-left: 0.3rem;
  }
}

.btn.transparent:hover span {
  border: 2px solid #54b34c;
  background-color: #54b34c;
}

.btn.transparent:hover .hovered {
  display: inline-block;
}

.btn.primary_clr {
  background-color: #2c6427;
  color: #ffffff;
}

.btn.primary_clr.new {
  background-color: rgba(21,122, 135, 1);
}

.btn.primary_clr.new:hover {
  background-color: #fff;
  color: #171819;
}

.btn.primary_clr img {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(-1rem, -50%);
          transform: translate(-1rem, -50%);
  top: 50%;
}

.btn.primary_clr:hover {
  padding-right: 2.5rem;
  background-color: #0a3652;
}

.btn.primary_clr:hover img {
  opacity: 1;
  -webkit-transform: translate(0.5rem, -50%);
          transform: translate(0.5rem, -50%);
  margin-left: 5px;
}

.btn.trans_clr {
  margin-right: 2.5rem;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
}

.btn.trans_clr img {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(-1rem, -50%);
          transform: translate(-1rem, -50%);
  top: 50%;
}

.btn.trans_clr:hover {
  margin-right: 0;
  padding-right: 2.5rem;
  background-color: #ffffff;
  color: #1b1c1d;
}

.btn.trans_clr:hover img {
  opacity: 1;
  -webkit-transform: translate(0.5rem, -50%);
          transform: translate(0.5rem, -50%);
  margin-left: 5px;
}

.btn.white_clr {
  margin-right: 2.5rem;
  border: 1px solid #1b1c1d;
  background-color: white;
  color: #1b1c1d;
}

.btn.white_clr img {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(-1rem, -50%);
          transform: translate(-1rem, -50%);
  top: 50%;
}

.btn.white_clr:hover {
  margin-right: 0;
  padding-right: 2.5rem;
  background-color: #1b1c1d;
  color: #ffffff;
}

.btn.white_clr:hover img {
  opacity: 1;
  -webkit-transform: translate(0.5rem, -50%);
          transform: translate(0.5rem, -50%);
  margin-left: 5px;
}

.btn.secondary {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0.4rem 0.3rem;
}

.btn.secondary i {
  font-size: 0.85rem;
}

.btn.secondary:hover:after {
  width: 100%;
}

.btn.secondary:after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  bottom: 0;
  left: 0;
}

.btn.secondary.clr_sec {
  color: #54b34c;
}

.btn.secondary.clr_sec::after {
  background-color: #54b34c;
}

.btn.secondary.clr_wht {
  color: white;
}

.btn.secondary.clr_wht::after {
  background-color: white;
}

.btn-dark {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.btn-dark:hover {
  color: #ffffff;
  background-color: black;
  border-color: black;
}

.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #ffffff;
  background-color: black;
  border-color: black;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}

.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: black;
  border-color: black;
}

.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}

.btn-dark:disabled, .btn-dark.disabled {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.btn-outline-dark {
  color: #000000;
  border-color: #000000;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #000000;
  background-color: transparent;
}

.btn-light {
  color: #1b1c1d;
  background-color: #ffffff;
  border-color: #000000;
}

.btn-light:hover {
  color: #000000;
  background-color: white;
  border-color: #1a1a1a;
}

.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000000;
  background-color: white;
  border-color: #1a1a1a;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(4, 4, 4, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(4, 4, 4, 0.5);
}

.btn-check:checked + .btn-light,
.btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
.show > .btn-light.dropdown-toggle {
  color: #000000;
  background-color: white;
  border-color: #1a1a1a;
}

.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(4, 4, 4, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(4, 4, 4, 0.5);
}

.btn-light:disabled, .btn-light.disabled {
  color: #000000;
  background-color: #ffffff;
  border-color: #000000;
}

.sec-hdr.xs {
  letter-spacing: 0.05rem;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.95rem;
  position: relative;
}

.sec-hdr.sm {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05rem;
}

@media only screen and (min-width: 768px) {
  .sec-hdr.sm {
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 992px) {
  .sec-hdr.sm {
    font-size: 1.3rem;
  }
}

.sec-hdr.lg {
  font-size: 1.7rem;
  font-family: "FB", "Helvetica", Arial, serif;
  line-height: 1.2;
  letter-spacing: 0.04rem;
}

@media only screen and (min-width: 768px) {
  .sec-hdr.lg {
    font-size: 2.7rem;
  }
}

.sec-hdr.md {
  font-size: 1.6rem;
  font-family: "FB", "Helvetica", Arial, serif;
  line-height: 1.2;
  letter-spacing: 0.04rem;
}

@media only screen and (min-width: 768px) {
  .sec-hdr.md {
    font-size: 2rem;
    text-align: left;
  }
}

@media only screen and (min-width: 992px) {
  .sec-hdr.md {
    font-size: 2rem;
    text-align: left;
  }
}

.sec-hdr span {
  color: #54b34c;
}

.sec-hdr.primary {
  color: #2f3a69;
}

.sec-hdr.primary.drk {
  color: #000000;
}

.sec-hdr.secondary {
  color: #54b34c;
}

.sec-hdr.dark {
  color: #0a3652;
}

.sec-hdr.wht {
  color: #ffffff;
}

.section-image {
  width: 100%;
  height: 60vh;
  border-radius: 0.3rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width: 992px) {
  .section-image {
    height: 80vh;
  }
}

.sec-text,
.sec-text p {
  font-size: 1rem;
  letter-spacing: 0.04rem;
  color: #494d50;
  margin-bottom: 0.6rem;
}

@media only screen and (min-width: 768px) {
  .sec-text,
  .sec-text p {
    font-size: 0.9rem;
  }
}

@media only screen and (min-width: 992px) {
  .sec-text,
  .sec-text p {
    font-size: 1.05rem;
  }
}

.sec-text.sm,
.sec-text p.sm {
  font-size: 0.9rem !important;
}

@media only screen and (min-width: 768px) {
  .sec-text.sm,
  .sec-text p.sm {
    font-size: 0.9rem;
  }
}

.sec-text a,
.sec-text p a {
  color: #1b1c1d;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.sec-text a:hover,
.sec-text p a:hover {
  color: #2f3a69;
}

.sec-text.wht,
.sec-text p.wht {
  color: white;
}

.sec-text.wht p,
.sec-text p.wht p {
  color: white;
}

.sec-text .grey,
.sec-text p .grey {
  color: #494d50;
}

.sec-text p > img,
.sec-text p p > img {
  margin: 1rem 0;
  border-radius: 0.3rem;
}

@media only screen and (min-width: 768px) {
  .sec-text p > img,
  .sec-text p p > img {
    margin: 2rem 0;
  }
}

.sec-text img,
.sec-text p img {
  width: 100%;
  height: auto;
}

.sec-text h2, .sec-text .h2,
.sec-text p h2,
.sec-text p .h2 {
  font-size: 1.9rem;
  font-family: "FR", "Helvetica", Arial, serif;
  line-height: 1.2;
  letter-spacing: 0.04rem;
}

.sec-text h3, .sec-text .h3,
.sec-text p h3,
.sec-text p .h3 {
  font-size: 1.8rem;
  font-family: "FB", "Helvetica", Arial, serif;
  line-height: 1.2;
  letter-spacing: 0.04rem;
}

.sec-text h4, .sec-text .h4, .sec-text .search-results .search-cards h2, .search-results .search-cards .sec-text h2, .sec-text .search-results .search-cards .h2, .search-results .search-cards .sec-text .h2,
.sec-text p h4,
.sec-text p .h4,
.sec-text p .search-results .search-cards h2,
.search-results .search-cards .sec-text p h2,
.sec-text p .search-results .search-cards .h2,
.search-results .search-cards .sec-text p .h2 {
  font-size: 1.5rem;
}

.sec-text h2, .sec-text .h2, .sec-text h3, .sec-text .h3, .sec-text h4, .sec-text .h4, .sec-text .search-results .search-cards h2, .search-results .search-cards .sec-text h2, .sec-text .search-results .search-cards .h2, .search-results .search-cards .sec-text .h2,
.sec-text p h2,
.sec-text p .h2,
.sec-text p h3,
.sec-text p .h3,
.sec-text p h4,
.sec-text p .h4,
.sec-text p .search-results .search-cards h2,
.search-results .search-cards .sec-text p h2,
.sec-text p .search-results .search-cards .h2,
.search-results .search-cards .sec-text p .h2 {
  line-height: 1.1;
  color: #2f3a69;
}

.sec-text h4 + p, .sec-text .h4 + p, .sec-text .search-results .search-cards h2 + p, .search-results .search-cards .sec-text h2 + p, .sec-text .search-results .search-cards .h2 + p, .search-results .search-cards .sec-text .h2 + p,
.sec-text p h4 + p,
.sec-text p .h4 + p,
.sec-text p .search-results .search-cards h2 + p,
.search-results .search-cards .sec-text p h2 + p,
.sec-text p .search-results .search-cards .h2 + p,
.search-results .search-cards .sec-text p .h2 + p {
  margin-top: 2vh;
}

.sec-text h2 + p, .sec-text .h2 + p, .sec-text .sitemap h2 + p,
.sec-text h3 + p,
.sec-text .h3 + p,
.sec-text p h2 + p,
.sec-text p .h2 + p,
.sec-text p .sitemap h2 + p,
.sec-text p h3 + p,
.sec-text p .h3 + p {
  margin-top: 1rem;
}

.sec-text p + h2, .sec-text p + .h2, .sec-text .sitemap p + h2,
.sec-text p p + h2,
.sec-text p p + .h2,
.sec-text p .sitemap p + h2 {
  margin-top: 4vh;
  margin-bottom: 3.5vh;
}

.sec-text p + h3, .sec-text p + .h3,
.sec-text p p + h3,
.sec-text p p + .h3 {
  margin-top: 1.5rem;
}

.sec-text.roles p,
.sec-text p.roles p {
  font-size: 0.9rem;
  letter-spacing: 0.03rem;
}

.sec-text.roles ul,
.sec-text p.roles ul {
  margin-top: 0.5rem;
}

.sec-text.roles ul li,
.sec-text p.roles ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
}

.sec-text.roles h4, .sec-text.roles .h4, .sec-text.roles .search-results .search-cards h2, .search-results .search-cards .sec-text.roles h2, .sec-text.roles .search-results .search-cards .h2, .search-results .search-cards .sec-text.roles .h2,
.sec-text p.roles h4,
.sec-text p.roles .h4,
.sec-text p.roles .search-results .search-cards h2,
.search-results .search-cards .sec-text p.roles h2,
.sec-text p.roles .search-results .search-cards .h2,
.search-results .search-cards .sec-text p.roles .h2 {
  font-size: 1.1rem;
  font-family: "FB", "Helvetica", Arial, serif;
}

.sec-text.roles h5, .sec-text.roles .h5,
.sec-text p.roles h5,
.sec-text p.roles .h5 {
  font-size: 1rem;
  font-family: "FB", "Helvetica", Arial, serif;
}

.sec-text.roles p + h4, .sec-text.roles p + .h4, .sec-text.roles .search-results .search-cards p + h2, .search-results .search-cards .sec-text.roles p + h2, .sec-text.roles .search-results .search-cards p + .h2, .search-results .search-cards .sec-text.roles p + .h2,
.sec-text p.roles p + h4,
.sec-text p.roles p + .h4,
.sec-text p.roles .search-results .search-cards p + h2,
.search-results .search-cards .sec-text p.roles p + h2,
.sec-text p.roles .search-results .search-cards p + .h2,
.search-results .search-cards .sec-text p.roles p + .h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}

.sec-text.roles p + h5, .sec-text.roles p + .h5,
.sec-text p.roles p + h5,
.sec-text p.roles p + .h5 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

.bkg-grey {
  background-color: #f5f5f5;
}

.bkg-light-li {
  background-color: #f0f4fc;
}

.bkg-dark {
  background-color: #1b1c1d;
}

.bkg-ft-dark {
  background-color: #282f36;
}

.bkg-light {
  background-color: #f1f8f8;
}

.bkg-sec-light {
  background-color: #f1f8f8;
}

.bkg-sec-grey {
  background-color: #f3f3f5;
}

.site-notice {
  background-color: #dc3545;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 10rem;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.site-notice__message {
  margin: 0.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 99%;
          flex: 1 1 99%;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.925em;
}

.site-notice__message p:last-child {
  margin-bottom: 0;
}

.site-notice__dismiss {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  margin: 0.25rem 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 1.15rem;
  border-radius: 0.25rem;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.site-notice__dismiss:hover, .site-notice__dismiss:focus {
  background-color: #e04b59;
}

.site-notice--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.site-notice.closing {
  max-height: 0;
}

.page-404 {
  color: #ffffff;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-404__title, .page-404__message, .page-404__search-form, .page-404__back-home {
  margin-bottom: 2.5rem;
}

.page-404__title {
  margin-top: 3rem;
}

.search-results h1, .search-results .h1 {
  color: #2f3a69;
}

.search-results .search-cards {
  margin: 1.5rem 0;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

@media only screen and (min-width: 992px) {
  .search-results .search-cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    margin: 2rem 0;
  }
}

.search-results .search-cards-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.search-results .search-cards-image {
  display: none;
  min-height: 5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}

@media only screen and (min-width: 992px) {
  .search-results .search-cards-image {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 2rem;
    max-height: 8rem;
  }
}

@media only screen and (min-width: 1200px) {
  .search-results .search-cards-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

.search-results .search-cards-description {
  margin: 0.5rem 0 0;
}

.search-results .search-cards h2, .search-results .search-cards .h2 {
  margin-bottom: 0.25rem;
}

@media only screen and (min-width: 992px) {
  .search-results .search-cards h2, .search-results .search-cards .h2 {
    margin-top: -0.3rem;
  }
}

.search-results .search-cards a {
  color: #0a3652;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.search-results .search-cards a:hover, .search-results .search-cards a:active, .search-results .search-cards a:focus {
  color: #2f3a69;
}

.search-results .search-cards .search-cards-link {
  font-size: 0.855rem;
  font-weight: 700;
  white-space: nowrap;
}

.no-posts {
  text-align: center;
}

.pagination {
  margin: 1rem auto 2rem;
}

.pagination .page-item {
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0.4rem;
}

.pagination .page-item .page-link {
  text-decoration: none;
  border: 1px solid #1b1c1d;
  outline: none;
  color: #1b1c1d;
  font-weight: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.pagination .page-item .page-link:hover {
  color: #ffffff;
  background-color: #2f3a69;
  text-decoration: none;
  cursor: pointer;
  border-color: #2f3a69;
}

.pagination .page-item .page-link .fas {
  font-size: inherit;
  display: none;
}

.pagination .page-item .page-link.next, .pagination .page-item .page-link.prev {
  color: #1b1c1d;
  font-weight: inherit;
  background-color: #ffffff;
  border-color: #1b1c1d;
  border-radius: 0.5rem;
  padding: 0.7rem 0.8rem;
}

.pagination .page-item.active .page-link {
  color: #ffffff;
  font-weight: inherit;
  background-color: #2f3a69;
  border-color: #2f3a69;
  border-radius: 0.5rem;
}

#scroll-to-top {
  border-radius: 0.7rem;
  background-color: #2f3a69;
  line-height: 1;
  padding: 1rem;
  position: absolute;
  right: 3.5%;
  bottom: 0rem;
  cursor: pointer;
  -webkit-transition: background-color 0.6s ease, -webkit-transform 0.4s ease-out;
  transition: background-color 0.6s ease, -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out, background-color 0.6s ease;
  transition: transform 0.4s ease-out, background-color 0.6s ease, -webkit-transform 0.4s ease-out;
}

@media only screen and (min-width: 768px) {
  #scroll-to-top {
    padding: 1.4rem;
    bottom: 5rem;
    right: 2%;
  }
}

#scroll-to-top:hover, #scroll-to-top:focus, #scroll-to-top:active, #scroll-to-top.active {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #273057;
}

#scroll-to-top i {
  color: #ffffff;
}

.sitemap {
  padding: 2.5rem 0;
}

.sitemap .h2, .sitemap h2 {
  color: #1b1c1d;
  margin-bottom: 2rem;
}

.sitemap a {
  display: inline-block;
  color: #2f3a69;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  text-align: inherit;
  font-size: 0.85rem;
  line-height: 1.05;
  margin: 0.25rem 0 2rem;
}

.sitemap a:hover, .sitemap a:focus {
  color: #2f3a69;
}

.sitemap li {
  list-style: none;
}

.sitemap ul {
  padding: 0;
}

.sitemap-list {
  margin: 0 0 2.5rem;
}

.sitemap-list-label {
  margin: 0 0 0.5rem;
}

.sitemap-list-posts {
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  margin: 0 0 3rem;
  font-size: 0.85rem;
}

@media only screen and (min-width: 375px) {
  .sitemap-list-posts {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media only screen and (min-width: 992px) {
  .sitemap-list-posts {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    font-size: 0.925rem;
  }
}

@media only screen and (min-width: 1200px) {
  .sitemap-list-posts {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media only screen and (min-width: 1400px) {
  .sitemap-list-posts {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.social-share .share {
  width: 2rem;
  height: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 0.5rem;
  background-color: #1b1c1d;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .social-share .share {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.social-share .share:hover {
  background-color: #2f3a69;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.only-mobile {
  display: block;
}

@media only screen and (min-width: 768px) {
  .only-mobile {
    display: none;
  }
}

.only-desktop {
  display: none;
}

@media only screen and (min-width: 768px) {
  .only-desktop {
    display: block;
  }
}

@font-face {
  font-family: 'FBL';
  src: url("../fonts/custom/FormaDJRMicro-Black.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FB';
  src: url("../fonts/custom/FormaDJRMicro-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FM';
  src: url("../fonts/custom/FormaDJRMicro-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FR';
  src: url("../fonts/custom/FormaDJRMicro-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FL';
  src: url("../fonts/custom/FormaDJRMicro-Light.ttf");
  font-weight: normal;
  font-style: normal;
}

h1, .h1,
.h1 {
  font-family: "FB", "Helvetica", Arial, serif;
  font-size: 2.5rem;
  line-height: 1.286;
}

@media only screen and (min-width: 576px) {
  h1, .h1,
  .h1 {
    font-size: 3.5rem;
  }
}

h2, .h2, .sitemap h2,
.h2 {
  font-family: "FB", "Helvetica", Arial, serif;
  font-size: 2rem;
  line-height: 1.275;
}

@media only screen and (min-width: 576px) {
  h2, .h2, .sitemap h2,
  .h2 {
    font-size: 2.5rem;
  }
}

h3, .h3,
.h3 {
  font-family: "FB", "Helvetica", Arial, serif;
  font-size: 1.375rem;
  line-height: 1.25;
}

@media only screen and (min-width: 576px) {
  h3, .h3,
  .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4, .search-results .search-cards h2, .search-results .search-cards .h2,
.h4,
.search-results .search-cards h2,
.search-results .search-cards .h2 {
  font-family: "FR", "Helvetica", Arial, serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

@media only screen and (min-width: 576px) {
  h4, .h4, .search-results .search-cards h2, .search-results .search-cards .h2,
  .h4,
  .search-results .search-cards h2,
  .search-results .search-cards .h2 {
    font-size: 1.25rem;
  }
}

.wysiwyg {
  line-height: inherit;
}

.wysiwyg h1, .wysiwyg .h1 {
  color: #2f3a69;
}

.wysiwyg blockquote {
  color: #2f3a69;
  font-style: normal;
}

.wysiwyg p {
  overflow-wrap: break-word;
}

.wysiwyg ul li {
  margin: 0.25rem 0.5rem;
  list-style: none;
}

.wysiwyg ul li:before {
  content: "\25C6";
  font-size: 1rem;
  color: #2f3a69;
  vertical-align: -0.05rem;
  margin: 0 1rem 0 -2rem;
  line-height: inherit;
}

.wysiwyg a {
  color: #2f3a69;
}

.wysiwyg a:hover, .wysiwyg a:active, .wysiwyg a:focus {
  color: #2f3a69;
}

.wysiwyg > * {
  margin-bottom: 1.5rem;
}

.wysiwyg img,
.wysiwyg figure,
.wysiwyg video {
  max-width: 100%;
  height: auto;
}

/**
 *
 * Styles related to the header section go here
 *
 */
.site-header {
  width: 100%;
  top: 0;
  right: 0;
  position: absolute;
  z-index: 99;
}

.site-header.smheader::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.09);
}

.site-header.smheader .hdr .brand a img.clr {
  display: block;
}

.site-header.smheader .hdr .brand a img.wht {
  display: none;
}

.site-header.smheader .navbar .navbar-nav .nav-item .nav-link {
  color: #4c4d56 !important;
}

.site-header.smheader .navbar .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}

.site-header.smheader .navbar .navbar-nav .nav-item .nav-link:hover, .site-header.smheader .navbar .navbar-nav .nav-item .nav-link:focus, .site-header.smheader .navbar .navbar-nav .nav-item .nav-link:active, .site-header.smheader .navbar .navbar-nav .nav-item .nav-link.active {
  color: #54b34c;
}

.site-header.smheader .navbar__icon {
  color: #1b1c1d;
}

.site-header.smheader .menu-item-sub::after {
  color: #4c4d56;
}

.site-header::before {
  content: "";
  background: #fff;
  opacity: 0.98;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.site-header.transparent {
  background-color: rgba(84, 179, 76, 0.25);
}

header {
  width: 100%;
  padding: 1rem 8%;
  overflow: visible;
}

@media (min-width: 768px) {
  header {
    padding-right: 0;
  }
}

header .hdr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  header .hdr {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: space-between;
  }
}

header .hdr .brand {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .hdr .brand a {
  width: auto;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

header .hdr .brand a img {
  width: auto;
  height: 2rem;
}

@media only screen and (min-width: 768px) {
  header .hdr .brand a img {
    height: 2.5rem;
  }
}

header .hdr .brand a img.clr {
  display: none;
}

header .hdr .brand a img.wht {
  display: block;
}

header .hdr .navbar {
  display: none;
  margin-left: auto;
}

@media only screen and (min-width: 768px) {
  header .hdr .navbar {
    display: flex;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.5rem 0 0 0.5rem;
    padding: 1% 8% 1% 5%;
    width: 75%;
    justify-content: center;
  }
}

.site-header.smheader .hdr .navbar {
  background: none;
}

header .hdr .navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /* gap: 3rem; */
}

header .hdr .navbar .navbar-nav .menu-item a {
  font-size: .875rem;
  letter-spacing: 0.05rem;
  /* font-family: "FB", "Helvetica", Arial, serif; */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: #ffffff;
}

header .hdr .navbar .navbar-nav .menu-item a:hover {
  color: rgba(252, 252, 252, 0.9);
}

header .hdr .hdr-actions {
  width: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem 0;
  cursor: pointer;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-radius: 0.3rem;
  background-color: #54b34c;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 2rem;
  gap: 1rem;
}

@media only screen and (min-width: 768px) {
  header .hdr .hdr-actions {
    width: 7rem;
    gap: 1.3rem;
  }
}

header .hdr .hdr-actions.menu-icon {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

header .hdr .hdr-actions.menu-icon.open .menu-burger .burger {
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
  background: transparent;
}

header .hdr .hdr-actions.menu-icon.open .menu-burger .burger::before {
  -webkit-transform: rotate(45deg) translate(10px, -10px);
          transform: rotate(45deg) translate(10px, -10px);
}

header .hdr .hdr-actions.menu-icon.open .menu-burger .burger::after {
  -webkit-transform: rotate(-45deg) translate(10px, 10px);
          transform: rotate(-45deg) translate(10px, 10px);
}

header .hdr .hdr-actions.menu-icon .text {
  width: 2rem;
  font-size: 0.85rem;
  font-family: "FB", "Helvetica", Arial, serif;
  line-height: 1;
  position: relative;
  color: #ffffff;
  letter-spacing: 0.04rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  header .hdr .hdr-actions.menu-icon .text {
    width: 2.4rem;
    font-size: 1rem;
  }
}

header .hdr .hdr-actions.menu-icon .menu-burger {
  width: 20px;
  height: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) {
  header .hdr .hdr-actions.menu-icon .menu-burger {
    width: 24px;
    height: 24px;
  }
}

header .hdr .hdr-actions.menu-icon .menu-burger .burger {
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: #ffffff;
  border-radius: 0.8rem;
}

header .hdr .hdr-actions.menu-icon .menu-burger .burger::after, header .hdr .hdr-actions.menu-icon .menu-burger .burger::before {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: #ffffff;
  border-radius: 0.8rem;
}

header .hdr .hdr-actions.menu-icon .menu-burger .burger::before {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

header .hdr .hdr-actions.menu-icon .menu-burger .burger::after {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.navbar {
  padding: 0;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .navbar-expand-lg {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.navbar .nav-link {
  font-size: 1rem;
  color: rgba(252, 252, 252, 0.9);
  text-transform: capitalize;
  letter-spacing: 0.09rem;
  line-height: 1;
  position: relative;
  font-weight: 400;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  padding: 0.75rem 0rem !important;
}

@media only screen and (max-width: 768px) {
  .navbar .nav-link {
    color: #1b1c1d;
  }
}

.navbar .nav-link:after {
  content: '';
  display: none;
  position: absolute;
  width: 0;
  height: 4px;
  background-color: #2f3a69;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  bottom: 0;
  left: 0;
}

.navbar .nav-link:hover, .navbar .nav-link:focus, .navbar .nav-link:active, .navbar .nav-link.active {
  color: rgba(252, 252, 252, 0.9);
}

@media only screen and (max-width: 768px) {
  .navbar .nav-link:hover, .navbar .nav-link:focus, .navbar .nav-link:active, .navbar .nav-link.active {
    color: #2f3a69;
  }
}

.navbar .nav-link:hover:after, .navbar .nav-link:focus:after, .navbar .nav-link:active:after, .navbar .nav-link.active:after {
  width: 100%;
  height: 2px;
}

@media only screen and (max-width: 768px) {
  .navbar .nav-link:hover:after, .navbar .nav-link:focus:after, .navbar .nav-link:active:after, .navbar .nav-link.active:after {
    width: 0;
  }
}

.navbar .active > .nav-link,
.navbar .nav-link.active {
  color: #2f3a69;
}

.navbar .nav-link.show,
.navbar .show > .nav-link {
  color: #2f3a69;
}

.navbar .nav-item:last-of-type i:last-child {
  display: none;
}

@media only screen and (max-width: 768px) {
  .navbar .nav-item:last-of-type i:last-child {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media only screen and (max-width: 768px) {
  .navbar .nav-item {
    width: 100%;
    max-width: 768px;
    text-align: left;
    margin: 0 auto;
    padding: 1rem 1rem 0.4rem 1rem;
  }
  .navbar .nav-item:last-of-type {
    border-bottom: none;
  }
  .navbar .nav-item:last-of-type i:first-child {
    display: none;
  }
  .navbar .nav-item:last-of-type i:last-child {
    font-size: 0.9rem;
    margin-left: 1rem;
  }
  .navbar .nav-item .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
  }
}

.navbar #mega-trigger {
  margin-right: 0.4rem;
}

.navbar-nav {
  width: auto;
  height: auto;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: relative;
  background-color: #ffffff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 5vh;
  gap: 0rem;
}

@media only screen and (min-width: 768px) {
  .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            /* justify-content: flex-end; */
    background-color: transparent;
    padding-top: 0;
    gap: 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .navbar-nav {
    gap: 2.5rem;
  }
}

.navbar__menu {
  height: 100vh;
  display: none;
  margin-left: 0;
  padding: 0;
  background-color: #ffffff;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
}

@media only screen and (min-width: 768px) {
  .navbar__menu {
    height: auto;
    display: block;
    margin-left: auto;
    padding: 0;
    background-color: transparent;
    position: relative;
    left: unset;
  }
}

.navbar__menu .mobile-menu-hdr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .navbar__menu .mobile-menu-hdr {
    display: none;
  }
}

.navbar__menu .mobile-menu-hdr .navbar-brand--image {
  display: block;
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}

.navbar__menu .mobile-menu-hdr .navbar__icon {
  margin-left: auto;
  color: #1b1c1d;
  font-size: 2rem;
}

.navbar-toggler {
  border: none;
  padding: 0;
  position: relative;
}

.navbar-toggler:focus, .navbar-toggler:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler-icon {
  font-size: 1.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  color: #ffffff;
}

.navbar-toggler-icon.dark {
  color: #0a3652;
}

.navbar-toggler-icon:hover {
  color: #2f3a69;
}

.navbar__icon {
  color: #1b1c1d;
}

.navbar__icon i {
  font-size: 1.7rem;
}

@media only screen and (min-width: 768px) {
  .navbar__icon--mobile {
    display: none;
  }
}

.navbar__top {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.navbar__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar__top--start, .navbar__top--end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.navbar__top--start .navbar__icon:hover, .navbar__top--start .navbar__icon:focus, .navbar__top--start .navbar__icon:active, .navbar__top--end .navbar__icon:hover, .navbar__top--end .navbar__icon:focus, .navbar__top--end .navbar__icon:active {
  color: #2f3a69;
}

.navbar__top--start .navbar__icon:last-of-type, .navbar__top--end .navbar__icon:last-of-type {
  margin-left: 0.5rem;
}

.navbar__bottom {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  border-bottom: 1px solid rgba(84, 179, 76, 0.5);
}

.navbar .dropdown-menu {
  width: auto;
  height: auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0.9rem;
  z-index: 1;
  background-color: #f5f5f5;
  margin: 2.3rem 0 0;
  padding: 1rem 0;
  border: 1px solid #54b34c;
  /* border: none; */
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

@keyframes glowing-border {
  0% {
      border-color: #54b34c;
      box-shadow: 0 0 8px #54b34c;
  }
  50% {
      border-color: #2f3a69;
      box-shadow: 0 0 8px #2f3a69;
  }
  100% {
      border-color: #54b34c;
      box-shadow: 0 0 8px #54b34c;
  }
}

.navbar .dropdown-menu {
  width: auto;
  height: auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0.9rem;
  z-index: 1;
  background-color: #f5f5f5;
  margin: 2.3rem 0 0;
  padding: 1rem 0;
  border: 1px solid #54b34c;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.navbar .dropdown-menu:hover {
  animation: glowing-border 2s linear infinite;
}


@media only screen and (min-width: 1200px) {
  .navbar .dropdown-menu {
    padding: 1rem 0;
  }
}

.navbar .dropdown-menu .menu-item {
  list-style: none;
  padding: 0 0.7rem;
}

.navbar .dropdown-menu .menu-item:nth-child(n+2) {
  padding: 0.3rem 0.7rem;
}

.navbar .dropdown-menu .menu-item a {
  font-size: 0.9rem !important;
  font-family: 'FR' !important;
  font-weight: 600;
  letter-spacing: 0.04rem !important;
  color: rgba(27, 28, 29, 0.7) !important;
  border-radius: 0.2rem;
}

.navbar .dropdown-menu .menu-item a:hover {
  background-color: rgba(84, 179, 76, 0.2) !important;
}

.navbar .dropdown-menu__title {
  text-transform: capitalize;
  padding-bottom: 0.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(84, 179, 76, 0.5);
}

.navbar .dropdown-menu__title h3 a, .navbar .dropdown-menu__title .h3 a {
  font-size: 1.2rem;
}

.navbar .dropdown-menu__nav {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.navbar .dropdown-menu__nav .nav-item {
  margin-bottom: 0.5rem;
}

.navbar .dropdown-menu__nav .nav-item:last-of-type {
  margin-bottom: 0;
}

.navbar .dropdown-menu__nav .nav-link {
  padding-left: 0;
  font-size: 1rem;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: normal;
}

.navbar .dropdown-menu .sub-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px 0;
}

.navbar .dropdown-menu .sub-menu-list a {
  width: 47%;
  padding: 0.9rem 4%;
  border-radius: 0.4rem;
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  display: inline-block;
}

.navbar .dropdown-menu .sub-menu-list a:after {
  content: '';
  width: 90%;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  left: 5%;
  bottom: 0;
}

.navbar .dropdown-menu .sub-menu-list a:hover {
  background-color: rgba(47, 58, 105, 0.5);
}

.navbar .dropdown-menu .sub-menu-list a .list-item .title {
  font-size: 1rem;
  white-space: nowrap;
  font-family: 400;
  color: #1b1c1d;
}

.navbar .dropdown-menu .sub-menu-list a .list-item .preamble {
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: rgba(27, 28, 29, 0.8);
}

.menu-item-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-item-sub::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 0.625rem;
  content: "\f078";
  margin-left: 0.4rem;
  color: white;
}

@media only screen and (max-width: 768px) {
  .menu-item-sub::after {
    display: none;
  }
}

.menu-icon {
  z-index: 99;
}

.mega-menu {
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: none;
  background-color: #282f36;
  left: 0;
  top: 0;
}

.mega-menu .menu-wrap nav .mega-nav {
  padding: 0;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item {
  list-style: none;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item a {
  font-size: 1.2rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.04rem;
  text-decoration: underline;
  color: rgba(84, 179, 76, 0.8);
}

@media only screen and (min-width: 768px) {
  .mega-menu .menu-wrap nav .mega-nav .menu-item a {
    font-size: 2rem;
  }
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu {
  display: block;
  position: relative;
  border: none;
  padding: 0 0 0 0.4rem;
  background-color: transparent;
  margin-bottom: 0.5rem;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item a {
  font-size: 0.95rem;
  font-family: 'FM';
  text-decoration: none;
  color: white;
  letter-spacing: 0.06rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media only screen and (min-width: 768px) {
  .mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item a {
    font-size: 1.3rem;
  }
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item a:hover {
  color: #54b34c;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a {
  font-size: 0.75rem;
  font-family: "FR", "Helvetica", Arial, serif;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 768px) {
  .mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a {
    font-size: 1rem;
  }
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a:hover {
  color: #54b34c;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item .dropdown-menu {
  margin-bottom: 0;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a {
  font-size: 0.75rem;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.05rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a {
    font-size: 0.85rem;
  }
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a:hover {
  color: #54b34c;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a:hover::before {
  background-color: #54b34c;
}

.mega-menu .menu-wrap nav .mega-nav .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a:before {
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  left: 1rem;
  top: 50%;
}

.mega-menu .menu-wrap .menu-contact {
  display: none;
}

@media only screen and (min-width: 768px) {
  .mega-menu .menu-wrap .menu-contact {
    display: block;
  }
}

.mega-menu .menu-wrap .menu-contact .menu-hdr {
  font-size: 1.5rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.04rem;
  text-decoration: underline;
  color: rgba(84, 179, 76, 0.8);
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .mega-menu .menu-wrap .menu-contact .menu-hdr {
    font-size: 2rem;
  }
}

.mega-menu .menu-wrap .menu-contact .social-icons {
  margin: 0;
}

.mega-menu .menu-wrap .menu-contact .social-icons a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1rem;
  padding: 0;
  color: #4c4d56;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.mega-menu .menu-wrap .menu-contact .social-icons a:hover, .mega-menu .menu-wrap .menu-contact .social-icons a:focus, .mega-menu .menu-wrap .menu-contact .social-icons a:active, .mega-menu .menu-wrap .menu-contact .social-icons a.active {
  background-color: #54b34c;
  border: 1px solid #54b34c;
  color: white;
}

.mega-menu .menu-wrap .menu-contact .action {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.7rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  gap: 0.8rem;
}

.mega-menu .menu-wrap .menu-contact .action.primary {
  background-color: #2f3a69;
}

.mega-menu .menu-wrap .menu-contact .action.secondary {
  background-color: rgba(84, 179, 76, 0.7);
}

.mega-menu .menu-wrap .menu-contact .action.secondary:hover {
  background-color: #54b34c;
}

.mega-menu .menu-wrap .menu-contact .action .icon svg {
  width: 2rem;
  height: auto;
  fill: white;
}

.mega-menu .menu-wrap .menu-contact .action .details {
  line-height: 1;
}

.mega-menu .menu-wrap .menu-contact .action .details .minor {
  font-size: 0.8rem;
  letter-spacing: 0.04rem;
  font-family: "FR", "Helvetica", Arial, serif;
  color: #ffffff;
}

.mega-menu .menu-wrap .menu-contact .action .details .major {
  font-size: 1rem;
  margin-top: 0.15rem;
  letter-spacing: 0.03rem;
  font-family: "FB", "Helvetica", Arial, serif;
  color: rgba(252, 252, 252, 0.9);
}

.mega-menu a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
}

.mega-menu a.dropdown-toggle::after {
  display: none;
}

.mega-menu a:hover {
  color: #54b34c;
  background-color: transparent;
}

/**
 *
 * Styles related to the footer section go here
 *
 */
.footer {
  color: #ffffff;
  background-color: #282f36;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.footer a:hover, .footer a:focus, .footer a:active, .footer a.active {
  color: #54b34c;
}

.footer h4, .footer .h4, .footer .search-results .search-cards h2, .search-results .search-cards .footer h2, .footer .search-results .search-cards .h2, .search-results .search-cards .footer .h2 {
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-bottom: 0 !important;
  font-family: "FB", "Helvetica", Arial, serif;
  color: #ffffff;
}

.footer h3, .footer .h3 {
  font-size: 1.2rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.05rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 2rem;
  align-items: center;
  gap: 1.5rem;
}

@media only screen and (min-width: 768px) {
  .footer-brand-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
}

.footer-brand-top a {
  width: 100%;
  display: inline-block;
}

.footer-brand-top a .brand-image {
  width: 100%;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width: 768px) {
  .footer-brand-top a .brand-image {
    height: 7rem;
    background-position: left;
  }
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.7rem;
}

.footer__contact i {
  margin-right: 1rem;
  color: #ffffff;
}

.footer__contact a, .footer__contact p {
  font-size: 1rem;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-menu {
  margin-bottom: 2rem;
  list-style-type: none;
  padding: 0;
}

.footer-menu .menu-item {
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-menu .menu-item a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  letter-spacing: 0.04rem;
  display: inline-block;
  padding: 0.6rem 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-menu .menu-item a i {
  right: 0;
  top: 50%;
  font-size: 0.85rem;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-menu .menu-item a:hover {
  color: #54b34c;
}

.footer-menu .menu-item a:hover:after {
  color: #54b34c;
}

.footer .newsletter-hdr {
  position: relative;
}

.footer .newsletter-hdr img {
  width: auto;
  height: 4rem;
  position: absolute;
  bottom: 0.8rem;
  right: 25%;
}

@media only screen and (min-width: 768px) {
  .footer .newsletter-hdr img {
    right: 10%;
  }
}

.footer__menu--legal {
  margin: 0;
}

.footer__menu--legal .menu-item {
  display: inline-block;
  padding: 0.5rem;
}

.footer .social-icons {
  margin: 0;
}

.footer .social-icons a {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.1rem;
  padding: 0;
  color: #4c4d56;
  background-color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.footer .social-icons a:hover, .footer .social-icons a:focus, .footer .social-icons a:active, .footer .social-icons a.active {
  background-color: #54b34c;
  border: 1px solid #54b34c;
  color: white;
}

.footer__main {
  padding: 3rem 0 3rem;
  background-color: #1b1c1d;
}

@media only screen and (min-width: 768px) {
  .footer__main {
    padding: 6rem 0 5rem;
  }
}

.footer__main .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .footer__main .footer-links {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-top: 0;
  }
}

.footer__main .footer-links .footer-links-group {
  width: 48%;
}

@media only screen and (min-width: 768px) {
  .footer__main .footer-links .footer-links-group {
    width: 32%;
  }
}

.footer__main .footer-links .footer-links-group:nth-child(3) {
  width: 100%;
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .footer__main .footer-links .footer-links-group:nth-child(3) {
    width: 32%;
    margin-top: 0;
  }
}

.footer__main .footer-links .footer-links-group ul {
  text-align: center;
  padding-left: 0;
}

@media only screen and (min-width: 768px) {
  .footer__main .footer-links .footer-links-group ul {
    width: auto;
    text-align: left;
  }
}

.footer__main .footer-links .footer-links-group ul li {
  text-align: center;
  list-style: none;
  margin-bottom: 1.2rem;
}

@media only screen and (min-width: 768px) {
  .footer__main .footer-links .footer-links-group ul li {
    text-align: left;
  }
}

.footer__main .footer-links .footer-links-group ul li a {
  font-weight: 600;
  color: #d9d9d9;
}

.footer__main .footer-links .footer-links-group ul li a:hover {
  color: #2f3a69;
}

.footer-bottom {
  width: 100%;
  padding: 1rem 0;
  margin: 1.5rem 0 0 0 !important;
}

.footer-bottom .disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}

.footer-bottom .footer-legal {
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0.04rem;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 768px) {
  .footer-bottom .footer-legal {
    display: block;
    font-size: 0.8rem;
  }
}

.footer-bottom .footer-legal a {
  color: white;
  font-family: "FB", "Helvetica", Arial, serif;
}

.footer-bottom .footer-legal .copyright-text {
  margin: 0 0 0.3rem 0;
}

@media only screen and (min-width: 768px) {
  .footer-bottom .footer-legal .copyright-text {
    margin: 0.5rem 1rem 0 0;
  }
}

.footer-policy .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0.6rem;
  list-style-type: none;
  padding: 0;
  gap: 1rem;
}

.footer-policy .footer-menu .menu-item {
  font-size: 0.8rem;
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  .footer-policy .footer-menu .menu-item {
    font-size: 0.9rem;
  }
}

.footer-policy .footer-menu .menu-item:nth-child(n+2) {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-policy .footer-menu .menu-item a {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0.05rem;
  display: inline-block;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-policy .footer-menu .menu-item a:hover {
  color: #54b34c;
}

.footer .cta-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: white;
  border-radius: 0.3rem;
  padding-right: 2%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .footer .cta-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1rem;
  }
}

.footer .cta-form .cta-form-field {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .footer .cta-form .cta-form-field {
    width: 27rem;
  }
}

.footer .cta-form .cta-form-field input {
  width: 100%;
  border-radius: 0.3rem;
  padding: 0.8rem 1.5rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  outline: none;
}

.footer .cta-form .cta-form-field input::-webkit-input-placeholder {
  color: #8F96A3;
}

.footer .cta-form .cta-form-field input::-moz-placeholder {
  color: #8F96A3;
}

.footer .cta-form .cta-form-field input:-ms-input-placeholder {
  color: #8F96A3;
}

.footer .cta-form .cta-form-field input::-ms-input-placeholder {
  color: #8F96A3;
}

.footer .cta-form .cta-form-field input::placeholder {
  color: #8F96A3;
}

.footer .cta-form .cta-form-field input:hover, .footer .cta-form .cta-form-field input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.footer .cta-form .cta-form-button {
  margin-left: 0;
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .footer .cta-form .cta-form-button {
    margin-left: 1rem;
    margin-top: 0;
  }
}

.footer .cta-form .cta-form-button button {
  width: 2.5rem;
  height: 2.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.3rem;
  border: none;
  outline: none;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: #2c6427;
  color: white;
}

.footer .cta-form .cta-form-button button:hover {
  background-color: #2f3a69;
}

/**
 *
 * All SCSS styles related to the home (front) page
 *
*/
.hero {
  width: 100%;
  height: 90vh;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .hero {
    height: 100vh;
  }
}

.hero .overlay {
  height: 90vh;
}

@media only screen and (min-width: 768px) {
  .hero .overlay {
    height: 100vh;
  }
}

/* ****** SLIDER START ***** */
.hero .flexslider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 3.3rem 3.3rem;
}

.hero .flexslider .slides {
  padding: 0 !important;
}

.hero .flexslider .slides li {
  width: 100%;
  height: 90vh;
  position: relative;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

@media only screen and (min-width: 768px) {
  .hero .flexslider .slides li {
    height: 100vh;
  }
}

.hero .flexslider .slides li .overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}

.hero .flexslider .slides li video, .hero .flexslider .slides li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  /* left: 0;
  top: 0; */
}

.hero .flexslider .slides li .flex-caption {
  width: 90%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 5%;
}

@media only screen and (min-width: 768px) {
  .hero .flexslider .slides li .flex-caption {
    width: 100%;
    height: 60vh;
    padding: 0 8% 7%;
    text-align: left;
    left: 0;
    top: 75%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;

  }
}

.hero .flexslider .slides li .flex-caption .captions {
  width: 100%;
  color: white;
}

@media only screen and (min-width: 768px) {
  .hero .flexslider .slides li .flex-caption .captions {
    width: 50%;
  }
}

/* .hero .flexslider .slides li .flex-caption .slide_header,
.hero .flexslider .slides li .flex-caption .slide_desc,
.hero .flexslider .slides li .flex-caption .btn-hld {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutLeft;
          animation-name: fadeOutLeft;
} */

.hero .flexslider .slides li .flex-caption .slide_header {
  width: 100%;
  letter-spacing: 0.06rem;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  font-family: "FL", "Helvetica", Arial, serif;
  /* font-family: sans-serif; */
}

@media only screen and (min-width: 768px) {
  .hero .flexslider .slides li .flex-caption .slide_header {
    font-size: 4.529rem;
  }
}

@media (max-width: 768px) {
  .hero .flexslider .slides li .flex-caption {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    top: 60%;
  }

  .hero .flexslider .slides li .flex-caption .slide_header {
    font-size: 2.5rem;
  }
}

.hero .flexslider .slides li .flex-caption .slide_desc {
  /* width: 90%; */
  font-weight: 300;
  /* text-transform: uppercase; */
  letter-spacing: 0.06rem;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 1rem;
}

.hero .flexslider .slides li .btn.primary_clr img {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-transform: translate(-1rem, -50%);
  transform: translate(-1rem, -50%);
  top: 50%;
}

@media only screen and (min-width: 768px) {
  .btn.transparent span img {
    height: 1.5rem;
    margin-left: 0.3rem;
}

}

 .hero .flexslider .slides li .btn.transparent span img {
    width: auto;
    height: 1.5rem;
    margin-left: 0.4rem;
}

@media only screen and (min-width: 768px) {
  .hero .flexslider .slides li .flex-caption .slide_desc {
    font-size: 1.37rem;
  }
}

.hero .flexslider .slides li .flex-caption .btn__hld {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
  gap: 3.5rem;
}

/* .hero .flexslider .slides li.flex-active-slide .flex-caption .slide_header,
.hero .flexslider .slides li.flex-active-slide .flex-caption .slide_desc {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
} */

/* .hero .flexslider .slides li.flex-active-slide .flex-caption .slide_header,
.hero .flexslider .slides li.flex-active-slide .flex-caption .slide_desc {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
} */
.hero .flexslider .slides li.flex-active-slide .flex-caption .slide_header{
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInBottom;
          animation-name: fadeInBottom;
}


.hero .flexslider .slides li.flex-active-slide .flex-caption .slide_header {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.hero .flexslider .slides li.flex-active-slide .flex-caption .slide_desc {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

/* .hero .flexslider .slides li.flex-active-slide .flex-caption .btn__hld {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
} */

.hero .flexslider .slides li.flex-active-slide .flex-caption .photo {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-name: xFlipLeft;
          animation-name: xFlipLeft;
  opacity: 1;
}

.hero .flexslider .slides li .flex-active-slide .flex-caption .btn__hld {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
  gap: 3.5rem;
}

.hero .flexslider .flex-direction-nav {
  display: none;
}

.hero .flexslider .flex-control-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  padding: 0;
  text-align: center;
  top: 72%;
  left: 50%;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
	.hero .flexslider .slides li .flex-caption .btn__hld .btn.transparent {
	display: none;
	}

	.hero .flexslider .flex-control-nav {
		top: 90% !important;
	}
}

@media only screen and (min-width: 768px) {
  .hero .flexslider .flex-control-nav {
    left: 90.5%;
    display: unset;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    top: 55%;
    display: none;
  }
}

.hero .flexslider .flex-control-nav li {
  display: block;
}

.hero .flexslider .flex-control-nav li a {
  width: 8px;
  height: 8px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  background: #ffffff;
  text-indent: 99999px;
  margin: 8px;
  border-radius: 50%;
}

.hero .flexslider .flex-control-nav li a:before {
  content: '';
  width: 18px;
  height: 18px;
  opacity: 0;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #54b34c;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
  top: -5px;
  left: -5px;
}

.hero .flexslider .flex-control-nav li a.flex-active {
  background-color: #54b34c;
}

.hero .flexslider .flex-control-nav li a.flex-active:before {
  opacity: 1;
}

.hero .flexslider .flex-control-nav li a:hover::before {
  opacity: 1;
}

/* ********* SLIDER STOP ****** */




.hero.sub__pages {
  height: 40vh;
  position: relative;
  background-color: #0a3652;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages {
    height: 50vh;
  }
}

.hero.sub__pages .overlay {
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero.sub__pages .hero__video {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero.sub__pages.single .feature__breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  left: 50%;
  gap: 0.3rem;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages.single .feature__breadcrumbs {
    width: auto;
    left: 23%;
  }
}

.hero.sub__pages.single .caption__wrap {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages.single .caption__wrap {
    left: 24%;
    -webkit-transform: none;
            transform: none;
  }
}

.hero.sub__pages .hero__img {
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero.sub__pages .hero__img .overlay{
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero.sub__pages .feature__breadcrumbs {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  z-index: 4;
  top: 7rem;
  left: 50%;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages .feature__breadcrumbs {
    top: 30%;
    left: unset;
    -webkit-transform: none;
            transform: none;
  }
}

.hero.sub__pages .feature__breadcrumbs span:first-child {
  margin-left: 0rem;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages .feature__breadcrumbs span:first-child {
    margin-left: 0.5rem;
  }
}

.hero.sub__pages .feature__breadcrumbs span:nth-child(n+2) {
  margin-left: 0.7rem;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages .feature__breadcrumbs span:nth-child(n+2) {
    margin-left: 1.2rem;
  }
}

.hero.sub__pages .feature__breadcrumbs span span {
  font-size: 0.7rem;
  letter-spacing: 0.04rem;
  white-space: nowrap;
  padding: 0.2rem 0.4rem 0.2rem 0.4rem;
  position: relative;
  color: #0a3652;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: rgba(255, 255, 255, 0.75);
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages .feature__breadcrumbs span span {
    font-size: 0.8rem;
    letter-spacing: 0.03px;
    padding: 0.2rem 0.4rem 0.2rem 0.8rem;
  }
}

.hero.sub__pages .feature__breadcrumbs span span.current-item {
  color: #2f3a69;
}

.hero.sub__pages .feature__breadcrumbs span span::before, .hero.sub__pages .feature__breadcrumbs span span:after {
  content: '';
  width: 0;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages .feature__breadcrumbs span span::before, .hero.sub__pages .feature__breadcrumbs span span:after {
    width: 1rem;
  }
}

.hero.sub__pages .feature__breadcrumbs span span::before {
  top: 0;
  left: -1rem;
  background-image: url("http://mnl-staging.starboxtech.com/wp-content/uploads/2023/02/bcrumb-left.svg");
}

.hero.sub__pages .feature__breadcrumbs span span::after {
  top: 0;
  right: -1rem;
  background-image: url("http://mnl-staging.starboxtech.com/wp-content/uploads/2023/02/bcrumb-right.svg");
}

.hero.sub__pages .feature__breadcrumbs span span:hover {
  cursor: pointer;
  color: #2f3a69;
}

.hero.sub__pages .caption__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 2.5rem;
  top: unset;
  left: 50%;
}

@media only screen and (min-width: 768px) {
  .hero.sub__pages .caption__wrap {
    width: 100%;
    bottom: 2rem;
  }
}

.hero.sub__pages .sub-links-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 5px 0 30px rgba(0, 0, 0, 0.12);
          box-shadow: 5px 0 30px rgba(0, 0, 0, 0.12);
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  z-index: 2;
}

.hero.sub__pages .sub-links-wrap a {
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.05rem;
  padding: 0.4rem 2rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-right: 1px solid #dbdbdd;
  color: #4c4d56;
  display: flex;
  align-items: center;
  
}

@media only screen and (min-width: 992px) {
  .hero.sub__pages .sub-links-wrap a {
    font-size: 1rem;
  }
}

.hero.sub__pages .sub-links-wrap a:first-child {
  border-left: 1px solid #dbdbdd;
}

.hero.sub__pages .sub-links-wrap a:hover, .hero.sub__pages .sub-links-wrap a.active {
  background-color: #54b34c;
  color: white;
}

.hero .hero__video {
  width: 100%;
  height: 90vh;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .hero .hero__video {
    height: 100vh;
  }
}

.hero .hero__img {
  width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (min-width: 768px) {
  .hero .hero__img {
    height: 100vh;
  }
}

.hero .caption__wrap {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  left: 5%;
  top: 50%;
  z-index: 2;
}

@media only screen and (min-width: 576px) {
  .hero .caption__wrap {
    width: 80%;
  }
}

@media only screen and (min-width: 768px) {
  .hero .caption__wrap {
    width: 80%;
    display: block;
    margin: unset;
    left: unset;
    top: 52%;
  }
}

@media only screen and (min-width: 992px) {
  .hero .caption__wrap {
    width: 50%;
  }
}

.hero .caption__wrap .hero__title {
  font-size: 2rem;
  margin-top: 1.5rem;
  text-align: left;
  letter-spacing: 0.04rem;
  line-height: 1.2;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .hero .caption__wrap .hero__title {
    line-height: 1.3;
    text-align: left;
    letter-spacing: 0.06rem;
    font-size: 2.9rem;
    margin-top: 0;
  }
}

.hero .caption__wrap .hero__lead-text {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.06rem;
  margin-top: 0rem;
}

@media only screen and (min-width: 768px) {
  .hero .caption__wrap .hero__lead-text {
    font-size: 1rem;
    text-align: left;
    /* margin-top: 1rem; */
  }
}

@media only screen and (max-width: 768px) {
  .hero .caption__wrap .hero__lead-text {
    text-align: left;
  }
}

.hero .caption__wrap .btn__hld {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
}

@media only screen and (min-width: 768px) {
  .hero .caption__wrap .btn__hld {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.lightbox {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
}

.lightbox .close {
  width: 1.8rem;
  height: 1.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: red;
  font-size: 1.4rem;
  position: absolute;
  color: #ffffff;
  top: 10%;
  right: 10%;
}

.lightbox .close:hover {
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0.8);
  color: #ffffff;
}

.lightbox .video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 70%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1002;
  overflow: auto;
}

.lightbox .video-content video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

#video-wrap .close-video {
  font-size: 1.5rem;
  background-color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 2%;
  top: 5%;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: none;
  padding: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

#video-wrap .close-video:hover {
  background-color: red;
  color: #ffffff;
}

#video-wrap.active {
  opacity: 1;
  visibility: visible;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 12px;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 99;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#video-wrap.active .video-container {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#video-wrap .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#video-wrap .video-container {
  width: 95%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#video-wrap .video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#video-wrap video {
  position: relative;
  z-index: 10;
  border-radius: 12px;
  width: 100%;
  background-color: #000;
}

.highlights {
  position: relative;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: left center;
}

.highlights .overlay {
  background-color: rgba(10, 54, 82, 0.95);
}

.highlights .sec-info {
  z-index: 4;
  color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .highlights .sec-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

.highlights .sec-info .heading {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .highlights .sec-info .heading {
    font-size: 1.4rem;
  }
}

.highlights .sec-info .heading::after {
  content: '';
  width: 6%;
  height: 3px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #2f3a69;
  position: absolute;
  left: 50%;
  top: -1rem;
}

@media only screen and (min-width: 768px) {
  .highlights .sec-info .heading::after {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.highlights .sec-info .preamble {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.5;
  margin-top: 1rem;
  letter-spacing: 0.05rem;
  position: relative;
  color: #a8dbfb;
}

@media only screen and (min-width: 768px) {
  .highlights .sec-info .preamble {
    font-size: 1.8rem;
  }
}

.highlights .highlights-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

@media only screen and (min-width: 992px) {
  .highlights .highlights-wrap {
    margin-top: 0;
  }
}

.highlights .highlights-wrap .highlights-hld {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.7rem;
}

@media only screen and (min-width: 768px) {
  .highlights .highlights-wrap .highlights-hld {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.highlights .highlights-wrap .highlights-hld h6, .highlights .highlights-wrap .highlights-hld .h6 {
  text-transform: capitalize;
  letter-spacing: 0.05rem;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.highlights .highlights-wrap .highlights-hld img {
  width: auto;
  height: 2rem;
}

.highlights .highlights-wrap .highlights-hld .content {
  line-height: 1.5;
  font-weight: 300;
  color: #a8dbfb;
}

.hm-abt {
  position: relative;
}

.hm-abt.none:after {
  height: 0;
}

.hm-abt .tabs-wrap {
  position: relative;
  z-index: 4;
}

@media only screen and (min-width: 768px) {
  .hm-abt .tabs-wrap {
    display: block;
  }
}

.hm-abt .tabs-wrap.lg .tab-links {
  width: 40%;
}

@media only screen and (min-width: 768px) {
  .hm-abt .tabs-wrap.lg .tab-links {
    width: 35%;
  }
}

.hm-abt .tabs-wrap.lg .tab-links li {
  height: 8rem;
}

.hm-abt .tabs-wrap.lg .tab-content {
  width: 60%;
}

@media only screen and (min-width: 768px) {
  .hm-abt .tabs-wrap.lg .tab-content {
    width: 70%;
  }
}

.hm-abt .tabs-wrap.lg .tab-content .tab-text .desc {
  font-size: 1rem;
}

@media only screen and (min-width: 768px) {
  .hm-abt .tabs-wrap.lg .tab-content .tab-text .desc {
    font-size: 1.5rem;
  }
}

.hm-abt .tabs-wrap.sm .tab-links {
  width: 45%;
}

.hm-abt .tabs-wrap.sm .tab-links li {
  height: 8rem;
}

@media only screen and (min-width: 768px) {
  .hm-abt .tabs-wrap.sm .tab-links li {
    height: 7rem;
  }
}

.hm-abt .tabs-wrap.sm .tab-links li a {
  font-size: 1.3rem;
}

@media only screen and (min-width: 768px) {
  .hm-abt .tabs-wrap.sm .tab-links li a {
    font-size: 2.5rem;
  }
}

.hm-abt .tabs-wrap.sm .tab-content {
  width: 55%;
}

.hm-abt .tabs-wrap.sm .tab-content .tab-text ul {
  padding: 0.5rem 0;
  margin: 0;
}

.hm-abt .tabs-wrap.sm .tab-content .tab-text ul li {
  font-size: 1rem;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.02rem;
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(76, 77, 86, 0.8);
}

.hm-abt .tabs-wrap.sm .tab-content .tab-text ul li:nth-child(n+2) {
  margin-top: 0.4rem;
}

.hm-abt .tabs-wrap.sm .tab-content .tab-text ul li::before {
  content: '\f058';
  font-size: 0.85rem;
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  color: rgba(84, 179, 76, 0.8);
  left: 0;
}

.hm-abt .tabs-wrap .tab-links {
  width: 40%;
  overflow: hidden;
  position: relative;
}

.hm-abt .tabs-wrap .tab-links::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #dbdbdd;
}

.hm-abt .tabs-wrap .tab-links li {
  width: 100%;
  height: 5rem;
  list-style: none;
  line-height: 1.5;
}

@media only screen and (min-width: 992px) {
  .hm-abt .tabs-wrap .tab-links li {
    height: 6.5rem;
  }
}

.hm-abt .tabs-wrap .tab-links li.active a {
  background-color: #f1f8f8;
  color: #54b34c;
}

.hm-abt .tabs-wrap .tab-links li.active a::after {
  right: -0.5rem;
  color: #4c4d56;
  z-index: 2;
}

.hm-abt .tabs-wrap .tab-links li a {
  width: 100%;
  height: 100%;
  padding: 0 1.2rem 0 1rem;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #ffffff;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-family: "FB", "Helvetica", Arial, serif;
  color: #898da5;
}

@media only screen and (min-width: 992px) {
  .hm-abt .tabs-wrap .tab-links li a {
    font-size: 3.5rem;
    padding: 0 2rem;
  }
}

.hm-abt .tabs-wrap .tab-links li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.1875rem;
  width: 0.9375rem;
  height: 0.9375rem;
  z-index: -1;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right .2s ease-out;
  transition: right .2s ease-out;
  border: 1px solid #dbdbdd;
  border-top-width: 1px;
  border-right-width: 1px;
  background: #fff;
}

.hm-abt .tabs-wrap .tab-content {
  width: 60%;
  overflow: hidden;
  position: absolute;
  padding: 0 3%;
  bottom: 0;
  right: 0;
  top: 0;
}

@media only screen and (min-width: 992px) {
  .hm-abt .tabs-wrap .tab-content {
    padding: 0 6%;
  }
}

.hm-abt .tabs-wrap .tab-content > div {
  display: none;
}

.hm-abt .tabs-wrap .tab-content > div.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hm-abt .tabs-wrap .tab-content .tab-text .desc {
  font-size: 1.4rem;
  font-family: 'FL';
  margin-left: 0.5rem;
  letter-spacing: 0.02rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media only screen and (min-width: 992px) {
  .hm-abt .tabs-wrap .tab-content .tab-text .desc {
    font-size: 2rem;
  }
}

.hm-abt .tabs-wrap .tab-content .tab-text.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.stats-wrap {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}

/* .stats-wrap .stats-hld {
  width: 48%;
} */

.stats-wrap .stats-hld .count {
  font-size: 2.5rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.03rem;
  line-height: 1.2;
  color: #4c4d56;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .stats-wrap .stats-hld .count {
    text-align: left;
    font-size: 3.2rem;
  }
}

@media only screen and (min-width: 992px) {
  .stats-wrap .stats-hld .count {
    text-align: left;
    font-size: 3rem;
  }
}

.stats-wrap .stats-hld .title {
  font-size: 1rem;
  letter-spacing: 0.04rem;
  text-align: center;
  color: #4c4d56;
}

@media only screen and (min-width: 992px) {
  .stats-wrap .stats-hld .title {
    text-align: unset;
  }
}

.hm-testimonial .quote {
  font-size: 2rem;
  font-family: 'FL';
  line-height: 1.2;
  letter-spacing: 0.03rem;
  position: relative;
}

@media only screen and (min-width: 992px) {
  .hm-testimonial .quote {
    font-size: 2.5rem;
  }
}

.hm-testimonial .video-testimonial {
  height: 12.5rem;
  overflow: hidden;
  margin-top: 1.7rem;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  cursor: pointer;
}

.hm-testimonial .video-testimonial:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

.hm-testimonial .video-testimonial .overlay {
  display: none;
}

@media only screen and (min-width: 768px) {
  .hm-testimonial .video-testimonial .overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.2);
  }
}

.testimonial-wrap {
  height: 24rem;
  border-radius: 0.3rem;
  background-position: top center;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .testimonial-wrap {
    height: 26rem;
  }
}

.testimonial-wrap.lg {
  height: 26rem;
}

@media only screen and (min-width: 768px) {
  .testimonial-wrap.lg {
    height: 32rem;
  }
}

.testimonial-wrap .inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.testimonial-wrap .inner .overlay {
  border-radius: 0.3rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, black 100%);
}

.testimonial-wrap .hm-testimonial-carousel {
  position: relative;
  z-index: 2;
}

.testimonial-wrap .hm-testimonial-carousel:before {
  width: 0px;
  height: 1.2rem;
  content: '';
  background-color: white;
  position: absolute;
  right: 17%;
  bottom: 19.5%;
}

.testimonial-wrap .hm-testimonial-carousel .testimonial-hld {
  color: white;
  letter-spacing: 0.05rem;
  background-color: #eef1f4;
}

.testimonial-wrap .hm-testimonial-carousel .testimonial-hld .text {
  font-family: 'FL';
}

.testimonial-wrap .hm-testimonial-carousel .testimonial-hld .info {
  font-size: 1rem;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.05rem;
  margin-top: 1.5rem;
}

.hm-testimonial-carousel .slick-next {
  /* top: -4.5%; */
  right: -6%;
}

.hm-testimonial-carousel .slick-prev {
  /* top: 50.5%; */
  left: -6%;
}

.hm-testimonial-carousel .slick-next,
 .hm-testimonial-carousel .slick-prev {
  width: 55px;
  height: 55px;
  font-size: 1.2rem;
  font-weight: 700;
  /* border-radius: 50%; */
  border: 1px dotted #54b34c;
  border-radius: 5rem;
  background-color: white;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  z-index: 4;
  color: #2f385b;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

/*@media only screen and (max-width: 768px) {*/
/*  .hm-testimonial-carousel .slick-next, .testimonial-wrap .hm-testimonial-carousel .slick-prev {*/
/*    width: 2.5rem;*/
/*    height: 2.5rem;*/
/*    font-size: 1.2rem;*/
/*    text-align: center;*/
/*    border-radius: 0.5rem;*/
/*  }*/
/*}*/

.hm-testimonial-carousel .slick-next:before, .testimonial-wrap .hm-testimonial-carousel .slick-prev:before {
  width: 0;
  height: 0;
  content: '';
}

.testimonial-wrap .hm-testimonial-carousel .slick-dots {
  bottom: -3rem;
}

@media only screen and (max-width: 768px) {
  .testimonial-wrap .hm-testimonial-carousel .slick-dots {
    bottom: -1rem;
    display: block !important;
  }
}

.hm-testimonial-carousel .slick-dots li.slick-active button::before {
  color: #2f3a69;
  background-color: #2f3a69;
}

.testimonial-wrap .hm-testimonial-carousel .slick-dots li button::before {
  font-size: 10px;
  height: 5px;
  width: 25px;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #494d50;
}

.mid-section .mid-section-image {
  width: 100%;
  height: 14rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 1rem 5% 1.7rem;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  position: relative;
}

.mid-section .mid-section-image:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

@media only screen and (min-width: 992px) {
  .mid-section .mid-section-image {
    height: 20rem;
    padding: 1rem 5% 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .mid-section .mid-section-image.new {
    height: 20rem;
    padding: 0;
  }
}

.mid-section .mid-section-image.lg {
  height: 16rem;
}

@media only screen and (min-width: 992px) {
  .mid-section .mid-section-image.lg {
    height: 22rem;
  }
}

@media only screen and (min-width: 992px) {
  .mid-section .mid-section-image.lg.ss {
    height: 19rem;
  }
}

.mid-section .mid-section-image.lg .overlay {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 80%, black 100%);
}

.mid-section .mid-section-image .overlay {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, black 100%);
}

.mid-section .mid-section-image.new .overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 82%, #000000 100%);
  z-index: 1;
}

.mid-section .mid-section-image .con-vid {
  position: absolute;
  padding: 1rem 5% 2.5rem;
}

.mid-section .mid-section-image .hero__video {
  object-fit: cover;
  height: inherit;
}

.mid-section .mid-section-image .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.mid-section .mid-section-image .sec-hdr {
  position: relative;
  z-index: 2;
}

.mid-section .col-bkg {
  overflow: hidden;
  background-color: #fffefe;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

.mid-section .col-bkg:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

.mid-section .col-bkg .col-details {
  padding: 2rem 7%;
}

.mid-section .col-bkg .mid-section-image {
  border-radius: 0;
}

.partners-wrap .trigger-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners-wrap .trigger-wrap .inner-wrap {
  width: 35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          text-align: center;
  border-radius: 9px;
  /* border: 2px solid rgba(84, 179, 76, 0.5); */
  position: relative;
}

.partners-wrap .trigger-wrap .inner-wrap .bkg-switch {
  width: 49%;
  height: 90%;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: rgba(84, 179, 76, 0.4);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 0.3rem;
  left: 0.5%;
  top: 50%;
  z-index: -1;
}

.partners-wrap .trigger-wrap .inner-wrap .trigger {
  width: 50%;
  font-size: 1.4rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.03rem;
  text-align: center;
  padding: 0.5rem 0;
  cursor: pointer;
  color: #4c4d56;
}

.partners-wrap .content-wrap {
  width: 100%;
  /* height: 10rem; */
  position: relative;
}

.partners-wrap .content-wrap .content {
  /* position: absolute; */
  visibility: hidden;
  left: 0;
  top: 0;
}

.partners-wrap .content-wrap .content.active {
  visibility: visible;
}

/**
 *
 * All SCSS styles related to the about page
 *
*/
.info-wrap {
  padding: 2rem 6%;
  border-radius: 0.3rem;
  border: 1px solid rgba(47, 58, 105, 0.1);
}

.info-wrap.sm {
  padding: 1rem 5%;
}

.info-wrap.sm .info-hdr i {
  font-size: 1.2rem;
}

.info-wrap.sm p {
  font-size: 0.9rem;
  display: inline;
  line-height: 1;
  color: rgba(76, 77, 86, 0.8);
}

.info-wrap .info-hdr i {
  font-size: 1.4rem;
  color: #54b34c;
}

.info-wrap .info-hdr span {
  font-size: 1.1rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.03rem;
  margin-left: 1rem;
  color: #54b34c;
}

@media only screen and (min-width: 992px) {
  .info-wrap .info-hdr span {
    font-size: 1.3rem;
  }
}

.impact-wrap .mid-section .mid-section-image {
  width: 95%;
  height: 18rem;
  padding: 1.8rem 5%;
  margin: 0 auto;
}

.impact-wrap .mid-section .mid-section-image .overlay {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, black 100%);
}

.impact-wrap .mid-section .mid-section-image .main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  letter-spacing: 0.03rem;
  padding: 0.3rem 1rem;
  border-radius: 0.3rem;
  background-color: rgba(27, 28, 29, 0.6);
  text-transform: uppercase;
  position: absolute;
  color: white;
  top: 1rem;
  z-index: 2;
}

.impact-wrap .mid-section .mid-section-image .btn-hld {
  position: relative;
  margin-top: 0.3rem;
  z-index: 2;
}

.impact-wrap .mid-section .mid-section-image .btn-hld .gallery-cont a {
  font-size: 0.8rem;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.06rem;
  border-radius: 0.3rem;
  padding: 0.3rem 1rem;
  background-color: #54b34c;
  color: white;
}

.impact-wrap .mid-section .mid-section-image .btn-hld .gallery-cont a:nth-child(n+2) {
  display: none;
}

.impact-wrap .slick-next, .impact-wrap .slick-prev {
  width: 35px;
  height: 35px;
  font-size: 1rem;
  border-radius: 50%;
  border: 1px dashed #dbdbdd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  z-index: 4;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .impact-wrap .slick-next, .impact-wrap .slick-prev {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 0.5rem;
  }
}

.impact-wrap .slick-next:before, .impact-wrap .slick-prev:before {
  width: 0;
  height: 0;
  content: '';
}

.impact-wrap .slick-track {
  padding-bottom: 1.5rem;
}

.impact-wrap .slick-dots {
  width: 100%;
  height: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  text-align: center;
  bottom: -40px;
  left: 50%;
}

.impact-wrap .slick-dots li {
  display: inline-block;
  position: relative;
  width: 4rem;
  height: 2px;
  margin-right: 0.167rem;
  padding: 0;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .impact-wrap .slick-dots li {
    width: 10.5rem;
  }
}

.impact-wrap .slick-dots li.slick-active button {
  background-color: #54b34c;
}

.impact-wrap .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 2px;
  border-radius: 0.111rem;
  outline: 0;
  background-color: #e1e8ed;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.impact-wrap .slick-dots li button::after, .impact-wrap .slick-dots li button::before {
  display: none;
}

.impact-full-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem 0;
}

@media only screen and (min-width: 768px) {
  .impact-full-wrap {
    gap: unset;
  }
}

.impact-full-wrap .mid-section {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .impact-full-wrap .mid-section {
    width: 49%;
  }
}

.impact-full-wrap .mid-section:nth-child(n+3) {
  margin-top: unset;
}

@media only screen and (min-width: 768px) {
  .impact-full-wrap .mid-section:nth-child(n+3) {
    margin-top: 3rem;
  }
}

.impact-full-wrap .mid-section .mid-section-image {
  width: 95%;
  height: 15rem;
  padding: 1.8rem 5%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .impact-full-wrap .mid-section .mid-section-image {
    height: 22rem;
  }
}

.impact-full-wrap .mid-section .mid-section-image .overlay {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, black 100%);
}

.impact-full-wrap .mid-section .mid-section-image .main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.8rem;
  letter-spacing: 0.03rem;
  padding: 0.3rem 1rem;
  border-radius: 0.3rem;
  background-color: rgba(27, 28, 29, 0.6);
  text-transform: uppercase;
  position: absolute;
  color: white;
  top: 1.5rem;
  z-index: 2;
}

.impact-full-wrap .mid-section .mid-section-image .btn-hld {
  position: relative;
  margin-top: 0.3rem;
  z-index: 2;
}

.impact-full-wrap .mid-section .mid-section-image .btn-hld .gallery-cont a {
  font-size: 0.8rem;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.06rem;
  border-radius: 0.3rem;
  padding: 0.3rem 1rem;
  background-color: #54b34c;
  color: white;
}

.impact-full-wrap .mid-section .mid-section-image .btn-hld .gallery-cont a:nth-child(n+2) {
  display: none;
}

.logo-wrap {
  display: flex;
  row-gap: 2rem;
  flex-wrap: wrap;
}

.logo-wrap .logo-hld {
  width: 22%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
  width: 20vw;
  padding: 1rem 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0.3rem;
  border: 1px solid white;
  -webkit-box-shadow: 0px 5px 20px rgba(116, 116, 135, 0.1);
  box-shadow: 0px 5px 20px rgba(116, 116, 135, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  flex-wrap: wrap;
}

.logo-wrap .logo-hld a {
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo-wrap .logo-hld a img {
  width: 70%;
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
     filter: sepia(100%) hue-rotate(190deg) saturate(500%);
     transition: all 0.3s;
}

.logo-wrap .logo-hld a img:hover {
  filter: none;

}

.logo-carousel .slick-next {
  right: -20px;
}

@media only screen and (min-width: 992px) {
  .logo-carousel .slick-next {
    right: -40px;
  }
}

.logo-carousel .slick-prev {
  left: -20px;
}

@media only screen and (min-width: 992px) {
  .logo-carousel .slick-prev {
    left: -40px;
  }
}

.logo-carousel .slick-next, .logo-carousel .slick-prev {
  width: 35px;
  height: 35px;
  font-size: 1rem;
  border-radius: 50%;
  border: 1px dashed #2f3a69;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  z-index: 4;
  color: #2f3a69;
}

@media only screen and (max-width: 768px) {
  .logo-carousel .slick-next, .logo-carousel .slick-prev {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
  }
}

.logo-carousel .slick-next:before, .logo-carousel .slick-prev:before {
  width: 0;
  height: 0;
  content: '';
}

.logo-carousel .slick-dots {
  width: 100%;
  height: auto;
  display: none !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  text-align: center;
  bottom: -40px;
  left: 50%;
}

.logo-carousel .slick-dots li {
  display: inline-block;
  position: relative;
  width: 10.5rem;
  height: 2px;
  margin-right: 0.167rem;
  padding: 0;
  cursor: pointer;
}

.logo-carousel .slick-dots li.slick-active button {
  background-color: #54b34c;
}

.logo-carousel .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 2px;
  border-radius: 0.111rem;
  outline: 0;
  background-color: #e1e8ed;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.logo-carousel .slick-dots li button::after, .logo-carousel .slick-dots li button::before {
  display: none;
}

.packages-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem 0;
}

@media only screen and (min-width: 768px) {
  .packages-wrap {
    gap: unset;
  }
}

.packages-wrap .packages-hld {
  width: 100%;
  padding: 4rem 0 1rem;
  position: relative;
  border: 4px solid #54b34c;
  border-radius: 0.8rem;
}

@media only screen and (min-width: 768px) {
  .packages-wrap .packages-hld {
    width: 24%;
  }
}

.packages-wrap .packages-hld .icon {
  width: auto;
  height: 7rem;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: -3.5rem;
}

.packages-wrap .packages-hld .price {
  font-size: 1.6rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.03rem;
  margin-bottom: 0.6rem;
  text-align: center;
  color: #2f3a69;
}

.packages-wrap .packages-hld .benefit {
  width: 90%;
  margin: 0 auto;
  padding: 0.7rem 5%;
  border-radius: 0.3rem;
  background-color: #f1f8f8;
}

.packages-wrap .packages-hld .benefit ul {
  padding: 0.5rem 0;
  margin: 0;
}

.packages-wrap .packages-hld .benefit ul li {
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: #4c4d56;
}

.packages-wrap .packages-hld .benefit ul li:nth-child(n+2) {
  margin-top: 0.4rem;
}

.packages-wrap .packages-hld .benefit ul li::before {
  content: '\f058';
  font-size: 0.85rem;
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  color: #54b34c;
  left: 0;
}

.general-benefits .sec-text h3, .general-benefits .sec-text .h3 {
  color: #494d50;
}

.general-benefits .sec-text p {
  font-size: 1rem;
  letter-spacing: 0.04rem;
  color: rgba(255, 255, 255, 0.8);
}

.general-benefits .sec-text.drk p {
  color: #494d50;
}


.general-benefits .sec-text ul {
  padding: 0.5rem 0;
  margin: 0;
}

.general-benefits .sec-text ul li {
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.general-benefits .sec-text ul li:nth-child(n+2) {
  margin-top: 0.4rem;
}

.general-benefits .sec-text ul li::before {
  content: '\f058';
  font-size: 0.85rem;
  font-family: 'Font Awesome 6 Free';
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  left: 0;
}

.general-benefits .sec-text ul li a {
  color: rgba(84, 179, 76, 0.8) !important;
}



.general-benefits .sec-text ul li a:hover {
  color: #54b34c;
}

.general-benefits .sec-text ul + p {
  margin-top: 1rem;
}

.general-benefits .sec-text.drk ul li {
  color: #494d50;
}

.general-benefits .sec-text.drk ul li::before {
  color: #494d50;
}

/**
 *
 * All SCSS styles related to the contact page
 *
 */
/**
 *
 * SBX Contact Form 1 styled from scratch with Flexbox and CSS columns.
 *
*/
.contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.contact-wrap .contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) {
  .contact-wrap .contact {
    width: 46%;
  }
}

.contact-wrap .contact:hover a {
  color: #54b34c;
}

.contact-wrap .contact:nth-child(n+2) {
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .contact-wrap .contact:nth-child(n+2) {
    margin-top: unset;
  }
}

.contact-wrap .contact:nth-child(n+3) {
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .contact-wrap .contact:nth-child(n+3) {
    margin-top: 2.5rem;
  }
}

.contact-wrap .contact p, .contact-wrap .contact a {
  font-size: 1.1rem;
  color: #4c4d56;
  letter-spacing: 0.03rem;
}

.contact-wrap .contact > span {
  font-size: 1.3rem;
  font-family: "FB", "Helvetica", Arial, serif;
  margin-bottom: 0.2rem;
  letter-spacing: 0.03rem;
  color: #54b34c;
}

.contact-wrap .contact > span i {
  font-size: 1.4rem;
  margin-right: 0.5rem;
}

.contact-wrap .contact.hours {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .contact-wrap .contact.hours {
    margin-top: 0;
  }
}

.contact-wrap .contact.hours p {
  white-space: nowrap;
  text-align: center;
  margin-bottom: 0rem;
}

.contact-wrap .contact p {
  text-align: center;
}

.contact-wrap .hdr-actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-wrap .hdr-actions .action {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.7rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  gap: 0.8rem;
}

.contact-wrap .hdr-actions .action.primary {
  background-color: #2f3a69;
}

.contact-wrap .hdr-actions .action.secondary {
  background-color: #54b34c;
}

.contact-wrap .hdr-actions .action.secondary:hover {
  background-color: #54b34c;
}

.contact-wrap .hdr-actions .action .icon svg {
  width: 2rem;
  height: auto;
  fill: white;
}

.contact-wrap .hdr-actions .action .details {
  line-height: 1;
}

.contact-wrap .hdr-actions .action .details .minor {
  font-size: 0.8rem;
  letter-spacing: 0.04rem;
  font-family: "FR", "Helvetica", Arial, serif;
  color: #ffffff;
}

.contact-wrap .hdr-actions .action .details .major {
  font-size: 1rem;
  margin-top: 0.15rem;
  letter-spacing: 0.03rem;
  font-family: "FB", "Helvetica", Arial, serif;
  color: rgba(252, 252, 252, 0.9);
}

.sbx-contact-form-1 {
  padding: 1rem !important;
  border-radius: 0.3rem !important;
  background-color: #f1f8f8 !important;
}

@media only screen and (min-width: 768px) {
  .sbx-contact-form-1 {
    padding: 2rem !important;
  }
}

.sbx-contact-form-1 .wpforms-confirmation-container {
  margin: 2rem 0;
  padding: 0.125rem 0.75rem;
  text-align: center;
}

.sbx-contact-form-1 form .wpforms-field-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.5rem;
  text-align: left;
}

.sbx-contact-form-1 form .wpforms-field-container ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.sbx-contact-form-1 form .wpforms-field-container ul li {
  display: inline-block;
  padding: 0.25rem 2rem 0.25rem 0;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control,
.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container {
  width: 100%;
  margin: 0.2rem 0;
}

@media only screen and (min-width: 768px) {
  .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control,
  .sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container,
  .sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container {
    width: 48%;
  }
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.full,
.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container.full,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container.full {
  width: 100%;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea,
.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container input,
.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container textarea,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container input,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container textarea {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-form-control-half,
  .sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container.sbx-form-control-half,
  .sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container.sbx-form-control-half {
    width: 49%;
  }
}

@media only screen and (min-width: 768px) {
  .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-form-control-one-third,
  .sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container.sbx-form-control-one-third,
  .sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container.sbx-form-control-one-third {
    width: 31.5%;
  }
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control label,
.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container label,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container label, .wpforms-container .wpforms-form .wpforms-field-label
 {
  font-size: 0.9rem;
  letter-spacing: 0.03rem;
  color: #4c4d56;
  margin-bottom: 0.4rem;
}

.wpforms-container .wpforms-form .wpforms-field-label {
  margin-bottom: 1rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li label {
  font-size: 1rem;
  position: relative;
  min-height: 2rem;
  display: block;
  padding-left: 2rem;
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.75rem;
  letter-spacing: 0.02rem;
  color: #54b34c !important;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 5px;
  width: 18px;
  height: 18px;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border: 1px solid #ceced3;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #2f3a69;
  border-left: 2px solid #2f3a69;
  -webkit-transform: rotate(-45deg) scale(0);
          transform: rotate(-45deg) scale(0);
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
  position: absolute;
  top: 11px;
  left: 9px;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="checkbox"] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: -20px;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="checkbox"]:checked ~ label:before {
  border: 1px solid #ceced3;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="checkbox"]:checked ~ label:after {
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="checkbox"]:focus + label::before {
  outline: 0;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="radio"] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: -20px;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="radio"]:checked ~ label:before {
  border: 1px solid #ceced3;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="radio"]:checked ~ label:after {
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-checkbox-container ul li input[type="radio"]:focus + label::before {
  outline: 0;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:checked,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:checked + label,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #ceced3;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:checked + label:before,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #989c9f;
  border-radius: 100%;
  background: #ffffff;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:checked + label:before {
  border: 1px solid #2f3a69;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:checked + label:after,
.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #2f3a69;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-radio-container ul li [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner {
  background-color: #ffffff;
  border: 1px dashed rgba(27, 28, 29, 0.1) !important;
  outline: none;
  color: #1b1c1d;
  border-radius: 0.3rem !important;
  padding: 15px !important;
  font-size: 1rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input::-webkit-input-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea::-webkit-input-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner::-webkit-input-placeholder {
  color: #707070;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input::-moz-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea::-moz-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner::-moz-placeholder {
  color: #707070;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input:-ms-input-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea:-ms-input-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner:-ms-input-placeholder {
  color: #707070;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input::-ms-input-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea::-ms-input-placeholder, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner::-ms-input-placeholder {
  color: #707070;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input::placeholder,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea::placeholder,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner::placeholder {
  color: #707070;
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input:focus, .sbx-contact-form-1 form .wpforms-field-container .sbx-form-control input:active,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea:focus,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea:active,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner:focus,
.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner:active {
  border: 1px solid #8F96A3 !important;
  outline: none;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control.sbx-select-container .choices__inner {
  padding: 11px;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control textarea {
  height: 180px;
  background-color: #ffffff;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control .wpforms-field-label .wpforms-required-label {
  color: #2f3a69;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-form-control .wpforms-error {
  color: #dc3545;
  font-size: 0.875rem;
  font-style: italic;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-select-container .choices__list {
  font-weight: normal;
  font-size: 1rem;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-select-container .choices__list .choices__placeholder {
  opacity: 1;
  color: #989c9f;
  font-style: italic;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-legal-text, .sbx-contact-form-1 form .wpforms-field-container .wpforms-field-limit-text,
.sbx-contact-form-1 form .wpforms-field-container .wpforms-field-description {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  font-weight: 400;
  color: #1b1c1d;
}

.sbx-contact-form-1 form .wpforms-field-container .sbx-legal-text .wpforms-error, .sbx-contact-form-1 form .wpforms-field-container .wpforms-field-limit-text .wpforms-error,
.sbx-contact-form-1 form .wpforms-field-container .wpforms-field-description .wpforms-error {
  color: #dc3545;
  font-size: 0.875rem;
  font-style: italic;
}

.sbx-contact-form-1 form .wpforms-submit-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sbx-contact-form-1 form .wpforms-submit-container .sbx-contact-form-btn {
  width: 100%;
  font-family: "FB", "Helvetica", Arial, serif;
  outline: none !important;
  border: none !important;
  border-radius: 0.5rem;
  letter-spacing: 0.05rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #54b34c !important;
  color: #ffffff !important;
}

.sbx-contact-form-1 form .wpforms-submit-container .sbx-contact-form-btn:hover {
  background-color: #2f3a69 !important;
}

.sbx-contact-form-1 form .wpforms-field.wpforms-field-hp {
  display: none;
}

.sbx-contact-form-1 form .sbx-checkbox-replace ul {
  display: none;
}

.wpforms-container .wpforms-field {
  padding: 10px 0 !important;
}

.map {
  width: 100%;
  height: 30vh;
  min-height: 20rem;
  border-radius: 0.3rem;
}

@media only screen and (min-width: 768px) {
  .map {
    height: 70vh;
  }
}

.forminator-custom-form .i-form-control .forminator-label {
  letter-spacing: 0.03rem;
  font-weight: 400 !important;
  color: #494d50 !important;
}

.forminator-custom-form .i-form-control input,
.forminator-custom-form .i-form-control textarea {
  padding: 0.8rem 1rem !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: #fcfcfc !important;
  border-radius: 1rem !important;
  border: 1px solid #8F96A3 !important;
}

.forminator-custom-form .i-form-control input:hover, .forminator-custom-form .i-form-control input:focus,
.forminator-custom-form .i-form-control textarea:hover,
.forminator-custom-form .i-form-control textarea:focus {
  background-color: #fcfcfc !important;
}

.forminator-custom-form .forminator-field span.select2 .select2-selection {
  padding: 0.9rem 1rem !important;
  border-radius: 1rem !important;
  border: 1px solid #8F96A3 !important;
  background-color: #fcfcfc !important;
}

.forminator-custom-form .forminator-button-submit {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 0.7rem !important;
}

.forminator-custom-form .forminator-button-submit:hover {
  background-color: #0a3652 !important;
}

.forminator-custom-form .forminator-multi-upload {
  border-radius: 1rem !important;
}

.forminator-custom-form .forminator-row {
  margin-bottom: 1.2rem !important;
}

@media only screen and (min-width: 768px) {
  .forminator-custom-form .forminator-row {
    margin-bottom: 1rem !important;
  }
}

.forminator-custom-form .forminator-row .forminator-col {
  margin-top: 1.2rem !important;
}

@media only screen and (min-width: 768px) {
  .forminator-custom-form .forminator-row .forminator-col {
    margin-top: 0 !important;
  }
}

.forminator-custom-form .forminator-select.forminator-select-dropdown-container--open .forminator-select-dropdown.forminator-dropdown--flat {
  border-radius: 1rem !important;
  background-color: #ffffff !important;
}

/**
 *
 * All SCSS styles related to the Blog archive page
 *
 */
.blog-details {
  border-top: 1px solid #54b34c;
  border-bottom: 1px solid #54b34c;
  padding: 0.5rem 0.5rem;
  letter-spacing: 0.1rem;
  font-size: 0.875rem;
}

.blog-details a {
  color: #1b1c1d;
}

.blog-details a:hover, .blog-details a:active, .blog-details a:focus {
  color: #2f3a69;
}

.filter-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style-type: none;
  margin: 0 auto 1rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.3rem;
  gap: 0.7rem;
}

@media only screen and (min-width: 768px) {
  .filter-group {
    padding: 0;
  }
}

.filter-group label {
  margin: 0;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.03rem;
  font-family: "FB", "Helvetica", Arial, serif;
  text-align: left;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border: 1px solid rgba(84, 179, 76, 0.4);
  border-radius: 0.3rem;
  background-color: rgba(84, 179, 76, 0.08);
  color: #4c4d56;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.filter-group label:hover, .filter-group label:focus, .filter-group label:active, .filter-group label.active {
  background-color: rgba(84, 179, 76, 0.4);
}

@media only screen and (min-width: 768px) {
  .filter-group label {
    padding: 0.5rem 1.4rem;
    font-size: 0.88rem;
  }
}

.filter-group .filter-radio {
  position: absolute;
  visibility: hidden;
}

.filter-group input[type="radio"]:checked ~ label {
  background-color: #54b34c;
  color: #ffffff;
}

.filter-aside-tag {
  margin-bottom: 2rem;
}

.filter-aside-tag h4, .filter-aside-tag .h4, .filter-aside-tag .search-results .search-cards h2, .search-results .search-cards .filter-aside-tag h2, .filter-aside-tag .search-results .search-cards .h2, .search-results .search-cards .filter-aside-tag .h2 {
  color: #494d50;
}

.filter-aside-tag .filter-group-2 {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.filter-aside-tag .filter-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media only screen and (min-width: 375px) {
  .filter-aside-tag .filter-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
  }
}

@media only screen and (min-width: 992px) {
  .filter-aside-tag .filter-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
  }
}

.filter-aside-tag .filter-item label {
  position: relative;
  min-height: 2rem;
  display: block;
  padding-left: 2rem;
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.5em;
}

.filter-aside-tag .filter-item label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 5px;
  width: 18px;
  height: 18px;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  border: 1px solid #989c9f;
}

.filter-aside-tag .filter-item label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #2f3a69;
  border-left: 2px solid #2f3a69;
  -webkit-transform: rotate(-45deg) scale(0);
          transform: rotate(-45deg) scale(0);
  -webkit-transition: -webkit-transform ease 0.25s;
  transition: -webkit-transform ease 0.25s;
  transition: transform ease 0.25s;
  transition: transform ease 0.25s, -webkit-transform ease 0.25s;
  position: absolute;
  top: 11px;
  left: 9px;
}

.filter-aside-tag .filter-item input[type="checkbox"] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: -20px;
}

.filter-aside-tag .filter-item input[type="checkbox"]:checked ~ label:before {
  border: 1px solid #989c9f;
}

.filter-aside-tag .filter-item input[type="checkbox"]:checked ~ label:after {
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
}

.filter-aside-tag .filter-item input[type="checkbox"]:focus + label::before {
  outline: 0;
}

.filter-aside-tag .all-topics {
  font-weight: 500;
  display: block;
  text-decoration: none;
  color: #2f3a69;
  -webkit-text-decoration: underline solid transparent 2px;
          text-decoration: underline solid transparent 2px;
  text-underline-offset: 0.4rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0.75rem 0 1.25rem;
}

.filter-aside-tag .all-topics:hover, .filter-aside-tag .all-topics:focus {
  text-decoration: none;
}

.filter-aside-tag .all-topics:hover {
  color: #2f3a69;
  -webkit-text-decoration: underline solid #2f3a69 2px;
          text-decoration: underline solid #2f3a69 2px;
}

.filter-aside-tag .all-topics:active {
  color: #2f3a69;
}

.filter-aside-tag button#reset {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.filter-aside-category {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.filter-aside-category h4, .filter-aside-category .h4, .filter-aside-category .search-results .search-cards h2, .search-results .search-cards .filter-aside-category h2, .filter-aside-category .search-results .search-cards .h2, .search-results .search-cards .filter-aside-category .h2 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  color: #494d50;
  margin-bottom: 0.75rem;
}

.filter-aside-category .filter-form-3 {
  -ms-flex-preferred-size: 25rem;
      flex-basis: 25rem;
  max-width: 25rem;
  margin-bottom: 1rem;
}

.filter-aside-category select {
  background-color: #fcfcfc;
  border-radius: 0;
  border: none;
}

/**
 *
 * Fleet page styles
 *
*/
.fleet {
  margin-top: 0.7rem;
}

@media only screen and (min-width: 768px) {
  .fleet {
    padding: 1.5rem 0 0.25rem;
  }
}

.fleet-wrapper {
  display: grid;
  grid-auto-flow: dense;
  gap: 1rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 14rem;
}

@media only screen and (min-width: 375px) {
  .fleet-wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 11rem;
  }
  .fleet-wrapper .fleet-cards,
  .fleet-wrapper .loading-cards {
    grid-column: span 1;
    grid-row: span 1;
  }
  .fleet-wrapper .fleet-cards.big,
  .fleet-wrapper .loading-cards.big {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media only screen and (min-width: 576px) {
  .fleet-wrapper {
    grid-auto-rows: 13rem;
  }
}

@media only screen and (min-width: 768px) {
  .fleet-wrapper {
    grid-auto-rows: 18rem;
  }
}

@media only screen and (min-width: 992px) {
  .fleet-wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12rem;
  }
}

@media only screen and (min-width: 1200px) {
  .fleet-wrapper {
    grid-auto-rows: 18rem;
  }
}

.fleet .fleet-cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.7rem;
  -webkit-transition: -webkit-filter 0.2s ease-out;
  transition: -webkit-filter 0.2s ease-out;
  transition: filter 0.2s ease-out;
  transition: filter 0.2s ease-out, -webkit-filter 0.2s ease-out;
}

.fleet .fleet-cards:hover {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}

.fleet .fleet-cards:hover video {
  opacity: 1;
}

.fleet .fleet-cards h4, .fleet .fleet-cards .h4, .fleet .fleet-cards .search-results .search-cards h2, .search-results .search-cards .fleet .fleet-cards h2, .fleet .fleet-cards .search-results .search-cards .h2, .search-results .search-cards .fleet .fleet-cards .h2 {
  margin: 0;
}

.fleet .fleet-cards-link {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem 1rem;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.05;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  z-index: 1;
  top: 0;
}

.fleet .fleet-cards-link:hover, .fleet .fleet-cards-link:focus {
  color: #ffffff;
}

.fleet .fleet-cards-link:hover .details .title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fleet .fleet-cards-link:hover .details .info {
  opacity: 1;
}

.fleet .fleet-cards-link video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.7rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}

.fleet .fleet-cards-link .details {
  width: auto;
  height: auto;
  position: absolute;
  bottom: 2rem;
  z-index: 4;
}

.fleet .fleet-cards-link .details .title {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform: translateY(4.2rem);
          transform: translateY(4.2rem);
}

.fleet .fleet-cards-link .details .info {
  opacity: 0;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.fleet .fleet-cards-link .details .info .det {
  font-weight: 400;
  letter-spacing: 0.04rem;
}

.fleet .fleet-cards-link .details .info .det.space {
  font-size: 1.1rem;
  line-height: 1.3;
}

.fleet .fleet-cards-link .details .info .det span {
  font-weight: 600;
}

.fleet .fleet-cards-link .details .info .det:nth-child(n+2) {
  margin-top: 0.3rem;
}

@media only screen and (min-width: 375px) {
  .fleet .fleet-cards-link {
    font-size: 1.1rem;
  }
  .fleet .fleet-cards.big .fleet-cards-link {
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 576px) {
  .fleet .fleet-cards-link {
    font-size: 1.2rem;
  }
  .fleet .fleet-cards.big .fleet-cards-link {
    font-size: 1.75rem;
  }
}

@media only screen and (min-width: 768px) {
  .fleet .fleet-cards-link {
    font-size: 1.5rem;
  }
  .fleet .fleet-cards.big .fleet-cards-link {
    font-size: 2rem;
    padding: 0.5rem 2rem 2.5rem;
  }
}

@media only screen and (min-width: 992px) {
  .fleet .fleet-cards-link {
    font-size: 1.1rem;
  }
  .fleet .fleet-cards.big .fleet-cards-link {
    font-size: 1.75rem;
  }
}

@media only screen and (min-width: 1200px) {
  .fleet .fleet-cards-link {
    font-size: 1.2rem;
  }
  .fleet .fleet-cards.big .fleet-cards-link {
    font-size: 2rem;
  }
}

.fleet .fleet-cards.loading-cards {
  display: none;
}

.fleet .fleet-cards.loading-cards .loading-cards-image {
  height: 100%;
  width: 100%;
}

.vessel {
  padding: 1.5rem 0 0.25rem;
}

.vessel .accordion-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  position: relative;
  letter-spacing: 0.03rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.4rem 0;
  background-color: #ffffff;
  border: none;
  border-bottom: 2px solid #d9d9d9;
  color: #1b1c1d;
}

@media only screen and (min-width: 768px) {
  .vessel .accordion-button {
    font-size: 1.1rem;
    padding: 0.8rem 0;
  }
}

.vessel .accordion-button.collapsed span.add {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.vessel .accordion-button.collapsed span.remove {
  display: none;
}

.vessel .accordion-button span {
  font-size: 1.5rem;
  width: 2rem;
  height: 2rem;
  padding-top: 0.1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #f1f8f8;
  color: #2f3a69;
}

.vessel .accordion-button span.add {
  display: none;
}

.vessel .accordion-button span.remove {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.vessel .accordion-header {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.03rem;
}

.vessel .accordion-body {
  padding: 0.5rem 0.25rem;
}

.vessel .accordion-body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin: 1.2rem 0;
  font-size: 0.8em;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  .vessel .accordion-body-row {
    font-size: 0.925em;
  }
}

.vessel .accordion-body-row .value {
  margin-left: auto;
  text-align: right;
}

.vessel .accordion-body-row .gap {
  background-color: #a8dbfb;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
}

.video__wrap {
  width: 100%;
  height: 35vh;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .video__wrap {
    height: 78vh;
  }
}

.video__wrap:hover {
  cursor: pointer;
}

.video__wrap:hover .video__hld {
  z-index: 6;
}

.video__wrap img {
  width: auto;
  height: 3.5rem;
  top: 50%;
  left: 50%;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 7;
}

.video__wrap .video__hld {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.gallery-wrap {
  margin: 0rem 0 1rem;
}

@media only screen and (min-width: 768px) {
  .gallery-wrap {
    margin: 2rem 0 8rem;
  }
}

.gallery-wrap .gallery-carousel {
  /* the parent */
}

.gallery-wrap .gallery-carousel .image-hld {
  width: 100%;
  height: 40vh;
  border-radius: 0.3rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width: 768px) {
  .gallery-wrap .gallery-carousel .image-hld {
    width: 100%;
    height: 55vh;
  }
}

@media only screen and (min-width: 992px) {
  .gallery-wrap .gallery-carousel .image-hld {
    width: 100%;
    height: 75vh;
  }
}

.gallery-wrap .gallery-carousel .slick-next {
  top: -19vh;
  left: 90%;
}

@media only screen and (min-width: 576px) {
  .gallery-wrap .gallery-carousel .slick-next {
    top: -19vh;
    left: 93%;
  }
}

@media only screen and (min-width: 768px) {
  .gallery-wrap .gallery-carousel .slick-next {
    top: -25vh;
    left: 98%;
  }
}

@media only screen and (min-width: 992px) {
  .gallery-wrap .gallery-carousel .slick-next {
    top: -36vh;
    right: -90%;
  }
}

@media only screen and (min-width: 1200px) {
  .gallery-wrap .gallery-carousel .slick-next {
    top: -36vh;
    right: -90%;
  }
}

.gallery-wrap .gallery-carousel .slick-prev {
  bottom: -26vh;
  left: -0.4rem;
}

@media only screen and (min-width: 768px) {
  .gallery-wrap .gallery-carousel .slick-prev {
    bottom: -36vh;
    left: -5%;
  }
}

@media only screen and (min-width: 992px) {
  .gallery-wrap .gallery-carousel .slick-prev {
    bottom: -45vh;
    left: -3.5%;
  }
}

@media only screen and (min-width: 1200px) {
  .gallery-wrap .gallery-carousel .slick-prev {
    bottom: -45vh;
    left: -2%;
  }
}

.gallery-wrap .gallery-carousel .slick-next, .gallery-wrap .gallery-carousel .slick-prev {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  border-radius: 0.8rem;
  background-color: #2f3a69;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 4;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .gallery-wrap .gallery-carousel .slick-next, .gallery-wrap .gallery-carousel .slick-prev {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 0.5rem;
  }
}

.gallery-wrap .gallery-carousel .slick-next:before, .gallery-wrap .gallery-carousel .slick-prev:before {
  width: 0;
  height: 0;
  content: '';
}

.gallery-wrap .gallery-carousel .slick-dots {
  bottom: -3rem;
}

@media only screen and (max-width: 768px) {
  .gallery-wrap .gallery-carousel .slick-dots {
    bottom: -1rem;
    display: block !important;
  }
}

.gallery-wrap .gallery-carousel .slick-dots li.slick-active button::before {
  color: #2f3a69;
  background-color: #2f3a69;
}

.gallery-wrap .gallery-carousel .slick-dots li button::before {
  font-size: 10px;
  height: 5px;
  width: 25px;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #494d50;
}

.gallery-wrap .gallery-carousel .slick-list {
  margin: 0 -10px;
}

.services {
  width: 100vw;
  overflow-x: hidden;
}

.services .archive-srv {
  width: 100%;
}

.services .archive-srv .services-card {
  padding: 3rem 0 3rem;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card {
    padding: 4rem 0;
  }
}

.services .archive-srv .services-card:nth-child(2n-1) .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n-1) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.services .archive-srv .services-card:nth-child(2n-1) .row .col-md-5 {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n-1) .row .col-md-5 {
    padding-left: 6%;
    padding-right: 0;
  }
}

.services .archive-srv .services-card:nth-child(2n-1) .row .col-md-6 .photo {
  width: 94%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n-1) .row .col-md-6 .photo {
    width: 100%;
    margin: 0;
  }
}

.services .archive-srv .services-card:nth-child(2n-1) .row .col-md-6 .photo img {
  border-radius: 1rem;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n-1) .row .col-md-6 .photo img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.services .archive-srv .services-card:nth-child(2n) .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.services .archive-srv .services-card:nth-child(2n) .row .col-md-5 {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n) .row .col-md-5 {
    padding-right: 6%;
    padding-left: 0;
  }
}

.services .archive-srv .services-card:nth-child(2n) .row .col-md-6 .photo {
  width: 94%;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n) .row .col-md-6 .photo {
    width: 100%;
    margin: 0;
  }
}

.services .archive-srv .services-card:nth-child(2n) .row .col-md-6 .photo img {
  border-radius: 1rem;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card:nth-child(2n) .row .col-md-6 .photo img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.services .archive-srv .services-card .row .col-md-5 h2, .services .archive-srv .services-card .row .col-md-5 .h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.1;
  color: #1b1c1d;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card .row .col-md-5 h2, .services .archive-srv .services-card .row .col-md-5 .h2 {
    font-size: 2.5rem;
  }
}

.services .archive-srv .services-card .row .col-md-5 p {
  font-size: 1rem;
  letter-spacing: 0.03rem;
}

.services .archive-srv .services-card .row .col-md-5 .btn {
  width: 100%;
  margin-top: 0.4rem;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card .row .col-md-5 .btn {
    width: auto;
    margin-top: 1.2rem;
  }
}

.services .archive-srv .services-card .row .col-md-6 {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card .row .col-md-6 {
    text-align: unset;
  }
}

.services .archive-srv .services-card .row .col-md-6 a {
  width: 100%;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card .row .col-md-6 a {
    display: unset;
  }
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card .row .col-md-6 .photo {
    display: unset;
  }
}

.services .archive-srv .services-card .row .col-md-6 .photo img {
  width: 100%;
  height: 30vh;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .services .archive-srv .services-card .row .col-md-6 .photo img {
    height: 60vh;
    margin-bottom: 0;
  }
}

.testimonials .testimonial__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) {
  .testimonials .testimonial__wrap {
    height: 70vh;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.testimonials .testimonial__wrap .inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 4rem 10%;
  background-color: #0a3652;
  color: #ffffff;
}

@media only screen and (min-width: 768px) {
  .testimonials .testimonial__wrap .inner {
    width: 50%;
  }
}

.testimonials .testimonial__wrap .testimonial__carousel {
  /* the parent */
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld .rating_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld .text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  text-align: center;
  color: #a8dbfb;
  margin: 2rem 0 3rem;
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld .info .name {
  font-weight: 600;
  letter-spacing: 0.04rem;
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld .info .role {
  font-size: 0.85rem;
  letter-spacing: 0.04rem;
  color: #d9d9d9;
}

.testimonials .testimonial__wrap .testimonial__carousel .testimonial__hld .info img {
  width: auto;
  height: 5rem;
  margin-top: 1rem;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-next {
  top: -33px;
  right: -100%;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-prev {
  bottom: -80px;
  left: -4%;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-next, .testimonials .testimonial__wrap .testimonial__carousel .slick-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  z-index: 4;
}

/* @media only screen and (max-width: 768px) {
  .testimonials .testimonial__wrap .testimonial__carousel .slick-next, .testimonials .testimonial__wrap .testimonial__carousel .slick-prev {
    display: none !important;
  }
} */

.testimonials .testimonial__wrap .testimonial__carousel .slick-next:hover::before, .testimonials .testimonial__wrap .testimonial__carousel .slick-prev:hover::before {
  color: #ffffff;
  background-color: #2f3a69;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-next:before, .testimonials .testimonial__wrap .testimonial__carousel .slick-prev:before {
  width: 50px;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  opacity: 1;
  color: #2f3a69;
  outline: none;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border: 2px solid #2f3a69;
  background: transparent;
  position: relative;
  z-index: 3;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-dots {
  bottom: -4rem;
}

@media only screen and (max-width: 768px) {
  .testimonials .testimonial__wrap .testimonial__carousel .slick-dots {
    display: block !important;
  }
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-dots li.slick-active button::before {
  color: #2f3a69;
  background-color: #2f3a69;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-dots li button::before {
  font-size: 10px;
  height: 5px;
  width: 25px;
  text-indent: -9999px;
  overflow: hidden;
  background-color: #ffffff;
}

.testimonials .testimonial__wrap .testimonial__carousel .slick-list {
  margin: 0 -10px;
}

.testimonials .testimonial__wrap .image {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/**
 *
 * Compliance page styles
 *
*/
.compliances-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.compliances-wrapper .single-article {
  width: 100%;
  text-align: center;
  margin: 0.5rem 0.7rem;
  border-radius: 1rem;
  border: 1px solid #d9d9d9;
}

@media only screen and (min-width: 768px) {
  .compliances-wrapper .single-article {
    width: 30%;
    margin: 1rem 0.7rem;
  }
}

@media only screen and (min-width: 992px) {
  .compliances-wrapper .single-article {
    width: 22%;
    margin: 1rem 0.7rem;
  }
}

.compliances-wrapper .single-article .compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.2rem 4%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 768px) {
  .compliances-wrapper .single-article .compliance {
    padding: 1.5rem 5%;
  }
}

.compliances-wrapper .single-article .compliance .sec-text {
  font-size: 0.85rem;
}

.compliances-wrapper .single-article .compliance img {
  width: auto;
  height: 4.5rem;
}

@media only screen and (min-width: 768px) {
  .compliances-wrapper .single-article .compliance img {
    height: 6rem;
  }
}

/**
 *
 * All SCSS styles related to the Careers archive page
 *
*/
.careers .closing-date {
  padding: 0.3rem 0;
  text-align: center;
  background-color: #d9d9d9;
}

.careers .application-info {
  text-align: center;
  border-radius: 1rem;
  margin-top: 2rem;
  padding: 2.5rem 0.7rem;
  border: 1px solid #d9d9d9;
}

@media only screen and (min-width: 768px) {
  .careers .application-info {
    padding: 2.5rem 0;
  }
}

.careers .application-info .social-share a {
  margin: 1rem 0.2rem 0;
}

.careers .application-info a {
  margin: 0.3rem 0;
}

@media only screen and (min-width: 768px) {
  .careers .application-info a {
    marign: 1.2rem 0.3rem 1.6rem;
  }
}

.careers .application-info .share {
  margin-top: 1.7rem;
}

@media only screen and (min-width: 768px) {
  .careers .application-info .share {
    margin-top: 0;
  }
}

.careers-wrapper a {
  width: 100%;
  height: auto;
  padding: 1.5rem 7%;
  display: inline-block;
  border-radius: 1rem;
  border: 1px solid #d9d9d9;
  color: #1b1c1d;
}

@media only screen and (min-width: 768px) {
  .careers-wrapper a {
    padding: 2rem 7%;
  }
}

.careers-wrapper a .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.careers-wrapper a .header .sec-hdr {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .careers-wrapper a .header .sec-hdr {
    width: auto;
    margin-bottom: 0;
  }
}

.careers-wrapper a .header .dept {
  font-size: 0.8rem;
  padding: 0.2rem 0.8rem;
  margin-left: 0rem;
  background-color: #a8dbfb;
}

@media only screen and (min-width: 768px) {
  .careers-wrapper a .header .dept {
    font-size: 0.9rem;
    margin-left: 1.4rem;
    padding: 0.2rem 1rem;
  }
}

.careers-wrapper a .header .action {
  font-size: 0.85rem;
  margin-left: auto;
  color: #2f3a69;
}

@media only screen and (min-width: 768px) {
  .careers-wrapper a .header .action {
    font-size: 1rem;
  }
}

.careers-wrapper a .header .action i {
  margin-left: 0.5rem;
}

.careers-wrapper a .content {
  margin: 1.5rem 0;
}

@media only screen and (min-width: 768px) {
  .careers-wrapper a .content {
    margin: 2rem 0;
  }
}

.careers-wrapper a .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  font-size: 0.85rem;
  color: #494d50;
}

@media only screen and (min-width: 768px) {
  .careers-wrapper a .info {
    font-size: 1rem;
  }
}

.careers-wrapper a .info i {
  margin-right: 0.3rem;
}

.reports-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
}

.reports-wrap .reports-hld {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .reports-wrap .reports-hld {
    width: 32%;
  }
}

.reports-wrap .reports-hld:nth-child(n+2) {
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .reports-wrap .reports-hld:nth-child(n+2) {
    margin-top: unset;
  }
}

.reports-wrap .reports-hld:nth-child(n+4) {
  margin-top: 2.5rem;
}

.reports-wrap .reports-hld:hover a {
  background-color: rgba(84, 179, 76, 0.2);
  border: 2px solid rgba(84, 179, 76, 0.4);
}

.reports-wrap .reports-hld a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.3rem;
  border: 2px solid rgba(47, 58, 105, 0.2);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  padding: 0.4rem 5%;
  gap: 0.7rem;
}

.reports-wrap .reports-hld a .icon {
  font-size: 2rem;
  color: rgba(47, 58, 105, 0.8);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.reports-wrap .reports-hld a .details {
  width: 70%;
}

.reports-wrap .reports-hld a .details .title {
  font-size: 1rem;
  line-height: 1.2;
  font-family: "FB", "Helvetica", Arial, serif;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.reports-wrap .reports-hld a .download {
  margin-left: auto;
}

.pad-x {
  padding-left: 8%;
  padding-right: 8%;
}

.pad-rig {
  padding-right: 4%;
}

.pad-lef {
  padding-left: 4%;
}


@media only screen and (min-width: 768px) {
  .pad-x {
    padding-left: 8%;
    padding-right: 8%;
  }
}

@media only screen and (max-width: 768px) {
  .pad-x {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.bkg-std {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bkg-primary {
  background-color: #2f3a69;
}

.bkg-grey {
  background-color: #eaeaea;
}

.col-template-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem 4%;
  row-gap: 3rem;
}

.col-template-4.center {
  width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2%;
}

@media only screen and (min-width: 768px) {
  .col-template-4.center {
    width: 80%;
  }
}

.col-template-4.center .col-hld {
  width: 48%;
}

@media only screen and (min-width: 768px) {
  .col-template-4.center .col-hld {
    width: 32%;
  }
}

.col-template-4.center .col-hld:nth-child(n+3) {
  margin-top: 0.6rem;
}

@media only screen and (min-width: 768px) {
  .col-template-4.center .col-hld:nth-child(n+3) {
    margin-top: unset;
  }
}

.col-template-4.center .col-hld:nth-child(n+4) {
  margin-top: 0.6rem;
}

@media only screen and (min-width: 768px) {
  .col-template-4.center .col-hld:nth-child(n+4) {
    margin-top: 2rem;
  }
}

.col-template-4 .col-hld {
  width: 48%;
  height: 20rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

.col-template-4 .col-hld:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

@media only screen and (min-width: 768px) {
  .col-template-4 .col-hld {
    /* width: 23%; */
    height: 28rem;
  }
}

.col-template-4 .col-hld:hover a .col-details .col-strip {
  height: 5rem;
}

.col-template-4 .col-hld:nth-child(4n-3) a .col-details .col-strip {
  background-color: rgba(47, 58, 105, 0.9);
}

.col-template-4 .col-hld:nth-child(4n-2) a .col-details .col-strip {
  background-color: rgba(84, 179, 76, 0.9);
}

.col-template-4 .col-hld:nth-child(4n-1) a .col-details .col-strip {
  background-color: rgba(0, 132, 147, 0.9);
}

.col-template-4 .col-hld:nth-child(4n) a .col-details .col-strip {
  background-color: rgba(238, 114, 25, 0.9);
}

.col-template-4 .col-hld a {
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.col-template-4 .col-hld a .col-photo,
.col-template-4 .col-hld a .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.col-template-4 .col-hld a .col-photo {
  width: 100%;
  /* height: 50vh; */
  height: -webkit-fill-available;
  right: 0;
}

/* .col-template-4 .col-hld a .col-photo.hom {
  width: 30%;
  height: 50vh;
  right: 0;
} */


.col-template-4 .col-hld a .col-details {
  position: relative;
  z-index: 2;
}

.col-template-4 .col-hld a .col-details .col-title {
  font-size: 1.2rem;
  line-height: 1.2;
  font-family: "FB", "Helvetica", Arial, serif;
  padding: 0 7% 1rem;
  color: white;
}

@media only screen and (min-width: 768px) {
  .col-template-4 .col-hld a .col-details .col-title {
    font-size: 2rem;
  }
}

.col-template-4 .col-hld a .col-details .col-strip {
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 7%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  gap: 0.5rem;
}

.col-template-4 .col-hld a .col-details .col-strip span {
  font-size: 0.8rem;
  line-height: 1.3;
  letter-spacing: 0.04rem;
  color: white !important;
}

@media only screen and (min-width: 768px) {
  .col-template-4 .col-hld a .col-details .col-strip span {
    font-size: 0.9rem;
  }
}

.col-template-4 .col-hld a .col-details .col-strip img {
  width: auto;
  height: 2rem;
}

.events-wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.2rem 2%;
}

@media only screen and (min-width: 768px) {
  .events-wrap {
    gap: 2rem 1.5%;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: center;
  }
}

.events-wrap .events-hld {
  width: 48%;
  overflow: hidden;
  position: relative;
  border-radius: 0.3rem;
  border: 1px solid rgba(27, 28, 29, 0.1);
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

.events-wrap .events-hld:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

@media only screen and (min-width: 768px) {
  .events-wrap .events-hld {
    width: 31.875%;
  }
}

.events-wrap .events-hld:hover a .title {
  color: #54b34c;
  background-color: rgba(84, 179, 76, 0.1);
}

.events-wrap .events-hld a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.events-wrap .events-hld a .title {
  height: 8rem;
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: "FB", "Helvetica", Arial, serif;
  padding: 1.3rem 6%;
  color: #4c4d56;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media only screen and (min-width: 768px) {
  .events-wrap .events-hld a .title {
    height: 5rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.events-wrap .events-hld a .cont {
  height: 10rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .events-wrap .events-hld a .cont {
    height: 15rem;
  }
}

.events-wrap .events-hld a .cont .photo {
  width: 100%;
  height: 10rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media only screen and (min-width: 768px) {
  .events-wrap .events-hld a .cont .photo {
    height: 15rem;
  }
}

.events-wrap .events-hld a .cont .overlay {
  z-index: 2;
}

.events-wrap .events-hld a .cont .date {
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #54b34c;
  border-top-left-radius: 0.3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  color: #ffffff;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.events-wrap .events-hld a .cont .date span {
  line-height: 1;
}

.events-wrap .events-hld a .cont .date span:first-child {
  font-size: 1.5rem;
  letter-spacing: 0.03rem;
  font-family: "FBL", "Helvetica", Arial, serif;
}

.events-wrap .events-hld a .cont .date span:last-child {
  font-size: 1rem;
  font-family: "FB", "Helvetica", Arial, serif;
  text-transform: uppercase;
}

.news-wrap .news-hld {
  position: relative;
}

.news-wrap .news-hld:hover a .image {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.news-wrap .news-hld:hover a .details .title {
  color: #54b34c;
}

.news-wrap .news-hld a {
  width: 100%;
  height: 100%;
  display: inline-block;
}

.news-wrap .news-hld a .image {
  width: 100%;
  height: 14rem;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.news-wrap .news-hld a .image:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

@media only screen and (min-width: 768px) {
  .news-wrap .news-hld a .image {
    height: 20rem;
  }
}

.news-wrap .news-hld a .details {
  margin-top: 1rem;
}

.news-wrap .news-hld a .details .title {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0.02rem;
  font-family: "FB", "Helvetica", Arial, serif;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media only screen and (min-width: 768px) {
  .news-wrap .news-hld a .details .title {
    font-size: 1.2rem;
  }
}

.news-wrap .news-hld a .details .date {
  font-size: 0.8rem;
  margin: 0.3rem 0;
  letter-spacing: 0.04rem;
  color: #8F96A3;
}

.news-wrap .sm .news-hld {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(27, 28, 29, 0.1);
}

@media only screen and (min-width: 768px) {
  .news-wrap .sm .news-hld {
    border-top: none;
    margin-top: unset;
    padding-top: unset;
  }
}

.news-wrap .sm .news-hld:nth-child(n+2) {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(27, 28, 29, 0.1);
  padding-top: 1.8rem;
}

.news-wrap .sm .news-hld a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.8rem;
}

.news-wrap .sm .news-hld a .image {
  width: 40%;
  height: 7rem;
}

.news-wrap .sm .news-hld a .details {
  width: 60%;
  margin-top: 0;
  margin-left: 2%;
}

.news-wrap.md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
}

.news-wrap.md .news-hld {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .news-wrap.md .news-hld {
    width: 32%;
  }
}

.news-wrap.md .news-hld:nth-child(n+2) {
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .news-wrap.md .news-hld:nth-child(n+2) {
    margin-top: unset;
  }
}

.news-wrap.md .news-hld:nth-child(n+4) {
  margin-top: 3rem;
}

.news-wrap.md .news-hld a .image {
  height: 12rem;
}

@media only screen and (min-width: 768px) {
  .news-wrap.md .news-hld a .image {
    height: 15rem;
  }
}

.news-wrap.md .news-hld a .details {
  width: 90%;
}

.news-wrap.md .news-hld a .details .title {
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0.04rem;
}

.news-wrap .lg .news-hld a .details {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .news-wrap .lg .news-hld a .details {
    width: 80%;
  }
}

.news-wrap .lg .news-hld a .details .title {
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
}

@media only screen and (min-width: 768px) {
  .news-wrap .lg .news-hld a .details .title {
    font-size: 1.6rem;
  }
}

.accordion__wrap {
  width: 100%;
  margin: 2rem auto 0;
  border-radius: 0.3rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .accordion__wrap {
    width: 100%;
  }
}

.accordion__wrap .accordion__hld {
  padding: 0rem 4%;
}

/*.accordion__hld.wht .content .sec-text h2, .sec-text .h2, .sec-text h3, .sec-text .h3, .sec-text h4 {*/
/*    color: #fff;*/
/*}*/

.accordion__wrap .accordion__hld.wht {
  padding: 0rem 2%;
}

.accordion__wrap .accordion__hld.wht:nth-child(n+2) {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion__wrap .accordion__hld.wht:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion__wrap .accordion__hld.wht .intro .title {
  color: rgba(84, 179, 76, 0.8);
}

.accordion__wrap .accordion__hld.wht .intro .icon {
  color: rgba(255, 255, 255, 0.8);
}

.accordion__wrap .accordion__hld.wht .content {
  font-size: 0.85rem;
}

.accordion__wrap .accordion__hld.wht .content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.accordion__wrap .accordion__hld.wht .content .sec-text li {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  color: rgba(255, 255, 255, 0.8);
}

.accordion__wrap .accordion__hld.fnb:nth-child(2) {
  border-top: none;
}

.accordion__wrap .accordion__hld:nth-child(n+2) {
  border-top: 1px solid rgba(47, 58, 105, 0.08);
}

.accordion__wrap .accordion__hld:hover .intro {
  cursor: pointer;
}

.accordion__wrap .accordion__hld .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.2rem 0;
}

.accordion__wrap .accordion__hld .intro .title {
  font-size: 1.1rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.04rem;
  color: #4c4d56;
}

@media only screen and (max-width: 768px) {
  .accordion__wrap .accordion__hld .intro .title {
    font-size: 1rem;
  }
}

.accordion__wrap .accordion__hld .intro .icon {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.accordion__wrap .accordion__hld .intro .icon.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.accordion__wrap .accordion__hld .intro .icon .fal {
  font-weight: 700;
}

.accordion__wrap .accordion__hld .content {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.03rem;
  padding: 0rem 0 1.2rem;
  display: none;
}

.accordion__wrap .accordion__hld .content p {
  margin-bottom: 0;
}

.accordion__wrap .accordion__hld .content p:nth-child(n+2) {
  margin-top: 0.5rem;
}

.accordion__wrap .accordion__hld .content .info__list {
  margin: 0;
  padding: 0;
}

.accordion__wrap .accordion__hld .content .info__list li {
  list-style: none;
  margin: 0;
}

.accordion__wrap .accordion__hld .content .info__list li:nth-child(n+2) {
  margin-top: 0.7rem;
}

.accordion__wrap .accordion__hld .content .info__list li:hover a {
  color: #2f3a69;
}

.accordion__wrap .accordion__hld .content .info__list li a {
  color: #ffffff;
  letter-spacing: 0.03rem;
}

.accordion__wrap .accordion__hld .content .info__list li a span {
  margin-right: 0.7rem;
}

.accordion__wrap .accordion__hld .content .no-posts {
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: #2f3a69;
}

.media-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 2%;
}

@media only screen and (min-width: 768px) {
  .media-wrap {
    gap: 2%;
  }
}

.media-wrap .media-hld {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .media-wrap .media-hld {
    width: 32%;
  }
}

.media-wrap .media-hld:nth-child(n+4) {
  margin-top: 3rem;
}

.media-wrap .media-hld:hover .inner-wrap .image {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.media-wrap .media-hld:hover .inner-wrap .image .media-trigger .btn-hld .gallery-cont a {
  background-color: #54b34c;
  border: 2px solid #54b34c;
}

.media-wrap .media-hld:hover .inner-wrap .details .title {
  color: #54b34c;
}

.media-wrap .media-hld .inner-wrap {
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 0.3rem;
}

.media-wrap .media-hld .inner-wrap .image {
  width: 100%;
  height: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
}

.media-wrap .media-hld .inner-wrap .image:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

.media-wrap .media-hld .inner-wrap .image .overlay {
  background-color: rgba(27, 28, 29, 0.3);
  border-radius: 0.3rem;
}

.media-wrap .media-hld .inner-wrap .image .media-trigger {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}

.media-wrap .media-hld .inner-wrap .image .media-trigger .btn-hld {
  position: relative;
  margin-top: 0.3rem;
  z-index: 2;
}

.media-wrap .media-hld .inner-wrap .image .media-trigger .btn-hld .gallery-cont a {
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #ffffff;
  font-family: "FR", "Helvetica", Arial, serif;
  letter-spacing: 0.06rem;
  border-radius: 50%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  color: white;
}

.media-wrap .media-hld .inner-wrap .image .media-trigger .btn-hld .gallery-cont a:nth-child(n+2) {
  display: none;
}

.media-wrap .media-hld .inner-wrap .details {
  margin-top: 1rem;
}

.media-wrap .media-hld .inner-wrap .details .title {
  font-size: 1.2rem;
  letter-spacing: 0.02rem;
  font-family: "FB", "Helvetica", Arial, serif;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.media-wrap .media-hld .inner-wrap .details .sec-text p {
  font-size: 0.9rem;
  letter-spacing: 0.03rem;
  margin-top: 0.4rem;
  line-height: 1.4;
}

.team-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem 2%;
}

@media only screen and (min-width: 768px) {
  .team-wrap {
    /* gap: 2%; */
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.team-wrap.central {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.team-wrap.wht .col-hld .col-cont .col-det .col-title {
  color: white;
}

.team-wrap.wht .col-hld .col-cont .col-det .col-cat {
  color: rgba(255, 255, 255, 0.7);
}

.team-wrap .col-hld {
  width: 48%;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .team-wrap .col-hld {
    width: 17.5%;
  }
}

.team-wrap .col-hld:hover .col-cont .col-photo .image {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.team-wrap .col-hld:hover .col-cont .col-photo .arrow {
  background-color: #54b34c;
}

.team-wrap .col-hld .col-cont .col-photo .arrow i:hover {
  margin-left: 0;
}
.team-wrap .col-hld:hover .col-cont .col-det .col-title {
  color: #54b34c;
}

.team-wrap .col-hld .col-cont {
  width: 100%;
  height: auto;
  display: inline-block;
}

.team-wrap .col-hld .col-cont .col-photo {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  border-radius: 0.3rem;
}

.team-wrap .col-hld .col-cont .col-photo .image {
  width: auto;
  height: 35vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

@media only screen and (min-width: 768px) {
  .team-wrap .col-hld .col-cont .col-photo .image {
    height: 32vh;
  }
}

.team-wrap .col-hld .col-cont .col-photo .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(0, 0, 0, 0.1)), to(rgba(27, 28, 29, 0.7)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 80%, rgba(27, 28, 29, 0.7) 100%);
  left: 0;
  top: 0;
  z-index: 1;
}

.team-wrap .col-hld .col-cont .col-photo .arrow {
  width: 35px;
  height: 35px;
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  bottom: 2vh;
  right: 4%;
  z-index: 2;
}

.team-wrap .col-hld .col-cont .col-det {
  padding-top: 2vh;
  padding-right: 3%;
}

.team-wrap .col-hld .col-cont .col-det .col-hd {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4c4d56;
}

.team-wrap .col-hld .col-cont .col-det .col-title {
  margin-top: 0.3rem;
  line-height: 1.3;
  letter-spacing: 0.03rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "FB", "Helvetica", Arial, serif;
  text-align: center;
  font-size: 1rem;
  color: #4c4d56;
}

@media only screen and (min-width: 768px) {
  .team-wrap .col-hld .col-cont .col-det .col-title {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 1vh;
  }
}

.team-wrap .col-hld .col-cont .col-det .col-cat {
  letter-spacing: 0.05rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-align: center;
  color: rgba(76, 77, 86, 0.7);
  margin-top: 0.3rem;
}

@media only screen and (min-width: 768px) {
  .team-wrap .col-hld .col-cont .col-det .col-cat {
    font-size: 0.95rem;
    text-align: left;
    margin-top: 0.3rem;
  }
}

.single-page .share h4, .single-page .share .h4, .single-page .share .search-results .search-cards h2, .search-results .search-cards .single-page .share h2, .single-page .share .search-results .search-cards .h2, .search-results .search-cards .single-page .share .h2 {
  margin: 0;
  font-size: 1rem;
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.04rem;
  color: #4c4d56;
}

.single-page .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.single-page .social-share .share {
  font-size: 1rem;
  border-radius: 50%;
  background-color: #4c4d56;
}

.single-page .social-share .share:hover {
  background-color: #54b34c;
}

.single-page .social-share .share a:nth-child(n+2) {
  margin-left: 0.4rem;
}

.single-page .content-img {
  width: 100%;
  height: 15rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 768px) {
  .single-page .content-img {
    height: 25rem;
  }
}

.single-page .mid-section img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;
}

.single-page .mid-section img:hover {
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
          box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.25);
}

.single-page .sec-text h4, .single-page .sec-text .h4, .single-page .sec-text .search-results .search-cards h2, .search-results .search-cards .single-page .sec-text h2, .single-page .sec-text .search-results .search-cards .h2, .search-results .search-cards .single-page .sec-text .h2 {
  font-size: 1.3rem;
  font-family: "FB", "Helvetica", Arial, serif;
}

.single-page .sec-text h5, .single-page .sec-text .h5 {
  font-size: 1rem;
  font-family: "FB", "Helvetica", Arial, serif;
}

.single-page .sec-text p + h4, .single-page .sec-text p + .h4, .single-page .sec-text .search-results .search-cards p + h2, .search-results .search-cards .single-page .sec-text p + h2, .single-page .sec-text .search-results .search-cards p + .h2, .search-results .search-cards .single-page .sec-text p + .h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
}

.single-page .sec-text p + h5, .single-page .sec-text p + .h5 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

.workshops-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.workshops-wrap .workshops-hld {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .workshops-wrap .workshops-hld {
    width: 48%;
  }
}

.workshops-wrap .workshops-hld:nth-child(n+2) {
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .workshops-wrap .workshops-hld:nth-child(n+2) {
    margin-top: unset;
  }
}

.workshops-wrap .workshops-hld:nth-child(n+3) {
  margin-top: 2rem;
}

@media only screen and (min-width: 768px) {
  .workshops-wrap .workshops-hld:nth-child(n+3) {
    margin-top: 2.5rem;
  }
}

.workshops-wrap .workshops-hld:hover .inner {
  background-color: rgba(84, 179, 76, 0.1);
  border-left: 6px solid rgba(84, 179, 76, 0.8);
}

.workshops-wrap .workshops-hld:hover .inner .details .title {
  color: #54b34c;
}

.workshops-wrap .workshops-hld .inner {
  width: 100%;
  min-height: 15rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.4rem 6%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  background-color: rgba(47, 58, 105, 0.06);
  border-left: 6px solid rgba(47, 58, 105, 0.8);
  border-radius: 0.3rem;
}

@media only screen and (min-width: 768px) {
  .workshops-wrap .workshops-hld .inner {
    height: 13rem;
  }
}

.workshops-wrap .workshops-hld .inner .details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.workshops-wrap .workshops-hld .inner .details .title {
  font-size: 1.2rem;
  font-family: "FB", "Helvetica", Arial, serif;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  letter-spacing: 0.04rem;
  line-height: 1.3;
}

.workshops-wrap .workshops-hld .inner .details .info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  gap: 0.3rem 1.3rem;
}

.workshops-wrap .workshops-hld .inner .details .info-wrap .info {
  color: rgba(76, 77, 86, 0.7);
}

.workshops-wrap .workshops-hld .inner .details .info-wrap .info span {
  font-size: 0.95rem;
}

.workshops-wrap .workshops-hld .inner .details .info-wrap .info span i {
  margin-right: 0.2rem;
}

.workshops-wrap .workshops-hld .inner .details .info-wrap .info.price {
  font-family: "FB", "Helvetica", Arial, serif;
  letter-spacing: 0.04rem;
  color: #54b34c;
}

.workshops-wrap .workshops-hld .inner .btn-hld {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  border-radius: 0.3rem;
  background-color: rgba(84, 179, 76, 0.9);
  padding: 0.4rem 1rem;
  color: white;
}

.sec-text, .sec-text p table {
  color: rgba(255, 255, 255, 255); 
}

.sec-text.drk, .sec-text.drk p table {
  color: #494d50;
}

.sec-hdr.wht.access {
  color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* Style the table */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ddd; 
  overflow-x: auto;
}

.col-lg-10.table {
  overflow-x: auto;
}

/* Style table header */
th, td {
  padding: 1.5rem 1rem;
  text-align: left;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

th {
  background-color: #f9f9f9; 
  font-weight: bold;
}

/* Alternate row color */
tr:nth-child(even) {
  background-color: #f1f8f8;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); 
}

tr td h5:nth-child(even) {
  background-color: #f1f8f8;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1); 
  color: #54b34c;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Align table content perfectly */
td {
  vertical-align: top; 
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: auto;
}

/* Add padding to first child td */
td:first-child {
  width: 5%;
  border-right: 2px groove;
    border-width: medium;
    border-left-style: dotted;
    padding-left: 0.5rem;
}

tbody tr td h4 {
  margin-bottom: 0;
  color: #54b34c;
  padding: 2rem 0; 
}

td:first-child h5 {
  font-weight: 700;
  font-size: 0.95rem;
  color: #54b34c;
}

td h3 {
  margin: 1rem 0;
}
/* Adjust styles for smaller screens */
@media screen and (max-width: 768px) {
  th, td {
    padding: 0.5rem;
  }
  
  
  th {
    font-size: 0.9rem;
  }
  
  td, th {
    font-size: 0.8rem;
  }
}



@media screen and (min-width: 783px) {
.hustle-ui:not(.hustle-size--small).module_id_1 .hustle-layout .hustle-image img {
    object-fit: fill !important;
}
    
}


element.style {
}
@media (min-width: 783px) {
.hustle-ui:not(.hustle-size--small) .hustle-info.hustle-info--compact .hustle-layout .hustle-content {
    background-color: #f2f2f2;
}
}
@media screen and (min-width: 783px) {
.hustle-ui:not(.hustle-size--small).module_id_1 .hustle-popup-content .hustle-info, .hustle-ui:not(.hustle-size--small).module_id_1 .hustle-popup-content .hustle-optin {
    box-shadow: 2px 6px 3px 10px #4a3d3d;
    border-radius: 11px;
}
}



/* Container holding the cards */
/* .col-hld {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
} */

.inner-cont {
  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* gap: 1.2rem 4%; */
    row-gap: 3rem;
}


.inner-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* gap: 1.2rem 4%; */
}

.inner-cont .inner_card {
  width: 48%; 
  height: 28rem;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0.3rem;
  transition: box-shadow 0.4s ease-out;
}

.inner-cont .inner_card:nth-child(3) {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.inner-cont .inner_card:nth-child(3) .inner-body,
.inner-cont .inner_card:nth-child(3) {
  height: 20rem; 
}




.inner-cont .inner_card {
  height: 28rem;
  width: 48%;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  overflow: hidden;
  position: relative;
  border-radius: 0.3rem;
  -webkit-box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  box-shadow: 0px 5px 20px rgba(27, 28, 29, 0.1);
  -webkit-transition: -webkit-box-shadow 0.4s ease-out;
  transition: -webkit-box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out;
  transition: box-shadow 0.4s ease-out, -webkit-box-shadow 0.4s ease-out;

}

.inner-cont .inner_card a {
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.inner-cont .inner_card .inner-notch .inner-body {
  position: relative;
  display: flex;
  z-index: 1;
  padding: 2.25rem;
  height: 28rem;
  transition: 0.4s ease-in-out all;
}

.inner-body .inner-body_cont {
  align-items: flex-start;
  display: flex;
  width: 80%;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}

.inner-body .inner-side {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.inner-cont .inner_card:nth-child(3) {
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;     
  text-align: center;      
}

.inner-cont .inner_card:nth-child(3) .inner-body .inner-body_cont {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.inner-cont .inner_card:nth-child(3) .inner-body .inner-body_cont .col-text {
  width: 95%;
}

.inner-cont .inner_card:nth-child(3) .inner-body,
.inner-cont .inner_card:nth-child(3) {
  height: auto;
  justify-content: center;
}

.inner-notch .inner-body:hover {
  background-color: #2f3a69;
  color: #fff;
}

.inner-notch .inner-body:hover .col-title, .inner-notch .inner-body:hover .col-text {
  color: #fff;
}

@media (max-width: 768px) {
  .inner-cont .inner_card .inner-notch .inner-body {
    height: auto;
  }
  .inner-body .inner-body_cont {
    width: 100%;
  }
}


.col-title {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}




.col-text {
  font-size: 1.1em;
  color: #666;
}


.btn {
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
}


/* .col-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
} */

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); 
  z-index: -1;
}

.d-flex.align {
  justify-content: center;
}

.hm-testimonial-carousel {
  display: flex;
  gap: 20px;
}

.testimonial-hld {
  padding: 1rem;
}

.testimonial-cont {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;

}

.testimonial-cont a {
  color: #00b894;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.testimonial-cont:hover {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
  background-color: #f9f9f9;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.testimonial-cont a:hover {
  color: #009973; /* Optional: Change color on hover */
  transform: translateX(4px); /* Optional: Slide the icon slightly */
}



.btn.secondary.clr_sec:hover i {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}


.left-side.bkg-std {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #f2f2f2;
  border-radius: 10px;
}

.left-side.bkg-std img {
  width: 100%;
  height: 24.5rem;
  border-radius: 10px;
  object-fit: cover;
}

.testimonial-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info .name {
  color: #555;
  font-weight: bold;
  font-size: 1.2em;
}

.info .business {
  font-size: 1em;
  color: #888;
  margin-bottom: 10px;
}

/* .inner {
  padding: 3rem;
} */

.text-hld {
  font-size: 0.9em;
  color: #555;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 9;
}

@media (max-width: 768px) {
  .text-hld {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 10;
  }

  .logo-wrap .logo-hld {
    width: 37vw;
  }
}

.visit-website {
  font-weight: bold;
  color: #555;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
  font-size: 0.9em;
}

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

.txtal {
  text-align: left !important;
}

.txt-none {
  text-transform: none;
}

.stats-wrap .stats-hld .side img {
    width: 70%;
  height: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.stats-hld {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
}

.slick-prev:before {
  display: none;
}

/* .hm-testimonial-carousel.about {
  background: #EEF1F4;

} */


.inner.about {
  /* background: #EEF1F4;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px; */
}

.testimonial-hld.about {
  padding: 4rem;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: transform;
  z-index: 1;

}

/* .testimonial-hld.about:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

/* .testimonial-hld.about:hover {
  background-color: #f9f9f9; 
  color: #333; 
  transition: background-color 0.3s ease, color 0.3s ease;
} */

/* .testimonial-hld.about:hover {
  transform: rotate(1deg) translateY(-5px);
  transition: transform 0.3s ease;
  background-color: #f9f9f9; 
  color: #333; 
} */

.testimonial-hld.about {
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.testimonial-hld.about:hover {
  border-color: #00b894; 
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.testimonial-arrow {
    transition: box-shadow 0.3s ease;
}

.testimonial-arrow:hover {
    box-shadow: 0px 0px 8px rgba(0, 184, 148, 0.6);
} 


.single-page .mid-section.team img {
  object-fit: cover;
  height: 35rem;
}


@media (max-width: 768px) {
  .inner-cont {
    flex-direction: column;
    gap: 1rem; 
  }
  
  .inner-cont .inner_card {
    width: 100% !important; 
    height: auto; 
  }


  .inner-cont .inner_card:nth-child(3) .inner-body .inner-body_cont {
    align-items: start;
    text-align: start;
  }

  .inner-cont .inner_card:nth-child(3) .inner-body .inner-body_cont .col-text {
    width: 100%;
    /* text-align: left; */
  }

  .inner-body .inner-body_cont {
    justify-content: space-around;
  }

  .left-side.bkg-std img {
    width: 100%; 
  }

  .testimonial-cont {
    align-items: center;
  }

  .left-side.bkg-std {
    height: 13rem; 
    display: none;
  }

  .col-text {
    width: 100%;
    height: auto;
  }

  .inner-body .inner-side {
    display: none;
  }

}

@media (min-width: 768px) {
  .inner-cont .inner_card {
    height: 28rem; 
  }
}


.hero.sub__pages.new {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  background-color: #f0f4fc;
  padding: 8rem 8% 3% 8%;
  align-items: center;
}

.hero.sub__pages.new.rev {
  padding: 8rem 8% 6% 8%;
}

@media (max-width: 768px) {
  .hero.sub__pages.new.rev {
    padding: 8rem 8% 15% 8%;
  }
}

.hero.sub__pages.new .caption__wrap.new {
  position: static;
  transform: translateY(0);
}

.caption-cont.new.pad-x {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.caption__wrap.new {
  flex: 1;
  /* max-width: 600px; */
}

.hero .caption__wrap.new {
  align-items: start;
}

.hero__title.new {
  font-size: 2rem;
  font-weight: bold;
  color: #000 !important;
}

.hero .caption__wrap.new .hero__title {
  line-height: 0.9;
  font-size: 3rem;
}

.hero .caption__wrap.new .hero__lead-text.new {
  color: #141516;
}

.hero.sub__pages.new {
  height: auto;
}

.hero.sub__pages.new .sub-links-wrap {
  position: absolute;
}


.hero__img.new {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero.sub__pages.new .hero__img.new {
  height: 45vh;
  width: 45vw;
}

.hero__img, .hero__video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styling */
@media (max-width: 768px) {
  .mentor-program-content {
      flex-direction: column;
  }

  .hero.sub__pages.new .hero__img.new {
    width: 100%;
  }

  .image-content {
      margin: 20px 0 0;
  }
}

@media (max-width: 768px) {
  .hero.sub__pages.new {
    height: auto;

  }

  .hero.sub__pages.new {
    flex-wrap: wrap;
    padding: 3rem 5%;
  }
  .inner-cont .inner_card:nth-child(3) .inner-body,
  .inner-cont .inner_card:nth-child(3) {
    height: auto;
    justify-content: start;
  }
}

.logo-carousel .logo-hld.pat a img {
  width: 70%;
  height: 4rem;
  -o-object-fit: contain;
  object-fit: contain;
}

div.wpforms-container-full .wpforms-field.wpforms-field-checkbox ul li input, div.wpforms-container-full .wpforms-field.wpforms-field-radio ul li input {
  width: auto;
  background-color: transparent;
  border: none !important;
}


.job-card {
  display: block;
  padding: 15px; 
  background-color: #f9f9f9; 
  border: 1px solid #e0e0e0; 
  border-radius: 8px; 
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.job-card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.job-card .job-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #002c5c;
  margin: 0;
}

.job-card .dept {
  background-color: #d6ebff; 
  color: #0056a3;
  font-size: 0.875rem; 
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
}


.job-card .action {
  font-size: 0.875rem;
  color: #0056a3;
  display: flex;
  align-items: center;
}

.job-card .action i {
  margin-left: 5px;
}


.job-card .info {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 10px;
}

.job-card .det {
  display: flex;
  align-items: center;
  font-size: 0.875rem; 
  color: #666;
}

.job-card .det i {
  font-size: 0.75rem; 
  margin-right: 5px;
  color: #888;
}

.hero.sub__pages.single .caption__wrap.new.car {
  left: 5%;
}

 b,strong {
  font-weight: bolder;
  background-color: #f0f1f3;
  padding: 3px;
  border-radius: 10px;
 }

 @media (min-width: 768px) {
  .tf {
    text-align: justify !important;
  }
}

.col-template-4 .col-hld.sub {
	width: 30%;
}
