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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@charset "UTF-8";
:root {
  --brand--primary: $brand-primary;
  --brand-gold: $brand-gold:
  --brand-dark: $brand-dark:
  --brand-grey: $brand-grey;
}

:root {
  --brand-font: $brand-font:
  --brand-header-font: $brand-header-font:
  --font-regular: $font-regular;
  --font-bold: normal;
}

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

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

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

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

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

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

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

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

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

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

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

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

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

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

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

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
  font: inherit;
}

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

/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #A6192E;
  --bs-grey: #F4F4F4;
  --bs-dark-grey: #646464;
  --bs-primary-rgb: 166, 25, 46;
  --bs-grey-rgb: 244, 244, 244;
  --bs-dark-grey-rgb: 100, 100, 100;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.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;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 7.5rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 7.5rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 7.5rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 7.5rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-sm-5 {
    padding-left: 7.5rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ps-md-5 {
    padding-left: 7.5rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pe-lg-2 {
    padding-right: 1.25rem !important;
  }

  .pe-lg-3 {
    padding-right: 2.5rem !important;
  }

  .pe-lg-4 {
    padding-right: 3.75rem !important;
  }

  .pe-lg-5 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.625rem !important;
  }

  .ps-lg-2 {
    padding-left: 1.25rem !important;
  }

  .ps-lg-3 {
    padding-left: 2.5rem !important;
  }

  .ps-lg-4 {
    padding-left: 3.75rem !important;
  }

  .ps-lg-5 {
    padding-left: 7.5rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.625rem !important;
  }

  .m-xl-2 {
    margin: 1.25rem !important;
  }

  .m-xl-3 {
    margin: 2.5rem !important;
  }

  .m-xl-4 {
    margin: 3.75rem !important;
  }

  .m-xl-5 {
    margin: 7.5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-xl-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xl-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xl-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-xl-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-xl-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xl-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xl-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-xl-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.625rem !important;
  }

  .mt-xl-2 {
    margin-top: 1.25rem !important;
  }

  .mt-xl-3 {
    margin-top: 2.5rem !important;
  }

  .mt-xl-4 {
    margin-top: 3.75rem !important;
  }

  .mt-xl-5 {
    margin-top: 7.5rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.625rem !important;
  }

  .me-xl-2 {
    margin-right: 1.25rem !important;
  }

  .me-xl-3 {
    margin-right: 2.5rem !important;
  }

  .me-xl-4 {
    margin-right: 3.75rem !important;
  }

  .me-xl-5 {
    margin-right: 7.5rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.625rem !important;
  }

  .ms-xl-2 {
    margin-left: 1.25rem !important;
  }

  .ms-xl-3 {
    margin-left: 2.5rem !important;
  }

  .ms-xl-4 {
    margin-left: 3.75rem !important;
  }

  .ms-xl-5 {
    margin-left: 7.5rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.625rem !important;
  }

  .p-xl-2 {
    padding: 1.25rem !important;
  }

  .p-xl-3 {
    padding: 2.5rem !important;
  }

  .p-xl-4 {
    padding: 3.75rem !important;
  }

  .p-xl-5 {
    padding: 7.5rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-xl-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xl-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xl-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-xl-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-xl-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xl-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xl-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-xl-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.625rem !important;
  }

  .pt-xl-2 {
    padding-top: 1.25rem !important;
  }

  .pt-xl-3 {
    padding-top: 2.5rem !important;
  }

  .pt-xl-4 {
    padding-top: 3.75rem !important;
  }

  .pt-xl-5 {
    padding-top: 7.5rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.625rem !important;
  }

  .pe-xl-2 {
    padding-right: 1.25rem !important;
  }

  .pe-xl-3 {
    padding-right: 2.5rem !important;
  }

  .pe-xl-4 {
    padding-right: 3.75rem !important;
  }

  .pe-xl-5 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.625rem !important;
  }

  .ps-xl-2 {
    padding-left: 1.25rem !important;
  }

  .ps-xl-3 {
    padding-left: 2.5rem !important;
  }

  .ps-xl-4 {
    padding-left: 3.75rem !important;
  }

  .ps-xl-5 {
    padding-left: 7.5rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.625rem !important;
  }

  .m-xxl-2 {
    margin: 1.25rem !important;
  }

  .m-xxl-3 {
    margin: 2.5rem !important;
  }

  .m-xxl-4 {
    margin: 3.75rem !important;
  }

  .m-xxl-5 {
    margin: 7.5rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-xxl-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xxl-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxl-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-xxl-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-xxl-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xxl-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxl-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-xxl-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.625rem !important;
  }

  .mt-xxl-2 {
    margin-top: 1.25rem !important;
  }

  .mt-xxl-3 {
    margin-top: 2.5rem !important;
  }

  .mt-xxl-4 {
    margin-top: 3.75rem !important;
  }

  .mt-xxl-5 {
    margin-top: 7.5rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.625rem !important;
  }

  .me-xxl-2 {
    margin-right: 1.25rem !important;
  }

  .me-xxl-3 {
    margin-right: 2.5rem !important;
  }

  .me-xxl-4 {
    margin-right: 3.75rem !important;
  }

  .me-xxl-5 {
    margin-right: 7.5rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.625rem !important;
  }

  .ms-xxl-2 {
    margin-left: 1.25rem !important;
  }

  .ms-xxl-3 {
    margin-left: 2.5rem !important;
  }

  .ms-xxl-4 {
    margin-left: 3.75rem !important;
  }

  .ms-xxl-5 {
    margin-left: 7.5rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.625rem !important;
  }

  .p-xxl-2 {
    padding: 1.25rem !important;
  }

  .p-xxl-3 {
    padding: 2.5rem !important;
  }

  .p-xxl-4 {
    padding: 3.75rem !important;
  }

  .p-xxl-5 {
    padding: 7.5rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-xxl-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xxl-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxl-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-xxl-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-xxl-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xxl-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxl-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-xxl-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.625rem !important;
  }

  .pt-xxl-2 {
    padding-top: 1.25rem !important;
  }

  .pt-xxl-3 {
    padding-top: 2.5rem !important;
  }

  .pt-xxl-4 {
    padding-top: 3.75rem !important;
  }

  .pt-xxl-5 {
    padding-top: 7.5rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.625rem !important;
  }

  .pe-xxl-2 {
    padding-right: 1.25rem !important;
  }

  .pe-xxl-3 {
    padding-right: 2.5rem !important;
  }

  .pe-xxl-4 {
    padding-right: 3.75rem !important;
  }

  .pe-xxl-5 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.625rem !important;
  }

  .ps-xxl-2 {
    padding-left: 1.25rem !important;
  }

  .ps-xxl-3 {
    padding-left: 2.5rem !important;
  }

  .ps-xxl-4 {
    padding-left: 3.75rem !important;
  }

  .ps-xxl-5 {
    padding-left: 7.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: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*!
 * Bootstrap Utilities v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #A6192E;
}
.link-primary:hover, .link-primary:focus {
  color: #851425;
}

.link-grey {
  color: #F4F4F4;
}
.link-grey:hover, .link-grey:focus {
  color: #f6f6f6;
}

.link-dark-grey {
  color: #646464;
}
.link-dark-grey:hover, .link-dark-grey:focus {
  color: #505050;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 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: #A6192E !important;
}

.border-grey {
  border-color: #F4F4F4 !important;
}

.border-dark-grey {
  border-color: #646464 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.625rem !important;
}

.gap-2 {
  gap: 1.25rem !important;
}

.gap-3 {
  gap: 2.5rem !important;
}

.gap-4 {
  gap: 3.75rem !important;
}

.gap-5 {
  gap: 7.5rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.625rem !important;
}

.m-2 {
  margin: 1.25rem !important;
}

.m-3 {
  margin: 2.5rem !important;
}

.m-4 {
  margin: 3.75rem !important;
}

.m-5 {
  margin: 7.5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.625rem !important;
  margin-left: 0.625rem !important;
}

.mx-2 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-3 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-4 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.mx-5 {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.my-2 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-3 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-4 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.my-5 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.625rem !important;
}

.mt-2 {
  margin-top: 1.25rem !important;
}

.mt-3 {
  margin-top: 2.5rem !important;
}

.mt-4 {
  margin-top: 3.75rem !important;
}

.mt-5 {
  margin-top: 7.5rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.625rem !important;
}

.me-2 {
  margin-right: 1.25rem !important;
}

.me-3 {
  margin-right: 2.5rem !important;
}

.me-4 {
  margin-right: 3.75rem !important;
}

.me-5 {
  margin-right: 7.5rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.625rem !important;
}

.mb-2 {
  margin-bottom: 1.25rem !important;
}

.mb-3 {
  margin-bottom: 2.5rem !important;
}

.mb-4 {
  margin-bottom: 3.75rem !important;
}

.mb-5 {
  margin-bottom: 7.5rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.625rem !important;
}

.ms-2 {
  margin-left: 1.25rem !important;
}

.ms-3 {
  margin-left: 2.5rem !important;
}

.ms-4 {
  margin-left: 3.75rem !important;
}

.ms-5 {
  margin-left: 7.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.625rem !important;
}

.p-2 {
  padding: 1.25rem !important;
}

.p-3 {
  padding: 2.5rem !important;
}

.p-4 {
  padding: 3.75rem !important;
}

.p-5 {
  padding: 7.5rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.625rem !important;
  padding-left: 0.625rem !important;
}

.px-2 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-3 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-4 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.px-5 {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.py-2 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-3 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-4 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.py-5 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.625rem !important;
}

.pt-2 {
  padding-top: 1.25rem !important;
}

.pt-3 {
  padding-top: 2.5rem !important;
}

.pt-4 {
  padding-top: 3.75rem !important;
}

.pt-5 {
  padding-top: 7.5rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.625rem !important;
}

.pe-2 {
  padding-right: 1.25rem !important;
}

.pe-3 {
  padding-right: 2.5rem !important;
}

.pe-4 {
  padding-right: 3.75rem !important;
}

.pe-5 {
  padding-right: 7.5rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.625rem !important;
}

.pb-2 {
  padding-bottom: 1.25rem !important;
}

.pb-3 {
  padding-bottom: 2.5rem !important;
}

.pb-4 {
  padding-bottom: 3.75rem !important;
}

.pb-5 {
  padding-bottom: 7.5rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.625rem !important;
}

.ps-2 {
  padding-left: 1.25rem !important;
}

.ps-3 {
  padding-left: 2.5rem !important;
}

.ps-4 {
  padding-left: 3.75rem !important;
}

.ps-5 {
  padding-left: 7.5rem !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 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-grey {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-grey-rgb), var(--bs-text-opacity)) !important;
}

.text-dark-grey {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-grey-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-grey {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-grey-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark-grey {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-grey-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          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: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.625rem !important;
  }

  .gap-sm-2 {
    gap: 1.25rem !important;
  }

  .gap-sm-3 {
    gap: 2.5rem !important;
  }

  .gap-sm-4 {
    gap: 3.75rem !important;
  }

  .gap-sm-5 {
    gap: 7.5rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.625rem !important;
  }

  .m-sm-2 {
    margin: 1.25rem !important;
  }

  .m-sm-3 {
    margin: 2.5rem !important;
  }

  .m-sm-4 {
    margin: 3.75rem !important;
  }

  .m-sm-5 {
    margin: 7.5rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-sm-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-sm-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-sm-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-sm-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-sm-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-sm-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-sm-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-sm-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.625rem !important;
  }

  .mt-sm-2 {
    margin-top: 1.25rem !important;
  }

  .mt-sm-3 {
    margin-top: 2.5rem !important;
  }

  .mt-sm-4 {
    margin-top: 3.75rem !important;
  }

  .mt-sm-5 {
    margin-top: 7.5rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.625rem !important;
  }

  .me-sm-2 {
    margin-right: 1.25rem !important;
  }

  .me-sm-3 {
    margin-right: 2.5rem !important;
  }

  .me-sm-4 {
    margin-right: 3.75rem !important;
  }

  .me-sm-5 {
    margin-right: 7.5rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.625rem !important;
  }

  .ms-sm-2 {
    margin-left: 1.25rem !important;
  }

  .ms-sm-3 {
    margin-left: 2.5rem !important;
  }

  .ms-sm-4 {
    margin-left: 3.75rem !important;
  }

  .ms-sm-5 {
    margin-left: 7.5rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.625rem !important;
  }

  .p-sm-2 {
    padding: 1.25rem !important;
  }

  .p-sm-3 {
    padding: 2.5rem !important;
  }

  .p-sm-4 {
    padding: 3.75rem !important;
  }

  .p-sm-5 {
    padding: 7.5rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-sm-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-sm-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-sm-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-sm-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-sm-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-sm-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-sm-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-sm-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.625rem !important;
  }

  .pt-sm-2 {
    padding-top: 1.25rem !important;
  }

  .pt-sm-3 {
    padding-top: 2.5rem !important;
  }

  .pt-sm-4 {
    padding-top: 3.75rem !important;
  }

  .pt-sm-5 {
    padding-top: 7.5rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.625rem !important;
  }

  .pe-sm-2 {
    padding-right: 1.25rem !important;
  }

  .pe-sm-3 {
    padding-right: 2.5rem !important;
  }

  .pe-sm-4 {
    padding-right: 3.75rem !important;
  }

  .pe-sm-5 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.625rem !important;
  }

  .ps-sm-2 {
    padding-left: 1.25rem !important;
  }

  .ps-sm-3 {
    padding-left: 2.5rem !important;
  }

  .ps-sm-4 {
    padding-left: 3.75rem !important;
  }

  .ps-sm-5 {
    padding-left: 7.5rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.625rem !important;
  }

  .gap-md-2 {
    gap: 1.25rem !important;
  }

  .gap-md-3 {
    gap: 2.5rem !important;
  }

  .gap-md-4 {
    gap: 3.75rem !important;
  }

  .gap-md-5 {
    gap: 7.5rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.625rem !important;
  }

  .m-md-2 {
    margin: 1.25rem !important;
  }

  .m-md-3 {
    margin: 2.5rem !important;
  }

  .m-md-4 {
    margin: 3.75rem !important;
  }

  .m-md-5 {
    margin: 7.5rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-md-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-md-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-md-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-md-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-md-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-md-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-md-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-md-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.625rem !important;
  }

  .mt-md-2 {
    margin-top: 1.25rem !important;
  }

  .mt-md-3 {
    margin-top: 2.5rem !important;
  }

  .mt-md-4 {
    margin-top: 3.75rem !important;
  }

  .mt-md-5 {
    margin-top: 7.5rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.625rem !important;
  }

  .me-md-2 {
    margin-right: 1.25rem !important;
  }

  .me-md-3 {
    margin-right: 2.5rem !important;
  }

  .me-md-4 {
    margin-right: 3.75rem !important;
  }

  .me-md-5 {
    margin-right: 7.5rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-md-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-md-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-md-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-md-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.625rem !important;
  }

  .ms-md-2 {
    margin-left: 1.25rem !important;
  }

  .ms-md-3 {
    margin-left: 2.5rem !important;
  }

  .ms-md-4 {
    margin-left: 3.75rem !important;
  }

  .ms-md-5 {
    margin-left: 7.5rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.625rem !important;
  }

  .p-md-2 {
    padding: 1.25rem !important;
  }

  .p-md-3 {
    padding: 2.5rem !important;
  }

  .p-md-4 {
    padding: 3.75rem !important;
  }

  .p-md-5 {
    padding: 7.5rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-md-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-md-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-md-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-md-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-md-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-md-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-md-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-md-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.625rem !important;
  }

  .pt-md-2 {
    padding-top: 1.25rem !important;
  }

  .pt-md-3 {
    padding-top: 2.5rem !important;
  }

  .pt-md-4 {
    padding-top: 3.75rem !important;
  }

  .pt-md-5 {
    padding-top: 7.5rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.625rem !important;
  }

  .pe-md-2 {
    padding-right: 1.25rem !important;
  }

  .pe-md-3 {
    padding-right: 2.5rem !important;
  }

  .pe-md-4 {
    padding-right: 3.75rem !important;
  }

  .pe-md-5 {
    padding-right: 7.5rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-md-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-md-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-md-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-md-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.625rem !important;
  }

  .ps-md-2 {
    padding-left: 1.25rem !important;
  }

  .ps-md-3 {
    padding-left: 2.5rem !important;
  }

  .ps-md-4 {
    padding-left: 3.75rem !important;
  }

  .ps-md-5 {
    padding-left: 7.5rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.625rem !important;
  }

  .gap-lg-2 {
    gap: 1.25rem !important;
  }

  .gap-lg-3 {
    gap: 2.5rem !important;
  }

  .gap-lg-4 {
    gap: 3.75rem !important;
  }

  .gap-lg-5 {
    gap: 7.5rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.625rem !important;
  }

  .m-lg-2 {
    margin: 1.25rem !important;
  }

  .m-lg-3 {
    margin: 2.5rem !important;
  }

  .m-lg-4 {
    margin: 3.75rem !important;
  }

  .m-lg-5 {
    margin: 7.5rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-lg-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-lg-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-lg-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-lg-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-lg-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-lg-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-lg-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-lg-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.625rem !important;
  }

  .mt-lg-2 {
    margin-top: 1.25rem !important;
  }

  .mt-lg-3 {
    margin-top: 2.5rem !important;
  }

  .mt-lg-4 {
    margin-top: 3.75rem !important;
  }

  .mt-lg-5 {
    margin-top: 7.5rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.625rem !important;
  }

  .me-lg-2 {
    margin-right: 1.25rem !important;
  }

  .me-lg-3 {
    margin-right: 2.5rem !important;
  }

  .me-lg-4 {
    margin-right: 3.75rem !important;
  }

  .me-lg-5 {
    margin-right: 7.5rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.625rem !important;
  }

  .ms-lg-2 {
    margin-left: 1.25rem !important;
  }

  .ms-lg-3 {
    margin-left: 2.5rem !important;
  }

  .ms-lg-4 {
    margin-left: 3.75rem !important;
  }

  .ms-lg-5 {
    margin-left: 7.5rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.625rem !important;
  }

  .p-lg-2 {
    padding: 1.25rem !important;
  }

  .p-lg-3 {
    padding: 2.5rem !important;
  }

  .p-lg-4 {
    padding: 3.75rem !important;
  }

  .p-lg-5 {
    padding: 7.5rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-lg-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-lg-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-lg-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-lg-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-lg-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-lg-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-lg-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-lg-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.625rem !important;
  }

  .pt-lg-2 {
    padding-top: 1.25rem !important;
  }

  .pt-lg-3 {
    padding-top: 2.5rem !important;
  }

  .pt-lg-4 {
    padding-top: 3.75rem !important;
  }

  .pt-lg-5 {
    padding-top: 7.5rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.625rem !important;
  }

  .pe-lg-2 {
    padding-right: 1.25rem !important;
  }

  .pe-lg-3 {
    padding-right: 2.5rem !important;
  }

  .pe-lg-4 {
    padding-right: 3.75rem !important;
  }

  .pe-lg-5 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.625rem !important;
  }

  .ps-lg-2 {
    padding-left: 1.25rem !important;
  }

  .ps-lg-3 {
    padding-left: 2.5rem !important;
  }

  .ps-lg-4 {
    padding-left: 3.75rem !important;
  }

  .ps-lg-5 {
    padding-left: 7.5rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.625rem !important;
  }

  .gap-xl-2 {
    gap: 1.25rem !important;
  }

  .gap-xl-3 {
    gap: 2.5rem !important;
  }

  .gap-xl-4 {
    gap: 3.75rem !important;
  }

  .gap-xl-5 {
    gap: 7.5rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.625rem !important;
  }

  .m-xl-2 {
    margin: 1.25rem !important;
  }

  .m-xl-3 {
    margin: 2.5rem !important;
  }

  .m-xl-4 {
    margin: 3.75rem !important;
  }

  .m-xl-5 {
    margin: 7.5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-xl-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xl-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xl-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-xl-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-xl-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xl-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xl-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-xl-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.625rem !important;
  }

  .mt-xl-2 {
    margin-top: 1.25rem !important;
  }

  .mt-xl-3 {
    margin-top: 2.5rem !important;
  }

  .mt-xl-4 {
    margin-top: 3.75rem !important;
  }

  .mt-xl-5 {
    margin-top: 7.5rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.625rem !important;
  }

  .me-xl-2 {
    margin-right: 1.25rem !important;
  }

  .me-xl-3 {
    margin-right: 2.5rem !important;
  }

  .me-xl-4 {
    margin-right: 3.75rem !important;
  }

  .me-xl-5 {
    margin-right: 7.5rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.625rem !important;
  }

  .ms-xl-2 {
    margin-left: 1.25rem !important;
  }

  .ms-xl-3 {
    margin-left: 2.5rem !important;
  }

  .ms-xl-4 {
    margin-left: 3.75rem !important;
  }

  .ms-xl-5 {
    margin-left: 7.5rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.625rem !important;
  }

  .p-xl-2 {
    padding: 1.25rem !important;
  }

  .p-xl-3 {
    padding: 2.5rem !important;
  }

  .p-xl-4 {
    padding: 3.75rem !important;
  }

  .p-xl-5 {
    padding: 7.5rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-xl-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xl-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xl-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-xl-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-xl-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xl-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xl-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-xl-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.625rem !important;
  }

  .pt-xl-2 {
    padding-top: 1.25rem !important;
  }

  .pt-xl-3 {
    padding-top: 2.5rem !important;
  }

  .pt-xl-4 {
    padding-top: 3.75rem !important;
  }

  .pt-xl-5 {
    padding-top: 7.5rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.625rem !important;
  }

  .pe-xl-2 {
    padding-right: 1.25rem !important;
  }

  .pe-xl-3 {
    padding-right: 2.5rem !important;
  }

  .pe-xl-4 {
    padding-right: 3.75rem !important;
  }

  .pe-xl-5 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.625rem !important;
  }

  .ps-xl-2 {
    padding-left: 1.25rem !important;
  }

  .ps-xl-3 {
    padding-left: 2.5rem !important;
  }

  .ps-xl-4 {
    padding-left: 3.75rem !important;
  }

  .ps-xl-5 {
    padding-left: 7.5rem !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: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.625rem !important;
  }

  .gap-xxl-2 {
    gap: 1.25rem !important;
  }

  .gap-xxl-3 {
    gap: 2.5rem !important;
  }

  .gap-xxl-4 {
    gap: 3.75rem !important;
  }

  .gap-xxl-5 {
    gap: 7.5rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.625rem !important;
  }

  .m-xxl-2 {
    margin: 1.25rem !important;
  }

  .m-xxl-3 {
    margin: 2.5rem !important;
  }

  .m-xxl-4 {
    margin: 3.75rem !important;
  }

  .m-xxl-5 {
    margin: 7.5rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-xxl-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xxl-3 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxl-4 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-xxl-5 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-xxl-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xxl-3 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxl-4 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-xxl-5 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.625rem !important;
  }

  .mt-xxl-2 {
    margin-top: 1.25rem !important;
  }

  .mt-xxl-3 {
    margin-top: 2.5rem !important;
  }

  .mt-xxl-4 {
    margin-top: 3.75rem !important;
  }

  .mt-xxl-5 {
    margin-top: 7.5rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.625rem !important;
  }

  .me-xxl-2 {
    margin-right: 1.25rem !important;
  }

  .me-xxl-3 {
    margin-right: 2.5rem !important;
  }

  .me-xxl-4 {
    margin-right: 3.75rem !important;
  }

  .me-xxl-5 {
    margin-right: 7.5rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.625rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 3.75rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.625rem !important;
  }

  .ms-xxl-2 {
    margin-left: 1.25rem !important;
  }

  .ms-xxl-3 {
    margin-left: 2.5rem !important;
  }

  .ms-xxl-4 {
    margin-left: 3.75rem !important;
  }

  .ms-xxl-5 {
    margin-left: 7.5rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.625rem !important;
  }

  .p-xxl-2 {
    padding: 1.25rem !important;
  }

  .p-xxl-3 {
    padding: 2.5rem !important;
  }

  .p-xxl-4 {
    padding: 3.75rem !important;
  }

  .p-xxl-5 {
    padding: 7.5rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-xxl-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xxl-3 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxl-4 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-xxl-5 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-xxl-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xxl-3 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxl-4 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-xxl-5 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.625rem !important;
  }

  .pt-xxl-2 {
    padding-top: 1.25rem !important;
  }

  .pt-xxl-3 {
    padding-top: 2.5rem !important;
  }

  .pt-xxl-4 {
    padding-top: 3.75rem !important;
  }

  .pt-xxl-5 {
    padding-top: 7.5rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.625rem !important;
  }

  .pe-xxl-2 {
    padding-right: 1.25rem !important;
  }

  .pe-xxl-3 {
    padding-right: 2.5rem !important;
  }

  .pe-xxl-4 {
    padding-right: 3.75rem !important;
  }

  .pe-xxl-5 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 3.75rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 7.5rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.625rem !important;
  }

  .ps-xxl-2 {
    padding-left: 1.25rem !important;
  }

  .ps-xxl-3 {
    padding-left: 2.5rem !important;
  }

  .ps-xxl-4 {
    padding-left: 3.75rem !important;
  }

  .ps-xxl-5 {
    padding-left: 7.5rem !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: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
.btn, .royal-idea_intro a {
  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: 15px 25px;
  font-size: 1rem;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .btn, .royal-idea_intro a {
    transition: none;
  }
}
.btn:hover, .royal-idea_intro a:hover {
  color: #212529;
}
.btn-check:focus + .btn, .royal-idea_intro .btn-check:focus + a, .btn:focus, .royal-idea_intro a:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled, .royal-idea_intro a:disabled, .btn.disabled, .royal-idea_intro a.disabled, fieldset:disabled .btn, fieldset:disabled .royal-idea_intro a, .royal-idea_intro fieldset:disabled a {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary, .royal-idea_intro a {
  color: #fff;
  background-color: #A6192E;
  border-color: #A6192E;
}
.btn-primary:hover, .royal-idea_intro a:hover {
  color: #fff;
  background-color: #8d1527;
  border-color: #851425;
}
.btn-check:focus + .btn-primary, .royal-idea_intro .btn-check:focus + a, .btn-primary:focus, .royal-idea_intro a:focus {
  color: #fff;
  background-color: #8d1527;
  border-color: #851425;
  box-shadow: 0 0 0 0.25rem rgba(179, 60, 77, 0.5);
}
.btn-check:checked + .btn-primary, .royal-idea_intro .btn-check:checked + a, .btn-check:active + .btn-primary, .royal-idea_intro .btn-check:active + a, .btn-primary:active, .royal-idea_intro a:active, .btn-primary.active, .royal-idea_intro a.active, .show > .btn-primary.dropdown-toggle, .royal-idea_intro .show > a.dropdown-toggle {
  color: #fff;
  background-color: #851425;
  border-color: #7d1323;
}
.btn-check:checked + .btn-primary:focus, .royal-idea_intro .btn-check:checked + a:focus, .btn-check:active + .btn-primary:focus, .royal-idea_intro .btn-check:active + a:focus, .btn-primary:active:focus, .royal-idea_intro a:active:focus, .btn-primary.active:focus, .royal-idea_intro a.active:focus, .show > .btn-primary.dropdown-toggle:focus, .royal-idea_intro .show > a.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(179, 60, 77, 0.5);
}
.btn-primary:disabled, .royal-idea_intro a:disabled, .btn-primary.disabled, .royal-idea_intro a.disabled {
  color: #fff;
  background-color: #A6192E;
  border-color: #A6192E;
}

.btn-grey {
  color: #000;
  background-color: #F4F4F4;
  border-color: #F4F4F4;
}
.btn-grey:hover {
  color: #000;
  background-color: #f6f6f6;
  border-color: whitesmoke;
}
.btn-check:focus + .btn-grey, .btn-grey:focus {
  color: #000;
  background-color: #f6f6f6;
  border-color: whitesmoke;
  box-shadow: 0 0 0 0.25rem rgba(207, 207, 207, 0.5);
}
.btn-check:checked + .btn-grey, .btn-check:active + .btn-grey, .btn-grey:active, .btn-grey.active, .show > .btn-grey.dropdown-toggle {
  color: #000;
  background-color: #f6f6f6;
  border-color: whitesmoke;
}
.btn-check:checked + .btn-grey:focus, .btn-check:active + .btn-grey:focus, .btn-grey:active:focus, .btn-grey.active:focus, .show > .btn-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(207, 207, 207, 0.5);
}
.btn-grey:disabled, .btn-grey.disabled {
  color: #000;
  background-color: #F4F4F4;
  border-color: #F4F4F4;
}

.btn-dark-grey {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}
.btn-dark-grey:hover {
  color: #fff;
  background-color: #555555;
  border-color: #505050;
}
.btn-check:focus + .btn-dark-grey, .btn-dark-grey:focus {
  color: #fff;
  background-color: #555555;
  border-color: #505050;
  box-shadow: 0 0 0 0.25rem rgba(123, 123, 123, 0.5);
}
.btn-check:checked + .btn-dark-grey, .btn-check:active + .btn-dark-grey, .btn-dark-grey:active, .btn-dark-grey.active, .show > .btn-dark-grey.dropdown-toggle {
  color: #fff;
  background-color: #505050;
  border-color: #4b4b4b;
}
.btn-check:checked + .btn-dark-grey:focus, .btn-check:active + .btn-dark-grey:focus, .btn-dark-grey:active:focus, .btn-dark-grey.active:focus, .show > .btn-dark-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(123, 123, 123, 0.5);
}
.btn-dark-grey:disabled, .btn-dark-grey.disabled {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}

.btn-outline-primary {
  color: #A6192E;
  border-color: #A6192E;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #A6192E;
  border-color: #A6192E;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(166, 25, 46, 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: #fff;
  background-color: #A6192E;
  border-color: #A6192E;
}
.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 {
  box-shadow: 0 0 0 0.25rem rgba(166, 25, 46, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #A6192E;
  background-color: transparent;
}

.btn-outline-grey {
  color: #F4F4F4;
  border-color: #F4F4F4;
}
.btn-outline-grey:hover {
  color: #000;
  background-color: #F4F4F4;
  border-color: #F4F4F4;
}
.btn-check:focus + .btn-outline-grey, .btn-outline-grey:focus {
  box-shadow: 0 0 0 0.25rem rgba(244, 244, 244, 0.5);
}
.btn-check:checked + .btn-outline-grey, .btn-check:active + .btn-outline-grey, .btn-outline-grey:active, .btn-outline-grey.active, .btn-outline-grey.dropdown-toggle.show {
  color: #000;
  background-color: #F4F4F4;
  border-color: #F4F4F4;
}
.btn-check:checked + .btn-outline-grey:focus, .btn-check:active + .btn-outline-grey:focus, .btn-outline-grey:active:focus, .btn-outline-grey.active:focus, .btn-outline-grey.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(244, 244, 244, 0.5);
}
.btn-outline-grey:disabled, .btn-outline-grey.disabled {
  color: #F4F4F4;
  background-color: transparent;
}

.btn-outline-dark-grey {
  color: #646464;
  border-color: #646464;
}
.btn-outline-dark-grey:hover {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}
.btn-check:focus + .btn-outline-dark-grey, .btn-outline-dark-grey:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 100, 100, 0.5);
}
.btn-check:checked + .btn-outline-dark-grey, .btn-check:active + .btn-outline-dark-grey, .btn-outline-dark-grey:active, .btn-outline-dark-grey.active, .btn-outline-dark-grey.dropdown-toggle.show {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}
.btn-check:checked + .btn-outline-dark-grey:focus, .btn-check:active + .btn-outline-dark-grey:focus, .btn-outline-dark-grey:active:focus, .btn-outline-dark-grey.active:focus, .btn-outline-dark-grey.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 100, 100, 0.5);
}
.btn-outline-dark-grey:disabled, .btn-outline-dark-grey.disabled {
  color: #646464;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0a58ca;
}
.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;
}

.r-tabs .r-tabs-nav {
  margin: 0;
  padding: 0;
}

.r-tabs .r-tabs-tab {
  display: inline-block;
  margin: 0;
  list-style: none;
}

.r-tabs .r-tabs-panel {
  padding: 15px;
  display: none;
}

.r-tabs .r-tabs-accordion-title {
  display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
  display: block;
}

/* Accordion responsive breakpoint */
@media only screen and (max-width: 768px) {
  .r-tabs .r-tabs-nav {
    display: none;
  }

  .r-tabs .r-tabs-accordion-title {
    display: block;
  }
}
/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  overflow: hidden;
}

.featherlight {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background: #333;
  background: rgba(0, 0, 0, 0);
}

.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8);
}

.featherlight:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content {
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  background: #fff;
  cursor: auto;
  white-space: normal;
}

.featherlight .featherlight-inner {
  display: block;
}

.featherlight link.featherlight-inner, .featherlight script.featherlight-inner, .featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  line-height: 1.5625rem;
  width: 25px;
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: 0;
  padding: 0;
}

.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  border: 0;
}

.featherlight * {
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.addtoany_shortcode {
  display: inline-block;
}

#alm-filters-recipefilters .alm-filter--inner ul, #alm-filters-postfilter .alm-filter--inner ul {
  text-align: center;
  padding: 0;
}
#alm-filters-recipefilters .alm-filter--radio, #alm-filters-postfilter .alm-filter--radio {
  list-style: none;
  display: inline-block;
}
#alm-filters-recipefilters .alm-filter--link, #alm-filters-postfilter .alm-filter--link {
  border: 1px solid transparent;
  padding: 0.5rem 2rem;
  text-align: center;
  color: #000;
  font-weight: bold;
  text-transform: uppercase;
  outline: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  font-family: "TradeGothicBold", ​sans-serif;
}
#alm-filters-recipefilters .alm-filter--link.active, #alm-filters-postfilter .alm-filter--link.active {
  border-color: #A6192E;
  color: #A6192E;
}
#alm-filters-recipefilters .alm-btn-wrap, #alm-filters-postfilter .alm-btn-wrap {
  display: inline-block;
  margin: auto;
}

.ajax-load-more-wrap {
  text-align: center;
}

.alm-load-more-btn:disabled {
  display: none;
}

.alm-btn-wrap {
  text-align: center;
}

#alm-filters-ideafilters ul {
  padding: 0px;
}
#alm-filters-ideafilters .alm-filter li, #alm-filters-ideafilters .alm-filter select {
  padding: 10px;
  list-style: none;
  margin: 5px 0px;
  content: "";
  line-height: 1;
  display: block;
  clear: both;
  position: relative;
  background-color: #F4F4F4;
  font-weight: bold;
}
@media (min-width: 768px) {
  #alm-filters-ideafilters .alm-filter li, #alm-filters-ideafilters .alm-filter select {
    display: inline-block;
    margin: 0 0 5px 5px;
  }
}
#alm-filters-ideafilters .alm-filter select {
  border: none;
  padding: 11.75px 28px 11.75px 11.75px;
  line-height: 1.45;
  font-size: 0.9375rem;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.916 9.958'%3e%3cpath d='M17.207.707 8.958 8.958.707.707' fill='none' stroke='%23666' stroke-linejoin='round' stroke-width='2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  background-color: #F4F4F4;
  color: #666;
}
@media (min-width: 768px) {
  #alm-filters-ideafilters .alm-filter select {
    width: unset;
  }
}
@media (min-width: 992px) {
  #alm-filters-ideafilters .alm-filter select {
    width: 100%;
  }
}
#alm-filters-ideafilters .alm-filter--inner {
  position: relative;
}
#alm-filters-ideafilters .alm-filter--search {
  flex: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  #alm-filters-ideafilters .alm-filter--search {
    flex: 0 0 100%;
  }
}
@media (min-width: 1200px) {
  #alm-filters-ideafilters .alm-filter--search {
    flex: 1;
  }
}
#alm-filters-ideafilters .alm-filter--search button {
  position: absolute;
  right: 10px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.066 20.099'%3e%3cpath data-name='Path 245' d='m20.067 18.544-6.537-6.537a7.518 7.518 0 0 0-.72-9.781A7.773 7.773 0 0 0 9.856.407a7.408 7.408 0 0 0-7.661 1.819 7.506 7.506 0 0 0 9.781 11.335l6.537 6.537ZM3.75 11.287a5.307 5.307 0 1 1 7.506 0 5.313 5.313 0 0 1-7.506 0' fill='%23a6192e'/%3e%3c/svg%3e");
  background-size: 20px;
  background-position: center right 10px;
  background-repeat: no-repeat;
  font-size: 0;
  width: 50px;
  height: 25px;
  border: none;
  border-left: 1px solid #646464;
  background-color: transparent;
}
#alm-filters-ideafilters .alm-filter--checkbox {
  display: inline-block;
  background-color: #F4F4F4;
  color: #1C1C1C;
  padding: 10px;
  margin-right: 5px;
}
#alm-filters-ideafilters .alm-filter--sort {
  flex: 1;
  flex-grow: 1;
}
@media (min-width: 768px) {
  #alm-filters-ideafilters .alm-filter--sort {
    flex: unset;
    flex-grow: unset;
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  #alm-filters-ideafilters .alm-filter--sort {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  #alm-filters-ideafilters .alm-filter--sort {
    flex: unset;
  }
}
#alm-filters-ideafilters .alm-filter--link {
  display: block;
  padding: 0 10px 0 28px;
  min-height: 24px;
  line-height: 1.45;
  font-size: 0.9375rem;
  position: relative;
  text-decoration: none;
  color: #666;
  cursor: pointer;
}
#alm-filters-ideafilters .alm-filter--link.field-checkbox:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
#alm-filters-ideafilters .alm-filter--link:after {
  position: absolute;
  display: block;
  content: "";
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
#alm-filters-ideafilters .alm-filter--link:before {
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ccc;
  display: block;
  content: "";
  transition: all 0.15s ease;
  box-shadow: 0 0 0 1px transparent;
}
#alm-filters-ideafilters .alm-filter--link:focus {
  color: #222;
  outline: none;
}
#alm-filters-ideafilters .alm-filter--link:focus:before {
  border-color: #898989;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
#alm-filters-ideafilters .alm-filter--link.active {
  color: #222;
}
#alm-filters-ideafilters .alm-filter--link.active.field-checkbox:before {
  border-color: #898989;
  background-color: #898989;
  border-radius: 2px;
}
#alm-filters-ideafilters .alm-filter--link.active.field-checkbox:after {
  visibility: visible;
  opacity: 1;
}
#alm-filters-ideafilters .alm-filter--text-wrap {
  position: relative;
}
#alm-filters-ideafilters .alm-filter--textfield {
  width: 100%;
  background: #F4F4F4;
  border-radius: 20px;
  border: none;
  padding: 10px;
}
#alm-filters-ideafilters.alm-filters-container {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  #alm-filters-ideafilters.alm-filters-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.featherlight .featherlight-caption {
  position: absolute;
  bottom: -40px;
  left: 50;
  width: 100%;
  text-align: center;
}
.featherlight .featherlight-caption a {
  color: #fff;
  text-transform: uppercase;
}
.featherlight .featherlight-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 25PX;
  height: 25PX;
  overflow: hidden;
  text-indent: -9999PX;
  background: transparent;
}
.featherlight .featherlight-close:before, .featherlight .featherlight-close:after {
  content: "";
  width: 100%;
  height: 2PX;
  position: absolute;
  top: 50%;
  margin-top: -1PX;
  left: 0;
  background: #fff;
}
.featherlight .featherlight-close:before {
  transform: rotate(45deg);
}
.featherlight .featherlight-close:after {
  transform: rotate(-45deg);
}
.featherlight .featherlight-content {
  position: relative;
  height: 0;
  overflow: visible;
  background: transparent;
  width: 100vw;
  height: 56.25vw;
}
@media (min-width: 768px) {
  .featherlight .featherlight-content {
    width: 50vw;
    height: 28.125vw;
  }
}
.featherlight .featherlight-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.featherlight .featherlight-content img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
.featherlight-search .featherlight-content .search-form_container__navigation {
  display: flex;
}

.carousel-media .slick-track {
  display: flex;
  position: relative;
}
.carousel-media .slick-slide {
  height: auto;
  padding: 1rem 2rem;
  text-align: center;
  outline: none;
}
.carousel-media .slick-slide > div, .carousel-media .slick-slide > div > img {
  height: 100%;
}
.carousel-media .slick-slide > div > img {
  display: block;
  margin-bottom: 2rem;
  opacity: 0.2;
  transition: opacity 0.25s ease-in-out;
}
.carousel-media .slick-slide.slick-active img {
  opacity: 1;
}
.carousel-media .slick-arrow {
  position: absolute;
  z-index: 20;
  top: 40%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.carousel-media .slick-prev {
  left: 18%;
}
@media (min-width: 768px) {
  .carousel-media .slick-prev {
    left: 35%;
  }
}
.carousel-media .slick-next {
  right: 18%;
}
@media (min-width: 768px) {
  .carousel-media .slick-next {
    right: 35%;
  }
}
.carousel-media .arrow-btn {
  position: relative;
  width: 25px;
  height: 25px;
  display: block;
  outline: none;
  cursor: pointer;
}
.carousel-media .arrow-btn:before, .carousel-media .arrow-btn:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background-color: #000;
  display: block;
  transform-origin: right;
  transition: background-color 0.25s ease-in-out;
  outline: none;
}
.carousel-media .arrow-btn:before {
  transform: rotate(45deg);
  top: 9px;
}
.carousel-media .arrow-btn:after {
  transform: rotate(-45deg);
  top: -9px;
}
.carousel-media .arrow-btn__left {
  transform: rotate(180deg);
}
.carousel-media .arrow-btn:hover:before, .carousel-media .arrow-btn:hover:after {
  background-color: #A6192E;
}
.carousel-hero .slick-track, .carousel-post .slick-track {
  display: flex;
}
.carousel-hero .slick-slide, .carousel-post .slick-slide {
  padding: 0;
  height: auto;
}
.carousel-hero .slick-slide > div, .carousel-hero .slick-slide a, .carousel-post .slick-slide > div, .carousel-post .slick-slide a {
  height: 100%;
}
.carousel-hero .slick-dots, .carousel-post .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 10px;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media (min-width: 768px) {
  .carousel-hero .slick-dots, .carousel-post .slick-dots {
    top: 0;
    bottom: unset;
    left: unset;
    right: 0;
    width: auto;
    height: 100%;
    padding: 0 40px;
    flex-direction: column;
    justify-content: center;
  }
}
.carousel-hero .slick-dots li, .carousel-post .slick-dots li {
  list-style: none;
  margin: 0 5px;
}
@media (min-width: 768px) {
  .carousel-hero .slick-dots li, .carousel-post .slick-dots li {
    margin: 0;
  }
}
.carousel-hero .slick-dots li button, .carousel-post .slick-dots li button {
  background-color: #fff;
  font-size: 0;
  border: 1px solid transparent;
  padding: 4px;
  border-radius: 10px;
}
.carousel-hero .slick-dots li.slick-active, .carousel-post .slick-dots li.slick-active {
  background: transparent;
  color: #fff;
}
.carousel-hero .slick-dots li.slick-active button, .carousel-post .slick-dots li.slick-active button {
  background-color: transparent;
  border: 1px solid #fff;
  transform: scale(1.5);
}
.carousel-text-image .carousel {
  position: relative;
}
.carousel-text-image .slick-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 0px;
  bottom: 0;
}
.carousel-text-image .slick-dots li {
  list-style: none;
  display: inline-block;
  margin: 0px 5px;
}
.carousel-text-image .slick-dots li button {
  background-color: #1C1C1C;
  font-size: 0;
  border: 1px solid transparent;
  padding: 4px;
  border-radius: 10px;
}
.carousel-text-image .slick-dots li.slick-active {
  background: transparent;
}
.carousel-text-image .slick-dots li.slick-active button {
  background-color: transparent;
  border: 1px solid #1C1C1C;
  transform: scale(1.5);
}
@media (min-width: 768px) {
  .carousel-text-image .slick-dots {
    top: 50%;
    right: 40px;
    width: auto;
    text-align: center;
    bottom: auto;
  }
  .carousel-text-image .slick-dots li {
    display: block;
  }
}
.carousel-text-image .slick-track {
  display: flex;
}
.carousel-text-image .slick-slide {
  height: auto;
}
.carousel-text-image .slick-slide > div {
  height: 100%;
}

.wpcf7-form-control:not(.wpcf7-submit) {
  display: block;
  width: 100%;
}

.wpcf7-text, .wpcf7-textarea {
  line-height: 1.8125rem;
  background-color: #F4F4F4;
  border: none;
}

.wpcf7 label:not(.wpcf7-acceptance label) {
  font-family: trade-gothic-next, sans-serif;
  font-weight: 700;
  color: #646464;
  margin-bottom: 8px;
}

.wpcf7-required {
  display: inline-block;
}
.wpcf7-required:after {
  content: "*";
  display: inline-block;
  color: #A6192E;
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-list-item-label:before {
  content: "*" !important;
  margin-left: 10px;
  display: inline-block;
  color: #A6192E;
}

.royal-idea-form .wpcf7 {
  max-width: 500px;
  margin: auto;
}
.royal-idea-form .wpcf7 select {
  width: 300px;
  background: #A6192E;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.916 9.958'%3e%3cpath d='M17.207.707 8.958 8.958.707.707' fill='none' stroke='white' stroke-linejoin='round' stroke-width='2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
  margin: auto;
}
.royal-idea-form .wpcf7 label:not(.wpcf7-acceptance label) {
  display: block;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}
.royal-idea-form .wpcf7 input[type=text], .royal-idea-form .wpcf7 input[type=email] {
  padding: 10px;
  height: 50px;
}
.royal-idea-form .wpcf7 textarea {
  padding: 10px;
}

article h2 {
  text-transform: uppercase;
}
article h2:not(:first-of-type), article h3 {
  margin: 60px 0 20px 0;
}
article ul, article ol {
  margin-bottom: 30px;
  padding: 0px;
}
article li {
  list-style: inside;
  margin: 0 0 0.5em 0;
}
article .career-meta h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

body {
  font-family: trade-gothic-next, sans-serif;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1C1C1C;
}

p {
  line-height: 1.5;
  margin-bottom: 30px;
}

.btn, .royal-idea_intro a {
  text-transform: uppercase;
  transition: transform 0.25s ease-in-out;
  display: inline-block;
}
.btn:hover .btn:not(.btn-arrow), .royal-idea_intro a:hover .btn:not(.btn-arrow), .btn:hover .royal-idea_intro a:not(.btn-arrow), .royal-idea_intro .btn:hover a:not(.btn-arrow), .royal-idea_intro a:hover a:not(.btn-arrow) {
  transform: scale(1.05);
}
.btn-arrow {
  position: relative;
  display: inline-block;
}
.btn-arrow:hover:after {
  transform: translateX(6px);
}
.btn-arrow:after {
  content: "";
  position: relative;
  top: calc(50% - 6px);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M8 0 6.545 1.455l5.506 5.506H0v2.078h12.052l-5.507 5.506L8 16l8-8Z' fill='%231c1c1c'/%3e%3c/svg%3e");
  background-size: 100% auto;
  transition: transform 0.25s ease-in-out;
  margin-left: 16px;
}
.btn-arrow-white {
  filter: brightness(100);
}
.btn-royal, .royal-idea_intro a {
  font-weight: bold;
}
.btn-idea {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M8 0 6.545 1.455l5.506 5.506H0v2.078h12.052l-5.507 5.506L8 16l8-8Z' fill='%231c1c1c'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 10px;
  background-color: #fff;
}
.btn-heart-container {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.btn-primary, .royal-idea_intro a {
  color: #fff !important;
}

.bg-grey {
  --bs-bg-opacity: 1;
  background-color: #F4F4F4;
}

@font-face {
  font-family: "TradeGothic";
  src: url("../fonts/TradeGothic.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/TradeGothic.eot?#iefix") format("embedded-opentype"), url("../fonts/TradeGothic.woff") format("woff"), url("../fonts/TradeGothic.ttf") format("truetype"), url("../fonts/TradeGothic.svg#TradeGothic") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}
/* Webfont: TradeGothic-Bold */
@font-face {
  font-family: "TradeGothicBold";
  src: url("../fonts/TradeGothic-Bold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/TradeGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/TradeGothic-Bold.woff") format("woff"), url("../fonts/TradeGothic-Bold.ttf") format("truetype"), url("../fonts/TradeGothic-Bold.svg#TradeGothic-Bold") format("svg");
  /* Legacy iOS */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
/* open-sans-300 - latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans-v29-latin-ext_latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v29-latin-ext_latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v29-latin-ext_latin-300.woff2") format("woff2"), url("../fonts/open-sans-v29-latin-ext_latin-300.woff") format("woff"), url("../fonts/open-sans-v29-latin-ext_latin-300.ttf") format("truetype"), url("../fonts/open-sans-v29-latin-ext_latin-300.svg#OpenSans") format("svg");
  /* Legacy iOS */
}
.icon {
  display: inline-block;
  line-height: 1;
  width: 22px;
  height: 22px;
}
.icon-search {
  width: 20px;
  height: 20px;
}
.icon-footer-logo {
  width: 71px;
  height: 100px;
}
.icon-facebook, .icon-instagram, .icon-youtube {
  transition: transform 0.25s ease-in-out;
}
.icon-facebook:hover, .icon-instagram:hover, .icon-youtube:hover {
  transform: scale(1.2);
}
.icon-signature {
  width: 200px;
  height: 34px;
  margin: 40px auto 20px auto;
}
.icon-underline {
  width: 205px;
  height: 36.42px;
  margin: auto;
}
@media (min-width: 768px) {
  .icon-underline {
    width: 330px;
    height: 36.42px;
  }
}
.icon-btn-arrow-right {
  width: 20px;
  height: 1rem;
}
.icon-btn-arrow-right svg {
  margin-top: -2px;
}
.icon-btn-heart {
  background-size: 20px;
  background-position: center right 10px;
  background-repeat: no-repeat;
}
.icon-btn-heart-outline {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.244 22.184'%3e%3cg data-name='Group 9' transform='translate(-1423.51 -36.684)'%3e%3cg data-name='Group 8'%3e%3cpath data-name='Path 38' d='M1436.16 41.262a6.118 6.118 0 0 1 3.16-2.953 5.838 5.838 0 0 1 6.345 1.054 5.9 5.9 0 0 1 1.78 6.446 13.732 13.732 0 0 1-3.212 5.335 39.239 39.239 0 0 1-7.7 6.575.827.827 0 0 1-.744.013 36.747 36.747 0 0 1-8.765-7.87 11.475 11.475 0 0 1-2.287-4.524 6.078 6.078 0 0 1 11.112-4.568c.078.121.151.242.311.492Z' fill='none' stroke='%23a6192e' stroke-miterlimit='10' stroke-width='2'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-position: center 2px;
  background-repeat: no-repeat;
  margin-right: 5px;
}
.icon-btn-heart-outline.recorded {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.235 21.163'%3e%3cg data-name='Group 9' transform='translate(-1424.015 -37.196)'%3e%3cg data-name='Group 8'%3e%3cpath data-name='Path 38' d='M1436.16 41.262a6.118 6.118 0 0 1 3.16-2.953 5.838 5.838 0 0 1 6.345 1.054 5.9 5.9 0 0 1 1.78 6.446 13.732 13.732 0 0 1-3.212 5.335 39.239 39.239 0 0 1-7.7 6.575.827.827 0 0 1-.744.013 36.747 36.747 0 0 1-8.765-7.87 11.475 11.475 0 0 1-2.287-4.524 6.078 6.078 0 0 1 11.112-4.568c.078.121.151.242.311.492Z' fill='%23a6192e' stroke='%23a6192e' stroke-miterlimit='10'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
.icon-crown {
  width: 64px;
  height: 52px;
}
.icon-crown-white {
  filter: invert(100%) sepia(12%) saturate(7500%) hue-rotate(228deg) brightness(118%) contrast(112%);
}
.icon-crown-gold {
  filter: invert(100%) sepia(19%) saturate(7059%) hue-rotate(311deg) brightness(89%) contrast(85%);
}
.icon-sustainability-sbti, .icon-sustainability-value-chain, .icon-sustainability-co2 {
  width: 80px;
  height: 80px;
}
.icon svg {
  width: 100%;
  height: 100%;
}
.icon-trademark {
  vertical-align: text-top;
  font-size: 0.5em;
}

.page-intro h1 {
  font-family: "TradeGothicBold", ​sans-serif;
  font-size: 2.625rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}
.page-intro a {
  color: #A6192E;
}
.page-intro p {
  margin: 0 0 30px 0;
}

.link {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.link-arrow {
  position: relative;
  display: inline-block;
}
.link-arrow:after {
  content: "";
  position: absolute;
  right: -40px;
  top: calc(50% - 6px);
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M8 0 6.545 1.455l5.506 5.506H0v2.078h12.052l-5.507 5.506L8 16l8-8Z' fill='%231c1c1c'/%3e%3c/svg%3e");
  background-size: 100% auto;
  transition: transform 0.25s ease-in-out;
}

.section-options_title {
  color: #1C1C1C;
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-size: 2.5rem;
}

.r-tabs-panel table {
  margin: 30px auto;
  width: 80%;
}
.r-tabs-panel table tr:nth-child(odd) {
  background: #F4F4F4;
}
.r-tabs-panel table td {
  padding: 4px;
}
.r-tabs-panel table td:nth-child(even) {
  text-align: right;
}
.r-tabs-panel table td:nth-child(odd) {
  text-align: left;
}

.h1 {
  font-family: "TradeGothicBold", ​sans-serif;
  font-size: 2.625rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  color: #1C1C1C;
}

h1, h2, h3 {
  color: #1C1C1C;
  font-family: "TradeGothicBold", ​sans-serif;
}

a, a:hover {
  color: #1C1C1C;
}

.footnotes {
  font-size: 0.8rem;
}

.signature-name {
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
  color: #A6192E;
}
.signature-link {
  font-weight: bold;
  color: #A6192E;
}
.signature-link:hover {
  color: #A6192E;
}

.divider-bottom {
  position: relative;
}
.divider-bottom:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  left: 0;
  width: 100%;
  background: #CFAE78;
}

.bg-horizontal-line {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) calc(50% - 1px), silver 50%, rgba(0, 0, 0, 0) calc(50% + 1px));
}
.bg-king {
  background-image: url("../images/bg-king.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -250px top;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.mh-356px {
  min-height: 356px;
}

.mh-400px {
  min-height: 400px;
}

.card-square_title:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M8 0 6.545 1.455l5.506 5.506H0v2.078h12.052l-5.507 5.506L8 16l8-8Z' fill='%231c1c1c'/%3e%3c/svg%3e");
  background-color: transparent;
}
.card-square, .card-column, .card-idea {
  display: block;
  text-decoration: none;
  background-color: #F4F4F4;
  transition: all 0.25s ease-in-out;
}
.card-square_image, .card-column_image, .card-idea_image {
  height: 250px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card-square_image, .card-column_image, .card-idea_image {
    height: 300px;
  }
}
.card-square_image img, .card-column_image img, .card-idea_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  transition: all 0.25s ease-in-out;
}
.card-square_content, .card-column_content, .card-idea_content {
  padding: 25px 30px;
}
@media (min-width: 768px) {
  .card-square_content, .card-column_content, .card-idea_content {
    padding: 40px 30px;
  }
}
.card-square_title, .card-column_title, .card-idea_title {
  margin: 0;
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
  font-size: 1.5rem;
  position: relative;
  color: #1C1C1C;
  word-break: break-word;
}
.card-square:hover, .card-column:hover {
  background-color: #A6192E;
}
.card-square:hover img, .card-column:hover img {
  transform: scale(1.05);
}
.card-square:hover p, .card-column:hover p {
  color: #fff;
}
.card-square:hover p:after, .card-column:hover p:after {
  filter: brightness(100);
}
.card-column_excerpt {
  color: #646464;
}
.card-column_link {
  color: #1C1C1C;
}
.card-product {
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.card-product_title {
  color: #000;
  text-transform: uppercase;
  transition: color 0.25s ease-in-out;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-family: "TradeGothicBold", ​sans-serif;
  font-size: 1.6875rem;
  line-height: 2.375rem;
}
.card-product_link {
  color: #000;
}
.card-product_link:after {
  filter: brightness(0);
}
.card-product_image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.card-product:hover {
  background-color: #F4F4F4;
}
.card-product:hover .card-product_title, .card-product:hover .card-product_link {
  color: #A6192E;
}
.card-product:hover .card-product_link:after {
  filter: invert(17%) sepia(87%) saturate(4561%) hue-rotate(340deg) brightness(73%) contrast(101%);
}
.card-product:hover .link-arrow:after {
  transform: translateX(1rem);
}
.card-wide a {
  text-decoration: none;
}
.card-wide_heading, .card-wide_title {
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
}
.card-wide_heading {
  color: #A6192E;
}
.card-wide_title {
  color: #1C1C1C;
  font-size: 1.625rem;
}
.card-wide:last-child.divider-bottom:before {
  display: none;
}
@media (min-width: 768px) {
  .card-wide:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.card-media a {
  text-decoration: none;
  display: block;
}
.card-media:hover img {
  transform: scale(1.05);
}
.card-media_image {
  position: relative;
  overflow: hidden;
}
.card-media_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.25s ease-in-out;
}
.card-media_content {
  padding: 40px 30px;
}
.card-media_title {
  font-size: 1.5rem;
  font-family: "TradeGothicBold", ​sans-serif;
  color: #1C1C1C;
}
.card-media_play-btn {
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  z-index: 1;
}
.card-media_play-btn svg {
  width: 80px;
  height: 80px;
}
.card-career_title {
  text-transform: uppercase;
  font-size: 2.25rem;
  font-family: "TradeGothicBold", ​sans-serif;
}
.card-career_location {
  font-size: 1.125rem;
  font-family: "TradeGothicBold", ​sans-serif;
}

.faq-title {
  padding-right: 40px;
  position: relative;
  cursor: pointer;
}
.faq-title:before {
  transform: rotate(90deg);
}
.faq-title:before, .faq-title:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  position: absolute;
  right: 25px;
  top: calc(50% - 1px);
  background: #A6192E;
}
.faq-title.active + .faq-content {
  margin-bottom: 3em;
}
.faq-title.active:before {
  width: 0;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/*.overlay {
    height: 100%;
    width: 0;
    position: fixed; 
    z-index: 10; 
    left: 0;
    top: 0;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0, 0.9); 
    overflow-x: hidden;
    transition: all 0.25s ease-in-out;

    &-search {

        &_form {
            position: relative;
            top: 25%; 
            width: 100%; 
            text-align: center; 
            margin-top: 30px; 
        }
    }
}*/
.search-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin: 12px 10px;
  cursor: pointer;
  outline: none !important;
  width: 20px;
  height: auto;
  display: none;
  vertical-align: top;
}
@media (min-width: 768px) {
  .search-btn {
    display: inline-block;
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .search-btn {
    display: inline-block;
    margin: 12px 20px;
    vertical-align: middle;
  }
}
.search-btn .image {
  display: block;
  width: 100%;
}
.search-form {
  border-bottom: 2px solid #CFAE78;
  width: 100%;
  display: flex;
}
.search-form_container__navigation {
  display: none;
}
.search-form_container__navigation input {
  color: #fff;
}
.search-form_container__navigation #s::-moz-placeholder {
  color: #fff;
}
.search-form_container__navigation #s:-ms-input-placeholder {
  color: #fff;
}
.search-form_container__navigation #s::placeholder {
  color: #fff;
}
.search-form_container__hero {
  max-width: 50%;
  display: inline-block;
}
.search-form_container__hero input {
  color: #1C1C1C;
}
.search-form_container__hero #s::-moz-placeholder {
  color: #1C1C1C;
}
.search-form_container__hero #s:-ms-input-placeholder {
  color: #1C1C1C;
}
.search-form_container__hero #s::placeholder {
  color: #1C1C1C;
}
.search-form_container__navigation input, .search-form_container__hero input {
  background: transparent;
  border: 0;
  width: 100%;
  padding: 8px 20px;
  outline: none !important;
}

.error404 .site-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.error404 .site-main .page-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background-image: url("../images/404.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.error404 .site-main .page-content h1, .error404 .site-main .page-content p {
  color: #fff;
}
.error404 .site-main .page-content h1 {
  font-size: 4.375rem;
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  text-align: center;
  line-height: 1;
}
.error404 .site-main .page-content h1 span {
  font-size: 1.875rem;
  line-height: 1.875rem;
  padding-top: 20px;
  display: block;
}

.carousel-post_slide {
  background-color: #A6192E;
  text-decoration: none;
}
.carousel-post_slide__content {
  padding: 3rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .carousel-post_slide__content {
    padding: 3rem;
  }
}
.carousel-post_slide__content a {
  color: #A6192E;
}
.carousel-post_slide__category {
  font-size: 1.25rem !important;
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
}
.carousel-post_slide__title {
  font-size: 2rem;
  line-height: 1.2;
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
}
.carousel-post_slide__image {
  overflow: hidden;
}
.carousel-post_slide__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.25s ease-in-out;
}
.carousel-post_slide__link {
  margin: 20px 0 0 0;
}
@media (min-width: 992px) {
  .carousel-post_slide__link {
    margin-top: 50px 0 0 0;
  }
}
.carousel-post_slide__link:after {
  filter: brightness(100);
}
.carousel-post_slide:hover .link-arrow:after {
  transform: translateX(1rem);
}
.carousel-post_slide:hover .carousel-post_slide__image img {
  transform: scale(1.025);
}
.carousel-ti_slide {
  background-color: #F4F4F4;
}
.carousel-ti_slide p {
  color: #1C1C1C;
}
.carousel-ti_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-ti_pagination {
  bottom: 0;
  left: 0;
}

.contact h2 {
  font-size: 1.6875rem;
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
  margin-bottom: 30px;
}
.contact p {
  margin-bottom: 30px;
}
.contact a {
  color: #A6192E;
}

.grid h2 {
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
  color: #1C1C1C;
  font-size: 2.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.grid_video__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.grid_video__container iframe, .grid_video__container object, .grid_video__container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero {
  position: relative;
}
.page-hero_slide {
  position: relative;
}
.page-hero_slide__container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}
@media (min-width: 768px) {
  .page-hero_slide__container {
    height: calc(100vh - 80px);
  }
}
.page-hero_slide__image {
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-hero_slide__content {
  z-index: 1;
  opacity: 0;
  text-align: center;
  -webkit-animation: titleFadeIn 750ms ease forwards;
          animation: titleFadeIn 750ms ease forwards;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.page-hero_slide__content h1 {
  font-size: 2.625rem;
  width: 260px;
  color: #fff;
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-hero_slide__content h1 {
    font-size: 4.375rem;
    width: 580px;
  }
}
.page-hero_scroll {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 40px;
  left: calc(50% - 15px);
  -webkit-animation: bounceArrow 2500ms ease infinite;
          animation: bounceArrow 2500ms ease infinite;
}
.page-hero_scroll:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@-webkit-keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes bounceArrow {
  0% {
    transform: translateY(0%);
  }
  /* no comma here */
  50% {
    transform: translateY(-35%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes bounceArrow {
  0% {
    transform: translateY(0%);
  }
  /* no comma here */
  50% {
    transform: translateY(-35%);
  }
  100% {
    transform: translateY(0%);
  }
}
.list-media .card-media:nth-child(n+4) {
  transition: all 0.25s ease-in-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.list-media .card-media-visible {
  height: auto !important;
  opacity: 1 !important;
}

.product-info .r-tabs-panel {
  padding: 0;
  color: #1C1C1C;
}
.product-info .r-tabs-panel p:not(:last-child), .product-info .r-tabs-panel h3 {
  margin-bottom: 30px;
}
.product-info .r-tabs-panel h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
}
.product-info .r-tabs-panel a {
  color: #A6192E;
}
.product-info .r-tabs-tab {
  list-style: none;
  display: inline-block;
  padding: 8px 32px;
  margin: 0px 20px;
  border: 1px solid transparent;
  transition: all 0.25s ease-in-out;
  min-width: 150px;
  text-align: center;
}
.product-info .r-tabs-tab a {
  color: #000;
  display: block;
  text-decoration: none;
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
  margin: auto;
}
.product-info .r-tabs-tab.r-tabs-state-active {
  border: 1px solid #A6192E;
}
.product-info .r-tabs-tab.r-tabs-state-active a {
  color: #A6192E;
}
.product-info .r-tabs-accordion-title {
  padding: 8px 32px;
  margin: 5px 0px;
  background-color: #F4F4F4;
  border: 1px solid transparent;
}
.product-info .r-tabs-accordion-title a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
}
.product-info .r-tabs-accordion-title.r-tabs-state-active {
  border: 1px solid #A6192E;
  margin-bottom: 30px;
}
.product-info .r-tabs-accordion-title.r-tabs-state-active a {
  color: #A6192E;
}

.recipe-share_text {
  color: #A6192E;
}
.recipe-meta_stat {
  display: inline-block;
  margin: 0px 10px;
}
.recipe-meta_stat:first-child {
  margin: 0px 10px 0px 0px;
}
.recipe-info_ingredients h2, .recipe-info_method h2 {
  font-family: "TradeGothicBold", ​sans-serif;
  text-transform: uppercase;
  color: #1C1C1C;
  font-size: 1.5625rem;
}
.recipe-info_ingredients {
  background-color: #F4F4F4;
  position: relative;
}
.recipe-info_ingredients__product-wrap {
  height: 50px;
}
.recipe-info_ingredients a {
  display: block;
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  text-align: center;
}
.recipe-info_ingredients a img {
  max-height: 300px;
}
.recipe-info_method ol {
  counter-reset: recipe-step-counter;
  padding: 0;
}
.recipe-info_method ol li {
  list-style: none;
  counter-increment: recipe-step-counter;
  margin-bottom: 10px;
}
.recipe-info_method ol li::before {
  content: counter(recipe-step-counter) ". ";
  color: #A6192E;
  font-family: "TradeGothicBold", ​sans-serif;
}
.recipe-suggestions .bg-grey .card-recipe_content {
  background-color: #fff;
}
.recipe-suggestions .bg-grey .card-recipe_content p {
  color: black;
}
.recipe-suggestions .bg-grey .card-recipe_content .link-arrow:after {
  filter: brightness(0);
}
.recipe-suggestions .bg-white .card-recipe_content {
  background-color: #F4F4F4;
}

.search-results_hero {
  background-color: #F4F4F4;
}
.search-results_hero .icon-search svg {
  filter: invert(1);
}
.search-results_hero h1 {
  font-size: 1.125rem;
}
.search-results_hero h1 span {
  color: #A6192E;
  text-transform: uppercase;
  font-family: "TradeGothicBold", ​sans-serif;
  font-size: 1.5625rem;
  display: block;
  margin-bottom: 20px;
}

.site-footer {
  padding: 2rem 0;
  background-color: #A6192E;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer {
    text-align: left;
  }
}
.site-footer a, .site-footer p {
  color: #fff;
  font-size: 0.75rem;
}
.site-footer .royal-idea-cookie-window {
  display: none;
}
.site-footer .menu_footer {
  margin-bottom: 30px;
}
.site-footer .menu_footer ul {
  padding: 0;
}
.site-footer .menu_footer ul li {
  list-style: none;
}
.site-footer .menu_footer ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 2em;
  display: block;
  margin: 0;
  padding: 0;
}
.site-footer_logo {
  margin: 20px;
}

.site-header {
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  width: 100%;
}
@media (min-width: 768px) {
  .site-header {
    background-color: #A6192E;
    position: relative;
  }
}
.site-header .logo {
  position: relative;
}
.site-header .logo img {
  position: absolute;
  top: -40px;
  width: 120px;
}
@media (min-width: 768px) {
  .site-header .logo img {
    top: 0;
    left: 0;
    width: 212px;
  }
}
.site-header .menu_main li {
  display: block;
  list-style: none;
}
.site-header .menu_main li a {
  color: #fff;
  font-size: 1.0625rem;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}
@media (min-width: 768px) {
  .site-header .menu_main li a {
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .site-header .menu_main li a {
    font-size: 0.875rem;
  }
}
@media (min-width: 1200px) {
  .site-header .menu_main li a {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.site-header .menu_main li a:hover {
  color: #CFAE78;
}
.site-header .menu_main li.menu-item-has-children .dropdown-arrow {
  position: absolute;
  width: 20%;
  display: inline-block;
  height: 49px;
  right: 0px;
}
.site-header .menu_main li.menu-item-has-children .dropdown-arrow:after {
  content: "";
  padding-left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 40%;
  margin-top: -4px;
}
@media (min-width: 768px) {
  .site-header .menu_main li.menu-item-has-children .dropdown-arrow {
    display: none;
  }
}
.site-header .menu_main li.menu-item-has-children.sub-nav-open ul {
  display: block;
}
@media (min-width: 768px) {
  .site-header .menu_main li.menu-item-has-children:hover .menu_main__sub-level {
    display: block;
  }
}
.site-header .menu_main__top-level {
  transform: translateY(-100%);
  transition: all 0.25s ease-in-out;
  position: fixed;
  width: 100vw;
  padding: 60px 20px 20px 20px;
  margin: 0px;
  top: 0;
  left: 0;
  background: #A6192E;
  z-index: 0;
  display: block;
}
@media (min-width: 768px) {
  .site-header .menu_main__top-level > li {
    display: inline-block;
  }
}
.site-header .menu_main__top-level > li > a {
  padding: 12px 0 15px;
  font-family: "TradeGothicBold", ​sans-serif;
}
@media (min-width: 768px) {
  .site-header .menu_main__top-level > li > a {
    padding: 20px 7px;
  }
}
@media (min-width: 992px) {
  .site-header .menu_main__top-level > li > a {
    padding: 20px 10px;
  }
}
@media (min-width: 1200px) {
  .site-header .menu_main__top-level > li > a {
    padding: 30px 22px;
  }
}
@media (min-width: 768px) {
  .site-header .menu_main__top-level {
    position: relative;
    width: auto;
    display: inline-block;
    transform: none;
    padding: 0;
  }
}
.site-header .menu_main__top-level.show {
  transform: translateY(0%);
}
.site-header .menu_main__top-level.show + .menu_main__mobile-trigger {
  background: url("../images/icon-menu-close.png") center/25px no-repeat;
}
.site-header .menu_main__mobile-trigger {
  border: none;
  width: 30px;
  height: 42px;
  z-index: 1;
  background: url("../images/icon-menu.png") center/25px no-repeat;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-header .menu_main__mobile-trigger {
    display: none;
  }
}
.site-header .menu_main__sub-level {
  display: none;
  background-color: #A6192E;
  padding: 17px 25px;
}
@media (min-width: 768px) {
  .site-header .menu_main__sub-level {
    position: absolute;
    width: 180px;
  }
}
.site-header .menu_main__sub-level > li {
  display: block;
}
.site-header .menu_main__sub-level > li > a {
  padding: 6px 0px;
  font-family: "Open Sans";
  font-size: 0.875rem;
}
.site-header .menu_country_selector {
  display: inline-block;
  width: 30px;
  height: 42px;
  position: relative;
  margin: 0px 0px 0px 10px;
}
@media (min-width: 768px) {
  .site-header .menu_country_selector {
    vertical-align: middle;
  }
}
@media (min-width: 992px) {
  .site-header .menu_country_selector {
    margin: 12px 20px;
  }
}
.site-header .menu_country_selector:active .menu_country_selector-drop-down {
  display: block;
}
@media (min-width: 768px) {
  .site-header .menu_country_selector:hover .menu_country_selector-drop-down {
    display: block;
  }
}
.site-header .menu_country_selector-drop-down {
  display: none;
  position: absolute;
  padding-top: 45px;
  right: -10px;
  z-index: 0;
}
.site-header .menu_country_selector-drop-down ul {
  background: #fff;
  padding: 0px;
  display: inline-block;
  margin: 0px;
}
.site-header .menu_country_selector-drop-down.open {
  display: block;
}
@media (min-width: 768px) {
  .site-header .menu_country_selector-drop-down {
    padding-top: 51px;
  }
}
@media (min-width: 992px) {
  .site-header .menu_country_selector-drop-down {
    padding-top: 54px;
  }
}
@media (min-width: 1200px) {
  .site-header .menu_country_selector-drop-down {
    padding-top: 61px;
  }
}
.site-header .menu_country_selector-drop-down .show {
  display: block;
}
.site-header .menu_country_selector-drop-down .hide {
  display: none;
}
.site-header .menu_country_selector .menu-item {
  width: 30px;
  height: 17px;
  margin: 10px;
}
.site-header .menu_country_selector .menu-item a {
  margin-top: 12px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  width: 30px;
  height: 17px;
  display: block;
}
.site-header .menu_country_selector-btn {
  width: 30px;
  height: 42px;
  line-height: 0;
  font-size: 0;
  color: transparent;
  text-decoration: none;
  background-position-y: 13px !important;
  background-repeat: no-repeat !important;
  position: absolute;
  z-index: 1;
  background: none;
  border: none;
}
.site-header .menu_country_selector__country-8 {
  background-image: url("../images/pol.gif");
}
.site-header .menu_country_selector__country-9 {
  background-image: url("../images/nor.gif");
}
.site-header .menu_country_selector__country-10 {
  background-image: url("../images/intl.gif");
}
.site-header .menu_country_selector__country-US {
  background-image: url("../images/usa.gif");
}
.site-header .menu_country_selector__country-CHINA {
  background-image: url("../images/chn.gif");
}

.timeline {
  background: url("../images/about-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.timeline h1 {
  font-size: 3.75rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-family: "TradeGothicBold", ​sans-serif;
}
.timeline-item {
  position: relative;
}
@media (min-width: 768px) {
  .timeline-item:first-of-type:before {
    content: "";
    position: absolute;
    top: -15%;
    transform: translateY(-50%);
    left: calc(50% - 5px);
    left: calc(50% - 5px);
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
  }
  .timeline-item:first-of-type:after {
    top: -15%;
  }
  .timeline-item:last-of-type:after {
    bottom: 50%;
  }
  .timeline-item:nth-child(even) .timeline-item_content {
    padding-right: 3rem;
    padding-left: 0;
  }
  .timeline-item:nth-child(even) .timeline-item_image {
    padding-left: 3rem;
    padding-right: 0;
  }
  .timeline-item:nth-child(even) .timeline-item_image:after {
    left: -5px;
    right: auto;
  }
  .timeline-item:after {
    content: "";
    width: 2px;
    background-color: #CFAE78;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    z-index: 0;
  }
}
.timeline-item_image {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .timeline-item_image {
    padding-right: 3rem;
  }
}
.timeline-item_image img {
  width: 100%;
  display: block;
  border: 10px solid #fff;
  box-shadow: 4px 4px 10px #000;
  z-index: 3;
}
@media (min-width: 768px) {
  .timeline-item_image:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5px;
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .timeline-item_content {
    padding-left: 3rem;
  }
}
.timeline-item_title {
  text-transform: uppercase;
  color: #fff;
  font-family: "TradeGothicBold", ​sans-serif;
  font-size: 2.5rem;
}
.timeline-item_text {
  color: #fff;
}
@media (min-width: 768px) {
  .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.user_idea__image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user_idea__image-container {
  overflow: hidden;
  height: 100%;
  position: relative;
  min-height: 400px;
}
.user_idea__comment___container {
  padding: 0.3rem 1rem 4.5rem 1rem;
}
@media (min-width: 768px) {
  .user_idea__comment___container {
    padding: 0.3rem 1rem 3rem 1rem;
  }
}
.user_idea__comment___container____top img {
  width: 100%;
}
.user_idea__comment___container____repeat {
  background-image: url("../images/dialogue_repeat.png");
  background-size: 100%;
  background-repeat: repeat-y;
}
.user_idea__comment___container____bottom img {
  width: 100%;
}
.user_idea__comment___avatar img {
  width: 100%;
  max-width: 90px;
  height: auto;
}

.royal-idea_container {
  background: #A6192E;
}
.royal-idea_intro a {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.908 37.816'%3e%3cpath data-name='Path 260' d='m2.829 34.988 16.08-16.08-16.08-16.08' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: right 30px center;
  padding-right: 60px;
  color: white;
}

.hero-royal-idea h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  width: unset;
}
@media (min-width: 768px) {
  .hero-royal-idea h1 {
    font-size: 6rem;
  }
}

.royal-idea_recipe .card-column_image, .royal-idea_recipe .royal-idea_single__image-container, .royal-idea_oppskrift .card-column_image, .royal-idea_oppskrift .royal-idea_single__image-container {
  background-repeat: no-repeat;
}
.royal-idea_recipe .card-column_image, .royal-idea_oppskrift .card-column_image {
  background-size: 50%, cover;
  background-image: url("../images/royal_idea_fallback_recipe.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
  background-position: calc(50% + 15px) center, center;
}
.royal-idea_recipe .royal-idea_single__image-container, .royal-idea_oppskrift .royal-idea_single__image-container {
  background-size: 35%, cover;
  background-image: url("../images/royal_idea_fallback_recipe.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
  background-position: calc(50% + 20px) center, center;
}
.royal-idea_new-product-flavour .card-column_image, .royal-idea_new-product-flavour .royal-idea_single__image-container, .royal-idea_produkt-smak .card-column_image, .royal-idea_produkt-smak .royal-idea_single__image-container {
  background-repeat: no-repeat;
  background-position: center;
}
.royal-idea_new-product-flavour .card-column_image, .royal-idea_produkt-smak .card-column_image {
  background-size: 30%, cover;
  background-image: url("../images/royal_idea_fallback_flavour_product.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_new-product-flavour .royal-idea_single__image-container, .royal-idea_produkt-smak .royal-idea_single__image-container {
  background-size: 20%, cover;
  background-image: url("../images/royal_idea_fallback_flavour_product.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_sustainability .card-column_image, .royal-idea_sustainability .royal-idea_single__image-container, .royal-idea_baerekraft .card-column_image, .royal-idea_baerekraft .royal-idea_single__image-container {
  background-repeat: no-repeat;
  background-position: center;
}
.royal-idea_sustainability .card-column_image, .royal-idea_baerekraft .card-column_image {
  background-size: 50%, cover;
  background-image: url("../images/royal_idea_fallback_sustainability.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_sustainability .royal-idea_single__image-container, .royal-idea_baerekraft .royal-idea_single__image-container {
  background-size: 30%, cover;
  background-image: url("../images/royal_idea_fallback_sustainability.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_other .card-column_image, .royal-idea_other .royal-idea_single__image-container, .royal-idea_annet .card-column_image, .royal-idea_annet .royal-idea_single__image-container {
  background-repeat: no-repeat;
  background-position: center;
}
.royal-idea_other .card-column_image, .royal-idea_annet .card-column_image {
  background-size: 80%, cover;
  background-image: url("../images/royal_idea_fallback_other.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_other .royal-idea_single__image-container, .royal-idea_annet .royal-idea_single__image-container {
  background-size: 50%, cover;
  background-image: url("../images/royal_idea_fallback_other.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_packaging .card-column_image, .royal-idea_packaging .royal-idea_single__image-container, .royal-idea_forpakning .card-column_image, .royal-idea_forpakning .royal-idea_single__image-container {
  background-repeat: no-repeat;
  background-position: center;
}
.royal-idea_packaging .card-column_image, .royal-idea_forpakning .card-column_image {
  background-size: 35%, cover;
  background-image: url("../images/royal_idea_fallback_packaging.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_packaging .royal-idea_single__image-container, .royal-idea_forpakning .royal-idea_single__image-container {
  background-size: 26%, cover;
  background-image: url("../images/royal_idea_fallback_packaging.png"), url("../images/royal_idea_fallback_bg_dark_single.jpg");
}
.royal-idea_single__image-container {
  overflow: hidden;
  height: 100%;
  position: relative;
  min-height: 400px;
}
.royal-idea_single__image-container img {
  overflow: auto;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 500px;
}
.royal-idea_name__counter, .royal-idea_content__counter {
  position: absolute;
  margin: auto;
  display: block;
  font-size: 0.8125rem;
}
.royal-idea_name__counter {
  top: calc(50% - 10px);
  right: 10px;
}
.royal-idea_content__counter {
  right: 10px;
  bottom: 10px;
}

.card-idea .card-column_image a {
  display: block;
  width: 100%;
  height: 100%;
}
.card-idea img {
  background: #A6192E;
}
.card-idea .btn, .card-idea .royal-idea_intro a, .royal-idea_intro .card-idea a {
  background: white;
}
.card-idea .btn-heart-container {
  text-decoration: none;
  font-size: 0.7rem;
}
.card-idea .btn-heart-container:hover svg {
  transform: scale(1.1);
}
.card-idea .btn-heart-container svg {
  transition: all 0.2s ease-in-out;
}
.card-idea .btn-heart-container .text-primary {
  margin: 2px;
}

.vote-count {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.icon-btn-heart-outline_selected {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24.235 21.163'%3e%3cg data-name='Group 9' transform='translate(-1424.015 -37.196)'%3e%3cg data-name='Group 8'%3e%3cpath data-name='Path 38' d='M1436.16 41.262a6.118 6.118 0 0 1 3.16-2.953 5.838 5.838 0 0 1 6.345 1.054 5.9 5.9 0 0 1 1.78 6.446 13.732 13.732 0 0 1-3.212 5.335 39.239 39.239 0 0 1-7.7 6.575.827.827 0 0 1-.744.013 36.747 36.747 0 0 1-8.765-7.87 11.475 11.475 0 0 1-2.287-4.524 6.078 6.078 0 0 1 11.112-4.568c.078.121.151.242.311.492Z' fill='%23a6192e' stroke='%23a6192e' stroke-miterlimit='10'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  -webkit-animation: bg-trans 0.2s;
          animation: bg-trans 0.2s;
  /* Standard syntax */
}
@-webkit-keyframes bg-trans {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bg-trans {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.royal-idea_single__back, .royal-idea_single__alm .alm-btn-wrap {
  display: inline-block;
  margin: 10px;
}

.labour-initiatives-image-container {
  height: 300px;
}
@media (min-width: 768px) {
  .labour-initiatives-image-container {
    height: 100%;
  }
}
