@charset "UTF-8";
/*!
* Start Bootstrap - Agency v7.0.12 (https://startbootstrap.com/theme/agency)
* Copyright 2013-2023 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
*/
/*!
 * Bootstrap  v5.2.3 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {

  --bs-primary: #fafafa;
  --bs-primary-rgb: 250, 250, 250;
  --bs-secondary: #101010;
  --bs-secondary-rgb: 16, 16, 16;
     /* #d9aa00 */
  --bs-primary-dark: #bbbbbb;
   /* #cca000 */
  --bs-primary-darker: #888888;
   /* #bf9600 */

  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc800;
  --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-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc800;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;

  --bg-blur: 4px;

}

.text-primary {color:var(--bs-primary);}
.text-secondary {color:var(--bs-secondary);}
.text-blue {color:var(--bs-blue);}
.text-indigo {color:var(--bs-indigo);}
.text-purple {color:var(--bs-purple);}
.text-pink {color:var(--bs-pink);}
.text-red {color:var(--bs-red);}
.text-orange {color:var(--bs-orange);}
.text-yellow {color:var(--bs-yellow);}
.text-green {color:var(--bs-green);}
.text-teal {color:var(--bs-teal);}
.text-cyan {color:var(--bs-cyan);}
.text-black {color:var(--bs-black);}
.text-white {color:var(--bs-white);}
.text-gray {color:var(--bs-gray);}
.text-gray-dark {color:var(--bs-gray-dark);}
.text-gray-100 {color:var(--bs-gray-100);}
.text-gray-200 {color:var(--bs-gray-200);}
.text-gray-300 {color:var(--bs-gray-300);}
.text-gray-400 {color:var(--bs-gray-400);}
.text-gray-500 {color:var(--bs-gray-500);}
.text-gray-600 {color:var(--bs-gray-600);}
.text-gray-700 {color:var(--bs-gray-700);}
.text-gray-800 {color:var(--bs-gray-800);}
.text-gray-900 {color:var(--bs-gray-900);}
.text-success {color:var(--bs-success);}
.text-info {color:var(--bs-info);}
.text-warning {color:var(--bs-warning);}
.text-danger {color:var(--bs-danger);}
.text-light {color:var(--bs-light);}
.text-dark {color:var(--bs-dark);
}

body {
    /* margin-top:72px; */
    /* min-height: calc(100vh - 72px); */
    background-color: var(--bs-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a.anchor {
    display: block;
    position: relative;
    top: 0px;
    visibility: hidden;
}
footer {
    margin-top: auto;
}

.footer ul {
  list-style: none;
}

.footer li a {
  text-decoration: none;
    color: var(--bs-primary) !important;
}

footer li a:hover {
  opacity: .75;
}

footer li a:after {
  display: inline-block;
  text-align: right;
  content:">>";
  width: 0;
  margin-left: 5px;
  opacity: 0;
  transition: all 0.3s 0s;
  -webkit-transition: all 0.3s 0s;
}

footer li a:hover:after {
  width: 20px;
  opacity: .75;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    overflow-wrap: break-word;
}


/* SideMenu */
.side-menu-container {
  position: fixed;
  max-width: 2400px;
  width:100vw;
  height:100vh;
  z-index: 1000;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.side-menu {
  position: absolute;
  top: 50%;
  right: 0;
  min-width: 200px;
  transform: translateY(-50%);
  padding: 1rem;
  pointer-events: auto;
}
.side-menu > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* aligns links right */
  margin-right: 1rem;
}
.side-menu > div > a:not(:last-child) {
  border-bottom:solid var(--bs-primary) 1px;
}
.side-menu a {
  display: inline-block;
  padding: 0.5rem 0;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: var(--bs-primary);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition: all 0.3s 0s;
  -webkit-transition: all 0.3s 0s;
  white-space: nowrap; /* prevents wrapping */
}
.side-menu > div > a:hover {
  font-weight:300;
  padding-left:0.5rem;
  padding-right: 0.5rem;
}
.side-menu a:after {
  display: inline-block;
  content:">>";
  width: 0;
  margin-left: 5px;
  opacity: 0;
  transition: all 0.3s 0s;
  -webkit-transition: all 0.3s 0s;
}
.side-menu a:hover:after, .side-menu a:active:after {
  width: 20px;
  opacity: .75;
}
.side-menu-sublist-container {
  display: flex;
  flex-direction: column;
  margin-top:-1px;
}
.side-menu-sublist-container:before {
  content: "";
  height: 10px;
  width: 100%;
  border-top: solid 1px #fafafa;
  border-left: solid 1px #fafafa;
  border-right: solid 1px #fafafa;
}
.side-menu-sublist-container:after {
  content: "";
  height: 10px;
  width: 100%;
  border-bottom: solid 1px #fafafa;
  border-left: solid 1px #fafafa;
  border-right: solid 1px #fafafa;
}
.side-menu-sublist {
  display: flex;
  flex-direction: column;
  /* animation: 1.5s ease-in-out 0s 1 from0height; */
  overflow:hidden;
}
@keyframes from0height {
  0% {
    max-height:0px;
  }
  100% {
    max-height:90px;
  }
}
.side-menu-sublist a {
  font-size: 0.9rem;
  text-align: right;
  padding: 0 1rem;
}
.side-menu-sublist > a:hover {
  font-weight:300;
}
.mobile-nav-button {
  display:none;
  opacity: 0;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  cursor: pointer;
}
/* Mobile Tray */
.side-menu {
  transition: all .5s 0s;
  -webkit-transition: all .5s 0s;
}
/* < xxl */
@media (max-width: 1600px){
  .side-menu {
    top: 50%;
    height: 102%;
    width: calc(30vw - 30px);
    background-color: rgba(var(--bs-secondary-rgb),.85);
    transform: translate(100%, -50%);
    vertical-align: middle;
    backdrop-filter: blur(.5rem);
  }
  .side-menu > div {
    position: relative;
    transform: translateY(-50%);
    top: 50%;
  }
  .side-menu.open {
    transform: translate(0%, -50%);
  }
  .mobile-nav-button {
    display:block;
    opacity:1;
  }
}
  /* HAMBURGER */
.mobile-nav-button {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index:1001;
}
.hamburger .line{
  width: 30px;
  height: 3px;
  background-color: var(--bs-primary);
  display: block;
  margin: 8px 8px 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger:hover{
  cursor: pointer;
}
#hamburger-12.is-active .line:nth-child(1){
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
#hamburger-12.is-active .line:nth-child(3){
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
/* /HAMBURGER */
/* /SideMenu */


/* Switch Toggles */
.switch-container {
    display: flex;
}
.switch-container p {
    display: inline-block;
    padding: 0;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}
.switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 16px;
  margin: 6px .5rem;
  border: 2px solid var(--bs-primary);
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
.slider:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s ease;
  transition: .4s ease;
}
input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
/* /Switch Toggles */

.list-inverted { direction: rtl; }

#mainNav .navbar-nav .nav-item {
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 400;
}

.strike-s, .strike-e {
   display: flex;
}
.strike-s::before, .strike-e::after {
  /* display: block; */
  content: "";
  flex: 1 1 auto !important;
  height: 0px;
  margin: auto 20px;
  border-bottom: solid var(--bs-primary) 1px;
}

.link-title {
  display: block;
  padding: 0 0 0 1.5rem;
  margin-bottom:0;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.link {
  display: block;
  padding: 0 0 0 1.5rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
}
.link::after {
  content: " >>";
  margin-left: 5px;
  margin-right: 10px;
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
}
.link:hover::after {
  margin-left: 10px;
  margin-right: 5px;
}
.link:active {
  transform:translateX(20px);
  opacity:0.2;
}
.icon-link {
  display: block;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase; 
  padding-left: 0.5rem;
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
}
.icon-link:active {
  opacity:0.2;
}
.icon-link * {
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
}
  .icon-link:active * {
  transform:translateX(20px);
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0 !important;
  overflow-wrap: anywhere;
  width: 100%;
}
.accordion div:has(> .ellipsis) {
  width: calc(100% - 40px);
}

.bg-size-cover {
  background-size:cover;
}

.bg-blur {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.bg-image {
  position: absolute;
  width:calc(100% + (4 * var(--bg-blur)));
  height:calc(100% + (4 * var(--bg-blur)));
  top: calc(0px - (2 * var(--bg-blur)));
  right: calc(0px - (2 * var(--bg-blur)));
  bottom: calc(0px - (2 * var(--bg-blur)));
  left: calc(0px - (2 * var(--bg-blur)));
  background-size: cover;
  background-position: center;
  filter: blur(var(--bg-blur));
  z-index: -2;
}
.bg-svg {
  position: absolute;
  height: 100%;
  width: 100%;
  top:0;
  left:0;
  z-index: -1;
  background:no-repeat;
}
.page-section:has(.bg-image) {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* .page-section:has(.bg-image) > *:not(:last-child) {
  position:relative;
  z-index: 16;
} */


.bd-blur {
  backdrop-filter: blur(2px);
}
.bd-blur > * {
  backdrop-filter: blur(0);
}

.op-25 {
  opacity:0.25;
}
.op-50 {
  opacity:0.5;
}
.op-75 {
  opacity:0.75;
}

.text-outline {
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 2px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.box-toggle {
  display:block;
  height: 16px;
  width:32px;
  margin: 4px .5rem;
  border: 2px solid var(--bs-primary);
}
.box-toggle::after {
  display:block;
  content: "";
  height: 8px;
  width: 8px;
  margin: 2px 18px 2px 2px;
  background-color: var(--bs-primary);
  transition: all .25s ease;
  -webkit-transition: all .25s ease;
}
.box-toggle:active::after {
  margin: 2px 2px 2px 18px;
}



/* Lightbox CSS */
.grid-wrapper > div > a {
	width: 100%;
	height: 100%;
    text-decoration: none;
}
.grid-wrapper > div > a > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.grid-wrapper > div p {
    position: relative;
    background-color: var(--bs-secondary);
    padding: 0 4px 4px;
    top: -25px;
    opacity: 0;
    text-align: right !important;
    font-size: .75rem !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    transition: all .25s ease-out;
    -webkit-transition: all .25s ease-out;
}
.grid-wrapper > div:hover p {
    opacity: .75;
}
.grid-wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
}
.grid-wrapper .wide {
	grid-column: span 2;
}
.grid-wrapper .tall {
	grid-row: span 2;
}
.grid-wrapper .big {
	grid-column: span 2;
	grid-row: span 2;
}
.lightbox-carousel .ratio {
    height: 100vh;
}

/* Lightbox CSS end*/

.gx-5 {
  --bs-gutter-x: 6rem;
}
.gy-5 {
  --bs-gutter-x: 6rem;
}

.border-debug > :nth-child(1) { border: 4px solid red; }
.border-debug > :nth-child(2) { border: 4px solid orange; }
.border-debug > :nth-child(3) { border: 4px solid yellow; }
.border-debug > :nth-child(4) { border: 4px solid green; }
.border-debug > :nth-child(5) { border: 4px solid blue; }
.border-debug > :nth-child(6) { border: 4px solid indigo; }
.border-debug > :nth-child(7) { border: 4px solid violet; }
.border-debug > :nth-child(8) { border: 4px solid brown; }
.border-debug > :nth-child(9) { border: 4px solid black; }
.border-debug > :nth-child(10) { border: 4px solid gray; }
.border-debug > * > :nth-child(1) { border: 4px solid crimson; }
.border-debug > * > :nth-child(2) { border: 4px solid coral; }
.border-debug > * > :nth-child(3) { border: 4px solid tomato; }
.border-debug > * > :nth-child(4) { border: 4px solid darkorange; }
.border-debug > * > :nth-child(5) { border: 4px solid gold; }
.border-debug > * > :nth-child(6) { border: 4px solid khaki; }
.border-debug > * > :nth-child(7) { border: 4px solid olive; }
.border-debug > * > :nth-child(8) { border: 4px solid limegreen; }
.border-debug > * > :nth-child(9) { border: 4px solid seagreen; }
.border-debug > * > :nth-child(10) { border: 4px solid teal; }
.border-debug > * > * > :nth-child(1) { border: 4px solid cyan; }
.border-debug > * > * > :nth-child(2) { border: 4px solid deepskyblue; }
.border-debug > * > * > :nth-child(3) { border: 4px solid dodgerblue; }
.border-debug > * > * > :nth-child(4) { border: 4px solid royalblue; }
.border-debug > * > * > :nth-child(5) { border: 4px solid slateblue; }
.border-debug > * > * > :nth-child(6) { border: 4px solid mediumpurple; }
.border-debug > * > * > :nth-child(7) { border: 4px solid orchid; }
.border-debug > * > * > :nth-child(8) { border: 4px solid hotpink; }
.border-debug > * > * > :nth-child(9) { border: 4px solid deeppink; }
.border-debug > * > * > :nth-child(10) { border: 4px solid palevioletred; }
.border-debug > * > * > * > :nth-child(1) { border: 4px solid red; }
.border-debug > * > * > * > :nth-child(2) { border: 4px solid orange; }
.border-debug > * > * > * > :nth-child(3) { border: 4px solid yellow; }
.border-debug > * > * > * > :nth-child(4) { border: 4px solid green; }
.border-debug > * > * > * > :nth-child(5) { border: 4px solid blue; }
.border-debug > * > * > * > :nth-child(6) { border: 4px solid indigo; }
.border-debug > * > * > * > :nth-child(7) { border: 4px solid violet; }
.border-debug > * > * > * > :nth-child(8) { border: 4px solid brown; }
.border-debug > * > * > * > :nth-child(9) { border: 4px solid black; }
.border-debug > * > * > * > :nth-child(10) { border: 4px solid gray; }
.border-debug > * > * > * > * > :nth-child(1) { border: 4px solid crimson; }
.border-debug > * > * > * > * > :nth-child(2) { border: 4px solid coral; }
.border-debug > * > * > * > * > :nth-child(3) { border: 4px solid tomato; }
.border-debug > * > * > * > * > :nth-child(4) { border: 4px solid darkorange; }
.border-debug > * > * > * > * > :nth-child(5) { border: 4px solid gold; }
.border-debug > * > * > * > * > :nth-child(6) { border: 4px solid khaki; }
.border-debug > * > * > * > * > :nth-child(7) { border: 4px solid olive; }
.border-debug > * > * > * > * > :nth-child(8) { border: 4px solid limegreen; }
.border-debug > * > * > * > * > :nth-child(9) { border: 4px solid seagreen; }
.border-debug > * > * > * > * > :nth-child(10) { border: 4px solid teal; }
.border-debug > * > * > * > * > * > :nth-child(1) { border: 4px solid cyan; }
.border-debug > * > * > * > * > * > :nth-child(2) { border: 4px solid deepskyblue; }
.border-debug > * > * > * > * > * > :nth-child(3) { border: 4px solid dodgerblue; }
.border-debug > * > * > * > * > * > :nth-child(4) { border: 4px solid royalblue; }
.border-debug > * > * > * > * > * > :nth-child(5) { border: 4px solid slateblue; }
.border-debug > * > * > * > * > * > :nth-child(6) { border: 4px solid mediumpurple; }
.border-debug > * > * > * > * > * > :nth-child(7) { border: 4px solid orchid; }
.border-debug > * > * > * > * > * > :nth-child(8) { border: 4px solid hotpink; }
.border-debug > * > * > * > * > * > :nth-child(9) { border: 4px solid deeppink; }
.border-debug > * > * > * > * > * > :nth-child(10) { border: 4px solid palevioletred; }

/* xs */
@media (max-width: 575px) {
    .w-xs-auto {
      width: auto !important;
    }
    .w-xs-100 {
      width: 100% !important;
    }
}
/* sm */
@media (min-width: 576px) {
    .w-sm-auto {
      width: auto !important;
    }
    .w-sm-100 {
      width: 100% !important;
    }
}
/* md */
@media (min-width: 768px) {
    .w-md-auto {
      width: auto !important;
    }
    .w-md-100 {
      width: 100% !important;
    }
}
/* lg */
@media (min-width: 992px) {
    .w-lg-auto {
      width: auto !important;
    }
    .w-lg-100 {
      width: 100% !important;
    }
}
/* xl */
@media (min-width: 1200px) {
    .w-xl-auto {
      width: auto !important;
    }
    .w-xl-100 {
      width: 100% !important;
    }
}


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