@import url(https://use.typekit.net/lqs5fzc.css);
@import url(https://fonts.googleapis.com/css2?family=Ysabeau:wght@500;700&display=swap);
/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* ###### COLOR VARIABLES ###### */
/* ##### TEXT LINKS ##### */
/* ###### FONT VARIABLES ###### */
/* ###### NAV VARIABLES ###### */
/* ##### BTN VARIABLES ##### */
/* ##### CARDS VARIABLES ##### */
/* ##### FORM VARIABLES ##### */
/* ##### FOOTER VARIABLES ##### */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #ae804c;
  --bs-secondary: #81978f;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 174, 128, 76;
  --bs-secondary-rgb: 129, 151, 143;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 252, 250, 239;
  --bs-font-sans-serif: quiche-sans;
  --bs-font-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Ysabeau, sans-serif;
  --bs-body-font-size: 1.125rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fcfaef;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #ae804c;
  --bs-link-hover-color: rgba(174, 128, 76, 0.7);
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd; }

*,
*::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: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25; }

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

h1, .h1 {
  font-size: calc(1.6875rem + 5.25vw); }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 5.625rem; } }

h2, .h2 {
  font-size: calc(1.34375rem + 1.125vw); }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 2.1875rem; } }

h3, .h3 {
  font-size: calc(1.2625rem + 0.15vw); }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.375rem; } }

h4, .h4 {
  font-size: 1.125rem; }

h5, .h5 {
  font-size: calc(1.26563rem + 0.1875vw); }
  @media (min-width: 1200px) {
    h5, .h5 {
      font-size: 1.40625rem; } }

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

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

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

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

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

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

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

dt {
  font-weight: 700; }

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

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

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

mark, .mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg); }

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

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

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

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

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: var(--bs-code-color);
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem; }
  kbd kbd {
    padding: 0;
    font-size: 1em; }

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]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important; }

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

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

textarea {
  resize: vertical; }

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

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

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

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

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

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

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

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

output {
  display: inline-block; }

iframe {
  border: 0; }

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

progress {
  vertical-align: baseline; }

[hidden] {
  display: none !important; }

.lead {
  font-size: calc(1.26563rem + 0.1875vw);
  font-weight: 300; }
  @media (min-width: 1200px) {
    .lead {
      font-size: 1.40625rem; } }

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 5rem; } }

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 4.5rem; } }

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 4rem; } }

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-4 {
      font-size: 3.5rem; } }

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-5 {
      font-size: 3rem; } }

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-6 {
      font-size: 2.5rem; } }

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

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

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

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

.blockquote {
  margin-bottom: 1rem;
  font-size: calc(1.26563rem + 0.1875vw); }
  @media (min-width: 1200px) {
    .blockquote {
      font-size: 1.40625rem; } }
  .blockquote > :last-child {
    margin-bottom: 0; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fcfaef;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

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

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

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

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

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

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

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

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

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x)); }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y); }

.col {
  flex: 1 0 0%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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.33333%; }
  .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.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0; }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0; }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem; }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem; }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem; }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem; }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem; }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem; }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem; }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem; }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem; }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem; } }

@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.33333%; }
  .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.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0; }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0; }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem; }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem; }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem; }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem; }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem; }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem; }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem; }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem; }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem; }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem; } }

@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.33333%; }
  .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.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0; }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0; }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem; }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem; }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem; }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem; }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem; }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem; }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem; }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem; }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem; }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem; } }

@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.33333%; }
  .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.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0; }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0; }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem; }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem; }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem; }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem; } }

@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.33333%; }
  .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.66667%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333%; }
  .offset-xxl-2 {
    margin-left: 16.66667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333%; }
  .offset-xxl-5 {
    margin-left: 41.66667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333%; }
  .offset-xxl-8 {
    margin-left: 66.66667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333%; }
  .offset-xxl-11 {
    margin-left: 91.66667%; }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0; }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0; }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem; }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem; }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem; }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem; } }

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

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

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        transition: none; } }

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

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

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 157.81px;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1.125rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #ae804c;
  --bs-dropdown-border-color: none;
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
  --bs-dropdown-inner-border-radius: 0;
  --bs-dropdown-divider-bg: none;
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: none;
  --bs-dropdown-link-color: #000;
  --bs-dropdown-link-hover-color: rgba(0, 0, 0, 0.8);
  --bs-dropdown-link-hover-bg: #3c3c3c;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #ae804c;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius); }
  .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer); }

.dropdown-menu-start {
  --bs-position: start; }
  .dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0; }

.dropdown-menu-end {
  --bs-position: end; }
  .dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto; }

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

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

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

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

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

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer); }

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

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

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer); }

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

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

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

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer); }

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

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

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

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

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

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg); }
  .dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg); }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent; }

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

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.98438rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color); }

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: none;
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: none;
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #ae804c;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd; }

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      transition: none; } }
  .nav-link:hover, .nav-link:focus {
    color: var(--bs-nav-link-hover-color); }
  .nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  --bs-nav-tabs-border-width: 1px;
  --bs-nav-tabs-border-color: #dee2e6;
  --bs-nav-tabs-border-radius: 0.375rem;
  --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  --bs-nav-tabs-link-active-color: #495057;
  --bs-nav-tabs-link-active-bg: #fcfaef;
  --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fcfaef;
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color); }
  .nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    background: none;
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius); }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      isolation: isolate;
      border-color: var(--bs-nav-tabs-link-hover-border-color); }
    .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
      color: var(--bs-nav-link-disabled-color);
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color); }
  .nav-tabs .dropdown-menu {
    margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills {
  --bs-nav-pills-border-radius: 0.375rem;
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #ae804c; }
  .nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: var(--bs-nav-pills-border-radius); }
    .nav-pills .nav-link:disabled {
      color: var(--bs-nav-link-disabled-color);
      background-color: transparent;
      border-color: transparent; }
  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg); }

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

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center; }

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

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

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

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

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

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

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color); }
  .navbar-text a,
  .navbar-text a:hover,
  .navbar-text a:focus {
    color: var(--bs-navbar-active-color); }

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

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition); }
  @media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
      transition: none; } }
  .navbar-toggler:hover {
    text-decoration: none; }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); }

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

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

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-sm .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; }
    .navbar-expand-sm .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-sm .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-sm .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-md .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; }
    .navbar-expand-md .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-md .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-md .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-lg .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; }
    .navbar-expand-lg .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-lg .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-lg .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-xl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; }
    .navbar-expand-xl .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-xl .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-xl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-xxl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xxl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xxl .navbar-toggler {
      display: none; }
    .navbar-expand-xxl .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-xxl .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-xxl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: var(--bs-navbar-nav-link-padding-x);
      padding-left: var(--bs-navbar-nav-link-padding-x); }
  .navbar-expand .navbar-nav-scroll {
    overflow: visible; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }
  .navbar-expand .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none; }
    .navbar-expand .offcanvas .offcanvas-header {
      display: none; }
    .navbar-expand .offcanvas .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; }

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

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5; }
  .btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75; }
  .btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(174, 128, 76, 0.25);
    opacity: 1; }
  .btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25; }

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%); }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.text-bg-primary {
  color: #000 !important;
  background-color: RGBA(174, 128, 76, var(--bs-bg-opacity, 1)) !important; }

.text-bg-secondary {
  color: #000 !important;
  background-color: RGBA(129, 151, 143, var(--bs-bg-opacity, 1)) !important; }

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important; }

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important; }

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important; }

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important; }

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

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important; }

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

.link-secondary {
  color: #81978f !important; }
  .link-secondary:hover, .link-secondary:focus {
    color: #9aaca5 !important; }

.link-success {
  color: #198754 !important; }
  .link-success:hover, .link-success:focus {
    color: #146c43 !important; }

.link-info {
  color: #0dcaf0 !important; }
  .link-info:hover, .link-info:focus {
    color: #3dd5f3 !important; }

.link-warning {
  color: #ffc107 !important; }
  .link-warning:hover, .link-warning:focus {
    color: #ffcd39 !important; }

.link-danger {
  color: #dc3545 !important; }
  .link-danger:hover, .link-danger:focus {
    color: #b02a37 !important; }

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

.link-dark {
  color: #212529 !important; }
  .link-dark:hover, .link-dark:focus {
    color: #1a1e21 !important; }

.ratio {
  position: relative;
  width: 100%; }
  .ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""; }
  .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.ratio-1x1 {
  --bs-aspect-ratio: 100%; }

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%); }

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%); }

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%); }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020; }

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020; }

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

.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: sticky !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fs-3 {
  font-size: calc(1.2625rem + 0.15vw) !important; }

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

.fs-5 {
  font-size: calc(1.26563rem + 0.1875vw) !important; }

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

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

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

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

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

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

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

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

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

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

.lh-sm {
  line-height: 1.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-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: 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 {
  user-select: all !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important; }
  .float-sm-end {
    float: right !important; }
  .float-sm-none {
    float: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-grid {
    display: grid !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; }
  .d-sm-none {
    display: none !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; }
  .order-sm-first {
    order: -1 !important; }
  .order-sm-0 {
    order: 0 !important; }
  .order-sm-1 {
    order: 1 !important; }
  .order-sm-2 {
    order: 2 !important; }
  .order-sm-3 {
    order: 3 !important; }
  .order-sm-4 {
    order: 4 !important; }
  .order-sm-5 {
    order: 5 !important; }
  .order-sm-last {
    order: 6 !important; }
  .m-sm-0 {
    margin: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .mt-sm-3 {
    margin-top: 1rem !important; }
  .mt-sm-4 {
    margin-top: 1.5rem !important; }
  .mt-sm-5 {
    margin-top: 3rem !important; }
  .mt-sm-auto {
    margin-top: auto !important; }
  .me-sm-0 {
    margin-right: 0 !important; }
  .me-sm-1 {
    margin-right: 0.25rem !important; }
  .me-sm-2 {
    margin-right: 0.5rem !important; }
  .me-sm-3 {
    margin-right: 1rem !important; }
  .me-sm-4 {
    margin-right: 1.5rem !important; }
  .me-sm-5 {
    margin-right: 3rem !important; }
  .me-sm-auto {
    margin-right: auto !important; }
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important; }
  .mb-sm-5 {
    margin-bottom: 3rem !important; }
  .mb-sm-auto {
    margin-bottom: auto !important; }
  .ms-sm-0 {
    margin-left: 0 !important; }
  .ms-sm-1 {
    margin-left: 0.25rem !important; }
  .ms-sm-2 {
    margin-left: 0.5rem !important; }
  .ms-sm-3 {
    margin-left: 1rem !important; }
  .ms-sm-4 {
    margin-left: 1.5rem !important; }
  .ms-sm-5 {
    margin-left: 3rem !important; }
  .ms-sm-auto {
    margin-left: auto !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .pt-sm-3 {
    padding-top: 1rem !important; }
  .pt-sm-4 {
    padding-top: 1.5rem !important; }
  .pt-sm-5 {
    padding-top: 3rem !important; }
  .pe-sm-0 {
    padding-right: 0 !important; }
  .pe-sm-1 {
    padding-right: 0.25rem !important; }
  .pe-sm-2 {
    padding-right: 0.5rem !important; }
  .pe-sm-3 {
    padding-right: 1rem !important; }
  .pe-sm-4 {
    padding-right: 1.5rem !important; }
  .pe-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pb-sm-5 {
    padding-bottom: 3rem !important; }
  .ps-sm-0 {
    padding-left: 0 !important; }
  .ps-sm-1 {
    padding-left: 0.25rem !important; }
  .ps-sm-2 {
    padding-left: 0.5rem !important; }
  .ps-sm-3 {
    padding-left: 1rem !important; }
  .ps-sm-4 {
    padding-left: 1.5rem !important; }
  .ps-sm-5 {
    padding-left: 3rem !important; }
  .gap-sm-0 {
    gap: 0 !important; }
  .gap-sm-1 {
    gap: 0.25rem !important; }
  .gap-sm-2 {
    gap: 0.5rem !important; }
  .gap-sm-3 {
    gap: 1rem !important; }
  .gap-sm-4 {
    gap: 1.5rem !important; }
  .gap-sm-5 {
    gap: 3rem !important; }
  .text-sm-start {
    text-align: left !important; }
  .text-sm-end {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .float-md-start {
    float: left !important; }
  .float-md-end {
    float: right !important; }
  .float-md-none {
    float: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-grid {
    display: grid !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; }
  .d-md-none {
    display: none !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .justify-content-md-evenly {
    justify-content: space-evenly !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; }
  .order-md-first {
    order: -1 !important; }
  .order-md-0 {
    order: 0 !important; }
  .order-md-1 {
    order: 1 !important; }
  .order-md-2 {
    order: 2 !important; }
  .order-md-3 {
    order: 3 !important; }
  .order-md-4 {
    order: 4 !important; }
  .order-md-5 {
    order: 5 !important; }
  .order-md-last {
    order: 6 !important; }
  .m-md-0 {
    margin: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-md-0 {
    margin-top: 0 !important; }
  .mt-md-1 {
    margin-top: 0.25rem !important; }
  .mt-md-2 {
    margin-top: 0.5rem !important; }
  .mt-md-3 {
    margin-top: 1rem !important; }
  .mt-md-4 {
    margin-top: 1.5rem !important; }
  .mt-md-5 {
    margin-top: 3rem !important; }
  .mt-md-auto {
    margin-top: auto !important; }
  .me-md-0 {
    margin-right: 0 !important; }
  .me-md-1 {
    margin-right: 0.25rem !important; }
  .me-md-2 {
    margin-right: 0.5rem !important; }
  .me-md-3 {
    margin-right: 1rem !important; }
  .me-md-4 {
    margin-right: 1.5rem !important; }
  .me-md-5 {
    margin-right: 3rem !important; }
  .me-md-auto {
    margin-right: auto !important; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .mb-md-3 {
    margin-bottom: 1rem !important; }
  .mb-md-4 {
    margin-bottom: 1.5rem !important; }
  .mb-md-5 {
    margin-bottom: 3rem !important; }
  .mb-md-auto {
    margin-bottom: auto !important; }
  .ms-md-0 {
    margin-left: 0 !important; }
  .ms-md-1 {
    margin-left: 0.25rem !important; }
  .ms-md-2 {
    margin-left: 0.5rem !important; }
  .ms-md-3 {
    margin-left: 1rem !important; }
  .ms-md-4 {
    margin-left: 1.5rem !important; }
  .ms-md-5 {
    margin-left: 3rem !important; }
  .ms-md-auto {
    margin-left: auto !important; }
  .p-md-0 {
    padding: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-md-0 {
    padding-top: 0 !important; }
  .pt-md-1 {
    padding-top: 0.25rem !important; }
  .pt-md-2 {
    padding-top: 0.5rem !important; }
  .pt-md-3 {
    padding-top: 1rem !important; }
  .pt-md-4 {
    padding-top: 1.5rem !important; }
  .pt-md-5 {
    padding-top: 3rem !important; }
  .pe-md-0 {
    padding-right: 0 !important; }
  .pe-md-1 {
    padding-right: 0.25rem !important; }
  .pe-md-2 {
    padding-right: 0.5rem !important; }
  .pe-md-3 {
    padding-right: 1rem !important; }
  .pe-md-4 {
    padding-right: 1.5rem !important; }
  .pe-md-5 {
    padding-right: 3rem !important; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .pb-md-3 {
    padding-bottom: 1rem !important; }
  .pb-md-4 {
    padding-bottom: 1.5rem !important; }
  .pb-md-5 {
    padding-bottom: 3rem !important; }
  .ps-md-0 {
    padding-left: 0 !important; }
  .ps-md-1 {
    padding-left: 0.25rem !important; }
  .ps-md-2 {
    padding-left: 0.5rem !important; }
  .ps-md-3 {
    padding-left: 1rem !important; }
  .ps-md-4 {
    padding-left: 1.5rem !important; }
  .ps-md-5 {
    padding-left: 3rem !important; }
  .gap-md-0 {
    gap: 0 !important; }
  .gap-md-1 {
    gap: 0.25rem !important; }
  .gap-md-2 {
    gap: 0.5rem !important; }
  .gap-md-3 {
    gap: 1rem !important; }
  .gap-md-4 {
    gap: 1.5rem !important; }
  .gap-md-5 {
    gap: 3rem !important; }
  .text-md-start {
    text-align: left !important; }
  .text-md-end {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important; }
  .float-lg-end {
    float: right !important; }
  .float-lg-none {
    float: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-grid {
    display: grid !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; }
  .d-lg-none {
    display: none !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; }
  .order-lg-first {
    order: -1 !important; }
  .order-lg-0 {
    order: 0 !important; }
  .order-lg-1 {
    order: 1 !important; }
  .order-lg-2 {
    order: 2 !important; }
  .order-lg-3 {
    order: 3 !important; }
  .order-lg-4 {
    order: 4 !important; }
  .order-lg-5 {
    order: 5 !important; }
  .order-lg-last {
    order: 6 !important; }
  .m-lg-0 {
    margin: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .mt-lg-3 {
    margin-top: 1rem !important; }
  .mt-lg-4 {
    margin-top: 1.5rem !important; }
  .mt-lg-5 {
    margin-top: 3rem !important; }
  .mt-lg-auto {
    margin-top: auto !important; }
  .me-lg-0 {
    margin-right: 0 !important; }
  .me-lg-1 {
    margin-right: 0.25rem !important; }
  .me-lg-2 {
    margin-right: 0.5rem !important; }
  .me-lg-3 {
    margin-right: 1rem !important; }
  .me-lg-4 {
    margin-right: 1.5rem !important; }
  .me-lg-5 {
    margin-right: 3rem !important; }
  .me-lg-auto {
    margin-right: auto !important; }
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important; }
  .mb-lg-5 {
    margin-bottom: 3rem !important; }
  .mb-lg-auto {
    margin-bottom: auto !important; }
  .ms-lg-0 {
    margin-left: 0 !important; }
  .ms-lg-1 {
    margin-left: 0.25rem !important; }
  .ms-lg-2 {
    margin-left: 0.5rem !important; }
  .ms-lg-3 {
    margin-left: 1rem !important; }
  .ms-lg-4 {
    margin-left: 1.5rem !important; }
  .ms-lg-5 {
    margin-left: 3rem !important; }
  .ms-lg-auto {
    margin-left: auto !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .pt-lg-3 {
    padding-top: 1rem !important; }
  .pt-lg-4 {
    padding-top: 1.5rem !important; }
  .pt-lg-5 {
    padding-top: 3rem !important; }
  .pe-lg-0 {
    padding-right: 0 !important; }
  .pe-lg-1 {
    padding-right: 0.25rem !important; }
  .pe-lg-2 {
    padding-right: 0.5rem !important; }
  .pe-lg-3 {
    padding-right: 1rem !important; }
  .pe-lg-4 {
    padding-right: 1.5rem !important; }
  .pe-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pb-lg-5 {
    padding-bottom: 3rem !important; }
  .ps-lg-0 {
    padding-left: 0 !important; }
  .ps-lg-1 {
    padding-left: 0.25rem !important; }
  .ps-lg-2 {
    padding-left: 0.5rem !important; }
  .ps-lg-3 {
    padding-left: 1rem !important; }
  .ps-lg-4 {
    padding-left: 1.5rem !important; }
  .ps-lg-5 {
    padding-left: 3rem !important; }
  .gap-lg-0 {
    gap: 0 !important; }
  .gap-lg-1 {
    gap: 0.25rem !important; }
  .gap-lg-2 {
    gap: 0.5rem !important; }
  .gap-lg-3 {
    gap: 1rem !important; }
  .gap-lg-4 {
    gap: 1.5rem !important; }
  .gap-lg-5 {
    gap: 3rem !important; }
  .text-lg-start {
    text-align: left !important; }
  .text-lg-end {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important; }
  .float-xl-end {
    float: right !important; }
  .float-xl-none {
    float: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-grid {
    display: grid !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; }
  .d-xl-none {
    display: none !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; }
  .order-xl-first {
    order: -1 !important; }
  .order-xl-0 {
    order: 0 !important; }
  .order-xl-1 {
    order: 1 !important; }
  .order-xl-2 {
    order: 2 !important; }
  .order-xl-3 {
    order: 3 !important; }
  .order-xl-4 {
    order: 4 !important; }
  .order-xl-5 {
    order: 5 !important; }
  .order-xl-last {
    order: 6 !important; }
  .m-xl-0 {
    margin: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xl-0 {
    margin-top: 0 !important; }
  .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .mt-xl-3 {
    margin-top: 1rem !important; }
  .mt-xl-4 {
    margin-top: 1.5rem !important; }
  .mt-xl-5 {
    margin-top: 3rem !important; }
  .mt-xl-auto {
    margin-top: auto !important; }
  .me-xl-0 {
    margin-right: 0 !important; }
  .me-xl-1 {
    margin-right: 0.25rem !important; }
  .me-xl-2 {
    margin-right: 0.5rem !important; }
  .me-xl-3 {
    margin-right: 1rem !important; }
  .me-xl-4 {
    margin-right: 1.5rem !important; }
  .me-xl-5 {
    margin-right: 3rem !important; }
  .me-xl-auto {
    margin-right: auto !important; }
  .mb-xl-0 {
    margin-bottom: 0 !important; }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xl-5 {
    margin-bottom: 3rem !important; }
  .mb-xl-auto {
    margin-bottom: auto !important; }
  .ms-xl-0 {
    margin-left: 0 !important; }
  .ms-xl-1 {
    margin-left: 0.25rem !important; }
  .ms-xl-2 {
    margin-left: 0.5rem !important; }
  .ms-xl-3 {
    margin-left: 1rem !important; }
  .ms-xl-4 {
    margin-left: 1.5rem !important; }
  .ms-xl-5 {
    margin-left: 3rem !important; }
  .ms-xl-auto {
    margin-left: auto !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xl-0 {
    padding-top: 0 !important; }
  .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .pt-xl-3 {
    padding-top: 1rem !important; }
  .pt-xl-4 {
    padding-top: 1.5rem !important; }
  .pt-xl-5 {
    padding-top: 3rem !important; }
  .pe-xl-0 {
    padding-right: 0 !important; }
  .pe-xl-1 {
    padding-right: 0.25rem !important; }
  .pe-xl-2 {
    padding-right: 0.5rem !important; }
  .pe-xl-3 {
    padding-right: 1rem !important; }
  .pe-xl-4 {
    padding-right: 1.5rem !important; }
  .pe-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-0 {
    padding-bottom: 0 !important; }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xl-5 {
    padding-bottom: 3rem !important; }
  .ps-xl-0 {
    padding-left: 0 !important; }
  .ps-xl-1 {
    padding-left: 0.25rem !important; }
  .ps-xl-2 {
    padding-left: 0.5rem !important; }
  .ps-xl-3 {
    padding-left: 1rem !important; }
  .ps-xl-4 {
    padding-left: 1.5rem !important; }
  .ps-xl-5 {
    padding-left: 3rem !important; }
  .gap-xl-0 {
    gap: 0 !important; }
  .gap-xl-1 {
    gap: 0.25rem !important; }
  .gap-xl-2 {
    gap: 0.5rem !important; }
  .gap-xl-3 {
    gap: 1rem !important; }
  .gap-xl-4 {
    gap: 1.5rem !important; }
  .gap-xl-5 {
    gap: 3rem !important; }
  .text-xl-start {
    text-align: left !important; }
  .text-xl-end {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important; }
  .float-xxl-end {
    float: right !important; }
  .float-xxl-none {
    float: none !important; }
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
  .d-xxl-grid {
    display: grid !important; }
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; }
  .d-xxl-none {
    display: none !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; }
  .order-xxl-first {
    order: -1 !important; }
  .order-xxl-0 {
    order: 0 !important; }
  .order-xxl-1 {
    order: 1 !important; }
  .order-xxl-2 {
    order: 2 !important; }
  .order-xxl-3 {
    order: 3 !important; }
  .order-xxl-4 {
    order: 4 !important; }
  .order-xxl-5 {
    order: 5 !important; }
  .order-xxl-last {
    order: 6 !important; }
  .m-xxl-0 {
    margin: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .m-xxl-3 {
    margin: 1rem !important; }
  .m-xxl-4 {
    margin: 1.5rem !important; }
  .m-xxl-5 {
    margin: 3rem !important; }
  .m-xxl-auto {
    margin: auto !important; }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xxl-0 {
    margin-top: 0 !important; }
  .mt-xxl-1 {
    margin-top: 0.25rem !important; }
  .mt-xxl-2 {
    margin-top: 0.5rem !important; }
  .mt-xxl-3 {
    margin-top: 1rem !important; }
  .mt-xxl-4 {
    margin-top: 1.5rem !important; }
  .mt-xxl-5 {
    margin-top: 3rem !important; }
  .mt-xxl-auto {
    margin-top: auto !important; }
  .me-xxl-0 {
    margin-right: 0 !important; }
  .me-xxl-1 {
    margin-right: 0.25rem !important; }
  .me-xxl-2 {
    margin-right: 0.5rem !important; }
  .me-xxl-3 {
    margin-right: 1rem !important; }
  .me-xxl-4 {
    margin-right: 1.5rem !important; }
  .me-xxl-5 {
    margin-right: 3rem !important; }
  .me-xxl-auto {
    margin-right: auto !important; }
  .mb-xxl-0 {
    margin-bottom: 0 !important; }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xxl-3 {
    margin-bottom: 1rem !important; }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xxl-5 {
    margin-bottom: 3rem !important; }
  .mb-xxl-auto {
    margin-bottom: auto !important; }
  .ms-xxl-0 {
    margin-left: 0 !important; }
  .ms-xxl-1 {
    margin-left: 0.25rem !important; }
  .ms-xxl-2 {
    margin-left: 0.5rem !important; }
  .ms-xxl-3 {
    margin-left: 1rem !important; }
  .ms-xxl-4 {
    margin-left: 1.5rem !important; }
  .ms-xxl-5 {
    margin-left: 3rem !important; }
  .ms-xxl-auto {
    margin-left: auto !important; }
  .p-xxl-0 {
    padding: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .p-xxl-3 {
    padding: 1rem !important; }
  .p-xxl-4 {
    padding: 1.5rem !important; }
  .p-xxl-5 {
    padding: 3rem !important; }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xxl-0 {
    padding-top: 0 !important; }
  .pt-xxl-1 {
    padding-top: 0.25rem !important; }
  .pt-xxl-2 {
    padding-top: 0.5rem !important; }
  .pt-xxl-3 {
    padding-top: 1rem !important; }
  .pt-xxl-4 {
    padding-top: 1.5rem !important; }
  .pt-xxl-5 {
    padding-top: 3rem !important; }
  .pe-xxl-0 {
    padding-right: 0 !important; }
  .pe-xxl-1 {
    padding-right: 0.25rem !important; }
  .pe-xxl-2 {
    padding-right: 0.5rem !important; }
  .pe-xxl-3 {
    padding-right: 1rem !important; }
  .pe-xxl-4 {
    padding-right: 1.5rem !important; }
  .pe-xxl-5 {
    padding-right: 3rem !important; }
  .pb-xxl-0 {
    padding-bottom: 0 !important; }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xxl-3 {
    padding-bottom: 1rem !important; }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xxl-5 {
    padding-bottom: 3rem !important; }
  .ps-xxl-0 {
    padding-left: 0 !important; }
  .ps-xxl-1 {
    padding-left: 0.25rem !important; }
  .ps-xxl-2 {
    padding-left: 0.5rem !important; }
  .ps-xxl-3 {
    padding-left: 1rem !important; }
  .ps-xxl-4 {
    padding-left: 1.5rem !important; }
  .ps-xxl-5 {
    padding-left: 3rem !important; }
  .gap-xxl-0 {
    gap: 0 !important; }
  .gap-xxl-1 {
    gap: 0.25rem !important; }
  .gap-xxl-2 {
    gap: 0.5rem !important; }
  .gap-xxl-3 {
    gap: 1rem !important; }
  .gap-xxl-4 {
    gap: 1.5rem !important; }
  .gap-xxl-5 {
    gap: 3rem !important; }
  .text-xxl-start {
    text-align: left !important; }
  .text-xxl-end {
    text-align: right !important; }
  .text-xxl-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 5.625rem !important; }
  .fs-2 {
    font-size: 2.1875rem !important; }
  .fs-3 {
    font-size: 1.375rem !important; }
  .fs-5 {
    font-size: 1.40625rem !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; } }

/* ###### COLOR VARIABLES ###### */
/* ##### TEXT LINKS ##### */
/* ###### FONT VARIABLES ###### */
/* ###### NAV VARIABLES ###### */
/* ##### BTN VARIABLES ##### */
/* ##### CARDS VARIABLES ##### */
/* ##### FORM VARIABLES ##### */
/* ##### FOOTER VARIABLES ##### */
a {
  color: #ae804c;
  text-decoration: none; }

a:focus {
  outline: none;
  opacity: .9; }

a:hover {
  outline: none;
  opacity: .9; }

p {
  font-family: "Ysabeau", sans-serif;
  line-height: 30px;
  letter-spacing: .66px;
  font-weight: 400;
  color: #242d38; }

h1, .h1 {
  font-family: quiche-sans;
  font-weight: 500;
  letter-spacing: .45px;
  color: #242d38; }
  @media (min-width: 992px) {
    h1, .h1 {
      font-size: 90px; } }

h2, .h2 {
  font-family: sweet-gothic, sans-serif;
  letter-spacing: 8.75px;
  font-size: 6.1vw;
  color: #242d38;
  text-transform: lowercase;
  font-weight: 300; }
  @media (min-width: 768px) {
    h2, .h2 {
      font-size: 35px; } }

.contact-form h2, .contact-form .h2 {
  text-align: center;
  margin-bottom: 50px; }
  .contact-form h2:after, .contact-form .h2:after {
    content: '';
    display: block;
    position: absolute;
    height: 42px;
    width: 1px;
    background-color: #000;
    top: 34px;
    left: 0;
    right: 0;
    margin: 11px auto;
    z-index: 1000; }
    @media (min-width: 768px) {
      .contact-form h2:after, .contact-form .h2:after {
        top: 42px; } }

h3, .h3 {
  font-family: "Ysabeau", sans-serif, sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #242d38; }

h4, .h4 {
  font-family: "Ysabeau", sans-serif, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #242d38; }

ul {
  font-size: 20px; }
  ul li::marker {
    font-size: 18px; }

.grid-container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(1, 1fr);
  /* 3 columns in the first row with equal width */
  grid-column-gap: 10px;
  /* Gap between grid items */
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start; }
  @media (min-width: 768px) {
    .grid-container {
      grid-template-rows: auto;
      /* 1fr for the first row, auto for the second row */
      grid-template-columns: repeat(3, 1fr); }
      .grid-container.cols-1 {
        grid-template-columns: repeat(1, 1fr); }
      .grid-container.cols-2 {
        grid-template-columns: repeat(2, 1fr); } }
  .grid-container .col-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .grid-container .col-item.full-col {
      grid-column: 1 / 4;
      /* span both columns */ }
    @media (max-width: 767.98px) {
      .grid-container .col-item {
        grid-column: 1 / 4;
        /* span both columns */ } }
  .grid-container .rights {
    grid-column: 1 / span 3;
    /* Expand the last grid item to span across 3 columns */ }

/* Forces images that are saved small to be full width of div be careful of pixel quality */
.aligncenter,
div.aligncenter {
  display: block;
  margin: auto; }

.alignright {
  float: none;
  margin: 10px auto; }
  @media (min-width: 768px) {
    .alignright {
      margin: 5px 0 10px 10px;
      float: right; } }

.alignleft {
  margin: 10px auto; }
  @media (max-width: 767.98px) {
    .alignleft {
      float: left;
      margin: 5px 10px 0 5px; } }

a img.alignright {
  float: right; }

a img.alignleft {
  float: left; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

.bckgrd-img {
  height: 0;
  padding-bottom: 100%;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

@font-face {
  font-family: 'motherload-';
  src: url("/wp-content/themes/charter-steak-house/static/fonts/motherload-.eot?ihxnfk");
  src: url("/wp-content/themes/charter-steak-house/static/fonts/motherload-.eot?ihxnfk#iefix") format("embedded-opentype"), url("/wp-content/themes/charter-steak-house/static/fonts/motherload-.ttf?ihxnfk") format("truetype"), url("/wp-content/themes/charter-steak-house/static/fonts/motherload-.woff?ihxnfk") format("woff"), url("/wp-content/themes/charter-steak-house/static/fonts/motherload-.svg?ihxnfk#motherload-") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'motherload-' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@font-face {
  font-family: 'layout-icons';
  src: url("/wp-content/themes/charter-steak-house/static/fonts/layout-icons.eot?w9af6c");
  src: url("/wp-content/themes/charter-steak-house/static/fonts/layout-icons.eot?w9af6c#iefix") format("embedded-opentype"), url("/wp-content/themes/charter-steak-house/static/fonts/layout-icons.ttf?w9af6c") format("truetype"), url("/wp-content/themes/charter-steak-house/static/fonts/layout-icons.woff?w9af6c") format("woff"), url("/wp-content/themes/charter-steak-house/static/fonts/layout-icons.svg?w9af6c#layout-icons") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="layout-"], [class*=" layout-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'layout-icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.layout-image-outline:before {
  content: "\e901"; }

.layout-image:before {
  content: "\e900"; }

.layout-layout15:before {
  content: "\e902"; }

.layout-layout:before {
  content: "\e903"; }

.layout-layout2:before {
  content: "\e904"; }

.layout-layout3:before {
  content: "\e905"; }

.layout-layout4:before {
  content: "\e906"; }

.layout-layout5:before {
  content: "\e907"; }

.layout-layout6:before {
  content: "\e908"; }

.layout-layout7:before {
  content: "\e909"; }

.layout-layout8:before {
  content: "\e90a"; }

.layout-layout9:before {
  content: "\e90b"; }

.layout-layout10:before {
  content: "\e90c"; }

.layout-layout11:before {
  content: "\e90d"; }

.layout-layout12:before {
  content: "\e90e"; }

.layout-layout13:before {
  content: "\e90f"; }

.layout-layout14:before {
  content: "\e910"; }

.icon-RMC-Circle:before {
  content: "\e900";
  color: #93712b; }

.icon-eye2:before {
  content: "\e000"; }

.icon-paper-clip:before {
  content: "\e001"; }

.icon-mail5:before {
  content: "\e002"; }

.icon-toggle:before {
  content: "\e003"; }

.icon-layout:before {
  content: "\e004"; }

.icon-link2:before {
  content: "\e005"; }

.icon-bell2:before {
  content: "\e006"; }

.icon-lock2:before {
  content: "\e007"; }

.icon-unlock:before {
  content: "\e008"; }

.icon-ribbon:before {
  content: "\e009"; }

.icon-image2:before {
  content: "\e010"; }

.icon-signal:before {
  content: "\e011"; }

.icon-target2:before {
  content: "\e012"; }

.icon-clipboard2:before {
  content: "\e013"; }

.icon-clock3:before {
  content: "\e014"; }

.icon-watch:before {
  content: "\e015"; }

.icon-air-play:before {
  content: "\e016"; }

.icon-camera2:before {
  content: "\e017"; }

.icon-video:before {
  content: "\e018"; }

.icon-disc:before {
  content: "\e019"; }

.icon-printer2:before {
  content: "\e020"; }

.icon-monitor1:before {
  content: "\e021"; }

.icon-server:before {
  content: "\e022"; }

.icon-cog2:before {
  content: "\e023"; }

.icon-heart2:before {
  content: "\e024"; }

.icon-paragraph:before {
  content: "\e025"; }

.icon-align-justify:before {
  content: "\e026"; }

.icon-align-left:before {
  content: "\e027"; }

.icon-align-center:before {
  content: "\e028"; }

.icon-align-right:before {
  content: "\e029"; }

.icon-book2:before {
  content: "\e030"; }

.icon-layers:before {
  content: "\e031"; }

.icon-stack2:before {
  content: "\e032"; }

.icon-stack-2:before {
  content: "\e033"; }

.icon-paper:before {
  content: "\e034"; }

.icon-paper-stack:before {
  content: "\e035"; }

.icon-search2:before {
  content: "\e036"; }

.icon-zoom-in2:before {
  content: "\e037"; }

.icon-zoom-out2:before {
  content: "\e038"; }

.icon-reply2:before {
  content: "\e039"; }

.icon-circle-plus:before {
  content: "\e040"; }

.icon-circle-minus:before {
  content: "\e041"; }

.icon-circle-check:before {
  content: "\e042"; }

.icon-circle-cross:before {
  content: "\e043"; }

.icon-square-plus:before {
  content: "\e044"; }

.icon-square-minus:before {
  content: "\e045"; }

.icon-square-check:before {
  content: "\e046"; }

.icon-square-cross:before {
  content: "\e047"; }

.icon-microphone:before {
  content: "\e048"; }

.icon-record:before {
  content: "\e049"; }

.icon-skip-back:before {
  content: "\e050"; }

.icon-rewind:before {
  content: "\e051"; }

.icon-play4:before {
  content: "\e052"; }

.icon-pause3:before {
  content: "\e053"; }

.icon-stop3:before {
  content: "\e054"; }

.icon-fast-forward:before {
  content: "\e055"; }

.icon-skip-forward:before {
  content: "\e056"; }

.icon-shuffle2:before {
  content: "\e057"; }

.icon-repeat:before {
  content: "\e058"; }

.icon-folder2:before {
  content: "\e059"; }

.icon-umbrella:before {
  content: "\e060"; }

.icon-moon:before {
  content: "\e061"; }

.icon-thermometer:before {
  content: "\e062"; }

.icon-drop:before {
  content: "\e063"; }

.icon-sun2:before {
  content: "\e064"; }

.icon-cloud2:before {
  content: "\e065"; }

.icon-cloud-upload2:before {
  content: "\e066"; }

.icon-cloud-download2:before {
  content: "\e067"; }

.icon-upload4:before {
  content: "\e068"; }

.icon-download4:before {
  content: "\e069"; }

.icon-location3:before {
  content: "\e070"; }

.icon-location-2:before {
  content: "\e071"; }

.icon-map3:before {
  content: "\e072"; }

.icon-battery:before {
  content: "\e073"; }

.icon-head:before {
  content: "\e074"; }

.icon-briefcase2:before {
  content: "\e075"; }

.icon-speech-bubble:before {
  content: "\e076"; }

.icon-anchor:before {
  content: "\e077"; }

.icon-globe:before {
  content: "\e078"; }

.icon-box:before {
  content: "\e079"; }

.icon-reload:before {
  content: "\e080"; }

.icon-share3:before {
  content: "\e081"; }

.icon-marquee:before {
  content: "\e082"; }

.icon-marquee-plus:before {
  content: "\e083"; }

.icon-marquee-minus:before {
  content: "\e084"; }

.icon-tag:before {
  content: "\e085"; }

.icon-power2:before {
  content: "\e086"; }

.icon-command2:before {
  content: "\e087"; }

.icon-alt:before {
  content: "\e088"; }

.icon-esc:before {
  content: "\e089"; }

.icon-bar-graph:before {
  content: "\e090"; }

.icon-bar-graph-2:before {
  content: "\e091"; }

.icon-pie-graph:before {
  content: "\e092"; }

.icon-star:before {
  content: "\e093"; }

.icon-arrow-left3:before {
  content: "\e094"; }

.icon-arrow-right3:before {
  content: "\e095"; }

.icon-arrow-up3:before {
  content: "\e096"; }

.icon-arrow-down3:before {
  content: "\e097"; }

.icon-volume:before {
  content: "\e098"; }

.icon-mute:before {
  content: "\e099"; }

.icon-content-right:before {
  content: "\e100"; }

.icon-content-left:before {
  content: "\e101"; }

.icon-grid:before {
  content: "\e102"; }

.icon-grid-2:before {
  content: "\e103"; }

.icon-columns:before {
  content: "\e104"; }

.icon-loader:before {
  content: "\e105"; }

.icon-bag:before {
  content: "\e106"; }

.icon-ban:before {
  content: "\e107"; }

.icon-flag2:before {
  content: "\e108"; }

.icon-trash:before {
  content: "\e109"; }

.icon-expand:before {
  content: "\e110"; }

.icon-contract:before {
  content: "\e111"; }

.icon-maximize:before {
  content: "\e112"; }

.icon-minimize:before {
  content: "\e113"; }

.icon-plus2:before {
  content: "\e114"; }

.icon-minus2:before {
  content: "\e115"; }

.icon-check:before {
  content: "\e116"; }

.icon-cross2:before {
  content: "\e117"; }

.icon-move:before {
  content: "\e118"; }

.icon-delete:before {
  content: "\e119"; }

.icon-menu5:before {
  content: "\e120"; }

.icon-archive:before {
  content: "\e121"; }

.icon-inbox:before {
  content: "\e122"; }

.icon-outbox:before {
  content: "\e123"; }

.icon-file:before {
  content: "\e124"; }

.icon-file-add:before {
  content: "\e125"; }

.icon-file-subtract:before {
  content: "\e126"; }

.icon-help:before {
  content: "\e127"; }

.icon-open:before {
  content: "\e128"; }

.icon-ellipsis:before {
  content: "\e129"; }

.icon-RMC-Circle-Arrow:before {
  content: "\e901"; }

.icon-RMC-Long-Arrow:before {
  content: "\e902"; }

.icon-RMC-Short-Arrow:before {
  content: "\e903"; }

.icon-phone-square-3:before {
  content: "\e904"; }

.icon-tripadvisor-square:before {
  content: "\e905"; }

.icon-yelp-square:before {
  content: "\e906"; }

.icon-phone-square-2:before {
  content: "\e907"; }

.icon-MK9-Icons-About:before {
  content: "\e908"; }

.icon-MK9-Icons-Doggone:before {
  content: "\e909"; }

.icon-MK9-Icons-DogWashing:before {
  content: "\e90a"; }

.icon-MK9-Icons-Hikes:before {
  content: "\e90b"; }

.icon-MK9-Icons-Hotels:before {
  content: "\e90c"; }

.icon-MK9-Icons-HP-Products:before {
  content: "\e90d"; }

.icon-MK9-Icons-Products-Services:before {
  content: "\e90e"; }

.icon-MK9-Icons-Restaurants:before {
  content: "\e90f"; }

.icon-MK9-Icons-Call:before {
  content: "\e910"; }

.icon-MK9-Icons-FB:before {
  content: "\e911"; }

.icon-MK9-Icons-IG:before {
  content: "\e912"; }

.icon-thin-arrow-left:before {
  content: "\e913"; }

.icon-educate:before {
  content: "\e914"; }

.icon-publications:before {
  content: "\e915"; }

.icon-advocate:before {
  content: "\e916"; }

.icon-monitor:before {
  content: "\e917"; }

.icon-wind-watershed:before {
  content: "\e918"; }

.icon-water-watershed:before {
  content: "\e919"; }

.icon-firework-watershed:before {
  content: "\e91a"; }

.icon-elevation-icon-1:before {
  content: "\e91b"; }

.icon-elevation-icon-02:before {
  content: "\e91c"; }

.icon-elevation-icon-3:before {
  content: "\e91d"; }

.icon-elevation-icon-4:before {
  content: "\e91e"; }

.icon-left-arrow:before {
  content: "\e91f"; }

.icon-square-arrow:before {
  content: "\e920"; }

.icon-Button-Arrow:before {
  content: "\e921"; }

.icon-Draft:before {
  content: "\e922"; }

.icon-FB:before {
  content: "\e923"; }

.icon-Heart:before {
  content: "\e924"; }

.icon-IceCream:before {
  content: "\e925"; }

.icon-IG:before {
  content: "\e926"; }

.icon-Pizza-Beer:before {
  content: "\e927"; }

.icon-Play-Button:before {
  content: "\e928"; }

.icon-Popcorn-Soda:before {
  content: "\e929"; }

.icon-Pretzel:before {
  content: "\e92a"; }

.icon-Rocket:before {
  content: "\e92b"; }

.icon-Soda:before {
  content: "\e92c"; }

.icon-Star:before {
  content: "\e92d"; }

.icon-Wine:before {
  content: "\e92e"; }

.icon-rounded-fat-arrow:before {
  content: "\e92f"; }

.icon-VB-Icon-Bagel:before {
  content: "\e930"; }

.icon-Avid-Web-Icons-FB:before {
  content: "\e931"; }

.icon-instagram-with-circle:before {
  content: "\e932"; }

.icon-Avid-Web-Icons-Twitter:before {
  content: "\e933"; }

.icon-VB-Icon-Gift:before {
  content: "\e934"; }

.icon-VB-Icon-Pizza:before {
  content: "\e935"; }

.icon-agenda:before {
  content: "\e936"; }

.icon-book:before {
  content: "\e937"; }

.icon-new_clock:before {
  content: "\e938"; }

.icon-ballot:before {
  content: "\e939"; }

.icon-government:before {
  content: "\e93a"; }

.icon-new_info:before {
  content: "\e93b"; }

.icon-coins:before {
  content: "\e93c"; }

.icon-property_value:before {
  content: "\e93d"; }

.icon-road:before {
  content: "\e93e"; }

.icon-shake_agreement:before {
  content: "\e93f"; }

.icon-new_contact:before {
  content: "\e940"; }

.icon-magnifier:before {
  content: "\e941"; }

.icon-planning:before {
  content: "\e942"; }

.icon-manager:before {
  content: "\e943"; }

.icon-cal:before {
  content: "\e944"; }

.icon-doc:before {
  content: "\e945"; }

.icon-award:before {
  content: "\e946"; }

.icon-beanie:before {
  content: "\e947"; }

.icon-clock:before {
  content: "\e948"; }

.icon-double:before {
  content: "\e949"; }

.icon-flag:before {
  content: "\e94a"; }

.icon-helmet:before {
  content: "\e94b"; }

.icon-mountain:before {
  content: "\e94c"; }

.icon-plusclock:before {
  content: "\e94d"; }

.icon-single:before {
  content: "\e94e"; }

.icon-snowmobile:before {
  content: "\e94f"; }

.icon-spoonfork:before {
  content: "\e950"; }

.icon-starclock:before {
  content: "\e951"; }

.icon-van:before {
  content: "\e952"; }

.icon-arrow-right-long-fat:before {
  content: "\e953"; }

.icon-thin-arrow:before {
  content: "\e954"; }

.icon-home:before {
  content: "\e955"; }

.icon-home2:before {
  content: "\e956"; }

.icon-home3:before {
  content: "\e957"; }

.icon-office:before {
  content: "\e958"; }

.icon-newspaper:before {
  content: "\e959"; }

.icon-pencil:before {
  content: "\e95a"; }

.icon-pencil2:before {
  content: "\e95b"; }

.icon-quill:before {
  content: "\e95c"; }

.icon-pen:before {
  content: "\e95d"; }

.icon-blog:before {
  content: "\e95e"; }

.icon-eyedropper:before {
  content: "\e95f"; }

.icon-droplet:before {
  content: "\e960"; }

.icon-paint-format:before {
  content: "\e961"; }

.icon-image:before {
  content: "\e962"; }

.icon-images:before {
  content: "\e963"; }

.icon-camera:before {
  content: "\e964"; }

.icon-headphones:before {
  content: "\e965"; }

.icon-music:before {
  content: "\e966"; }

.icon-play:before {
  content: "\e967"; }

.icon-film:before {
  content: "\e968"; }

.icon-video-camera:before {
  content: "\e969"; }

.icon-dice:before {
  content: "\e96a"; }

.icon-pacman:before {
  content: "\e96b"; }

.icon-spades:before {
  content: "\e96c"; }

.icon-clubs:before {
  content: "\e96d"; }

.icon-diamonds:before {
  content: "\e96e"; }

.icon-bullhorn:before {
  content: "\e96f"; }

.icon-connection:before {
  content: "\e970"; }

.icon-podcast:before {
  content: "\e971"; }

.icon-feed:before {
  content: "\e972"; }

.icon-mic:before {
  content: "\e973"; }

.icon-book1:before {
  content: "\e974"; }

.icon-books:before {
  content: "\e975"; }

.icon-library:before {
  content: "\e976"; }

.icon-file-text:before {
  content: "\e977"; }

.icon-profile:before {
  content: "\e978"; }

.icon-file-empty:before {
  content: "\e979"; }

.icon-files-empty:before {
  content: "\e97a"; }

.icon-file-text2:before {
  content: "\e97b"; }

.icon-file-picture:before {
  content: "\e97c"; }

.icon-file-music:before {
  content: "\e97d"; }

.icon-file-play:before {
  content: "\e97e"; }

.icon-file-video:before {
  content: "\e97f"; }

.icon-file-zip:before {
  content: "\e980"; }

.icon-copy:before {
  content: "\e981"; }

.icon-paste:before {
  content: "\e982"; }

.icon-stack:before {
  content: "\e983"; }

.icon-folder:before {
  content: "\e984"; }

.icon-folder-open:before {
  content: "\e985"; }

.icon-folder-plus:before {
  content: "\e986"; }

.icon-folder-minus:before {
  content: "\e987"; }

.icon-folder-download:before {
  content: "\e988"; }

.icon-folder-upload:before {
  content: "\e989"; }

.icon-price-tag:before {
  content: "\e98a"; }

.icon-price-tags:before {
  content: "\e98b"; }

.icon-barcode:before {
  content: "\e98c"; }

.icon-qrcode:before {
  content: "\e98d"; }

.icon-ticket:before {
  content: "\e98e"; }

.icon-cart:before {
  content: "\e98f"; }

.icon-coin-dollar:before {
  content: "\e990"; }

.icon-coin-euro:before {
  content: "\e991"; }

.icon-coin-pound:before {
  content: "\e992"; }

.icon-coin-yen:before {
  content: "\e993"; }

.icon-credit-card:before {
  content: "\e994"; }

.icon-calculator:before {
  content: "\e995"; }

.icon-phone:before {
  content: "\e996"; }

.icon-lifebuoy:before {
  content: "\e997"; }

.icon-phone-hang-up:before {
  content: "\e998"; }

.icon-address-book:before {
  content: "\e999"; }

.icon-envelop:before {
  content: "\e99a"; }

.icon-pushpin:before {
  content: "\e99b"; }

.icon-location:before {
  content: "\e99c"; }

.icon-location2:before {
  content: "\e99d"; }

.icon-compass:before {
  content: "\e99e"; }

.icon-compass2:before {
  content: "\e99f"; }

.icon-map:before {
  content: "\e9a0"; }

.icon-map2:before {
  content: "\e9a1"; }

.icon-history:before {
  content: "\e9a2"; }

.icon-clock1:before {
  content: "\e9a3"; }

.icon-clock2:before {
  content: "\e9a4"; }

.icon-alarm:before {
  content: "\e9a5"; }

.icon-bell:before {
  content: "\e9a6"; }

.icon-stopwatch:before {
  content: "\e9a7"; }

.icon-calendar:before {
  content: "\e9a8"; }

.icon-printer:before {
  content: "\e9a9"; }

.icon-keyboard:before {
  content: "\e9aa"; }

.icon-display:before {
  content: "\e9ab"; }

.icon-laptop:before {
  content: "\e9ac"; }

.icon-mobile:before {
  content: "\e9ad"; }

.icon-mobile2:before {
  content: "\e9ae"; }

.icon-tablet:before {
  content: "\e9af"; }

.icon-tv:before {
  content: "\e9b0"; }

.icon-drawer:before {
  content: "\e9b1"; }

.icon-drawer2:before {
  content: "\e9b2"; }

.icon-box-add:before {
  content: "\e9b3"; }

.icon-box-remove:before {
  content: "\e9b4"; }

.icon-download:before {
  content: "\e9b5"; }

.icon-upload:before {
  content: "\e9b6"; }

.icon-floppy-disk:before {
  content: "\e9b7"; }

.icon-drive:before {
  content: "\e9b8"; }

.icon-database:before {
  content: "\e9b9"; }

.icon-undo:before {
  content: "\e9ba"; }

.icon-redo:before {
  content: "\e9bb"; }

.icon-undo2:before {
  content: "\e9bc"; }

.icon-redo2:before {
  content: "\e9bd"; }

.icon-forward:before {
  content: "\e9be"; }

.icon-reply:before {
  content: "\e9bf"; }

.icon-bubble:before {
  content: "\e9c0"; }

.icon-bubbles:before {
  content: "\e9c1"; }

.icon-bubbles2:before {
  content: "\e9c2"; }

.icon-bubble2:before {
  content: "\e9c3"; }

.icon-bubbles3:before {
  content: "\e9c4"; }

.icon-bubbles4:before {
  content: "\e9c5"; }

.icon-user:before {
  content: "\e9c6"; }

.icon-users2:before {
  content: "\e9c7"; }

.icon-user-plus:before {
  content: "\e9c8"; }

.icon-user-minus:before {
  content: "\e9c9"; }

.icon-user-check:before {
  content: "\e9ca"; }

.icon-user-tie:before {
  content: "\e9cb"; }

.icon-quotes-left:before {
  content: "\e9cc"; }

.icon-quotes-right:before {
  content: "\e9cd"; }

.icon-hour-glass:before {
  content: "\e9ce"; }

.icon-spinner:before {
  content: "\e9cf"; }

.icon-spinner2:before {
  content: "\e9d0"; }

.icon-spinner3:before {
  content: "\e9d1"; }

.icon-spinner4:before {
  content: "\e9d2"; }

.icon-spinner5:before {
  content: "\e9d3"; }

.icon-spinner6:before {
  content: "\e9d4"; }

.icon-spinner7:before {
  content: "\e9d5"; }

.icon-spinner8:before {
  content: "\e9d6"; }

.icon-spinner9:before {
  content: "\e9d7"; }

.icon-spinner10:before {
  content: "\e9d8"; }

.icon-spinner11:before {
  content: "\e9d9"; }

.icon-binoculars:before {
  content: "\e9da"; }

.icon-search1:before {
  content: "\e9db"; }

.icon-zoom-in:before {
  content: "\e9dc"; }

.icon-zoom-out:before {
  content: "\e9dd"; }

.icon-enlarge:before {
  content: "\e9de"; }

.icon-shrink:before {
  content: "\e9df"; }

.icon-enlarge2:before {
  content: "\e9e0"; }

.icon-shrink2:before {
  content: "\e9e1"; }

.icon-key:before {
  content: "\e9e2"; }

.icon-key2:before {
  content: "\e9e3"; }

.icon-lock:before {
  content: "\e9e4"; }

.icon-unlocked:before {
  content: "\e9e5"; }

.icon-wrench:before {
  content: "\e9e6"; }

.icon-equalizer:before {
  content: "\e9e7"; }

.icon-equalizer2:before {
  content: "\e9e8"; }

.icon-cog:before {
  content: "\e9e9"; }

.icon-cogs:before {
  content: "\e9ea"; }

.icon-hammer:before {
  content: "\e9eb"; }

.icon-magic-wand:before {
  content: "\e9ec"; }

.icon-aid-kit:before {
  content: "\e9ed"; }

.icon-bug:before {
  content: "\e9ee"; }

.icon-pie-chart:before {
  content: "\e9ef"; }

.icon-stats-dots:before {
  content: "\e9f0"; }

.icon-stats-bars:before {
  content: "\e9f1"; }

.icon-stats-bars2:before {
  content: "\e9f2"; }

.icon-trophy:before {
  content: "\e9f3"; }

.icon-gift:before {
  content: "\e9f4"; }

.icon-glass:before {
  content: "\e9f5"; }

.icon-glass2:before {
  content: "\e9f6"; }

.icon-mug:before {
  content: "\e9f7"; }

.icon-spoon-knife:before {
  content: "\e9f8"; }

.icon-leaf:before {
  content: "\e9f9"; }

.icon-rocket:before {
  content: "\e9fa"; }

.icon-meter:before {
  content: "\e9fb"; }

.icon-meter2:before {
  content: "\e9fc"; }

.icon-hammer2:before {
  content: "\e9fd"; }

.icon-fire:before {
  content: "\e9fe"; }

.icon-lab:before {
  content: "\e9ff"; }

.icon-magnet:before {
  content: "\ea00"; }

.icon-bin:before {
  content: "\ea01"; }

.icon-bin2:before {
  content: "\ea02"; }

.icon-briefcase:before {
  content: "\ea03"; }

.icon-airplane:before {
  content: "\ea04"; }

.icon-truck:before {
  content: "\ea05"; }

.icon-road1:before {
  content: "\ea06"; }

.icon-accessibility:before {
  content: "\ea07"; }

.icon-target:before {
  content: "\ea08"; }

.icon-shield:before {
  content: "\ea09"; }

.icon-power:before {
  content: "\ea0a"; }

.icon-switch:before {
  content: "\ea0b"; }

.icon-power-cord:before {
  content: "\ea0c"; }

.icon-clipboard:before {
  content: "\ea0d"; }

.icon-list-numbered:before {
  content: "\ea0e"; }

.icon-list:before {
  content: "\ea0f"; }

.icon-list2:before {
  content: "\ea10"; }

.icon-tree:before {
  content: "\ea11"; }

.icon-menu:before {
  content: "\ea12"; }

.icon-menu2:before {
  content: "\ea13"; }

.icon-menu3:before {
  content: "\ea14"; }

.icon-menu4:before {
  content: "\ea15"; }

.icon-cloud:before {
  content: "\ea16"; }

.icon-cloud-download:before {
  content: "\ea17"; }

.icon-cloud-upload:before {
  content: "\ea18"; }

.icon-cloud-check:before {
  content: "\ea19"; }

.icon-download2:before {
  content: "\ea1a"; }

.icon-upload2:before {
  content: "\ea1b"; }

.icon-download3:before {
  content: "\ea1c"; }

.icon-upload3:before {
  content: "\ea1d"; }

.icon-sphere:before {
  content: "\ea1e"; }

.icon-earth:before {
  content: "\ea1f"; }

.icon-link:before {
  content: "\ea20"; }

.icon-flag1:before {
  content: "\ea21"; }

.icon-attachment:before {
  content: "\ea22"; }

.icon-eye:before {
  content: "\ea23"; }

.icon-eye-plus:before {
  content: "\ea24"; }

.icon-eye-minus:before {
  content: "\ea25"; }

.icon-eye-blocked:before {
  content: "\ea26"; }

.icon-bookmark:before {
  content: "\ea27"; }

.icon-bookmarks:before {
  content: "\ea28"; }

.icon-sun:before {
  content: "\ea29"; }

.icon-contrast:before {
  content: "\ea2a"; }

.icon-brightness-contrast:before {
  content: "\ea2b"; }

.icon-star-empty:before {
  content: "\ea2c"; }

.icon-star-half:before {
  content: "\ea2d"; }

.icon-star-full:before {
  content: "\ea2e"; }

.icon-heart:before {
  content: "\ea2f"; }

.icon-heart-broken:before {
  content: "\ea30"; }

.icon-man:before {
  content: "\ea31"; }

.icon-woman:before {
  content: "\ea32"; }

.icon-man-woman:before {
  content: "\ea33"; }

.icon-happy:before {
  content: "\ea34"; }

.icon-happy2:before {
  content: "\ea35"; }

.icon-smile:before {
  content: "\ea36"; }

.icon-smile2:before {
  content: "\ea37"; }

.icon-tongue:before {
  content: "\ea38"; }

.icon-tongue2:before {
  content: "\ea39"; }

.icon-sad:before {
  content: "\ea3a"; }

.icon-sad2:before {
  content: "\ea3b"; }

.icon-wink:before {
  content: "\ea3c"; }

.icon-wink2:before {
  content: "\ea3d"; }

.icon-grin:before {
  content: "\ea3e"; }

.icon-grin2:before {
  content: "\ea3f"; }

.icon-cool:before {
  content: "\ea40"; }

.icon-cool2:before {
  content: "\ea41"; }

.icon-angry:before {
  content: "\ea42"; }

.icon-angry2:before {
  content: "\ea43"; }

.icon-evil:before {
  content: "\ea44"; }

.icon-evil2:before {
  content: "\ea45"; }

.icon-shocked:before {
  content: "\ea46"; }

.icon-shocked2:before {
  content: "\ea47"; }

.icon-baffled:before {
  content: "\ea48"; }

.icon-baffled2:before {
  content: "\ea49"; }

.icon-confused:before {
  content: "\ea4a"; }

.icon-confused2:before {
  content: "\ea4b"; }

.icon-neutral:before {
  content: "\ea4c"; }

.icon-neutral2:before {
  content: "\ea4d"; }

.icon-hipster:before {
  content: "\ea4e"; }

.icon-hipster2:before {
  content: "\ea4f"; }

.icon-wondering:before {
  content: "\ea50"; }

.icon-wondering2:before {
  content: "\ea51"; }

.icon-sleepy:before {
  content: "\ea52"; }

.icon-sleepy2:before {
  content: "\ea53"; }

.icon-frustrated:before {
  content: "\ea54"; }

.icon-frustrated2:before {
  content: "\ea55"; }

.icon-crying:before {
  content: "\ea56"; }

.icon-crying2:before {
  content: "\ea57"; }

.icon-point-up:before {
  content: "\ea58"; }

.icon-point-right:before {
  content: "\ea59"; }

.icon-point-down:before {
  content: "\ea5a"; }

.icon-point-left:before {
  content: "\ea5b"; }

.icon-warning:before {
  content: "\ea5c"; }

.icon-notification:before {
  content: "\ea5d"; }

.icon-question:before {
  content: "\ea5e"; }

.icon-plus:before {
  content: "\ea5f"; }

.icon-minus:before {
  content: "\ea60"; }

.icon-info:before {
  content: "\ea61"; }

.icon-cancel-circle:before {
  content: "\ea62"; }

.icon-blocked:before {
  content: "\ea63"; }

.icon-cross:before {
  content: "\ea64"; }

.icon-checkmark:before {
  content: "\ea65"; }

.icon-checkmark2:before {
  content: "\ea66"; }

.icon-spell-check:before {
  content: "\ea67"; }

.icon-enter:before {
  content: "\ea68"; }

.icon-exit:before {
  content: "\ea69"; }

.icon-play2:before {
  content: "\ea6a"; }

.icon-pause:before {
  content: "\ea6b"; }

.icon-stop:before {
  content: "\ea6c"; }

.icon-previous:before {
  content: "\ea6d"; }

.icon-next:before {
  content: "\ea6e"; }

.icon-backward:before {
  content: "\ea6f"; }

.icon-forward2:before {
  content: "\ea70"; }

.icon-play3:before {
  content: "\ea71"; }

.icon-pause2:before {
  content: "\ea72"; }

.icon-stop2:before {
  content: "\ea73"; }

.icon-backward2:before {
  content: "\ea74"; }

.icon-forward3:before {
  content: "\ea75"; }

.icon-first:before {
  content: "\ea76"; }

.icon-last:before {
  content: "\ea77"; }

.icon-previous2:before {
  content: "\ea78"; }

.icon-next2:before {
  content: "\ea79"; }

.icon-eject:before {
  content: "\ea7a"; }

.icon-volume-high:before {
  content: "\ea7b"; }

.icon-volume-medium:before {
  content: "\ea7c"; }

.icon-volume-low:before {
  content: "\ea7d"; }

.icon-volume-mute:before {
  content: "\ea7e"; }

.icon-volume-mute2:before {
  content: "\ea7f"; }

.icon-volume-increase:before {
  content: "\ea80"; }

.icon-volume-decrease:before {
  content: "\ea81"; }

.icon-loop:before {
  content: "\ea82"; }

.icon-loop2:before {
  content: "\ea83"; }

.icon-infinite:before {
  content: "\ea84"; }

.icon-shuffle:before {
  content: "\ea85"; }

.icon-arrow-up-left:before {
  content: "\ea86"; }

.icon-arrow-up:before {
  content: "\ea87"; }

.icon-arrow-up-right:before {
  content: "\ea88"; }

.icon-arrow-right:before {
  content: "\ea89"; }

.icon-arrow-down-right:before {
  content: "\ea8a"; }

.icon-arrow-down:before {
  content: "\ea8b"; }

.icon-arrow-down-left:before {
  content: "\ea8c"; }

.icon-arrow-left:before {
  content: "\ea8d"; }

.icon-arrow-up-left2:before {
  content: "\ea8e"; }

.icon-arrow-up2:before {
  content: "\ea8f"; }

.icon-arrow-up-right2:before {
  content: "\ea90"; }

.icon-arrow-right2:before {
  content: "\ea91"; }

.icon-arrow-down-right2:before {
  content: "\ea92"; }

.icon-arrow-down2:before {
  content: "\ea93"; }

.icon-arrow-down-left2:before {
  content: "\ea94"; }

.icon-arrow-left2:before {
  content: "\ea95"; }

.icon-circle-up:before {
  content: "\ea96"; }

.icon-circle-right:before {
  content: "\ea97"; }

.icon-circle-down:before {
  content: "\ea98"; }

.icon-circle-left:before {
  content: "\ea99"; }

.icon-tab:before {
  content: "\ea9a"; }

.icon-move-up:before {
  content: "\ea9b"; }

.icon-move-down:before {
  content: "\ea9c"; }

.icon-sort-alpha-asc:before {
  content: "\ea9d"; }

.icon-sort-alpha-desc:before {
  content: "\ea9e"; }

.icon-sort-numeric-asc:before {
  content: "\ea9f"; }

.icon-sort-numberic-desc:before {
  content: "\eaa0"; }

.icon-sort-amount-asc:before {
  content: "\eaa1"; }

.icon-sort-amount-desc:before {
  content: "\eaa2"; }

.icon-command:before {
  content: "\eaa3"; }

.icon-shift:before {
  content: "\eaa4"; }

.icon-ctrl:before {
  content: "\eaa5"; }

.icon-opt:before {
  content: "\eaa6"; }

.icon-checkbox-checked:before {
  content: "\eaa7"; }

.icon-checkbox-unchecked:before {
  content: "\eaa8"; }

.icon-radio-checked:before {
  content: "\eaa9"; }

.icon-radio-checked2:before {
  content: "\eaaa"; }

.icon-radio-unchecked:before {
  content: "\eaab"; }

.icon-crop:before {
  content: "\eaac"; }

.icon-make-group:before {
  content: "\eaad"; }

.icon-ungroup:before {
  content: "\eaae"; }

.icon-scissors:before {
  content: "\eaaf"; }

.icon-filter:before {
  content: "\eab0"; }

.icon-font:before {
  content: "\eab1"; }

.icon-ligature:before {
  content: "\eab2"; }

.icon-ligature2:before {
  content: "\eab3"; }

.icon-text-height:before {
  content: "\eab4"; }

.icon-text-width:before {
  content: "\eab5"; }

.icon-font-size:before {
  content: "\eab6"; }

.icon-bold:before {
  content: "\eab7"; }

.icon-underline:before {
  content: "\eab8"; }

.icon-italic:before {
  content: "\eab9"; }

.icon-strikethrough:before {
  content: "\eaba"; }

.icon-omega:before {
  content: "\eabb"; }

.icon-sigma:before {
  content: "\eabc"; }

.icon-page-break:before {
  content: "\eabd"; }

.icon-superscript:before {
  content: "\eabe"; }

.icon-subscript:before {
  content: "\eabf"; }

.icon-superscript2:before {
  content: "\eac0"; }

.icon-subscript2:before {
  content: "\eac1"; }

.icon-text-color:before {
  content: "\eac2"; }

.icon-pagebreak:before {
  content: "\eac3"; }

.icon-clear-formatting:before {
  content: "\eac4"; }

.icon-table:before {
  content: "\eac5"; }

.icon-table2:before {
  content: "\eac6"; }

.icon-insert-template:before {
  content: "\eac7"; }

.icon-pilcrow:before {
  content: "\eac8"; }

.icon-ltr:before {
  content: "\eac9"; }

.icon-rtl:before {
  content: "\eaca"; }

.icon-section:before {
  content: "\eacb"; }

.icon-paragraph-left:before {
  content: "\eacc"; }

.icon-paragraph-center:before {
  content: "\eacd"; }

.icon-paragraph-right:before {
  content: "\eace"; }

.icon-paragraph-justify:before {
  content: "\eacf"; }

.icon-indent-increase:before {
  content: "\ead0"; }

.icon-indent-decrease:before {
  content: "\ead1"; }

.icon-share:before {
  content: "\ead2"; }

.icon-new-tab:before {
  content: "\ead3"; }

.icon-embed:before {
  content: "\ead4"; }

.icon-embed2:before {
  content: "\ead5"; }

.icon-terminal:before {
  content: "\ead6"; }

.icon-share2:before {
  content: "\ead7"; }

.icon-mail:before {
  content: "\ead8"; }

.icon-mail2:before {
  content: "\ead9"; }

.icon-mail3:before {
  content: "\eada"; }

.icon-mail4:before {
  content: "\eadb"; }

.icon-amazon:before {
  content: "\eadc"; }

.icon-google:before {
  content: "\eadd"; }

.icon-google2:before {
  content: "\eade"; }

.icon-telegram:before {
  content: "\eadf"; }

.icon-google3:before {
  content: "\eae0"; }

.icon-google-plus:before {
  content: "\eae1"; }

.icon-google-plus2:before {
  content: "\eae2"; }

.icon-google-plus3:before {
  content: "\eae3"; }

.icon-hangouts:before {
  content: "\eae4"; }

.icon-google-drive:before {
  content: "\eae5"; }

.icon-facebook:before {
  content: "\eae6"; }

.icon-facebook2:before {
  content: "\eae7"; }

.icon-instagram:before {
  content: "\eae8"; }

.icon-whatsapp:before {
  content: "\eae9"; }

.icon-spotify:before {
  content: "\eaea"; }

.icon-twitter:before {
  content: "\eaeb"; }

.icon-vine:before {
  content: "\eaec"; }

.icon-vk:before {
  content: "\eaed"; }

.icon-renren:before {
  content: "\eaee"; }

.icon-sina-weibo:before {
  content: "\eaef"; }

.icon-rss:before {
  content: "\eaf0"; }

.icon-rss2:before {
  content: "\eaf1"; }

.icon-youtube2:before {
  content: "\eaf2"; }

.icon-youtube22:before {
  content: "\eaf3"; }

.icon-twitch:before {
  content: "\eaf4"; }

.icon-vimeo:before {
  content: "\eaf5"; }

.icon-vimeo2:before {
  content: "\eaf6"; }

.icon-lanyrd:before {
  content: "\eaf7"; }

.icon-flickr:before {
  content: "\eaf8"; }

.icon-flickr2:before {
  content: "\eaf9"; }

.icon-flickr3:before {
  content: "\eafa"; }

.icon-flickr4:before {
  content: "\eafb"; }

.icon-dribbble:before {
  content: "\eafc"; }

.icon-behance:before {
  content: "\eafd"; }

.icon-behance2:before {
  content: "\eafe"; }

.icon-deviantart:before {
  content: "\eaff"; }

.icon-500px:before {
  content: "\eb00"; }

.icon-steam:before {
  content: "\eb01"; }

.icon-steam2:before {
  content: "\eb02"; }

.icon-dropbox:before {
  content: "\eb03"; }

.icon-onedrive:before {
  content: "\eb04"; }

.icon-github:before {
  content: "\eb05"; }

.icon-npm:before {
  content: "\eb06"; }

.icon-basecamp:before {
  content: "\eb07"; }

.icon-trello:before {
  content: "\eb08"; }

.icon-wordpress:before {
  content: "\eb09"; }

.icon-joomla:before {
  content: "\eb0a"; }

.icon-ello:before {
  content: "\eb0b"; }

.icon-blogger:before {
  content: "\eb0c"; }

.icon-blogger2:before {
  content: "\eb0d"; }

.icon-tumblr:before {
  content: "\eb0e"; }

.icon-tumblr2:before {
  content: "\eb0f"; }

.icon-yahoo:before {
  content: "\eb10"; }

.icon-yahoo2:before {
  content: "\eb11"; }

.icon-tux:before {
  content: "\eb12"; }

.icon-appleinc:before {
  content: "\eb13"; }

.icon-finder:before {
  content: "\eb14"; }

.icon-android:before {
  content: "\eb15"; }

.icon-windows:before {
  content: "\eb16"; }

.icon-windows8:before {
  content: "\eb17"; }

.icon-soundcloud:before {
  content: "\eb18"; }

.icon-soundcloud2:before {
  content: "\eb19"; }

.icon-skype:before {
  content: "\eb1a"; }

.icon-reddit:before {
  content: "\eb1b"; }

.icon-hackernews:before {
  content: "\eb1c"; }

.icon-wikipedia:before {
  content: "\eb1d"; }

.icon-linkedin:before {
  content: "\eb1e"; }

.icon-linkedin2:before {
  content: "\eb1f"; }

.icon-lastfm:before {
  content: "\eb20"; }

.icon-lastfm2:before {
  content: "\eb21"; }

.icon-delicious:before {
  content: "\eb22"; }

.icon-stumbleupon:before {
  content: "\eb23"; }

.icon-stumbleupon2:before {
  content: "\eb24"; }

.icon-stackoverflow:before {
  content: "\eb25"; }

.icon-pinterest:before {
  content: "\eb26"; }

.icon-pinterest2:before {
  content: "\eb27"; }

.icon-xing:before {
  content: "\eb28"; }

.icon-xing2:before {
  content: "\eb29"; }

.icon-flattr:before {
  content: "\eb2a"; }

.icon-foursquare:before {
  content: "\eb2b"; }

.icon-yelp:before {
  content: "\eb2c"; }

.icon-paypal:before {
  content: "\eb2d"; }

.icon-chrome:before {
  content: "\eb2e"; }

.icon-firefox:before {
  content: "\eb2f"; }

.icon-IE:before {
  content: "\eb30"; }

.icon-edge:before {
  content: "\eb31"; }

.icon-safari:before {
  content: "\eb32"; }

.icon-opera:before {
  content: "\eb33"; }

.icon-file-pdf:before {
  content: "\eb34"; }

.icon-file-openoffice:before {
  content: "\eb35"; }

.icon-file-word:before {
  content: "\eb36"; }

.icon-file-excel:before {
  content: "\eb37"; }

.icon-libreoffice:before {
  content: "\eb38"; }

.icon-html-five:before {
  content: "\eb39"; }

.icon-html-five2:before {
  content: "\eb3a"; }

.icon-css3:before {
  content: "\eb3b"; }

.icon-git:before {
  content: "\eb3c"; }

.icon-codepen:before {
  content: "\eb3d"; }

.icon-svg:before {
  content: "\eb3e"; }

.icon-IcoMoon:before {
  content: "\eb3f"; }

.icon-gluten:before {
  content: "\eb40"; }

.icon-download22:before {
  content: "\eb41"; }

.icon-arrow-right22:before {
  content: "\eb42"; }

.icon-arrow-left22:before {
  content: "\eb43"; }

.icon-inter-web:before {
  content: "\eb44"; }

.icon-Avid-Web-Icons-IG:before {
  content: "\eb45"; }

.icon-Avid-Web-Icons-Arrow:before {
  content: "\eb46"; }

.icon-light-bulb-new:before {
  content: "\eb47"; }

.icon-calendar-new:before {
  content: "\eb48"; }

.icon-shovel-and-rake:before {
  content: "\eb49"; }

.icon-facebook-square:before {
  content: "\eb4a"; }

.icon-instagram-square-new:before {
  content: "\eb4b"; }

.icon-search:before {
  content: "\eb4c"; }

.icon-glass3:before {
  content: "\f000"; }

.icon-music2:before {
  content: "\f001"; }

.icon-search3:before {
  content: "\f002"; }

.icon-envelope-o:before {
  content: "\f003"; }

.icon-heart3:before {
  content: "\f004"; }

.icon-star2:before {
  content: "\f005"; }

.icon-star-o:before {
  content: "\f006"; }

.icon-user2:before {
  content: "\f007"; }

.icon-film2:before {
  content: "\f008"; }

.icon-th-large:before {
  content: "\f009"; }

.icon-th:before {
  content: "\f00a"; }

.icon-th-list:before {
  content: "\f00b"; }

.icon-check2:before {
  content: "\f00c"; }

.icon-close:before {
  content: "\f00d"; }

.icon-search-plus:before {
  content: "\f00e"; }

.icon-search-minus:before {
  content: "\f010"; }

.icon-power-off:before {
  content: "\f011"; }

.icon-signal2:before {
  content: "\f012"; }

.icon-cog3:before {
  content: "\f013"; }

.icon-trash-o:before {
  content: "\f014"; }

.icon-home4:before {
  content: "\f015"; }

.icon-file-o:before {
  content: "\f016"; }

.icon-clock-o:before {
  content: "\f017"; }

.icon-road2:before {
  content: "\f018"; }

.icon-download5:before {
  content: "\f019"; }

.icon-arrow-circle-o-down:before {
  content: "\f01a"; }

.icon-arrow-circle-o-up:before {
  content: "\f01b"; }

.icon-inbox2:before {
  content: "\f01c"; }

.icon-play-circle-o:before {
  content: "\f01d"; }

.icon-repeat2:before {
  content: "\f01e"; }

.icon-refresh:before {
  content: "\f021"; }

.icon-list-alt:before {
  content: "\f022"; }

.icon-lock3:before {
  content: "\f023"; }

.icon-flag3:before {
  content: "\f024"; }

.icon-headphones2:before {
  content: "\f025"; }

.icon-volume-off:before {
  content: "\f026"; }

.icon-volume-down:before {
  content: "\f027"; }

.icon-volume-up:before {
  content: "\f028"; }

.icon-qrcode2:before {
  content: "\f029"; }

.icon-barcode2:before {
  content: "\f02a"; }

.icon-tag2:before {
  content: "\f02b"; }

.icon-tags:before {
  content: "\f02c"; }

.icon-book3:before {
  content: "\f02d"; }

.icon-bookmark2:before {
  content: "\f02e"; }

.icon-print:before {
  content: "\f02f"; }

.icon-camera3:before {
  content: "\f030"; }

.icon-font2:before {
  content: "\f031"; }

.icon-bold2:before {
  content: "\f032"; }

.icon-italic2:before {
  content: "\f033"; }

.icon-text-height2:before {
  content: "\f034"; }

.icon-text-width2:before {
  content: "\f035"; }

.icon-align-left2:before {
  content: "\f036"; }

.icon-align-center2:before {
  content: "\f037"; }

.icon-align-right2:before {
  content: "\f038"; }

.icon-align-justify2:before {
  content: "\f039"; }

.icon-list3:before {
  content: "\f03a"; }

.icon-dedent:before {
  content: "\f03b"; }

.icon-indent:before {
  content: "\f03c"; }

.icon-video-camera2:before {
  content: "\f03d"; }

.icon-image3:before {
  content: "\f03e"; }

.icon-pencil3:before {
  content: "\f040"; }

.icon-map-marker:before {
  content: "\f041"; }

.icon-adjust:before {
  content: "\f042"; }

.icon-tint:before {
  content: "\f043"; }

.icon-edit:before {
  content: "\f044"; }

.icon-share-square-o:before {
  content: "\f045"; }

.icon-check-square-o:before {
  content: "\f046"; }

.icon-arrows:before {
  content: "\f047"; }

.icon-step-backward:before {
  content: "\f048"; }

.icon-fast-backward:before {
  content: "\f049"; }

.icon-backward3:before {
  content: "\f04a"; }

.icon-play5:before {
  content: "\f04b"; }

.icon-pause4:before {
  content: "\f04c"; }

.icon-stop4:before {
  content: "\f04d"; }

.icon-forward4:before {
  content: "\f04e"; }

.icon-fast-forward2:before {
  content: "\f050"; }

.icon-step-forward:before {
  content: "\f051"; }

.icon-eject2:before {
  content: "\f052"; }

.icon-chevron-left:before {
  content: "\f053"; }

.icon-chevron-right:before {
  content: "\f054"; }

.icon-plus-circle:before {
  content: "\f055"; }

.icon-minus-circle:before {
  content: "\f056"; }

.icon-times-circle:before {
  content: "\f057"; }

.icon-check-circle:before {
  content: "\f058"; }

.icon-question-circle:before {
  content: "\f059"; }

.icon-info-circle:before {
  content: "\f05a"; }

.icon-crosshairs:before {
  content: "\f05b"; }

.icon-times-circle-o:before {
  content: "\f05c"; }

.icon-check-circle-o:before {
  content: "\f05d"; }

.icon-ban2:before {
  content: "\f05e"; }

.icon-arrow-left4:before {
  content: "\f060"; }

.icon-arrow-right4:before {
  content: "\f061"; }

.icon-arrow-up4:before {
  content: "\f062"; }

.icon-arrow-down4:before {
  content: "\f063"; }

.icon-mail-forward:before {
  content: "\f064"; }

.icon-expand2:before {
  content: "\f065"; }

.icon-compress:before {
  content: "\f066"; }

.icon-plus3:before {
  content: "\f067"; }

.icon-minus3:before {
  content: "\f068"; }

.icon-asterisk:before {
  content: "\f069"; }

.icon-exclamation-circle:before {
  content: "\f06a"; }

.icon-gift2:before {
  content: "\f06b"; }

.icon-leaf2:before {
  content: "\f06c"; }

.icon-fire2:before {
  content: "\f06d"; }

.icon-eye3:before {
  content: "\f06e"; }

.icon-eye-slash:before {
  content: "\f070"; }

.icon-exclamation-triangle:before {
  content: "\f071"; }

.icon-plane:before {
  content: "\f072"; }

.icon-calendar2:before {
  content: "\f073"; }

.icon-random:before {
  content: "\f074"; }

.icon-comment:before {
  content: "\f075"; }

.icon-magnet2:before {
  content: "\f076"; }

.icon-chevron-up:before {
  content: "\f077"; }

.icon-chevron-down:before {
  content: "\f078"; }

.icon-retweet:before {
  content: "\f079"; }

.icon-shopping-cart:before {
  content: "\f07a"; }

.icon-folder3:before {
  content: "\f07b"; }

.icon-folder-open2:before {
  content: "\f07c"; }

.icon-arrows-v:before {
  content: "\f07d"; }

.icon-arrows-h:before {
  content: "\f07e"; }

.icon-bar-chart:before {
  content: "\f080"; }

.icon-twitter-square:before {
  content: "\f081"; }

.icon-camera-retro:before {
  content: "\f083"; }

.icon-key3:before {
  content: "\f084"; }

.icon-cogs2:before {
  content: "\f085"; }

.icon-comments:before {
  content: "\f086"; }

.icon-thumbs-o-up:before {
  content: "\f087"; }

.icon-thumbs-o-down:before {
  content: "\f088"; }

.icon-star-half2:before {
  content: "\f089"; }

.icon-heart-o:before {
  content: "\f08a"; }

.icon-sign-out:before {
  content: "\f08b"; }

.icon-linkedin-square:before {
  content: "\f08c"; }

.icon-thumb-tack:before {
  content: "\f08d"; }

.icon-external-link:before {
  content: "\f08e"; }

.icon-sign-in:before {
  content: "\f090"; }

.icon-trophy2:before {
  content: "\f091"; }

.icon-github-square:before {
  content: "\f092"; }

.icon-upload5:before {
  content: "\f093"; }

.icon-lemon-o:before {
  content: "\f094"; }

.icon-phone2:before {
  content: "\f095"; }

.icon-square-o:before {
  content: "\f096"; }

.icon-bookmark-o:before {
  content: "\f097"; }

.icon-phone-square:before {
  content: "\f098"; }

.icon-twitter2:before {
  content: "\f099"; }

.icon-facebook3:before {
  content: "\f09a"; }

.icon-github2:before {
  content: "\f09b"; }

.icon-unlock2:before {
  content: "\f09c"; }

.icon-credit-card2:before {
  content: "\f09d"; }

.icon-feed2:before {
  content: "\f09e"; }

.icon-hdd-o:before {
  content: "\f0a0"; }

.icon-bullhorn2:before {
  content: "\f0a1"; }

.icon-bell-o:before {
  content: "\f0a2"; }

.icon-certificate:before {
  content: "\f0a3"; }

.icon-hand-o-right:before {
  content: "\f0a4"; }

.icon-hand-o-left:before {
  content: "\f0a5"; }

.icon-hand-o-up:before {
  content: "\f0a6"; }

.icon-hand-o-down:before {
  content: "\f0a7"; }

.icon-arrow-circle-left:before {
  content: "\f0a8"; }

.icon-arrow-circle-right:before {
  content: "\f0a9"; }

.icon-arrow-circle-up:before {
  content: "\f0aa"; }

.icon-arrow-circle-down:before {
  content: "\f0ab"; }

.icon-globe2:before {
  content: "\f0ac"; }

.icon-wrench2:before {
  content: "\f0ad"; }

.icon-tasks:before {
  content: "\f0ae"; }

.icon-filter2:before {
  content: "\f0b0"; }

.icon-briefcase3:before {
  content: "\f0b1"; }

.icon-arrows-alt:before {
  content: "\f0b2"; }

.icon-group:before {
  content: "\f0c0"; }

.icon-chain:before {
  content: "\f0c1"; }

.icon-cloud3:before {
  content: "\f0c2"; }

.icon-flask:before {
  content: "\f0c3"; }

.icon-cut:before {
  content: "\f0c4"; }

.icon-copy2:before {
  content: "\f0c5"; }

.icon-paperclip:before {
  content: "\f0c6"; }

.icon-floppy-o:before {
  content: "\f0c7"; }

.icon-square:before {
  content: "\f0c8"; }

.icon-bars:before {
  content: "\f0c9"; }

.icon-list-ul:before {
  content: "\f0ca"; }

.icon-list-ol:before {
  content: "\f0cb"; }

.icon-strikethrough2:before {
  content: "\f0cc"; }

.icon-underline2:before {
  content: "\f0cd"; }

.icon-table3:before {
  content: "\f0ce"; }

.icon-magic:before {
  content: "\f0d0"; }

.icon-truck2:before {
  content: "\f0d1"; }

.icon-pinterest3:before {
  content: "\f0d2"; }

.icon-pinterest-square:before {
  content: "\f0d3"; }

.icon-google-plus-square:before {
  content: "\f0d4"; }

.icon-google-plus4:before {
  content: "\f0d5"; }

.icon-money:before {
  content: "\f0d6"; }

.icon-caret-down:before {
  content: "\f0d7"; }

.icon-caret-up:before {
  content: "\f0d8"; }

.icon-caret-left:before {
  content: "\f0d9"; }

.icon-caret-right:before {
  content: "\f0da"; }

.icon-columns2:before {
  content: "\f0db"; }

.icon-sort:before {
  content: "\f0dc"; }

.icon-sort-desc:before {
  content: "\f0dd"; }

.icon-sort-asc:before {
  content: "\f0de"; }

.icon-envelope:before {
  content: "\f0e0"; }

.icon-linkedin3:before {
  content: "\f0e1"; }

.icon-rotate-left:before {
  content: "\f0e2"; }

.icon-gavel:before {
  content: "\f0e3"; }

.icon-dashboard:before {
  content: "\f0e4"; }

.icon-comment-o:before {
  content: "\f0e5"; }

.icon-comments-o:before {
  content: "\f0e6"; }

.icon-bolt:before {
  content: "\f0e7"; }

.icon-sitemap:before {
  content: "\f0e8"; }

.icon-umbrella2:before {
  content: "\f0e9"; }

.icon-clipboard3:before {
  content: "\f0ea"; }

.icon-lightbulb-o:before {
  content: "\f0eb"; }

.icon-exchange:before {
  content: "\f0ec"; }

.icon-cloud-download3:before {
  content: "\f0ed"; }

.icon-cloud-upload3:before {
  content: "\f0ee"; }

.icon-user-md:before {
  content: "\f0f0"; }

.icon-stethoscope:before {
  content: "\f0f1"; }

.icon-suitcase:before {
  content: "\f0f2"; }

.icon-bell3:before {
  content: "\f0f3"; }

.icon-coffee:before {
  content: "\f0f4"; }

.icon-cutlery:before {
  content: "\f0f5"; }

.icon-file-text-o:before {
  content: "\f0f6"; }

.icon-building-o:before {
  content: "\f0f7"; }

.icon-hospital-o:before {
  content: "\f0f8"; }

.icon-ambulance:before {
  content: "\f0f9"; }

.icon-medkit:before {
  content: "\f0fa"; }

.icon-fighter-jet:before {
  content: "\f0fb"; }

.icon-beer:before {
  content: "\f0fc"; }

.icon-h-square:before {
  content: "\f0fd"; }

.icon-plus-square:before {
  content: "\f0fe"; }

.icon-angle-double-left:before {
  content: "\f100"; }

.icon-angle-double-right:before {
  content: "\f101"; }

.icon-angle-double-up:before {
  content: "\f102"; }

.icon-angle-double-down:before {
  content: "\f103"; }

.icon-angle-left:before {
  content: "\f104"; }

.icon-angle-right:before {
  content: "\f105"; }

.icon-angle-up:before {
  content: "\f106"; }

.icon-angle-down:before {
  content: "\f107"; }

.icon-desktop:before {
  content: "\f108"; }

.icon-laptop2:before {
  content: "\f109"; }

.icon-tablet2:before {
  content: "\f10a"; }

.icon-mobile3:before {
  content: "\f10b"; }

.icon-circle-o:before {
  content: "\f10c"; }

.icon-quote-left:before {
  content: "\f10d"; }

.icon-quote-right:before {
  content: "\f10e"; }

.icon-spinner12:before {
  content: "\f110"; }

.icon-circle:before {
  content: "\f111"; }

.icon-mail-reply:before {
  content: "\f112"; }

.icon-github-alt:before {
  content: "\f113"; }

.icon-folder-o:before {
  content: "\f114"; }

.icon-folder-open-o:before {
  content: "\f115"; }

.icon-smile-o:before {
  content: "\f118"; }

.icon-frown-o:before {
  content: "\f119"; }

.icon-meh-o:before {
  content: "\f11a"; }

.icon-gamepad:before {
  content: "\f11b"; }

.icon-keyboard-o:before {
  content: "\f11c"; }

.icon-flag-o:before {
  content: "\f11d"; }

.icon-flag-checkered:before {
  content: "\f11e"; }

.icon-terminal2:before {
  content: "\f120"; }

.icon-code:before {
  content: "\f121"; }

.icon-mail-reply-all:before {
  content: "\f122"; }

.icon-star-half-empty:before {
  content: "\f123"; }

.icon-location-arrow:before {
  content: "\f124"; }

.icon-crop2:before {
  content: "\f125"; }

.icon-code-fork:before {
  content: "\f126"; }

.icon-chain-broken:before {
  content: "\f127"; }

.icon-question2:before {
  content: "\f128"; }

.icon-info2:before {
  content: "\f129"; }

.icon-exclamation:before {
  content: "\f12a"; }

.icon-superscript3:before {
  content: "\f12b"; }

.icon-subscript3:before {
  content: "\f12c"; }

.icon-eraser:before {
  content: "\f12d"; }

.icon-puzzle-piece:before {
  content: "\f12e"; }

.icon-microphone2:before {
  content: "\f130"; }

.icon-microphone-slash:before {
  content: "\f131"; }

.icon-shield2:before {
  content: "\f132"; }

.icon-calendar-o:before {
  content: "\f133"; }

.icon-fire-extinguisher:before {
  content: "\f134"; }

.icon-rocket2:before {
  content: "\f135"; }

.icon-maxcdn:before {
  content: "\f136"; }

.icon-chevron-circle-left:before {
  content: "\f137"; }

.icon-chevron-circle-right:before {
  content: "\f138"; }

.icon-chevron-circle-up:before {
  content: "\f139"; }

.icon-chevron-circle-down:before {
  content: "\f13a"; }

.icon-html5:before {
  content: "\f13b"; }

.icon-css32:before {
  content: "\f13c"; }

.icon-anchor2:before {
  content: "\f13d"; }

.icon-unlock-alt:before {
  content: "\f13e"; }

.icon-bullseye:before {
  content: "\f140"; }

.icon-ellipsis-h:before {
  content: "\f141"; }

.icon-ellipsis-v:before {
  content: "\f142"; }

.icon-rss-square:before {
  content: "\f143"; }

.icon-play-circle:before {
  content: "\f144"; }

.icon-ticket2:before {
  content: "\f145"; }

.icon-minus-square:before {
  content: "\f146"; }

.icon-minus-square-o:before {
  content: "\f147"; }

.icon-level-up:before {
  content: "\f148"; }

.icon-level-down:before {
  content: "\f149"; }

.icon-check-square:before {
  content: "\f14a"; }

.icon-pencil-square:before {
  content: "\f14b"; }

.icon-external-link-square:before {
  content: "\f14c"; }

.icon-share-square:before {
  content: "\f14d"; }

.icon-compass3:before {
  content: "\f14e"; }

.icon-caret-square-o-down:before {
  content: "\f150"; }

.icon-caret-square-o-up:before {
  content: "\f151"; }

.icon-caret-square-o-right:before {
  content: "\f152"; }

.icon-eur:before {
  content: "\f153"; }

.icon-gbp:before {
  content: "\f154"; }

.icon-dollar:before {
  content: "\f155"; }

.icon-inr:before {
  content: "\f156"; }

.icon-cny:before {
  content: "\f157"; }

.icon-rouble:before {
  content: "\f158"; }

.icon-krw:before {
  content: "\f159"; }

.icon-bitcoin:before {
  content: "\f15a"; }

.icon-file2:before {
  content: "\f15b"; }

.icon-file-text3:before {
  content: "\f15c"; }

.icon-sort-alpha-asc2:before {
  content: "\f15d"; }

.icon-sort-alpha-desc2:before {
  content: "\f15e"; }

.icon-sort-amount-asc2:before {
  content: "\f160"; }

.icon-sort-amount-desc2:before {
  content: "\f161"; }

.icon-sort-numeric-asc2:before {
  content: "\f162"; }

.icon-sort-numeric-desc:before {
  content: "\f163"; }

.icon-thumbs-up:before {
  content: "\f164"; }

.icon-thumbs-down:before {
  content: "\f165"; }

.icon-youtube-square:before {
  content: "\f166"; }

.icon-youtube:before {
  content: "\f167"; }

.icon-xing3:before {
  content: "\f168"; }

.icon-xing-square:before {
  content: "\f169"; }

.icon-youtube-play:before {
  content: "\f16a"; }

.icon-dropbox2:before {
  content: "\f16b"; }

.icon-stack-overflow:before {
  content: "\f16c"; }

.icon-instagram2:before {
  content: "\f16d"; }

.icon-flickr5:before {
  content: "\f16e"; }

.icon-adn:before {
  content: "\f170"; }

.icon-bitbucket:before {
  content: "\f171"; }

.icon-bitbucket-square:before {
  content: "\f172"; }

.icon-tumblr3:before {
  content: "\f173"; }

.icon-tumblr-square:before {
  content: "\f174"; }

.icon-long-arrow-down:before {
  content: "\f175"; }

.icon-long-arrow-up:before {
  content: "\f176"; }

.icon-long-arrow-left:before {
  content: "\f177"; }

.icon-long-arrow-right:before {
  content: "\f178"; }

.icon-apple:before {
  content: "\f179"; }

.icon-windows2:before {
  content: "\f17a"; }

.icon-android2:before {
  content: "\f17b"; }

.icon-linux:before {
  content: "\f17c"; }

.icon-dribbble2:before {
  content: "\f17d"; }

.icon-skype2:before {
  content: "\f17e"; }

.icon-foursquare2:before {
  content: "\f180"; }

.icon-trello2:before {
  content: "\f181"; }

.icon-female:before {
  content: "\f182"; }

.icon-male:before {
  content: "\f183"; }

.icon-gittip:before {
  content: "\f184"; }

.icon-sun-o:before {
  content: "\f185"; }

.icon-moon-o:before {
  content: "\f186"; }

.icon-archive2:before {
  content: "\f187"; }

.icon-bug2:before {
  content: "\f188"; }

.icon-vk2:before {
  content: "\f189"; }

.icon-weibo:before {
  content: "\f18a"; }

.icon-renren2:before {
  content: "\f18b"; }

.icon-pagelines:before {
  content: "\f18c"; }

.icon-stack-exchange:before {
  content: "\f18d"; }

.icon-arrow-circle-o-right:before {
  content: "\f18e"; }

.icon-arrow-circle-o-left:before {
  content: "\f190"; }

.icon-caret-square-o-left:before {
  content: "\f191"; }

.icon-dot-circle-o:before {
  content: "\f192"; }

.icon-wheelchair:before {
  content: "\f193"; }

.icon-vimeo-square:before {
  content: "\f194"; }

.icon-try:before {
  content: "\f195"; }

.icon-plus-square-o:before {
  content: "\f196"; }

.icon-space-shuttle:before {
  content: "\f197"; }

.icon-slack:before {
  content: "\f198"; }

.icon-envelope-square:before {
  content: "\f199"; }

.icon-wordpress2:before {
  content: "\f19a"; }

.icon-openid:before {
  content: "\f19b"; }

.icon-bank:before {
  content: "\f19c"; }

.icon-graduation-cap:before {
  content: "\f19d"; }

.icon-yahoo3:before {
  content: "\f19e"; }

.icon-google4:before {
  content: "\f1a0"; }

.icon-reddit2:before {
  content: "\f1a1"; }

.icon-reddit-square:before {
  content: "\f1a2"; }

.icon-stumbleupon-circle:before {
  content: "\f1a3"; }

.icon-stumbleupon3:before {
  content: "\f1a4"; }

.icon-delicious2:before {
  content: "\f1a5"; }

.icon-digg:before {
  content: "\f1a6"; }

.icon-pied-piper-pp:before {
  content: "\f1a7"; }

.icon-pied-piper-alt:before {
  content: "\f1a8"; }

.icon-drupal:before {
  content: "\f1a9"; }

.icon-joomla2:before {
  content: "\f1aa"; }

.icon-language:before {
  content: "\f1ab"; }

.icon-fax:before {
  content: "\f1ac"; }

.icon-building:before {
  content: "\f1ad"; }

.icon-child:before {
  content: "\f1ae"; }

.icon-paw:before {
  content: "\f1b0"; }

.icon-spoon:before {
  content: "\f1b1"; }

.icon-cube:before {
  content: "\f1b2"; }

.icon-cubes:before {
  content: "\f1b3"; }

.icon-behance3:before {
  content: "\f1b4"; }

.icon-behance-square:before {
  content: "\f1b5"; }

.icon-steam3:before {
  content: "\f1b6"; }

.icon-steam-square:before {
  content: "\f1b7"; }

.icon-recycle:before {
  content: "\f1b8"; }

.icon-automobile:before {
  content: "\f1b9"; }

.icon-cab:before {
  content: "\f1ba"; }

.icon-tree2:before {
  content: "\f1bb"; }

.icon-spotify2:before {
  content: "\f1bc"; }

.icon-deviantart2:before {
  content: "\f1bd"; }

.icon-soundcloud3:before {
  content: "\f1be"; }

.icon-database2:before {
  content: "\f1c0"; }

.icon-file-pdf-o:before {
  content: "\f1c1"; }

.icon-file-word-o:before {
  content: "\f1c2"; }

.icon-file-excel-o:before {
  content: "\f1c3"; }

.icon-file-powerpoint-o:before {
  content: "\f1c4"; }

.icon-file-image-o:before {
  content: "\f1c5"; }

.icon-file-archive-o:before {
  content: "\f1c6"; }

.icon-file-audio-o:before {
  content: "\f1c7"; }

.icon-file-movie-o:before {
  content: "\f1c8"; }

.icon-file-code-o:before {
  content: "\f1c9"; }

.icon-vine2:before {
  content: "\f1ca"; }

.icon-codepen2:before {
  content: "\f1cb"; }

.icon-jsfiddle:before {
  content: "\f1cc"; }

.icon-life-bouy:before {
  content: "\f1cd"; }

.icon-circle-o-notch:before {
  content: "\f1ce"; }

.icon-ra:before {
  content: "\f1d0"; }

.icon-empire:before {
  content: "\f1d1"; }

.icon-git-square:before {
  content: "\f1d2"; }

.icon-git2:before {
  content: "\f1d3"; }

.icon-hacker-news:before {
  content: "\f1d4"; }

.icon-tencent-weibo:before {
  content: "\f1d5"; }

.icon-qq:before {
  content: "\f1d6"; }

.icon-wechat:before {
  content: "\f1d7"; }

.icon-paper-plane:before {
  content: "\f1d8"; }

.icon-paper-plane-o:before {
  content: "\f1d9"; }

.icon-history2:before {
  content: "\f1da"; }

.icon-circle-thin:before {
  content: "\f1db"; }

.icon-header:before {
  content: "\f1dc"; }

.icon-paragraph2:before {
  content: "\f1dd"; }

.icon-sliders:before {
  content: "\f1de"; }

.icon-share-alt:before {
  content: "\f1e0"; }

.icon-share-alt-square:before {
  content: "\f1e1"; }

.icon-bomb:before {
  content: "\f1e2"; }

.icon-futbol-o:before {
  content: "\f1e3"; }

.icon-tty:before {
  content: "\f1e4"; }

.icon-binoculars2:before {
  content: "\f1e5"; }

.icon-plug:before {
  content: "\f1e6"; }

.icon-slideshare:before {
  content: "\f1e7"; }

.icon-twitch2:before {
  content: "\f1e8"; }

.icon-yelp2:before {
  content: "\f1e9"; }

.icon-newspaper-o:before {
  content: "\f1ea"; }

.icon-wifi:before {
  content: "\f1eb"; }

.icon-calculator2:before {
  content: "\f1ec"; }

.icon-paypal2:before {
  content: "\f1ed"; }

.icon-google-wallet:before {
  content: "\f1ee"; }

.icon-cc-visa:before {
  content: "\f1f0"; }

.icon-cc-mastercard:before {
  content: "\f1f1"; }

.icon-cc-discover:before {
  content: "\f1f2"; }

.icon-cc-amex:before {
  content: "\f1f3"; }

.icon-cc-paypal:before {
  content: "\f1f4"; }

.icon-cc-stripe:before {
  content: "\f1f5"; }

.icon-bell-slash:before {
  content: "\f1f6"; }

.icon-bell-slash-o:before {
  content: "\f1f7"; }

.icon-trash2:before {
  content: "\f1f8"; }

.icon-copyright:before {
  content: "\f1f9"; }

.icon-at:before {
  content: "\f1fa"; }

.icon-eyedropper2:before {
  content: "\f1fb"; }

.icon-paint-brush:before {
  content: "\f1fc"; }

.icon-birthday-cake:before {
  content: "\f1fd"; }

.icon-area-chart:before {
  content: "\f1fe"; }

.icon-pie-chart2:before {
  content: "\f200"; }

.icon-line-chart:before {
  content: "\f201"; }

.icon-lastfm3:before {
  content: "\f202"; }

.icon-lastfm-square:before {
  content: "\f203"; }

.icon-toggle-off:before {
  content: "\f204"; }

.icon-toggle-on:before {
  content: "\f205"; }

.icon-bicycle:before {
  content: "\f206"; }

.icon-bus:before {
  content: "\f207"; }

.icon-ioxhost:before {
  content: "\f208"; }

.icon-angellist:before {
  content: "\f209"; }

.icon-cc:before {
  content: "\f20a"; }

.icon-ils:before {
  content: "\f20b"; }

.icon-meanpath:before {
  content: "\f20c"; }

.icon-buysellads:before {
  content: "\f20d"; }

.icon-connectdevelop:before {
  content: "\f20e"; }

.icon-dashcube:before {
  content: "\f210"; }

.icon-forumbee:before {
  content: "\f211"; }

.icon-leanpub:before {
  content: "\f212"; }

.icon-sellsy:before {
  content: "\f213"; }

.icon-shirtsinbulk:before {
  content: "\f214"; }

.icon-simplybuilt:before {
  content: "\f215"; }

.icon-skyatlas:before {
  content: "\f216"; }

.icon-cart-plus:before {
  content: "\f217"; }

.icon-cart-arrow-down:before {
  content: "\f218"; }

.icon-diamond:before {
  content: "\f219"; }

.icon-ship:before {
  content: "\f21a"; }

.icon-user-secret:before {
  content: "\f21b"; }

.icon-motorcycle:before {
  content: "\f21c"; }

.icon-street-view:before {
  content: "\f21d"; }

.icon-heartbeat:before {
  content: "\f21e"; }

.icon-venus:before {
  content: "\f221"; }

.icon-mars:before {
  content: "\f222"; }

.icon-mercury:before {
  content: "\f223"; }

.icon-intersex:before {
  content: "\f224"; }

.icon-transgender-alt:before {
  content: "\f225"; }

.icon-venus-double:before {
  content: "\f226"; }

.icon-mars-double:before {
  content: "\f227"; }

.icon-venus-mars:before {
  content: "\f228"; }

.icon-mars-stroke:before {
  content: "\f229"; }

.icon-mars-stroke-v:before {
  content: "\f22a"; }

.icon-mars-stroke-h:before {
  content: "\f22b"; }

.icon-neuter:before {
  content: "\f22c"; }

.icon-genderless:before {
  content: "\f22d"; }

.icon-facebook-official:before {
  content: "\f230"; }

.icon-pinterest-p:before {
  content: "\f231"; }

.icon-whatsapp2:before {
  content: "\f232"; }

.icon-server2:before {
  content: "\f233"; }

.icon-user-plus2:before {
  content: "\f234"; }

.icon-user-times:before {
  content: "\f235"; }

.icon-bed:before {
  content: "\f236"; }

.icon-viacoin:before {
  content: "\f237"; }

.icon-train:before {
  content: "\f238"; }

.icon-subway:before {
  content: "\f239"; }

.icon-medium:before {
  content: "\f23a"; }

.icon-y-combinator:before {
  content: "\f23b"; }

.icon-optin-monster:before {
  content: "\f23c"; }

.icon-opencart:before {
  content: "\f23d"; }

.icon-expeditedssl:before {
  content: "\f23e"; }

.icon-battery2:before {
  content: "\f240"; }

.icon-battery-3:before {
  content: "\f241"; }

.icon-battery-2:before {
  content: "\f242"; }

.icon-battery-1:before {
  content: "\f243"; }

.icon-battery-0:before {
  content: "\f244"; }

.icon-mouse-pointer:before {
  content: "\f245"; }

.icon-i-cursor:before {
  content: "\f246"; }

.icon-object-group:before {
  content: "\f247"; }

.icon-object-ungroup:before {
  content: "\f248"; }

.icon-sticky-note:before {
  content: "\f249"; }

.icon-sticky-note-o:before {
  content: "\f24a"; }

.icon-cc-jcb:before {
  content: "\f24b"; }

.icon-cc-diners-club:before {
  content: "\f24c"; }

.icon-clone:before {
  content: "\f24d"; }

.icon-balance-scale:before {
  content: "\f24e"; }

.icon-hourglass-o:before {
  content: "\f250"; }

.icon-hourglass-1:before {
  content: "\f251"; }

.icon-hourglass-2:before {
  content: "\f252"; }

.icon-hourglass-3:before {
  content: "\f253"; }

.icon-hourglass:before {
  content: "\f254"; }

.icon-hand-grab-o:before {
  content: "\f255"; }

.icon-hand-paper-o:before {
  content: "\f256"; }

.icon-hand-scissors-o:before {
  content: "\f257"; }

.icon-hand-lizard-o:before {
  content: "\f258"; }

.icon-hand-spock-o:before {
  content: "\f259"; }

.icon-hand-pointer-o:before {
  content: "\f25a"; }

.icon-hand-peace-o:before {
  content: "\f25b"; }

.icon-trademark:before {
  content: "\f25c"; }

.icon-registered:before {
  content: "\f25d"; }

.icon-creative-commons:before {
  content: "\f25e"; }

.icon-gg:before {
  content: "\f260"; }

.icon-gg-circle:before {
  content: "\f261"; }

.icon-tripadvisor:before {
  content: "\f262"; }

.icon-odnoklassniki:before {
  content: "\f263"; }

.icon-odnoklassniki-square:before {
  content: "\f264"; }

.icon-get-pocket:before {
  content: "\f265"; }

.icon-wikipedia-w:before {
  content: "\f266"; }

.icon-safari2:before {
  content: "\f267"; }

.icon-chrome2:before {
  content: "\f268"; }

.icon-firefox2:before {
  content: "\f269"; }

.icon-opera2:before {
  content: "\f26a"; }

.icon-internet-explorer:before {
  content: "\f26b"; }

.icon-television:before {
  content: "\f26c"; }

.icon-contao:before {
  content: "\f26d"; }

.icon-500px2:before {
  content: "\f26e"; }

.icon-amazon2:before {
  content: "\f270"; }

.icon-calendar-plus-o:before {
  content: "\f271"; }

.icon-calendar-minus-o:before {
  content: "\f272"; }

.icon-calendar-times-o:before {
  content: "\f273"; }

.icon-calendar-check-o:before {
  content: "\f274"; }

.icon-industry:before {
  content: "\f275"; }

.icon-map-pin:before {
  content: "\f276"; }

.icon-map-signs:before {
  content: "\f277"; }

.icon-map-o:before {
  content: "\f278"; }

.icon-map4:before {
  content: "\f279"; }

.icon-commenting:before {
  content: "\f27a"; }

.icon-commenting-o:before {
  content: "\f27b"; }

.icon-houzz:before {
  content: "\f27c"; }

.icon-vimeo3:before {
  content: "\f27d"; }

.icon-black-tie:before {
  content: "\f27e"; }

.icon-fonticons:before {
  content: "\f280"; }

.icon-reddit-alien:before {
  content: "\f281"; }

.icon-edge2:before {
  content: "\f282"; }

.icon-credit-card-alt:before {
  content: "\f283"; }

.icon-codiepie:before {
  content: "\f284"; }

.icon-modx:before {
  content: "\f285"; }

.icon-fort-awesome:before {
  content: "\f286"; }

.icon-usb:before {
  content: "\f287"; }

.icon-product-hunt:before {
  content: "\f288"; }

.icon-mixcloud:before {
  content: "\f289"; }

.icon-scribd:before {
  content: "\f28a"; }

.icon-pause-circle:before {
  content: "\f28b"; }

.icon-pause-circle-o:before {
  content: "\f28c"; }

.icon-stop-circle:before {
  content: "\f28d"; }

.icon-stop-circle-o:before {
  content: "\f28e"; }

.icon-shopping-bag:before {
  content: "\f290"; }

.icon-shopping-basket:before {
  content: "\f291"; }

.icon-hashtag:before {
  content: "\f292"; }

.icon-bluetooth:before {
  content: "\f293"; }

.icon-bluetooth-b:before {
  content: "\f294"; }

.icon-percent:before {
  content: "\f295"; }

.icon-gitlab:before {
  content: "\f296"; }

.icon-wpbeginner:before {
  content: "\f297"; }

.icon-wpforms:before {
  content: "\f298"; }

.icon-envira:before {
  content: "\f299"; }

.icon-universal-access:before {
  content: "\f29a"; }

.icon-wheelchair-alt:before {
  content: "\f29b"; }

.icon-question-circle-o:before {
  content: "\f29c"; }

.icon-blind:before {
  content: "\f29d"; }

.icon-audio-description:before {
  content: "\f29e"; }

.icon-volume-control-phone:before {
  content: "\f2a0"; }

.icon-braille:before {
  content: "\f2a1"; }

.icon-assistive-listening-systems:before {
  content: "\f2a2"; }

.icon-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.icon-deaf:before {
  content: "\f2a4"; }

.icon-glide:before {
  content: "\f2a5"; }

.icon-glide-g:before {
  content: "\f2a6"; }

.icon-sign-language:before {
  content: "\f2a7"; }

.icon-low-vision:before {
  content: "\f2a8"; }

.icon-viadeo:before {
  content: "\f2a9"; }

.icon-viadeo-square:before {
  content: "\f2aa"; }

.icon-snapchat:before {
  content: "\f2ab"; }

.icon-snapchat-ghost:before {
  content: "\f2ac"; }

.icon-snapchat-square:before {
  content: "\f2ad"; }

.icon-pied-piper:before {
  content: "\f2ae"; }

.icon-first-order:before {
  content: "\f2b0"; }

.icon-yoast:before {
  content: "\f2b1"; }

.icon-themeisle:before {
  content: "\f2b2"; }

.icon-google-plus-circle:before {
  content: "\f2b3"; }

.icon-fa:before {
  content: "\f2b4"; }

.icon-handshake-o:before {
  content: "\f2b5"; }

.icon-envelope-open:before {
  content: "\f2b6"; }

.icon-envelope-open-o:before {
  content: "\f2b7"; }

.icon-linode:before {
  content: "\f2b8"; }

.icon-address-book2:before {
  content: "\f2b9"; }

.icon-address-book-o:before {
  content: "\f2ba"; }

.icon-address-card:before {
  content: "\f2bb"; }

.icon-address-card-o:before {
  content: "\f2bc"; }

.icon-user-circle:before {
  content: "\f2bd"; }

.icon-user-circle-o:before {
  content: "\f2be"; }

.icon-user-o:before {
  content: "\f2c0"; }

.icon-id-badge:before {
  content: "\f2c1"; }

.icon-drivers-license:before {
  content: "\f2c2"; }

.icon-drivers-license-o:before {
  content: "\f2c3"; }

.icon-quora:before {
  content: "\f2c4"; }

.icon-free-code-camp:before {
  content: "\f2c5"; }

.icon-telegram2:before {
  content: "\f2c6"; }

.icon-thermometer2:before {
  content: "\f2c7"; }

.icon-thermometer-3:before {
  content: "\f2c8"; }

.icon-thermometer-2:before {
  content: "\f2c9"; }

.icon-thermometer-1:before {
  content: "\f2ca"; }

.icon-thermometer-0:before {
  content: "\f2cb"; }

.icon-shower:before {
  content: "\f2cc"; }

.icon-bath:before {
  content: "\f2cd"; }

.icon-podcast2:before {
  content: "\f2ce"; }

.icon-window-maximize:before {
  content: "\f2d0"; }

.icon-window-minimize:before {
  content: "\f2d1"; }

.icon-window-restore:before {
  content: "\f2d2"; }

.icon-times-rectangle:before {
  content: "\f2d3"; }

.icon-times-rectangle-o:before {
  content: "\f2d4"; }

.icon-bandcamp:before {
  content: "\f2d5"; }

.icon-grav:before {
  content: "\f2d6"; }

.icon-etsy:before {
  content: "\f2d7"; }

.icon-imdb:before {
  content: "\f2d8"; }

.icon-ravelry:before {
  content: "\f2d9"; }

.icon-eercast:before {
  content: "\f2da"; }

.icon-microchip:before {
  content: "\f2db"; }

.icon-snowflake-o:before {
  content: "\f2dc"; }

.icon-superpowers:before {
  content: "\f2dd"; }

.icon-wpexplorer:before {
  content: "\f2de"; }

.icon-meetup:before {
  content: "\f2e0"; }

/* ######## HELPER STYLES FOR VARIOUS ELEMENTS ############ */
.btn-style {
  text-align: center;
  background-color: transparent;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  height: auto;
  letter-spacing: 1.1px;
  line-height: 12px;
  text-transform: uppercase;
  font-family: sweet-gothic, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #242d38;
  position: relative;
  padding: 14px 15px;
  min-width: 212px;
  width: auto;
  border: 1px solid #000;
  border-radius: 0;
  cursor: pointer; }
  @media (max-width: 767.98px) {
    .btn-style {
      display: block; } }
  .btn-style a {
    color: #242d38;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    line-height: 12px;
    transition: all 300ms linear; }
    .btn-style a:hover {
      opacity: .7; }
  .btn-style.reserve {
    width: 306px;
    height: 46px;
    flex-wrap: wrap; }

.accent-30:after, .accent-60:after, .accent-100:after, .accent-140:after {
  content: '';
  display: block;
  position: relative;
  height: 30px;
  width: 2px;
  background-color: #242d38;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 11px auto;
  z-index: 1000; }

.accent-60:after {
  height: 60px; }

.accent-100:after {
  height: 100px; }

.accent-140:after {
  height: 140px; }

.logo-wrapper.accent-140:after {
  top: 10px;
  bottom: 0;
  background-color: #242d38;
  height: 75px; }
  @media (min-width: 768px) {
    .logo-wrapper.accent-140:after {
      height: 140px; } }

h2.accent-30:after, .accent-30.h2:after {
  bottom: 10px;
  width: 1px;
  margin-bottom: 0; }

.menus.accent-140:after {
  bottom: -80px; }

header {
  position: relative; }

.navbar-brand {
  left: 15px;
  right: auto;
  top: 15px;
  max-width: 150px;
  position: absolute;
  margin: auto;
  transition: transform 1s ease, max-width 0.3s ease; }
  @media (min-width: 992px) {
    .navbar-brand {
      left: 0;
      right: 0;
      top: 50px;
      max-width: 200px; } }
  .navbar-brand.slide {
    top: 50px;
    left: 100px;
    transform: translateX(-45vw); }

.front.navbar-brand {
  display: none; }

.filled .front.navbar-brand {
  display: none; }

#nav-main {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  z-index: 6000; }

.home #nav-main {
  justify-content: flex-end; }

.navbar-toggler {
  height: 51px;
  width: 50px;
  padding: 0;
  z-index: 2000;
  border: none;
  position: absolute;
  right: 15px;
  top: 15px; }
  @media (min-width: 992px) {
    .navbar-toggler {
      right: 40px;
      top: 50px; } }

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0 !important;
  box-shadow: none !important; }

.navbar-toggler:hover span {
  border-top: 3px dotted #242d38; }

.navbar-toggler span {
  display: block;
  height: 0px;
  border-top: 2px solid #242d38;
  width: 51px;
  margin-top: 15px;
  margin-bottom: 17px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1; }

.navbar-toggler span:nth-child(1) {
  margin-top: 0; }

.navbar-toggler span:nth-child(3) {
  margin-bottom: 0; }

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  -webkit-transition: transform .35s ease-in-out;
  -moz-transition: transform .35s ease-in-out;
  -o-transition: transform .35s ease-in-out;
  transition: transform .35s ease-in-out; }

.navbar-toggler:not(.collapsed) span {
  margin: 0;
  border-top: 2px solid #fcfaef; }

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 3px; }

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0; }

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: -1px; }

.navbar-collapse {
  height: 0;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: transparent;
  transition: height 500ms, opacity 1s, background-color 1s; }
  .navbar-collapse .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-y: auto; }
  .navbar-collapse.show {
    height: 100vh;
    opacity: 1;
    background-color: rgba(36, 45, 56, 0.9); }
    .navbar-collapse.show .container {
      height: 100vh; }

.navbar-nav .nav-link {
  color: #fcfaef;
  font-family: sweet-gothic, sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  margin: 10px auto; }
  @media (max-width: 767.98px) {
    .navbar-nav .nav-link {
      padding: 0; } }
  .navbar-nav .nav-link.active {
    color: #fcfaef; }

.floating-nav {
  display: none;
  position: absolute;
  top: 120px;
  right: 0;
  left: auto;
  transform: translate(95%, 0) rotate(90deg);
  transform-origin: left top; }
  @media (min-width: 768px) {
    .floating-nav {
      display: block; } }
  .floating-nav .btn-style {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates three equal-width columns */
    grid-gap: 20px;
    border: none;
    margin: 0;
    padding: 0;
    height: 50px; }
    .floating-nav .btn-style .before {
      content: '';
      display: block;
      width: 250px;
      height: 0;
      border-top: 2px solid #242d38; }
    .floating-nav .btn-style .after {
      content: '';
      display: block;
      width: 200px;
      height: 0;
      border-top: 2px solid #242d38; }
    .floating-nav .btn-style:hover {
      color: rgba(36, 45, 56, 0.8); }
      .floating-nav .btn-style:hover .before {
        border-top: 2px dotted #242d38; }
      .floating-nav .btn-style:hover .after {
        border-top: 2px dotted #242d38; }

.social-nav {
  display: none;
  position: absolute;
  top: 120px;
  left: 60px; }

.nav-open .reservation-floating.btn-style {
  color: #fcfaef; }
  .nav-open .reservation-floating.btn-style .before {
    border-color: #fcfaef; }
  .nav-open .reservation-floating.btn-style .after {
    border-color: #fcfaef; }

.nav-open .social-nav {
  display: none; }
  @media (min-width: 768px) {
    .nav-open .social-nav {
      display: flex; } }
  .nav-open .social-nav .icon-holder {
    display: flex;
    border: none;
    margin: 0;
    padding: 0;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .nav-open .social-nav .icon-holder .before {
      content: '';
      display: block;
      width: 2px;
      height: 345px;
      background-color: #fcfaef; }
    .nav-open .social-nav .icon-holder .after {
      content: '';
      display: block;
      width: 2px;
      height: 345px;
      background-color: #fcfaef; }
    .nav-open .social-nav .icon-holder .icons {
      font-size: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      height: 100px;
      color: #fcfaef; }
      .nav-open .social-nav .icon-holder .icons a {
        color: #fcfaef; }
        .nav-open .social-nav .icon-holder .icons a span {
          border: 1px solid #fcfaef;
          border-radius: 35px;
          padding: 7px; }

.collapse-nav-logo {
  max-width: 240px;
  margin-top: 55px; }
  @media (min-width: 768px) {
    .collapse-nav-logo {
      max-width: 400px;
      margin-top: 80px; } }

.nav-hours {
  color: #ae804c;
  width: 100%;
  text-align: center;
  margin-bottom: 80px; }
  .nav-hours h2, .nav-hours .h2 {
    position: relative;
    margin-bottom: 50px;
    color: #ae804c; }
    @media (max-width: 767.98px) {
      .nav-hours h2, .nav-hours .h2 {
        margin-bottom: 15px; } }
    .nav-hours h2:after, .nav-hours .h2:after {
      content: '';
      display: block;
      position: absolute;
      height: 35px;
      width: 1px;
      background-color: #fcfaef;
      top: 42px;
      left: 0;
      right: 0;
      margin: 11px auto;
      z-index: 1000; }
      @media (max-width: 767.98px) {
        .nav-hours h2:after, .nav-hours .h2:after {
          height: 13px;
          top: 25px; } }
  .nav-hours p {
    color: #ae804c; }
  .nav-hours .btn-style {
    border-color: #ae804c; }
    .nav-hours .btn-style a {
      color: #ae804c; }

.hero-img {
  height: 375px;
  padding-bottom: 100px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center; }
  @media (min-width: 768px) {
    .hero-img {
      height: 800px;
      padding-bottom: 292px; } }
  .hero-img .hero-logo {
    max-width: 65%;
    transition-delay: 3s, 0s;
    transition: transform 1s ease, max-width 0.3s ease; }
    @media (min-width: 768px) {
      .hero-img .hero-logo {
        max-width: 685px; } }
    .hero-img .hero-logo.scaled-slid {
      max-width: 200px;
      position: fixed;
      top: 27px;
      left: 100px;
      transform: translateX(-16vw);
      z-index: 6000; }
      @media (min-width: 768px) {
        .hero-img .hero-logo.scaled-slid {
          transform: translateX(-4vw); } }
  .hero-img:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -25px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.55); }

.home .hero-img {
  height: 375px;
  padding-bottom: 35px; }
  @media (min-width: 768px) {
    .home .hero-img {
      height: 100vh;
      min-height: 1000px;
      padding-bottom: 100px; } }
  .home .hero-img:before {
    display: none; }
  .home .hero-img .logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 25%; }
    @media (min-width: 768px) {
      .home .hero-img .logo-wrapper {
        margin-bottom: 10%; } }

.home .callouts .events {
  padding-bottom: 62.5px; }

.home .callouts .our-story {
  padding-top: 62.5px; }

.intro-pic {
  background-color: #81978f;
  position: relative;
  padding-top: 0;
  padding-bottom: 50px; }
  @media (min-width: 768px) {
    .intro-pic {
      padding-top: 200px; } }
  .intro-pic.has-pic {
    margin-bottom: 150px; }
  .intro-pic .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
  .intro-pic .intro-text {
    position: relative;
    margin: auto;
    flex: 0 0 auto;
    max-width: 998px;
    color: #fff;
    background-color: #81978f;
    margin-top: -80px;
    width: 100%;
    padding: 75px 0 10px; }
    @media (min-width: 768px) {
      .intro-pic .intro-text {
        margin-top: -360px;
        padding: 75px 25px 10px;
        width: 83.3333%; } }
    .intro-pic .intro-text:before {
      content: '';
      display: block;
      position: absolute;
      height: 100px;
      width: 2px;
      background-color: #242d38;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 1000;
      top: -50px; }
      @media (min-width: 768px) {
        .intro-pic .intro-text:before {
          height: 100px;
          top: -50px; } }
    .intro-pic .intro-text h2, .intro-pic .intro-text .h2 {
      color: #242d38;
      margin-bottom: 40px;
      font-size: 6.1vw; }
      @media (min-width: 768px) {
        .intro-pic .intro-text h2, .intro-pic .intro-text .h2 {
          font-size: 35px; } }
    .intro-pic .intro-text p {
      max-width: 792px;
      margin: 0 auto 30px;
      color: #fff; }
  .intro-pic .flickity-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; }
    @media (min-width: 1200px) {
      .intro-pic .flickity-slider {
        height: 602px; } }
  .intro-pic .flickity-viewport {
    order: 0; }
  .intro-pic .img-holder {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 100px;
    margin-bottom: -150px; }
    @media (min-width: 1200px) {
      .intro-pic .img-holder {
        width: 1198px; } }
    .intro-pic .img-holder:before {
      content: '';
      display: block;
      position: absolute;
      height: 100px;
      width: 2px;
      background-color: #242d38;
      top: -50px;
      left: 0;
      right: 0;
      margin: auto;
      z-index: 1000; }
  .intro-pic img {
    margin: auto;
    position: relative;
    display: block;
    width: 100%;
    height: auto; }
  .intro-pic .next-prev-cont {
    display: flex;
    width: 100%;
    bottom: -55px;
    position: absolute;
    align-items: center;
    justify-content: center;
    cursor: pointer; }
    .intro-pic .next-prev-cont .prev-img, .intro-pic .next-prev-cont .next-img {
      margin: 0 5px; }
      .intro-pic .next-prev-cont .prev-img:before, .intro-pic .next-prev-cont .next-img:before {
        font-size: 60px; }

.home .intro-text p {
  max-width: 600px; }

.hours {
  background-color: #fcfaef;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center; }

.collaborator-text .text-area {
  max-width: 768px;
  margin: auto;
  text-align: center; }
  .collaborator-text .text-area h2, .collaborator-text .text-area .h2 {
    position: relative;
    margin: 60px 0 0; }

.colab-col h2, .colab-col .h2 {
  margin-top: 150px;
  margin-bottom: 63px; }

.colab-col .collaborators-block .collaborators-b-text {
  position: relative;
  padding-left: 16.66667%;
  font-size: 22px;
  color: #ae804c; }
  .colab-col .collaborators-block .collaborators-b-text p {
    color: #ae804c;
    line-height: 20px;
    margin-bottom: 36px; }
  .colab-col .collaborators-block .collaborators-b-text .colabs-name {
    margin-bottom: 5px;
    display: flex;
    font-weight: 600;
    align-items: center; }
    .colab-col .collaborators-block .collaborators-b-text .colabs-name .icon {
      padding-left: 15px; }
  .colab-col .collaborators-block .collaborators-b-text .location-type {
    font-size: 18px; }
  .colab-col .collaborators-block .collaborators-b-text:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8%;
    margin: auto;
    width: 1px;
    background-color: #242d38; }

.menu-section {
  padding: 75px 0; }

.menus {
  padding-top: 150px; }

.menu-row {
  margin-bottom: 75px; }
  .menu-row .menu-title {
    margin-bottom: 60px; }

.menu-items {
  position: relative;
  padding-left: 8.33333%;
  font-size: 22px;
  color: #ae804c;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px 30px; }
  @media (min-width: 768px) {
    .menu-items {
      grid-template-columns: repeat(2, 1fr); } }
  .menu-items .menu-item {
    list-style: none; }
    .menu-items .menu-item p {
      margin-bottom: 0;
      line-height: 20px; }
    .menu-items .menu-item .item-title {
      font-weight: 700;
      margin-bottom: 5px;
      display: block;
      color: #ae804c; }
    .menu-items .menu-item .item-desc {
      font-size: 18px;
      font-weight: 500;
      color: #ae804c; }
  .menu-items:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 4%;
    margin: auto;
    width: 1px;
    background-color: #000; }

#charter-steakhouse-experience {
  background-color: #81978f; }
  #charter-steakhouse-experience .menu-items {
    color: #fff; }
    #charter-steakhouse-experience .menu-items .item-title {
      color: #fff; }
    #charter-steakhouse-experience .menu-items .item-desc {
      color: #fff; }

#select-one-of-each {
  background-color: #81978f; }
  #select-one-of-each .menu-items {
    color: #fff; }
    #select-one-of-each .menu-items .item-title {
      color: #fff; }
    #select-one-of-each .menu-items .item-desc {
      color: #fff; }

.ot-dtp-picker.standard {
  margin: auto;
  background-color: transparent !important; }
  .ot-dtp-picker.standard .ot-dtp-picker-form {
    height: auto !important;
    background-color: transparent; }

.ot-dtp-picker.wide {
  width: 836px !important;
  margin: auto; }
  .ot-dtp-picker.wide .picker {
    z-index: 2000; }
  .ot-dtp-picker.wide .ot-dtp-picker-form {
    height: 50px !important;
    background-color: transparent; }

.ot-title {
  display: none; }

.ot-button {
  background-color: transparent;
  border: 1px solid #fff; }

.ot-dtp-picker .ot-dtp-picker-button {
  -webkit-box-shadow: 0 0 0 1px transparent !important;
  box-shadow: 0 0 0 1px transparent !important;
  background-color: transparent;
  border: none; }
  .ot-dtp-picker .ot-dtp-picker-button:hover {
    background-color: transparent; }

.ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link {
  color: #fff !important; }

.ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link:before, .ot-dtp-picker .ot-dtp-picker-selector .ot-dtp-picker-selector-link:after {
  color: #fff !important; }

.picker__day--selected, .picker__day--highlighted, .picker__day--selected:hover, .picker__day--infocus:hover, .picker__day--outfocus:hover {
  border: 2px solid #81978f !important; }

.ot-dtp-picker .ot-dtp-picker-selector {
  border-right: 1px solid #d8d9db; }

.ingtCL {
  background-color: #81978f; }

/* ###### COLOR VARIABLES ###### */
/* ##### TEXT LINKS ##### */
/* ###### FONT VARIABLES ###### */
/* ###### NAV VARIABLES ###### */
/* ##### BTN VARIABLES ##### */
/* ##### CARDS VARIABLES ##### */
/* ##### FORM VARIABLES ##### */
/* ##### FOOTER VARIABLES ##### */
#post-132 .hours {
  padding-top: 115px;
  padding-bottom: 0;
  text-align: center; }

/* ############ CONTACT FORM STYLES ########### */
.contact-form {
  padding: 40px 96px;
  margin-bottom: 100px; }
  .contact-form .form-headline {
    text-align: center;
    position: relative;
    margin: 60px 0; }
  .contact-form .form-desc {
    max-width: 625px;
    margin: auto;
    margin-bottom: 50px; }
  @media (max-width: 767.98px) {
    .contact-form {
      padding: 40px 15px; } }
  .contact-form p {
    text-align: center; }

.required {
  color: #AB1911;
  font-weight: bolder; }

input::placeholder, textarea::placeholder, .wpcf7-tel::placeholder,
.wpcf7-form-control.wpcf7-date {
  /* Chrome/Opera/Safari */
  color: #ae804c;
  font-family: "Ysabeau", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize; }

.wpcf7-not-valid-tip {
  position: absolute;
  top: 34px; }

.wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  padding-bottom: 0;
  padding-top: 0;
  letter-spacing: 1px;
  box-shadow: none;
  text-transform: none;
  border: none;
  border-bottom: 1px solid #242d38;
  background-color: transparent;
  margin-bottom: 30px;
  color: #ae804c;
  font-size: 20px; }

.wpcf7-form-control.wpcf7-textarea {
  height: 70px;
  width: 100%;
  margin-bottom: 5px;
  border: none;
  border-bottom: 1px solid #242d38;
  background-color: transparent; }

.wpcf7-checkbox {
  border: none;
  color: #ae804c;
  float: right; }

.wpcf7-select {
  -webkit-appearance: menulist;
  padding-left: 5px; }

input[name="_mc4wp_subscribe_contact-form-7"] {
  margin-right: 5px; }

input[type="file"].wpcf7-form-control {
  font-size: 15px; }

.g-recaptcha {
  background: transparent;
  height: auto; }

.form-output-response {
  color: #242d38; }

.mc4wp-checkbox {
  color: #000;
  font-size: 18px;
  margin-bottom: 20px;
  display: block; }

.submit-btn {
  background-color: transparent;
  max-width: unset;
  position: relative;
  display: flex;
  justify-content: flex-end; }
  .submit-btn p {
    margin-bottom: 0;
    height: 110px;
    width: 212px;
    position: relative; }
  .submit-btn input {
    background-color: transparent;
    z-index: 1000;
    padding: 15px 0;
    color: #242d38;
    width: 130px;
    position: relative; }
  .submit-btn:hover {
    opacity: .8; }
  .submit-btn .wpcf7-spinner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto; }
  @media (max-width: 767.98px) {
    .submit-btn {
      justify-content: center; } }
  .submit-btn .wpcf7-form-control.wpcf7-submit {
    margin: 25px 0;
    display: flex; }
    @media (max-width: 767.98px) {
      .submit-btn .wpcf7-form-control.wpcf7-submit {
        margin-right: auto;
        margin-left: auto; } }

.wpcf7-form.submitting .wpcf7-submit {
  display: none; }

.grecaptcha-badge .iframe-container {
  height: auto;
  padding-bottom: 0;
  width: auto;
  position: initial; }

.grecaptcha-badge .grecaptcha-logo iframe {
  left: 0;
  height: auto; }

.captcha-print {
  font-size: 15px; }

footer {
  padding: 84px 0 70px;
  position: relative; }
  footer .footer-logo {
    max-width: 384px;
    margin: 0 auto 40px; }
  footer .rights {
    margin-top: 40px;
    position: relative; }
  footer:after {
    content: '';
    display: block;
    position: absolute;
    height: 70px;
    width: 2px;
    background-color: #242d38;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1000; }
  footer .reservation-modal {
    width: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(36, 45, 56, 0.9);
    transition: width 500ms,height 500ms;
    z-index: 8000; }
    footer .reservation-modal .text-wrap h2, footer .reservation-modal .text-wrap .h2 {
      color: #fff;
      text-align: center; }
  footer .close-reservation {
    width: 100%;
    color: #fff;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    padding-top: 30px;
    cursor: pointer; }

html, body.customize-support {
  margin-top: -46px; }
  @media (min-width: 992px) {
    html, body.customize-support {
      margin-top: -32px !important; } }
  html .fixed-top, body.customize-support .fixed-top {
    top: 0; }

#wpadminbar {
  opacity: 0; }
  #wpadminbar:hover {
    opacity: 1; }

.page-title {
  position: absolute;
  display: block;
  bottom: 37%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .page-title {
      bottom: 30%; } }

.callouts {
  background-color: #ae804c;
  padding: 25px 0 100px;
  margin-top: 100px;
  display: flex;
  flex-direction: column; }
  .callouts:before {
    content: '';
    display: block;
    position: relative;
    height: 140px;
    width: 2px;
    background-color: #242d38;
    top: -95px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000; }
  .callouts .container {
    display: flex;
    flex-direction: column; }
  /*.callouts .row:nth-child(1) {
    order: 1;
    padding-top: 62.5px; }
  .callouts .row:nth-child(2) {
    padding-bottom: 62.5px; }
    .callouts .row:nth-child(2) .txt-col {
      order: 0; }
    .callouts .row:nth-child(2) .img-col {
      order: 1; }*/
.callouts .container .alternating-row  {
  padding-bottom: 62.5px;
}
.callouts .container .alternating-row:last-child  {
  padding-bottom: 0px;
}
  .callouts .container .alternating-row:nth-child(even)  {
    flex-direction: row-reverse;
  }

  .callouts .row.single {
    padding-top: 0; }
  .callouts .content-wrapper {
    max-width: 100%;
    padding-left: 0; }
    @media (min-width: 768px) {
      .callouts .content-wrapper {
        padding-left: 4.3333%; } }
    .callouts .content-wrapper h2, .callouts .content-wrapper .h2 {
      margin-bottom: 0;
      max-width: 95%; }
    .callouts .content-wrapper p {
      color: #fff; }
  .callouts .col-12 {
    display: flex;
    align-items: center;
    justify-content: flex-start; }
  .callouts .text-wrapper {
    padding-left: calc(16.777% + 0px);
    position: relative;
    padding-top: 66px;
    display: block;
    max-width: 83%; }
    @media (min-width: 768px) {
      .callouts .text-wrapper {
        max-width: 80%; } }
    .callouts .text-wrapper:before {
      content: '';
      display: block;
      position: absolute;
      top: 75px;
      bottom: 0;
      left: 10%;
      margin: auto;
      width: 1px;
      background-color: #242d38; }
    .callouts .text-wrapper.btn:before {
      bottom: 54px; }
  .callouts .btn-style {
    margin: 60px 0; }

