/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  -webkit-animation: pswp-clockwise 600ms linear infinite;
          animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@-webkit-keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

/* Base - site-specific settings */
:root {
  /* General variables */
  --color-black: #1A1819;
  --color-white: #FFF;
  --color-navy: #253347;
  --color-lime-green: #C5D210;
  --color-light-blue: #5B89C2;
  --color-light-purple: #EFC1FD;
  --color-dark-purple: #DCA3ED;
  --color-gradient: #D7D4CD;
  --color-gradient-purple: #D7D4CD;
  --color-light-grey-stroke: #D2D6DE;
}

/* General colors */
/*General typography*/
/*Error*/
/* Color options */
.color-black {
  color: var(--color-black);
}

.color-white {
  color: var(--color-white);
}

.color-navy {
  color: var(--color-navy);
}

.color-lime-green {
  color: var(--color-lime-green);
}

.color-light-blue {
  color: var(--color-light-blue);
}

.color-light-purple {
  color: var(--color-light-purple);
}

.color-gradient {
  color: var(--color-gradient);
}

.color-gradient-purple {
  color: var(--color-gradient-purple);
}

/* Background color options */
.bg-black {
  background-color: var(--color-black);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.bg-lime-green {
  background-color: var(--color-lime-green);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-light-purple {
  background-color: var(--color-light-purple);
}

.bg-gradient {
  background-color: var(--color-gradient);
}

.bg-gradient-purple {
  background-color: var(--color-gradient-purple);
}

.bg-cooler-gradient {
  background: #efc1fd;
  background: linear-gradient(180deg, #efc1fd 0%, #c5d211 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efc1fd",endColorstr="#c5d211",GradientType=1);
}

.bg-purple-gradient {
  background: white;
  background: linear-gradient(0deg, #efc1fd 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efc1fd",endColorstr="#ffffff",GradientType=1);
}

.bg-purple-gradient-reverse {
  background: white;
  background: linear-gradient(180deg, #efc1fd 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#efc1fd",GradientType=1);
}

/*Global Options*/
/*Typography*/
/*Font path*/
:root {
  /* Font family */
  --font-family-jam-medium: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-jam-semibold: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-source-regular: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/*Grid*/
/*Gutters*/
/*Used to set the padding on .container-fluid, per breakpoint*/
/*Wrapper max width*/
/*Container max width*/
/*Breakpoints*/
/*Container Widths*/
/*Transition settings*/
/*Modals*/
/*Borders*/
/*Global border radius*/
/*Sliders*/
/* Font utility classes */
.font-medium {
  font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.font-semibold {
  font-family: "Bai Jamjuree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.font-regular {
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
}

/*Font mixins*/
/* Vendor - unedited vendor base styles */
/*Bootstrap grid/reset*/
/*!
 * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container-ms, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container-ms, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container-ms, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container-ms, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1450px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-ms, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
  box-sizing: border-box;
  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.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

  .row-cols-ms-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1450px) {
  .col-xxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1800px) {
  .col-xxxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-1,
.gx-1 {
  --bs-gutter-x: 0.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: 375px) {
  .col-ms-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-ms-5,
.gy-ms-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.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-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.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-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.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-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.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: 1450px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.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;
  }
}
@media (min-width: 1800px) {
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-1 {
  margin: 0.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-sm-1 {
    margin: 0.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;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-md-1 {
    margin: 0.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;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-lg-1 {
    margin: 0.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;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xl-1 {
    margin: 0.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;
  }
}
@media (min-width: 1450px) {
  .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;
  }
}
@media (min-width: 1800px) {
  .d-xxxl-inline {
    display: inline !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*!
 * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 0;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.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: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 375px) {
  .sticky-ms-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1450px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1800px) {
  .sticky-xxxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.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;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 0 solid transparent !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 0 solid transparent !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 0 solid transparent !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 0 solid transparent !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 0 solid transparent !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !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;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 4px !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 4px !important;
}

.rounded-3 {
  border-radius: 20px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.rounded-end {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.rounded-start {
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 375px) {
  .float-ms-start {
    float: left !important;
  }

  .float-ms-end {
    float: right !important;
  }

  .float-ms-none {
    float: none !important;
  }

  .d-ms-inline {
    display: inline !important;
  }

  .d-ms-inline-block {
    display: inline-block !important;
  }

  .d-ms-block {
    display: block !important;
  }

  .d-ms-grid {
    display: grid !important;
  }

  .d-ms-table {
    display: table !important;
  }

  .d-ms-table-row {
    display: table-row !important;
  }

  .d-ms-table-cell {
    display: table-cell !important;
  }

  .d-ms-flex {
    display: flex !important;
  }

  .d-ms-inline-flex {
    display: inline-flex !important;
  }

  .d-ms-none {
    display: none !important;
  }

  .flex-ms-fill {
    flex: 1 1 auto !important;
  }

  .flex-ms-row {
    flex-direction: row !important;
  }

  .flex-ms-column {
    flex-direction: column !important;
  }

  .flex-ms-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-ms-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-ms-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-ms-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-ms-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-ms-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-ms-wrap {
    flex-wrap: wrap !important;
  }

  .flex-ms-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-ms-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-ms-0 {
    gap: 0 !important;
  }

  .gap-ms-1 {
    gap: 0.25rem !important;
  }

  .gap-ms-2 {
    gap: 0.5rem !important;
  }

  .gap-ms-3 {
    gap: 1rem !important;
  }

  .gap-ms-4 {
    gap: 1.5rem !important;
  }

  .gap-ms-5 {
    gap: 3rem !important;
  }

  .justify-content-ms-start {
    justify-content: flex-start !important;
  }

  .justify-content-ms-end {
    justify-content: flex-end !important;
  }

  .justify-content-ms-center {
    justify-content: center !important;
  }

  .justify-content-ms-between {
    justify-content: space-between !important;
  }

  .justify-content-ms-around {
    justify-content: space-around !important;
  }

  .justify-content-ms-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-ms-start {
    align-items: flex-start !important;
  }

  .align-items-ms-end {
    align-items: flex-end !important;
  }

  .align-items-ms-center {
    align-items: center !important;
  }

  .align-items-ms-baseline {
    align-items: baseline !important;
  }

  .align-items-ms-stretch {
    align-items: stretch !important;
  }

  .align-content-ms-start {
    align-content: flex-start !important;
  }

  .align-content-ms-end {
    align-content: flex-end !important;
  }

  .align-content-ms-center {
    align-content: center !important;
  }

  .align-content-ms-between {
    align-content: space-between !important;
  }

  .align-content-ms-around {
    align-content: space-around !important;
  }

  .align-content-ms-stretch {
    align-content: stretch !important;
  }

  .align-self-ms-auto {
    align-self: auto !important;
  }

  .align-self-ms-start {
    align-self: flex-start !important;
  }

  .align-self-ms-end {
    align-self: flex-end !important;
  }

  .align-self-ms-center {
    align-self: center !important;
  }

  .align-self-ms-baseline {
    align-self: baseline !important;
  }

  .align-self-ms-stretch {
    align-self: stretch !important;
  }

  .order-ms-first {
    order: -1 !important;
  }

  .order-ms-0 {
    order: 0 !important;
  }

  .order-ms-1 {
    order: 1 !important;
  }

  .order-ms-2 {
    order: 2 !important;
  }

  .order-ms-3 {
    order: 3 !important;
  }

  .order-ms-4 {
    order: 4 !important;
  }

  .order-ms-5 {
    order: 5 !important;
  }

  .order-ms-last {
    order: 6 !important;
  }

  .m-ms-0 {
    margin: 0 !important;
  }

  .m-ms-1 {
    margin: 0.25rem !important;
  }

  .m-ms-2 {
    margin: 0.5rem !important;
  }

  .m-ms-3 {
    margin: 1rem !important;
  }

  .m-ms-4 {
    margin: 1.5rem !important;
  }

  .m-ms-5 {
    margin: 3rem !important;
  }

  .m-ms-auto {
    margin: auto !important;
  }

  .mx-ms-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-ms-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-ms-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-ms-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-ms-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-ms-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-ms-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-ms-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-ms-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-ms-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-ms-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-ms-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-ms-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-ms-0 {
    margin-top: 0 !important;
  }

  .mt-ms-1 {
    margin-top: 0.25rem !important;
  }

  .mt-ms-2 {
    margin-top: 0.5rem !important;
  }

  .mt-ms-3 {
    margin-top: 1rem !important;
  }

  .mt-ms-4 {
    margin-top: 1.5rem !important;
  }

  .mt-ms-5 {
    margin-top: 3rem !important;
  }

  .mt-ms-auto {
    margin-top: auto !important;
  }

  .me-ms-0 {
    margin-right: 0 !important;
  }

  .me-ms-1 {
    margin-right: 0.25rem !important;
  }

  .me-ms-2 {
    margin-right: 0.5rem !important;
  }

  .me-ms-3 {
    margin-right: 1rem !important;
  }

  .me-ms-4 {
    margin-right: 1.5rem !important;
  }

  .me-ms-5 {
    margin-right: 3rem !important;
  }

  .me-ms-auto {
    margin-right: auto !important;
  }

  .mb-ms-0 {
    margin-bottom: 0 !important;
  }

  .mb-ms-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-ms-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-ms-3 {
    margin-bottom: 1rem !important;
  }

  .mb-ms-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-ms-5 {
    margin-bottom: 3rem !important;
  }

  .mb-ms-auto {
    margin-bottom: auto !important;
  }

  .ms-ms-0 {
    margin-left: 0 !important;
  }

  .ms-ms-1 {
    margin-left: 0.25rem !important;
  }

  .ms-ms-2 {
    margin-left: 0.5rem !important;
  }

  .ms-ms-3 {
    margin-left: 1rem !important;
  }

  .ms-ms-4 {
    margin-left: 1.5rem !important;
  }

  .ms-ms-5 {
    margin-left: 3rem !important;
  }

  .ms-ms-auto {
    margin-left: auto !important;
  }

  .p-ms-0 {
    padding: 0 !important;
  }

  .p-ms-1 {
    padding: 0.25rem !important;
  }

  .p-ms-2 {
    padding: 0.5rem !important;
  }

  .p-ms-3 {
    padding: 1rem !important;
  }

  .p-ms-4 {
    padding: 1.5rem !important;
  }

  .p-ms-5 {
    padding: 3rem !important;
  }

  .px-ms-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-ms-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-ms-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-ms-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-ms-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-ms-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-ms-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-ms-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-ms-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-ms-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-ms-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-ms-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-ms-0 {
    padding-top: 0 !important;
  }

  .pt-ms-1 {
    padding-top: 0.25rem !important;
  }

  .pt-ms-2 {
    padding-top: 0.5rem !important;
  }

  .pt-ms-3 {
    padding-top: 1rem !important;
  }

  .pt-ms-4 {
    padding-top: 1.5rem !important;
  }

  .pt-ms-5 {
    padding-top: 3rem !important;
  }

  .pe-ms-0 {
    padding-right: 0 !important;
  }

  .pe-ms-1 {
    padding-right: 0.25rem !important;
  }

  .pe-ms-2 {
    padding-right: 0.5rem !important;
  }

  .pe-ms-3 {
    padding-right: 1rem !important;
  }

  .pe-ms-4 {
    padding-right: 1.5rem !important;
  }

  .pe-ms-5 {
    padding-right: 3rem !important;
  }

  .pb-ms-0 {
    padding-bottom: 0 !important;
  }

  .pb-ms-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-ms-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-ms-3 {
    padding-bottom: 1rem !important;
  }

  .pb-ms-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-ms-5 {
    padding-bottom: 3rem !important;
  }

  .ps-ms-0 {
    padding-left: 0 !important;
  }

  .ps-ms-1 {
    padding-left: 0.25rem !important;
  }

  .ps-ms-2 {
    padding-left: 0.5rem !important;
  }

  .ps-ms-3 {
    padding-left: 1rem !important;
  }

  .ps-ms-4 {
    padding-left: 1.5rem !important;
  }

  .ps-ms-5 {
    padding-left: 3rem !important;
  }

  .text-ms-start {
    text-align: left !important;
  }

  .text-ms-end {
    text-align: right !important;
  }

  .text-ms-center {
    text-align: center !important;
  }
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.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;
  }

  .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;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.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;
  }

  .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;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.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;
  }

  .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;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.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;
  }

  .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;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1450px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.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;
  }

  .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;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1800px) {
  .float-xxxl-start {
    float: left !important;
  }

  .float-xxxl-end {
    float: right !important;
  }

  .float-xxxl-none {
    float: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-grid {
    display: grid !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxxl-none {
    display: none !important;
  }

  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxxl-row {
    flex-direction: row !important;
  }

  .flex-xxxl-column {
    flex-direction: column !important;
  }

  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxxl-0 {
    gap: 0 !important;
  }

  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxxl-3 {
    gap: 1rem !important;
  }

  .gap-xxxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxxl-center {
    justify-content: center !important;
  }

  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxxl-center {
    align-items: center !important;
  }

  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxxl-center {
    align-content: center !important;
  }

  .align-content-xxxl-between {
    align-content: space-between !important;
  }

  .align-content-xxxl-around {
    align-content: space-around !important;
  }

  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxxl-auto {
    align-self: auto !important;
  }

  .align-self-xxxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxxl-center {
    align-self: center !important;
  }

  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }

  .order-xxxl-first {
    order: -1 !important;
  }

  .order-xxxl-0 {
    order: 0 !important;
  }

  .order-xxxl-1 {
    order: 1 !important;
  }

  .order-xxxl-2 {
    order: 2 !important;
  }

  .order-xxxl-3 {
    order: 3 !important;
  }

  .order-xxxl-4 {
    order: 4 !important;
  }

  .order-xxxl-5 {
    order: 5 !important;
  }

  .order-xxxl-last {
    order: 6 !important;
  }

  .m-xxxl-0 {
    margin: 0 !important;
  }

  .m-xxxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxxl-3 {
    margin: 1rem !important;
  }

  .m-xxxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxxl-5 {
    margin: 3rem !important;
  }

  .m-xxxl-auto {
    margin: auto !important;
  }

  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .me-xxxl-0 {
    margin-right: 0 !important;
  }

  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxxl-auto {
    margin-right: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxxl-auto {
    margin-left: auto !important;
  }

  .p-xxxl-0 {
    padding: 0 !important;
  }

  .p-xxxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxxl-3 {
    padding: 1rem !important;
  }

  .p-xxxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxxl-5 {
    padding: 3rem !important;
  }

  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxxl-start {
    text-align: left !important;
  }

  .text-xxxl-end {
    text-align: right !important;
  }

  .text-xxxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*Optional components*/
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 0 solid #dee2e6;
  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;
}

.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;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 375px) {
  .dropdown-menu-ms-start {
    --bs-position: start;
  }
  .dropdown-menu-ms-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-ms-end {
    --bs-position: end;
  }
  .dropdown-menu-ms-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: 1450px) {
  .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;
  }
}
@media (min-width: 1800px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  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: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 0 solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: 0;
  background: none;
  border: 0 solid transparent;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.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;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-black);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.4;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 0 solid transparent;
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 0 solid transparent;
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1250px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 374.98px) {
  .modal-fullscreen-ms-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-ms-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-ms-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1449.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1799.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
}
/* so we can override bootstrap */
:root {
  /* General variables */
  --color-black: #1A1819;
  --color-white: #FFF;
  --color-navy: #253347;
  --color-lime-green: #C5D210;
  --color-light-blue: #5B89C2;
  --color-light-purple: #EFC1FD;
  --color-dark-purple: #DCA3ED;
  --color-gradient: #D7D4CD;
  --color-gradient-purple: #D7D4CD;
  --color-light-grey-stroke: #D2D6DE;
}

/* General colors */
/*General typography*/
/*Error*/
/* Color options */
.color-black {
  color: var(--color-black);
}

.color-white {
  color: var(--color-white);
}

.color-navy {
  color: var(--color-navy);
}

.color-lime-green {
  color: var(--color-lime-green);
}

.color-light-blue {
  color: var(--color-light-blue);
}

.color-light-purple {
  color: var(--color-light-purple);
}

.color-gradient {
  color: var(--color-gradient);
}

.color-gradient-purple {
  color: var(--color-gradient-purple);
}

/* Background color options */
.bg-black {
  background-color: var(--color-black);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.bg-lime-green {
  background-color: var(--color-lime-green);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.bg-light-purple {
  background-color: var(--color-light-purple);
}

.bg-gradient {
  background-color: var(--color-gradient);
}

.bg-gradient-purple {
  background-color: var(--color-gradient-purple);
}

.bg-cooler-gradient {
  background: #efc1fd;
  background: linear-gradient(180deg, #efc1fd 0%, #c5d211 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efc1fd",endColorstr="#c5d211",GradientType=1);
}

.bg-purple-gradient {
  background: white;
  background: linear-gradient(0deg, #efc1fd 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#efc1fd",endColorstr="#ffffff",GradientType=1);
}

.bg-purple-gradient-reverse {
  background: white;
  background: linear-gradient(180deg, #efc1fd 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#efc1fd",GradientType=1);
}

/*Container fluid gutter setup*/
/*Container fluid gutter setup*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Input Placeholder Color*/
/*Columns*/
/*Site wrapper*/
.wrapper {
  background: var(--color-white);
  max-width: 2070px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/*Custom container fluid*/
.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  max-width: 2070px;
}
@media (max-width: 767.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (min-width: 1450px) and (max-width: 1799.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 1800px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 150px;
    padding-right: 150px;
  }
}

.container-fluid-sm {
  max-width: 2070px;
}
@media (max-width: 767.98px) {
  .container-fluid-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container-fluid-sm {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1449.98px) {
  .container-fluid-sm {
    padding-left: 125px;
    padding-right: 125px;
  }
}
@media (min-width: 1450px) {
  .container-fluid-sm {
    padding-left: 150px;
    padding-right: 150px;
  }
}

@media (max-width: 767.98px) {
  .container-offset-left {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 991.98px) {
  .container-offset-left {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1199.98px) {
  .container-offset-left {
    padding-left: 75px;
  }
}
@media (min-width: 1450px) {
  .container-offset-left {
    padding-left: 100px;
  }
}

@media (max-width: 767.98px) {
  .container-offset-right {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) and (max-width: 991.98px) {
  .container-offset-right {
    padding-right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1199.98px) {
  .container-offset-right {
    padding-right: 75px;
  }
}
@media (min-width: 1450px) {
  .container-offset-right {
    padding-right: 100px;
  }
}
/*Adds 10px gutter to container element*/
@media (min-width: 992px) {
  .container-gutter {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*Removes gutters to any bootstrap row*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/*Larger gutter options*/
@media (min-width: 1450px) {
  .gutters-lg {
    margin-right: -85px;
    margin-left: -85px;
  }
}
@media (min-width: 1450px) {
  .gutters-lg > .col,
.gutters-lg > [class*=col-] {
    padding-right: 85px;
    padding-left: 85px;
  }
}

/*Medium gutter options*/
@media (min-width: 1450px) {
  .gutters-md {
    margin-right: -40px;
    margin-left: -40px;
  }
}
@media (min-width: 1450px) {
  .gutters-md > .col,
.gutters-md > [class*=col-] {
    padding-right: 40px;
    padding-left: 40px;
  }
}

/*Small gutter options*/
@media (min-width: 992px) {
  .gutters-sm {
    margin-right: -5px;
    margin-left: -5px;
  }
}
@media (min-width: 992px) {
  .gutters-sm > .col,
.gutters-sm > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

/*Smallest gutter options*/
@media (min-width: 992px) {
  .gutters-xs {
    margin: -5px;
  }
}
@media (min-width: 992px) {
  .gutters-xs > .col,
.gutters-xs > [class*=col-] {
    padding: 5px;
  }
}

/*Adds top/bottom padding to each column*/
.row-grid {
  margin-bottom: -15px;
  margin-top: -15px;
}
.row-grid > [class*=col-],
.row-grid > .col {
  padding-bottom: 15px;
  padding-top: 15px;
}

.row-grid-sm {
  margin: -5px;
  margin: -5px;
}
.row-grid-sm > [class*=col-],
.row-grid-sm > .col {
  padding: 5px;
  padding: 5px;
}

@media (max-width: 767.98px) {
  .row-grid-lg {
    margin-bottom: -20px;
    margin-top: -20px;
  }
}
@media (min-width: 768px) {
  .row-grid-lg {
    margin-bottom: -40px;
    margin-top: -40px;
  }
}
@media (max-width: 767.98px) {
  .row-grid-lg > [class*=col-],
.row-grid-lg > .col {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .row-grid-lg > [class*=col-],
.row-grid-lg > .col {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

/*Used to create 5 equal columns that wrap*/
@media (min-width: 992px) {
  .col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-lg-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-lg-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-lg-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-lg-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-lg-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-lg-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .col-xl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-xl-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-xl-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-xl-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-xl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-xl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (min-width: 1450px) {
  .col-xxl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xxl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-xxl-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-xxl-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-xxl-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-xxl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-xxl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (min-width: 1800px) {
  .col-xxxl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xxxl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-xxxl-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-xxxl-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-xxxl-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxxl-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-xxxl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-xxxl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
.css-grid {
  display: grid;
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 993px) {
  .css-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 993px) {
  .css-grid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .css-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.css-grid.no-px {
  padding-left: 0;
  padding-right: 0;
}
.css-grid.center-grid {
  margin: 0 auto;
}
.css-grid.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.contain-xxxl {
  max-width: 1910px;
}

.contain-xxl {
  max-width: 1380px;
}

.contain-xl {
  max-width: 1200px;
}

.contain-lg {
  max-width: 992px;
}

.contain-md {
  max-width: 768px;
}

.contain-sm {
  max-width: 576px;
}

.contain-ms {
  max-width: 375px;
}

@media screen and (min-width: 992px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "a b";
  }
  .grid-2 div:nth-of-type(1) {
    grid-area: a;
  }
  .grid-2 div:nth-of-type(2) {
    grid-area: b;
  }
  .grid-2.grid-reverse {
    grid-template-areas: "b a";
  }
}
@media screen and (max-width: 992px) {
  .grid-2 {
    grid-auto-rows: auto;
    grid-template-areas: "a" "b";
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 div:nth-of-type(1) {
    grid-area: a;
  }
  .grid-2 div:nth-of-type(2) {
    grid-area: b;
  }
  .grid-2.grid-reverse {
    grid-template-areas: "b" "a";
  }
}

@media screen and (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .grid-3.md-col-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .grid-3.md-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .grid-3.md-col-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .grid-5 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (min-width: 1380px) {
  .grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1380px) {
  .grid-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 576px) and (max-width: 992px) {
  .grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .grid-6 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gap-10 {
  gap: 10px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

@media screen and (min-width: 992px) {
  .gap-column-30 {
    grid-column-gap: 30px;
  }
}

@media screen and (min-width: 992px) {
  .gap-column-40 {
    grid-column-gap: 40px;
  }
}

@media screen and (min-width: 992px) {
  .gap-column-180 {
    grid-column-gap: 180px;
  }
}

@media screen and (min-width: 992px) {
  .gap-row-30 {
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  .sm-gap-row-30 {
    grid-row-gap: 30px;
  }
}

/*Container fluid gutter setup*/
/*Container fluid gutter setup*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Input Placeholder Color*/
/*Columns*/
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Source Sans 3", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: normal;
  background: #FFF;
  color: var(--color-black);
  font-weight: normal;
  height: 100%;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
  position: relative;
  text-align: left;
  /*Prevents body from scrolling*/
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  body.no-scroll {
    overflow: hidden;
  }
}

img {
  display: block;
  height: auto;
}

picture {
  display: block;
}

/*Utilities*/
/*Heading mixin options*/
/*Heading options*/
.micro-title {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  display: block;
}

.micro-title-small {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  display: block;
}

.micro-title-large {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: block;
}

.heading-1, .title-large {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: calc(clamp(3.2rem, 1.123vw + 2.779rem, 4.8rem));
  display: block;
}
@media (min-width: 768px) {
  .heading-1, .title-large {
    letter-spacing: 0.15em;
  }
}

.heading-2, .title-medium {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-size: calc(clamp(2.8rem, 1.404vw + 2.274rem, 4.8rem));
  display: block;
}

.heading-3, .title-small {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0.01em;
  font-size: calc(clamp(2.4rem, 0.491vw + 2.216rem, 3.1rem));
  display: block;
}

.heading-4, .title-xsmall {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0em;
  font-size: calc(clamp(2rem, 0.281vw + 1.895rem, 2.4rem));
  display: block;
}

/*Add transition to all heading options*/
[class*=heading-] {
  transition: 0.4s;
}
[class*=heading-] a:hover {
  color: var(--color-light-purple);
}

/*Text mixin options*/
/* Text Styles */
.font-medium {
  font-weight: 500;
}

.text-heading {
  font-family: var(--font-family-jam-medium);
}

.line-34 {
  line-height: 1.34;
}

.text-24 {
  font-size: 2.4rem;
}

.text-large {
  font-family: var(--font-family-source-regular);
  font-weight: normal;
  line-height: 1.5;
  font-size: calc(clamp(1.6rem, 0.14vw + 1.547rem, 1.8rem));
}

/*Text style options*/
.text-14-regular {
  font-size: 1.4rem;
  display: block;
}

/*Text alignment options*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*Reponsive text alignment options*/
@media (max-width: 767.98px) {
  .text-center-xs {
    text-align: center;
  }
}
/*Text transform options*/
.text-uppercase {
  text-transform: uppercase;
}

/*Fades text 80%*/
.text-fade-70 {
  opacity: 0.7;
}

.letter-spacing-21 {
  letter-spacing: 0.21em;
}

/*Used for larger paragraph text*/
@media (max-width: 1199.98px) {
  .paragraph-lead p {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .paragraph-lead p {
    font-size: 2.2rem;
  }
}

@media (max-width: 1199.98px) {
  .paragraph-lead-lg p {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .paragraph-lead-lg p {
    font-size: 2.4rem;
  }
}

/*Global paragraph styles*/
p:not(:last-child) {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  text-decoration: none;
}

/*Global anchor styles*/
a {
  color: inherit;
  transition: 0.4s;
}
a:hover {
  text-decoration: none;
}

/*General dropcap setup*/
/*Adds underline to anchors within this element*/
.link-underline {
  text-decoration: underline;
}
.link-underline:hover {
  color: var(--color-black);
  text-decoration: underline;
}
.link-underline a {
  text-decoration: underline;
}
.link-underline a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

/*Link color options*/
.link-dark {
  color: var(--color-black);
}

.link-light {
  color: var(--color-whtie);
}

/*Default strong styles*/
/*Small text*/
small {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

/*Formats telephone element*/
.link-tel {
  color: inherit;
}

/*Used to style Gutenberg blocks that do not contain classes direclty on elements*/
.cms-styles {
  /*Typography*/
  /*Headings*/
  /*Combined list styles*/
  /*Unordered list*/
  /*Ordered list*/
  /*Images*/
  /*Alignment options*/
}
.cms-styles h1 {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-size: calc(clamp(2.8rem, 1.404vw + 2.274rem, 4.8rem));
}
.cms-styles h2 {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-size: calc(clamp(2.8rem, 1.404vw + 2.274rem, 4.8rem));
  clear: both;
  margin-bottom: 20px;
  margin-top: 50px;
}
.cms-styles h2:not(.color-white) {
  color: var(--color-black);
}
.cms-styles h3 {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0.01em;
  font-size: calc(clamp(2.4rem, 0.491vw + 2.216rem, 3.1rem));
  margin-bottom: 20px;
  margin-top: 20px;
}
.cms-styles h3:not(.color-white) {
  color: var(--color-black);
}
.cms-styles h4,
.cms-styles h5,
.cms-styles h6 {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0em;
  font-size: calc(clamp(2rem, 0.281vw + 1.895rem, 2.4rem));
  clear: both;
  margin-bottom: 20px;
}
.cms-styles .figure,
.cms-styles .card-image, .cms-styles img {
  margin-top: 30px;
  margin-bottom: 40px;
  width: 100%;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cms-styles .alignleft {
    margin-left: -150px;
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  .cms-styles .alignright {
    margin-right: -150px;
    margin-left: 50px;
  }
}

/*Column options*/
@media (min-width: 992px) {
  .column-2 {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40pxpx;
         column-gap: 40pxpx;
  }

  .column-3 {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 40pxpx;
         column-gap: 40pxpx;
  }
}
/*Global alignment options*/
.justify-left {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
  text-align: center;
}

.justify-right {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

/*Alignment options*/
@media (max-width: 767.98px) {
  .center-xs {
    margin-left: auto;
    margin-right: auto;
  }
}
/*Splits paragraph content into 2 columns*/
@media (min-width: 768px) {
  .paragraph-col-2 {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
/*Display options*/
@media (max-width: 767.98px) {
  .d-xs-none {
    display: none;
  }
}
/*Hide element on mobile*/
@media (max-width: 767.98px) {
  .hidden-xs {
    display: none;
  }
}
/*Adds styled Horizontal Rule*/
.horizontal-rule {
  background: var(--color-black);
  border: none;
  height: 1px;
  max-width: 1320px;
}

/*Adds scribble line coming out of any corner*/
.scribble-line:before {
  background: url("../images/icons/icon-line-dark.svg") center center/contain no-repeat;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 250px;
}
.scribble-line.scribble-line-tl:before {
  right: calc(100% + 20px);
  top: 0;
}

.border-radius {
  border-radius: 20px;
}

.border-bottom-blue {
  border-bottom: 1px solid #415D84;
}

/*Used to apply top/bottom padding to any block*/
@media (max-width: 767.98px) {
  .pb-xl {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-xl {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .pb-xl {
    padding-bottom: 150px;
  }
}

@media (max-width: 767.98px) {
  .pt-xl {
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-xl {
    padding-top: 120px;
  }
}
@media (min-width: 1200px) {
  .pt-xl {
    padding-top: 150px;
  }
}

@media (max-width: 767.98px) {
  .pb-lg {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-lg {
    padding-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .pb-lg {
    padding-bottom: 100px;
  }
}

@media (max-width: 767.98px) {
  .pt-lg {
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-lg {
    padding-top: 75px;
  }
}
@media (min-width: 1200px) {
  .pt-lg {
    padding-top: 100px;
  }
}

@media (max-width: 991.98px) {
  .pb-md {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1449.98px) {
  .pb-md {
    padding-bottom: 50px;
  }
}
@media (min-width: 1450px) {
  .pb-md {
    padding-bottom: 75px;
  }
}

@media (max-width: 991.98px) {
  .pt-md {
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1449.98px) {
  .pt-md {
    padding-top: 50px;
  }
}
@media (min-width: 1450px) {
  .pt-md {
    padding-top: 75px;
  }
}

.pb-sm {
  padding-bottom: 40px;
}

.pt-sm {
  padding-top: 40px;
}

@media (min-width: 992px) {
  .pr-44-lg {
    padding-right: 44%;
  }
}
.pad-30 {
  padding: 30px;
}

.pad-50 {
  padding: 50px;
}

/*Used to apply top/bottom margin to any block*/
@media (max-width: 767.98px) {
  .mb-lg {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-lg {
    margin-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .mb-lg {
    margin-bottom: 100px;
  }
}

@media (max-width: 767.98px) {
  .mt-lg {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mt-lg {
    margin-top: 75px;
  }
}
@media (min-width: 1200px) {
  .mt-lg {
    margin-top: 100px;
  }
}

/*Responsive margin options*/
@media (min-width: 992px) {
  .ml-30-lg {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .mt-20-xs {
    margin-top: 20px;
  }
}
/*Margin options*/
@media (max-width: 767.98px) {
  .mb-md {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-md {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .mb-md {
    margin-bottom: 80px;
  }
}

/*Margin options*/
.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .lg-pt-20 {
    padding-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .sm-pt-20 {
    padding-top: 20px;
  }
}
/*Text mixin options*/
/* Text Styles */
.font-medium {
  font-weight: 500;
}

.text-heading {
  font-family: var(--font-family-jam-medium);
}

.line-34 {
  line-height: 1.34;
}

.text-24 {
  font-size: 2.4rem;
}

.text-large {
  font-family: var(--font-family-source-regular);
  font-weight: normal;
  line-height: 1.5;
  font-size: calc(clamp(1.6rem, 0.14vw + 1.547rem, 1.8rem));
}

/*Text style options*/
.text-14-regular {
  font-size: 1.4rem;
  display: block;
}

/*Text alignment options*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*Reponsive text alignment options*/
@media (max-width: 767.98px) {
  .text-center-xs {
    text-align: center;
  }
}
/*Text transform options*/
.text-uppercase {
  text-transform: uppercase;
}

/*Fades text 80%*/
.text-fade-70 {
  opacity: 0.7;
}

.letter-spacing-21 {
  letter-spacing: 0.21em;
}

/*Used for larger paragraph text*/
@media (max-width: 1199.98px) {
  .paragraph-lead p {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .paragraph-lead p {
    font-size: 2.2rem;
  }
}

@media (max-width: 1199.98px) {
  .paragraph-lead-lg p {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .paragraph-lead-lg p {
    font-size: 2.4rem;
  }
}

/*Global paragraph styles*/
p:not(:last-child) {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  text-decoration: none;
}

/*Global anchor styles*/
a {
  color: inherit;
  transition: 0.4s;
}
a:hover {
  text-decoration: none;
}

/*General dropcap setup*/
/*Adds underline to anchors within this element*/
.link-underline {
  text-decoration: underline;
}
.link-underline:hover {
  color: var(--color-black);
  text-decoration: underline;
}
.link-underline a {
  text-decoration: underline;
}
.link-underline a:hover {
  color: var(--color-black);
  text-decoration: underline;
}

/*Link color options*/
.link-dark {
  color: var(--color-black);
}

.link-light {
  color: var(--color-whtie);
}

/*Default strong styles*/
/*Small text*/
small {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

/*Formats telephone element*/
.link-tel {
  color: inherit;
}

/*Elements*/
/*Buttons*/
.btn, .bg-blue .gform_wrapper FORM .gform_footer input, .gform_wrapper .gform_footer input {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  transition: 0.4s;
  white-space: normal;
  font-family: var(--font-family-jam-semibold);
  font-size: calc(clamp(1.5rem, 0.211vw + 1.421rem, 1.8rem));
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: clamp(1.3rem, 0.386vw + 1.155rem, 1.85rem) clamp(1.55rem, 0.351vw + 1.418rem, 2.05rem);
  /*Prmary button*/
  /*Stretches button full width at all breakpoints*/
  /*Stretches button full width on smallest breakpoint only*/
}
@media (min-width: 1200px) {
  .btn, .bg-blue .gform_wrapper FORM .gform_footer input, .gform_wrapper .gform_footer input {
    min-width: 186px;
  }
}
.btn:hover, .bg-blue .gform_wrapper FORM .gform_footer input:hover, .gform_wrapper .gform_footer input:hover {
  text-decoration: none;
  opacity: 0.8;
  color: inherit;
}
.btn.btn-primary, .bg-blue .gform_wrapper FORM .gform_footer input, .gform_wrapper .gform_footer input {
  align-items: center;
  min-width: 40px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.btn.btn-lime-green, .bg-blue .gform_wrapper FORM .gform_footer input.btn-lime-green, .gform_wrapper .gform_footer input.btn-lime-green {
  background: var(--color-lime-green);
  color: var(--color-black);
}
.btn.btn-navy, .bg-blue .gform_wrapper FORM .gform_footer input.btn-navy, .gform_wrapper .gform_footer input {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn.btn-outline, .bg-blue .gform_wrapper FORM .gform_footer input.btn-outline, .gform_wrapper .gform_footer input.btn-outline {
  box-shadow: 0px 0px 0px 1px var(--color-navy) inset;
}
.btn.btn-full, .bg-blue .gform_wrapper FORM .gform_footer input.btn-full, .gform_wrapper .gform_footer input.btn-full {
  width: 100%;
}
@media (max-width: 575.98px) {
  .btn.btn-xs-full, .bg-blue .gform_wrapper FORM .gform_footer input.btn-xs-full, .gform_wrapper .gform_footer input.btn-xs-full {
    width: 100%;
  }
}

/*Button row*/
.btn-row {
  align-items: center;
  display: flex;
  width: 100%;
  gap: 10px;
}
@media (max-width: 575.98px) {
  .btn-row:not(.inline-xs) {
    flex-wrap: wrap;
  }
}
@media (max-width: 374.98px) {
  .btn-row .btn, .btn-row .bg-blue .gform_wrapper FORM .gform_footer input, .bg-blue .gform_wrapper FORM .gform_footer .btn-row input, .btn-row .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .btn-row input {
    width: 100%;
  }
}
@media (max-width: 376px) {
  .btn-row .btn, .btn-row .bg-blue .gform_wrapper FORM .gform_footer input, .bg-blue .gform_wrapper FORM .gform_footer .btn-row input, .btn-row .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .btn-row input {
    flex-grow: 1;
  }
}
@media (max-width: 575.98px) {
  .btn-row .btn, .btn-row .bg-blue .gform_wrapper FORM .gform_footer input, .bg-blue .gform_wrapper FORM .gform_footer .btn-row input, .btn-row .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .btn-row input {
    margin-top: 20px;
  }
}

/*Stacked column of buttons*/
.btn-stacked {
  display: inline-flex;
  flex-direction: column;
}
.btn-stacked .btn:not(:last-child), .btn-stacked .gform_wrapper .gform_footer input:not(:last-child), .gform_wrapper .gform_footer .btn-stacked input:not(:last-child) {
  margin-bottom: 20px;
}

:root {
  --color-error: #253347;
  /* Default error color */
}

.bg-lime-green {
  --color-error: #253347!important;
  /* Specific error color for lime-green backgrounds */
}

.bg-navy {
  --color-error: #F5F5F5;
  /* Use lime-green color for navy backgrounds */
}

.gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .gform_wrapper.gravity-theme .gfield_error label, .gform_wrapper.gravity-theme .gfield_error legend, .gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message, .gform_wrapper.gravity-theme [aria-invalid=true] + label, .gform_wrapper.gravity-theme label + [aria-invalid=true] {
  color: var(--color-error) !important;
}

.g-form-wrapper {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .g-form-wrapper {
    width: 290px;
  }
}

.gform_wrapper {
  width: 100%;
  margin: 0 auto;
}

/*Gravity forms*/
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  width: 100%;
}
.gform_wrapper legend {
  font-size: calc(clamp(1.6rem, 0.14vw + 1.547rem, 1.8rem));
}
.gform_wrapper label.gfield_label {
  text-align: left;
  font-size: calc(clamp(1.6rem, 0.14vw + 1.547rem, 1.8rem)) !important;
  width: 100%;
}
.gform_wrapper .gfield {
  position: relative;
  text-align: left;
}
.gform_wrapper .gfield.gfield_contains_required .gfield_label {
  font-size: calc(clamp(1.6rem, 0.14vw + 1.547rem, 1.8rem)) !important;
}
.gform_wrapper .gfield.gfield_contains_required .gfield_label:after {
  color: var(--color-error) !important;
  content: "";
  display: inline-block;
  margin-left: 4px;
}
.gform_wrapper .gfield_required {
  text-transform: uppercase;
  font-size: 1rem;
  font-family: var(--font-family-source-regular);
  font-style: normal;
  font-weight: 500 !important;
  letter-spacing: 1px;
  float: right;
  font-style: normal !important;
  color: var(--color-black) !important;
  font-weight: 500;
  font-size: 1rem !important;
  margin-top: 5px;
}
.gform_wrapper .gfield_required .gfield_required_text {
  display: none !important;
}
.gform_wrapper .gfield_required:after {
  content: "Required";
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea, .gform_wrapper select {
  font-family: "Source Sans 3", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.8rem !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-clip: padding-box;
  box-shadow: none;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  line-height: 1.5;
  transition: 0.4s;
  background: var(--color-white);
  color: var(--color-black);
  min-height: 57px;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder, .gform_wrapper select::-moz-placeholder {
  color: var(--color-black);
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .gform_wrapper textarea:-ms-input-placeholder, .gform_wrapper select:-ms-input-placeholder {
  color: var(--color-black);
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder, .gform_wrapper textarea::placeholder, .gform_wrapper select::placeholder {
  color: var(--color-black);
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .gform_wrapper textarea:focus, .gform_wrapper select:focus {
  outline: none;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus-visible, .gform_wrapper textarea:focus-visible, .gform_wrapper select:focus-visible {
  outline: 2px auto var(--color-black);
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 10px;
}
@media (min-width: 576px) {
  .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
    padding: 16px 27px 16px 19px;
  }
}
.gform_wrapper select, .gform_wrapper .gfield-select, .gform_wrapper textarea {
  padding-left: 18px !important;
}
.gform_wrapper select {
  background: #fff url("/assets/images/icons/dropdown-arrow.svg") no-repeat !important;
  background-position: right 2rem center !important;
  background-size: 12px 17px !important;
}
@media (max-width: 993px) {
  .gform_wrapper select {
    background-image: url("/assets/images/icons/dropdown-arrow-mobile.svg") no-repeat !important;
    background-position: right 2rem center !important;
  }
}
.gform_wrapper .gfield_html_formatted {
  font-size: 1.6rem;
  line-height: 24px;
}
.gform_wrapper .gform_footer {
  text-align: left;
  padding: 0px !important;
  margin-top: 25px !important;
}
.gform_wrapper .gform_footer input {
  position: relative;
  border: none;
  color: var(--color-white);
  margin: 0 auto;
}
@media (min-width: 576px) {
  .gform_wrapper .gform_footer input {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .gform_wrapper .gform_footer input {
    display: flex;
  }
}
.gform_wrapper .gfield_validation_message {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  width: auto !important;
}
.gform_wrapper .gsection {
  border-bottom: 0px !important;
}
.gform_wrapper .gsection .gsection_description {
  font-size: 1.6rem !important;
  font-family: "Source Sans 3", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: normal;
}
.gform_wrapper.gravity-theme .gfield_checkbox .gchoice label {
  vertical-align: top;
}

.gravity-submit {
  position: relative;
  margin-top: 10px;
  color: var(--color-black);
}

.gform_wrapper FORM .gform_footer SPAN:after {
  content: "";
  background: url(/assets/images/elements/arrow-right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 7px;
  height: 12px;
  font-size: 20px;
  z-index: 100;
  position: absolute;
  display: block;
  top: 40%;
  transform: translateY(-50%);
  left: 145px;
}
@media screen and (min-width: 993px) {
  .gform_wrapper FORM .gform_footer SPAN:after {
    left: 175px;
  }
}

.top_label {
  position: relative;
}

@media (min-width: 641px) {
  .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full), .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
    padding-right: 0px !important;
  }
}
.check-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
}
.check-input:hover {
  cursor: pointer;
}
.check-input.checked label:after {
  content: "";
  background: #707070;
}
.check-input input[type=checkbox] {
  width: 97%;
  height: 95%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
}
.check-input input[type=checkbox]:hover {
  cursor: pointer;
}
.check-input label {
  width: 100%;
}
.check-input label:hover {
  cursor: pointer;
}
.check-input label:after {
  position: absolute;
  right: 4px;
  height: 13px;
  width: 13px;
  margin-right: 2px;
  content: " ";
  display: inline-block;
  vertical-align: baseline;
  border: 2px solid #FFF;
  border-radius: 50%;
}
.check-input label:before {
  content: "";
  position: absolute;
  top: 3px;
  right: 4px;
  bottom: 0px;
  height: 17px;
  width: 17px;
  border: 2px solid #707070;
  border-radius: 50%;
}

.gfield {
  position: relative;
}

.gfield input {
  transition: 0.1s all linear;
}

.gfield label {
  color: var(--color-black);
  transition: 0.1s all linear;
  cursor: text;
  font-family: var(--font-family-source-regular);
  font-style: normal;
  line-height: 1.5;
  font-weight: bold !important;
  font-size: 1.8rem !important;
  margin-bottom: 10px;
}

.input-label {
  position: absolute;
  top: 26px;
  left: 18px;
}

.gfield.active .input-label {
  top: 5px;
  opacity: 1;
}

.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  text-transform: uppercase;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 3px !important;
  color: var(--color-error);
  position: relative;
}

.gform_wrapper .gfield_error label {
  color: var(--color-error) !important;
  top: 25px;
}

.gform_wrapper .gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border: 2px solid var(--color-error);
}

.textarea-label {
  color: var(--color-white) !important;
  position: relative !important;
  top: 0px !important;
  left: 0px !important;
  opacity: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  font-size: 1.3rem !important;
  color: var(--color-white) !important;
}

.gform_validation_errors {
  display: none;
}

.bg-blue .gform_wrapper FORM .gform_footer input {
  border-radius: 0px;
  color: var(--color-black) !important;
  border: 2px solid transparent;
}
.bg-blue .gform_wrapper FORM .gform_footer input:hover {
  background-color: transparent;
  border: 2px solid white;
}

.ginput_container_radio label, .ginput_container_checkbox label {
  color: var(--color-black);
}

.gfield_checkbox .gchoice, .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gfield_checkbox label, .gfield_radio label {
  opacity: 1;
}
.gfield_checkbox input, .gfield_radio input {
  accent-color: var(--color-black);
}

.validation_message--hidden-on-empty {
  display: none;
}

.gform_wrapper .gfield_error [aria-invalid=true] {
  border: 2px solid var(--color-error) !important;
}

.gform_wrapper .gfield_required .gfield_required_custom, .gform_wrapper .gfield_required .gfield_required_text {
  display: none;
}

.gform_wrapper.gravity-theme .gfield_label {
  font-size: calc(clamp(1.6rem, 0.14vw + 1.547rem, 1.8rem)) !important;
  font-weight: bold !important;
}

footer .gform_wrapper.gravity-theme .gfield_label {
  color: var(--color-white) !important;
}
footer .gform_wrapper .gfield_required {
  color: var(--color-white) !important;
}
footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), footer .gform_wrapper textarea, footer .gform_wrapper select {
  background-color: rgba(var(--color-white), 0.2) !important;
  border: 1px solid transparent;
  color: var(--color-white);
}
footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, footer .gform_wrapper textarea::-moz-placeholder, footer .gform_wrapper select::-moz-placeholder {
  color: var(--color-white);
}
footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, footer .gform_wrapper textarea:-ms-input-placeholder, footer .gform_wrapper select:-ms-input-placeholder {
  color: var(--color-white);
}
footer .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder, footer .gform_wrapper textarea::placeholder, footer .gform_wrapper select::placeholder {
  color: var(--color-white);
}

.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: 1 !important;
}
@media (max-width: 575.98px) {
  .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    min-width: 162px;
  }
}

.bg-navy .gfield label {
  color: var(--color-white);
}
.bg-navy .gform_wrapper .gform_footer input {
  background-color: var(--color-lime-green);
  color: var(--color-black);
}
.bg-navy .gform_wrapper .gfield_required, .bg-navy .gfield_error .gfield_label, .bg-navy .gfield_error .gfield_consent_label, .bg-navy .gfield_error .gchoice, .bg-navy .gfield_error label {
  color: #fff !important;
  opacity: 1 !important;
}
.bg-navy .gform_wrapper .gfield_validation_message, .bg-navy .gform_wrapper .validation_message {
  color: var(--color-lime-green);
}
.bg-navy .gform_wrapper .validation_message {
  border-color: var(--color-lime-green);
  background: #111;
}
.bg-navy .gform_wrapper.gravity-theme .gfield_error .gfield_repeater_cell label, .bg-navy .gform_wrapper.gravity-theme .gfield_error label, .bg-navy .gform_wrapper.gravity-theme .gfield_error legend, .bg-navy .gform_wrapper.gravity-theme .gfield_validation_message, .bg-navy .gform_wrapper.gravity-theme .validation_message, .bg-navy .gform_wrapper.gravity-theme [aria-invalid=true] + label, .bg-navy .gform_wrapper.gravity-theme label + [aria-invalid=true] {
  color: var(--color-lime-green) !important;
}

.bg-lime-green .btn:hover, .gform_wrapper .gform_footer .bg-lime-green input:hover, .bg-lime-green .bg-blue .gform_wrapper FORM .gform_footer input:hover, .bg-lime-green .gform_wrapper .gform_footer input:hover {
  color: var(--color-white);
}

/*Heading mixin options*/
/*Heading options*/
.micro-title {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  display: block;
}

.micro-title-small {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  display: block;
}

.micro-title-large {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  display: block;
}

.heading-1, .title-large {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: calc(clamp(3.2rem, 1.123vw + 2.779rem, 4.8rem));
  display: block;
}
@media (min-width: 768px) {
  .heading-1, .title-large {
    letter-spacing: 0.15em;
  }
}

.heading-2, .title-medium {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-size: calc(clamp(2.8rem, 1.404vw + 2.274rem, 4.8rem));
  display: block;
}

.heading-3, .title-small {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0.01em;
  font-size: calc(clamp(2.4rem, 0.491vw + 2.216rem, 3.1rem));
  display: block;
}

.heading-4, .title-xsmall {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0em;
  font-size: calc(clamp(2rem, 0.281vw + 1.895rem, 2.4rem));
  display: block;
}

/*Add transition to all heading options*/
[class*=heading-] {
  transition: 0.4s;
}
[class*=heading-] a:hover {
  color: var(--color-light-purple);
}

/* Components - specific elements that make up a page */
/*GLobal accordion setup*/
.accordion-default details {
  color: black;
}
.accordion-default details summary {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  line-height: 1.34;
  letter-spacing: 0em;
  font-size: calc(clamp(2rem, 0.281vw + 1.895rem, 2.4rem));
  border-top: 1px solid #ddd;
  padding-top: 20px;
  position: relative;
  padding-bottom: 25px;
  padding-right: 70px;
  position: relative;
}
.accordion-default details summary::-webkit-details-marker {
  display: none;
}
@media (min-width: 500px) and (max-width: 1199px) {
  .accordion-default details summary {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .accordion-default details summary {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.accordion-default details summary::marker {
  display: none;
  content: "";
}
.accordion-default details summary:after, .accordion-default details summary:before {
  content: "";
  position: absolute;
  right: 5px;
  top: 16.5px;
  height: 40px;
  width: 40px;
  background-size: contain;
  transition: all 0.2s;
}
.accordion-default details summary:after {
  background: url("/assets/images/icons/icon-right-arrow-gray.svg");
  transform: rotate(0deg);
}
.accordion-default details .accordion-detail {
  padding-top: 20px;
  padding-bottom: 55px;
}
.accordion-default details .accordion-detail a {
  color: black;
}
.accordion-default details[open] summary {
  border-top: 2px solid var(--color-lime-green);
}
.accordion-default details[open] summary:before {
  transform: rotate(180deg) !important;
}
.accordion-default details[open] summary:after {
  background: url("/assets/images/icons/icon-right-arrow.svg");
  transform: rotate(0deg) !important;
}
/*Global modal setup*/
.modal {
  /*close button*/
}
.modal .modal-content {
  border: none;
  background: transparent;
  border-radius: 0;
}
.modal .modal-body {
  padding: 0;
}
.modal button {
  background: transparent;
  border: none;
  font-size: 3.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-white);
  margin-left: auto;
}
.modal.video-modal .modal-dialog {
  max-width: 1000px;
}
.modal.video-modal .modal-content {
  position: relative;
  background: transparent;
  border: none;
  padding-top: 50px;
}
.modal.video-modal .modal-content .close {
  border: none;
  background: transparent;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1 !important;
  color: var(--color-white) !important;
  font-size: 4rem;
}
@media (max-width: 1000px) {
  .modal.video-modal .modal-content .close {
    right: 10px;
  }
}
.modal.video-modal .modal-content .modal-body {
  padding: 0;
  background: transparent;
}
.modal.video-modal .modal-content .modal-body figure {
  position: relative;
  padding-bottom: 56.56%;
}
.modal.video-modal .modal-content .modal-body iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/*Layout*/
/* General colors */
/*Global site header*/
.site-header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.16);
}
.site-header .header-bottom .header-flex {
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .header-flex {
    padding-right: 0;
    padding-left: 15px;
  }
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .header-flex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .header-flex .site-branding {
    margin-right: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  .site-header .header-bottom .header-flex .site-branding {
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-header .header-bottom .header-flex .site-branding img {
    width: 91px;
    height: auto;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation {
    background: #FFF;
    bottom: 0;
    display: block;
    left: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 86px;
    transition: 0.3s;
    visibility: hidden;
    z-index: 100;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 499px) {
  .site-header .header-bottom .site-navigation {
    top: 59px;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation.mobile-show {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
  }
}
.site-header .header-bottom .site-navigation ul {
  display: flex;
  margin-bottom: 0;
  background: #FFF;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul {
    flex-direction: column;
    padding-right: 20px;
    border-top: 1px solid var(--color-white);
  }
}
@media screen and (max-width: 993px) {
  .site-header .header-bottom .site-navigation ul {
    height: 100%;
  }
}
.site-header .header-bottom .site-navigation ul li {
  display: inline-block;
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul li {
    margin-right: 20px;
    margin-left: 20px;
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 993px) {
  .site-header .header-bottom .site-navigation ul li {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-nav {
  margin-top: 5px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-nav {
    border-bottom: 1px solid #B0C3CD;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-sub {
  position: relative;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub {
    border-bottom: 1px solid #B0C3CD;
  }
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow {
    position: relative;
    background: white;
    z-index: 10;
  }
}
@media screen and (max-width: 992px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow {
    transition: 0.4s;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow:after {
    content: "";
    background: url("/assets/images/icons/chevron-mobile-down-new.svg") no-repeat;
    background-size: contain;
    right: 0px;
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 992px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow:after {
    transition: 0.4s;
  }
}
@media screen and (max-width: 992px) and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow:after {
    background: url("/assets/images/icons/chevron-down.svg") no-repeat;
    right: 17px;
    display: block;
    width: 13px;
    height: 8px;
  }
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub > span {
    padding-bottom: 5px;
    margin-top: 5px;
    border-bottom: 4px solid transparent;
  }
}
@media screen and (min-width: 993px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub > span {
    transition: 0.4s;
  }
}
@media screen and (min-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub > span:hover {
    cursor: pointer;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-sub img {
  margin-left: 5px;
}
.site-header .header-bottom .site-navigation ul li.parent-sub.menu-active {
  overflow: initial;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active > span a {
    color: var(--color-navy);
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active {
    padding-bottom: 35px;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-sub.menu-active:after {
  display: block;
  background: white;
  width: 30px;
  height: 17.5px;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  border-radius: 100px 100px 0px 0px;
  z-index: -1;
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active:after {
    -webkit-animation: fadeIn 0.4s ease forwards;
            animation: fadeIn 0.4s ease forwards;
  }
}
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active .dropdown-arrow {
    transition: 0.4s;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-sub.menu-active .dropdown-arrow:after {
  background: url("/assets/images/icons/chevron-mobile-down-active.svg") no-repeat;
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active .dropdown-arrow:after {
    -webkit-animation: fadeOut 0.4s ease forwards;
            animation: fadeOut 0.4s ease forwards;
  }
}
.site-header .header-bottom .site-navigation ul a {
  display: block;
  font-family: var(--font-family-source-regular);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul a {
    width: 100%;
    font-family: var(--font-family-jam-semibold);
    font-size: 2rem;
    letter-spacing: 0.2em;
    color: var(--color-navy);
    text-transform: uppercase;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu {
    max-height: 0;
    /* Start with no visible height */
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease;
  }
}
@media (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu {
    opacity: 0;
    display: none;
    -webkit-animation: fadeOut 0.4s ease forwards;
            animation: fadeOut 0.4s ease forwards;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul {
  flex-direction: column;
  white-space: nowrap;
  position: relative;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul {
    transition: 0.4s;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul {
    padding-left: 0;
  }
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul {
    padding-left: 0;
    flex-direction: column;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li a {
  text-transform: initial;
  line-height: 1;
  font-size: 1.8rem;
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li a {
    padding: 12px 0px;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li a {
    font-family: var(--font-family-source-regular);
    padding: 8px 0px;
    color: var(--color-navy);
    border-left: none;
    border-bottom: 1px solid #FFF;
    letter-spacing: 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu {
  background: white;
  border-radius: 20px;
  opacity: 1;
  -webkit-animation: fadeIn 0.4s ease forwards;
          animation: fadeIn 0.4s ease forwards;
  transform: translateX(0);
  will-change: transform;
}
@media (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu {
    max-height: 600px;
  }
}
@media (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu {
    flex-direction: row;
    position: absolute;
    top: 120px;
  }
}
@media (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu > div:first-child {
    padding: 45px 62px 50px 61px;
  }
}
@media (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu > div:first-child {
    margin-top: 10px;
  }
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu {
    display: flex;
    position: relative;
  }
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu {
    display: flex;
  }
}
@media screen and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu {
    flex-direction: row;
    justify-content: space-between;
    left: -35%;
    transform: translateX(-35%);
  }
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu.with-img {
    min-width: 840px;
    overflow: hidden;
  }
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu.with-img .img-lg img {
    -webkit-mask: url("/assets/images/placeholders/bubble-mask.svg") no-repeat center;
            mask: url("/assets/images/placeholders/bubble-mask.svg") no-repeat center;
    max-width: 100%;
    display: block;
    aspect-ratio: 1;
    -o-object-fit: contain;
       object-fit: contain;
    mask-size: contain;
    -webkit-mask-size: contain;
    transform: translate(31px, -112px);
  }
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu.with-img .img-sm {
    width: 422px;
  }
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu.with-img .img-sm img {
    -webkit-mask: url("/assets/images/placeholders/bubble-masked-flipped.svg") no-repeat bottom center;
            mask: url("/assets/images/placeholders/bubble-masked-flipped.svg") no-repeat bottom center;
    display: block;
    aspect-ratio: 1;
    mask-size: 467px 432px;
    -webkit-mask-size: 467px 432px;
    margin-bottom: -90px;
    mask-position: 467px 432px;
    -webkit-mask-position: 32px -109px;
    transform: translate(0px, -90px);
    max-height: 388px;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu ul {
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu ul li {
    padding-left: 0;
    padding-right: 0;
  }
}

/*Toggler icons*/
.toggler-icons {
  background: transparent;
  border-bottom: 2px solid transparent;
  border-color: transparent;
  border-top: 2px solid transparent;
  color: var(--color-navy);
  display: block;
  font-size: 0;
  height: 14px;
  margin: 0 auto;
  position: relative;
  width: 24px;
  margin-right: 16px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .toggler-icons {
    transition: 0.4s;
  }
}
.toggler-icons:before, .toggler-icons:after {
  background: var(--color-navy);
  border-radius: 0px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .toggler-icons:before, .toggler-icons:after {
    transition: 0.4s;
  }
}
.toggler-icons:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.toggler-icons:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*Adds navigation toggle button on mobile*/
.navbar-toggle {
  background: transparent;
  border: none;
  height: 59px;
  opacity: 1;
  padding: 0;
  pointer-events: all;
  position: relative;
  visibility: visible;
  width: 59px;
  z-index: 100;
  /*Default styles*/
  /*Used when sub toggle is visible*/
}
@media screen and (min-width: 993px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle:focus {
  outline: none;
}
.navbar-toggle.collapsed {
  background: transparent;
}
.navbar-toggle.collapsed .toggler-icons {
  border-color: var(--color-navy);
}
.navbar-toggle.collapsed .toggler-icons:before, .navbar-toggle.collapsed .toggler-icons:after {
  transform: translate(-50%, -50%);
  background: var(--color-navy);
}
.navbar-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.sub-title {
  font-family: var(--font-family-jam-medium);
  line-height: 1.34;
  letter-spacing: -0.02em;
  font-size: 3.1rem;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
}

.nav-feat-img {
  border-radius: 20px;
}

.active-page {
  position: relative;
}

.parent-sub, .parent-nav {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.parent-sub:before, .parent-nav:before {
  transition: 0.4s;
  content: url("/assets/images/icons/active-page.svg");
  width: 25px;
  height: 8px;
  position: absolute;
  bottom: 2px;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
}
@media (max-width: 992px) {
  .parent-sub:before, .parent-nav:before {
    display: none;
  }
}
@media (min-width: 993px) {
  .parent-sub:hover:before, .parent-nav:hover:before {
    opacity: 1;
  }
}
.parent-sub:hover:before, .parent-nav:hover:before {
  bottom: 10px;
}

@media (min-width: 993px) {
  .active-page:before {
    content: url("/assets/images/icons/active-page.svg");
    width: 25px;
    height: 8px;
    position: absolute;
    bottom: 10px;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
  }
}

.parent-sub.active-page:before {
  bottom: 10px;
}

.header-event-date {
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #55749B;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .header-bottom .header-cta {
    position: relative;
    z-index: 100;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-top: auto;
    width: 100%;
  }
  .header-bottom .header-cta a.btn {
    font-size: 1.5rem !important;
    text-align: center;
  }
}
/*Global site footer*/
@media (max-width: 992px) {
  .site-footer .sm-mb {
    margin-bottom: 37px;
  }
  .site-footer .sm-mb:last-child {
    margin-bottom: 0;
  }
}
.site-footer .footer-info {
  padding-top: clamp(5rem, 0.351vw + 4.868rem, 5.5rem);
  padding-bottom: clamp(5rem, 0.351vw + 4.868rem, 5.5rem);
}
.site-footer .footer-info strong {
  text-transform: uppercase;
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  line-height: 1.6;
  display: block;
}
@media (min-width: 768px) {
  .site-footer .footer-info strong {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
  }
}
.site-footer .footer-info a {
  font-family: var(--font-family-source-regular);
  font-size: 1.6rem;
  text-decoration: none;
}
.site-footer .footer-info a:hover {
  color: inherit;
  opacity: 0.8;
}
.site-footer .footer-info .social-div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.site-footer .footer-info .social-icons {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
  gap: 20px;
}
@media (min-width: 768px) {
  .site-footer .footer-info .social-icons {
    gap: 30px;
    margin-top: 0;
    justify-content: start;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-info .company-name span {
    margin-top: 8px;
  }
}
.site-footer .keep-exploring {
  padding-top: clamp(1.3rem, 2.456vw + 0.379rem, 4.8rem);
  padding-bottom: clamp(2.6rem, 1.544vw + 2.021rem, 4.8rem);
}
.site-footer .keep-exploring h5 {
  font-family: var(--font-family-jam-medium);
  font-weight: normal;
  letter-spacing: -0.01em;
  font-size: 2.4rem;
}
.site-footer .keep-exploring nav {
  display: flex;
  margin-top: clamp(0rem, 2.667vw + -1rem, 3.8rem);
  text-wrap: nowrap;
  overflow-x: scroll;
}
@media (min-width: 993px) {
  .site-footer .keep-exploring nav {
    justify-content: center;
    align-items: center;
  }
}
.site-footer .keep-exploring nav::-webkit-scrollbar {
  display: none;
}
.site-footer .keep-exploring nav a {
  text-decoration: none;
  color: #fff;
  background: transparent !important;
  padding-top: 10px;
  font-size: 1.8rem;
}
.site-footer .keep-exploring nav a span {
  transition: 0.4s;
}
.site-footer .keep-exploring nav a span:before {
  transition: 0.4s;
}
.site-footer .keep-exploring nav a span:hover, .site-footer .keep-exploring nav a span.selected {
  color: var(--color-lime-green);
  position: relative;
  background: transparent !important;
}
.site-footer .keep-exploring nav a span:hover:before, .site-footer .keep-exploring nav a span.selected:before {
  content: "";
  position: absolute;
  background: url("/assets/images/icons/selected-footer-page.svg") no-repeat;
  width: 12px;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-size: contain;
  top: -6px;
}
.site-footer .keep-exploring .first-link::after {
  content: "|";
  margin-left: clamp(2rem, 3.439vw + 0.711rem, 6.9rem);
  margin-right: clamp(2rem, 3.439vw + 0.711rem, 6.9rem);
  color: rgba(255, 255, 255, 0.2);
}
.site-footer .keep-exploring .last-link::before {
  content: "|";
  margin-left: clamp(2rem, 3.439vw + 0.711rem, 6.9rem);
  margin-right: clamp(2rem, 3.439vw + 0.711rem, 6.9rem);
  color: rgba(255, 255, 255, 0.2);
}
.site-footer .keep-exploring .center-links {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 3.439vw + 0.711rem, 6.9rem);
}
.site-footer .keep-exploring .center-links > *:not(:last-child)::after {
  content: "|";
  margin-left: clamp(2rem, 3.439vw + 0.711rem, 6.9rem);
  color: rgba(255, 255, 255, 0.2);
}
.site-footer .keep-exploring ul {
  display: flex;
  justify-content: space-between;
}
.site-footer .keep-exploring ul li {
  display: inline-block;
}
.site-footer .all-rights {
  font-family: var(--font-family-source-regular);
  font-size: 1.6rem;
  line-height: 1.5;
  color: #231F20;
  padding-top: clamp(2rem, 0.912vw + 1.658rem, 3.3rem);
  padding-bottom: clamp(2rem, 0.912vw + 1.658rem, 3.3rem);
}
.site-footer .all-rights .copyright {
  margin-bottom: 5px;
}
.site-footer .all-rights .copyright small {
  display: block;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-size: 1.6rem;
  margin-right: 15px;
}
.site-footer .all-rights ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.site-footer .all-rights ul li {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
.site-footer .all-rights ul li:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 5px;
  height: 16px;
  width: 1px;
  background: #5F5D5E;
}
.site-footer .all-rights ul a {
  text-decoration: none;
  font-family: var(--font-family-source-regular);
  font-size: 1.6rem;
  line-height: 1.5;
  transition: 0.4s;
}
.site-footer .all-rights ul a:hover {
  color: inherit;
  opacity: 0.8;
}
.site-footer .powered-by-electric-pulp {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  text-decoration: none;
}
.site-footer .powered-by-electric-pulp:hover {
  color: inherit;
}
.site-footer .powered-by-electric-pulp img {
  margin-top: 3px;
}

/* Add styles for mobile centering of 4th link */
@media screen and (max-width: 767px) {
  .site-footer .keep-exploring nav a:nth-child(4) {
    margin-left: auto;
    margin-right: auto;
  }
}
/*Global main content area*/
.site-main {
  padding-top: 86px;
}
@media (min-width: 993px) {
  .site-main {
    padding-top: 94px;
  }
}
.site-main p a {
  font-weight: bold;
  text-decoration: underline;
}
.site-main p a:hover {
  color: rgba(37, 51, 71, 0.8);
}
.site-main .bg-navy p a {
  color: #c5d210;
}
.site-main .bg-navy p a:hover {
  color: rgba(197, 210, 16, 0.8);
}

.post-info .post-background {
  background-color: var(--color-navy);
  min-height: clamp(30rem, 21.053vw + 22.105rem, 60rem);
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
}
.post-info .svg-after-top-right {
  position: absolute;
  display: block;
  right: 0px;
  top: 94px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-top-right.svg");
  width: 155px;
  height: 220px;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 992px) {
  .post-info .svg-after-top-right {
    width: 83px;
    background-size: contain;
    top: 86px;
    bottom: initial;
    background-position: 0 0;
  }
}
.post-info .post-header {
  padding-bottom: clamp(2rem, 1.754vw + 1.342rem, 4.5rem);
}
.post-info .post-header strong {
  margin-bottom: 20px;
}
.post-info .post-cover {
  margin-bottom: 40px;
}
.post-info .post-cover img {
  border-radius: 20px;
}
.post-info .col-content {
  padding-top: clamp(4rem, 3.158vw + 2.816rem, 8.5rem);
}
.post-info .col-content.col-pb {
  padding-top: 0;
  padding-bottom: clamp(3rem, 4.912vw + 1.158rem, 10rem);
}

/* Blocks */
.block-event-video {
  padding-top: clamp(2.2rem, 4vw + 0.7rem, 7.9rem);
  padding-bottom: clamp(4rem, 1.544vw + 3.421rem, 6.2rem);
  position: relative;
  overflow: hidden;
}
.block-event-video .svg-before {
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/event-before.svg");
  width: 519px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 992px) {
  .block-event-video .svg-before {
    display: none;
  }
}
.block-event-video .svg-after {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/event-after.svg");
  width: 500px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
}
@media (max-width: 992px) {
  .block-event-video .svg-after {
    width: 315px;
    right: -83px;
  }
}
.block-event-video .container-fluid, .block-event-video .container-sm, .block-event-video .container-md, .block-event-video .container-lg, .block-event-video .container-xl, .block-event-video .container-xxl {
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .block-event-video .title-large {
    margin-bottom: -5px;
  }
}
.block-event-video .location {
  font-family: var(--font-family-jam-medium);
  line-height: 1.34;
  font-size: calc(clamp(2.8rem, 0.211vw + 2.721rem, 3.1rem));
}
.block-event-video figure {
  position: relative;
}
.block-event-video img {
  margin-top: clamp(3rem, -2.105vw + 3.789rem, 0rem);
  margin-bottom: clamp(3.5rem, 1.333vw + 3rem, 5.4rem);
}
.block-event-video button {
  background-color: transparent;
  border: none;
}
.block-event-video .play-video {
  position: absolute;
  margin-bottom: 0;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  transition: 0.4s;
}
.block-event-video .play-video:after {
  content: initial;
}
.block-event-video .play-video a {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}
.block-event-video .play-video a:hover {
  color: #FFF;
}
.block-event-video .video-thumbnail:hover .play-video {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.2);
}
.block-event-video .divider::before {
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  content: "|";
}
.block-event-video .tagline {
  font-family: var(--font-family-jam-medium);
  line-height: 1.34;
  font-size: calc(clamp(1.8rem, 0.421vw + 1.642rem, 2.4rem));
}

.artist-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.artist-container.artist-grid {
  display: grid;
  grid-template-columns: minmax(0, 450px);
  justify-content: center;
}
@media (min-width: 600px) and (max-width: 992px) {
  .artist-container.artist-grid {
    grid-template-columns: repeat(2, minmax(0, 450px));
  }
}
@media (min-width: 993px) {
  .artist-container.artist-grid {
    grid-template-columns: repeat(3, minmax(0, 450px));
  }
}
@media (min-width: 993px) {
  .artist-container {
    gap: 30px;
    row-gap: 30px;
  }
}
.artist-container .artist-card {
  width: 100%;
  max-width: 450px;
}
@media (min-width: 600px) and (max-width: 992px) {
  .artist-container {
    gap: 30px;
  }
  .artist-container .artist-card {
    flex: 0 1 calc(50% - 30px/2);
  }
}
@media (min-width: 993px) {
  .artist-container {
    gap: 30px;
  }
  .artist-container .artist-card {
    flex: 0 1 calc(33.333% - 30px * 2/3);
  }
}
.artist-container .artist-card {
  position: relative;
}
.artist-container .artist-card figure {
  overflow: hidden;
  border-radius: 20px;
}
.artist-container .artist-card figure:hover img {
  transform: scale(1.05);
}
.artist-container .artist-card figure.box-inner-shadow:after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 100%);
  height: 125px;
  bottom: 10px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 2;
}
.artist-container .artist-card img {
  transition: 0.4s;
}
.artist-container .artist-card img:hover {
  transform: scale(1.05);
}
.artist-container .artist-card figcaption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
  gap: 10px;
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-family-jam-semibold);
  font-weight: 600;
  font-size: calc(clamp(1.8rem, 0.421vw + 1.642rem, 2.4rem));
  line-height: 1.34;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  align-items: center;
  width: 100%;
  z-index: 5;
}
@media (min-width: 993px) {
  .artist-container .artist-card figcaption {
    bottom: 50px;
  }
}
.artist-container .artist-card figcaption span {
  border-radius: 100px;
  padding: 6px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  background: var(--color-lime-green);
}
@media (min-width: 993px) {
  .artist-container .artist-card figcaption span {
    padding: 10px 20px;
  }
}

.hero-actions {
  position: relative;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .hero-actions.min-desktop-800 {
    min-height: 819px;
  }
}
.hero-actions .svg-after {
  position: absolute;
  display: block;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/hero-actions-bg.svg");
  width: 400px;
  height: 100%;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
  transform: scaleX(-1);
  right: 50%;
  margin-right: -389px;
}
@media (max-width: 1399px) {
  .hero-actions .svg-after {
    margin-right: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-actions .svg-after {
    right: 23%;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .hero-actions .svg-after {
    right: 25%;
  }
}
.hero-actions .svg-after.svg-right {
  left: 50%;
  margin-left: -389px;
  transform: initial;
}
@media (max-width: 1399px) {
  .hero-actions .svg-after.svg-right {
    margin-left: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-actions .svg-after.svg-right {
    left: 27%;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .hero-actions .svg-after.svg-right {
    left: 24%;
  }
}
@media (max-width: 992px) {
  .hero-actions .svg-after {
    display: none;
  }
}
.hero-actions .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-actions .image-container.img-right {
  right: 0;
  left: initial;
}
.hero-actions .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .hero-actions .image-container {
    position: relative;
    width: 100%;
  }
  .hero-actions .image-container img {
    position: relative;
  }
}
.hero-actions .contents {
  position: relative;
  padding-top: clamp(4rem, 11.228vw + -0.211rem, 20rem);
  padding-bottom: clamp(4rem, 11.228vw + -0.211rem, 20rem);
}
.hero-actions .contents .pad-offset {
  padding-left: clamp(3rem, 9.046vw + -5.983rem, 10.3rem);
}
@media (min-width: 1451px) {
  .hero-actions .inner-content {
    max-width: 575px;
  }
}
.hero-actions .inner-content .content-excerpt {
  padding-top: clamp(30px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: relative;
  z-index: 10;
}
@media (max-width: 992px) {
  .hero-actions .inner-content .content-excerpt .btn-row {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 993px) and (max-width: 1299px) {
  .hero-actions .inner-content .content-excerpt .btn-row {
    gap: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}

.block-grid-two .title-header {
  padding-bottom: clamp(3rem, 4.912vw + 1.158rem, 10rem);
}
.block-grid-two .event-row {
  padding-bottom: clamp(8rem, 2.807vw + 6.947rem, 12rem);
}
.block-grid-two .pill {
  border-radius: 100px;
  padding: 6px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  background: var(--color-lime-green);
}

.grid-two {
  margin: 0 auto;
  max-width: 1400px;
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1399px) {
  .grid-two {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 993px) and (max-width: 992px) {
  .grid-two {
    gap: 60px;
  }
}
@media (min-width: 993px) and (max-width: 1399px) {
  .grid-two {
    gap: 100px;
  }
}
@media (min-width: 1400px) {
  .grid-two {
    grid-template-columns: 450px 570px;
    gap: 150px;
  }
}
.grid-two img {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .grid-two img {
    width: 100%;
  }
}
@media (min-width: 993px) {
  .grid-two img {
    width: 450px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.grid-two .col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0px;
}
.grid-two .col-content .details {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}
.grid-two .col-content .details span {
  display: flex;
  font-family: var(--font-family-source-regular);
  font-weight: bold;
  gap: 5px;
  align-items: center;
}
.grid-two .col-content .btn, .grid-two .col-content .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .grid-two .col-content input {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.grid-two .col-content p:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 993px) {
  .grid-two .col-content p:not(:last-child) {
    margin-bottom: 10px;
  }
}

.block-img-text {
  padding-top: clamp(2.3rem, 2.456vw + 1.379rem, 5.8rem);
  padding-bottom: clamp(4rem, 2.175vw + 3.184rem, 7.1rem);
}
@media (max-width: 767px) {
  .block-img-text .col-img {
    padding-bottom: 20px;
  }
}
@media (min-width: 1449px) {
  .block-img-text .col-img {
    display: flex;
    justify-content: center;
    padding-left: 3rem;
  }
}
.block-img-text .col-img img {
  -webkit-mask: url("/assets/images/placeholders/bubble-mask.svg") no-repeat center;
          mask: url("/assets/images/placeholders/bubble-mask.svg") no-repeat center;
  max-width: 100%;
  display: block;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.block-img-text .col-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.block-img-text .col-content .col-info {
  display: block;
  padding-top: clamp(1.5rem, -0.351vw + 1.632rem, 1rem);
  padding-bottom: clamp(0.5rem, 1.754vw + -0.158rem, 3rem);
}
@media (min-width: 1200px) {
  .block-img-text .order-lg-1 .col-content {
    padding-right: clamp(0rem, 26.667vw + -32rem, 12rem);
  }
}
@media (min-width: 1200px) {
  .block-img-text .order-lg-2 .col-content {
    padding-left: clamp(0rem, 26.667vw + -32rem, 12rem);
  }
}

.block-cta {
  padding-top: clamp(2rem, 5.614vw + -0.105rem, 10.2rem);
  padding-bottom: clamp(2rem, 5.614vw + -0.105rem, 10.2rem);
  position: relative;
  overflow: hidden;
}
.block-cta.headline-button {
  padding-top: clamp(2rem, 2.456vw + 1.079rem, 5.5rem);
  padding-bottom: clamp(2rem, 2.456vw + 1.079rem, 5.5rem);
}
.block-cta .svg-before-top-left {
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-top-left.svg");
  width: 155px;
  height: 220px;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 992px) {
  .block-cta .svg-before-top-left {
    width: 83px;
    background-size: contain;
    top: 0px;
    bottom: initial;
    background-position: 0 0;
  }
}
.block-cta .svg-before-right {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-right.svg");
  height: 100%;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 30%;
}
@media (max-width: 992px) {
  .block-cta .svg-before-right {
    display: none;
  }
}
.block-cta svg {
  margin-top: -10px;
  margin-bottom: -10px;
}
.block-cta .btn, .block-cta .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-cta input, .block-cta .bg-blue .gform_wrapper FORM .gform_footer input, .bg-blue .gform_wrapper FORM .gform_footer .block-cta input {
  margin-top: 15px;
}

.block-full-cta {
  padding-top: clamp(6rem, 2.807vw + 4.947rem, 10rem);
  padding-bottom: clamp(6.7rem, 2.316vw + 5.832rem, 10rem);
  position: relative;
}
.block-full-cta .svg-after {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-bubble.svg");
  width: 285px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
}
@media (max-width: 700px) {
  .block-full-cta .svg-after {
    width: 125px;
  }
}
.block-full-cta .col-content .title {
  font-family: var(--font-family-jam-medium);
  font-size: calc(clamp(3.2rem, 1.123vw + 2.779rem, 4.8rem));
  line-height: 1.34;
  letter-spacing: 0.05em;
  color: var(--color-navy);
  text-transform: uppercase;
}
@media (min-width: 993px) {
  .block-full-cta .col-content .title {
    letter-spacing: 0.15em;
  }
}
.block-full-cta .col-content p {
  max-width: 550px;
  margin: 0 auto;
  text-wrap: balance;
}
.block-full-cta .col-content form {
  max-width: 450px;
  margin: 40px auto;
  margin-top: clamp(2rem, 1.404vw + 1.474rem, 4rem);
}
.block-full-cta.bg-navy {
  border-bottom: 1px solid #415D84;
}
.block-full-cta.bg-navy .col-content .title {
  color: var(--color-white);
}
.block-full-cta.bg-navy .svg-after {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-bubble-white.svg");
  width: 285px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
}
@media (max-width: 700px) {
  .block-full-cta.bg-navy .svg-after {
    width: 125px;
  }
}

.block-headliners {
  padding-top: clamp(3.5rem, 3.86vw + 2.053rem, 9rem);
  padding-bottom: clamp(4rem, 4.211vw + 2.421rem, 10rem);
  position: relative;
}
.block-headliners .svg-after {
  position: absolute;
  display: block;
  right: 0px;
  top: -100px;
  bottom: 0px;
  background: url("/assets/images/placeholders/feature-bubble.svg");
  width: 360px;
  height: 100px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
}
@media (max-width: 992px) {
  .block-headliners .svg-after {
    display: none;
  }
}
.block-headliners .svg-after.svg-white {
  background: url("/assets/images/placeholders/feature-bubble-white.svg");
  left: 0px;
  right: initial;
  transform: scaleX(-1);
}
.block-headliners .presented-by {
  padding-bottom: clamp(2rem, 2.667vw + 1rem, 5.8rem);
}
.block-headliners .presented-by h2 {
  padding-bottom: 20px;
}
.block-headliners .btn-row {
  margin-top: clamp(0rem, 0.351vw + -0.132rem, 0.5rem);
  margin-bottom: clamp(3rem, 2.105vw + 2.211rem, 6rem);
}
.block-headliners .border-top-solid {
  border-top: 1px solid #ddd;
  padding-top: clamp(2rem, 2.667vw + 1rem, 5.8rem);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .svg-before {
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/hero-before.svg");
  width: 285px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 700px) {
  .hero .svg-before {
    width: 93px;
  }
}
.hero .svg-after {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/hero-after.svg");
  width: 285px;
  z-index: 5;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
}
@media (max-width: 700px) {
  .hero .svg-after {
    width: 93px;
  }
}
.hero video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero picture:before, .hero video:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  background: #253347;
  opacity: 0.9;
  color: var(--color-white);
}
.hero picture:after, .hero video:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: normal;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 4;
  background: rgba(37, 51, 71, 0.78);
  opacity: 0.8;
  color: var(--color-white);
}
.hero picture img, .hero video img {
  position: absolute;
  filter: grayscale(0.5);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.hero .video-container img {
  position: relative;
  filter: grayscale(0);
  -o-object-fit: initial;
     object-fit: initial;
  width: 40px;
  height: 40px;
  opacity: 1;
}
.hero .video-container button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
}
@media (min-width: 993px) {
  .hero .video-container button {
    bottom: 20px;
  }
}
.hero .video-container .js-control {
  display: none;
  z-index: -1;
}
.hero .video-container .js-control.current {
  display: block;
  z-index: 2200 !important;
}
.hero .video-control {
  background: #fff center/contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: none;
  bottom: 2rem;
  cursor: pointer;
  display: inline-block;
  height: 3rem;
  opacity: 0;
  outline: none;
  position: absolute;
  right: 2rem;
  transition: 0.3s;
  visibility: hidden;
  width: 3rem;
  z-index: 10;
}
.hero .video-control.play {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22 width%3D%2218%22 height%3D%2218%22 fill%3D%22white%22 aria-hidden%3D%22true%22%3E%3Cpath d%3D%22M8 5v14l11-7L8 5z%22%2F%3E%3C%2Fsvg%3E");
}
.hero .video-control.pause {
  background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22 width%3D%2218%22 height%3D%2218%22 fill%3D%22white%22 aria-hidden%3D%22true%22%3E%3Cpath d%3D%22M6 19h4V5H6v14zm8-14v14h4V5h-4z%22%2F%3E%3C%2Fsvg%3E");
}
.hero .container-fluid, .hero .container-sm, .hero .container-md, .hero .container-lg, .hero .container-xl, .hero .container-xxl {
  position: relative;
  z-index: 10;
  padding-top: clamp(7rem, 3.018vw + 5.868rem, 11.3rem);
  padding-bottom: clamp(5.5rem, 3.158vw + 4.316rem, 10rem);
  color: var(--color-white);
}
.hero .container-fluid svg, .hero .container-sm svg, .hero .container-md svg, .hero .container-lg svg, .hero .container-xl svg, .hero .container-xxl svg, .hero .container-fluid img, .hero .container-sm img, .hero .container-md img, .hero .container-lg img, .hero .container-xl img, .hero .container-xxl img, .hero .container-fluid .btn, .hero .container-sm .btn, .hero .container-md .btn, .hero .container-lg .btn, .hero .container-xl .btn, .hero .container-xxl .btn, .hero .container-fluid .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-fluid input, .hero .container-sm .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-sm input, .hero .container-md .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-md input, .hero .container-lg .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-lg input, .hero .container-xl .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-xl input, .hero .container-xxl .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-xxl input {
  margin: 0 auto;
}
.hero .container-fluid .btn, .hero .container-sm .btn, .hero .container-md .btn, .hero .container-lg .btn, .hero .container-xl .btn, .hero .container-xxl .btn, .hero .container-fluid .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-fluid input, .hero .container-sm .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-sm input, .hero .container-md .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-md input, .hero .container-lg .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-lg input, .hero .container-xl .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-xl input, .hero .container-xxl .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-xxl input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 270px;
}
@media (max-width: 499px) {
  .hero .container-fluid .btn, .hero .container-sm .btn, .hero .container-md .btn, .hero .container-lg .btn, .hero .container-xl .btn, .hero .container-xxl .btn, .hero .container-fluid .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-fluid input, .hero .container-sm .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-sm input, .hero .container-md .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-md input, .hero .container-lg .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-lg input, .hero .container-xl .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-xl input, .hero .container-xxl .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .hero .container-xxl input {
    width: 100%;
  }
}
.hero .event-info {
  padding-bottom: clamp(2rem, 2.105vw + 1.211rem, 5rem);
}
@media (max-width: 767px) {
  .hero .event-info {
    max-width: 64%;
    margin: 0 auto;
    min-width: 264px;
  }
}
.hero .event-info .event-date {
  font-size: calc(clamp(1.5rem, 0.702vw + 1.237rem, 2.5rem));
  padding-bottom: 5px;
  display: block;
}
.hero .presented-by {
  display: block;
  margin-bottom: 15px;
}
.hero .event-label {
  font-family: var(--font-family-jam-medium);
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero .event-type {
  font-size: calc(clamp(2.1rem, 1.333vw + 1.6rem, 4rem));
}

.block-lineup {
  padding-top: clamp(2rem, 3.158vw + 0.816rem, 6.5rem);
  padding-bottom: clamp(4rem, 5.614vw + 1.895rem, 12rem);
  position: relative;
}
.block-lineup .svg-before {
  position: absolute;
  display: block;
  right: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/music-lineup.svg");
  width: 861px;
  height: 100%;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 992px) {
  .block-lineup .svg-before {
    display: none;
  }
}
.block-lineup .svg-after {
  position: absolute;
  display: block;
  right: 0px;
  top: -100px;
  bottom: 0px;
  background: url("/assets/images/placeholders/feature-bubble.svg");
  width: 360px;
  height: 100px;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0%;
}
@media (max-width: 992px) {
  .block-lineup .svg-after {
    width: 107px;
    top: -29px;
  }
}
.block-lineup .svg-after.top-left {
  left: 0px;
  top: -100px;
  right: initial;
  transform: scaleX(-1);
}
@media (max-width: 992px) {
  .block-lineup .svg-after.top-left {
    width: 107px;
    height: 30px;
    top: -29px;
    left: 0;
    background-size: contain !important;
  }
}
.block-lineup .svg-after.svg-white {
  background: url("/assets/images/placeholders/feature-bubble-white.svg");
}
.block-lineup .artist-container {
  position: relative;
  z-index: 1;
}
.block-lineup .day-lineup {
  max-width: 1390px;
  margin: 0 auto;
  padding-bottom: clamp(6rem, 7.509vw + 3.184rem, 16.7rem);
}
.block-lineup .day-lineup h2 {
  margin-bottom: clamp(1rem, 3.509vw + -0.316rem, 6rem);
}
.block-lineup .day-lineup:last-child {
  padding-bottom: 0;
}

.block-passes {
  padding-top: clamp(2rem, 4.491vw + 0.316rem, 8.4rem);
  padding-bottom: clamp(2.5rem, 5.263vw + 0.526rem, 10rem);
}
.block-passes.bg-white .blob {
  color: var(--color-white);
}
.block-passes .pass-header {
  padding-bottom: clamp(2rem, 3.368vw + 0.737rem, 6.8rem);
}
.block-passes .pass-col {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .block-passes .pass-col {
    max-width: 420px;
  }
}
.block-passes .pass-col .pass-content {
  position: relative;
  height: 100%;
  padding-bottom: 30px;
}
@media (min-width: 574px) {
  .block-passes .pass-col .pass-content {
    padding-bottom: 115px;
  }
}
.block-passes .pass-col .price {
  display: flex;
  align-items: center;
  font-family: var(--font-family-jam-medium);
  gap: 20px;
  font-weight: 500;
}
@media (max-width: 992px) {
  .block-passes .pass-col .price {
    font-size: 4.8rem;
    gap: 0px;
  }
  .block-passes .pass-col .price img {
    margin-left: -20px;
  }
}
.block-passes .pass-col .heading-3 {
  margin-bottom: 20px;
}
.block-passes .pass-col span {
  display: flex;
  align-items: center;
  gap: 0px;
}
@media (min-width: 574px) {
  .block-passes .pass-col span {
    position: absolute;
    bottom: 0px;
  }
}
@media (max-width: 1199px) {
  .block-passes .pass-col span {
    margin-top: 20px;
  }
}
@media (max-width: 670px) {
  .block-passes .pass-col span {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  .block-passes .pass-col span .btn, .block-passes .pass-col span .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-passes .pass-col span input {
    width: 100%;
  }
}
.block-passes .pass-col span.micro-title {
  bottom: 60px;
}
.block-passes .pass-col .btn, .block-passes .pass-col .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-passes .pass-col input {
  margin-right: 10px;
  font-style: normal;
}
.block-passes .smaller-btn-padding .pass-content {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .block-passes .smaller-btn-padding .pass-content {
    padding-bottom: 80px;
  }
}
@media (min-width: 574px) and (max-width: 1199px) {
  .block-passes .first-card .pass-content {
    padding-bottom: 20px;
  }
}
@media (min-width: 574px) and (max-width: 1199px) {
  .block-passes .first-card span {
    position: relative;
  }
}

.blob-container {
  position: relative;
  width: 69px;
  height: 72px;
}

.blob-container {
  position: relative;
  width: 99px;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/assets/images/icons/blob.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.blob {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  color: var(--Light-Purple, #EFC1FD);
  text-align: center;
  leading-trim: both;
  color: var(--Light-Purple, #EFC1FD);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: var(--font-family-jam-medium);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.blob span {
  margin-top: 7px;
  text-edge: cap;
  font-family: var(--font-family-jam-semibold);
  font-size: 33px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.65px;
  text-transform: uppercase;
}

.sponsor-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  gap: 20px;
  padding-top: 5.5rem;
  padding-bottom: clamp(5rem, 3.509vw + 3.684rem, 10rem);
}
@media (max-width: 992px) {
  .sponsor-container {
    gap: 50px;
  }
}
.sponsor-container.level-1 {
  max-width: 1050px;
  margin: 0 auto;
}
@media (min-width: 600px) and (max-width: 992px) {
  .sponsor-container.level-1 {
    grid-row-gap: 40px;
  }
}
@media (min-width: 993px) {
  .sponsor-container.level-1 {
    grid-row-gap: 64px;
  }
}
.sponsor-container.level-1 .sponsor-grid {
  grid-template-columns: minmax(0, 330px);
}
@media (min-width: 600px) and (max-width: 992px) {
  .sponsor-container.level-1 .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 330px));
  }
}
@media (min-width: 993px) {
  .sponsor-container.level-1 .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 330px));
  }
}
.sponsor-container.level-1 .sponsor-card {
  max-width: 330px;
}
@media (min-width: 993px) {
  .sponsor-container.level-1 .sponsor-card {
    flex: 0 1 calc(33.333% - 30px * 2/3);
  }
}
.sponsor-container.level-1 img {
  width: 80%;
  background-size: contain;
}
.sponsor-container.level-2 {
  max-width: 1050px;
  margin: 0 auto;
}
.sponsor-container.level-2 .sponsor-grid {
  grid-template-columns: minmax(0, 290px);
}
@media (min-width: 600px) and (max-width: 992px) {
  .sponsor-container.level-2 .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 290px));
  }
}
@media (min-width: 993px) {
  .sponsor-container.level-2 .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 290px));
  }
}
.sponsor-container.level-2 .sponsor-card {
  max-width: 290px;
}
@media (min-width: 993px) {
  .sponsor-container.level-2 .sponsor-card {
    flex: 0 1 calc(33.333% - 30px * 2/3);
  }
}
.sponsor-container.level-2 img {
  width: 70%;
  background-size: contain;
  height: 70%;
}
.sponsor-container.level-2 figure {
  aspect-ratio: 290/211;
}
.sponsor-container.level-3 {
  max-width: 1050px;
  margin: 0 auto;
}
.sponsor-container.level-3 .sponsor-grid {
  grid-template-columns: minmax(0, 211px);
}
@media (min-width: 600px) and (max-width: 992px) {
  .sponsor-container.level-3 .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 211px));
  }
}
@media (min-width: 993px) {
  .sponsor-container.level-3 .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 211px));
  }
}
.sponsor-container.level-3 .sponsor-card {
  max-width: 290px;
}
@media (min-width: 993px) {
  .sponsor-container.level-3 .sponsor-card {
    flex: 0 1 calc(33.333% - 30px * 2/3);
  }
}
.sponsor-container.level-3 .sponsor-card img {
  width: 55%;
  background-size: contain;
  max-height: 55%;
}
.sponsor-container.level-4 {
  max-width: 1410px;
  margin: 0 auto;
}
.sponsor-container.level-4 .sponsor-grid {
  grid-template-columns: minmax(0, 290px);
}
@media (min-width: 600px) and (max-width: 992px) {
  .sponsor-container.level-4 .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 290px));
  }
}
@media (min-width: 993px) {
  .sponsor-container.level-4 .sponsor-grid {
    grid-template-columns: repeat(6, minmax(0, 290px));
  }
}
.sponsor-container.level-4 .sponsor-card {
  max-width: 290px;
}
@media (min-width: 993px) {
  .sponsor-container.level-4 .sponsor-card {
    flex: 0 1 calc(16.666% - 30px * 5/6);
  }
}
.sponsor-container.level-4 .sponsor-card img {
  width: 50%;
  background-size: contain;
  max-height: 55%;
}
.sponsor-container.level-4 figure {
  aspect-ratio: 290/211;
}
.sponsor-container.level-5 {
  max-width: 1410px;
  margin: 0 auto;
  display: grid;
  grid-column-gap: 70px;
  grid-template-columns: minmax(0, 375px);
  grid-row-gap: 20px;
}
@media (min-width: 600px) and (max-width: 992px) {
  .sponsor-container.level-5 {
    grid-template-columns: repeat(2, minmax(0, 375px));
  }
}
@media (max-width: 992px) {
  .sponsor-container.level-5 {
    text-align: center;
  }
}
@media (min-width: 993px) {
  .sponsor-container.level-5 {
    grid-template-columns: repeat(4, 1fr);
  }
  .sponsor-container.level-5.sponsor-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sponsor-container.level-5.sponsor-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sponsor-container.level-5 .sponsor-card img {
  width: 80%;
}
.sponsor-container .sponsor-grid {
  display: grid;
  justify-content: center;
}
.sponsor-container .sponsor-card {
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.sponsor-container .sponsor-card img {
  transition: 0.4s;
}
.sponsor-container .sponsor-card figure {
  background: white;
  aspect-ratio: 330/211;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
}
@media (min-width: 993px) {
  .sponsor-container .sponsor-card figure {
    margin-bottom: 20px;
  }
}
.sponsor-container .sponsor-card figure span {
  padding: 20px;
}
.sponsor-container a:hover {
  color: inherit;
}
.sponsor-container a:hover img {
  transform: scale(1.05);
}
@media (min-width: 993px) {
  .sponsor-container {
    gap: 30px;
  }
}

.block-news {
  padding-top: clamp(2rem, 4.491vw + 0.316rem, 8.4rem);
  padding-bottom: clamp(2.5rem, 5.263vw + 0.526rem, 10rem);
}
.block-news .news-result-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 25px;
  max-width: 930px;
  margin: 0 auto;
  padding-top: 25px;
  border-bottom: 1px solid var(--color-light-grey-stroke);
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 1399px) {
  .block-news .news-result-item {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 993px) and (max-width: 992px) {
  .block-news .news-result-item {
    gap: 35px;
  }
}
@media (min-width: 993px) and (max-width: 1399px) {
  .block-news .news-result-item {
    gap: 50px;
  }
}
@media (min-width: 1400px) {
  .block-news .news-result-item {
    grid-template-columns: 285px 570px;
    gap: 75px;
  }
}
.block-news .news-result-item .title-small {
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}
.block-news .news-result-item .time {
  font-weight: bold;
}
.block-news .news-result-item a {
  text-decoration: none;
  transition: 0.4s;
}
.block-news .news-result-item a picture {
  overflow: hidden;
  border-radius: 20px;
}
.block-news .news-result-item a picture img {
  transition: 0.4s;
  width: 100%;
}
.block-news .news-result-item a:hover {
  color: inherit;
  text-decoration: underline;
}
.block-news .news-result-item a:hover img {
  transform: scale(1.05);
  border-radius: 20px;
}
.block-news .pagination {
  margin-top: clamp(2rem, 3.088vw + 0.842rem, 6.4rem);
  display: flex;
  justify-content: center;
}
.block-news .pagination .news-pagination {
  list-style-type: none;
  display: inline-flex;
  padding-left: 0;
  margin-left: 0;
  gap: 5px;
}
.block-news .pagination .news-pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.block-news .pagination .news-pagination li.disabled a {
  visibility: hidden;
}
.block-news .pagination .news-pagination li a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-news .pagination .news-pagination li a:hover {
  color: inherit;
}
.block-news .pagination .news-pagination li a.page-active {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.event-map {
  padding-top: clamp(2.5rem, 5.263vw + 0.526rem, 10rem);
  padding-bottom: clamp(2.5rem, 5.263vw + 0.526rem, 10rem);
}
.event-map button {
  border: none;
  background-color: transparent;
}
.event-map figure {
  position: relative;
}
.event-map figure img {
  width: 100%;
  border-radius: 20px;
}
.event-map figure figcaption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.event-map figure:hover {
  cursor: pointer;
}
.event-map .modal-body {
  border-radius: 20px;
}
.event-map .modal-body img {
  border-radius: 20px;
}

.artist-header-img {
  min-height: 400px;
  max-height: 400px;
  overflow: hidden;
  left: 0px;
  right: 0px;
  top: 30px;
  bottom: 0px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  z-index: 1;
}
@media (min-width: 500px) and (max-width: 767px) {
  .artist-header-img {
    min-height: 450px;
    max-height: 550px;
  }
}
@media (min-width: 993px) and (max-width: 1399px) {
  .artist-header-img {
    min-height: 450px;
    max-height: 550px;
  }
}
@media (min-width: 1400px) {
  .artist-header-img {
    min-height: 604px;
    max-height: 650px;
  }
}
.artist-header-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  filter: grayscale(100%);
  position: absolute;
  bottom: 0;
  height: 100%;
}
.artist-header-img:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: normal;
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(37, 51, 71, 0.88) 0%, rgba(37, 51, 71, 0.88) 100%), #253347;
  background-blend-mode: normal, color;
  opacity: 0.8;
  color: var(--color-white);
}
.artist-header-img:after {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  mix-blend-mode: normal;
  position: absolute;
  top: 30px;
  width: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(37, 51, 71, 0) 66.08%, #253347 91.85%);
  opacity: 1;
  color: var(--color-white);
}

.artist-header {
  padding-top: clamp(2rem, 6.316vw + -0.368rem, 11rem);
}
.artist-header.header-no-image {
  background-color: var(--color-navy);
  margin-bottom: clamp(2rem, 6.316vw + -0.368rem, 11rem);
  padding-bottom: clamp(0rem, 4.912vw + -1.842rem, 7rem);
  position: relative;
}
.artist-header .svg-before-top-left {
  position: absolute;
  display: block;
  left: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-top-left.svg");
  width: 155px;
  height: 220px;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 992px) {
  .artist-header .svg-before-top-left {
    width: 83px;
    background-size: contain;
    top: 0px;
    bottom: initial;
    background-position: 0 0;
  }
}
.artist-header .svg-after-top-right {
  position: absolute;
  display: block;
  right: 0px;
  top: 94px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-top-right.svg");
  width: 155px;
  height: 220px;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 100%;
}
@media (max-width: 992px) {
  .artist-header .svg-after-top-right {
    width: 83px;
    background-size: contain;
    top: 60px;
    bottom: initial;
    background-position: 0 0;
  }
}
.artist-header .svg-before-right {
  position: absolute;
  display: block;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background: url("/assets/images/placeholders/cta-right.svg");
  height: 100%;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 30%;
}
@media (max-width: 992px) {
  .artist-header .svg-before-right {
    display: none;
  }
}
.artist-header svg {
  margin-top: -10px;
}
.artist-header .container-fluid, .artist-header .container-sm, .artist-header .container-md, .artist-header .container-lg, .artist-header .container-xl, .artist-header .container-xxl {
  position: relative;
  z-index: 10;
}
.artist-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.artist-header nav strong {
  border-radius: 100px;
  padding: 8px 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  background: var(--color-lime-green);
}
.artist-header nav .prev-button, .artist-header nav .next-button {
  height: 15px;
}
.artist-header .heading-1 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.artist-header .social-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style-type: none;
  margin-bottom: 40px;
  padding-left: 0;
}

.block-artist-info {
  padding-bottom: clamp(2rem, 5.614vw + -0.105rem, 10rem);
}
.block-artist-info .row {
  position: relative;
  z-index: 10;
}
.block-artist-info .row .main-cover {
  border-radius: 20px;
}
.block-artist-info .row hr {
  display: block;
  background: var(--color-dark-purple);
  height: 2px;
  margin-bottom: clamp(2rem, 2.526vw + 1.053rem, 5.6rem);
}
.block-artist-info .row .ratio, .block-artist-info .row .spotify-embed {
  margin-bottom: clamp(2rem, 2.526vw + 1.053rem, 5.6rem);
}
.block-artist-info .row iframe {
  display: block;
  border-radius: 20px;
}
.block-artist-info .row .heading-3 {
  line-height: 1.34;
  letter-spacing: 0;
  font-family: var(--font-family-jam-medium);
  font-size: 3.1rem;
  margin-bottom: 20px;
}
.block-artist-info .row .artist-bio {
  padding-bottom: clamp(2rem, 5.614vw + -0.105rem, 10rem);
}
.block-artist-info .row .artist-cover {
  padding-bottom: clamp(2rem, 2.596vw + 1.026rem, 5.7rem);
}
.block-artist-info .row .artist-cover figure {
  position: relative;
}
.block-artist-info .row .artist-cover figure .main-cover {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block-artist-info .row .artist-cover figure figcaption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-family-jam-semibold);
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.2em;
}

#gallery--no-dynamic-import {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  position: absolute;
  pointer-events: none;
}
