
.slick-slider
{
/*     position: relative; */

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-arrow-up{
  font-style: normal;
  color: #2d4c7a;
  border: 2px solid #2d4c7a;
  padding: 24px 16px;
  border-radius: 31px;
  position: absolute;
  right: 5%;
  top: calc(50% - 82.5px);
  z-index: 9;
}

.slick-arrow-down{
  font-style: normal;
  color: #2d4c7a;
  border: 2px solid #2d4c7a;
  padding: 24px 16px;
  border-radius: 31px;
  position: absolute;
  right: 5%;
  bottom: calc(50% - 82.5px);
  z-index: 9;
}

.slick-arrow.slick-disabled{
  color: #e0e5ec;
  border: 1px solid #e0e5ec;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
		background-color: var(--gray-400); }

.hamburger-box {
  width: 2rem;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 2rem;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
/*     opacity: .25; */
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '';
    background-image: url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-black.png);
    width: 27px;
    display: flex;
    height: 13px;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(180deg);
}
[dir='rtl'] .slick-prev:before
{
    content: '>';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '';
    background-image: url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-black.png);
    width: 27px;
    display: flex;
    height: 13px;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
[dir='rtl'] .slick-next:before
{
    content: '>';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 3rem;
}

.slick-dots
{
    margin-top: 50px;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 10px;
    height: 10px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    border-radius: 50%;
    opacity: 1;
    background: #E1E6EA;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}


.slick-dots li.slick-active button{
  background: #59C3BF;
}


.slick-slider {
    opacity: 0;
}
.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:35px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:15px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}



/*
   Animation example, for spinners
*/
.animate-spin {
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  -webkit-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
  display: inline-block;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
























/* Line Height */

  


/* Letter Spacing */

  










/* Color */











  






  






  






  




  



  




  



  



































/* Uppercase */

  


/* Letter Spacing */


/* Shadow */


/* Shadow Hover */
 


*, :after, :before {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 0 solid #e2e8f0 /* 2; */;
}


.container {
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 130px;
	padding-right: 130px;
	max-width: 1660px; /* Adds 40px for padding right + left */
  }

/* .footer__container{
  float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 130px;
	padding-right: 130px;
  max-width: 100%;
} */

.container-xs {
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 760px;
}
.container-sm {
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 920px;
}
.container-md {
	float: none;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	max-width: 1024px;
}
/* @media (min-width:992px) {
  .container {
		padding-left: 60px;
		padding-right: 60px;
		max-width: 1520px;
  }
} */




.row-fluid {
	width: 100%;
	*zoom: 1;
}
.row-fluid:before, .row-fluid:after {
	display: table;
	content: "";
}
.row-fluid:after {
	clear: both;
}
.row-fluid [class*="span"] {
	display: block;
	float: left;
	width: 100%;
	min-height: 1px;
	margin-left: 2.127659574%;
	*margin-left: 2.0744680846382977%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
	margin-left: 0;
}

.row-fluid .span12 {
	width: 99.99999998999999%;
	*width: 99.94680850063828%;
}

.row-fluid .span11 {
	width: 91.489361693%;
	*width: 91.4361702036383%;
}

.row-fluid .span10 {
	width: 82.97872339599999%;
	*width: 82.92553190663828%;
}

.row-fluid .span9 {
	width: 74.468085099%;
	*width: 74.4148936096383%;
}

.row-fluid .span8 {
	width: 65.95744680199999%;
	*width: 65.90425531263828%;
}

.row-fluid .span7 {
	width: 57.446808505%;
	*width: 57.3936170156383%;
}

.row-fluid .span6 {
	width: 48.93617020799999%;
	*width: 48.88297871863829%;
}

.row-fluid .span5 {
	width: 40.425531911%;
	*width: 40.3723404216383%;
}

.row-fluid .span4 {
	width: 31.914893614%;
	*width: 31.8617021246383%;
}

.row-fluid .span3 {
	width: 23.404255317%;
	*width: 23.3510638276383%;
}

.row-fluid .span2 {
	width: 14.89361702%;
	*width: 14.8404255306383%;
}

.row-fluid .span1 {
	width: 6.382978723%;
	*width: 6.329787233638298%;
}

.container-fluid {
	*zoom: 1;
}

.container-fluid:before, .container-fluid:after {
	display: table;
	content: "";
}

.container-fluid:after {
	clear: both;
}

@media (max-width: 767px) {
	.row-fluid {
		width: 100%;
	}

	.row-fluid [class*="span"] {
		display: block;
		float: none;
		width: auto;
		margin-left: 0;
	}
}

@media (min-width: 768px) and (max-width: 1139px) {
	.row-fluid {
		width: 100%;
		*zoom: 1;
	}

	.row-fluid:before, .row-fluid:after {
		display: table;
		content: "";
	}

	.row-fluid:after {
		clear: both;
	}

	.row-fluid [class*="span"] {
		display: block;
		float: left;
		width: 100%;
		min-height: 1px;
		margin-left: 2.762430939%;
		*margin-left: 2.709239449638298%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row-fluid [class*="span"]:first-child {
		margin-left: 0;
	}

	.row-fluid .span12 {
		width: 99.999999993%;
		*width: 99.9468085036383%;
	}

	.row-fluid .span11 {
		width: 91.436464082%;
		*width: 91.38327259263829%;
	}

	.row-fluid .span10 {
		width: 82.87292817100001%;
		*width: 82.8197366816383%;
	}

	.row-fluid .span9 {
		width: 74.30939226%;
		*width: 74.25620077063829%;
	}

	.row-fluid .span8 {
		width: 65.74585634900001%;
		*width: 65.6926648596383%;
	}

	.row-fluid .span7 {
		width: 57.182320438000005%;
		*width: 57.129128948638304%;
	}

	.row-fluid .span6 {
		width: 48.618784527%;
		*width: 48.5655930376383%;
	}

	.row-fluid .span5 {
		width: 40.055248616%;
		*width: 40.0020571266383%;
	}

	.row-fluid .span4 {
		width: 31.491712705%;
		*width: 31.4385212156383%;
	}

	.row-fluid .span3 {
		width: 22.928176794%;
		*width: 22.874985304638297%;
	}

	.row-fluid .span2 {
		width: 14.364640883%;
		*width: 14.311449393638298%;
	}

	.row-fluid .span1 {
		width: 5.801104972%;
		*width: 5.747913482638298%;
	}
}

@media (min-width: 1280px) {
	.row-fluid {
		width: 100%;
		*zoom: 1;
	}

	.row-fluid:before, .row-fluid:after {
		display: table;
		content: "";
	}

	.row-fluid:after {
		clear: both;
	}

	.row-fluid [class*="span"] {
		display: block;
		float: left;
		width: 100%;
		min-height: 1px;
		margin-left: 2.564102564%;
		*margin-left: 2.510911074638298%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row-fluid [class*="span"]:first-child {
		margin-left: 0;
	}

	.row-fluid .span12 {
		width: 100%;
		*width: 99.94680851063829%;
	}

	.row-fluid .span11 {
		width: 91.45299145300001%;
		*width: 91.3997999636383%;
	}

	.row-fluid .span10 {
		width: 82.905982906%;
		*width: 82.8527914166383%;
	}

	.row-fluid .span9 {
		width: 74.358974359%;
		*width: 74.30578286963829%;
	}

	.row-fluid .span8 {
		width: 65.81196581200001%;
		*width: 65.7587743226383%;
	}

	.row-fluid .span7 {
		width: 57.264957265%;
		*width: 57.2117657756383%;
	}

	.row-fluid .span6 {
		width: 48.717948718%;
		*width: 48.6647572286383%;
	}

	.row-fluid .span5 {
		width: 40.170940171000005%;
		*width: 40.117748681638304%;
	}

	.row-fluid .span4 {
		width: 31.623931624%;
		*width: 31.5707401346383%;
	}

	.row-fluid .span3 {
		width: 23.076923077%;
		*width: 23.0237315876383%;
	}

	.row-fluid .span2 {
		width: 14.529914530000001%;
		*width: 14.4767230406383%;
	}

	.row-fluid .span1 {
		width: 5.982905983%;
		*width: 5.929714493638298%;
	}
}

/* Clearfix */
.clearfix {
	*zoom: 1;
}
.clearfix:before, .clearfix:after {
	display: table;
	content: "";
}
.clearfix:after {
	clear: both;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

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

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

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

.justify-center{
  justify-items: center;
}
.justify-end{
  justify-content: flex-end;
}

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

@media(min-width: 768px){
  .flex-md-row {
    flex-direction: row;
  }
  
   .flex-md-column {
    flex-direction: column;
  }
}


.column-shadow{
  box-shadow: 0 0 30px 0 rgba(135, 154, 197, 0.31);
}

.column-shadow > div{
  padding-top: 0rem !important;
}

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

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

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


@media(max-width: 767px){
.mobile-CENTER {
    justify-content: center !important;
}

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

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

@media(max-width: 992px){
  .none-mobile{
    display: none;
  }
}
@media(min-width: 992px){
  .none-desktop{
    display: none;
  }
}
@media(max-width: 500px){
  .d-none-small-mobile{
    display: none;
  }
}
@media(min-width: 500px){
  .d-none-desktop{
    display: none;
  }
}

.half-background-top{
  background-size: cover !important;
}
@media(min-width: 992px){
  .half-background-top{
      background-size: contain !important;
      background-position: top center !important;
      background-repeat: no-repeat !important;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
	-webkit-font-smoothing: subpixel-antialiased;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
	transition: 0.3s ease;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	max-width: 100%;
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}





















/* Line Height */

  


/* Letter Spacing */

  










/* Color */











  






  






  






  




  



  




  



  



































/* Uppercase */

  


/* Letter Spacing */


/* Shadow */


/* Shadow Hover */
 

html {
	width: 100%!important;
  font-size: 18px;
}

@font-face { 
  font-family: 'Canela Trial';
  src: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Fonts/Canela-Medium-Trial.otf');
}

@font-face { 
  font-family: 'Canela Trial Bold';
  src: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Fonts/Canela-Bold-Trial.otf');
}

@font-face { 
  font-family: 'Canela Trial Regular';
  src: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Fonts/Canela-Regular-Trial.otf');
}

@font-face { 
  font-family: 'Tilda Sans';
  src: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Fonts/TildaSans-Medium.ttf');
}

@font-face { 
  font-family: 'Tilda Sans Bold';
  src: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Fonts/TildaSans-Bold.ttf');
}

@font-face { 
  font-family: 'Tilda Sans Black';
  src: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Fonts/TildaSans-Black.ttf');
}




@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

body {
	width: 100%;
  font-family: Roboto;
  font-size: 18px;
  color: #000000;
	line-height: 1.5;
	letter-spacing: normal;
}
body .body-wrapper {
	width: 100%!important;
	overflow-x: hidden;
}
p {
  margin-top: 0;
  margin-bottom: .75em;
}
p:last-child {
	margin-bottom: 0;
}

/* Links */
a {
  text-decoration: none;
	color: #FFFFFF;
  transition: all ease 0.2s;
}
	a:hover {
		opacity:  0.8;
    color: #7458FF;
	}



a:not(:hover) h1 {
  color: #000000;
}
a:not(:hover) h2 {
  color: #000000;
}
a:not(:hover) h3 {
  color: #000000;
}
a:not(:hover) h4 {
  color: #000000;
}
a:not(:hover) h5 {
  color: #000000;
}
a:not(:hover) h6 {
  color: #000000;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  word-break: break-word;
}

.widget-type-rich_text * + h1,
.widget-type-rich_text * + h2,
.widget-type-rich_text * + h3,
.widget-type-rich_text * + h4,
.widget-type-rich_text * + h5,
.widget-type-rich_text * + h6 {
  margin-top: 2.25rem;
}



h1, .h1 {
  font-size: 8.222222222222221rem;
  font-style: normal;
  font-weight: normal;
  font-family: 'Canela Trial';
	line-height: px;
  letter-spacing: 1.01;
  color: #000000;
	
	  text-decoration: none;
	
}

.homepage h1{
  font-style: normal;
  font-weight: 400;
  font-size: 164px;
  line-height: 167px;
  color: #000000;
  font-family: 'Canela Trial Regular';
}

.hero-description{
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  color: #3F3F3F;
}

.card-description-1{
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.09;
  font-feature-settings: 'salt' on;
  color: #000000;
}
.card-description-2{
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  font-feature-settings: 'salt' on;
  color: #000000;
}

.card-description-3{
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
  font-feature-settings: 'salt' on;
  color: #000000;
}



h2, .h2 {
  font-size: 7.111111111111111rem;
  font-style: normal;
  font-weight: normal;
  font-family: 'Canela Trial Regular';
	line-height: 1.05;
  letter-spacing: normal;
  color: #000000;
	
	  text-decoration: none;
	
}

h3, .h3 {
  font-size: 5.333333333333333rem;
  font-style: normal;
  font-weight: normal;
  font-family: 'Canela Trial Regular';
	line-height: 1.04;
  letter-spacing: normal;
  color: #000000;
	
	  text-decoration: none;
	
}

h4, .h4 {
  font-size: 3.5555555555555554rem;
  font-style: normal;
  font-weight: normal;
  font-family: 'Canela Trial Regular';
	line-height: 1.09;
  letter-spacing: 0.04px;
  color: #000000;
	
	  text-decoration: none;
	
}

h5, .h5 {
  font-size: 2.6666666666666665rem;
  font-style: normal;
  font-weight: normal;
  font-family: 'Canela Trial Regular';
	font-style: normal;
  line-height: 1.29;
  color: #000000;
	
	  text-decoration: none;
	
}

h6, .h6 {
  font-size: 2.0rem;
  font-style: normal;
  font-weight: normal;
  font-family: 'Canela Trial Regular';
	line-height: 1.33;
  letter-spacing: 0.35px;
  color: #000000;
	
	text-decoration: none;
	
}

h7, .h7 {
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  h1, .h1 {
		font-size: 64px !important;
    line-height: 70px !important;
  }
  
  h2, .h2 {
		font-size: 48px;
    line-height: 62px;
  }
  .hero-description{
    font-size: 18px;
    line-height: 26px;
  }
  h3, .h3 {
		font-size: 48px;
    line-height: 62px;
  }
  h4, .h4 {
		font-size: 48px;
    line-height: 62px;
  }
 /* h5, .h5 {
		font-size: 1.3333333333333333rem !important;
  } */
  
   h6, .h6 {
		font-size: 24px;
    line-height: 1;
  }
  
  h7{
    font-size: 20px;
    line-height: 24px;
  }
}

p {
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #3F3F3F;
}

strong {
  font-weight: bolder;
}

code {
  vertical-align: bottom;
}

.widget-type-rich_text ul,
.widget-type-rich_text ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
	list-style: none;
	padding: 0;
}

.widget-type-rich_text ul {
	padding: 0px;
}

.widget-type-rich_text ol {
	counter-reset: item;
	padding: 0px;
}

.widget-type-rich_text ul li,
.widget-type-rich_text ol li {
  line-height: 1.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.widget-type-rich_text ul li:before {
	content: "";
	position: absolute;
	top: .5rem;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 100%;
}

.widget-type-rich_text ol li {
	counter-increment: item;
}

.widget-type-rich_text ol li:before {
	content: counter(item)".";
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1.5rem;
	color: #FDAF30;
	font-weight: bold;
}

.widget-type-rich_text ul li + li,
.widget-type-rich_text ol li + li {
	margin-top: .75rem;
}

.widget-type-rich_text ul ul,
.widget-type-rich_text ol ul,
.widget-type-rich_text ul ol,
.widget-type-rich_text ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

/* Blockquote */
blockquote {
  line-height: 1.7rem;
	margin: 2rem auto;
  padding: 1.5rem;
	font-size: 1.25rem;
	border-left: 2px solid ;
}

@media (min-width:992px) {
	blockquote {
		max-width: 90%;
	}
}

/* Pre */
pre {
	white-space: initial;
	padding: 2rem;
	color: #e5e7eb;
	background-color: #1f2937;
}

/* Horizontal Rules */
hr {
  color: ;
  background-color: ;
  height: 1px;
  border: none;
	margin-top: 1rem;
	margin-bottom: 1rem;
}


/* Mark */
mark {

}

/* Sup and Sub */
sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
}

.disable-focus-styles :focus {
  outline: none;
}

/* ===============
 * Links
 * ========================= */

/* ===============
 * Heading Color
 * ========================= */
.heading-default h1,
.heading-default h2,
.heading-default h3,
.heading-default h4,
.heading-default h5,
.heading-default h6,
.heading-default .heading {
	color: inherit;
}

/* Base */
.heading-base h1,
.heading-base h2,
.heading-base h3,
.heading-base h4,
.heading-base h5,
.heading-base h6,
.heading-base .heading {
	color: #000000;
}

/* Primary */
.heading-primary h1,
.heading-primary h2,
.heading-primary h3,
.heading-primary h4,
.heading-primary h5,
.heading-primary h6,
.heading-primary .heading {
	color: #FDAF30;
}

/* Secondary */
.heading-secondary h1,
.heading-secondary h2,
.heading-secondary h3,
.heading-secondary h4,
.heading-secondary h5,
.heading-secondary h6,
.heading-secondary .heading {
	color: #f2f2f2;
}


/* Dark */
.heading-dark h1,
.heading-dark h2,
.heading-dark h3,
.heading-dark h4,
.heading-dark h5,
.heading-dark h6,
.heading-dark .heading {
	color: #f8efe5;
}

/* White */
.heading-white h1,
.heading-white h2,
.heading-white h3,
.heading-white h4,
.heading-white h5,
.heading-white h6,
.heading-white .heading {
  color: #ffffff;
}

body {
  position: relative;
}

.color-black{
  color: #000000;
}
.color-gray{
  color: #f2f2f2;
}
.color-light{
  color: #f8efe5;
}

.color-orange{
  color: #FDAF30;
}
.color-white{
  color: #ffffff;
}

.tx-center{
  text-align:center;
}
.tx-right{
  text-align:right;
}
.tx-left{
  text-align:left;
}

.tx-lowercase{
  text-transform: lowercase;
}
.tx-uppercase{
  text-transform: uppercase;
}
.tx-capitalise{
  text-transform: capitalize;
}

@media(min-width: 992px){
  .tx-right-md{
      text-align: end;
  }
}

ul{
  padding-left: 18px;
}

ul li{
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
ol li{
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 400;
}

.thank-you h1{
  font-size: 96px;
  line-height: 100px;
}

/* p {
  font-family: 'Tilda Sans';
} */
 

@media only screen and (max-width: 1500px) and (min-width: 992px){
  h3{
    font-size: 65px;
  }
}
/* .dnd-section {
  padding: 40px 30px;
	position: relative;
} */



@media (min-width: 768px) {
  .dnd-section {
    padding: 40px 46px;
  }
}

@media (min-width:992px) {
  .dnd-section {
    padding: 50px 60px;
  }
}



/* .dnd-section > .row-fluid {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
} */


/* .row-fluid > .dnd-column {
	margin-top: -2rem;
} 
*/
.dnd-column > .dnd-row + .dnd-row,
.dnd-column > .sticky-column > .dnd-row {
	padding-top: 1rem;
}

.dnd-section .dnd-row-p-0 {
	padding-top: 0!important;
}
.dnd-section .dnd-row-m-0 {
	margin-top: 0!important;
}
.dnd-section .widget-type-cell {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }

	.dnd-section .dnd-module + .dnd-module,
  .dnd-section .dnd-column + .dnd-column,
  .dnd-section .dnd-column + .dnd-module,
  .dnd-section .dnd-module + .dnd-column {
		padding-top: 1rem;
	}
	
}
/*  

form_header_background       
form_header_text_color       
form_background_color     

form_border_color            
form_label_color      

form_field_background_color
form_field_border_color      
form_field_focus_border_color
form_button_text_color       
form_button_background_color 

*/
.form-module{
  position: relative !important;
  z-index: 3 !important;
}

.widget-type-form .form-title {
	background: #f8efe5;
	padding: 2rem;
	border-radius: 0px;
	margin-bottom: 0;
	color: #000000;
}

.widget-type-form form {
  padding: 2rem;
	background: #ffffff;
	border: 1px solid #000000;
}

.hs-form label {
  font-size: .75rem;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: .625rem;
	color: #000000;
}

.text-white .hs-form label {
	color: inherit;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: ;
}

input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.hs-input,
.hs-search-field__input {
  -webkit-appearance: none;
  display: inline-block;
  width: 100%!important;
/*   height: auto!important; */
  padding: 1rem 1.25rem;
  font-family: 'Tilda Sans';
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.2rem;
  color: #000000;
  background-color: #ffffff;
	border: 1px solid #dddde4;
  box-sizing: border-box;
  border-radius: 0px;
}

input:not([type=checkbox]):not([type=radio]):not([type=submit])::placeholder {
    font-family: 'Tilda Sans';
}

input.invalid:not([type=checkbox]):not([type=radio]):not([type=submit]) {
	background: ;
	border-color: ;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  cursor: pointer;
  width: 1rem!important;
  height: 1rem!important;
  padding: 0!important;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
  background-color: #ffffff;
  position: relative;
	border: 1px solid ;
	outline: none;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked::after,
input[type=radio]:checked::after{
    background: #FDAF30;
    color: white;
    content: '';
    position: absolute;
    top: 3px;
    width: 8px;
    height: 8px;
    bottom: 0;
    left: 3px;
}
.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  color: ;
}

.hs-input::-webkit-input-placeholder {
  color: ;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
.hs-input:focus,
.hs-search-field__input:focus {
  outline: none;
  border-color: #f2f2f2;
}

textarea.hs-input {
  height: auto;
}

select[multiple].hs-input {
  height: inherit;
}

input[type="submit"] {
/* 	background: #FDAF30!important; */
/* 	color: #ffffff!important; */
/* 	border: none!important; */
}

fieldset {
	max-width: none!important;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: ;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: ;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field {
  margin-bottom: 1.25rem;
}

.hs-field-desc {
  color: ;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: ;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: ;
  color: ;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}

/* Legal Consent */
.legal-consent-container {
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
.legal-consent-container label {
	font-size: 0.9rem;
}
.hs-form fieldset.form-columns-1 .legal-consent-container {
	padding-left: .5rem;
	padding-right: .5rem;
}
.hs-form fieldset.form-columns-1 .legal-consent-container .hs-dependent-field .hs-form-field {
	padding: 0;
}

@media (max-width: 400px),
(min-device-width: 320px) and (max-device-width: 480px) {
  .email-correction form .form-columns-2 .hs-form-field,
  .email-correction form .form-columns-3 .hs-form-field,
  .email-validation form .form-columns-2 .hs-form-field,
  .email-validation form .form-columns-3 .hs-form-field {
    float: none;
    width: 100%;
  }
  .email-correction form .form-columns-2 .hs-form-field .hs-input,
  .email-correction form .form-columns-3 .hs-form-field .hs-input,
  .email-validation form .form-columns-2 .hs-form-field .hs-input,
  .email-validation form .form-columns-3 .hs-form-field .hs-input {
    width: 90%;
  }
  .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-2 .hs-form-field input[type=radio],
  .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-correction form .form-columns-3 .hs-form-field input[type=radio],
  .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-2 .hs-form-field input[type=radio],
  .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
  .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
    width: 24px;
  }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
}


.hubspot-link__container {
  display: none;
}

.grecaptcha-badge {
	margin: 0;
}

/* Form No Labels */
.form-no-labels form.hs-form .hs-fieldtype-text > label,
.form-no-labels form.hs-form .hs-fieldtype-textarea > label,
.form-no-labels form.hs-form .hs-fieldtype-selec > label {
	display: none!important;
}

/* Fullwidth Button */
.form-btn-fullwidth form .hs_submit input {
	width: 100%;
}

/* ==========================================================================
   Multi column 
   ========================================================================== */

form.hs-form fieldset {
	margin-left: -.5rem;
	margin-right: -.5rem;
}
form.hs-form fieldset .field {
	padding-left: .5rem;
	padding-right: .5rem;
}
form.hs-form fieldset .input {
	margin-right: 0!important;
}

/* Columns */
form.hs-form fieldset.form-columns-3 .hs-form-field {
	width: 33.333333%;
}

/* ==========================================================================
   White Form
   ========================================================================== */

.form-white .hs-form label {
	color: #fff;
}
.form-white .hs-error-msgs label {
  color: ;
}

.form-white .hs-input,
.form-white .hs-search-field__input {
  box-sizing: border-box;
	border-radius: 0!important;
	background-color: rgba(255, 255, 255, 0.1)!important;
	border: 0!important;
	border-bottom: 2px solid #fff!important;
	color: #fff!important;
}

.form-white .hs-form input[type="submit"] {
	background: #FDAF30!important;
	color: #fff!important;
}





















/* Line Height */

  


/* Letter Spacing */

  










/* Color */











  






  






  






  




  



  




  



  



































/* Uppercase */

  


/* Letter Spacing */


/* Shadow */


/* Shadow Hover */
 

.btn,
.hs-button {
	position: relative;
	display: inline-block;
	text-align: center;
	text-decoration: none!important;
	font-size: 18px;
	line-height: 0.9;
	white-space: initial;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	user-select: none;
	border-radius: 0px;
	text-transform: uppercase;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
	transition: all 0.4s ease;
	padding: 12px 22px;
  font-family: 'Tilda Sans';
}


.btn:not(.btn-arrow) .btn-icon {
  margin-left: 5px;
}


@media (max-width: 767px){
 
}

/* ==========
 * Button Arrow/
 * ==================== */

.btn-arrow {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========
 * Button Types/
 * ==================== */


.btn-orange {
  background: #FDAF30;
  color: #000000;
  border: 1px solid #FDAF30;
  
}
.btn-orange .btn-icon path{
  stroke: #000000;
}

.btn-orange:hover {
  background: #000000;
  color: #FDAF30;
  transition: 0.3s;
  border: 1px solid #000000;
  
}

.btn-orange:hover .btn-icon path {
  stroke: #FDAF30;
}

.btn-white {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

.btn-white .btn-icon path{
  stroke: #000000;
}

.btn-white:hover {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  transition: 0.3s;
}

.btn-white:hover .btn-icon path{
  stroke: #ffffff;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-primary .btn-icon path{
  stroke: #ffffff;
}


.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  transition: 0.3s;
}
.btn-primary:hover .btn-icon path{
  stroke: #000000;
}

.btn-arrow{
  background: #ffffff;
  color: #000000;
}

.btn-arrow .btn-icon path{
  stroke: #000000;
}

.btn-arrow:hover{
  background: #FDAF30;
  color: #000000;
}
.btn-arrow:hover .btn-icon path{
  stroke: #000000;
}


.btn-link{
   color: #000000;
}

.btn-link .btn-icon path{
   stroke: #000000;
}

.btn-link:hover{
   color: #FDAF30;
}

.btn-link:hover .btn-icon path{
   stroke: #FDAF30;
}



.multi-buttons.flex-column a {
  width: fit-content;
}
.multi-buttons.flex-column a:not(:last-of-type) {
  margin-bottom: 15px;
}


/*   .multi-buttons.flex-wrap a {
    margin-bottom: 15px; 
  }
*/

.multi-buttons.flex-wrap a:not(:last-of-type) {
  margin-right: 18px;
}
.hs-menu-wrapper ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.hs-menu-item a {
  display: block;
  text-decoration: none;
}

.hs-menu-item:hover > a,
.hs-menu-item:focus > a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}



.inline-menu {
	
}
.inline-menu .hs-menu-item a {
	padding: 0;
	color: inherit;
}
.inline-menu .hs-menu-item a:hover {
	color: #FDAF30;
}
.inline-menu .hs-menu-item + .hs-menu-item {
	margin-left: 1rem;
}
table {
	display: table;
	width: 100%;
	min-width: 992px;
	border-collapse: collapse;
	border-spacing: 0px;
	overflow: hidden;
	border-radius: px;
}
table tbody tr {
	border-bottom: 1px solid #e2e7ea;
	border-left: 1px solid #e2e7ea;
	border-right: 2px solid #e2e7ea;
}
@media (max-width:991px) {
	.table-wrapper {
		overflow-x: scroll;
	}
}
div[data-hs-responsive-table] table tr {
	background-color: #fff;
	border-bottom: 1px solid #d2d6dc;
}
div[data-hs-responsive-table] table tr:first-child {
	background-color: rgba(244, 245, 247, 1);
	border-color: #d2d6dc;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: bold;
}
div[data-hs-responsive-table] table tr:last-child {
	border-bottom: 0px;
}
table th,
table td {
	padding: 0.75rem 1.5rem;
}
img {
	max-width: 100%;
}

.pb-full {
	padding-bottom: 100%;
}

/* Filter */
.filter-grayscale {
	filter: grayscale(100%);
}
.hover\:gray-scale:hover {
	filter: grayscale(0%);
}

.image div.relative {
  z-index: 9;
}

.image {
  position: relative;
  z-index: 2;
}

.image.full-width-image >div >div {
    width: 100%;
    height: auto;
}

.image.full-width-image >div >div img{
    width: 100%;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 100ms;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal
}

.focus-within\:sr-only:focus-within {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

.focus-within\:not-sr-only:focus-within {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal
}

.focus\:sr-only:focus {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0
}

.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal
}

.appearance-none {
  appearance: none
}

.bg-fixed {
  background-attachment: fixed
}

.bg-local {
  background-attachment: local
}

.bg-scroll {
  background-attachment: scroll
}

.bg-clip-border {
  background-clip: border-box
}

.bg-clip-padding {
  background-clip: padding-box
}

.bg-clip-content {
  background-clip: content-box
}

.bg-clip-text {
  background-clip: text
}

.bg-current {
  background-color: currentColor
}

.bg-base-50 {
  background-color: #878787
}

.bg-base-100 {
  background-color: #787878
}

.bg-base-200 {
  background-color: #5a5a5a
}

.bg-base-300 {
  background-color: #3c3c3c
}

.bg-base-400 {
  background-color: #1e1e1e
}

.bg-base-500 {
  background-color: #000000
}

.bg-base-600 {
  background-color: #000000
}

.bg-base-700 {
  background-color: #000000
}

.bg-base-800 {
  background-color: #000000
}

.bg-base-900 {
  background-color: #000000
}

.bg-base {
  background-color: #000000
}

.bg-default-50 {
  background-color: #878787
}

.bg-default-100 {
  background-color: #787878
}

.bg-default-200 {
  background-color: #5a5a5a
}

.bg-default-300 {
  background-color: #3c3c3c
}

.bg-default-400 {
  background-color: #1e1e1e
}

.bg-default-500 {
  background-color: #000000
}

.bg-default-600 {
  background-color: #000000
}

.bg-default-700 {
  background-color: #000000
}

.bg-default-800 {
  background-color: #000000
}

.bg-default-900 {
  background-color: #000000
}

.bg-default {
  background-color: #000000
}

.bg-primary-50 {
  background-color: #ffffb7
}

.bg-primary-100 {
  background-color: #ffffa8
}

.bg-primary-200 {
  background-color: #ffff8a
}

.bg-primary-300 {
  background-color: #ffeb6c
}

.bg-primary-400 {
  background-color: #ffcd4e
}

.bg-primary-500 {
  background-color: #FDAF30
}

.bg-primary-600 {
  background-color: #df9112
}

.bg-primary-700 {
  background-color: #c17300
}

.bg-primary-800 {
  background-color: #a35500
}

.bg-primary-900 {
  background-color: #853700
}

.bg-primary {
  background-color: #FDAF30
}

.bg-secondary-50 {
  background-color: #ffffff
}

.bg-secondary-100 {
  background-color: #ffffff
}

.bg-secondary-200 {
  background-color: #ffffff
}

.bg-secondary-300 {
  background-color: #ffffff
}

.bg-secondary-400 {
  background-color: #ffffff
}

.bg-secondary-500 {
  background-color: #f2f2f2
}

.bg-secondary-600 {
  background-color: #d4d4d4
}

.bg-secondary-700 {
  background-color: #b6b6b6
}

.bg-secondary-800 {
  background-color: #989898
}

.bg-secondary-900 {
  background-color: #7a7a7a
}

.bg-secondary {
  background-color: #f2f2f2
}

.bg-tertiary-50 {
  background-color: 
}

.bg-tertiary-100 {
  background-color: 
}

.bg-tertiary-200 {
  background-color: 
}

.bg-tertiary-300 {
  background-color: 
}

.bg-tertiary-400 {
  background-color: 
}

.bg-tertiary-500 {
  background-color: 
}

.bg-tertiary-600 {
  background-color: 
}

.bg-tertiary-700 {
  background-color: 
}

.bg-tertiary-800 {
  background-color: 
}

.bg-tertiary-900 {
  background-color: 
}

.bg-tertiary {
  background-color: 
}

.bg-success-50 {
  background-color: 
}

.bg-success-100 {
  background-color: 
}

.bg-success-200 {
  background-color: 
}

.bg-success-300 {
  background-color: 
}

.bg-success-400 {
  background-color: 
}

.bg-success-500 {
  background-color: 
}

.bg-success-600 {
  background-color: 
}

.bg-success-700 {
  background-color: 
}

.bg-success-800 {
  background-color: 
}

.bg-success-900 {
  background-color: 
}

.bg-success {
  background-color: 
}

.bg-warning-50 {
  background-color: 
}

.bg-warning-100 {
  background-color: 
}

.bg-warning-200 {
  background-color: 
}

.bg-warning-300 {
  background-color: 
}

.bg-warning-400 {
  background-color: 
}

.bg-warning-500 {
  background-color: 
}

.bg-warning-600 {
  background-color: 
}

.bg-warning-700 {
  background-color: 
}

.bg-warning-800 {
  background-color: 
}

.bg-warning-900 {
  background-color: 
}

.bg-warning {
  background-color: 
}

.bg-danger-50 {
  background-color: 
}

.bg-danger-100 {
  background-color: 
}

.bg-danger-200 {
  background-color: 
}

.bg-danger-300 {
  background-color: 
}

.bg-danger-400 {
  background-color: 
}

.bg-danger-500 {
  background-color: 
}

.bg-danger-600 {
  background-color: 
}

.bg-danger-700 {
  background-color: 
}

.bg-danger-800 {
  background-color: 
}

.bg-danger-900 {
  background-color: 
}

.bg-danger {
  background-color: 
}

.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity))
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity))
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity))
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity))
}

.bg-gray-400 {
  --tw-bg-opacity: 1;
  background-color: rgba(156, 163, 175, var(--tw-bg-opacity))
}

.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity))
}

.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgba(75, 85, 99, var(--tw-bg-opacity))
}

.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgba(55, 65, 81, var(--tw-bg-opacity))
}

.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgba(31, 41, 55, var(--tw-bg-opacity))
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity))
}

.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity))
}

.bg-dark-50 {
  background-color: #ffffff
}

.bg-dark-100 {
  background-color: #ffffff
}

.bg-dark-200 {
  background-color: #ffffff
}

.bg-dark-300 {
  background-color: #ffffff
}

.bg-dark-400 {
  background-color: #ffffff
}

.bg-dark-500 {
  background-color: #f8efe5
}

.bg-dark-600 {
  background-color: #dad1c7
}

.bg-dark-700 {
  background-color: #bcb3a9
}

.bg-dark-800 {
  background-color: #9e958b
}

.bg-dark-900 {
  background-color: #80776d
}

.bg-dark {
  background-color: #f8efe5
}

.bg-white-50 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-400 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-600 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-700 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-800 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white-900 {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-none {
  background-image: none
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops))
}

.bg-gradient-to-tr {
  background-image: linear-gradient(to top right, var(--tw-gradient-stops))
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops))
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops))
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops))
}

.bg-gradient-to-bl {
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops))
}

.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops))
}

.bg-gradient-to-tl {
  background-image: linear-gradient(to top left, var(--tw-gradient-stops))
}

.from-current {
  --tw-gradient-from: currentColor;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-50 {
  --tw-gradient-from: #878787;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-100 {
  --tw-gradient-from: #787878;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-200 {
  --tw-gradient-from: #5a5a5a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-300 {
  --tw-gradient-from: #3c3c3c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-400 {
  --tw-gradient-from: #1e1e1e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-500 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-600 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-700 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-800 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base-900 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-base {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-50 {
  --tw-gradient-from: #878787;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-100 {
  --tw-gradient-from: #787878;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-200 {
  --tw-gradient-from: #5a5a5a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-300 {
  --tw-gradient-from: #3c3c3c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-400 {
  --tw-gradient-from: #1e1e1e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-500 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-600 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-700 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-800 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default-900 {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-default {
  --tw-gradient-from: #000000;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-50 {
  --tw-gradient-from: #ffffb7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-100 {
  --tw-gradient-from: #ffffa8;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-200 {
  --tw-gradient-from: #ffff8a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-300 {
  --tw-gradient-from: #ffeb6c;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-400 {
  --tw-gradient-from: #ffcd4e;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-500 {
  --tw-gradient-from: #FDAF30;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-600 {
  --tw-gradient-from: #df9112;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-700 {
  --tw-gradient-from: #c17300;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-800 {
  --tw-gradient-from: #a35500;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary-900 {
  --tw-gradient-from: #853700;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-primary {
  --tw-gradient-from: #FDAF30;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-50 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-100 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-200 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-300 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-400 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-500 {
  --tw-gradient-from: #f2f2f2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-600 {
  --tw-gradient-from: #d4d4d4;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-700 {
  --tw-gradient-from: #b6b6b6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-800 {
  --tw-gradient-from: #989898;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary-900 {
  --tw-gradient-from: #7a7a7a;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-secondary {
  --tw-gradient-from: #f2f2f2;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-50 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-100 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-200 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-300 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-400 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-500 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-600 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-700 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-800 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary-900 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-tertiary {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-50 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-100 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-200 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-300 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-400 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-500 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-600 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-700 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-800 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success-900 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-success {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-50 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-100 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-200 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-300 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-400 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-500 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-600 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-700 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-800 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning-900 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-warning {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-50 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-100 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-200 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-300 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-400 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-500 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-600 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-700 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-800 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger-900 {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-danger {
  --tw-gradient-from: ;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-gray-50 {
  --tw-gradient-from: #F9FAFB;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0))
}

.from-gray-100 {
  --tw-gradient-from: #F3F4F6;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0))
}

.from-gray-200 {
  --tw-gradient-from: #E5E7EB;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0))
}

.from-gray-300 {
  --tw-gradient-from: #D1D5DB;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0))
}

.from-gray-400 {
  --tw-gradient-from: #9CA3AF;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0))
}

.from-gray-500 {
  --tw-gradient-from: #6B7280;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0))
}

.from-gray-600 {
  --tw-gradient-from: #4B5563;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0))
}

.from-gray-700 {
  --tw-gradient-from: #374151;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0))
}

.from-gray-800 {
  --tw-gradient-from: #1F2937;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0))
}

.from-gray-900 {
  --tw-gradient-from: #111827;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0))
}

.from-gray {
  --tw-gradient-from: #6B7280;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0))
}

.from-dark-50 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-100 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-200 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-300 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-400 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-500 {
  --tw-gradient-from: #f8efe5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-600 {
  --tw-gradient-from: #dad1c7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-700 {
  --tw-gradient-from: #bcb3a9;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-800 {
  --tw-gradient-from: #9e958b;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark-900 {
  --tw-gradient-from: #80776d;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-dark {
  --tw-gradient-from: #f8efe5;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-50 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-100 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-200 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-300 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-400 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-500 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-600 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-700 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-800 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white-900 {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.from-white {
  --tw-gradient-from: #ffffff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-current {
  --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #878787, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #787878, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #5a5a5a, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #3c3c3c, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #1e1e1e, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-base {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #878787, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #787878, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #5a5a5a, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #3c3c3c, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #1e1e1e, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-default {
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffb7, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffa8, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffff8a, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffeb6c, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffcd4e, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #FDAF30, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #df9112, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #c17300, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #a35500, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #853700, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-primary {
  --tw-gradient-stops: var(--tw-gradient-from), #FDAF30, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #f2f2f2, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #d4d4d4, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #b6b6b6, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #989898, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #7a7a7a, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-secondary {
  --tw-gradient-stops: var(--tw-gradient-from), #f2f2f2, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-50 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-100 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-200 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-300 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-400 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-500 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-600 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-700 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-800 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary-900 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-tertiary {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-50 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-100 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-200 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-300 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-400 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-500 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-600 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-700 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-800 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success-900 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-success {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-50 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-100 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-200 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-300 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-400 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-500 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-600 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-700 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-800 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning-900 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-warning {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-50 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-100 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-200 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-300 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-400 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-500 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-600 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-700 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-800 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger-900 {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-danger {
  --tw-gradient-stops: var(--tw-gradient-from), , var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-gray-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #F9FAFB, var(--tw-gradient-to, rgba(249, 250, 251, 0))
}

.via-gray-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #F3F4F6, var(--tw-gradient-to, rgba(243, 244, 246, 0))
}

.via-gray-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #E5E7EB, var(--tw-gradient-to, rgba(229, 231, 235, 0))
}

.via-gray-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #D1D5DB, var(--tw-gradient-to, rgba(209, 213, 219, 0))
}

.via-gray-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #9CA3AF, var(--tw-gradient-to, rgba(156, 163, 175, 0))
}

.via-gray-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #6B7280, var(--tw-gradient-to, rgba(107, 114, 128, 0))
}

.via-gray-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #4B5563, var(--tw-gradient-to, rgba(75, 85, 99, 0))
}

.via-gray-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0))
}

.via-gray-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #1F2937, var(--tw-gradient-to, rgba(31, 41, 55, 0))
}

.via-gray-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0))
}

.via-gray {
  --tw-gradient-stops: var(--tw-gradient-from), #6B7280, var(--tw-gradient-to, rgba(107, 114, 128, 0))
}

.via-dark-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #f8efe5, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #dad1c7, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #bcb3a9, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #9e958b, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #80776d, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-dark {
  --tw-gradient-stops: var(--tw-gradient-from), #f8efe5, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-50 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-100 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-200 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-300 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-400 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-500 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-600 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-700 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-800 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white-900 {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.via-white {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0))
}

.to-current {
  --tw-gradient-to: currentColor
}

.to-base-50 {
  --tw-gradient-to: #878787
}

.to-base-100 {
  --tw-gradient-to: #787878
}

.to-base-200 {
  --tw-gradient-to: #5a5a5a
}

.to-base-300 {
  --tw-gradient-to: #3c3c3c
}

.to-base-400 {
  --tw-gradient-to: #1e1e1e
}

.to-base-500 {
  --tw-gradient-to: #000000
}

.to-base-600 {
  --tw-gradient-to: #000000
}

.to-base-700 {
  --tw-gradient-to: #000000
}

.to-base-800 {
  --tw-gradient-to: #000000
}

.to-base-900 {
  --tw-gradient-to: #000000
}

.to-base {
  --tw-gradient-to: #000000
}

.to-default-50 {
  --tw-gradient-to: #878787
}

.to-default-100 {
  --tw-gradient-to: #787878
}

.to-default-200 {
  --tw-gradient-to: #5a5a5a
}

.to-default-300 {
  --tw-gradient-to: #3c3c3c
}

.to-default-400 {
  --tw-gradient-to: #1e1e1e
}

.to-default-500 {
  --tw-gradient-to: #000000
}

.to-default-600 {
  --tw-gradient-to: #000000
}

.to-default-700 {
  --tw-gradient-to: #000000
}

.to-default-800 {
  --tw-gradient-to: #000000
}

.to-default-900 {
  --tw-gradient-to: #000000
}

.to-default {
  --tw-gradient-to: #000000
}

.to-primary-50 {
  --tw-gradient-to: #ffffb7
}

.to-primary-100 {
  --tw-gradient-to: #ffffa8
}

.to-primary-200 {
  --tw-gradient-to: #ffff8a
}

.to-primary-300 {
  --tw-gradient-to: #ffeb6c
}

.to-primary-400 {
  --tw-gradient-to: #ffcd4e
}

.to-primary-500 {
  --tw-gradient-to: #FDAF30
}

.to-primary-600 {
  --tw-gradient-to: #df9112
}

.to-primary-700 {
  --tw-gradient-to: #c17300
}

.to-primary-800 {
  --tw-gradient-to: #a35500
}

.to-primary-900 {
  --tw-gradient-to: #853700
}

.to-primary {
  --tw-gradient-to: #FDAF30
}

.to-secondary-50 {
  --tw-gradient-to: #ffffff
}

.to-secondary-100 {
  --tw-gradient-to: #ffffff
}

.to-secondary-200 {
  --tw-gradient-to: #ffffff
}

.to-secondary-300 {
  --tw-gradient-to: #ffffff
}

.to-secondary-400 {
  --tw-gradient-to: #ffffff
}

.to-secondary-500 {
  --tw-gradient-to: #f2f2f2
}

.to-secondary-600 {
  --tw-gradient-to: #d4d4d4
}

.to-secondary-700 {
  --tw-gradient-to: #b6b6b6
}

.to-secondary-800 {
  --tw-gradient-to: #989898
}

.to-secondary-900 {
  --tw-gradient-to: #7a7a7a
}

.to-secondary {
  --tw-gradient-to: #f2f2f2
}

.to-tertiary-50 {
  --tw-gradient-to: 
}

.to-tertiary-100 {
  --tw-gradient-to: 
}

.to-tertiary-200 {
  --tw-gradient-to: 
}

.to-tertiary-300 {
  --tw-gradient-to: 
}

.to-tertiary-400 {
  --tw-gradient-to: 
}

.to-tertiary-500 {
  --tw-gradient-to: 
}

.to-tertiary-600 {
  --tw-gradient-to: 
}

.to-tertiary-700 {
  --tw-gradient-to: 
}

.to-tertiary-800 {
  --tw-gradient-to: 
}

.to-tertiary-900 {
  --tw-gradient-to: 
}

.to-tertiary {
  --tw-gradient-to: 
}

.to-success-50 {
  --tw-gradient-to: 
}

.to-success-100 {
  --tw-gradient-to: 
}

.to-success-200 {
  --tw-gradient-to: 
}

.to-success-300 {
  --tw-gradient-to: 
}

.to-success-400 {
  --tw-gradient-to: 
}

.to-success-500 {
  --tw-gradient-to: 
}

.to-success-600 {
  --tw-gradient-to: 
}

.to-success-700 {
  --tw-gradient-to: 
}

.to-success-800 {
  --tw-gradient-to: 
}

.to-success-900 {
  --tw-gradient-to: 
}

.to-success {
  --tw-gradient-to: 
}

.to-warning-50 {
  --tw-gradient-to: 
}

.to-warning-100 {
  --tw-gradient-to: 
}

.to-warning-200 {
  --tw-gradient-to: 
}

.to-warning-300 {
  --tw-gradient-to: 
}

.to-warning-400 {
  --tw-gradient-to: 
}

.to-warning-500 {
  --tw-gradient-to: 
}

.to-warning-600 {
  --tw-gradient-to: 
}

.to-warning-700 {
  --tw-gradient-to: 
}

.to-warning-800 {
  --tw-gradient-to: 
}

.to-warning-900 {
  --tw-gradient-to: 
}

.to-warning {
  --tw-gradient-to: 
}

.to-danger-50 {
  --tw-gradient-to: 
}

.to-danger-100 {
  --tw-gradient-to: 
}

.to-danger-200 {
  --tw-gradient-to: 
}

.to-danger-300 {
  --tw-gradient-to: 
}

.to-danger-400 {
  --tw-gradient-to: 
}

.to-danger-500 {
  --tw-gradient-to: 
}

.to-danger-600 {
  --tw-gradient-to: 
}

.to-danger-700 {
  --tw-gradient-to: 
}

.to-danger-800 {
  --tw-gradient-to: 
}

.to-danger-900 {
  --tw-gradient-to: 
}

.to-danger {
  --tw-gradient-to: 
}

.to-gray-50 {
  --tw-gradient-to: #F9FAFB
}

.to-gray-100 {
  --tw-gradient-to: #F3F4F6
}

.to-gray-200 {
  --tw-gradient-to: #E5E7EB
}

.to-gray-300 {
  --tw-gradient-to: #D1D5DB
}

.to-gray-400 {
  --tw-gradient-to: #9CA3AF
}

.to-gray-500 {
  --tw-gradient-to: #6B7280
}

.to-gray-600 {
  --tw-gradient-to: #4B5563
}

.to-gray-700 {
  --tw-gradient-to: #374151
}

.to-gray-800 {
  --tw-gradient-to: #1F2937
}

.to-gray-900 {
  --tw-gradient-to: #111827
}

.to-gray {
  --tw-gradient-to: #6B7280
}

.to-dark-50 {
  --tw-gradient-to: #ffffff
}

.to-dark-100 {
  --tw-gradient-to: #ffffff
}

.to-dark-200 {
  --tw-gradient-to: #ffffff
}

.to-dark-300 {
  --tw-gradient-to: #ffffff
}

.to-dark-400 {
  --tw-gradient-to: #ffffff
}

.to-dark-500 {
  --tw-gradient-to: #f8efe5
}

.to-dark-600 {
  --tw-gradient-to: #dad1c7
}

.to-dark-700 {
  --tw-gradient-to: #bcb3a9
}

.to-dark-800 {
  --tw-gradient-to: #9e958b
}

.to-dark-900 {
  --tw-gradient-to: #80776d
}

.to-dark {
  --tw-gradient-to: #f8efe5
}

.to-white-50 {
  --tw-gradient-to: #ffffff
}

.to-white-100 {
  --tw-gradient-to: #ffffff
}

.to-white-200 {
  --tw-gradient-to: #ffffff
}

.to-white-300 {
  --tw-gradient-to: #ffffff
}

.to-white-400 {
  --tw-gradient-to: #ffffff
}

.to-white-500 {
  --tw-gradient-to: #ffffff
}

.to-white-600 {
  --tw-gradient-to: #ffffff
}

.to-white-700 {
  --tw-gradient-to: #ffffff
}

.to-white-800 {
  --tw-gradient-to: #ffffff
}

.to-white-900 {
  --tw-gradient-to: #ffffff
}

.to-white {
  --tw-gradient-to: #ffffff
}

.bg-opacity-0 {
  --tw-bg-opacity: 0
}

.bg-opacity-5 {
  --tw-bg-opacity: 0.05
}

.bg-opacity-10 {
  --tw-bg-opacity: 0.1
}

.bg-opacity-20 {
  --tw-bg-opacity: 0.2
}

.bg-opacity-25 {
  --tw-bg-opacity: 0.25
}

.bg-opacity-30 {
  --tw-bg-opacity: 0.3
}

.bg-opacity-40 {
  --tw-bg-opacity: 0.4
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5
}

.bg-opacity-60 {
  --tw-bg-opacity: 0.6
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7
}

.bg-opacity-75 {
  --tw-bg-opacity: 0.75
}

.bg-opacity-80 {
  --tw-bg-opacity: 0.8
}

.bg-opacity-90 {
  --tw-bg-opacity: 0.9
}

.bg-opacity-95 {
  --tw-bg-opacity: 0.95
}

.bg-opacity-100 {
  --tw-bg-opacity: 1
}

.bg-bottom {
  background-position: bottom
}

.bg-center {
  background-position: center
}

.bg-left {
  background-position: left
}

.bg-left-bottom {
  background-position: left bottom
}

.bg-left-top {
  background-position: left top
}

.bg-right {
  background-position: right
}

.bg-right-bottom {
  background-position: right bottom
}

.bg-right-top {
  background-position: right top
}

.bg-top {
  background-position: top
}

.bg-repeat {
  background-repeat: repeat
}

.bg-no-repeat {
  background-repeat: no-repeat
}

.bg-repeat-x {
  background-repeat: repeat-x
}

.bg-repeat-y {
  background-repeat: repeat-y
}

.bg-repeat-round {
  background-repeat: round
}

.bg-repeat-space {
  background-repeat: space
}

.bg-auto {
  background-size: auto
}

.bg-cover {
  background-size: cover
}

.bg-contain {
  background-size: contain
}

.border-collapse {
  border-collapse: collapse
}

.border-separate {
  border-collapse: separate
}

.border-current {
  border-color: currentColor
}

.border-base-50 {
  border-color: #878787
}

.border-base-100 {
  border-color: #787878
}

.border-base-200 {
  border-color: #5a5a5a
}

.border-base-300 {
  border-color: #3c3c3c
}

.border-base-400 {
  border-color: #1e1e1e
}

.border-base-500 {
  border-color: #000000
}

.border-base-600 {
  border-color: #000000
}

.border-base-700 {
  border-color: #000000
}

.border-base-800 {
  border-color: #000000
}

.border-base-900 {
  border-color: #000000
}

.border-base {
  border-color: #000000
}

.border-default-50 {
  border-color: #878787
}

.border-default-100 {
  border-color: #787878
}

.border-default-200 {
  border-color: #5a5a5a
}

.border-default-300 {
  border-color: #3c3c3c
}

.border-default-400 {
  border-color: #1e1e1e
}

.border-default-500 {
  border-color: #000000
}

.border-default-600 {
  border-color: #000000
}

.border-default-700 {
  border-color: #000000
}

.border-default-800 {
  border-color: #000000
}

.border-default-900 {
  border-color: #000000
}

.border-default {
  border-color: #000000
}

.border-primary-50 {
  border-color: #ffffb7
}

.border-primary-100 {
  border-color: #ffffa8
}

.border-primary-200 {
  border-color: #ffff8a
}

.border-primary-300 {
  border-color: #ffeb6c
}

.border-primary-400 {
  border-color: #ffcd4e
}

.border-primary-500 {
  border-color: #FDAF30
}

.border-primary-600 {
  border-color: #df9112
}

.border-primary-700 {
  border-color: #c17300
}

.border-primary-800 {
  border-color: #a35500
}

.border-primary-900 {
  border-color: #853700
}

.border-primary {
  border-color: #FDAF30
}

.border-secondary-50 {
  border-color: #ffffff
}

.border-secondary-100 {
  border-color: #ffffff
}

.border-secondary-200 {
  border-color: #ffffff
}

.border-secondary-300 {
  border-color: #ffffff
}

.border-secondary-400 {
  border-color: #ffffff
}

.border-secondary-500 {
  border-color: #f2f2f2
}

.border-secondary-600 {
  border-color: #d4d4d4
}

.border-secondary-700 {
  border-color: #b6b6b6
}

.border-secondary-800 {
  border-color: #989898
}

.border-secondary-900 {
  border-color: #7a7a7a
}

.border-secondary {
  border-color: #f2f2f2
}

.border-tertiary-50 {
  border-color: 
}

.border-tertiary-100 {
  border-color: 
}

.border-tertiary-200 {
  border-color: 
}

.border-tertiary-300 {
  border-color: 
}

.border-tertiary-400 {
  border-color: 
}

.border-tertiary-500 {
  border-color: 
}

.border-tertiary-600 {
  border-color: 
}

.border-tertiary-700 {
  border-color: 
}

.border-tertiary-800 {
  border-color: 
}

.border-tertiary-900 {
  border-color: 
}

.border-tertiary {
  border-color: 
}

.border-success-50 {
  border-color: 
}

.border-success-100 {
  border-color: 
}

.border-success-200 {
  border-color: 
}

.border-success-300 {
  border-color: 
}

.border-success-400 {
  border-color: 
}

.border-success-500 {
  border-color: 
}

.border-success-600 {
  border-color: 
}

.border-success-700 {
  border-color: 
}

.border-success-800 {
  border-color: 
}

.border-success-900 {
  border-color: 
}

.border-success {
  border-color: 
}

.border-warning-50 {
  border-color: 
}

.border-warning-100 {
  border-color: 
}

.border-warning-200 {
  border-color: 
}

.border-warning-300 {
  border-color: 
}

.border-warning-400 {
  border-color: 
}

.border-warning-500 {
  border-color: 
}

.border-warning-600 {
  border-color: 
}

.border-warning-700 {
  border-color: 
}

.border-warning-800 {
  border-color: 
}

.border-warning-900 {
  border-color: 
}

.border-warning {
  border-color: 
}

.border-danger-50 {
  border-color: 
}

.border-danger-100 {
  border-color: 
}

.border-danger-200 {
  border-color: 
}

.border-danger-300 {
  border-color: 
}

.border-danger-400 {
  border-color: 
}

.border-danger-500 {
  border-color: 
}

.border-danger-600 {
  border-color: 
}

.border-danger-700 {
  border-color: 
}

.border-danger-800 {
  border-color: 
}

.border-danger-900 {
  border-color: 
}

.border-danger {
  border-color: 
}

.border-gray-50 {
  --tw-border-opacity: 1;
  border-color: rgba(249, 250, 251, var(--tw-border-opacity))
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity))
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity))
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity))
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity))
}

.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity))
}

.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, var(--tw-border-opacity))
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity))
}

.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgba(31, 41, 55, var(--tw-border-opacity))
}

.border-gray-900 {
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity))
}

.border-gray {
  --tw-border-opacity: 1;
  border-color: rgba(107, 114, 128, var(--tw-border-opacity))
}

.border-dark-50 {
  border-color: #ffffff
}

.border-dark-100 {
  border-color: #ffffff
}

.border-dark-200 {
  border-color: #ffffff
}

.border-dark-300 {
  border-color: #ffffff
}

.border-dark-400 {
  border-color: #ffffff
}


.border-dark-500 {
  border-color: #f8efe5
}

.border-dark-600 {
  border-color: #dad1c7
}

.border-dark-700 {
  border-color: #bcb3a9
}

.border-dark-800 {
  border-color: #9e958b
}

.border-dark-900 {
  border-color: #80776d
}

.border-dark {
  border-color: #f8efe5
}

.border-white-50 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-100 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-200 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-300 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-400 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-500 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-600 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-700 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-800 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white-900 {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity))
}

.border-opacity-0 {
  --tw-border-opacity: 0
}

.border-opacity-5 {
  --tw-border-opacity: 0.05
}

.border-opacity-10 {
  --tw-border-opacity: 0.1
}

.border-opacity-20 {
  --tw-border-opacity: 0.2
}

.border-opacity-25 {
  --tw-border-opacity: 0.25
}

.border-opacity-30 {
  --tw-border-opacity: 0.3
}

.border-opacity-40 {
  --tw-border-opacity: 0.4
}

.border-opacity-50 {
  --tw-border-opacity: 0.5
}

.border-opacity-60 {
  --tw-border-opacity: 0.6
}

.border-opacity-70 {
  --tw-border-opacity: 0.7
}

.border-opacity-75 {
  --tw-border-opacity: 0.75
}

.border-opacity-80 {
  --tw-border-opacity: 0.8
}

.border-opacity-90 {
  --tw-border-opacity: 0.9
}

.border-opacity-95 {
  --tw-border-opacity: 0.95
}

.border-opacity-100 {
  --tw-border-opacity: 1
}

.rounded-none {
  border-radius: 0px
}

.rounded-sm {
  border-radius: 0.125rem
}

.rounded {
  border-radius: 0.25rem
}

.rounded-md {
  border-radius: 0.375rem
}

.rounded-lg {
  border-radius: 0.5rem
}

.rounded-xl {
  border-radius: 0.75rem
}

.rounded-2xl {
  border-radius: 1rem
}

.rounded-3xl {
  border-radius: 1.5rem
}

.rounded-full {
  border-radius: 9999px
}

.rounded-t-none {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px
}

.rounded-r-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px
}

.rounded-b-none {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px
}

.rounded-l-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px
}

.rounded-t-sm {
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem
}

.rounded-r-sm {
  border-top-right-radius: 0.125rem;
  border-bottom-right-radius: 0.125rem
}

.rounded-b-sm {
  border-bottom-right-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem
}

.rounded-l-sm {
  border-top-left-radius: 0.125rem;
  border-bottom-left-radius: 0.125rem
}

.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem
}

.rounded-r {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem
}

.rounded-b {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem
}

.rounded-l {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem
}

.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem
}

.rounded-r-md {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem
}

.rounded-b-md {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem
}

.rounded-l-md {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem
}

.rounded-t-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem
}

.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem
}

.rounded-l-lg {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem
}

.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem
}

.rounded-r-xl {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem
}

.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem
}

.rounded-l-xl {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem
}

.rounded-t-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem
}

.rounded-r-2xl {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem
}

.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem
}

.rounded-l-2xl {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem
}

.rounded-r-3xl {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem
}

.rounded-b-3xl {
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem
}

.rounded-l-3xl {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem
}

.rounded-t-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px
}

.rounded-r-full {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px
}

.rounded-b-full {
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px
}

.rounded-l-full {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px
}

.rounded-tl-none {
  border-top-left-radius: 0px
}

.rounded-tr-none {
  border-top-right-radius: 0px
}

.rounded-br-none {
  border-bottom-right-radius: 0px
}

.rounded-bl-none {
  border-bottom-left-radius: 0px
}

.rounded-tl-sm {
  border-top-left-radius: 0.125rem
}

.rounded-tr-sm {
  border-top-right-radius: 0.125rem
}

.rounded-br-sm {
  border-bottom-right-radius: 0.125rem
}

.rounded-bl-sm {
  border-bottom-left-radius: 0.125rem
}

.rounded-tl {
  border-top-left-radius: 0.25rem
}

.rounded-tr {
  border-top-right-radius: 0.25rem
}

.rounded-br {
  border-bottom-right-radius: 0.25rem
}

.rounded-bl {
  border-bottom-left-radius: 0.25rem
}

.rounded-tl-md {
  border-top-left-radius: 0.375rem
}

.rounded-tr-md {
  border-top-right-radius: 0.375rem
}

.rounded-br-md {
  border-bottom-right-radius: 0.375rem
}

.rounded-bl-md {
  border-bottom-left-radius: 0.375rem
}

.rounded-tl-lg {
  border-top-left-radius: 0.5rem
}

.rounded-tr-lg {
  border-top-right-radius: 0.5rem
}

.rounded-br-lg {
  border-bottom-right-radius: 0.5rem
}

.rounded-bl-lg {
  border-bottom-left-radius: 0.5rem
}

.rounded-tl-xl {
  border-top-left-radius: 0.75rem
}

.rounded-tr-xl {
  border-top-right-radius: 0.75rem
}

.rounded-br-xl {
  border-bottom-right-radius: 0.75rem
}

.rounded-bl-xl {
  border-bottom-left-radius: 0.75rem
}

.rounded-tl-2xl {
  border-top-left-radius: 1rem
}

.rounded-tr-2xl {
  border-top-right-radius: 1rem
}

.rounded-br-2xl {
  border-bottom-right-radius: 1rem
}

.rounded-bl-2xl {
  border-bottom-left-radius: 1rem
}

.rounded-tl-3xl {
  border-top-left-radius: 1.5rem
}

.rounded-tr-3xl {
  border-top-right-radius: 1.5rem
}

.rounded-br-3xl {
  border-bottom-right-radius: 1.5rem
}

.rounded-bl-3xl {
  border-bottom-left-radius: 1.5rem
}

.rounded-tl-full {
  border-top-left-radius: 9999px
}

.rounded-tr-full {
  border-top-right-radius: 9999px
}

.rounded-br-full {
  border-bottom-right-radius: 9999px
}

.rounded-bl-full {
  border-bottom-left-radius: 9999px
}

.border-solid {
  border-style: solid
}

.border-dashed {
  border-style: dashed
}

.border-dotted {
  border-style: dotted
}

.border-double {
  border-style: double
}

.border-none {
  border-style: none
}

.border-0 {
  border-width: 0
}

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

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

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

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

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

.border-6 {
  border-width: 6px
}

.border-7 {
  border-width: 7px
}

.border-8 {
  border-width: 8px
}

.border-9 {
  border-width: 9px
}

.border-10 {
  border-width: 10px
}

.border {
  border-width: 1px
}

.border-default {
  border-width: 1px
}

.border-t-0 {
  border-top-width: 0
}

.border-r-0 {
  border-right-width: 0
}

.border-b-0 {
  border-bottom-width: 0
}

.border-l-0 {
  border-left-width: 0
}

.border-t-1 {
  border-top-width: 1px
}

.border-r-1 {
  border-right-width: 1px
}

.border-b-1 {
  border-bottom-width: 1px
}

.border-l-1 {
  border-left-width: 1px
}

.border-t-2 {
  border-top-width: 2px
}

.border-r-2 {
  border-right-width: 2px
}

.border-b-2 {
  border-bottom-width: 2px
}

.border-l-2 {
  border-left-width: 2px
}

.border-t-3 {
  border-top-width: 3px
}

.border-r-3 {
  border-right-width: 3px
}

.border-b-3 {
  border-bottom-width: 3px
}

.border-l-3 {
  border-left-width: 3px
}

.border-t-4 {
  border-top-width: 4px
}

.border-r-4 {
  border-right-width: 4px
}

.border-b-4 {
  border-bottom-width: 4px
}

.border-l-4 {
  border-left-width: 4px
}

.border-t-5 {
  border-top-width: 5px
}

.border-r-5 {
  border-right-width: 5px
}

.border-b-5 {
  border-bottom-width: 5px
}

.border-l-5 {
  border-left-width: 5px
}

.border-t-6 {
  border-top-width: 6px
}

.border-r-6 {
  border-right-width: 6px
}

.border-b-6 {
  border-bottom-width: 6px
}

.border-l-6 {
  border-left-width: 6px
}

.border-t-7 {
  border-top-width: 7px
}

.border-r-7 {
  border-right-width: 7px
}

.border-b-7 {
  border-bottom-width: 7px
}

.border-l-7 {
  border-left-width: 7px
}

.border-t-8 {
  border-top-width: 8px
}

.border-r-8 {
  border-right-width: 8px
}

.border-b-8 {
  border-bottom-width: 8px
}

.border-l-8 {
  border-left-width: 8px
}

.border-t-9 {
  border-top-width: 9px
}

.border-r-9 {
  border-right-width: 9px
}

.border-b-9 {
  border-bottom-width: 9px
}

.border-l-9 {
  border-left-width: 9px
}

.border-t-10 {
  border-top-width: 10px
}

.border-r-10 {
  border-right-width: 10px
}

.border-b-10 {
  border-bottom-width: 10px
}

.border-l-10 {
  border-left-width: 10px
}

.border-t {
  border-top-width: 1px
}

.border-r {
  border-right-width: 1px
}

.border-b {
  border-bottom-width: 1px
}

.border-l {
  border-left-width: 1px
}

.border-t-default {
  border-top-width: 1px
}

.border-r-default {
  border-right-width: 1px
}

.border-b-default {
  border-bottom-width: 1px
}

.border-l-default {
  border-left-width: 1px
}

.box-border {
  box-sizing: border-box
}

.box-content {
  box-sizing: content-box
}

.cursor-auto {
  cursor: auto
}

.cursor-default {
  cursor: default
}

.cursor-pointer {
  cursor: pointer
}

.cursor-wait {
  cursor: wait
}

.cursor-text {
  cursor: text
}

.cursor-move {
  cursor: move
}

.cursor-not-allowed {
  cursor: not-allowed
}

.block {
  display: block
}

.inline-block {
  display: inline-block
}

.inline {
  display: inline
}

.flex {
  display: flex
}

.inline-flex {
  display: inline-flex
}

.table {
  display: table
}

.table-caption {
  display: table-caption
}

.table-cell {
  display: table-cell
}

.table-column {
  display: table-column
}

.table-column-group {
  display: table-column-group
}

.table-footer-group {
  display: table-footer-group
}

.table-header-group {
  display: table-header-group
}

.table-row-group {
  display: table-row-group
}

.table-row {
  display: table-row
}

.flow-root {
  display: flow-root
}

.grid {
  display: grid
}

.inline-grid {
  display: inline-grid
}

.contents {
  display: contents
}

.hidden {
  display: none
}

.flex-row {
  flex-direction: row
}

.flex-row-reverse {
  flex-direction: row-reverse
}

.flex-col {
  flex-direction: column
}

.flex-col-reverse {
  flex-direction: column-reverse
}

.flex-wrap {
  flex-wrap: wrap
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse
}

.flex-nowrap {
  flex-wrap: nowrap
}

.place-items-auto {
  place-items: auto
}

.place-items-start {
  place-items: start
}

.place-items-end {
  place-items: end
}

.place-items-center {
  place-items: center
}

.place-items-stretch {
  place-items: stretch
}

.place-content-center {
  place-content: center
}

.place-content-start {
  place-content: start
}

.place-content-end {
  place-content: end
}

.place-content-between {
  place-content: space-between
}

.place-content-around {
  place-content: space-around
}

.place-content-evenly {
  place-content: space-evenly
}

.place-content-stretch {
  place-content: stretch
}

.place-self-auto {
  place-self: auto
}

.place-self-start {
  place-self: start
}

.place-self-end {
  place-self: end
}

.place-self-center {
  place-self: center
}

.place-self-stretch {
  place-self: stretch
}

.items-start {
  align-items: flex-start
}

.items-end {
  align-items: flex-end
}

.items-center {
  align-items: center
}

.items-baseline {
  align-items: baseline
}

.items-stretch {
  align-items: stretch
}

.content-center {
  align-content: center
}

.content-start {
  align-content: flex-start
}

.content-end {
  align-content: flex-end
}

.content-between {
  align-content: space-between
}

.content-around {
  align-content: space-around
}

.content-evenly {
  align-content: space-evenly
}

.self-auto {
  align-self: auto
}

.self-start {
  align-self: flex-start
}

.self-end {
  align-self: flex-end
}

.self-center {
  align-self: center
}

.self-stretch {
  align-self: stretch
}

.justify-items-auto {
  justify-items: auto
}

.justify-items-start {
  justify-items: start
}

.justify-items-end {
  justify-items: end
}

.justify-items-center {
  justify-items: center
}

.justify-items-stretch {
  justify-items: stretch
}

.justify-start {
  justify-content: flex-start
}

.justify-end {
  justify-content: flex-end
}

.justify-center {
  justify-content: center
}

.justify-between {
  justify-content: space-between
}

.justify-around {
  justify-content: space-around
}

.justify-evenly {
  justify-content: space-evenly
}

.justify-self-auto {
  justify-self: auto
}

.justify-self-start {
  justify-self: start
}

.justify-self-end {
  justify-self: end
}

.justify-self-center {
  justify-self: center
}

.justify-self-stretch {
  justify-self: stretch
}

.flex-1 {
  flex: 1 1 0%
}

.flex-auto {
  flex: 1 1 auto
}

.flex-initial {
  flex: 0 1 auto
}

.flex-none {
  flex: none
}

.flex-grow-0 {
  flex-grow: 0
}

.flex-grow {
  flex-grow: 1
}

.flex-shrink-0 {
  flex-shrink: 0
}

.flex-shrink {
  flex-shrink: 1
}

.order-1 {
  order: 1
}

.order-2 {
  order: 2
}

.order-3 {
  order: 3
}

.order-4 {
  order: 4
}

.order-5 {
  order: 5
}

.order-6 {
  order: 6
}

.order-7 {
  order: 7
}

.order-8 {
  order: 8
}

.order-9 {
  order: 9
}

.order-10 {
  order: 10
}

.order-11 {
  order: 11
}

.order-12 {
  order: 12
}

.order-first {
  order: -9999
}

.order-last {
  order: 9999
}

.order-none {
  order: 0
}

.float-right {
  float: right
}

.float-left {
  float: left
}

.float-none {
  float: none
}

.clear-left {
  clear: left
}

.clear-right {
  clear: right
}

.clear-both {
  clear: both
}

.clear-none {
  clear: none
}

.font-thin {
  font-weight: 100
}

.font-extralight {
  font-weight: 200
}

.font-light {
  font-weight: 300
}

.font-normal {
  font-weight: 400
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extrabold {
  font-weight: 800
}

.font-black {
  font-weight: 900
}

.h-0 {
  height: 0px
}

.h-1 {
  height: 0.25rem
}

.h-2 {
  height: 0.5rem
}

.h-3 {
  height: 0.75rem
}

.h-4 {
  height: 1rem
}

.h-5 {
  height: 1.25rem
}

.h-6 {
  height: 1.5rem
}

.h-7 {
  height: 1.75rem
}

.h-8 {
  height: 2rem
}

.h-9 {
  height: 2.25rem
}

.h-10 {
  height: 2.5rem
}

.h-11 {
  height: 2.75rem
}

.h-12 {
  height: 3rem
}

.h-14 {
  height: 3.5rem
}

.h-16 {
  height: 4rem
}

.h-20 {
  height: 5rem
}

.h-24 {
  height: 6rem
}

.h-28 {
  height: 7rem
}

.h-32 {
  height: 8rem
}

.h-36 {
  height: 9rem
}

.h-40 {
  height: 10rem
}

.h-44 {
  height: 11rem
}

.h-48 {
  height: 12rem
}

.h-52 {
  height: 13rem
}

.h-56 {
  height: 14rem
}

.h-60 {
  height: 15rem
}

.h-64 {
  height: 16rem
}

.h-72 {
  height: 18rem
}

.h-80 {
  height: 20rem
}

.h-96 {
  height: 24rem
}

.h-auto {
  height: auto
}

.h-px {
  height: 1px
}

.h-0\.5 {
  height: 0.125rem
}

.h-1\.5 {
  height: 0.375rem
}

.h-2\.5 {
  height: 0.625rem
}

.h-3\.5 {
  height: 0.875rem
}

.h-2\/3 {
  height: 66.666667%
}

.h-3\/4 {
  height: 75%
}

.h-6\/19 {
  height: 56.25%
}

.h-1\/1 {
  height: 100%
}

.h-3\/2 {
  height: 150%
}

.h-4\/3 {
  height: 133.333%
}

.h-1\/2 {
  height: 50%
}

.h-1\/3 {
  height: 33.333333%
}

.h-1\/4 {
  height: 25%
}

.h-2\/4 {
  height: 50%
}

.h-1\/5 {
  height: 20%
}

.h-2\/5 {
  height: 40%
}

.h-3\/5 {
  height: 60%
}

.h-4\/5 {
  height: 80%
}

.h-1\/6 {
  height: 16.666667%
}

.h-2\/6 {
  height: 33.333333%
}

.h-3\/6 {
  height: 50%
}

.h-4\/6 {
  height: 66.666667%
}

.h-5\/6 {
  height: 83.333333%
}

.h-full {
  height: 100%
}

.h-screen {
  height: 100vh
}

.text-xs {
  font-size: .75rem
}

.text-sm {
  font-size: .875rem
}

.text-md {
  font-size: 1rem
}

.text-lg {
  font-size: 1.125rem
}

.text-xl {
  font-size: 1.25rem
}

.text-2xl {
  font-size: 1.5rem
}

.text-3xl {
  font-size: 1.875rem
}

.text-4xl {
  font-size: 2.25rem
}

.text-5xl {
  font-size: 3rem
}

.text-6xl {
  font-size: 4rem
}

.text-7xl {
  font-size: 5rem
}

.text-8xl {
  font-size: 6rem
}

.text-9xl {
  font-size: 8rem
}

.leading-3 {
  line-height: .75rem
}

.leading-4 {
  line-height: 1rem
}

.leading-5 {
  line-height: 1.25rem
}

.leading-6 {
  line-height: 1.5rem
}

.leading-7 {
  line-height: 1.75rem
}

.leading-8 {
  line-height: 2rem
}

.leading-9 {
  line-height: 2.25rem
}

.leading-10 {
  line-height: 2.5rem
}

.leading-none {
  line-height: 1
}

.leading-tight {
  line-height: 1.25
}

.leading-snug {
  line-height: 1.375
}

.leading-normal {
  line-height: 1.5
}

.leading-relaxed {
  line-height: 1.625
}

.leading-loose {
  line-height: 2
}

.list-inside {
  list-style-position: inside
}

.list-outside {
  list-style-position: outside
}

.list-none {
  list-style-type: none
}

.list-disc {
  list-style-type: disc
}

.list-decimal {
  list-style-type: decimal
}

.m-0 {
  margin: 0px
}

.m-1 {
  margin: 0.25rem
}

.m-2 {
  margin: 0.5rem
}

.m-3 {
  margin: 0.75rem
}

.m-4 {
  margin: 1rem
}

.m-5 {
  margin: 1.25rem
}

.m-6 {
  margin: 1.5rem
}

.m-7 {
  margin: 1.75rem
}

.m-8 {
  margin: 2rem
}

.m-9 {
  margin: 2.25rem
}

.m-10 {
  margin: 2.5rem
}

.m-11 {
  margin: 2.75rem
}

.m-12 {
  margin: 3rem
}

.m-14 {
  margin: 3.5rem
}

.m-16 {
  margin: 4rem
}

.m-20 {
  margin: 5rem
}

.m-24 {
  margin: 6rem
}

.m-28 {
  margin: 7rem
}

.m-32 {
  margin: 8rem
}

.m-36 {
  margin: 9rem
}

.m-40 {
  margin: 10rem
}

.m-44 {
  margin: 11rem
}

.m-48 {
  margin: 12rem
}

.m-52 {
  margin: 13rem
}

.m-56 {
  margin: 14rem
}

.m-60 {
  margin: 15rem
}

.m-64 {
  margin: 16rem
}

.m-72 {
  margin: 18rem
}

.m-80 {
  margin: 20rem
}

.m-96 {
  margin: 24rem
}

.m-auto {
  margin: auto
}

.m-px {
  margin: 1px
}

.m-0\.5 {
  margin: 0.125rem
}

.m-1\.5 {
  margin: 0.375rem
}

.m-2\.5 {
  margin: 0.625rem
}

.m-3\.5 {
  margin: 0.875rem
}

.m-2\/3 {
  margin: 66.666667%
}

.m-3\/4 {
  margin: 75%
}

.m-6\/19 {
  margin: 56.25%
}

.m-1\/1 {
  margin: 100%
}

.m-3\/2 {
  margin: 150%
}

.m-4\/3 {
  margin: 133.333%
}

.-m-0 {
  margin: 0px
}

.-m-1 {
  margin: -0.25rem
}

.-m-2 {
  margin: -0.5rem
}

.-m-3 {
  margin: -0.75rem
}

.-m-4 {
  margin: -1rem
}

.-m-5 {
  margin: -1.25rem
}

.-m-6 {
  margin: -1.5rem
}

.-m-7 {
  margin: -1.75rem
}

.-m-8 {
  margin: -2rem
}

.-m-9 {
  margin: -2.25rem
}

.-m-10 {
  margin: -2.5rem
}

.-m-11 {
  margin: -2.75rem
}

.-m-12 {
  margin: -3rem
}

.-m-14 {
  margin: -3.5rem
}

.-m-16 {
  margin: -4rem
}

.-m-20 {
  margin: -5rem
}

.-m-24 {
  margin: -6rem
}

.-m-28 {
  margin: -7rem
}

.-m-32 {
  margin: -8rem
}

.-m-36 {
  margin: -9rem
}

.-m-40 {
  margin: -10rem
}

.-m-44 {
  margin: -11rem
}

.-m-48 {
  margin: -12rem
}

.-m-52 {
  margin: -13rem
}

.-m-56 {
  margin: -14rem
}

.-m-60 {
  margin: -15rem
}

.-m-64 {
  margin: -16rem
}

.-m-72 {
  margin: -18rem
}

.-m-80 {
  margin: -20rem
}

.-m-96 {
  margin: -24rem
}

.-m-px {
  margin: -1px
}

.-m-0\.5 {
  margin: -0.125rem
}

.-m-1\.5 {
  margin: -0.375rem
}

.-m-2\.5 {
  margin: -0.625rem
}

.-m-3\.5 {
  margin: -0.875rem
}

.-m-2\/3 {
  margin: -66.66667%
}

.-m-3\/4 {
  margin: -75%
}

.-m-6\/19 {
  margin: -56.25%
}

.-m-1\/1 {
  margin: -100%
}

.-m-3\/2 {
  margin: -150%
}

.-m-4\/3 {
  margin: -133.333%
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px
}

.mx-0 {
  margin-left: 0px;
  margin-right: 0px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-11 {
  margin-top: 2.75rem;
  margin-bottom: 2.75rem
}

.mx-11 {
  margin-left: 2.75rem;
  margin-right: 2.75rem
}

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

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

.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem
}

.mx-14 {
  margin-left: 3.5rem;
  margin-right: 3.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-44 {
  margin-top: 11rem;
  margin-bottom: 11rem
}

.mx-44 {
  margin-left: 11rem;
  margin-right: 11rem
}

.my-48 {
  margin-top: 12rem;
  margin-bottom: 12rem
}

.mx-48 {
  margin-left: 12rem;
  margin-right: 12rem
}

.my-52 {
  margin-top: 13rem;
  margin-bottom: 13rem
}

.mx-52 {
  margin-left: 13rem;
  margin-right: 13rem
}

.my-56 {
  margin-top: 14rem;
  margin-bottom: 14rem
}

.mx-56 {
  margin-left: 14rem;
  margin-right: 14rem
}

.my-60 {
  margin-top: 15rem;
  margin-bottom: 15rem
}

.mx-60 {
  margin-left: 15rem;
  margin-right: 15rem
}

.my-64 {
  margin-top: 16rem;
  margin-bottom: 16rem
}

.mx-64 {
  margin-left: 16rem;
  margin-right: 16rem
}

.my-72 {
  margin-top: 18rem;
  margin-bottom: 18rem
}

.mx-72 {
  margin-left: 18rem;
  margin-right: 18rem
}

.my-80 {
  margin-top: 20rem;
  margin-bottom: 20rem
}

.mx-80 {
  margin-left: 20rem;
  margin-right: 20rem
}

.my-96 {
  margin-top: 24rem;
  margin-bottom: 24rem
}

.mx-96 {
  margin-left: 24rem;
  margin-right: 24rem
}

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

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

.my-px {
  margin-top: 1px;
  margin-bottom: 1px
}

.mx-px {
  margin-left: 1px;
  margin-right: 1px
}

.my-0\.5 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem
}

.mx-0\.5 {
  margin-left: 0.125rem;
  margin-right: 0.125rem
}

.my-1\.5 {
  margin-top: 0.375rem;
  margin-bottom: 0.375rem
}

.mx-1\.5 {
  margin-left: 0.375rem;
  margin-right: 0.375rem
}

.my-2\.5 {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem
}

.mx-2\.5 {
  margin-left: 0.625rem;
  margin-right: 0.625rem
}

.my-3\.5 {
  margin-top: 0.875rem;
  margin-bottom: 0.875rem
}

.mx-3\.5 {
  margin-left: 0.875rem;
  margin-right: 0.875rem
}

.my-2\/3 {
  margin-top: 66.666667%;
  margin-bottom: 66.666667%
}

.mx-2\/3 {
  margin-left: 66.666667%;
  margin-right: 66.666667%
}

.my-3\/4 {
  margin-top: 75%;
  margin-bottom: 75%
}

.mx-3\/4 {
  margin-left: 75%;
  margin-right: 75%
}

.my-6\/19 {
  margin-top: 56.25%;
  margin-bottom: 56.25%
}

.mx-6\/19 {
  margin-left: 56.25%;
  margin-right: 56.25%
}

.my-1\/1 {
  margin-top: 100%;
  margin-bottom: 100%
}

.mx-1\/1 {
  margin-left: 100%;
  margin-right: 100%
}

.my-3\/2 {
  margin-top: 150%;
  margin-bottom: 150%
}

.mx-3\/2 {
  margin-left: 150%;
  margin-right: 150%
}

.my-4\/3 {
  margin-top: 133.333%;
  margin-bottom: 133.333%
}

.mx-4\/3 {
  margin-left: 133.333%;
  margin-right: 133.333%
}

.-my-0 {
  margin-top: 0px;
  margin-bottom: 0px
}

.-mx-0 {
  margin-left: 0px;
  margin-right: 0px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-my-11 {
  margin-top: -2.75rem;
  margin-bottom: -2.75rem
}

.-mx-11 {
  margin-left: -2.75rem;
  margin-right: -2.75rem
}

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

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

.-my-14 {
  margin-top: -3.5rem;
  margin-bottom: -3.5rem
}

.-mx-14 {
  margin-left: -3.5rem;
  margin-right: -3.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.-my-44 {
  margin-top: -11rem;
  margin-bottom: -11rem
}

.-mx-44 {
  margin-left: -11rem;
  margin-right: -11rem
}

.-my-48 {
  margin-top: -12rem;
  margin-bottom: -12rem
}

.-mx-48 {
  margin-left: -12rem;
  margin-right: -12rem
}

.-my-52 {
  margin-top: -13rem;
  margin-bottom: -13rem
}

.-mx-52 {
  margin-left: -13rem;
  margin-right: -13rem
}

.-my-56 {
  margin-top: -14rem;
  margin-bottom: -14rem
}

.-mx-56 {
  margin-left: -14rem;
  margin-right: -14rem
}

.-my-60 {
  margin-top: -15rem;
  margin-bottom: -15rem
}

.-mx-60 {
  margin-left: -15rem;
  margin-right: -15rem
}

.-my-64 {
  margin-top: -16rem;
  margin-bottom: -16rem
}

.-mx-64 {
  margin-left: -16rem;
  margin-right: -16rem
}

.-my-72 {
  margin-top: -18rem;
  margin-bottom: -18rem
}

.-mx-72 {
  margin-left: -18rem;
  margin-right: -18rem
}

.-my-80 {
  margin-top: -20rem;
  margin-bottom: -20rem
}

.-mx-80 {
  margin-left: -20rem;
  margin-right: -20rem
}

.-my-96 {
  margin-top: -24rem;
  margin-bottom: -24rem
}

.-mx-96 {
  margin-left: -24rem;
  margin-right: -24rem
}

.-my-px {
  margin-top: -1px;
  margin-bottom: -1px
}

.-mx-px {
  margin-left: -1px;
  margin-right: -1px
}

.-my-0\.5 {
  margin-top: -0.125rem;
  margin-bottom: -0.125rem
}

.-mx-0\.5 {
  margin-left: -0.125rem;
  margin-right: -0.125rem
}

.-my-1\.5 {
  margin-top: -0.375rem;
  margin-bottom: -0.375rem
}

.-mx-1\.5 {
  margin-left: -0.375rem;
  margin-right: -0.375rem
}

.-my-2\.5 {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem
}

.-mx-2\.5 {
  margin-left: -0.625rem;
  margin-right: -0.625rem
}

.-my-3\.5 {
  margin-top: -0.875rem;
  margin-bottom: -0.875rem
}

.-mx-3\.5 {
  margin-left: -0.875rem;
  margin-right: -0.875rem
}

.-my-2\/3 {
  margin-top: -66.66667%;
  margin-bottom: -66.66667%
}

.-mx-2\/3 {
  margin-left: -66.66667%;
  margin-right: -66.66667%
}

.-my-3\/4 {
  margin-top: -75%;
  margin-bottom: -75%
}

.-mx-3\/4 {
  margin-left: -75%;
  margin-right: -75%
}

.-my-6\/19 {
  margin-top: -56.25%;
  margin-bottom: -56.25%
}

.-mx-6\/19 {
  margin-left: -56.25%;
  margin-right: -56.25%
}

.-my-1\/1 {
  margin-top: -100%;
  margin-bottom: -100%
}

.-mx-1\/1 {
  margin-left: -100%;
  margin-right: -100%
}

.-my-3\/2 {
  margin-top: -150%;
  margin-bottom: -150%
}

.-mx-3\/2 {
  margin-left: -150%;
  margin-right: -150%
}

.-my-4\/3 {
  margin-top: -133.333%;
  margin-bottom: -133.333%
}

.-mx-4\/3 {
  margin-left: -133.333%;
  margin-right: -133.333%
}

.mt-0 {
  margin-top: 0px
}

.mr-0 {
  margin-right: 0px
}

.mb-0 {
  margin-bottom: 0px
}

.ml-0 {
  margin-left: 0px
}

.mt-1 {
  margin-top: 0.25rem
}

.mr-1 {
  margin-right: 0.25rem
}

.mb-1 {
  margin-bottom: 0.25rem
}

.ml-1 {
  margin-left: 0.25rem
}

.mt-2 {
  margin-top: 0.5rem
}

.mr-2 {
  margin-right: 0.5rem
}

.mb-2 {
  margin-bottom: 0.5rem
}

.ml-2 {
  margin-left: 0.5rem
}

.mt-3 {
  margin-top: 0.75rem
}

.mr-3 {
  margin-right: 0.75rem
}

.mb-3 {
  margin-bottom: 0.75rem
}

.ml-3 {
  margin-left: 0.75rem
}

.mt-4 {
  margin-top: 1rem
}

.mr-4 {
  margin-right: 1rem
}

.mb-4 {
  margin-bottom: 1rem
}

.ml-4 {
  margin-left: 1rem
}

.mt-5 {
  margin-top: 1.25rem
}

.mr-5 {
  margin-right: 1.25rem
}

.mb-5 {
  margin-bottom: 1.25rem
}

.ml-5 {
  margin-left: 1.25rem
}

.mt-6 {
  margin-top: 1.5rem
}

.mr-6 {
  margin-right: 1.5rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.ml-6 {
  margin-left: 1.5rem
}

.mt-7 {
  margin-top: 1.75rem
}

.mr-7 {
  margin-right: 1.75rem
}

.mb-7 {
  margin-bottom: 1.75rem
}

.ml-7 {
  margin-left: 1.75rem
}

.mt-8 {
  margin-top: 2rem
}

.mr-8 {
  margin-right: 2rem
}

.mb-8 {
  margin-bottom: 2rem
}

.ml-8 {
  margin-left: 2rem
}

.mt-9 {
  margin-top: 2.25rem
}

.mr-9 {
  margin-right: 2.25rem
}

.mb-9 {
  margin-bottom: 2.25rem
}

.ml-9 {
  margin-left: 2.25rem
}

.mt-10 {
  margin-top: 2.5rem
}

.mr-10 {
  margin-right: 2.5rem
}

.mb-10 {
  margin-bottom: 2.5rem
}

.ml-10 {
  margin-left: 2.5rem
}

.mt-11 {
  margin-top: 2.75rem
}

.mr-11 {
  margin-right: 2.75rem
}

.mb-11 {
  margin-bottom: 2.75rem
}

.ml-11 {
  margin-left: 2.75rem
}

.mt-12 {
  margin-top: 3rem
}

.mr-12 {
  margin-right: 3rem
}

.mb-12 {
  margin-bottom: 3rem
}

.ml-12 {
  margin-left: 3rem
}

.mt-14 {
  margin-top: 3.5rem
}

.mr-14 {
  margin-right: 3.5rem
}

.mb-14 {
  margin-bottom: 3.5rem
}

.ml-14 {
  margin-left: 3.5rem
}

.mt-16 {
  margin-top: 4rem
}

.mr-16 {
  margin-right: 4rem
}

.mb-16 {
  margin-bottom: 4rem
}

.ml-16 {
  margin-left: 4rem
}

.mt-20 {
  margin-top: 5rem
}

.mr-20 {
  margin-right: 5rem
}

.mb-20 {
  margin-bottom: 5rem
}

.ml-20 {
  margin-left: 5rem
}

.mt-24 {
  margin-top: 6rem
}

.mr-24 {
  margin-right: 6rem
}

.mb-24 {
  margin-bottom: 6rem
}

.ml-24 {
  margin-left: 6rem
}

.mt-28 {
  margin-top: 7rem
}

.mr-28 {
  margin-right: 7rem
}

.mb-28 {
  margin-bottom: 7rem
}

.ml-28 {
  margin-left: 7rem
}

.mt-32 {
  margin-top: 8rem
}

.mr-32 {
  margin-right: 8rem
}

.mb-32 {
  margin-bottom: 8rem
}

.ml-32 {
  margin-left: 8rem
}

.mt-36 {
  margin-top: 9rem
}

.mr-36 {
  margin-right: 9rem
}

.mb-36 {
  margin-bottom: 9rem
}

.ml-36 {
  margin-left: 9rem
}

.mt-40 {
  margin-top: 10rem
}

.mr-40 {
  margin-right: 10rem
}

.mb-40 {
  margin-bottom: 10rem
}

.ml-40 {
  margin-left: 10rem
}

.mt-44 {
  margin-top: 11rem
}

.mr-44 {
  margin-right: 11rem
}

.mb-44 {
  margin-bottom: 11rem
}

.ml-44 {
  margin-left: 11rem
}

.mt-48 {
  margin-top: 12rem
}

.mr-48 {
  margin-right: 12rem
}

.mb-48 {
  margin-bottom: 12rem
}

.ml-48 {
  margin-left: 12rem
}

.mt-52 {
  margin-top: 13rem
}

.mr-52 {
  margin-right: 13rem
}

.mb-52 {
  margin-bottom: 13rem
}

.ml-52 {
  margin-left: 13rem
}

.mt-56 {
  margin-top: 14rem
}

.mr-56 {
  margin-right: 14rem
}

.mb-56 {
  margin-bottom: 14rem
}

.ml-56 {
  margin-left: 14rem
}

.mt-60 {
  margin-top: 15rem
}

.mr-60 {
  margin-right: 15rem
}

.mb-60 {
  margin-bottom: 15rem
}

.ml-60 {
  margin-left: 15rem
}

.mt-64 {
  margin-top: 16rem
}

.mr-64 {
  margin-right: 16rem
}

.mb-64 {
  margin-bottom: 16rem
}

.ml-64 {
  margin-left: 16rem
}

.mt-72 {
  margin-top: 18rem
}

.mr-72 {
  margin-right: 18rem
}

.mb-72 {
  margin-bottom: 18rem
}

.ml-72 {
  margin-left: 18rem
}

.mt-80 {
  margin-top: 20rem
}

.mr-80 {
  margin-right: 20rem
}

.mb-80 {
  margin-bottom: 20rem
}

.ml-80 {
  margin-left: 20rem
}

.mt-96 {
  margin-top: 24rem
}

.mr-96 {
  margin-right: 24rem
}

.mb-96 {
  margin-bottom: 24rem
}

.ml-96 {
  margin-left: 24rem
}

.mt-auto {
  margin-top: auto
}

.mr-auto {
  margin-right: auto
}

.mb-auto {
  margin-bottom: auto
}

.ml-auto {
  margin-left: auto
}

.mt-px {
  margin-top: 1px
}

.mr-px {
  margin-right: 1px
}

.mb-px {
  margin-bottom: 1px
}

.ml-px {
  margin-left: 1px
}

.mt-0\.5 {
  margin-top: 0.125rem
}

.mr-0\.5 {
  margin-right: 0.125rem
}

.mb-0\.5 {
  margin-bottom: 0.125rem
}

.ml-0\.5 {
  margin-left: 0.125rem
}

.mt-1\.5 {
  margin-top: 0.375rem
}

.mr-1\.5 {
  margin-right: 0.375rem
}

.mb-1\.5 {
  margin-bottom: 0.375rem
}

.ml-1\.5 {
  margin-left: 0.375rem
}

.mt-2\.5 {
  margin-top: 0.625rem
}

.mr-2\.5 {
  margin-right: 0.625rem
}

.mb-2\.5 {
  margin-bottom: 0.625rem
}

.ml-2\.5 {
  margin-left: 0.625rem
}

.mt-3\.5 {
  margin-top: 0.875rem
}

.mr-3\.5 {
  margin-right: 0.875rem
}

.mb-3\.5 {
  margin-bottom: 0.875rem
}

.ml-3\.5 {
  margin-left: 0.875rem
}

.mt-2\/3 {
  margin-top: 66.666667%
}

.mr-2\/3 {
  margin-right: 66.666667%
}

.mb-2\/3 {
  margin-bottom: 66.666667%
}

.ml-2\/3 {
  margin-left: 66.666667%
}

.mt-3\/4 {
  margin-top: 75%
}

.mr-3\/4 {
  margin-right: 75%
}

.mb-3\/4 {
  margin-bottom: 75%
}

.ml-3\/4 {
  margin-left: 75%
}

.mt-6\/19 {
  margin-top: 56.25%
}

.mr-6\/19 {
  margin-right: 56.25%
}

.mb-6\/19 {
  margin-bottom: 56.25%
}

.ml-6\/19 {
  margin-left: 56.25%
}

.mt-1\/1 {
  margin-top: 100%
}

.mr-1\/1 {
  margin-right: 100%
}

.mb-1\/1 {
  margin-bottom: 100%
}

.ml-1\/1 {
  margin-left: 100%
}

.mt-3\/2 {
  margin-top: 150%
}

.mr-3\/2 {
  margin-right: 150%
}

.mb-3\/2 {
  margin-bottom: 150%
}

.ml-3\/2 {
  margin-left: 150%
}

.mt-4\/3 {
  margin-top: 133.333%
}

.mr-4\/3 {
  margin-right: 133.333%
}

.mb-4\/3 {
  margin-bottom: 133.333%
}

.ml-4\/3 {
  margin-left: 133.333%
}

.-mt-0 {
  margin-top: 0px
}

.-mr-0 {
  margin-right: 0px
}

.-mb-0 {
  margin-bottom: 0px
}

.-ml-0 {
  margin-left: 0px
}

.-mt-1 {
  margin-top: -0.25rem
}

.-mr-1 {
  margin-right: -0.25rem
}

.-mb-1 {
  margin-bottom: -0.25rem
}

.-ml-1 {
  margin-left: -0.25rem
}

.-mt-2 {
  margin-top: -0.5rem
}

.-mr-2 {
  margin-right: -0.5rem
}

.-mb-2 {
  margin-bottom: -0.5rem
}

.-ml-2 {
  margin-left: -0.5rem
}

.-mt-3 {
  margin-top: -0.75rem
}

.-mr-3 {
  margin-right: -0.75rem
}

.-mb-3 {
  margin-bottom: -0.75rem
}

.-ml-3 {
  margin-left: -0.75rem
}

.-mt-4 {
  margin-top: -1rem
}

.-mr-4 {
  margin-right: -1rem
}

.-mb-4 {
  margin-bottom: -1rem
}

.-ml-4 {
  margin-left: -1rem
}

.-mt-5 {
  margin-top: -1.25rem
}

.-mr-5 {
  margin-right: -1.25rem
}

.-mb-5 {
  margin-bottom: -1.25rem
}

.-ml-5 {
  margin-left: -1.25rem
}

.-mt-6 {
  margin-top: -1.5rem
}

.-mr-6 {
  margin-right: -1.5rem
}

.-mb-6 {
  margin-bottom: -1.5rem
}

.-ml-6 {
  margin-left: -1.5rem
}

.-mt-7 {
  margin-top: -1.75rem
}

.-mr-7 {
  margin-right: -1.75rem
}

.-mb-7 {
  margin-bottom: -1.75rem
}

.-ml-7 {
  margin-left: -1.75rem
}

.-mt-8 {
  margin-top: -2rem
}

.-mr-8 {
  margin-right: -2rem
}

.-mb-8 {
  margin-bottom: -2rem
}

.-ml-8 {
  margin-left: -2rem
}

.-mt-9 {
  margin-top: -2.25rem
}

.-mr-9 {
  margin-right: -2.25rem
}

.-mb-9 {
  margin-bottom: -2.25rem
}

.-ml-9 {
  margin-left: -2.25rem
}

.-mt-10 {
  margin-top: -2.5rem
}

.-mr-10 {
  margin-right: -2.5rem
}

.-mb-10 {
  margin-bottom: -2.5rem
}

.-ml-10 {
  margin-left: -2.5rem
}

.-mt-11 {
  margin-top: -2.75rem
}

.-mr-11 {
  margin-right: -2.75rem
}

.-mb-11 {
  margin-bottom: -2.75rem
}

.-ml-11 {
  margin-left: -2.75rem
}

.-mt-12 {
  margin-top: -3rem
}

.-mr-12 {
  margin-right: -3rem
}

.-mb-12 {
  margin-bottom: -3rem
}

.-ml-12 {
  margin-left: -3rem
}

.-mt-14 {
  margin-top: -3.5rem
}

.-mr-14 {
  margin-right: -3.5rem
}

.-mb-14 {
  margin-bottom: -3.5rem
}

.-ml-14 {
  margin-left: -3.5rem
}

.-mt-16 {
  margin-top: -4rem
}

.-mr-16 {
  margin-right: -4rem
}

.-mb-16 {
  margin-bottom: -4rem
}

.-ml-16 {
  margin-left: -4rem
}

.-mt-20 {
  margin-top: -5rem
}

.-mr-20 {
  margin-right: -5rem
}

.-mb-20 {
  margin-bottom: -5rem
}

.-ml-20 {
  margin-left: -5rem
}

.-mt-24 {
  margin-top: -6rem
}

.-mr-24 {
  margin-right: -6rem
}

.-mb-24 {
  margin-bottom: -6rem
}

.-ml-24 {
  margin-left: -6rem
}

.-mt-28 {
  margin-top: -7rem
}

.-mr-28 {
  margin-right: -7rem
}

.-mb-28 {
  margin-bottom: -7rem
}

.-ml-28 {
  margin-left: -7rem
}

.-mt-32 {
  margin-top: -8rem
}

.-mr-32 {
  margin-right: -8rem
}

.-mb-32 {
  margin-bottom: -8rem
}

.-ml-32 {
  margin-left: -8rem
}

.-mt-36 {
  margin-top: -9rem
}

.-mr-36 {
  margin-right: -9rem
}

.-mb-36 {
  margin-bottom: -9rem
}

.-ml-36 {
  margin-left: -9rem
}

.-mt-40 {
  margin-top: -10rem
}

.-mr-40 {
  margin-right: -10rem
}

.-mb-40 {
  margin-bottom: -10rem
}

.-ml-40 {
  margin-left: -10rem
}

.-mt-44 {
  margin-top: -11rem
}

.-mr-44 {
  margin-right: -11rem
}

.-mb-44 {
  margin-bottom: -11rem
}

.-ml-44 {
  margin-left: -11rem
}

.-mt-48 {
  margin-top: -12rem
}

.-mr-48 {
  margin-right: -12rem
}

.-mb-48 {
  margin-bottom: -12rem
}

.-ml-48 {
  margin-left: -12rem
}

.-mt-52 {
  margin-top: -13rem
}

.-mr-52 {
  margin-right: -13rem
}

.-mb-52 {
  margin-bottom: -13rem
}

.-ml-52 {
  margin-left: -13rem
}

.-mt-56 {
  margin-top: -14rem
}

.-mr-56 {
  margin-right: -14rem
}

.-mb-56 {
  margin-bottom: -14rem
}

.-ml-56 {
  margin-left: -14rem
}

.-mt-60 {
  margin-top: -15rem
}

.-mr-60 {
  margin-right: -15rem
}

.-mb-60 {
  margin-bottom: -15rem
}

.-ml-60 {
  margin-left: -15rem
}

.-mt-64 {
  margin-top: -16rem
}

.-mr-64 {
  margin-right: -16rem
}

.-mb-64 {
  margin-bottom: -16rem
}

.-ml-64 {
  margin-left: -16rem
}

.-mt-72 {
  margin-top: -18rem
}

.-mr-72 {
  margin-right: -18rem
}

.-mb-72 {
  margin-bottom: -18rem
}

.-ml-72 {
  margin-left: -18rem
}

.-mt-80 {
  margin-top: -20rem
}

.-mr-80 {
  margin-right: -20rem
}

.-mb-80 {
  margin-bottom: -20rem
}

.-ml-80 {
  margin-left: -20rem
}

.-mt-96 {
  margin-top: -24rem
}

.-mr-96 {
  margin-right: -24rem
}

.-mb-96 {
  margin-bottom: -24rem
}

.-ml-96 {
  margin-left: -24rem
}

.-mt-px {
  margin-top: -1px
}

.-mr-px {
  margin-right: -1px
}

.-mb-px {
  margin-bottom: -1px
}

.-ml-px {
  margin-left: -1px
}

.-mt-0\.5 {
  margin-top: -0.125rem
}

.-mr-0\.5 {
  margin-right: -0.125rem
}

.-mb-0\.5 {
  margin-bottom: -0.125rem
}

.-ml-0\.5 {
  margin-left: -0.125rem
}

.-mt-1\.5 {
  margin-top: -0.375rem
}

.-mr-1\.5 {
  margin-right: -0.375rem
}

.-mb-1\.5 {
  margin-bottom: -0.375rem
}

.-ml-1\.5 {
  margin-left: -0.375rem
}

.-mt-2\.5 {
  margin-top: -0.625rem
}

.-mr-2\.5 {
  margin-right: -0.625rem
}

.-mb-2\.5 {
  margin-bottom: -0.625rem
}

.-ml-2\.5 {
  margin-left: -0.625rem
}

.-mt-3\.5 {
  margin-top: -0.875rem
}

.-mr-3\.5 {
  margin-right: -0.875rem
}

.-mb-3\.5 {
  margin-bottom: -0.875rem
}

.-ml-3\.5 {
  margin-left: -0.875rem
}

.-mt-2\/3 {
  margin-top: -66.66667%
}

.-mr-2\/3 {
  margin-right: -66.66667%
}

.-mb-2\/3 {
  margin-bottom: -66.66667%
}

.-ml-2\/3 {
  margin-left: -66.66667%
}

.-mt-3\/4 {
  margin-top: -75%
}

.-mr-3\/4 {
  margin-right: -75%
}

.-mb-3\/4 {
  margin-bottom: -75%
}

.-ml-3\/4 {
  margin-left: -75%
}

.-mt-6\/19 {
  margin-top: -56.25%
}

.-mr-6\/19 {
  margin-right: -56.25%
}

.-mb-6\/19 {
  margin-bottom: -56.25%
}

.-ml-6\/19 {
  margin-left: -56.25%
}

.-mt-1\/1 {
  margin-top: -100%
}

.-mr-1\/1 {
  margin-right: -100%
}

.-mb-1\/1 {
  margin-bottom: -100%
}

.-ml-1\/1 {
  margin-left: -100%
}

.-mt-3\/2 {
  margin-top: -150%
}

.-mr-3\/2 {
  margin-right: -150%
}

.-mb-3\/2 {
  margin-bottom: -150%
}

.-ml-3\/2 {
  margin-left: -150%
}

.-mt-4\/3 {
  margin-top: -133.333%
}

.-mr-4\/3 {
  margin-right: -133.333%
}

.-mb-4\/3 {
  margin-bottom: -133.333%
}

.-ml-4\/3 {
  margin-left: -133.333%
}

.max-h-0 {
  max-height: 0px
}

.max-h-1 {
  max-height: 0.25rem
}

.max-h-2 {
  max-height: 0.5rem
}

.max-h-3 {
  max-height: 0.75rem
}

.max-h-4 {
  max-height: 1rem
}

.max-h-5 {
  max-height: 1.25rem
}

.max-h-6 {
  max-height: 1.5rem
}

.max-h-7 {
  max-height: 1.75rem
}

.max-h-8 {
  max-height: 2rem
}

.max-h-9 {
  max-height: 2.25rem
}

.max-h-10 {
  max-height: 2.5rem
}

.max-h-11 {
  max-height: 2.75rem
}

.max-h-12 {
  max-height: 3rem
}

.max-h-14 {
  max-height: 3.5rem
}

.max-h-16 {
  max-height: 4rem
}

.max-h-20 {
  max-height: 5rem
}

.max-h-24 {
  max-height: 6rem
}

.max-h-28 {
  max-height: 7rem
}

.max-h-32 {
  max-height: 8rem
}

.max-h-36 {
  max-height: 9rem
}

.max-h-40 {
  max-height: 10rem
}

.max-h-44 {
  max-height: 11rem
}

.max-h-48 {
  max-height: 12rem
}

.max-h-52 {
  max-height: 13rem
}

.max-h-56 {
  max-height: 14rem
}

.max-h-60 {
  max-height: 15rem
}

.max-h-64 {
  max-height: 16rem
}

.max-h-72 {
  max-height: 18rem
}

.max-h-80 {
  max-height: 20rem
}

.max-h-96 {
  max-height: 24rem
}

.max-h-px {
  max-height: 1px
}

.max-h-0\.5 {
  max-height: 0.125rem
}

.max-h-1\.5 {
  max-height: 0.375rem
}

.max-h-2\.5 {
  max-height: 0.625rem
}

.max-h-3\.5 {
  max-height: 0.875rem
}

.max-h-2\/3 {
  max-height: 66.666667%
}

.max-h-3\/4 {
  max-height: 75%
}

.max-h-6\/19 {
  max-height: 56.25%
}

.max-h-1\/1 {
  max-height: 100%
}

.max-h-3\/2 {
  max-height: 150%
}

.max-h-4\/3 {
  max-height: 133.333%
}

.max-h-full {
  max-height: 100%
}

.max-h-screen {
  max-height: 100vh
}

.max-w-0 {
  max-width: 0rem
}

.max-w-none {
  max-width: none
}

.max-w-xs {
  max-width: 20rem
}

.max-w-sm {
  max-width: 24rem
}

.max-w-md {
  max-width: 28rem
}

.max-w-lg {
  max-width: 32rem
}

.max-w-xl {
  max-width: 36rem
}

.max-w-2xl {
  max-width: 42rem
}

.max-w-3xl {
  max-width: 48rem
}

.max-w-4xl {
  max-width: 56rem
}

.max-w-5xl {
  max-width: 64rem
}

.max-w-6xl {
  max-width: 72rem
}

.max-w-7xl {
  max-width: 80rem
}

.max-w-full {
  max-width: 100%
}

.max-w-min {
  max-width: min-content
}

.max-w-max {
  max-width: max-content
}

.max-w-prose {
  max-width: 65ch
}

.max-w-screen-tb {
  max-width: 768px
}

.max-w-screen-ds {
  max-width: 992px
}

.min-h-0 {
  min-height: 0px
}

.min-h-full {
  min-height: 100%
}

.min-h-screen {
  min-height: 100vh
}

.min-w-0 {
  min-width: 0px
}

.min-w-full {
  min-width: 100%
}

.min-w-min {
  min-width: min-content
}

.min-w-max {
  min-width: max-content
}

.object-contain {
  object-fit: contain
}

.object-cover {
  object-fit: cover;
  object-position: left;
}

.object-fill {
  object-fit: fill
}

.object-none {
  object-fit: none
}

.object-scale-down {
  object-fit: scale-down
}

.object-bottom {
  object-position: bottom
}

.object-center {
  object-position: center
}

.object-left {
  object-position: left
}

.object-left-bottom {
  object-position: left bottom
}

.object-left-top {
  object-position: left top
}

.object-right {
  object-position: right
}

.object-right-bottom {
  object-position: right bottom
}

.object-right-top {
  object-position: right top
}

.object-top {
  object-position: top
}

.opacity-0 {
  opacity: 0
}

.opacity-5 {
  opacity: 0.05
}

.opacity-10 {
  opacity: 0.1
}

.opacity-20 {
  opacity: 0.2
}

.opacity-25 {
  opacity: 0.25
}

.opacity-30 {
  opacity: 0.3
}

.opacity-40 {
  opacity: 0.4
}

.opacity-50 {
  opacity: 0.5
}

.opacity-60 {
  opacity: 0.6
}

.opacity-70 {
  opacity: 0.7
}

.opacity-75 {
  opacity: 0.75
}

.opacity-80 {
  opacity: 0.8
}

.opacity-90 {
  opacity: 0.9
}

.opacity-95 {
  opacity: 0.95
}

.opacity-100 {
  opacity: 1
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.outline-white {
  outline: 2px dotted white;
  outline-offset: 2px
}

.outline-black {
  outline: 2px dotted black;
  outline-offset: 2px
}

.overflow-auto {
  overflow: auto
}

.overflow-hidden {
  overflow: hidden
}

.overflow-visible {
  overflow: visible
}

.overflow-scroll {
  overflow: scroll
}

.overflow-x-auto {
  overflow-x: auto
}

.overflow-y-auto {
  overflow-y: auto
}

.overflow-x-hidden {
  overflow-x: hidden
}

.overflow-y-hidden {
  overflow-y: hidden
}

.overflow-x-visible {
  overflow-x: visible
}

.overflow-y-visible {
  overflow-y: visible
}

.overflow-x-scroll {
  overflow-x: scroll
}

.overflow-y-scroll {
  overflow-y: scroll
}

.overscroll-auto {
  overscroll-behavior: auto
}

.overscroll-contain {
  overscroll-behavior: contain
}

.overscroll-none {
  overscroll-behavior: none
}

.overscroll-y-auto {
  overscroll-behavior-y: auto
}

.overscroll-y-contain {
  overscroll-behavior-y: contain
}

.overscroll-y-none {
  overscroll-behavior-y: none
}

.overscroll-x-auto {
  overscroll-behavior-x: auto
}

.overscroll-x-contain {
  overscroll-behavior-x: contain
}

.overscroll-x-none {
  overscroll-behavior-x: none
}

.p-0 {
  padding: 0px
}

.p-1 {
  padding: 0.25rem
}

.p-2 {
  padding: 0.5rem
}

.p-3 {
  padding: 0.75rem
}

.p-4 {
  padding: 1rem
}

.p-5 {
  padding: 1.25rem
}

.p-6 {
  padding: 1.5rem
}

.p-7 {
  padding: 1.75rem
}

.p-8 {
  padding: 2rem
}

.p-9 {
  padding: 2.25rem
}

.p-10 {
  padding: 2.5rem
}

.p-11 {
  padding: 2.75rem
}

.p-12 {
  padding: 3rem
}

.p-14 {
  padding: 3.5rem
}

.p-16 {
  padding: 4rem
}

.p-20 {
  padding: 5rem
}

.p-24 {
  padding: 6rem
}

.p-28 {
  padding: 7rem
}

.p-32 {
  padding: 8rem
}

.p-36 {
  padding: 9rem
}

.p-40 {
  padding: 10rem
}

.p-44 {
  padding: 11rem
}

.p-48 {
  padding: 12rem
}

.p-52 {
  padding: 13rem
}

.p-56 {
  padding: 14rem
}

.p-60 {
  padding: 15rem
}

.p-64 {
  padding: 16rem
}

.p-72 {
  padding: 18rem
}

.p-80 {
  padding: 20rem
}

.p-96 {
  padding: 24rem
}

.p-px {
  padding: 1px
}

.p-0\.5 {
  padding: 0.125rem
}

.p-1\.5 {
  padding: 0.375rem
}

.p-2\.5 {
  padding: 0.625rem
}

.p-3\.5 {
  padding: 0.875rem
}

.p-2\/3 {
  padding: 66.666667%
}

.p-3\/4 {
  padding: 75%
}

.p-6\/19 {
  padding: 56.25%
}

.p-1\/1 {
  padding: 100%
}

.p-3\/2 {
  padding: 150%
}

.p-4\/3 {
  padding: 133.333%
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-11 {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem
}

.px-11 {
  padding-left: 2.75rem;
  padding-right: 2.75rem
}

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

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

.py-14 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem
}

.px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-44 {
  padding-top: 11rem;
  padding-bottom: 11rem
}

.px-44 {
  padding-left: 11rem;
  padding-right: 11rem
}

.py-48 {
  padding-top: 12rem;
  padding-bottom: 12rem
}

.px-48 {
  padding-left: 12rem;
  padding-right: 12rem
}

.py-52 {
  padding-top: 13rem;
  padding-bottom: 13rem
}

.px-52 {
  padding-left: 13rem;
  padding-right: 13rem
}

.py-56 {
  padding-top: 14rem;
  padding-bottom: 14rem
}

.px-56 {
  padding-left: 14rem;
  padding-right: 14rem
}

.py-60 {
  padding-top: 15rem;
  padding-bottom: 15rem
}

.px-60 {
  padding-left: 15rem;
  padding-right: 15rem
}

.py-64 {
  padding-top: 16rem;
  padding-bottom: 16rem
}

.px-64 {
  padding-left: 16rem;
  padding-right: 16rem
}

.py-72 {
  padding-top: 18rem;
  padding-bottom: 18rem
}

.px-72 {
  padding-left: 18rem;
  padding-right: 18rem
}

.py-80 {
  padding-top: 20rem;
  padding-bottom: 20rem
}

.px-80 {
  padding-left: 20rem;
  padding-right: 20rem
}

.py-96 {
  padding-top: 24rem;
  padding-bottom: 24rem
}

.px-96 {
  padding-left: 24rem;
  padding-right: 24rem
}

.py-px {
  padding-top: 1px;
  padding-bottom: 1px
}

.px-px {
  padding-left: 1px;
  padding-right: 1px
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem
}

.px-0\.5 {
  padding-left: 0.125rem;
  padding-right: 0.125rem
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem
}

.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem
}

.py-2\/3 {
  padding-top: 66.666667%;
  padding-bottom: 66.666667%
}

.px-2\/3 {
  padding-left: 66.666667%;
  padding-right: 66.666667%
}

.py-3\/4 {
  padding-top: 75%;
  padding-bottom: 75%
}

.px-3\/4 {
  padding-left: 75%;
  padding-right: 75%
}

.py-6\/19 {
  padding-top: 56.25%;
  padding-bottom: 56.25%
}

.px-6\/19 {
  padding-left: 56.25%;
  padding-right: 56.25%
}

.py-1\/1 {
  padding-top: 100%;
  padding-bottom: 100%
}

.px-1\/1 {
  padding-left: 100%;
  padding-right: 100%
}

.py-3\/2 {
  padding-top: 150%;
  padding-bottom: 150%
}

.px-3\/2 {
  padding-left: 150%;
  padding-right: 150%
}

.py-4\/3 {
  padding-top: 133.333%;
  padding-bottom: 133.333%
}

.px-4\/3 {
  padding-left: 133.333%;
  padding-right: 133.333%
}

.pt-0 {
  padding-top: 0px
}

.pr-0 {
  padding-right: 0px
}

.pb-0 {
  padding-bottom: 0px
}

.pl-0 {
  padding-left: 0px
}

.pt-1 {
  padding-top: 0.25rem
}

.pr-1 {
  padding-right: 0.25rem
}

.pb-1 {
  padding-bottom: 0.25rem
}

.pl-1 {
  padding-left: 0.25rem
}

.pt-2 {
  padding-top: 0.5rem
}

.pr-2 {
  padding-right: 0.5rem
}

.pb-2 {
  padding-bottom: 0.5rem
}

.pl-2 {
  padding-left: 0.5rem
}

.pt-3 {
  padding-top: 0.75rem
}

.pr-3 {
  padding-right: 0.75rem
}

.pb-3 {
  padding-bottom: 0.75rem
}

.pl-3 {
  padding-left: 0.75rem
}

.pt-4 {
  padding-top: 1rem
}

.pr-4 {
  padding-right: 1rem
}

.pb-4 {
  padding-bottom: 1rem
}

.pl-4 {
  padding-left: 1rem
}

.pt-5 {
  padding-top: 1.25rem
}

.pr-5 {
  padding-right: 1.25rem
}

.pb-5 {
  padding-bottom: 1.25rem
}

.pl-5 {
  padding-left: 1.25rem
}

.pt-6 {
  padding-top: 1.5rem
}

.pr-6 {
  padding-right: 1.5rem
}

.pb-6 {
  padding-bottom: 1.5rem
}

.pl-6 {
  padding-left: 1.5rem
}

.pt-7 {
  padding-top: 1.75rem
}

.pr-7 {
  padding-right: 1.75rem
}

.pb-7 {
  padding-bottom: 1.75rem
}

.pl-7 {
  padding-left: 1.75rem
}

.pt-8 {
  padding-top: 2rem
}

.pr-8 {
  padding-right: 2rem
}

.pb-8 {
  padding-bottom: 2rem
}

.pl-8 {
  padding-left: 2rem
}

.pt-9 {
  padding-top: 2.25rem
}

.pr-9 {
  padding-right: 2.25rem
}

.pb-9 {
  padding-bottom: 2.25rem
}

.pl-9 {
  padding-left: 2.25rem
}

.pt-10 {
  padding-top: 2.5rem
}

.pr-10 {
  padding-right: 2.5rem
}

.pb-10 {
  padding-bottom: 2.5rem
}

.pl-10 {
  padding-left: 2.5rem
}

.pt-11 {
  padding-top: 2.75rem
}

.pr-11 {
  padding-right: 2.75rem
}

.pb-11 {
  padding-bottom: 2.75rem
}

.pl-11 {
  padding-left: 2.75rem
}

.pt-12 {
  padding-top: 3rem
}

.pr-12 {
  padding-right: 3rem
}

.pb-12 {
  padding-bottom: 3rem
}

.pl-12 {
  padding-left: 3rem
}

.pt-14 {
  padding-top: 3.5rem
}

.pr-14 {
  padding-right: 3.5rem
}

.pb-14 {
  padding-bottom: 3.5rem
}

.pl-14 {
  padding-left: 3.5rem
}

.pt-16 {
  padding-top: 4rem
}

.pr-16 {
  padding-right: 4rem
}

.pb-16 {
  padding-bottom: 4rem
}

.pl-16 {
  padding-left: 4rem
}

.pt-20 {
  padding-top: 5rem
}

.pr-20 {
  padding-right: 5rem
}

.pb-20 {
  padding-bottom: 5rem
}

.pl-20 {
  padding-left: 5rem
}

.pt-24 {
  padding-top: 6rem
}

.pr-24 {
  padding-right: 6rem
}

.pb-24 {
  padding-bottom: 6rem
}

.pl-24 {
  padding-left: 6rem
}

.pt-28 {
  padding-top: 7rem
}

.pr-28 {
  padding-right: 7rem
}

.pb-28 {
  padding-bottom: 7rem
}

.pl-28 {
  padding-left: 7rem
}

.pt-32 {
  padding-top: 8rem
}

.pr-32 {
  padding-right: 8rem
}

.pb-32 {
  padding-bottom: 8rem
}

.pl-32 {
  padding-left: 8rem
}

.pt-36 {
  padding-top: 9rem
}

.pr-36 {
  padding-right: 9rem
}

.pb-36 {
  padding-bottom: 9rem
}

.pl-36 {
  padding-left: 9rem
}

.pt-40 {
  padding-top: 10rem
}

.pr-40 {
  padding-right: 10rem
}

.pb-40 {
  padding-bottom: 10rem
}

.pl-40 {
  padding-left: 10rem
}

.pt-44 {
  padding-top: 11rem
}

.pr-44 {
  padding-right: 11rem
}

.pb-44 {
  padding-bottom: 11rem
}

.pl-44 {
  padding-left: 11rem
}

.pt-48 {
  padding-top: 12rem
}

.pr-48 {
  padding-right: 12rem
}

.pb-48 {
  padding-bottom: 12rem
}

.pl-48 {
  padding-left: 12rem
}

.pt-52 {
  padding-top: 13rem
}

.pr-52 {
  padding-right: 13rem
}

.pb-52 {
  padding-bottom: 13rem
}

.pl-52 {
  padding-left: 13rem
}

.pt-56 {
  padding-top: 14rem
}

.pr-56 {
  padding-right: 14rem
}

.pb-56 {
  padding-bottom: 14rem
}

.pl-56 {
  padding-left: 14rem
}

.pt-60 {
  padding-top: 15rem
}

.pr-60 {
  padding-right: 15rem
}

.pb-60 {
  padding-bottom: 15rem
}

.pl-60 {
  padding-left: 15rem
}

.pt-64 {
  padding-top: 16rem
}

.pr-64 {
  padding-right: 16rem
}

.pb-64 {
  padding-bottom: 16rem
}

.pl-64 {
  padding-left: 16rem
}

.pt-72 {
  padding-top: 18rem
}

.pr-72 {
  padding-right: 18rem
}

.pb-72 {
  padding-bottom: 18rem
}

.pl-72 {
  padding-left: 18rem
}

.pt-80 {
  padding-top: 20rem
}

.pr-80 {
  padding-right: 20rem
}

.pb-80 {
  padding-bottom: 20rem
}

.pl-80 {
  padding-left: 20rem
}

.pt-96 {
  padding-top: 24rem
}

.pr-96 {
  padding-right: 24rem
}

.pb-96 {
  padding-bottom: 24rem
}

.pl-96 {
  padding-left: 24rem
}

.pt-px {
  padding-top: 1px
}

.pr-px {
  padding-right: 1px
}

.pb-px {
  padding-bottom: 1px
}

.pl-px {
  padding-left: 1px
}

.pt-0\.5 {
  padding-top: 0.125rem
}

.pr-0\.5 {
  padding-right: 0.125rem
}

.pb-0\.5 {
  padding-bottom: 0.125rem
}

.pl-0\.5 {
  padding-left: 0.125rem
}

.pt-1\.5 {
  padding-top: 0.375rem
}

.pr-1\.5 {
  padding-right: 0.375rem
}

.pb-1\.5 {
  padding-bottom: 0.375rem
}

.pl-1\.5 {
  padding-left: 0.375rem
}

.pt-2\.5 {
  padding-top: 0.625rem
}

.pr-2\.5 {
  padding-right: 0.625rem
}

.pb-2\.5 {
  padding-bottom: 0.625rem
}

.pl-2\.5 {
  padding-left: 0.625rem
}

.pt-3\.5 {
  padding-top: 0.875rem
}

.pr-3\.5 {
  padding-right: 0.875rem
}

.pb-3\.5 {
  padding-bottom: 0.875rem
}

.pl-3\.5 {
  padding-left: 0.875rem
}

.pt-2\/3 {
  padding-top: 66.666667%
}

.pr-2\/3 {
  padding-right: 66.666667%
}

.pb-2\/3 {
  padding-bottom: 66.666667%
}

.pl-2\/3 {
  padding-left: 66.666667%
}

.pt-3\/4 {
  padding-top: 75%
}

.pr-3\/4 {
  padding-right: 75%
}

.pb-3\/4 {
  padding-bottom: 75%
}

.pl-3\/4 {
  padding-left: 75%
}

.pt-6\/19 {
  padding-top: 56.25%
}

.pr-6\/19 {
  padding-right: 56.25%
}

.pb-6\/19 {
  padding-bottom: 56.25%
}

.pl-6\/19 {
  padding-left: 56.25%
}

.pt-1\/1 {
  padding-top: 100%
}

.pr-1\/1 {
  padding-right: 100%
}

.pb-1\/1 {
  padding-bottom: 100%
}

.pl-1\/1 {
  padding-left: 100%
}

.pt-3\/2 {
  padding-top: 150%
}

.pr-3\/2 {
  padding-right: 150%
}

.pb-3\/2 {
  padding-bottom: 150%
}

.pl-3\/2 {
  padding-left: 150%
}

.pt-4\/3 {
  padding-top: 133.333%
}

.pr-4\/3 {
  padding-right: 133.333%
}

.pb-4\/3 {
  padding-bottom: 133.333%
}

.pl-4\/3 {
  padding-left: 133.333%
}

.placeholder-current::placeholder {
  color: currentColor
}

.placeholder-base-50::placeholder {
  color: #878787
}

.placeholder-base-100::placeholder {
  color: #787878
}

.placeholder-base-200::placeholder {
  color: #5a5a5a
}

.placeholder-base-300::placeholder {
  color: #3c3c3c
}

.placeholder-base-400::placeholder {
  color: #1e1e1e
}

.placeholder-base-500::placeholder {
  color: #000000
}

.placeholder-base-600::placeholder {
  color: #000000
}

.placeholder-base-700::placeholder {
  color: #000000
}

.placeholder-base-800::placeholder {
  color: #000000
}

.placeholder-base-900::placeholder {
  color: #000000
}

.placeholder-base::placeholder {
  color: #000000
}

.placeholder-default-50::placeholder {
  color: #878787
}

.placeholder-default-100::placeholder {
  color: #787878
}

.placeholder-default-200::placeholder {
  color: #5a5a5a
}

.placeholder-default-300::placeholder {
  color: #3c3c3c
}

.placeholder-default-400::placeholder {
  color: #1e1e1e
}

.placeholder-default-500::placeholder {
  color: #000000
}

.placeholder-default-600::placeholder {
  color: #000000
}

.placeholder-default-700::placeholder {
  color: #000000
}

.placeholder-default-800::placeholder {
  color: #000000
}

.placeholder-default-900::placeholder {
  color: #000000
}

.placeholder-default::placeholder {
  color: #000000
}

.placeholder-primary-50::placeholder {
  color: #ffffb7
}

.placeholder-primary-100::placeholder {
  color: #ffffa8
}

.placeholder-primary-200::placeholder {
  color: #ffff8a
}

.placeholder-primary-300::placeholder {
  color: #ffeb6c
}

.placeholder-primary-400::placeholder {
  color: #ffcd4e
}

.placeholder-primary-500::placeholder {
  color: #FDAF30
}

.placeholder-primary-600::placeholder {
  color: #df9112
}

.placeholder-primary-700::placeholder {
  color: #c17300
}

.placeholder-primary-800::placeholder {
  color: #a35500
}

.placeholder-primary-900::placeholder {
  color: #853700
}

.placeholder-primary::placeholder {
  color: #FDAF30
}

.placeholder-secondary-50::placeholder {
  color: #ffffff
}

.placeholder-secondary-100::placeholder {
  color: #ffffff
}

.placeholder-secondary-200::placeholder {
  color: #ffffff
}

.placeholder-secondary-300::placeholder {
  color: #ffffff
}

.placeholder-secondary-400::placeholder {
  color: #ffffff
}

.placeholder-secondary-500::placeholder {
  color: #f2f2f2
}

.placeholder-secondary-600::placeholder {
  color: #d4d4d4
}

.placeholder-secondary-700::placeholder {
  color: #b6b6b6
}

.placeholder-secondary-800::placeholder {
  color: #989898
}

.placeholder-secondary-900::placeholder {
  color: #7a7a7a
}

.placeholder-secondary::placeholder {
  color: #f2f2f2
}

.placeholder-tertiary-50::placeholder {
  color: 
}

.placeholder-tertiary-100::placeholder {
  color: 
}

.placeholder-tertiary-200::placeholder {
  color: 
}

.placeholder-tertiary-300::placeholder {
  color: 
}

.placeholder-tertiary-400::placeholder {
  color: 
}

.placeholder-tertiary-500::placeholder {
  color: 
}

.placeholder-tertiary-600::placeholder {
  color: 
}

.placeholder-tertiary-700::placeholder {
  color: 
}

.placeholder-tertiary-800::placeholder {
  color: 
}

.placeholder-tertiary-900::placeholder {
  color: 
}

.placeholder-tertiary::placeholder {
  color: 
}

.placeholder-success-50::placeholder {
  color: 
}

.placeholder-success-100::placeholder {
  color: 
}

.placeholder-success-200::placeholder {
  color: 
}

.placeholder-success-300::placeholder {
  color: 
}

.placeholder-success-400::placeholder {
  color: 
}

.placeholder-success-500::placeholder {
  color: 
}

.placeholder-success-600::placeholder {
  color: 
}

.placeholder-success-700::placeholder {
  color: 
}

.placeholder-success-800::placeholder {
  color: 
}

.placeholder-success-900::placeholder {
  color: 
}

.placeholder-success::placeholder {
  color: 
}

.placeholder-warning-50::placeholder {
  color: 
}

.placeholder-warning-100::placeholder {
  color: 
}

.placeholder-warning-200::placeholder {
  color: 
}

.placeholder-warning-300::placeholder {
  color: 
}

.placeholder-warning-400::placeholder {
  color: 
}

.placeholder-warning-500::placeholder {
  color: 
}

.placeholder-warning-600::placeholder {
  color: 
}

.placeholder-warning-700::placeholder {
  color: 
}

.placeholder-warning-800::placeholder {
  color: 
}

.placeholder-warning-900::placeholder {
  color: 
}

.placeholder-warning::placeholder {
  color: 
}

.placeholder-danger-50::placeholder {
  color: 
}

.placeholder-danger-100::placeholder {
  color: 
}

.placeholder-danger-200::placeholder {
  color: 
}

.placeholder-danger-300::placeholder {
  color: 
}

.placeholder-danger-400::placeholder {
  color: 
}

.placeholder-danger-500::placeholder {
  color: 
}

.placeholder-danger-600::placeholder {
  color: 
}

.placeholder-danger-700::placeholder {
  color: 
}

.placeholder-danger-800::placeholder {
  color: 
}

.placeholder-danger-900::placeholder {
  color: 
}

.placeholder-danger::placeholder {
  color: 
}

.placeholder-gray-50::placeholder {
  color: #F9FAFB
}

.placeholder-gray-100::placeholder {
  color: #F3F4F6
}

.placeholder-gray-200::placeholder {
  color: #E5E7EB
}

.placeholder-gray-300::placeholder {
  color: #D1D5DB
}

.placeholder-gray-400::placeholder {
  color: #9CA3AF
}

.placeholder-gray-500::placeholder {
  color: #6B7280
}

.placeholder-gray-600::placeholder {
  color: #4B5563
}

.placeholder-gray-700::placeholder {
  color: #374151
}

.placeholder-gray-800::placeholder {
  color: #1F2937
}

.placeholder-gray-900::placeholder {
  color: #111827
}

.placeholder-gray::placeholder {
  color: #6B7280
}

.placeholder-dark-50::placeholder {
  color: #ffffff
}

.placeholder-dark-100::placeholder {
  color: #ffffff
}

.placeholder-dark-200::placeholder {
  color: #ffffff
}

.placeholder-dark-300::placeholder {
  color: #ffffff
}

.placeholder-dark-400::placeholder {
  color: #ffffff
}

.placeholder-dark-500::placeholder {
  color: #f8efe5
}

.placeholder-dark-600::placeholder {
  color: #dad1c7
}

.placeholder-dark-700::placeholder {
  color: #bcb3a9
}

.placeholder-dark-800::placeholder {
  color: #9e958b
}

.placeholder-dark-900::placeholder {
  color: #80776d
}

.placeholder-dark::placeholder {
  color: #f8efe5
}

.placeholder-white-50::placeholder {
  color: #ffffff
}

.placeholder-white-100::placeholder {
  color: #ffffff
}

.placeholder-white-200::placeholder {
  color: #ffffff
}

.placeholder-white-300::placeholder {
  color: #ffffff
}

.placeholder-white-400::placeholder {
  color: #ffffff
}

.placeholder-white-500::placeholder {
  color: #ffffff
}

.placeholder-white-600::placeholder {
  color: #ffffff
}

.placeholder-white-700::placeholder {
  color: #ffffff
}

.placeholder-white-800::placeholder {
  color: #ffffff
}

.placeholder-white-900::placeholder {
  color: #ffffff
}

.placeholder-white::placeholder {
  color: #ffffff
}

.pointer-events-none {
  pointer-events: none
}

.pointer-events-auto {
  pointer-events: auto
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px
}

.inset-1 {
  top: 0.25rem;
  right: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem
}

.inset-2 {
  top: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  left: 0.5rem
}

.inset-3 {
  top: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem
}

.inset-4 {
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem
}

.inset-5 {
  top: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem
}

.inset-6 {
  top: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem
}

.inset-7 {
  top: 1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  left: 1.75rem
}

.inset-8 {
  top: 2rem;
  right: 2rem;
  bottom: 2rem;
  left: 2rem
}

.inset-9 {
  top: 2.25rem;
  right: 2.25rem;
  bottom: 2.25rem;
  left: 2.25rem
}

.inset-10 {
  top: 2.5rem;
  right: 2.5rem;
  bottom: 2.5rem;
  left: 2.5rem
}

.inset-11 {
  top: 2.75rem;
  right: 2.75rem;
  bottom: 2.75rem;
  left: 2.75rem
}

.inset-12 {
  top: 3rem;
  right: 3rem;
  bottom: 3rem;
  left: 3rem
}

.inset-14 {
  top: 3.5rem;
  right: 3.5rem;
  bottom: 3.5rem;
  left: 3.5rem
}

.inset-16 {
  top: 4rem;
  right: 4rem;
  bottom: 4rem;
  left: 4rem
}

.inset-20 {
  top: 5rem;
  right: 5rem;
  bottom: 5rem;
  left: 5rem
}

.inset-24 {
  top: 6rem;
  right: 6rem;
  bottom: 6rem;
  left: 6rem
}

.inset-28 {
  top: 7rem;
  right: 7rem;
  bottom: 7rem;
  left: 7rem
}

.inset-32 {
  top: 8rem;
  right: 8rem;
  bottom: 8rem;
  left: 8rem
}

.inset-36 {
  top: 9rem;
  right: 9rem;
  bottom: 9rem;
  left: 9rem
}

.inset-40 {
  top: 10rem;
  right: 10rem;
  bottom: 10rem;
  left: 10rem
}

.inset-44 {
  top: 11rem;
  right: 11rem;
  bottom: 11rem;
  left: 11rem
}

.inset-48 {
  top: 12rem;
  right: 12rem;
  bottom: 12rem;
  left: 12rem
}

.inset-52 {
  top: 13rem;
  right: 13rem;
  bottom: 13rem;
  left: 13rem
}

.inset-56 {
  top: 14rem;
  right: 14rem;
  bottom: 14rem;
  left: 14rem
}

.inset-60 {
  top: 15rem;
  right: 15rem;
  bottom: 15rem;
  left: 15rem
}

.inset-64 {
  top: 16rem;
  right: 16rem;
  bottom: 16rem;
  left: 16rem
}

.inset-72 {
  top: 18rem;
  right: 18rem;
  bottom: 18rem;
  left: 18rem
}

.inset-80 {
  top: 20rem;
  right: 20rem;
  bottom: 20rem;
  left: 20rem
}

.inset-96 {
  top: 24rem;
  right: 24rem;
  bottom: 24rem;
  left: 24rem
}

.inset-auto {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}

.inset-px {
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: 1px
}

.inset-0\.5 {
  top: 0.125rem;
  right: 0.125rem;
  bottom: 0.125rem;
  left: 0.125rem
}

.inset-1\.5 {
  top: 0.375rem;
  right: 0.375rem;
  bottom: 0.375rem;
  left: 0.375rem
}

.inset-2\.5 {
  top: 0.625rem;
  right: 0.625rem;
  bottom: 0.625rem;
  left: 0.625rem
}

.inset-3\.5 {
  top: 0.875rem;
  right: 0.875rem;
  bottom: 0.875rem;
  left: 0.875rem
}

.inset-2\/3 {
  top: 66.666667%;
  right: 66.666667%;
  bottom: 66.666667%;
  left: 66.666667%
}

.inset-3\/4 {
  top: 75%;
  right: 75%;
  bottom: 75%;
  left: 75%
}

.inset-6\/19 {
  top: 56.25%;
  right: 56.25%;
  bottom: 56.25%;
  left: 56.25%
}

.inset-1\/1 {
  top: 100%;
  right: 100%;
  bottom: 100%;
  left: 100%
}

.inset-3\/2 {
  top: 150%;
  right: 150%;
  bottom: 150%;
  left: 150%
}

.inset-4\/3 {
  top: 133.333%;
  right: 133.333%;
  bottom: 133.333%;
  left: 133.333%
}

.-inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px
}

.-inset-1 {
  top: -0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  left: -0.25rem
}

.-inset-2 {
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem
}

.-inset-3 {
  top: -0.75rem;
  right: -0.75rem;
  bottom: -0.75rem;
  left: -0.75rem
}

.-inset-4 {
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem
}

.-inset-5 {
  top: -1.25rem;
  right: -1.25rem;
  bottom: -1.25rem;
  left: -1.25rem
}

.-inset-6 {
  top: -1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  left: -1.5rem
}

.-inset-7 {
  top: -1.75rem;
  right: -1.75rem;
  bottom: -1.75rem;
  left: -1.75rem
}

.-inset-8 {
  top: -2rem;
  right: -2rem;
  bottom: -2rem;
  left: -2rem
}

.-inset-9 {
  top: -2.25rem;
  right: -2.25rem;
  bottom: -2.25rem;
  left: -2.25rem
}

.-inset-10 {
  top: -2.5rem;
  right: -2.5rem;
  bottom: -2.5rem;
  left: -2.5rem
}

.-inset-11 {
  top: -2.75rem;
  right: -2.75rem;
  bottom: -2.75rem;
  left: -2.75rem
}

.-inset-12 {
  top: -3rem;
  right: -3rem;
  bottom: -3rem;
  left: -3rem
}

.-inset-14 {
  top: -3.5rem;
  right: -3.5rem;
  bottom: -3.5rem;
  left: -3.5rem
}

.-inset-16 {
  top: -4rem;
  right: -4rem;
  bottom: -4rem;
  left: -4rem
}

.-inset-20 {
  top: -5rem;
  right: -5rem;
  bottom: -5rem;
  left: -5rem
}

.-inset-24 {
  top: -6rem;
  right: -6rem;
  bottom: -6rem;
  left: -6rem
}

.-inset-28 {
  top: -7rem;
  right: -7rem;
  bottom: -7rem;
  left: -7rem
}

.-inset-32 {
  top: -8rem;
  right: -8rem;
  bottom: -8rem;
  left: -8rem
}

.-inset-36 {
  top: -9rem;
  right: -9rem;
  bottom: -9rem;
  left: -9rem
}

.-inset-40 {
  top: -10rem;
  right: -10rem;
  bottom: -10rem;
  left: -10rem
}

.-inset-44 {
  top: -11rem;
  right: -11rem;
  bottom: -11rem;
  left: -11rem
}

.-inset-48 {
  top: -12rem;
  right: -12rem;
  bottom: -12rem;
  left: -12rem
}

.-inset-52 {
  top: -13rem;
  right: -13rem;
  bottom: -13rem;
  left: -13rem
}

.-inset-56 {
  top: -14rem;
  right: -14rem;
  bottom: -14rem;
  left: -14rem
}

.-inset-60 {
  top: -15rem;
  right: -15rem;
  bottom: -15rem;
  left: -15rem
}

.-inset-64 {
  top: -16rem;
  right: -16rem;
  bottom: -16rem;
  left: -16rem
}

.-inset-72 {
  top: -18rem;
  right: -18rem;
  bottom: -18rem;
  left: -18rem
}

.-inset-80 {
  top: -20rem;
  right: -20rem;
  bottom: -20rem;
  left: -20rem
}

.-inset-96 {
  top: -24rem;
  right: -24rem;
  bottom: -24rem;
  left: -24rem
}

.-inset-px {
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px
}

.-inset-0\.5 {
  top: -0.125rem;
  right: -0.125rem;
  bottom: -0.125rem;
  left: -0.125rem
}

.-inset-1\.5 {
  top: -0.375rem;
  right: -0.375rem;
  bottom: -0.375rem;
  left: -0.375rem
}

.-inset-2\.5 {
  top: -0.625rem;
  right: -0.625rem;
  bottom: -0.625rem;
  left: -0.625rem
}

.-inset-3\.5 {
  top: -0.875rem;
  right: -0.875rem;
  bottom: -0.875rem;
  left: -0.875rem
}

.-inset-2\/3 {
  top: -66.666667%;
  right: -66.666667%;
  bottom: -66.666667%;
  left: -66.666667%
}

.-inset-3\/4 {
  top: -75%;
  right: -75%;
  bottom: -75%;
  left: -75%
}

.-inset-6\/19 {
  top: -56.25%;
  right: -56.25%;
  bottom: -56.25%;
  left: -56.25%
}

.-inset-1\/1 {
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%
}

.-inset-3\/2 {
  top: -150%;
  right: -150%;
  bottom: -150%;
  left: -150%
}

.-inset-4\/3 {
  top: -133.333%;
  right: -133.333%;
  bottom: -133.333%;
  left: -133.333%
}

.inset-1\/2 {
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%
}

.inset-1\/3 {
  top: 33.333333%;
  right: 33.333333%;
  bottom: 33.333333%;
  left: 33.333333%
}

.inset-1\/4 {
  top: 25%;
  right: 25%;
  bottom: 25%;
  left: 25%
}

.inset-2\/4 {
  top: 50%;
  right: 50%;
  bottom: 50%;
  left: 50%
}

.inset-full {
  top: 100%;
  right: 100%;
  bottom: 100%;
  left: 100%
}

.-inset-1\/2 {
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%
}

.-inset-1\/3 {
  top: -33.333333%;
  right: -33.333333%;
  bottom: -33.333333%;
  left: -33.333333%
}

.-inset-1\/4 {
  top: -25%;
  right: -25%;
  bottom: -25%;
  left: -25%
}

.-inset-2\/4 {
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%
}

.-inset-full {
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%
}

.inset-y-0 {
  top: 0px;
  bottom: 0px
}

.inset-x-0 {
  right: 0px;
  left: 0px
}

.inset-y-1 {
  top: 0.25rem;
  bottom: 0.25rem
}

.inset-x-1 {
  right: 0.25rem;
  left: 0.25rem
}

.inset-y-2 {
  top: 0.5rem;
  bottom: 0.5rem
}

.inset-x-2 {
  right: 0.5rem;
  left: 0.5rem
}

.inset-y-3 {
  top: 0.75rem;
  bottom: 0.75rem
}

.inset-x-3 {
  right: 0.75rem;
  left: 0.75rem
}

.inset-y-4 {
  top: 1rem;
  bottom: 1rem
}

.inset-x-4 {
  right: 1rem;
  left: 1rem
}

.inset-y-5 {
  top: 1.25rem;
  bottom: 1.25rem
}

.inset-x-5 {
  right: 1.25rem;
  left: 1.25rem
}

.inset-y-6 {
  top: 1.5rem;
  bottom: 1.5rem
}

.inset-x-6 {
  right: 1.5rem;
  left: 1.5rem
}

.inset-y-7 {
  top: 1.75rem;
  bottom: 1.75rem
}

.inset-x-7 {
  right: 1.75rem;
  left: 1.75rem
}

.inset-y-8 {
  top: 2rem;
  bottom: 2rem
}

.inset-x-8 {
  right: 2rem;
  left: 2rem
}

.inset-y-9 {
  top: 2.25rem;
  bottom: 2.25rem
}

.inset-x-9 {
  right: 2.25rem;
  left: 2.25rem
}

.inset-y-10 {
  top: 2.5rem;
  bottom: 2.5rem
}

.inset-x-10 {
  right: 2.5rem;
  left: 2.5rem
}

.inset-y-11 {
  top: 2.75rem;
  bottom: 2.75rem
}

.inset-x-11 {
  right: 2.75rem;
  left: 2.75rem
}

.inset-y-12 {
  top: 3rem;
  bottom: 3rem
}

.inset-x-12 {
  right: 3rem;
  left: 3rem
}

.inset-y-14 {
  top: 3.5rem;
  bottom: 3.5rem
}

.inset-x-14 {
  right: 3.5rem;
  left: 3.5rem
}

.inset-y-16 {
  top: 4rem;
  bottom: 4rem
}

.inset-x-16 {
  right: 4rem;
  left: 4rem
}

.inset-y-20 {
  top: 5rem;
  bottom: 5rem
}

.inset-x-20 {
  right: 5rem;
  left: 5rem
}

.inset-y-24 {
  top: 6rem;
  bottom: 6rem
}

.inset-x-24 {
  right: 6rem;
  left: 6rem
}

.inset-y-28 {
  top: 7rem;
  bottom: 7rem
}

.inset-x-28 {
  right: 7rem;
  left: 7rem
}

.inset-y-32 {
  top: 8rem;
  bottom: 8rem
}

.inset-x-32 {
  right: 8rem;
  left: 8rem
}

.inset-y-36 {
  top: 9rem;
  bottom: 9rem
}

.inset-x-36 {
  right: 9rem;
  left: 9rem
}

.inset-y-40 {
  top: 10rem;
  bottom: 10rem
}

.inset-x-40 {
  right: 10rem;
  left: 10rem
}

.inset-y-44 {
  top: 11rem;
  bottom: 11rem
}

.inset-x-44 {
  right: 11rem;
  left: 11rem
}

.inset-y-48 {
  top: 12rem;
  bottom: 12rem
}

.inset-x-48 {
  right: 12rem;
  left: 12rem
}

.inset-y-52 {
  top: 13rem;
  bottom: 13rem
}

.inset-x-52 {
  right: 13rem;
  left: 13rem
}

.inset-y-56 {
  top: 14rem;
  bottom: 14rem
}

.inset-x-56 {
  right: 14rem;
  left: 14rem
}

.inset-y-60 {
  top: 15rem;
  bottom: 15rem
}

.inset-x-60 {
  right: 15rem;
  left: 15rem
}

.inset-y-64 {
  top: 16rem;
  bottom: 16rem
}

.inset-x-64 {
  right: 16rem;
  left: 16rem
}

.inset-y-72 {
  top: 18rem;
  bottom: 18rem
}

.inset-x-72 {
  right: 18rem;
  left: 18rem
}

.inset-y-80 {
  top: 20rem;
  bottom: 20rem
}

.inset-x-80 {
  right: 20rem;
  left: 20rem
}

.inset-y-96 {
  top: 24rem;
  bottom: 24rem
}

.inset-x-96 {
  right: 24rem;
  left: 24rem
}

.inset-y-auto {
  top: auto;
  bottom: auto
}

.inset-x-auto {
  right: auto;
  left: auto
}

.inset-y-px {
  top: 1px;
  bottom: 1px
}

.inset-x-px {
  right: 1px;
  left: 1px
}

.inset-y-0\.5 {
  top: 0.125rem;
  bottom: 0.125rem
}

.inset-x-0\.5 {
  right: 0.125rem;
  left: 0.125rem
}

.inset-y-1\.5 {
  top: 0.375rem;
  bottom: 0.375rem
}

.inset-x-1\.5 {
  right: 0.375rem;
  left: 0.375rem
}

.inset-y-2\.5 {
  top: 0.625rem;
  bottom: 0.625rem
}

.inset-x-2\.5 {
  right: 0.625rem;
  left: 0.625rem
}

.inset-y-3\.5 {
  top: 0.875rem;
  bottom: 0.875rem
}

.inset-x-3\.5 {
  right: 0.875rem;
  left: 0.875rem
}

.inset-y-2\/3 {
  top: 66.666667%;
  bottom: 66.666667%
}

.inset-x-2\/3 {
  right: 66.666667%;
  left: 66.666667%
}

.inset-y-3\/4 {
  top: 75%;
  bottom: 75%
}

.inset-x-3\/4 {
  right: 75%;
  left: 75%
}

.inset-y-6\/19 {
  top: 56.25%;
  bottom: 56.25%
}

.inset-x-6\/19 {
  right: 56.25%;
  left: 56.25%
}

.inset-y-1\/1 {
  top: 100%;
  bottom: 100%
}

.inset-x-1\/1 {
  right: 100%;
  left: 100%
}

.inset-y-3\/2 {
  top: 150%;
  bottom: 150%
}

.inset-x-3\/2 {
  right: 150%;
  left: 150%
}

.inset-y-4\/3 {
  top: 133.333%;
  bottom: 133.333%
}

.inset-x-4\/3 {
  right: 133.333%;
  left: 133.333%
}

.-inset-y-0 {
  top: 0px;
  bottom: 0px
}

.-inset-x-0 {
  right: 0px;
  left: 0px
}

.-inset-y-1 {
  top: -0.25rem;
  bottom: -0.25rem
}

.-inset-x-1 {
  right: -0.25rem;
  left: -0.25rem
}

.-inset-y-2 {
  top: -0.5rem;
  bottom: -0.5rem
}

.-inset-x-2 {
  right: -0.5rem;
  left: -0.5rem
}

.-inset-y-3 {
  top: -0.75rem;
  bottom: -0.75rem
}

.-inset-x-3 {
  right: -0.75rem;
  left: -0.75rem
}

.-inset-y-4 {
  top: -1rem;
  bottom: -1rem
}

.-inset-x-4 {
  right: -1rem;
  left: -1rem
}

.-inset-y-5 {
  top: -1.25rem;
  bottom: -1.25rem
}

.-inset-x-5 {
  right: -1.25rem;
  left: -1.25rem
}

.-inset-y-6 {
  top: -1.5rem;
  bottom: -1.5rem
}

.-inset-x-6 {
  right: -1.5rem;
  left: -1.5rem
}

.-inset-y-7 {
  top: -1.75rem;
  bottom: -1.75rem
}

.-inset-x-7 {
  right: -1.75rem;
  left: -1.75rem
}

.-inset-y-8 {
  top: -2rem;
  bottom: -2rem
}

.-inset-x-8 {
  right: -2rem;
  left: -2rem
}

.-inset-y-9 {
  top: -2.25rem;
  bottom: -2.25rem
}

.-inset-x-9 {
  right: -2.25rem;
  left: -2.25rem
}

.-inset-y-10 {
  top: -2.5rem;
  bottom: -2.5rem
}

.-inset-x-10 {
  right: -2.5rem;
  left: -2.5rem
}

.-inset-y-11 {
  top: -2.75rem;
  bottom: -2.75rem
}

.-inset-x-11 {
  right: -2.75rem;
  left: -2.75rem
}

.-inset-y-12 {
  top: -3rem;
  bottom: -3rem
}

.-inset-x-12 {
  right: -3rem;
  left: -3rem
}

.-inset-y-14 {
  top: -3.5rem;
  bottom: -3.5rem
}

.-inset-x-14 {
  right: -3.5rem;
  left: -3.5rem
}

.-inset-y-16 {
  top: -4rem;
  bottom: -4rem
}

.-inset-x-16 {
  right: -4rem;
  left: -4rem
}

.-inset-y-20 {
  top: -5rem;
  bottom: -5rem
}

.-inset-x-20 {
  right: -5rem;
  left: -5rem
}

.-inset-y-24 {
  top: -6rem;
  bottom: -6rem
}

.-inset-x-24 {
  right: -6rem;
  left: -6rem
}

.-inset-y-28 {
  top: -7rem;
  bottom: -7rem
}

.-inset-x-28 {
  right: -7rem;
  left: -7rem
}

.-inset-y-32 {
  top: -8rem;
  bottom: -8rem
}

.-inset-x-32 {
  right: -8rem;
  left: -8rem
}

.-inset-y-36 {
  top: -9rem;
  bottom: -9rem
}

.-inset-x-36 {
  right: -9rem;
  left: -9rem
}

.-inset-y-40 {
  top: -10rem;
  bottom: -10rem
}

.-inset-x-40 {
  right: -10rem;
  left: -10rem
}

.-inset-y-44 {
  top: -11rem;
  bottom: -11rem
}

.-inset-x-44 {
  right: -11rem;
  left: -11rem
}

.-inset-y-48 {
  top: -12rem;
  bottom: -12rem
}

.-inset-x-48 {
  right: -12rem;
  left: -12rem
}

.-inset-y-52 {
  top: -13rem;
  bottom: -13rem
}

.-inset-x-52 {
  right: -13rem;
  left: -13rem
}

.-inset-y-56 {
  top: -14rem;
  bottom: -14rem
}

.-inset-x-56 {
  right: -14rem;
  left: -14rem
}

.-inset-y-60 {
  top: -15rem;
  bottom: -15rem
}

.-inset-x-60 {
  right: -15rem;
  left: -15rem
}

.-inset-y-64 {
  top: -16rem;
  bottom: -16rem
}

.-inset-x-64 {
  right: -16rem;
  left: -16rem
}

.-inset-y-72 {
  top: -18rem;
  bottom: -18rem
}

.-inset-x-72 {
  right: -18rem;
  left: -18rem
}

.-inset-y-80 {
  top: -20rem;
  bottom: -20rem
}

.-inset-x-80 {
  right: -20rem;
  left: -20rem
}

.-inset-y-96 {
  top: -24rem;
  bottom: -24rem
}

.-inset-x-96 {
  right: -24rem;
  left: -24rem
}

.-inset-y-px {
  top: -1px;
  bottom: -1px
}

.-inset-x-px {
  right: -1px;
  left: -1px
}

.-inset-y-0\.5 {
  top: -0.125rem;
  bottom: -0.125rem
}

.-inset-x-0\.5 {
  right: -0.125rem;
  left: -0.125rem
}

.-inset-y-1\.5 {
  top: -0.375rem;
  bottom: -0.375rem
}

.-inset-x-1\.5 {
  right: -0.375rem;
  left: -0.375rem
}

.-inset-y-2\.5 {
  top: -0.625rem;
  bottom: -0.625rem
}

.-inset-x-2\.5 {
  right: -0.625rem;
  left: -0.625rem
}

.-inset-y-3\.5 {
  top: -0.875rem;
  bottom: -0.875rem
}

.-inset-x-3\.5 {
  right: -0.875rem;
  left: -0.875rem
}

.-inset-y-2\/3 {
  top: -66.666667%;
  bottom: -66.666667%
}

.-inset-x-2\/3 {
  right: -66.666667%;
  left: -66.666667%
}

.-inset-y-3\/4 {
  top: -75%;
  bottom: -75%
}

.-inset-x-3\/4 {
  right: -75%;
  left: -75%
}

.-inset-y-6\/19 {
  top: -56.25%;
  bottom: -56.25%
}

.-inset-x-6\/19 {
  right: -56.25%;
  left: -56.25%
}

.-inset-y-1\/1 {
  top: -100%;
  bottom: -100%
}

.-inset-x-1\/1 {
  right: -100%;
  left: -100%
}

.-inset-y-3\/2 {
  top: -150%;
  bottom: -150%
}

.-inset-x-3\/2 {
  right: -150%;
  left: -150%
}

.-inset-y-4\/3 {
  top: -133.333%;
  bottom: -133.333%
}

.-inset-x-4\/3 {
  right: -133.333%;
  left: -133.333%
}

.inset-y-1\/2 {
  top: 50%;
  bottom: 50%
}

.inset-x-1\/2 {
  right: 50%;
  left: 50%
}

.inset-y-1\/3 {
  top: 33.333333%;
  bottom: 33.333333%
}

.inset-x-1\/3 {
  right: 33.333333%;
  left: 33.333333%
}

.inset-y-1\/4 {
  top: 25%;
  bottom: 25%
}

.inset-x-1\/4 {
  right: 25%;
  left: 25%
}

.inset-y-2\/4 {
  top: 50%;
  bottom: 50%
}

.inset-x-2\/4 {
  right: 50%;
  left: 50%
}

.inset-y-full {
  top: 100%;
  bottom: 100%
}

.inset-x-full {
  right: 100%;
  left: 100%
}

.-inset-y-1\/2 {
  top: -50%;
  bottom: -50%
}

.-inset-x-1\/2 {
  right: -50%;
  left: -50%
}

.-inset-y-1\/3 {
  top: -33.333333%;
  bottom: -33.333333%
}

.-inset-x-1\/3 {
  right: -33.333333%;
  left: -33.333333%
}

.-inset-y-1\/4 {
  top: -25%;
  bottom: -25%
}

.-inset-x-1\/4 {
  right: -25%;
  left: -25%
}

.-inset-y-2\/4 {
  top: -50%;
  bottom: -50%
}

.-inset-x-2\/4 {
  right: -50%;
  left: -50%
}

.-inset-y-full {
  top: -100%;
  bottom: -100%
}

.-inset-x-full {
  right: -100%;
  left: -100%
}

.top-0 {
  top: 0px
}

.right-0 {
  right: 0px
}

.bottom-0 {
  bottom: 0px
}

.left-0 {
  left: 0px
}

.top-1 {
  top: 0.25rem
}

.right-1 {
  right: 0.25rem
}

.bottom-1 {
  bottom: 0.25rem
}

.left-1 {
  left: 0.25rem
}

.top-2 {
  top: 0.5rem
}

.right-2 {
  right: 0.5rem
}

.bottom-2 {
  bottom: 0.5rem
}

.left-2 {
  left: 0.5rem
}

.top-3 {
  top: 0.75rem
}

.right-3 {
  right: 0.75rem
}

.bottom-3 {
  bottom: 0.75rem
}

.left-3 {
  left: 0.75rem
}

.top-4 {
  top: 1rem
}

.right-4 {
  right: 1rem
}

.bottom-4 {
  bottom: 1rem
}

.left-4 {
  left: 1rem
}

.top-5 {
  top: 1.25rem
}

.right-5 {
  right: 1.25rem
}

.bottom-5 {
  bottom: 1.25rem
}

.left-5 {
  left: 1.25rem
}

.top-6 {
  top: 1.5rem
}

.right-6 {
  right: 1.5rem
}

.bottom-6 {
  bottom: 1.5rem
}

.left-6 {
  left: 1.5rem
}

.top-7 {
  top: 1.75rem
}

.right-7 {
  right: 1.75rem
}

.bottom-7 {
  bottom: 1.75rem
}

.left-7 {
  left: 1.75rem
}

.top-8 {
  top: 2rem
}

.right-8 {
  right: 2rem
}

.bottom-8 {
  bottom: 2rem
}

.left-8 {
  left: 2rem
}

.top-9 {
  top: 2.25rem
}

.right-9 {
  right: 2.25rem
}

.bottom-9 {
  bottom: 2.25rem
}

.left-9 {
  left: 2.25rem
}

.top-10 {
  top: 2.5rem
}

.right-10 {
  right: 2.5rem
}

.bottom-10 {
  bottom: 2.5rem
}

.left-10 {
  left: 2.5rem
}

.top-11 {
  top: 2.75rem
}

.right-11 {
  right: 2.75rem
}

.bottom-11 {
  bottom: 2.75rem
}

.left-11 {
  left: 2.75rem
}

.top-12 {
  top: 3rem
}

.right-12 {
  right: 3rem
}

.bottom-12 {
  bottom: 3rem
}

.left-12 {
  left: 3rem
}

.top-14 {
  top: 3.5rem
}

.right-14 {
  right: 3.5rem
}

.bottom-14 {
  bottom: 3.5rem
}

.left-14 {
  left: 3.5rem
}

.top-16 {
  top: 4rem
}

.right-16 {
  right: 4rem
}

.bottom-16 {
  bottom: 4rem
}

.left-16 {
  left: 4rem
}

.top-20 {
  top: 5rem
}

.right-20 {
  right: 5rem
}

.bottom-20 {
  bottom: 5rem
}

.left-20 {
  left: 5rem
}

.top-24 {
  top: 6rem
}

.right-24 {
  right: 6rem
}

.bottom-24 {
  bottom: 6rem
}

.left-24 {
  left: 6rem
}

.top-28 {
  top: 7rem
}

.right-28 {
  right: 7rem
}

.bottom-28 {
  bottom: 7rem
}

.left-28 {
  left: 7rem
}

.top-32 {
  top: 8rem
}

.right-32 {
  right: 8rem
}

.bottom-32 {
  bottom: 8rem
}

.left-32 {
  left: 8rem
}

.top-36 {
  top: 9rem
}

.right-36 {
  right: 9rem
}

.bottom-36 {
  bottom: 9rem
}

.left-36 {
  left: 9rem
}

.top-40 {
  top: 10rem
}

.right-40 {
  right: 10rem
}

.bottom-40 {
  bottom: 10rem
}

.left-40 {
  left: 10rem
}

.top-44 {
  top: 11rem
}

.right-44 {
  right: 11rem
}

.bottom-44 {
  bottom: 11rem
}

.left-44 {
  left: 11rem
}

.top-48 {
  top: 12rem
}

.right-48 {
  right: 12rem
}

.bottom-48 {
  bottom: 12rem
}

.left-48 {
  left: 12rem
}

.top-52 {
  top: 13rem
}

.right-52 {
  right: 13rem
}

.bottom-52 {
  bottom: 13rem
}

.left-52 {
  left: 13rem
}

.top-56 {
  top: 14rem
}

.right-56 {
  right: 14rem
}

.bottom-56 {
  bottom: 14rem
}

.left-56 {
  left: 14rem
}

.top-60 {
  top: 15rem
}

.right-60 {
  right: 15rem
}

.bottom-60 {
  bottom: 15rem
}

.left-60 {
  left: 15rem
}

.top-64 {
  top: 16rem
}

.right-64 {
  right: 16rem
}

.bottom-64 {
  bottom: 16rem
}

.left-64 {
  left: 16rem
}

.top-72 {
  top: 18rem
}

.right-72 {
  right: 18rem
}

.bottom-72 {
  bottom: 18rem
}

.left-72 {
  left: 18rem
}

.top-80 {
  top: 20rem
}

.right-80 {
  right: 20rem
}

.bottom-80 {
  bottom: 20rem
}

.left-80 {
  left: 20rem
}

.top-96 {
  top: 24rem
}

.right-96 {
  right: 24rem
}

.bottom-96 {
  bottom: 24rem
}

.left-96 {
  left: 24rem
}

.top-auto {
  top: auto
}

.right-auto {
  right: auto
}

.bottom-auto {
  bottom: auto
}

.left-auto {
  left: auto
}

.top-px {
  top: 1px
}

.right-px {
  right: 1px
}

.bottom-px {
  bottom: 1px
}

.left-px {
  left: 1px
}

.top-0\.5 {
  top: 0.125rem
}

.right-0\.5 {
  right: 0.125rem
}

.bottom-0\.5 {
  bottom: 0.125rem
}

.left-0\.5 {
  left: 0.125rem
}

.top-1\.5 {
  top: 0.375rem
}

.right-1\.5 {
  right: 0.375rem
}

.bottom-1\.5 {
  bottom: 0.375rem
}

.left-1\.5 {
  left: 0.375rem
}

.top-2\.5 {
  top: 0.625rem
}

.right-2\.5 {
  right: 0.625rem
}

.bottom-2\.5 {
  bottom: 0.625rem
}

.left-2\.5 {
  left: 0.625rem
}

.top-3\.5 {
  top: 0.875rem
}

.right-3\.5 {
  right: 0.875rem
}

.bottom-3\.5 {
  bottom: 0.875rem
}

.left-3\.5 {
  left: 0.875rem
}

.top-2\/3 {
  top: 66.666667%
}

.right-2\/3 {
  right: 66.666667%
}

.bottom-2\/3 {
  bottom: 66.666667%
}

.left-2\/3 {
  left: 66.666667%
}

.top-3\/4 {
  top: 75%
}

.right-3\/4 {
  right: 75%
}

.bottom-3\/4 {
  bottom: 75%
}

.left-3\/4 {
  left: 75%
}

.top-6\/19 {
  top: 56.25%
}

.right-6\/19 {
  right: 56.25%
}

.bottom-6\/19 {
  bottom: 56.25%
}

.left-6\/19 {
  left: 56.25%
}

.top-1\/1 {
  top: 100%
}

.right-1\/1 {
  right: 100%
}

.bottom-1\/1 {
  bottom: 100%
}

.left-1\/1 {
  left: 100%
}

.top-3\/2 {
  top: 150%
}

.right-3\/2 {
  right: 150%
}

.bottom-3\/2 {
  bottom: 150%
}

.left-3\/2 {
  left: 150%
}

.top-4\/3 {
  top: 133.333%
}

.right-4\/3 {
  right: 133.333%
}

.bottom-4\/3 {
  bottom: 133.333%
}

.left-4\/3 {
  left: 133.333%
}

.-top-0 {
  top: 0px
}

.-right-0 {
  right: 0px
}

.-bottom-0 {
  bottom: 0px
}

.-left-0 {
  left: 0px
}

.-top-1 {
  top: -0.25rem
}

.-right-1 {
  right: -0.25rem
}

.-bottom-1 {
  bottom: -0.25rem
}

.-left-1 {
  left: -0.25rem
}

.-top-2 {
  top: -0.5rem
}

.-right-2 {
  right: -0.5rem
}

.-bottom-2 {
  bottom: -0.5rem
}

.-left-2 {
  left: -0.5rem
}

.-top-3 {
  top: -0.75rem
}

.-right-3 {
  right: -0.75rem
}

.-bottom-3 {
  bottom: -0.75rem
}

.-left-3 {
  left: -0.75rem
}

.-top-4 {
  top: -1rem
}

.-right-4 {
  right: -1rem
}

.-bottom-4 {
  bottom: -1rem
}

.-left-4 {
  left: -1rem
}

.-top-5 {
  top: -1.25rem
}

.-right-5 {
  right: -1.25rem
}

.-bottom-5 {
  bottom: -1.25rem
}

.-left-5 {
  left: -1.25rem
}

.-top-6 {
  top: -1.5rem
}

.-right-6 {
  right: -1.5rem
}

.-bottom-6 {
  bottom: -1.5rem
}

.-left-6 {
  left: -1.5rem
}

.-top-7 {
  top: -1.75rem
}

.-right-7 {
  right: -1.75rem
}

.-bottom-7 {
  bottom: -1.75rem
}

.-left-7 {
  left: -1.75rem
}

.-top-8 {
  top: -2rem
}

.-right-8 {
  right: -2rem
}

.-bottom-8 {
  bottom: -2rem
}

.-left-8 {
  left: -2rem
}

.-top-9 {
  top: -2.25rem
}

.-right-9 {
  right: -2.25rem
}

.-bottom-9 {
  bottom: -2.25rem
}

.-left-9 {
  left: -2.25rem
}

.-top-10 {
  top: -2.5rem
}

.-right-10 {
  right: -2.5rem
}

.-bottom-10 {
  bottom: -2.5rem
}

.-left-10 {
  left: -2.5rem
}

.-top-11 {
  top: -2.75rem
}

.-right-11 {
  right: -2.75rem
}

.-bottom-11 {
  bottom: -2.75rem
}

.-left-11 {
  left: -2.75rem
}

.-top-12 {
  top: -3rem
}

.-right-12 {
  right: -3rem
}

.-bottom-12 {
  bottom: -3rem
}

.-left-12 {
  left: -3rem
}

.-top-14 {
  top: -3.5rem
}

.-right-14 {
  right: -3.5rem
}

.-bottom-14 {
  bottom: -3.5rem
}

.-left-14 {
  left: -3.5rem
}

.-top-16 {
  top: -4rem
}

.-right-16 {
  right: -4rem
}

.-bottom-16 {
  bottom: -4rem
}

.-left-16 {
  left: -4rem
}

.-top-20 {
  top: -5rem
}

.-right-20 {
  right: -5rem
}

.-bottom-20 {
  bottom: -5rem
}

.-left-20 {
  left: -5rem
}

.-top-24 {
  top: -6rem
}

.-right-24 {
  right: -6rem
}

.-bottom-24 {
  bottom: -6rem
}

.-left-24 {
  left: -6rem
}

.-top-28 {
  top: -7rem
}

.-right-28 {
  right: -7rem
}

.-bottom-28 {
  bottom: -7rem
}

.-left-28 {
  left: -7rem
}

.-top-32 {
  top: -8rem
}

.-right-32 {
  right: -8rem
}

.-bottom-32 {
  bottom: -8rem
}

.-left-32 {
  left: -8rem
}

.-top-36 {
  top: -9rem
}

.-right-36 {
  right: -9rem
}

.-bottom-36 {
  bottom: -9rem
}

.-left-36 {
  left: -9rem
}

.-top-40 {
  top: -10rem
}

.-right-40 {
  right: -10rem
}

.-bottom-40 {
  bottom: -10rem
}

.-left-40 {
  left: -10rem
}

.-top-44 {
  top: -11rem
}

.-right-44 {
  right: -11rem
}

.-bottom-44 {
  bottom: -11rem
}

.-left-44 {
  left: -11rem
}

.-top-48 {
  top: -12rem
}

.-right-48 {
  right: -12rem
}

.-bottom-48 {
  bottom: -12rem
}

.-left-48 {
  left: -12rem
}

.-top-52 {
  top: -13rem
}

.-right-52 {
  right: -13rem
}

.-bottom-52 {
  bottom: -13rem
}

.-left-52 {
  left: -13rem
}

.-top-56 {
  top: -14rem
}

.-right-56 {
  right: -14rem
}

.-bottom-56 {
  bottom: -14rem
}

.-left-56 {
  left: -14rem
}

.-top-60 {
  top: -15rem
}

.-right-60 {
  right: -15rem
}

.-bottom-60 {
  bottom: -15rem
}

.-left-60 {
  left: -15rem
}

.-top-64 {
  top: -16rem
}

.-right-64 {
  right: -16rem
}

.-bottom-64 {
  bottom: -16rem
}

.-left-64 {
  left: -16rem
}

.-top-72 {
  top: -18rem
}

.-right-72 {
  right: -18rem
}

.-bottom-72 {
  bottom: -18rem
}

.-left-72 {
  left: -18rem
}

.-top-80 {
  top: -20rem
}

.-right-80 {
  right: -20rem
}

.-bottom-80 {
  bottom: -20rem
}

.-left-80 {
  left: -20rem
}

.-top-96 {
  top: -24rem
}

.-right-96 {
  right: -24rem
}

.-bottom-96 {
  bottom: -24rem
}

.-left-96 {
  left: -24rem
}

.-top-px {
  top: -1px
}

.-right-px {
  right: -1px
}

.-bottom-px {
  bottom: -1px
}

.-left-px {
  left: -1px
}

.-top-0\.5 {
  top: -0.125rem
}

.-right-0\.5 {
  right: -0.125rem
}

.-bottom-0\.5 {
  bottom: -0.125rem
}

.-left-0\.5 {
  left: -0.125rem
}

.-top-1\.5 {
  top: -0.375rem
}

.-right-1\.5 {
  right: -0.375rem
}

.-bottom-1\.5 {
  bottom: -0.375rem
}

.-left-1\.5 {
  left: -0.375rem
}

.-top-2\.5 {
  top: -0.625rem
}

.-right-2\.5 {
  right: -0.625rem
}

.-bottom-2\.5 {
  bottom: -0.625rem
}

.-left-2\.5 {
  left: -0.625rem
}

.-top-3\.5 {
  top: -0.875rem
}

.-right-3\.5 {
  right: -0.875rem
}

.-bottom-3\.5 {
  bottom: -0.875rem
}

.-left-3\.5 {
  left: -0.875rem
}

.-top-2\/3 {
  top: -66.666667%
}

.-right-2\/3 {
  right: -66.666667%
}

.-bottom-2\/3 {
  bottom: -66.666667%
}

.-left-2\/3 {
  left: -66.666667%
}

.-top-3\/4 {
  top: -75%
}

.-right-3\/4 {
  right: -75%
}

.-bottom-3\/4 {
  bottom: -75%
}

.-left-3\/4 {
  left: -75%
}

.-top-6\/19 {
  top: -56.25%
}

.-right-6\/19 {
  right: -56.25%
}

.-bottom-6\/19 {
  bottom: -56.25%
}

.-left-6\/19 {
  left: -56.25%
}

.-top-1\/1 {
  top: -100%
}

.-right-1\/1 {
  right: -100%
}

.-bottom-1\/1 {
  bottom: -100%
}

.-left-1\/1 {
  left: -100%
}

.-top-3\/2 {
  top: -150%
}

.-right-3\/2 {
  right: -150%
}

.-bottom-3\/2 {
  bottom: -150%
}

.-left-3\/2 {
  left: -150%
}

.-top-4\/3 {
  top: -133.333%
}

.-right-4\/3 {
  right: -133.333%
}

.-bottom-4\/3 {
  bottom: -133.333%
}

.-left-4\/3 {
  left: -133.333%
}

.top-1\/2 {
  top: 50%
}

.right-1\/2 {
  right: 50%
}

.bottom-1\/2 {
  bottom: 50%
}

.left-1\/2 {
  left: 50%
}

.top-1\/3 {
  top: 33.333333%
}

.right-1\/3 {
  right: 33.333333%
}

.bottom-1\/3 {
  bottom: 33.333333%
}

.left-1\/3 {
  left: 33.333333%
}

.top-1\/4 {
  top: 25%
}

.right-1\/4 {
  right: 25%
}

.bottom-1\/4 {
  bottom: 25%
}

.left-1\/4 {
  left: 25%
}

.top-2\/4 {
  top: 50%
}

.right-2\/4 {
  right: 50%
}

.bottom-2\/4 {
  bottom: 50%
}

.left-2\/4 {
  left: 50%
}

.top-full {
  top: 100%
}

.right-full {
  right: 100%
}

.bottom-full {
  bottom: 100%
}

.left-full {
  left: 100%
}

.-top-1\/2 {
  top: -50%
}

.-right-1\/2 {
  right: -50%
}

.-bottom-1\/2 {
  bottom: -50%
}

.-left-1\/2 {
  left: -50%
}

.-top-1\/3 {
  top: -33.333333%
}

.-right-1\/3 {
  right: -33.333333%
}

.-bottom-1\/3 {
  bottom: -33.333333%
}

.-left-1\/3 {
  left: -33.333333%
}

.-top-1\/4 {
  top: -25%
}

.-right-1\/4 {
  right: -25%
}

.-bottom-1\/4 {
  bottom: -25%
}

.-left-1\/4 {
  left: -25%
}

.-top-2\/4 {
  top: -50%
}

.-right-2\/4 {
  right: -50%
}

.-bottom-2\/4 {
  bottom: -50%
}

.-left-2\/4 {
  left: -50%
}

.-top-full {
  top: -100%
}

.-right-full {
  right: -100%
}

.-bottom-full {
  bottom: -100%
}

.-left-full {
  left: -100%
}

.resize-none {
  resize: none
}

.resize-y {
  resize: vertical
}

.resize-x {
  resize: horizontal
}

.resize {
  resize: both
}

* {
  --tw-shadow: 0 0 #0000
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-inner {
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

/* Custom */
.shadow-inner-xl {
	--tw-shadow: inset 0 2px 4px 2px rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
.shadow-inner-2xl {
	--tw-shadow: inset 0 2px 4px 4px rgba(0, 0, 0, 0.06);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
/* /Custom */

.shadow-none {
  --tw-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.shadow-around{
  box-shadow: 0 0 30px 0 rgba(135, 154, 197, 0.31);
}

.fill-current {
  fill: currentColor
}

.fill-base-50 {
  fill: #878787
}

.fill-base-100 {
  fill: #787878
}

.fill-base-200 {
  fill: #5a5a5a
}

.fill-base-300 {
  fill: #3c3c3c
}

.fill-base-400 {
  fill: #1e1e1e
}

.fill-base-500 {
  fill: #000000
}

.fill-base-600 {
  fill: #000000
}

.fill-base-700 {
  fill: #000000
}

.fill-base-800 {
  fill: #000000
}

.fill-base-900 {
  fill: #000000
}

.fill-base {
  fill: #000000
}

.fill-default-50 {
  fill: #878787
}

.fill-default-100 {
  fill: #787878
}

.fill-default-200 {
  fill: #5a5a5a
}

.fill-default-300 {
  fill: #3c3c3c
}

.fill-default-400 {
  fill: #1e1e1e
}

.fill-default-500 {
  fill: #000000
}

.fill-default-600 {
  fill: #000000
}

.fill-default-700 {
  fill: #000000
}

.fill-default-800 {
  fill: #000000
}

.fill-default-900 {
  fill: #000000
}

.fill-default {
  fill: #000000
}

.fill-primary-50 {
  fill: #ffffb7
}

.fill-primary-100 {
  fill: #ffffa8
}

.fill-primary-200 {
  fill: #ffff8a
}

.fill-primary-300 {
  fill: #ffeb6c
}

.fill-primary-400 {
  fill: #ffcd4e
}

.fill-primary-500 {
  fill: #FDAF30
}

.fill-primary-600 {
  fill: #df9112
}

.fill-primary-700 {
  fill: #c17300
}

.fill-primary-800 {
  fill: #a35500
}

.fill-primary-900 {
  fill: #853700
}

.fill-primary {
  fill: #FDAF30
}

.fill-secondary-50 {
  fill: #ffffff
}

.fill-secondary-100 {
  fill: #ffffff
}

.fill-secondary-200 {
  fill: #ffffff
}

.fill-secondary-300 {
  fill: #ffffff
}

.fill-secondary-400 {
  fill: #ffffff
}

.fill-secondary-500 {
  fill: #f2f2f2
}

.fill-secondary-600 {
  fill: #d4d4d4
}

.fill-secondary-700 {
  fill: #b6b6b6
}

.fill-secondary-800 {
  fill: #989898
}

.fill-secondary-900 {
  fill: #7a7a7a
}

.fill-secondary {
  fill: #f2f2f2
}

.fill-tertiary-50 {
  fill: 
}

.fill-tertiary-100 {
  fill: 
}

.fill-tertiary-200 {
  fill: 
}

.fill-tertiary-300 {
  fill: 
}

.fill-tertiary-400 {
  fill: 
}

.fill-tertiary-500 {
  fill: 
}

.fill-tertiary-600 {
  fill: 
}

.fill-tertiary-700 {
  fill: 
}

.fill-tertiary-800 {
  fill: 
}

.fill-tertiary-900 {
  fill: 
}

.fill-tertiary {
  fill: 
}

.fill-success-50 {
  fill: 
}

.fill-success-100 {
  fill: 
}

.fill-success-200 {
  fill: 
}

.fill-success-300 {
  fill: 
}

.fill-success-400 {
  fill: 
}

.fill-success-500 {
  fill: 
}

.fill-success-600 {
  fill: 
}

.fill-success-700 {
  fill: 
}

.fill-success-800 {
  fill: 
}

.fill-success-900 {
  fill: 
}

.fill-success {
  fill: 
}

.fill-warning-50 {
  fill: 
}

.fill-warning-100 {
  fill: 
}

.fill-warning-200 {
  fill: 
}

.fill-warning-300 {
  fill: 
}

.fill-warning-400 {
  fill: 
}

.fill-warning-500 {
  fill: 
}

.fill-warning-600 {
  fill: 
}

.fill-warning-700 {
  fill: 
}

.fill-warning-800 {
  fill: 
}

.fill-warning-900 {
  fill: 
}

.fill-warning {
  fill: 
}

.fill-danger-50 {
  fill: 
}

.fill-danger-100 {
  fill: 
}

.fill-danger-200 {
  fill: 
}

.fill-danger-300 {
  fill: 
}

.fill-danger-400 {
  fill: 
}

.fill-danger-500 {
  fill: 
}

.fill-danger-600 {
  fill: 
}

.fill-danger-700 {
  fill: 
}

.fill-danger-800 {
  fill: 
}

.fill-danger-900 {
  fill: 
}

.fill-danger {
  fill: 
}

.fill-gray-50 {
  fill: #F9FAFB
}

.fill-gray-100 {
  fill: #F3F4F6
}

.fill-gray-200 {
  fill: #E5E7EB
}

.fill-gray-300 {
  fill: #D1D5DB
}

.fill-gray-400 {
  fill: #9CA3AF
}

.fill-gray-500 {
  fill: #6B7280
}

.fill-gray-600 {
  fill: #4B5563
}

.fill-gray-700 {
  fill: #374151
}

.fill-gray-800 {
  fill: #1F2937
}

.fill-gray-900 {
  fill: #111827
}

.fill-gray {
  fill: #6B7280
}

.fill-dark-50 {
  fill: #ffffff
}

.fill-dark-100 {
  fill: #ffffff
}

.fill-dark-200 {
  fill: #ffffff
}

.fill-dark-300 {
  fill: #ffffff
}

.fill-dark-400 {
  fill: #ffffff
}

.fill-dark-500 {
  fill: #f8efe5
}

.fill-dark-600 {
  fill: #dad1c7
}

.fill-dark-700 {
  fill: #bcb3a9
}

.fill-dark-800 {
  fill: #9e958b
}

.fill-dark-900 {
  fill: #80776d
}

.fill-dark {
  fill: #f8efe5
}

.fill-white-50 {
  fill: #ffffff
}

.fill-white-100 {
  fill: #ffffff
}

.fill-white-200 {
  fill: #ffffff
}

.fill-white-300 {
  fill: #ffffff
}

.fill-white-400 {
  fill: #ffffff
}

.fill-white-500 {
  fill: #ffffff
}

.fill-white-600 {
  fill: #ffffff
}

.fill-white-700 {
  fill: #ffffff
}

.fill-white-800 {
  fill: #ffffff
}

.fill-white-900 {
  fill: #ffffff
}

.fill-white {
  fill: #ffffff
}

.table-auto {
  table-layout: auto
}

.table-fixed {
  table-layout: fixed
}

.text-left {
  text-align: left
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.text-justify {
  text-align: justify
}

.text-current {
  color: currentColor
}

.text-base-50 {
  color: #878787
}

.text-base-100 {
  color: #787878
}

.text-base-200 {
  color: #5a5a5a
}

.text-base-300 {
  color: #3c3c3c
}

.text-base-400 {
  color: #1e1e1e
}

.text-base-500 {
  color: #000000
}

.text-base-600 {
  color: #000000
}

.text-base-700 {
  color: #000000
}

.text-base-800 {
  color: #000000
}

.text-base-900 {
  color: #000000
}

.text-base {
  color: #000000
}

.text-default-50 {
  color: #878787
}

.text-default-100 {
  color: #787878
}

.text-default-200 {
  color: #5a5a5a
}

.text-default-300 {
  color: #3c3c3c
}

.text-default-400 {
  color: #1e1e1e
}

.text-default-500 {
  color: #000000
}

.text-default-600 {
  color: #000000
}

.text-default-700 {
  color: #000000
}

.text-default-800 {
  color: #000000
}

.text-default-900 {
  color: #000000
}

.text-default {
  color: #000000
}

.text-primary-50 {
  color: #ffffb7
}

.text-primary-100 {
  color: #ffffa8
}

.text-primary-200 {
  color: #ffff8a
}

.text-primary-300 {
  color: #ffeb6c
}

.text-primary-400 {
  color: #ffcd4e
}

.text-primary-500 {
  color: #FDAF30
}

.text-primary-600 {
  color: #df9112
}

.text-primary-700 {
  color: #c17300
}

.text-primary-800 {
  color: #a35500
}

.text-primary-900 {
  color: #853700
}

.text-primary {
  color: #FDAF30
}

.text-secondary-50 {
  color: #ffffff
}

.text-secondary-100 {
  color: #ffffff
}

.text-secondary-200 {
  color: #ffffff
}

.text-secondary-300 {
  color: #ffffff
}

.text-secondary-400 {
  color: #ffffff
}

.text-secondary-500 {
  color: #f2f2f2
}

.text-secondary-600 {
  color: #d4d4d4
}

.text-secondary-700 {
  color: #b6b6b6
}

.text-secondary-800 {
  color: #989898
}

.text-secondary-900 {
  color: #7a7a7a
}

.text-secondary {
  color: #f2f2f2
}

.text-tertiary-50 {
  color: 
}

.text-tertiary-100 {
  color: 
}

.text-tertiary-200 {
  color: 
}

.text-tertiary-300 {
  color: 
}

.text-tertiary-400 {
  color: 
}

.text-tertiary-500 {
  color: 
}

.text-tertiary-600 {
  color: 
}

.text-tertiary-700 {
  color: 
}

.text-tertiary-800 {
  color: 
}

.text-tertiary-900 {
  color: 
}

.text-tertiary {
  color: 
}

.text-success-50 {
  color: 
}

.text-success-100 {
  color: 
}

.text-success-200 {
  color: 
}

.text-success-300 {
  color: 
}

.text-success-400 {
  color: 
}

.text-success-500 {
  color: 
}

.text-success-600 {
  color: 
}

.text-success-700 {
  color: 
}

.text-success-800 {
  color: 
}

.text-success-900 {
  color: 
}

.text-success {
  color: 
}

.text-warning-50 {
  color: 
}

.text-warning-100 {
  color: 
}

.text-warning-200 {
  color: 
}

.text-warning-300 {
  color: 
}

.text-warning-400 {
  color: 
}

.text-warning-500 {
  color: 
}

.text-warning-600 {
  color: 
}

.text-warning-700 {
  color: 
}

.text-warning-800 {
  color: 
}

.text-warning-900 {
  color: 
}

.text-warning {
  color: 
}

.text-danger-50 {
  color: 
}

.text-danger-100 {
  color: 
}

.text-danger-200 {
  color: 
}

.text-danger-300 {
  color: 
}

.text-danger-400 {
  color: 
}

.text-danger-500 {
  color: 
}

.text-danger-600 {
  color: 
}

.text-danger-700 {
  color: 
}

.text-danger-800 {
  color: 
}

.text-danger-900 {
  color: 
}

.text-danger {
  color: 
}

.text-gray-50 {
  --tw-text-opacity: 1;
  color: rgba(249, 250, 251, var(--tw-text-opacity))
}

.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity))
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgba(229, 231, 235, var(--tw-text-opacity))
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgba(209, 213, 219, var(--tw-text-opacity))
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity))
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity))
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity))
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity))
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity))
}

.text-gray {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity))
}

.text-dark-50 {
  color: #ffffff
}

.text-dark-100 {
  color: #ffffff
}

.text-dark-200 {
  color: #ffffff
}

.text-dark-300 {
  color: #ffffff
}

.text-dark-400 {
  color: #ffffff
}

.text-dark-500 {
  color: #f8efe5
}

.text-dark-600 {
  color: #dad1c7
}

.text-dark-700 {
  color: #bcb3a9
}

.text-dark-800 {
  color: #9e958b
}

.text-dark-900 {
  color: #80776d
}

.text-dark {
  color: #f8efe5
}

.text-white-50 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-100 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-200 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-300 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-400 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-500 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-600 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-700 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-800 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white-900 {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-opacity-0 {
  --tw-text-opacity: 0
}

.text-opacity-5 {
  --tw-text-opacity: 0.05
}

.text-opacity-10 {
  --tw-text-opacity: 0.1
}

.text-opacity-20 {
  --tw-text-opacity: 0.2
}

.text-opacity-25 {
  --tw-text-opacity: 0.25
}

.text-opacity-30 {
  --tw-text-opacity: 0.3
}

.text-opacity-40 {
  --tw-text-opacity: 0.4
}

.text-opacity-50 {
  --tw-text-opacity: 0.5
}

.text-opacity-60 {
  --tw-text-opacity: 0.6
}

.text-opacity-70 {
  --tw-text-opacity: 0.7
}

.text-opacity-75 {
  --tw-text-opacity: 0.75
}

.text-opacity-80 {
  --tw-text-opacity: 0.8
}

.text-opacity-90 {
  --tw-text-opacity: 0.9
}

.text-opacity-95 {
  --tw-text-opacity: 0.95
}

.text-opacity-100 {
  --tw-text-opacity: 1
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.overflow-ellipsis {
  text-overflow: ellipsis
}

.overflow-clip {
  text-overflow: clip
}

.italic {
  font-style: italic
}

.not-italic {
  font-style: normal
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.capitalize {
  text-transform: capitalize
}

.normal-case {
  text-transform: none
}

.underline {
  text-decoration: underline
}

.line-through {
  text-decoration: line-through
}

.no-underline {
  text-decoration: none
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.subpixel-antialiased {
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto
}

.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions {
  --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
  --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
  --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
  --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
  --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.normal-nums {
  font-variant-numeric: normal
}

.ordinal {
  --tw-ordinal: ordinal
}

.slashed-zero {
  --tw-slashed-zero: slashed-zero
}

.lining-nums {
  --tw-numeric-figure: lining-nums
}

.oldstyle-nums {
  --tw-numeric-figure: oldstyle-nums
}

.proportional-nums {
  --tw-numeric-spacing: proportional-nums
}

.tabular-nums {
  --tw-numeric-spacing: tabular-nums
}

.diagonal-fractions {
  --tw-numeric-fraction: diagonal-fractions
}

.stacked-fractions {
  --tw-numeric-fraction: stacked-fractions
}

.tracking-tighter {
  letter-spacing: -0.05em
}

.tracking-tight {
  letter-spacing: -0.025em
}

.tracking-normal {
  letter-spacing: 0em
}

.tracking-wide {
  letter-spacing: 0.025em
}

.tracking-wider {
  letter-spacing: 0.05em
}

.tracking-widest {
  letter-spacing: 0.1em
}

.select-none {
  user-select: none
}

.select-text {
  user-select: text
}

.select-all {
  user-select: all
}

.select-auto {
  user-select: auto
}

.align-baseline {
  vertical-align: baseline
}

.align-top {
  vertical-align: top
}

.align-middle {
  vertical-align: middle
}

.align-bottom {
  vertical-align: bottom
}

.align-text-top {
  vertical-align: text-top
}

.align-text-bottom {
  vertical-align: text-bottom
}

.visible {
  visibility: visible
}

.invisible {
  visibility: hidden
}

.whitespace-normal {
  white-space: normal
}

.whitespace-nowrap {
  white-space: nowrap
}

.whitespace-pre {
  white-space: pre
}

.whitespace-pre-line {
  white-space: pre-line
}

.whitespace-pre-wrap {
  white-space: pre-wrap
}

.break-normal {
  overflow-wrap: normal;
  word-break: normal
}

.break-words {
  overflow-wrap: break-word
}

.break-all {
  word-break: break-all
}

.w-0 {
  width: 0px
}

.w-1 {
  width: 0.25rem
}

.w-2 {
  width: 0.5rem
}

.w-3 {
  width: 0.75rem
}

.w-4 {
  width: 1rem
}

.w-5 {
  width: 1.25rem
}

.w-6 {
  width: 1.5rem
}

.w-7 {
  width: 1.75rem
}

.w-8 {
  width: 2rem
}

.w-9 {
  width: 2.25rem
}

.w-10 {
  width: 2.5rem
}

.w-11 {
  width: 2.75rem
}

.w-12 {
  width: 3rem
}

.w-14 {
  width: 3.5rem
}

.w-16 {
  width: 4rem
}

.w-20 {
  width: 5rem
}

.w-24 {
  width: 6rem
}

.w-28 {
  width: 7rem
}

.w-32 {
  width: 8rem
}

.w-36 {
  width: 9rem
}

.w-40 {
  width: 10rem
}

.w-44 {
  width: 11rem
}

.w-48 {
  width: 12rem
}

.w-52 {
  width: 13rem
}

.w-56 {
  width: 14rem
}

.w-60 {
  width: 15rem
}

.w-64 {
  width: 16rem
}

.w-72 {
  width: 18rem
}

.w-80 {
  width: 20rem
}

.w-96 {
  width: 24rem
}

.w-auto {
  width: auto
}

.w-px {
  width: 1px
}

.w-0\.5 {
  width: 0.125rem
}

.w-1\.5 {
  width: 0.375rem
}

.w-2\.5 {
  width: 0.625rem
}

.w-3\.5 {
  width: 0.875rem
}

.w-2\/3 {
  width: 66.666667%
}

.w-3\/4 {
  width: 75%
}

.w-6\/19 {
  width: 56.25%
}

.w-1\/1 {
  width: 100%
}

.w-3\/2 {
  width: 150%
}

.w-4\/3 {
  width: 133.333%
}

.w-1\/2 {
  width: 50%
}

.w-1\/3 {
  width: 33.333333%
}

.w-1\/4 {
  width: 25%
}

.w-2\/4 {
  width: 50%
}

.w-1\/5 {
  width: 20%
}

.w-2\/5 {
  width: 40%
}

.w-3\/5 {
  width: 60%
}

.w-4\/5 {
  width: 80%
}

.w-1\/6 {
  width: 16.666667%
}

.w-2\/6 {
  width: 33.333333%
}

.w-3\/6 {
  width: 50%
}

.w-4\/6 {
  width: 66.666667%
}

.w-5\/6 {
  width: 83.333333%
}

.w-1\/12 {
  width: 8.333333%
}

.w-2\/12 {
  width: 16.666667%
}

.w-3\/12 {
  width: 25%
}

.w-4\/12 {
  width: 33.333333%
}

.w-5\/12 {
  width: 41.666667%
}

.w-6\/12 {
  width: 50%
}

.w-7\/12 {
  width: 58.333333%
}

.w-8\/12 {
  width: 66.666667%
}

.w-9\/12 {
  width: 75%
}

.w-10\/12 {
  width: 83.333333%
}

.w-11\/12 {
  width: 91.666667%
}

.w-full {
  width: 100%
}

.w-screen {
  width: 100vw
}

.w-min {
  width: min-content
}

.w-max {
  width: max-content
}

.z-0 {
  z-index: 0
}

.z-1 {
  z-index: 1
}

.z-3 {
  z-index: 3
}

.z-5 {
  z-index: 5
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-30 {
  z-index: 30
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.z-auto {
  z-index: auto
}

.gap-0 {
  gap: 0px
}

.gap-1 {
  gap: 0.25rem
}

.gap-2 {
  gap: 0.5rem
}

.gap-3 {
  gap: 0.75rem
}

.gap-4 {
  gap: 1rem
}

.gap-5 {
  gap: 1.25rem
}

.gap-6 {
  gap: 1.5rem
}

.gap-7 {
  gap: 1.75rem
}

.gap-8 {
  gap: 2rem
}

.gap-9 {
  gap: 2.25rem
}

.gap-10 {
  gap: 2.5rem
}

.gap-11 {
  gap: 2.75rem
}

.gap-12 {
  gap: 3rem
}

.gap-14 {
  gap: 3.5rem
}

.gap-16 {
  gap: 4rem
}

.gap-20 {
  gap: 5rem
}

.gap-24 {
  gap: 6rem
}

.gap-28 {
  gap: 7rem
}

.gap-32 {
  gap: 8rem
}

.gap-36 {
  gap: 9rem
}

.gap-40 {
  gap: 10rem
}

.gap-44 {
  gap: 11rem
}

.gap-48 {
  gap: 12rem
}

.gap-52 {
  gap: 13rem
}

.gap-56 {
  gap: 14rem
}

.gap-60 {
  gap: 15rem
}

.gap-64 {
  gap: 16rem
}

.gap-72 {
  gap: 18rem
}

.gap-80 {
  gap: 20rem
}

.gap-96 {
  gap: 24rem
}

.gap-px {
  gap: 1px
}

.gap-0\.5 {
  gap: 0.125rem
}

.gap-1\.5 {
  gap: 0.375rem
}

.gap-2\.5 {
  gap: 0.625rem
}

.gap-3\.5 {
  gap: 0.875rem
}

.gap-2\/3 {
  gap: 66.666667%
}

.gap-3\/4 {
  gap: 75%
}

.gap-6\/19 {
  gap: 56.25%
}

.gap-1\/1 {
  gap: 100%
}

.gap-3\/2 {
  gap: 150%
}

.gap-4\/3 {
  gap: 133.333%
}

.gap-x-0 {
  column-gap: 0px
}

.gap-x-1 {
  column-gap: 0.25rem
}

.gap-x-2 {
  column-gap: 0.5rem
}

.gap-x-3 {
  column-gap: 0.75rem
}

.gap-x-4 {
  column-gap: 1rem
}

.gap-x-5 {
  column-gap: 1.25rem
}

.gap-x-6 {
  column-gap: 1.5rem
}

.gap-x-7 {
  column-gap: 1.75rem
}

.gap-x-8 {
  column-gap: 2rem
}

.gap-x-9 {
  column-gap: 2.25rem
}

.gap-x-10 {
  column-gap: 2.5rem
}

.gap-x-11 {
  column-gap: 2.75rem
}

.gap-x-12 {
  column-gap: 3rem
}

.gap-x-14 {
  column-gap: 3.5rem
}

.gap-x-16 {
  column-gap: 4rem
}

.gap-x-20 {
  column-gap: 5rem
}

.gap-x-24 {
  column-gap: 6rem
}

.gap-x-28 {
  column-gap: 7rem
}

.gap-x-32 {
  column-gap: 8rem
}

.gap-x-36 {
  column-gap: 9rem
}

.gap-x-40 {
  column-gap: 10rem
}

.gap-x-44 {
  column-gap: 11rem
}

.gap-x-48 {
  column-gap: 12rem
}

.gap-x-52 {
  column-gap: 13rem
}

.gap-x-56 {
  column-gap: 14rem
}

.gap-x-60 {
  column-gap: 15rem
}

.gap-x-64 {
  column-gap: 16rem
}

.gap-x-72 {
  column-gap: 18rem
}

.gap-x-80 {
  column-gap: 20rem
}

.gap-x-96 {
  column-gap: 24rem
}

.gap-x-px {
  column-gap: 1px
}

.gap-x-0\.5 {
  column-gap: 0.125rem
}

.gap-x-1\.5 {
  column-gap: 0.375rem
}

.gap-x-2\.5 {
  column-gap: 0.625rem
}

.gap-x-3\.5 {
  column-gap: 0.875rem
}

.gap-x-2\/3 {
  column-gap: 66.666667%
}

.gap-x-3\/4 {
  column-gap: 75%
}

.gap-x-6\/19 {
  column-gap: 56.25%
}

.gap-x-1\/1 {
  column-gap: 100%
}

.gap-x-3\/2 {
  column-gap: 150%
}

.gap-x-4\/3 {
  column-gap: 133.333%
}

.gap-y-0 {
  row-gap: 0px
}

.gap-y-1 {
  row-gap: 0.25rem
}

.gap-y-2 {
  row-gap: 0.5rem
}

.gap-y-3 {
  row-gap: 0.75rem
}

.gap-y-4 {
  row-gap: 1rem
}

.gap-y-5 {
  row-gap: 1.25rem
}

.gap-y-6 {
  row-gap: 1.5rem
}

.gap-y-7 {
  row-gap: 1.75rem
}

.gap-y-8 {
  row-gap: 2rem
}

.gap-y-9 {
  row-gap: 2.25rem
}

.gap-y-10 {
  row-gap: 2.5rem
}

.gap-y-11 {
  row-gap: 2.75rem
}

.gap-y-12 {
  row-gap: 3rem
}

.gap-y-14 {
  row-gap: 3.5rem
}

.gap-y-16 {
  row-gap: 4rem
}

.gap-y-20 {
  row-gap: 5rem
}

.gap-y-24 {
  row-gap: 6rem
}

.gap-y-28 {
  row-gap: 7rem
}

.gap-y-32 {
  row-gap: 8rem
}

.gap-y-36 {
  row-gap: 9rem
}

.gap-y-40 {
  row-gap: 10rem
}

.gap-y-44 {
  row-gap: 11rem
}

.gap-y-48 {
  row-gap: 12rem
}

.gap-y-52 {
  row-gap: 13rem
}

.gap-y-56 {
  row-gap: 14rem
}

.gap-y-60 {
  row-gap: 15rem
}

.gap-y-64 {
  row-gap: 16rem
}

.gap-y-72 {
  row-gap: 18rem
}

.gap-y-80 {
  row-gap: 20rem
}

.gap-y-96 {
  row-gap: 24rem
}

.gap-y-px {
  row-gap: 1px
}

.gap-y-0\.5 {
  row-gap: 0.125rem
}

.gap-y-1\.5 {
  row-gap: 0.375rem
}

.gap-y-2\.5 {
  row-gap: 0.625rem
}

.gap-y-3\.5 {
  row-gap: 0.875rem
}

.gap-y-2\/3 {
  row-gap: 66.666667%
}

.gap-y-3\/4 {
  row-gap: 75%
}

.gap-y-6\/19 {
  row-gap: 56.25%
}

.gap-y-1\/1 {
  row-gap: 100%
}

.gap-y-3\/2 {
  row-gap: 150%
}

.gap-y-4\/3 {
  row-gap: 133.333%
}

.grid-flow-row {
  grid-auto-flow: row
}

.grid-flow-col {
  grid-auto-flow: column
}

.grid-flow-row-dense {
  grid-auto-flow: row dense
}

.grid-flow-col-dense {
  grid-auto-flow: column dense
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr))
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr))
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr))
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr))
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr))
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr))
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr))
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr))
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr))
}

.grid-cols-none {
  grid-template-columns: none
}

.auto-cols-auto {
  grid-auto-columns: auto
}

.auto-cols-min {
  grid-auto-columns: min-content
}

.auto-cols-max {
  grid-auto-columns: max-content
}

.auto-cols-fr {
  grid-auto-columns: minmax(0, 1fr)
}

.col-auto {
  grid-column: auto
}

.col-span-1 {
  grid-column: span 1 / span 1
}

.col-span-2 {
  grid-column: span 2 / span 2
}

.col-span-3 {
  grid-column: span 3 / span 3
}

.col-span-4 {
  grid-column: span 4 / span 4
}

.col-span-5 {
  grid-column: span 5 / span 5
}

.col-span-6 {
  grid-column: span 6 / span 6
}

.col-span-7 {
  grid-column: span 7 / span 7
}

.col-span-8 {
  grid-column: span 8 / span 8
}

.col-span-9 {
  grid-column: span 9 / span 9
}

.col-span-10 {
  grid-column: span 10 / span 10
}

.col-span-11 {
  grid-column: span 11 / span 11
}

.col-span-12 {
  grid-column: span 12 / span 12
}

.col-span-full {
  grid-column: 1 / -1
}

.col-start-1 {
  grid-column-start: 1
}

.col-start-2 {
  grid-column-start: 2
}

.col-start-3 {
  grid-column-start: 3
}

.col-start-4 {
  grid-column-start: 4
}

.col-start-5 {
  grid-column-start: 5
}

.col-start-6 {
  grid-column-start: 6
}

.col-start-7 {
  grid-column-start: 7
}

.col-start-8 {
  grid-column-start: 8
}

.col-start-9 {
  grid-column-start: 9
}

.col-start-10 {
  grid-column-start: 10
}

.col-start-11 {
  grid-column-start: 11
}

.col-start-12 {
  grid-column-start: 12
}

.col-start-13 {
  grid-column-start: 13
}

.col-start-auto {
  grid-column-start: auto
}

.col-end-1 {
  grid-column-end: 1
}

.col-end-2 {
  grid-column-end: 2
}

.col-end-3 {
  grid-column-end: 3
}

.col-end-4 {
  grid-column-end: 4
}

.col-end-5 {
  grid-column-end: 5
}

.col-end-6 {
  grid-column-end: 6
}

.col-end-7 {
  grid-column-end: 7
}

.col-end-8 {
  grid-column-end: 8
}

.col-end-9 {
  grid-column-end: 9
}

.col-end-10 {
  grid-column-end: 10
}

.col-end-11 {
  grid-column-end: 11
}

.col-end-12 {
  grid-column-end: 12
}

.col-end-13 {
  grid-column-end: 13
}

.col-end-auto {
  grid-column-end: auto
}

.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr))
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr))
}

.grid-rows-3 {
  grid-template-rows: repeat(3, minmax(0, 1fr))
}

.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr))
}

.grid-rows-5 {
  grid-template-rows: repeat(5, minmax(0, 1fr))
}

.grid-rows-6 {
  grid-template-rows: repeat(6, minmax(0, 1fr))
}

.grid-rows-none {
  grid-template-rows: none
}

.auto-rows-auto {
  grid-auto-rows: auto
}

.auto-rows-min {
  grid-auto-rows: min-content
}

.auto-rows-max {
  grid-auto-rows: max-content
}

.auto-rows-fr {
  grid-auto-rows: minmax(0, 1fr)
}

.row-auto {
  grid-row: auto
}

.row-span-1 {
  grid-row: span 1 / span 1
}

.row-span-2 {
  grid-row: span 2 / span 2
}

.row-span-3 {
  grid-row: span 3 / span 3
}

.row-span-4 {
  grid-row: span 4 / span 4
}

.row-span-5 {
  grid-row: span 5 / span 5
}

.row-span-6 {
  grid-row: span 6 / span 6
}

.row-span-full {
  grid-row: 1 / -1
}

.row-start-1 {
  grid-row-start: 1
}

.row-start-2 {
  grid-row-start: 2
}

.row-start-3 {
  grid-row-start: 3
}

.row-start-4 {
  grid-row-start: 4
}

.row-start-5 {
  grid-row-start: 5
}

.row-start-6 {
  grid-row-start: 6
}

.row-start-7 {
  grid-row-start: 7
}

.row-start-auto {
  grid-row-start: auto
}

.row-end-1 {
  grid-row-end: 1
}

.row-end-2 {
  grid-row-end: 2
}

.row-end-3 {
  grid-row-end: 3
}

.row-end-4 {
  grid-row-end: 4
}

.row-end-5 {
  grid-row-end: 5
}

.row-end-6 {
  grid-row-end: 6
}

.row-end-7 {
  grid-row-end: 7
}

.row-end-auto {
  grid-row-end: auto
}

.transform {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform-gpu {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform-none {
  transform: none
}

.rotate-0 {
  --tw-rotate: 0deg
}

.rotate-1 {
  --tw-rotate: 1deg
}

.rotate-2 {
  --tw-rotate: 2deg
}

.rotate-3 {
  --tw-rotate: 3deg
}

.rotate-6 {
  --tw-rotate: 6deg
}

.rotate-12 {
  --tw-rotate: 12deg
}

.rotate-30 {
  --tw-rotate: 30deg
}

.rotate-45 {
  --tw-rotate: 45deg
}

.rotate-90 {
  --tw-rotate: 90deg
}

.rotate-180 {
  --tw-rotate: 180deg
}

.-rotate-180 {
  --tw-rotate: -180deg
}

.-rotate-90 {
  --tw-rotate: -90deg
}

.-rotate-45 {
  --tw-rotate: -45deg
}

.-rotate-12 {
  --tw-rotate: -12deg
}

.-rotate-6 {
  --tw-rotate: -6deg
}

.-rotate-3 {
  --tw-rotate: -3deg
}

.-rotate-2 {
  --tw-rotate: -2deg
}

.-rotate-1 {
  --tw-rotate: -1deg
}

.duration-75 {
  transition-duration: 75ms
}

.duration-100 {
  transition-duration: 100ms
}

.duration-150 {
  transition-duration: 150ms
}

.duration-200 {
  transition-duration: 200ms
}

.duration-300 {
  transition-duration: 300ms
}

.duration-500 {
  transition-duration: 500ms
}

.duration-700 {
  transition-duration: 700ms
}

.duration-1000 {
  transition-duration: 1000ms
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0
  }
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1)
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1)
  }
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite
}

@media (max-width: 767px) {
  .mb\:sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .mb\:not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .mb\:focus-within\:sr-only:focus-within {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .mb\:focus-within\:not-sr-only:focus-within {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .mb\:focus\:sr-only:focus {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .mb\:focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .mb\:border-collapse {
    border-collapse: collapse
  }

  .mb\:border-separate {
    border-collapse: separate
  }

  .mb\:block {
    display: block
  }

  .mb\:inline-block {
    display: inline-block
  }

  .mb\:inline {
    display: inline
  }

  .mb\:flex {
    display: flex
  }

  .mb\:inline-flex {
    display: inline-flex
  }

  .mb\:table {
    display: table
  }

  .mb\:table-caption {
    display: table-caption
  }

  .mb\:table-cell {
    display: table-cell
  }

  .mb\:table-column {
    display: table-column
  }

  .mb\:table-column-group {
    display: table-column-group
  }

  .mb\:table-footer-group {
    display: table-footer-group
  }

  .mb\:table-header-group {
    display: table-header-group
  }

  .mb\:table-row-group {
    display: table-row-group
  }

  .mb\:table-row {
    display: table-row
  }

  .mb\:flow-root {
    display: flow-root
  }

  .mb\:grid {
    display: grid
  }

  .mb\:inline-grid {
    display: inline-grid
  }

  .mb\:contents {
    display: contents
  }

  .mb\:hidden {
    display: none
  }

  .mb\:flex-row {
    flex-direction: row
  }

  .mb\:flex-row-reverse {
    flex-direction: row-reverse
  }

  .mb\:flex-col {
    flex-direction: column
  }

  .mb\:flex-col-reverse {
    flex-direction: column-reverse
  }

  .mb\:flex-wrap {
    flex-wrap: wrap
  }

  .mb\:flex-wrap-reverse {
    flex-wrap: wrap-reverse
  }

  .mb\:flex-nowrap {
    flex-wrap: nowrap
  }

  .mb\:place-items-auto {
    place-items: auto
  }

  .mb\:place-items-start {
    place-items: start
  }

  .mb\:place-items-end {
    place-items: end
  }

  .mb\:place-items-center {
    place-items: center
  }

  .mb\:place-items-stretch {
    place-items: stretch
  }

  .mb\:place-content-center {
    place-content: center
  }

  .mb\:place-content-start {
    place-content: start
  }

  .mb\:place-content-end {
    place-content: end
  }

  .mb\:place-content-between {
    place-content: space-between
  }

  .mb\:place-content-around {
    place-content: space-around
  }

  .mb\:place-content-evenly {
    place-content: space-evenly
  }

  .mb\:place-content-stretch {
    place-content: stretch
  }

  .mb\:place-self-auto {
    place-self: auto
  }

  .mb\:place-self-start {
    place-self: start
  }

  .mb\:place-self-end {
    place-self: end
  }

  .mb\:place-self-center {
    place-self: center
  }

  .mb\:place-self-stretch {
    place-self: stretch
  }

  .mb\:items-start {
    align-items: flex-start
  }

  .mb\:items-end {
    align-items: flex-end
  }

  .mb\:items-center {
    align-items: center
  }

  .mb\:items-baseline {
    align-items: baseline
  }

  .mb\:items-stretch {
    align-items: stretch
  }

  .mb\:content-center {
    align-content: center
  }

  .mb\:content-start {
    align-content: flex-start
  }

  .mb\:content-end {
    align-content: flex-end
  }

  .mb\:content-between {
    align-content: space-between
  }

  .mb\:content-around {
    align-content: space-around
  }

  .mb\:content-evenly {
    align-content: space-evenly
  }

  .mb\:self-auto {
    align-self: auto
  }

  .mb\:self-start {
    align-self: flex-start
  }

  .mb\:self-end {
    align-self: flex-end
  }

  .mb\:self-center {
    align-self: center
  }

  .mb\:self-stretch {
    align-self: stretch
  }

  .mb\:justify-items-auto {
    justify-items: auto
  }

  .mb\:justify-items-start {
    justify-items: start
  }

  .mb\:justify-items-end {
    justify-items: end
  }

  .mb\:justify-items-center {
    justify-items: center
  }

  .mb\:justify-items-stretch {
    justify-items: stretch
  }

  .mb\:justify-start {
    justify-content: flex-start
  }

  .mb\:justify-end {
    justify-content: flex-end
  }

  .mb\:justify-center {
    justify-content: center
  }

  .mb\:justify-between {
    justify-content: space-between
  }

  .mb\:justify-around {
    justify-content: space-around
  }

  .mb\:justify-evenly {
    justify-content: space-evenly
  }

  .mb\:justify-self-auto {
    justify-self: auto
  }

  .mb\:justify-self-start {
    justify-self: start
  }

  .mb\:justify-self-end {
    justify-self: end
  }

  .mb\:justify-self-center {
    justify-self: center
  }

  .mb\:justify-self-stretch {
    justify-self: stretch
  }

  .mb\:flex-1 {
    flex: 1 1 0%
  }

  .mb\:flex-auto {
    flex: 1 1 auto
  }

  .mb\:flex-initial {
    flex: 0 1 auto
  }

  .mb\:flex-none {
    flex: none
  }

  .mb\:flex-grow-0 {
    flex-grow: 0
  }

  .mb\:flex-grow {
    flex-grow: 1
  }

  .mb\:flex-shrink-0 {
    flex-shrink: 0
  }

  .mb\:flex-shrink {
    flex-shrink: 1
  }

  .mb\:order-1 {
    order: 1
  }

  .mb\:order-2 {
    order: 2
  }

  .mb\:order-3 {
    order: 3
  }

  .mb\:order-4 {
    order: 4
  }

  .mb\:order-5 {
    order: 5
  }

  .mb\:order-6 {
    order: 6
  }

  .mb\:order-7 {
    order: 7
  }

  .mb\:order-8 {
    order: 8
  }

  .mb\:order-9 {
    order: 9
  }

  .mb\:order-10 {
    order: 10
  }

  .mb\:order-11 {
    order: 11
  }

  .mb\:order-12 {
    order: 12
  }

  .mb\:order-first {
    order: -9999
  }

  .mb\:order-last {
    order: 9999
  }

  .mb\:order-none {
    order: 0
  }

  .mb\:float-right {
    float: right
  }

  .mb\:float-left {
    float: left
  }

  .mb\:float-none {
    float: none
  }

  .mb\:font-thin {
    font-weight: 100
  }

  .mb\:font-extralight {
    font-weight: 200
  }

  .mb\:font-light {
    font-weight: 300
  }

  .mb\:font-normal {
    font-weight: 400
  }

  .mb\:font-medium {
    font-weight: 500
  }

  .mb\:font-semibold {
    font-weight: 600
  }

  .mb\:font-bold {
    font-weight: 700
  }

  .mb\:font-extrabold {
    font-weight: 800
  }

  .mb\:font-black {
    font-weight: 900
  }

  .mb\:h-0 {
    height: 0px
  }

  .mb\:h-1 {
    height: 0.25rem
  }

  .mb\:h-2 {
    height: 0.5rem
  }

  .mb\:h-3 {
    height: 0.75rem
  }

  .mb\:h-4 {
    height: 1rem
  }

  .mb\:h-5 {
    height: 1.25rem
  }

  .mb\:h-6 {
    height: 1.5rem
  }

  .mb\:h-7 {
    height: 1.75rem
  }

  .mb\:h-8 {
    height: 2rem
  }

  .mb\:h-9 {
    height: 2.25rem
  }

  .mb\:h-10 {
    height: 2.5rem
  }

  .mb\:h-11 {
    height: 2.75rem
  }

  .mb\:h-12 {
    height: 3rem
  }

  .mb\:h-14 {
    height: 3.5rem
  }

  .mb\:h-16 {
    height: 4rem
  }

  .mb\:h-20 {
    height: 5rem
  }

  .mb\:h-24 {
    height: 6rem
  }

  .mb\:h-28 {
    height: 7rem
  }

  .mb\:h-32 {
    height: 8rem
  }

  .mb\:h-36 {
    height: 9rem
  }

  .mb\:h-40 {
    height: 10rem
  }

  .mb\:h-44 {
    height: 11rem
  }

  .mb\:h-48 {
    height: 12rem
  }

  .mb\:h-52 {
    height: 13rem
  }

  .mb\:h-56 {
    height: 14rem
  }

  .mb\:h-60 {
    height: 15rem
  }

  .mb\:h-64 {
    height: 16rem
  }

  .mb\:h-72 {
    height: 18rem
  }

  .mb\:h-80 {
    height: 20rem
  }

  .mb\:h-96 {
    height: 24rem
  }

  .mb\:h-auto {
    height: auto
  }

  .mb\:h-px {
    height: 1px
  }

  .mb\:h-0\.5 {
    height: 0.125rem
  }

  .mb\:h-1\.5 {
    height: 0.375rem
  }

  .mb\:h-2\.5 {
    height: 0.625rem
  }

  .mb\:h-3\.5 {
    height: 0.875rem
  }

  .mb\:h-2\/3 {
    height: 66.666667%
  }

  .mb\:h-3\/4 {
    height: 75%
  }

  .mb\:h-6\/19 {
    height: 56.25%
  }

  .mb\:h-1\/1 {
    height: 100%
  }

  .mb\:h-3\/2 {
    height: 150%
  }

  .mb\:h-4\/3 {
    height: 133.333%
  }

  .mb\:h-1\/2 {
    height: 50%
  }

  .mb\:h-1\/3 {
    height: 33.333333%
  }

  .mb\:h-1\/4 {
    height: 25%
  }

  .mb\:h-2\/4 {
    height: 50%
  }

  .mb\:h-1\/5 {
    height: 20%
  }

  .mb\:h-2\/5 {
    height: 40%
  }

  .mb\:h-3\/5 {
    height: 60%
  }

  .mb\:h-4\/5 {
    height: 80%
  }

  .mb\:h-1\/6 {
    height: 16.666667%
  }

  .mb\:h-2\/6 {
    height: 33.333333%
  }

  .mb\:h-3\/6 {
    height: 50%
  }

  .mb\:h-4\/6 {
    height: 66.666667%
  }

  .mb\:h-5\/6 {
    height: 83.333333%
  }

  .mb\:h-full {
    height: 100%
  }

  .mb\:h-screen {
    height: 100vh
  }

  .mb\:text-xs {
    font-size: .75rem
  }

  .mb\:text-sm {
    font-size: .875rem
  }

  .mb\:text-md {
    font-size: 1rem
  }

  .mb\:text-lg {
    font-size: 1.125rem
  }

  .mb\:text-xl {
    font-size: 1.25rem
  }

  .mb\:text-2xl {
    font-size: 1.5rem
  }

  .mb\:text-3xl {
    font-size: 1.875rem
  }

  .mb\:text-4xl {
    font-size: 2.25rem
  }

  .mb\:text-5xl {
    font-size: 3rem
  }

  .mb\:text-6xl {
    font-size: 4rem
  }

  .mb\:text-7xl {
    font-size: 5rem
  }

  .mb\:text-8xl {
    font-size: 6rem
  }

  .mb\:text-9xl {
    font-size: 8rem
  }

  .mb\:list-inside {
    list-style-position: inside
  }

  .mb\:list-outside {
    list-style-position: outside
  }

  .mb\:list-none {
    list-style-type: none
  }

  .mb\:list-disc {
    list-style-type: disc
  }

  .mb\:list-decimal {
    list-style-type: decimal
  }

  .mb\:m-0 {
    margin: 0px
  }

  .mb\:m-1 {
    margin: 0.25rem
  }

  .mb\:m-2 {
    margin: 0.5rem
  }

  .mb\:m-3 {
    margin: 0.75rem
  }

  .mb\:m-4 {
    margin: 1rem
  }

  .mb\:m-5 {
    margin: 1.25rem
  }

  .mb\:m-6 {
    margin: 1.5rem
  }

  .mb\:m-7 {
    margin: 1.75rem
  }

  .mb\:m-8 {
    margin: 2rem
  }

  .mb\:m-9 {
    margin: 2.25rem
  }

  .mb\:m-10 {
    margin: 2.5rem
  }

  .mb\:m-11 {
    margin: 2.75rem
  }

  .mb\:m-12 {
    margin: 3rem
  }

  .mb\:m-14 {
    margin: 3.5rem
  }

  .mb\:m-16 {
    margin: 4rem
  }

  .mb\:m-20 {
    margin: 5rem
  }

  .mb\:m-24 {
    margin: 6rem
  }

  .mb\:m-28 {
    margin: 7rem
  }

  .mb\:m-32 {
    margin: 8rem
  }

  .mb\:m-36 {
    margin: 9rem
  }

  .mb\:m-40 {
    margin: 10rem
  }

  .mb\:m-44 {
    margin: 11rem
  }

  .mb\:m-48 {
    margin: 12rem
  }

  .mb\:m-52 {
    margin: 13rem
  }

  .mb\:m-56 {
    margin: 14rem
  }

  .mb\:m-60 {
    margin: 15rem
  }

  .mb\:m-64 {
    margin: 16rem
  }

  .mb\:m-72 {
    margin: 18rem
  }

  .mb\:m-80 {
    margin: 20rem
  }

  .mb\:m-96 {
    margin: 24rem
  }

  .mb\:m-auto {
    margin: auto
  }

  .mb\:m-px {
    margin: 1px
  }

  .mb\:m-0\.5 {
    margin: 0.125rem
  }

  .mb\:m-1\.5 {
    margin: 0.375rem
  }

  .mb\:m-2\.5 {
    margin: 0.625rem
  }

  .mb\:m-3\.5 {
    margin: 0.875rem
  }

  .mb\:m-2\/3 {
    margin: 66.666667%
  }

  .mb\:m-3\/4 {
    margin: 75%
  }

  .mb\:m-6\/19 {
    margin: 56.25%
  }

  .mb\:m-1\/1 {
    margin: 100%
  }

  .mb\:m-3\/2 {
    margin: 150%
  }

  .mb\:m-4\/3 {
    margin: 133.333%
  }

  .mb\:-m-0 {
    margin: 0px
  }

  .mb\:-m-1 {
    margin: -0.25rem
  }

  .mb\:-m-2 {
    margin: -0.5rem
  }

  .mb\:-m-3 {
    margin: -0.75rem
  }

  .mb\:-m-4 {
    margin: -1rem
  }

  .mb\:-m-5 {
    margin: -1.25rem
  }

  .mb\:-m-6 {
    margin: -1.5rem
  }

  .mb\:-m-7 {
    margin: -1.75rem
  }

  .mb\:-m-8 {
    margin: -2rem
  }

  .mb\:-m-9 {
    margin: -2.25rem
  }

  .mb\:-m-10 {
    margin: -2.5rem
  }

  .mb\:-m-11 {
    margin: -2.75rem
  }

  .mb\:-m-12 {
    margin: -3rem
  }

  .mb\:-m-14 {
    margin: -3.5rem
  }

  .mb\:-m-16 {
    margin: -4rem
  }

  .mb\:-m-20 {
    margin: -5rem
  }

  .mb\:-m-24 {
    margin: -6rem
  }

  .mb\:-m-28 {
    margin: -7rem
  }

  .mb\:-m-32 {
    margin: -8rem
  }

  .mb\:-m-36 {
    margin: -9rem
  }

  .mb\:-m-40 {
    margin: -10rem
  }

  .mb\:-m-44 {
    margin: -11rem
  }

  .mb\:-m-48 {
    margin: -12rem
  }

  .mb\:-m-52 {
    margin: -13rem
  }

  .mb\:-m-56 {
    margin: -14rem
  }

  .mb\:-m-60 {
    margin: -15rem
  }

  .mb\:-m-64 {
    margin: -16rem
  }

  .mb\:-m-72 {
    margin: -18rem
  }

  .mb\:-m-80 {
    margin: -20rem
  }

  .mb\:-m-96 {
    margin: -24rem
  }

  .mb\:-m-px {
    margin: -1px
  }

  .mb\:-m-0\.5 {
    margin: -0.125rem
  }

  .mb\:-m-1\.5 {
    margin: -0.375rem
  }

  .mb\:-m-2\.5 {
    margin: -0.625rem
  }

  .mb\:-m-3\.5 {
    margin: -0.875rem
  }

  .mb\:-m-2\/3 {
    margin: -66.66667%
  }

  .mb\:-m-3\/4 {
    margin: -75%
  }

  .mb\:-m-6\/19 {
    margin: -56.25%
  }

  .mb\:-m-1\/1 {
    margin: -100%
  }

  .mb\:-m-3\/2 {
    margin: -150%
  }

  .mb\:-m-4\/3 {
    margin: -133.333%
  }

  .mb\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px
  }

  .mb\:mx-0 {
    margin-left: 0px;
    margin-right: 0px
  }

  .mb\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem
  }

  .mb\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem
  }

  .mb\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
  }

  .mb\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem
  }

  .mb\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
  }

  .mb\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem
  }

  .mb\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
  }

  .mb\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
  }

  .mb\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }

  .mb\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
  }

  .mb\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
  }

  .mb\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
  }

  .mb\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem
  }

  .mb\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem
  }

  .mb\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
  }

  .mb\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem
  }

  .mb\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem
  }

  .mb\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem
  }

  .mb\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }

  .mb\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem
  }

  .mb\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem
  }

  .mb\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem
  }

  .mb\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem
  }

  .mb\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem
  }

  .mb\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem
  }

  .mb\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem
  }

  .mb\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem
  }

  .mb\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem
  }

  .mb\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem
  }

  .mb\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem
  }

  .mb\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem
  }

  .mb\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem
  }

  .mb\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem
  }

  .mb\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem
  }

  .mb\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem
  }

  .mb\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem
  }

  .mb\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem
  }

  .mb\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem
  }

  .mb\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem
  }

  .mb\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem
  }

  .mb\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem
  }

  .mb\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem
  }

  .mb\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem
  }

  .mb\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem
  }

  .mb\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem
  }

  .mb\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem
  }

  .mb\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem
  }

  .mb\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem
  }

  .mb\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem
  }

  .mb\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem
  }

  .mb\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem
  }

  .mb\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem
  }

  .mb\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem
  }

  .mb\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem
  }

  .mb\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem
  }

  .mb\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem
  }

  .mb\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem
  }

  .mb\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem
  }

  .mb\:my-auto {
    margin-top: auto;
    margin-bottom: auto
  }

  .mb\:mx-auto {
    margin-left: auto;
    margin-right: auto
  }

  .mb\:my-px {
    margin-top: 1px;
    margin-bottom: 1px
  }

  .mb\:mx-px {
    margin-left: 1px;
    margin-right: 1px
  }

  .mb\:my-0\.5 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem
  }

  .mb\:mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem
  }

  .mb\:my-1\.5 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem
  }

  .mb\:mx-1\.5 {
    margin-left: 0.375rem;
    margin-right: 0.375rem
  }

  .mb\:my-2\.5 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem
  }

  .mb\:mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem
  }

  .mb\:my-3\.5 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem
  }

  .mb\:mx-3\.5 {
    margin-left: 0.875rem;
    margin-right: 0.875rem
  }

  .mb\:my-2\/3 {
    margin-top: 66.666667%;
    margin-bottom: 66.666667%
  }

  .mb\:mx-2\/3 {
    margin-left: 66.666667%;
    margin-right: 66.666667%
  }

  .mb\:my-3\/4 {
    margin-top: 75%;
    margin-bottom: 75%
  }

  .mb\:mx-3\/4 {
    margin-left: 75%;
    margin-right: 75%
  }

  .mb\:my-6\/19 {
    margin-top: 56.25%;
    margin-bottom: 56.25%
  }

  .mb\:mx-6\/19 {
    margin-left: 56.25%;
    margin-right: 56.25%
  }

  .mb\:my-1\/1 {
    margin-top: 100%;
    margin-bottom: 100%
  }

  .mb\:mx-1\/1 {
    margin-left: 100%;
    margin-right: 100%
  }

  .mb\:my-3\/2 {
    margin-top: 150%;
    margin-bottom: 150%
  }

  .mb\:mx-3\/2 {
    margin-left: 150%;
    margin-right: 150%
  }

  .mb\:my-4\/3 {
    margin-top: 133.333%;
    margin-bottom: 133.333%
  }

  .mb\:mx-4\/3 {
    margin-left: 133.333%;
    margin-right: 133.333%
  }

  .mb\:-my-0 {
    margin-top: 0px;
    margin-bottom: 0px
  }

  .mb\:-mx-0 {
    margin-left: 0px;
    margin-right: 0px
  }

  .mb\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem
  }

  .mb\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem
  }

  .mb\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem
  }

  .mb\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem
  }

  .mb\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem
  }

  .mb\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem
  }

  .mb\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem
  }

  .mb\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem
  }

  .mb\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem
  }

  .mb\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem
  }

  .mb\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem
  }

  .mb\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem
  }

  .mb\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem
  }

  .mb\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem
  }

  .mb\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem
  }

  .mb\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem
  }

  .mb\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem
  }

  .mb\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem
  }

  .mb\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem
  }

  .mb\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem
  }

  .mb\:-my-11 {
    margin-top: -2.75rem;
    margin-bottom: -2.75rem
  }

  .mb\:-mx-11 {
    margin-left: -2.75rem;
    margin-right: -2.75rem
  }

  .mb\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem
  }

  .mb\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem
  }

  .mb\:-my-14 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem
  }

  .mb\:-mx-14 {
    margin-left: -3.5rem;
    margin-right: -3.5rem
  }

  .mb\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem
  }

  .mb\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem
  }

  .mb\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem
  }

  .mb\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem
  }

  .mb\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem
  }

  .mb\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem
  }

  .mb\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem
  }

  .mb\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem
  }

  .mb\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem
  }

  .mb\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem
  }

  .mb\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem
  }

  .mb\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem
  }

  .mb\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem
  }

  .mb\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem
  }

  .mb\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem
  }

  .mb\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem
  }

  .mb\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem
  }

  .mb\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem
  }

  .mb\:-my-52 {
    margin-top: -13rem;
    margin-bottom: -13rem
  }

  .mb\:-mx-52 {
    margin-left: -13rem;
    margin-right: -13rem
  }

  .mb\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem
  }

  .mb\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem
  }

  .mb\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem
  }

  .mb\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem
  }

  .mb\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem
  }

  .mb\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem
  }

  .mb\:-my-72 {
    margin-top: -18rem;
    margin-bottom: -18rem
  }

  .mb\:-mx-72 {
    margin-left: -18rem;
    margin-right: -18rem
  }

  .mb\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem
  }

  .mb\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem
  }

  .mb\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem
  }

  .mb\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem
  }

  .mb\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px
  }

  .mb\:-mx-px {
    margin-left: -1px;
    margin-right: -1px
  }

  .mb\:-my-0\.5 {
    margin-top: -0.125rem;
    margin-bottom: -0.125rem
  }

  .mb\:-mx-0\.5 {
    margin-left: -0.125rem;
    margin-right: -0.125rem
  }

  .mb\:-my-1\.5 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem
  }

  .mb\:-mx-1\.5 {
    margin-left: -0.375rem;
    margin-right: -0.375rem
  }

  .mb\:-my-2\.5 {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem
  }

  .mb\:-mx-2\.5 {
    margin-left: -0.625rem;
    margin-right: -0.625rem
  }

  .mb\:-my-3\.5 {
    margin-top: -0.875rem;
    margin-bottom: -0.875rem
  }

  .mb\:-mx-3\.5 {
    margin-left: -0.875rem;
    margin-right: -0.875rem
  }

  .mb\:-my-2\/3 {
    margin-top: -66.66667%;
    margin-bottom: -66.66667%
  }

  .mb\:-mx-2\/3 {
    margin-left: -66.66667%;
    margin-right: -66.66667%
  }

  .mb\:-my-3\/4 {
    margin-top: -75%;
    margin-bottom: -75%
  }

  .mb\:-mx-3\/4 {
    margin-left: -75%;
    margin-right: -75%
  }

  .mb\:-my-6\/19 {
    margin-top: -56.25%;
    margin-bottom: -56.25%
  }

  .mb\:-mx-6\/19 {
    margin-left: -56.25%;
    margin-right: -56.25%
  }

  .mb\:-my-1\/1 {
    margin-top: -100%;
    margin-bottom: -100%
  }

  .mb\:-mx-1\/1 {
    margin-left: -100%;
    margin-right: -100%
  }

  .mb\:-my-3\/2 {
    margin-top: -150%;
    margin-bottom: -150%
  }

  .mb\:-mx-3\/2 {
    margin-left: -150%;
    margin-right: -150%
  }

  .mb\:-my-4\/3 {
    margin-top: -133.333%;
    margin-bottom: -133.333%
  }

  .mb\:-mx-4\/3 {
    margin-left: -133.333%;
    margin-right: -133.333%
  }

  .mb\:mt-0 {
    margin-top: 0px
  }

  .mb\:mr-0 {
    margin-right: 0px
  }

  .mb\:mb-0 {
    margin-bottom: 0px
  }

  .mb\:ml-0 {
    margin-left: 0px
  }

  .mb\:mt-1 {
    margin-top: 0.25rem
  }

  .mb\:mr-1 {
    margin-right: 0.25rem
  }

  .mb\:mb-1 {
    margin-bottom: 0.25rem
  }

  .mb\:ml-1 {
    margin-left: 0.25rem
  }

  .mb\:mt-2 {
    margin-top: 0.5rem
  }

  .mb\:mr-2 {
    margin-right: 0.5rem
  }

  .mb\:mb-2 {
    margin-bottom: 0.5rem
  }

  .mb\:ml-2 {
    margin-left: 0.5rem
  }

  .mb\:mt-3 {
    margin-top: 0.75rem
  }

  .mb\:mr-3 {
    margin-right: 0.75rem
  }

  .mb\:mb-3 {
    margin-bottom: 0.75rem
  }

  .mb\:ml-3 {
    margin-left: 0.75rem
  }

  .mb\:mt-4 {
    margin-top: 1rem
  }

  .mb\:mr-4 {
    margin-right: 1rem
  }

  .mb\:mb-4 {
    margin-bottom: 1rem
  }

  .mb\:ml-4 {
    margin-left: 1rem
  }

  .mb\:mt-5 {
    margin-top: 1.25rem
  }

  .mb\:mr-5 {
    margin-right: 1.25rem
  }

  .mb\:mb-5 {
    margin-bottom: 1.25rem
  }

  .mb\:ml-5 {
    margin-left: 1.25rem
  }

  .mb\:mt-6 {
    margin-top: 1.5rem
  }

  .mb\:mr-6 {
    margin-right: 1.5rem
  }

  .mb\:mb-6 {
    margin-bottom: 1.5rem
  }

  .mb\:ml-6 {
    margin-left: 1.5rem
  }

  .mb\:mt-7 {
    margin-top: 1.75rem
  }

  .mb\:mr-7 {
    margin-right: 1.75rem
  }

  .mb\:mb-7 {
    margin-bottom: 1.75rem
  }

  .mb\:ml-7 {
    margin-left: 1.75rem
  }

  .mb\:mt-8 {
    margin-top: 2rem
  }

  .mb\:mr-8 {
    margin-right: 2rem
  }

  .mb\:mb-8 {
    margin-bottom: 2rem
  }

  .mb\:ml-8 {
    margin-left: 2rem
  }

  .mb\:mt-9 {
    margin-top: 2.25rem
  }

  .mb\:mr-9 {
    margin-right: 2.25rem
  }

  .mb\:mb-9 {
    margin-bottom: 2.25rem
  }

  .mb\:ml-9 {
    margin-left: 2.25rem
  }

  .mb\:mt-10 {
    margin-top: 2.5rem
  }

  .mb\:mr-10 {
    margin-right: 2.5rem
  }

  .mb\:mb-10 {
    margin-bottom: 2.5rem
  }

  .mb\:ml-10 {
    margin-left: 2.5rem
  }

  .mb\:mt-11 {
    margin-top: 2.75rem
  }

  .mb\:mr-11 {
    margin-right: 2.75rem
  }

  .mb\:mb-11 {
    margin-bottom: 2.75rem
  }

  .mb\:ml-11 {
    margin-left: 2.75rem
  }

  .mb\:mt-12 {
    margin-top: 3rem
  }

  .mb\:mr-12 {
    margin-right: 3rem
  }

  .mb\:mb-12 {
    margin-bottom: 3rem
  }

  .mb\:ml-12 {
    margin-left: 3rem
  }

  .mb\:mt-14 {
    margin-top: 3.5rem
  }

  .mb\:mr-14 {
    margin-right: 3.5rem
  }

  .mb\:mb-14 {
    margin-bottom: 3.5rem
  }

  .mb\:ml-14 {
    margin-left: 3.5rem
  }

  .mb\:mt-16 {
    margin-top: 4rem
  }

  .mb\:mr-16 {
    margin-right: 4rem
  }

  .mb\:mb-16 {
    margin-bottom: 4rem
  }

  .mb\:ml-16 {
    margin-left: 4rem
  }

  .mb\:mt-20 {
    margin-top: 5rem
  }

  .mb\:mr-20 {
    margin-right: 5rem
  }

  .mb\:mb-20 {
    margin-bottom: 5rem
  }

  .mb\:ml-20 {
    margin-left: 5rem
  }

  .mb\:mt-24 {
    margin-top: 6rem
  }

  .mb\:mr-24 {
    margin-right: 6rem
  }

  .mb\:mb-24 {
    margin-bottom: 6rem
  }

  .mb\:ml-24 {
    margin-left: 6rem
  }

  .mb\:mt-28 {
    margin-top: 7rem
  }

  .mb\:mr-28 {
    margin-right: 7rem
  }

  .mb\:mb-28 {
    margin-bottom: 7rem
  }

  .mb\:ml-28 {
    margin-left: 7rem
  }

  .mb\:mt-32 {
    margin-top: 8rem
  }

  .mb\:mr-32 {
    margin-right: 8rem
  }

  .mb\:mb-32 {
    margin-bottom: 8rem
  }

  .mb\:ml-32 {
    margin-left: 8rem
  }

  .mb\:mt-36 {
    margin-top: 9rem
  }

  .mb\:mr-36 {
    margin-right: 9rem
  }

  .mb\:mb-36 {
    margin-bottom: 9rem
  }

  .mb\:ml-36 {
    margin-left: 9rem
  }

  .mb\:mt-40 {
    margin-top: 10rem
  }

  .mb\:mr-40 {
    margin-right: 10rem
  }

  .mb\:mb-40 {
    margin-bottom: 10rem
  }

  .mb\:ml-40 {
    margin-left: 10rem
  }

  .mb\:mt-44 {
    margin-top: 11rem
  }

  .mb\:mr-44 {
    margin-right: 11rem
  }

  .mb\:mb-44 {
    margin-bottom: 11rem
  }

  .mb\:ml-44 {
    margin-left: 11rem
  }

  .mb\:mt-48 {
    margin-top: 12rem
  }

  .mb\:mr-48 {
    margin-right: 12rem
  }

  .mb\:mb-48 {
    margin-bottom: 12rem
  }

  .mb\:ml-48 {
    margin-left: 12rem
  }

  .mb\:mt-52 {
    margin-top: 13rem
  }

  .mb\:mr-52 {
    margin-right: 13rem
  }

  .mb\:mb-52 {
    margin-bottom: 13rem
  }

  .mb\:ml-52 {
    margin-left: 13rem
  }

  .mb\:mt-56 {
    margin-top: 14rem
  }

  .mb\:mr-56 {
    margin-right: 14rem
  }

  .mb\:mb-56 {
    margin-bottom: 14rem
  }

  .mb\:ml-56 {
    margin-left: 14rem
  }

  .mb\:mt-60 {
    margin-top: 15rem
  }

  .mb\:mr-60 {
    margin-right: 15rem
  }

  .mb\:mb-60 {
    margin-bottom: 15rem
  }

  .mb\:ml-60 {
    margin-left: 15rem
  }

  .mb\:mt-64 {
    margin-top: 16rem
  }

  .mb\:mr-64 {
    margin-right: 16rem
  }

  .mb\:mb-64 {
    margin-bottom: 16rem
  }

  .mb\:ml-64 {
    margin-left: 16rem
  }

  .mb\:mt-72 {
    margin-top: 18rem
  }

  .mb\:mr-72 {
    margin-right: 18rem
  }

  .mb\:mb-72 {
    margin-bottom: 18rem
  }

  .mb\:ml-72 {
    margin-left: 18rem
  }

  .mb\:mt-80 {
    margin-top: 20rem
  }

  .mb\:mr-80 {
    margin-right: 20rem
  }

  .mb\:mb-80 {
    margin-bottom: 20rem
  }

  .mb\:ml-80 {
    margin-left: 20rem
  }

  .mb\:mt-96 {
    margin-top: 24rem
  }

  .mb\:mr-96 {
    margin-right: 24rem
  }

  .mb\:mb-96 {
    margin-bottom: 24rem
  }

  .mb\:ml-96 {
    margin-left: 24rem
  }

  .mb\:mt-auto {
    margin-top: auto
  }

  .mb\:mr-auto {
    margin-right: auto
  }

  .mb\:mb-auto {
    margin-bottom: auto
  }

  .mb\:ml-auto {
    margin-left: auto
  }

  .mb\:mt-px {
    margin-top: 1px
  }

  .mb\:mr-px {
    margin-right: 1px
  }

  .mb\:mb-px {
    margin-bottom: 1px
  }

  .mb\:ml-px {
    margin-left: 1px
  }

  .mb\:mt-0\.5 {
    margin-top: 0.125rem
  }

  .mb\:mr-0\.5 {
    margin-right: 0.125rem
  }

  .mb\:mb-0\.5 {
    margin-bottom: 0.125rem
  }

  .mb\:ml-0\.5 {
    margin-left: 0.125rem
  }

  .mb\:mt-1\.5 {
    margin-top: 0.375rem
  }

  .mb\:mr-1\.5 {
    margin-right: 0.375rem
  }

  .mb\:mb-1\.5 {
    margin-bottom: 0.375rem
  }

  .mb\:ml-1\.5 {
    margin-left: 0.375rem
  }

  .mb\:mt-2\.5 {
    margin-top: 0.625rem
  }

  .mb\:mr-2\.5 {
    margin-right: 0.625rem
  }

  .mb\:mb-2\.5 {
    margin-bottom: 0.625rem
  }

  .mb\:ml-2\.5 {
    margin-left: 0.625rem
  }

  .mb\:mt-3\.5 {
    margin-top: 0.875rem
  }

  .mb\:mr-3\.5 {
    margin-right: 0.875rem
  }

  .mb\:mb-3\.5 {
    margin-bottom: 0.875rem
  }

  .mb\:ml-3\.5 {
    margin-left: 0.875rem
  }

  .mb\:mt-2\/3 {
    margin-top: 66.666667%
  }

  .mb\:mr-2\/3 {
    margin-right: 66.666667%
  }

  .mb\:mb-2\/3 {
    margin-bottom: 66.666667%
  }

  .mb\:ml-2\/3 {
    margin-left: 66.666667%
  }

  .mb\:mt-3\/4 {
    margin-top: 75%
  }

  .mb\:mr-3\/4 {
    margin-right: 75%
  }

  .mb\:mb-3\/4 {
    margin-bottom: 75%
  }

  .mb\:ml-3\/4 {
    margin-left: 75%
  }

  .mb\:mt-6\/19 {
    margin-top: 56.25%
  }

  .mb\:mr-6\/19 {
    margin-right: 56.25%
  }

  .mb\:mb-6\/19 {
    margin-bottom: 56.25%
  }

  .mb\:ml-6\/19 {
    margin-left: 56.25%
  }

  .mb\:mt-1\/1 {
    margin-top: 100%
  }

  .mb\:mr-1\/1 {
    margin-right: 100%
  }

  .mb\:mb-1\/1 {
    margin-bottom: 100%
  }

  .mb\:ml-1\/1 {
    margin-left: 100%
  }

  .mb\:mt-3\/2 {
    margin-top: 150%
  }

  .mb\:mr-3\/2 {
    margin-right: 150%
  }

  .mb\:mb-3\/2 {
    margin-bottom: 150%
  }

  .mb\:ml-3\/2 {
    margin-left: 150%
  }

  .mb\:mt-4\/3 {
    margin-top: 133.333%
  }

  .mb\:mr-4\/3 {
    margin-right: 133.333%
  }

  .mb\:mb-4\/3 {
    margin-bottom: 133.333%
  }

  .mb\:ml-4\/3 {
    margin-left: 133.333%
  }

  .mb\:-mt-0 {
    margin-top: 0px
  }

  .mb\:-mr-0 {
    margin-right: 0px
  }

  .mb\:-mb-0 {
    margin-bottom: 0px
  }

  .mb\:-ml-0 {
    margin-left: 0px
  }

  .mb\:-mt-1 {
    margin-top: -0.25rem
  }

  .mb\:-mr-1 {
    margin-right: -0.25rem
  }

  .mb\:-mb-1 {
    margin-bottom: -0.25rem
  }

  .mb\:-ml-1 {
    margin-left: -0.25rem
  }

  .mb\:-mt-2 {
    margin-top: -0.5rem
  }

  .mb\:-mr-2 {
    margin-right: -0.5rem
  }

  .mb\:-mb-2 {
    margin-bottom: -0.5rem
  }

  .mb\:-ml-2 {
    margin-left: -0.5rem
  }

  .mb\:-mt-3 {
    margin-top: -0.75rem
  }

  .mb\:-mr-3 {
    margin-right: -0.75rem
  }

  .mb\:-mb-3 {
    margin-bottom: -0.75rem
  }

  .mb\:-ml-3 {
    margin-left: -0.75rem
  }

  .mb\:-mt-4 {
    margin-top: -1rem
  }

  .mb\:-mr-4 {
    margin-right: -1rem
  }

  .mb\:-mb-4 {
    margin-bottom: -1rem
  }

  .mb\:-ml-4 {
    margin-left: -1rem
  }

  .mb\:-mt-5 {
    margin-top: -1.25rem
  }

  .mb\:-mr-5 {
    margin-right: -1.25rem
  }

  .mb\:-mb-5 {
    margin-bottom: -1.25rem
  }

  .mb\:-ml-5 {
    margin-left: -1.25rem
  }

  .mb\:-mt-6 {
    margin-top: -1.5rem
  }

  .mb\:-mr-6 {
    margin-right: -1.5rem
  }

  .mb\:-mb-6 {
    margin-bottom: -1.5rem
  }

  .mb\:-ml-6 {
    margin-left: -1.5rem
  }

  .mb\:-mt-7 {
    margin-top: -1.75rem
  }

  .mb\:-mr-7 {
    margin-right: -1.75rem
  }

  .mb\:-mb-7 {
    margin-bottom: -1.75rem
  }

  .mb\:-ml-7 {
    margin-left: -1.75rem
  }

  .mb\:-mt-8 {
    margin-top: -2rem
  }

  .mb\:-mr-8 {
    margin-right: -2rem
  }

  .mb\:-mb-8 {
    margin-bottom: -2rem
  }

  .mb\:-ml-8 {
    margin-left: -2rem
  }

  .mb\:-mt-9 {
    margin-top: -2.25rem
  }

  .mb\:-mr-9 {
    margin-right: -2.25rem
  }

  .mb\:-mb-9 {
    margin-bottom: -2.25rem
  }

  .mb\:-ml-9 {
    margin-left: -2.25rem
  }

  .mb\:-mt-10 {
    margin-top: -2.5rem
  }

  .mb\:-mr-10 {
    margin-right: -2.5rem
  }

  .mb\:-mb-10 {
    margin-bottom: -2.5rem
  }

  .mb\:-ml-10 {
    margin-left: -2.5rem
  }

  .mb\:-mt-11 {
    margin-top: -2.75rem
  }

  .mb\:-mr-11 {
    margin-right: -2.75rem
  }

  .mb\:-mb-11 {
    margin-bottom: -2.75rem
  }

  .mb\:-ml-11 {
    margin-left: -2.75rem
  }

  .mb\:-mt-12 {
    margin-top: -3rem
  }

  .mb\:-mr-12 {
    margin-right: -3rem
  }

  .mb\:-mb-12 {
    margin-bottom: -3rem
  }

  .mb\:-ml-12 {
    margin-left: -3rem
  }

  .mb\:-mt-14 {
    margin-top: -3.5rem
  }

  .mb\:-mr-14 {
    margin-right: -3.5rem
  }

  .mb\:-mb-14 {
    margin-bottom: -3.5rem
  }

  .mb\:-ml-14 {
    margin-left: -3.5rem
  }

  .mb\:-mt-16 {
    margin-top: -4rem
  }

  .mb\:-mr-16 {
    margin-right: -4rem
  }

  .mb\:-mb-16 {
    margin-bottom: -4rem
  }

  .mb\:-ml-16 {
    margin-left: -4rem
  }

  .mb\:-mt-20 {
    margin-top: -5rem
  }

  .mb\:-mr-20 {
    margin-right: -5rem
  }

  .mb\:-mb-20 {
    margin-bottom: -5rem
  }

  .mb\:-ml-20 {
    margin-left: -5rem
  }

  .mb\:-mt-24 {
    margin-top: -6rem
  }

  .mb\:-mr-24 {
    margin-right: -6rem
  }

  .mb\:-mb-24 {
    margin-bottom: -6rem
  }

  .mb\:-ml-24 {
    margin-left: -6rem
  }

  .mb\:-mt-28 {
    margin-top: -7rem
  }

  .mb\:-mr-28 {
    margin-right: -7rem
  }

  .mb\:-mb-28 {
    margin-bottom: -7rem
  }

  .mb\:-ml-28 {
    margin-left: -7rem
  }

  .mb\:-mt-32 {
    margin-top: -8rem
  }

  .mb\:-mr-32 {
    margin-right: -8rem
  }

  .mb\:-mb-32 {
    margin-bottom: -8rem
  }

  .mb\:-ml-32 {
    margin-left: -8rem
  }

  .mb\:-mt-36 {
    margin-top: -9rem
  }

  .mb\:-mr-36 {
    margin-right: -9rem
  }

  .mb\:-mb-36 {
    margin-bottom: -9rem
  }

  .mb\:-ml-36 {
    margin-left: -9rem
  }

  .mb\:-mt-40 {
    margin-top: -10rem
  }

  .mb\:-mr-40 {
    margin-right: -10rem
  }

  .mb\:-mb-40 {
    margin-bottom: -10rem
  }

  .mb\:-ml-40 {
    margin-left: -10rem
  }

  .mb\:-mt-44 {
    margin-top: -11rem
  }

  .mb\:-mr-44 {
    margin-right: -11rem
  }

  .mb\:-mb-44 {
    margin-bottom: -11rem
  }

  .mb\:-ml-44 {
    margin-left: -11rem
  }

  .mb\:-mt-48 {
    margin-top: -12rem
  }

  .mb\:-mr-48 {
    margin-right: -12rem
  }

  .mb\:-mb-48 {
    margin-bottom: -12rem
  }

  .mb\:-ml-48 {
    margin-left: -12rem
  }

  .mb\:-mt-52 {
    margin-top: -13rem
  }

  .mb\:-mr-52 {
    margin-right: -13rem
  }

  .mb\:-mb-52 {
    margin-bottom: -13rem
  }

  .mb\:-ml-52 {
    margin-left: -13rem
  }

  .mb\:-mt-56 {
    margin-top: -14rem
  }

  .mb\:-mr-56 {
    margin-right: -14rem
  }

  .mb\:-mb-56 {
    margin-bottom: -14rem
  }

  .mb\:-ml-56 {
    margin-left: -14rem
  }

  .mb\:-mt-60 {
    margin-top: -15rem
  }

  .mb\:-mr-60 {
    margin-right: -15rem
  }

  .mb\:-mb-60 {
    margin-bottom: -15rem
  }

  .mb\:-ml-60 {
    margin-left: -15rem
  }

  .mb\:-mt-64 {
    margin-top: -16rem
  }

  .mb\:-mr-64 {
    margin-right: -16rem
  }

  .mb\:-mb-64 {
    margin-bottom: -16rem
  }

  .mb\:-ml-64 {
    margin-left: -16rem
  }

  .mb\:-mt-72 {
    margin-top: -18rem
  }

  .mb\:-mr-72 {
    margin-right: -18rem
  }

  .mb\:-mb-72 {
    margin-bottom: -18rem
  }

  .mb\:-ml-72 {
    margin-left: -18rem
  }

  .mb\:-mt-80 {
    margin-top: -20rem
  }

  .mb\:-mr-80 {
    margin-right: -20rem
  }

  .mb\:-mb-80 {
    margin-bottom: -20rem
  }

  .mb\:-ml-80 {
    margin-left: -20rem
  }

  .mb\:-mt-96 {
    margin-top: -24rem
  }

  .mb\:-mr-96 {
    margin-right: -24rem
  }

  .mb\:-mb-96 {
    margin-bottom: -24rem
  }

  .mb\:-ml-96 {
    margin-left: -24rem
  }

  .mb\:-mt-px {
    margin-top: -1px
  }

  .mb\:-mr-px {
    margin-right: -1px
  }

  .mb\:-mb-px {
    margin-bottom: -1px
  }

  .mb\:-ml-px {
    margin-left: -1px
  }

  .mb\:-mt-0\.5 {
    margin-top: -0.125rem
  }

  .mb\:-mr-0\.5 {
    margin-right: -0.125rem
  }

  .mb\:-mb-0\.5 {
    margin-bottom: -0.125rem
  }

  .mb\:-ml-0\.5 {
    margin-left: -0.125rem
  }

  .mb\:-mt-1\.5 {
    margin-top: -0.375rem
  }

  .mb\:-mr-1\.5 {
    margin-right: -0.375rem
  }

  .mb\:-mb-1\.5 {
    margin-bottom: -0.375rem
  }

  .mb\:-ml-1\.5 {
    margin-left: -0.375rem
  }

  .mb\:-mt-2\.5 {
    margin-top: -0.625rem
  }

  .mb\:-mr-2\.5 {
    margin-right: -0.625rem
  }

  .mb\:-mb-2\.5 {
    margin-bottom: -0.625rem
  }

  .mb\:-ml-2\.5 {
    margin-left: -0.625rem
  }

  .mb\:-mt-3\.5 {
    margin-top: -0.875rem
  }

  .mb\:-mr-3\.5 {
    margin-right: -0.875rem
  }

  .mb\:-mb-3\.5 {
    margin-bottom: -0.875rem
  }

  .mb\:-ml-3\.5 {
    margin-left: -0.875rem
  }

  .mb\:-mt-2\/3 {
    margin-top: -66.66667%
  }

  .mb\:-mr-2\/3 {
    margin-right: -66.66667%
  }

  .mb\:-mb-2\/3 {
    margin-bottom: -66.66667%
  }

  .mb\:-ml-2\/3 {
    margin-left: -66.66667%
  }

  .mb\:-mt-3\/4 {
    margin-top: -75%
  }

  .mb\:-mr-3\/4 {
    margin-right: -75%
  }

  .mb\:-mb-3\/4 {
    margin-bottom: -75%
  }

  .mb\:-ml-3\/4 {
    margin-left: -75%
  }

  .mb\:-mt-6\/19 {
    margin-top: -56.25%
  }

  .mb\:-mr-6\/19 {
    margin-right: -56.25%
  }

  .mb\:-mb-6\/19 {
    margin-bottom: -56.25%
  }

  .mb\:-ml-6\/19 {
    margin-left: -56.25%
  }

  .mb\:-mt-1\/1 {
    margin-top: -100%
  }

  .mb\:-mr-1\/1 {
    margin-right: -100%
  }

  .mb\:-mb-1\/1 {
    margin-bottom: -100%
  }

  .mb\:-ml-1\/1 {
    margin-left: -100%
  }

  .mb\:-mt-3\/2 {
    margin-top: -150%
  }

  .mb\:-mr-3\/2 {
    margin-right: -150%
  }

  .mb\:-mb-3\/2 {
    margin-bottom: -150%
  }

  .mb\:-ml-3\/2 {
    margin-left: -150%
  }

  .mb\:-mt-4\/3 {
    margin-top: -133.333%
  }

  .mb\:-mr-4\/3 {
    margin-right: -133.333%
  }

  .mb\:-mb-4\/3 {
    margin-bottom: -133.333%
  }

  .mb\:-ml-4\/3 {
    margin-left: -133.333%
  }

  .mb\:max-h-0 {
    max-height: 0px
  }

  .mb\:max-h-1 {
    max-height: 0.25rem
  }

  .mb\:max-h-2 {
    max-height: 0.5rem
  }

  .mb\:max-h-3 {
    max-height: 0.75rem
  }

  .mb\:max-h-4 {
    max-height: 1rem
  }

  .mb\:max-h-5 {
    max-height: 1.25rem
  }

  .mb\:max-h-6 {
    max-height: 1.5rem
  }

  .mb\:max-h-7 {
    max-height: 1.75rem
  }

  .mb\:max-h-8 {
    max-height: 2rem
  }

  .mb\:max-h-9 {
    max-height: 2.25rem
  }

  .mb\:max-h-10 {
    max-height: 2.5rem
  }

  .mb\:max-h-11 {
    max-height: 2.75rem
  }

  .mb\:max-h-12 {
    max-height: 3rem
  }

  .mb\:max-h-14 {
    max-height: 3.5rem
  }

  .mb\:max-h-16 {
    max-height: 4rem
  }

  .mb\:max-h-20 {
    max-height: 5rem
  }

  .mb\:max-h-24 {
    max-height: 6rem
  }

  .mb\:max-h-28 {
    max-height: 7rem
  }

  .mb\:max-h-32 {
    max-height: 8rem
  }

  .mb\:max-h-36 {
    max-height: 9rem
  }

  .mb\:max-h-40 {
    max-height: 10rem
  }

  .mb\:max-h-44 {
    max-height: 11rem
  }

  .mb\:max-h-48 {
    max-height: 12rem
  }

  .mb\:max-h-52 {
    max-height: 13rem
  }

  .mb\:max-h-56 {
    max-height: 14rem
  }

  .mb\:max-h-60 {
    max-height: 15rem
  }

  .mb\:max-h-64 {
    max-height: 16rem
  }

  .mb\:max-h-72 {
    max-height: 18rem
  }

  .mb\:max-h-80 {
    max-height: 20rem
  }

  .mb\:max-h-96 {
    max-height: 24rem
  }

  .mb\:max-h-px {
    max-height: 1px
  }

  .mb\:max-h-0\.5 {
    max-height: 0.125rem
  }

  .mb\:max-h-1\.5 {
    max-height: 0.375rem
  }

  .mb\:max-h-2\.5 {
    max-height: 0.625rem
  }

  .mb\:max-h-3\.5 {
    max-height: 0.875rem
  }

  .mb\:max-h-2\/3 {
    max-height: 66.666667%
  }

  .mb\:max-h-3\/4 {
    max-height: 75%
  }

  .mb\:max-h-6\/19 {
    max-height: 56.25%
  }

  .mb\:max-h-1\/1 {
    max-height: 100%
  }

  .mb\:max-h-3\/2 {
    max-height: 150%
  }

  .mb\:max-h-4\/3 {
    max-height: 133.333%
  }

  .mb\:max-h-full {
    max-height: 100%
  }

  .mb\:max-h-screen {
    max-height: 100vh
  }

  .mb\:max-w-0 {
    max-width: 0rem
  }

  .mb\:max-w-none {
    max-width: none
  }

  .mb\:max-w-xs {
    max-width: 20rem
  }

  .mb\:max-w-sm {
    max-width: 24rem
  }

  .mb\:max-w-md {
    max-width: 28rem
  }

  .mb\:max-w-lg {
    max-width: 32rem
  }

  .mb\:max-w-xl {
    max-width: 36rem
  }

  .mb\:max-w-2xl {
    max-width: 42rem
  }

  .mb\:max-w-3xl {
    max-width: 48rem
  }

  .mb\:max-w-4xl {
    max-width: 56rem
  }

  .mb\:max-w-5xl {
    max-width: 64rem
  }

  .mb\:max-w-6xl {
    max-width: 72rem
  }

  .mb\:max-w-7xl {
    max-width: 80rem
  }

  .mb\:max-w-full {
    max-width: 100%
  }

  .mb\:max-w-min {
    max-width: min-content
  }

  .mb\:max-w-max {
    max-width: max-content
  }

  .mb\:max-w-prose {
    max-width: 65ch
  }

  .mb\:max-w-screen-tb {
    max-width: 768px
  }

  .mb\:max-w-screen-ds {
    max-width: 992px
  }

  .mb\:min-h-0 {
    min-height: 0px
  }

  .mb\:min-h-full {
    min-height: 100%
  }

  .mb\:min-h-screen {
    min-height: 100vh
  }

  .mb\:min-w-0 {
    min-width: 0px
  }

  .mb\:min-w-full {
    min-width: 100%
  }

  .mb\:min-w-min {
    min-width: min-content
  }

  .mb\:min-w-max {
    min-width: max-content
  }

  .mb\:overflow-auto {
    overflow: auto
  }

  .mb\:overflow-hidden {
    overflow: hidden
  }

  .mb\:overflow-visible {
    overflow: visible
  }

  .mb\:overflow-scroll {
    overflow: scroll
  }

  .mb\:overflow-x-auto {
    overflow-x: auto
  }

  .mb\:overflow-y-auto {
    overflow-y: auto
  }

  .mb\:overflow-x-hidden {
    overflow-x: hidden
  }

  .mb\:overflow-y-hidden {
    overflow-y: hidden
  }

  .mb\:overflow-x-visible {
    overflow-x: visible
  }

  .mb\:overflow-y-visible {
    overflow-y: visible
  }

  .mb\:overflow-x-scroll {
    overflow-x: scroll
  }

  .mb\:overflow-y-scroll {
    overflow-y: scroll
  }

  .mb\:overscroll-auto {
    overscroll-behavior: auto
  }

  .mb\:overscroll-contain {
    overscroll-behavior: contain
  }

  .mb\:overscroll-none {
    overscroll-behavior: none
  }

  .mb\:overscroll-y-auto {
    overscroll-behavior-y: auto
  }

  .mb\:overscroll-y-contain {
    overscroll-behavior-y: contain
  }

  .mb\:overscroll-y-none {
    overscroll-behavior-y: none
  }

  .mb\:overscroll-x-auto {
    overscroll-behavior-x: auto
  }

  .mb\:overscroll-x-contain {
    overscroll-behavior-x: contain
  }

  .mb\:overscroll-x-none {
    overscroll-behavior-x: none
  }

  .mb\:p-0 {
    padding: 0px
  }

  .mb\:p-1 {
    padding: 0.25rem
  }

  .mb\:p-2 {
    padding: 0.5rem
  }

  .mb\:p-3 {
    padding: 0.75rem
  }

  .mb\:p-4 {
    padding: 1rem
  }

  .mb\:p-5 {
    padding: 1.25rem
  }

  .mb\:p-6 {
    padding: 1.5rem
  }

  .mb\:p-7 {
    padding: 1.75rem
  }

  .mb\:p-8 {
    padding: 2rem
  }

  .mb\:p-9 {
    padding: 2.25rem
  }

  .mb\:p-10 {
    padding: 2.5rem
  }

  .mb\:p-11 {
    padding: 2.75rem
  }

  .mb\:p-12 {
    padding: 3rem
  }

  .mb\:p-14 {
    padding: 3.5rem
  }

  .mb\:p-16 {
    padding: 4rem
  }

  .mb\:p-20 {
    padding: 5rem
  }

  .mb\:p-24 {
    padding: 6rem
  }

  .mb\:p-28 {
    padding: 7rem
  }

  .mb\:p-32 {
    padding: 8rem
  }

  .mb\:p-36 {
    padding: 9rem
  }

  .mb\:p-40 {
    padding: 10rem
  }

  .mb\:p-44 {
    padding: 11rem
  }

  .mb\:p-48 {
    padding: 12rem
  }

  .mb\:p-52 {
    padding: 13rem
  }

  .mb\:p-56 {
    padding: 14rem
  }

  .mb\:p-60 {
    padding: 15rem
  }

  .mb\:p-64 {
    padding: 16rem
  }

  .mb\:p-72 {
    padding: 18rem
  }

  .mb\:p-80 {
    padding: 20rem
  }

  .mb\:p-96 {
    padding: 24rem
  }

  .mb\:p-px {
    padding: 1px
  }

  .mb\:p-0\.5 {
    padding: 0.125rem
  }

  .mb\:p-1\.5 {
    padding: 0.375rem
  }

  .mb\:p-2\.5 {
    padding: 0.625rem
  }

  .mb\:p-3\.5 {
    padding: 0.875rem
  }

  .mb\:p-2\/3 {
    padding: 66.666667%
  }

  .mb\:p-3\/4 {
    padding: 75%
  }

  .mb\:p-6\/19 {
    padding: 56.25%
  }

  .mb\:p-1\/1 {
    padding: 100%
  }

  .mb\:p-3\/2 {
    padding: 150%
  }

  .mb\:p-4\/3 {
    padding: 133.333%
  }

  .mb\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px
  }

  .mb\:px-0 {
    padding-left: 0px;
    padding-right: 0px
  }

  .mb\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
  }

  .mb\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
  }

  .mb\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
  }

  .mb\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
  }

  .mb\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
  }

  .mb\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
  }

  .mb\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
  }

  .mb\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .mb\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }

  .mb\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  .mb\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }

  .mb\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .mb\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem
  }

  .mb\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem
  }

  .mb\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }

  .mb\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem
  }

  .mb\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem
  }

  .mb\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
  }

  .mb\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }

  .mb\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .mb\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem
  }

  .mb\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem
  }

  .mb\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .mb\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem
  }

  .mb\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
  }

  .mb\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
  }

  .mb\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .mb\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem
  }

  .mb\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
  }

  .mb\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem
  }

  .mb\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .mb\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem
  }

  .mb\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem
  }

  .mb\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem
  }

  .mb\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem
  }

  .mb\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem
  }

  .mb\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem
  }

  .mb\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem
  }

  .mb\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem
  }

  .mb\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem
  }

  .mb\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem
  }

  .mb\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem
  }

  .mb\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem
  }

  .mb\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem
  }

  .mb\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem
  }

  .mb\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem
  }

  .mb\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem
  }

  .mb\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem
  }

  .mb\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem
  }

  .mb\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem
  }

  .mb\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem
  }

  .mb\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem
  }

  .mb\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem
  }

  .mb\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem
  }

  .mb\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem
  }

  .mb\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem
  }

  .mb\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem
  }

  .mb\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem
  }

  .mb\:py-px {
    padding-top: 1px;
    padding-bottom: 1px
  }

  .mb\:px-px {
    padding-left: 1px;
    padding-right: 1px
  }

  .mb\:py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem
  }

  .mb\:px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem
  }

  .mb\:py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
  }

  .mb\:px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem
  }

  .mb\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem
  }

  .mb\:px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem
  }

  .mb\:py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem
  }

  .mb\:px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem
  }

  .mb\:py-2\/3 {
    padding-top: 66.666667%;
    padding-bottom: 66.666667%
  }

  .mb\:px-2\/3 {
    padding-left: 66.666667%;
    padding-right: 66.666667%
  }

  .mb\:py-3\/4 {
    padding-top: 75%;
    padding-bottom: 75%
  }

  .mb\:px-3\/4 {
    padding-left: 75%;
    padding-right: 75%
  }

  .mb\:py-6\/19 {
    padding-top: 56.25%;
    padding-bottom: 56.25%
  }

  .mb\:px-6\/19 {
    padding-left: 56.25%;
    padding-right: 56.25%
  }

  .mb\:py-1\/1 {
    padding-top: 100%;
    padding-bottom: 100%
  }

  .mb\:px-1\/1 {
    padding-left: 100%;
    padding-right: 100%
  }

  .mb\:py-3\/2 {
    padding-top: 150%;
    padding-bottom: 150%
  }

  .mb\:px-3\/2 {
    padding-left: 150%;
    padding-right: 150%
  }

  .mb\:py-4\/3 {
    padding-top: 133.333%;
    padding-bottom: 133.333%
  }

  .mb\:px-4\/3 {
    padding-left: 133.333%;
    padding-right: 133.333%
  }

  .mb\:pt-0 {
    padding-top: 0px
  }

  .mb\:pr-0 {
    padding-right: 0px
  }

  .mb\:pb-0 {
    padding-bottom: 0px
  }

  .mb\:pl-0 {
    padding-left: 0px
  }

  .mb\:pt-1 {
    padding-top: 0.25rem
  }

  .mb\:pr-1 {
    padding-right: 0.25rem
  }

  .mb\:pb-1 {
    padding-bottom: 0.25rem
  }

  .mb\:pl-1 {
    padding-left: 0.25rem
  }

  .mb\:pt-2 {
    padding-top: 0.5rem
  }

  .mb\:pr-2 {
    padding-right: 0.5rem
  }

  .mb\:pb-2 {
    padding-bottom: 0.5rem
  }

  .mb\:pl-2 {
    padding-left: 0.5rem
  }

  .mb\:pt-3 {
    padding-top: 0.75rem
  }

  .mb\:pr-3 {
    padding-right: 0.75rem
  }

  .mb\:pb-3 {
    padding-bottom: 0.75rem
  }

  .mb\:pl-3 {
    padding-left: 0.75rem
  }

  .mb\:pt-4 {
    padding-top: 1rem
  }

  .mb\:pr-4 {
    padding-right: 1rem
  }

  .mb\:pb-4 {
    padding-bottom: 1rem
  }

  .mb\:pl-4 {
    padding-left: 1rem
  }

  .mb\:pt-5 {
    padding-top: 1.25rem
  }

  .mb\:pr-5 {
    padding-right: 1.25rem
  }

  .mb\:pb-5 {
    padding-bottom: 1.25rem
  }

  .mb\:pl-5 {
    padding-left: 1.25rem
  }

  .mb\:pt-6 {
    padding-top: 1.5rem
  }

  .mb\:pr-6 {
    padding-right: 1.5rem
  }

  .mb\:pb-6 {
    padding-bottom: 1.5rem
  }

  .mb\:pl-6 {
    padding-left: 1.5rem
  }

  .mb\:pt-7 {
    padding-top: 1.75rem
  }

  .mb\:pr-7 {
    padding-right: 1.75rem
  }

  .mb\:pb-7 {
    padding-bottom: 1.75rem
  }

  .mb\:pl-7 {
    padding-left: 1.75rem
  }

  .mb\:pt-8 {
    padding-top: 2rem
  }

  .mb\:pr-8 {
    padding-right: 2rem
  }

  .mb\:pb-8 {
    padding-bottom: 2rem
  }

  .mb\:pl-8 {
    padding-left: 2rem
  }

  .mb\:pt-9 {
    padding-top: 2.25rem
  }

  .mb\:pr-9 {
    padding-right: 2.25rem
  }

  .mb\:pb-9 {
    padding-bottom: 2.25rem
  }

  .mb\:pl-9 {
    padding-left: 2.25rem
  }

  .mb\:pt-10 {
    padding-top: 2.5rem
  }

  .mb\:pr-10 {
    padding-right: 2.5rem
  }

  .mb\:pb-10 {
    padding-bottom: 2.5rem
  }

  .mb\:pl-10 {
    padding-left: 2.5rem
  }

  .mb\:pt-11 {
    padding-top: 2.75rem
  }

  .mb\:pr-11 {
    padding-right: 2.75rem
  }

  .mb\:pb-11 {
    padding-bottom: 2.75rem
  }

  .mb\:pl-11 {
    padding-left: 2.75rem
  }

  .mb\:pt-12 {
    padding-top: 3rem
  }

  .mb\:pr-12 {
    padding-right: 3rem
  }

  .mb\:pb-12 {
    padding-bottom: 3rem
  }

  .mb\:pl-12 {
    padding-left: 3rem
  }

  .mb\:pt-14 {
    padding-top: 3.5rem
  }

  .mb\:pr-14 {
    padding-right: 3.5rem
  }

  .mb\:pb-14 {
    padding-bottom: 3.5rem
  }

  .mb\:pl-14 {
    padding-left: 3.5rem
  }

  .mb\:pt-16 {
    padding-top: 4rem
  }

  .mb\:pr-16 {
    padding-right: 4rem
  }

  .mb\:pb-16 {
    padding-bottom: 4rem
  }

  .mb\:pl-16 {
    padding-left: 4rem
  }

  .mb\:pt-20 {
    padding-top: 5rem
  }

  .mb\:pr-20 {
    padding-right: 5rem
  }

  .mb\:pb-20 {
    padding-bottom: 5rem
  }

  .mb\:pl-20 {
    padding-left: 5rem
  }

  .mb\:pt-24 {
    padding-top: 6rem
  }

  .mb\:pr-24 {
    padding-right: 6rem
  }

  .mb\:pb-24 {
    padding-bottom: 6rem
  }

  .mb\:pl-24 {
    padding-left: 6rem
  }

  .mb\:pt-28 {
    padding-top: 7rem
  }

  .mb\:pr-28 {
    padding-right: 7rem
  }

  .mb\:pb-28 {
    padding-bottom: 7rem
  }

  .mb\:pl-28 {
    padding-left: 7rem
  }

  .mb\:pt-32 {
    padding-top: 8rem
  }

  .mb\:pr-32 {
    padding-right: 8rem
  }

  .mb\:pb-32 {
    padding-bottom: 8rem
  }

  .mb\:pl-32 {
    padding-left: 8rem
  }

  .mb\:pt-36 {
    padding-top: 9rem
  }

  .mb\:pr-36 {
    padding-right: 9rem
  }

  .mb\:pb-36 {
    padding-bottom: 9rem
  }

  .mb\:pl-36 {
    padding-left: 9rem
  }

  .mb\:pt-40 {
    padding-top: 10rem
  }

  .mb\:pr-40 {
    padding-right: 10rem
  }

  .mb\:pb-40 {
    padding-bottom: 10rem
  }

  .mb\:pl-40 {
    padding-left: 10rem
  }

  .mb\:pt-44 {
    padding-top: 11rem
  }

  .mb\:pr-44 {
    padding-right: 11rem
  }

  .mb\:pb-44 {
    padding-bottom: 11rem
  }

  .mb\:pl-44 {
    padding-left: 11rem
  }

  .mb\:pt-48 {
    padding-top: 12rem
  }

  .mb\:pr-48 {
    padding-right: 12rem
  }

  .mb\:pb-48 {
    padding-bottom: 12rem
  }

  .mb\:pl-48 {
    padding-left: 12rem
  }

  .mb\:pt-52 {
    padding-top: 13rem
  }

  .mb\:pr-52 {
    padding-right: 13rem
  }

  .mb\:pb-52 {
    padding-bottom: 13rem
  }

  .mb\:pl-52 {
    padding-left: 13rem
  }

  .mb\:pt-56 {
    padding-top: 14rem
  }

  .mb\:pr-56 {
    padding-right: 14rem
  }

  .mb\:pb-56 {
    padding-bottom: 14rem
  }

  .mb\:pl-56 {
    padding-left: 14rem
  }

  .mb\:pt-60 {
    padding-top: 15rem
  }

  .mb\:pr-60 {
    padding-right: 15rem
  }

  .mb\:pb-60 {
    padding-bottom: 15rem
  }

  .mb\:pl-60 {
    padding-left: 15rem
  }

  .mb\:pt-64 {
    padding-top: 16rem
  }

  .mb\:pr-64 {
    padding-right: 16rem
  }

  .mb\:pb-64 {
    padding-bottom: 16rem
  }

  .mb\:pl-64 {
    padding-left: 16rem
  }

  .mb\:pt-72 {
    padding-top: 18rem
  }

  .mb\:pr-72 {
    padding-right: 18rem
  }

  .mb\:pb-72 {
    padding-bottom: 18rem
  }

  .mb\:pl-72 {
    padding-left: 18rem
  }

  .mb\:pt-80 {
    padding-top: 20rem
  }

  .mb\:pr-80 {
    padding-right: 20rem
  }

  .mb\:pb-80 {
    padding-bottom: 20rem
  }

  .mb\:pl-80 {
    padding-left: 20rem
  }

  .mb\:pt-96 {
    padding-top: 24rem
  }

  .mb\:pr-96 {
    padding-right: 24rem
  }

  .mb\:pb-96 {
    padding-bottom: 24rem
  }

  .mb\:pl-96 {
    padding-left: 24rem
  }

  .mb\:pt-px {
    padding-top: 1px
  }

  .mb\:pr-px {
    padding-right: 1px
  }

  .mb\:pb-px {
    padding-bottom: 1px
  }

  .mb\:pl-px {
    padding-left: 1px
  }

  .mb\:pt-0\.5 {
    padding-top: 0.125rem
  }

  .mb\:pr-0\.5 {
    padding-right: 0.125rem
  }

  .mb\:pb-0\.5 {
    padding-bottom: 0.125rem
  }

  .mb\:pl-0\.5 {
    padding-left: 0.125rem
  }

  .mb\:pt-1\.5 {
    padding-top: 0.375rem
  }

  .mb\:pr-1\.5 {
    padding-right: 0.375rem
  }

  .mb\:pb-1\.5 {
    padding-bottom: 0.375rem
  }

  .mb\:pl-1\.5 {
    padding-left: 0.375rem
  }

  .mb\:pt-2\.5 {
    padding-top: 0.625rem
  }

  .mb\:pr-2\.5 {
    padding-right: 0.625rem
  }

  .mb\:pb-2\.5 {
    padding-bottom: 0.625rem
  }

  .mb\:pl-2\.5 {
    padding-left: 0.625rem
  }

  .mb\:pt-3\.5 {
    padding-top: 0.875rem
  }

  .mb\:pr-3\.5 {
    padding-right: 0.875rem
  }

  .mb\:pb-3\.5 {
    padding-bottom: 0.875rem
  }

  .mb\:pl-3\.5 {
    padding-left: 0.875rem
  }

  .mb\:pt-2\/3 {
    padding-top: 66.666667%
  }

  .mb\:pr-2\/3 {
    padding-right: 66.666667%
  }

  .mb\:pb-2\/3 {
    padding-bottom: 66.666667%
  }

  .mb\:pl-2\/3 {
    padding-left: 66.666667%
  }

  .mb\:pt-3\/4 {
    padding-top: 75%
  }

  .mb\:pr-3\/4 {
    padding-right: 75%
  }

  .mb\:pb-3\/4 {
    padding-bottom: 75%
  }

  .mb\:pl-3\/4 {
    padding-left: 75%
  }

  .mb\:pt-6\/19 {
    padding-top: 56.25%
  }

  .mb\:pr-6\/19 {
    padding-right: 56.25%
  }

  .mb\:pb-6\/19 {
    padding-bottom: 56.25%
  }

  .mb\:pl-6\/19 {
    padding-left: 56.25%
  }

  .mb\:pt-1\/1 {
    padding-top: 100%
  }

  .mb\:pr-1\/1 {
    padding-right: 100%
  }

  .mb\:pb-1\/1 {
    padding-bottom: 100%
  }

  .mb\:pl-1\/1 {
    padding-left: 100%
  }

  .mb\:pt-3\/2 {
    padding-top: 150%
  }

  .mb\:pr-3\/2 {
    padding-right: 150%
  }

  .mb\:pb-3\/2 {
    padding-bottom: 150%
  }

  .mb\:pl-3\/2 {
    padding-left: 150%
  }

  .mb\:pt-4\/3 {
    padding-top: 133.333%
  }

  .mb\:pr-4\/3 {
    padding-right: 133.333%
  }

  .mb\:pb-4\/3 {
    padding-bottom: 133.333%
  }

  .mb\:pl-4\/3 {
    padding-left: 133.333%
  }

  .mb\:static {
    position: static
  }

  .mb\:fixed {
    position: fixed
  }

  .mb\:absolute {
    position: absolute
  }

  .mb\:relative {
    position: relative
  }

  .mb\:sticky {
    position: sticky
  }

  .mb\:table-auto {
    table-layout: auto
  }

  .mb\:table-fixed {
    table-layout: fixed
  }

  .mb\:text-left {
    text-align: left
  }

  .mb\:text-center {
    text-align: center
  }

  .mb\:text-right {
    text-align: right
  }

  .mb\:text-justify {
    text-align: justify
  }

  .mb\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .mb\:overflow-ellipsis {
    text-overflow: ellipsis
  }

  .mb\:overflow-clip {
    text-overflow: clip
  }

  .mb\:italic {
    font-style: italic
  }

  .mb\:not-italic {
    font-style: normal
  }

  .mb\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
  }

  .mb\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
  }

  .mb\:ordinal, .mb\:slashed-zero, .mb\:lining-nums, .mb\:oldstyle-nums, .mb\:proportional-nums, .mb\:tabular-nums, .mb\:diagonal-fractions, .mb\:stacked-fractions {
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
  }

  .mb\:normal-nums {
    font-variant-numeric: normal
  }

  .mb\:ordinal {
    --tw-ordinal: ordinal
  }

  .mb\:slashed-zero {
    --tw-slashed-zero: slashed-zero
  }

  .mb\:lining-nums {
    --tw-numeric-figure: lining-nums
  }

  .mb\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums
  }

  .mb\:proportional-nums {
    --tw-numeric-spacing: proportional-nums
  }

  .mb\:tabular-nums {
    --tw-numeric-spacing: tabular-nums
  }

  .mb\:diagonal-fractions {
    --tw-numeric-fraction: diagonal-fractions
  }

  .mb\:stacked-fractions {
    --tw-numeric-fraction: stacked-fractions
  }

  .mb\:tracking-tighter {
    letter-spacing: -0.05em
  }

  .mb\:tracking-tight {
    letter-spacing: -0.025em
  }

  .mb\:tracking-normal {
    letter-spacing: 0em
  }

  .mb\:tracking-wide {
    letter-spacing: 0.025em
  }

  .mb\:tracking-wider {
    letter-spacing: 0.05em
  }

  .mb\:tracking-widest {
    letter-spacing: 0.1em
  }

  .mb\:align-baseline {
    vertical-align: baseline
  }

  .mb\:align-top {
    vertical-align: top
  }

  .mb\:align-middle {
    vertical-align: middle
  }

  .mb\:align-bottom {
    vertical-align: bottom
  }

  .mb\:align-text-top {
    vertical-align: text-top
  }

  .mb\:align-text-bottom {
    vertical-align: text-bottom
  }

  .mb\:w-0 {
    width: 0px
  }

  .mb\:w-1 {
    width: 0.25rem
  }

  .mb\:w-2 {
    width: 0.5rem
  }

  .mb\:w-3 {
    width: 0.75rem
  }

  .mb\:w-4 {
    width: 1rem
  }

  .mb\:w-5 {
    width: 1.25rem
  }

  .mb\:w-6 {
    width: 1.5rem
  }

  .mb\:w-7 {
    width: 1.75rem
  }

  .mb\:w-8 {
    width: 2rem
  }

  .mb\:w-9 {
    width: 2.25rem
  }

  .mb\:w-10 {
    width: 2.5rem
  }

  .mb\:w-11 {
    width: 2.75rem
  }

  .mb\:w-12 {
    width: 3rem
  }

  .mb\:w-14 {
    width: 3.5rem
  }

  .mb\:w-16 {
    width: 4rem
  }

  .mb\:w-20 {
    width: 5rem
  }

  .mb\:w-24 {
    width: 6rem
  }

  .mb\:w-28 {
    width: 7rem
  }

  .mb\:w-32 {
    width: 8rem
  }

  .mb\:w-36 {
    width: 9rem
  }

  .mb\:w-40 {
    width: 10rem
  }

  .mb\:w-44 {
    width: 11rem
  }

  .mb\:w-48 {
    width: 12rem
  }

  .mb\:w-52 {
    width: 13rem
  }

  .mb\:w-56 {
    width: 14rem
  }

  .mb\:w-60 {
    width: 15rem
  }

  .mb\:w-64 {
    width: 16rem
  }

  .mb\:w-72 {
    width: 18rem
  }

  .mb\:w-80 {
    width: 20rem
  }

  .mb\:w-96 {
    width: 24rem
  }

  .mb\:w-auto {
    width: auto
  }

  .mb\:w-px {
    width: 1px
  }

  .mb\:w-0\.5 {
    width: 0.125rem
  }

  .mb\:w-1\.5 {
    width: 0.375rem
  }

  .mb\:w-2\.5 {
    width: 0.625rem
  }

  .mb\:w-3\.5 {
    width: 0.875rem
  }

  .mb\:w-2\/3 {
    width: 66.666667%
  }

  .mb\:w-3\/4 {
    width: 75%
  }

  .mb\:w-6\/19 {
    width: 56.25%
  }

  .mb\:w-1\/1 {
    width: 100%
  }

  .mb\:w-3\/2 {
    width: 150%
  }

  .mb\:w-4\/3 {
    width: 133.333%
  }

  .mb\:w-1\/2 {
    width: 50%
  }

  .mb\:w-1\/3 {
    width: 33.333333%
  }

  .mb\:w-1\/4 {
    width: 25%
  }

  .mb\:w-2\/4 {
    width: 50%
  }

  .mb\:w-1\/5 {
    width: 20%
  }

  .mb\:w-2\/5 {
    width: 40%
  }

  .mb\:w-3\/5 {
    width: 60%
  }

  .mb\:w-4\/5 {
    width: 80%
  }

  .mb\:w-1\/6 {
    width: 16.666667%
  }

  .mb\:w-2\/6 {
    width: 33.333333%
  }

  .mb\:w-3\/6 {
    width: 50%
  }

  .mb\:w-4\/6 {
    width: 66.666667%
  }

  .mb\:w-5\/6 {
    width: 83.333333%
  }

  .mb\:w-1\/12 {
    width: 8.333333%
  }

  .mb\:w-2\/12 {
    width: 16.666667%
  }

  .mb\:w-3\/12 {
    width: 25%
  }

  .mb\:w-4\/12 {
    width: 33.333333%
  }

  .mb\:w-5\/12 {
    width: 41.666667%
  }

  .mb\:w-6\/12 {
    width: 50%
  }

  .mb\:w-7\/12 {
    width: 58.333333%
  }

  .mb\:w-8\/12 {
    width: 66.666667%
  }

  .mb\:w-9\/12 {
    width: 75%
  }

  .mb\:w-10\/12 {
    width: 83.333333%
  }

  .mb\:w-11\/12 {
    width: 91.666667%
  }

  .mb\:w-full {
    width: 100%
  }

  .mb\:w-screen {
    width: 100vw
  }

  .mb\:w-min {
    width: min-content
  }

  .mb\:w-max {
    width: max-content
  }

  .mb\:gap-0 {
    gap: 0px
  }

  .mb\:gap-1 {
    gap: 0.25rem
  }

  .mb\:gap-2 {
    gap: 0.5rem
  }

  .mb\:gap-3 {
    gap: 0.75rem
  }

  .mb\:gap-4 {
    gap: 1rem
  }

  .mb\:gap-5 {
    gap: 1.25rem
  }

  .mb\:gap-6 {
    gap: 1.5rem
  }

  .mb\:gap-7 {
    gap: 1.75rem
  }

  .mb\:gap-8 {
    gap: 2rem
  }

  .mb\:gap-9 {
    gap: 2.25rem
  }

  .mb\:gap-10 {
    gap: 2.5rem
  }

  .mb\:gap-11 {
    gap: 2.75rem
  }

  .mb\:gap-12 {
    gap: 3rem
  }

  .mb\:gap-14 {
    gap: 3.5rem
  }

  .mb\:gap-16 {
    gap: 4rem
  }

  .mb\:gap-20 {
    gap: 5rem
  }

  .mb\:gap-24 {
    gap: 6rem
  }

  .mb\:gap-28 {
    gap: 7rem
  }

  .mb\:gap-32 {
    gap: 8rem
  }

  .mb\:gap-36 {
    gap: 9rem
  }

  .mb\:gap-40 {
    gap: 10rem
  }

  .mb\:gap-44 {
    gap: 11rem
  }

  .mb\:gap-48 {
    gap: 12rem
  }

  .mb\:gap-52 {
    gap: 13rem
  }

  .mb\:gap-56 {
    gap: 14rem
  }

  .mb\:gap-60 {
    gap: 15rem
  }

  .mb\:gap-64 {
    gap: 16rem
  }

  .mb\:gap-72 {
    gap: 18rem
  }

  .mb\:gap-80 {
    gap: 20rem
  }

  .mb\:gap-96 {
    gap: 24rem
  }

  .mb\:gap-px {
    gap: 1px
  }

  .mb\:gap-0\.5 {
    gap: 0.125rem
  }

  .mb\:gap-1\.5 {
    gap: 0.375rem
  }

  .mb\:gap-2\.5 {
    gap: 0.625rem
  }

  .mb\:gap-3\.5 {
    gap: 0.875rem
  }

  .mb\:gap-2\/3 {
    gap: 66.666667%
  }

  .mb\:gap-3\/4 {
    gap: 75%
  }

  .mb\:gap-6\/19 {
    gap: 56.25%
  }

  .mb\:gap-1\/1 {
    gap: 100%
  }

  .mb\:gap-3\/2 {
    gap: 150%
  }

  .mb\:gap-4\/3 {
    gap: 133.333%
  }

  .mb\:gap-x-0 {
    column-gap: 0px
  }

  .mb\:gap-x-1 {
    column-gap: 0.25rem
  }

  .mb\:gap-x-2 {
    column-gap: 0.5rem
  }

  .mb\:gap-x-3 {
    column-gap: 0.75rem
  }

  .mb\:gap-x-4 {
    column-gap: 1rem
  }

  .mb\:gap-x-5 {
    column-gap: 1.25rem
  }

  .mb\:gap-x-6 {
    column-gap: 1.5rem
  }

  .mb\:gap-x-7 {
    column-gap: 1.75rem
  }

  .mb\:gap-x-8 {
    column-gap: 2rem
  }

  .mb\:gap-x-9 {
    column-gap: 2.25rem
  }

  .mb\:gap-x-10 {
    column-gap: 2.5rem
  }

  .mb\:gap-x-11 {
    column-gap: 2.75rem
  }

  .mb\:gap-x-12 {
    column-gap: 3rem
  }

  .mb\:gap-x-14 {
    column-gap: 3.5rem
  }

  .mb\:gap-x-16 {
    column-gap: 4rem
  }

  .mb\:gap-x-20 {
    column-gap: 5rem
  }

  .mb\:gap-x-24 {
    column-gap: 6rem
  }

  .mb\:gap-x-28 {
    column-gap: 7rem
  }

  .mb\:gap-x-32 {
    column-gap: 8rem
  }

  .mb\:gap-x-36 {
    column-gap: 9rem
  }

  .mb\:gap-x-40 {
    column-gap: 10rem
  }

  .mb\:gap-x-44 {
    column-gap: 11rem
  }

  .mb\:gap-x-48 {
    column-gap: 12rem
  }

  .mb\:gap-x-52 {
    column-gap: 13rem
  }

  .mb\:gap-x-56 {
    column-gap: 14rem
  }

  .mb\:gap-x-60 {
    column-gap: 15rem
  }

  .mb\:gap-x-64 {
    column-gap: 16rem
  }

  .mb\:gap-x-72 {
    column-gap: 18rem
  }

  .mb\:gap-x-80 {
    column-gap: 20rem
  }

  .mb\:gap-x-96 {
    column-gap: 24rem
  }

  .mb\:gap-x-px {
    column-gap: 1px
  }

  .mb\:gap-x-0\.5 {
    column-gap: 0.125rem
  }

  .mb\:gap-x-1\.5 {
    column-gap: 0.375rem
  }

  .mb\:gap-x-2\.5 {
    column-gap: 0.625rem
  }

  .mb\:gap-x-3\.5 {
    column-gap: 0.875rem
  }

  .mb\:gap-x-2\/3 {
    column-gap: 66.666667%
  }

  .mb\:gap-x-3\/4 {
    column-gap: 75%
  }

  .mb\:gap-x-6\/19 {
    column-gap: 56.25%
  }

  .mb\:gap-x-1\/1 {
    column-gap: 100%
  }

  .mb\:gap-x-3\/2 {
    column-gap: 150%
  }

  .mb\:gap-x-4\/3 {
    column-gap: 133.333%
  }

  .mb\:gap-y-0 {
    row-gap: 0px
  }

  .mb\:gap-y-1 {
    row-gap: 0.25rem
  }

  .mb\:gap-y-2 {
    row-gap: 0.5rem
  }

  .mb\:gap-y-3 {
    row-gap: 0.75rem
  }

  .mb\:gap-y-4 {
    row-gap: 1rem
  }

  .mb\:gap-y-5 {
    row-gap: 1.25rem
  }

  .mb\:gap-y-6 {
    row-gap: 1.5rem
  }

  .mb\:gap-y-7 {
    row-gap: 1.75rem
  }

  .mb\:gap-y-8 {
    row-gap: 2rem
  }

  .mb\:gap-y-9 {
    row-gap: 2.25rem
  }

  .mb\:gap-y-10 {
    row-gap: 2.5rem
  }

  .mb\:gap-y-11 {
    row-gap: 2.75rem
  }

  .mb\:gap-y-12 {
    row-gap: 3rem
  }

  .mb\:gap-y-14 {
    row-gap: 3.5rem
  }

  .mb\:gap-y-16 {
    row-gap: 4rem
  }

  .mb\:gap-y-20 {
    row-gap: 5rem
  }

  .mb\:gap-y-24 {
    row-gap: 6rem
  }

  .mb\:gap-y-28 {
    row-gap: 7rem
  }

  .mb\:gap-y-32 {
    row-gap: 8rem
  }

  .mb\:gap-y-36 {
    row-gap: 9rem
  }

  .mb\:gap-y-40 {
    row-gap: 10rem
  }

  .mb\:gap-y-44 {
    row-gap: 11rem
  }

  .mb\:gap-y-48 {
    row-gap: 12rem
  }

  .mb\:gap-y-52 {
    row-gap: 13rem
  }

  .mb\:gap-y-56 {
    row-gap: 14rem
  }

  .mb\:gap-y-60 {
    row-gap: 15rem
  }

  .mb\:gap-y-64 {
    row-gap: 16rem
  }

  .mb\:gap-y-72 {
    row-gap: 18rem
  }

  .mb\:gap-y-80 {
    row-gap: 20rem
  }

  .mb\:gap-y-96 {
    row-gap: 24rem
  }

  .mb\:gap-y-px {
    row-gap: 1px
  }

  .mb\:gap-y-0\.5 {
    row-gap: 0.125rem
  }

  .mb\:gap-y-1\.5 {
    row-gap: 0.375rem
  }

  .mb\:gap-y-2\.5 {
    row-gap: 0.625rem
  }

  .mb\:gap-y-3\.5 {
    row-gap: 0.875rem
  }

  .mb\:gap-y-2\/3 {
    row-gap: 66.666667%
  }

  .mb\:gap-y-3\/4 {
    row-gap: 75%
  }

  .mb\:gap-y-6\/19 {
    row-gap: 56.25%
  }

  .mb\:gap-y-1\/1 {
    row-gap: 100%
  }

  .mb\:gap-y-3\/2 {
    row-gap: 150%
  }

  .mb\:gap-y-4\/3 {
    row-gap: 133.333%
  }

  .mb\:grid-flow-row {
    grid-auto-flow: row
  }

  .mb\:grid-flow-col {
    grid-auto-flow: column
  }

  .mb\:grid-flow-row-dense {
    grid-auto-flow: row dense
  }

  .mb\:grid-flow-col-dense {
    grid-auto-flow: column dense
  }

  .mb\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .mb\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .mb\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .mb\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .mb\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .mb\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
  }

  .mb\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr))
  }

  .mb\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr))
  }

  .mb\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr))
  }

  .mb\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr))
  }

  .mb\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr))
  }

  .mb\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
  }

  .mb\:grid-cols-none {
    grid-template-columns: none
  }

  .mb\:auto-cols-auto {
    grid-auto-columns: auto
  }

  .mb\:auto-cols-min {
    grid-auto-columns: min-content
  }

  .mb\:auto-cols-max {
    grid-auto-columns: max-content
  }

  .mb\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
  }

  .mb\:col-auto {
    grid-column: auto
  }

  .mb\:col-span-1 {
    grid-column: span 1 / span 1
  }

  .mb\:col-span-2 {
    grid-column: span 2 / span 2
  }

  .mb\:col-span-3 {
    grid-column: span 3 / span 3
  }

  .mb\:col-span-4 {
    grid-column: span 4 / span 4
  }

  .mb\:col-span-5 {
    grid-column: span 5 / span 5
  }

  .mb\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .mb\:col-span-7 {
    grid-column: span 7 / span 7
  }

  .mb\:col-span-8 {
    grid-column: span 8 / span 8
  }

  .mb\:col-span-9 {
    grid-column: span 9 / span 9
  }

  .mb\:col-span-10 {
    grid-column: span 10 / span 10
  }

  .mb\:col-span-11 {
    grid-column: span 11 / span 11
  }

  .mb\:col-span-12 {
    grid-column: span 12 / span 12
  }

  .mb\:col-span-full {
    grid-column: 1 / -1
  }

  .mb\:col-start-1 {
    grid-column-start: 1
  }

  .mb\:col-start-2 {
    grid-column-start: 2
  }

  .mb\:col-start-3 {
    grid-column-start: 3
  }

  .mb\:col-start-4 {
    grid-column-start: 4
  }

  .mb\:col-start-5 {
    grid-column-start: 5
  }

  .mb\:col-start-6 {
    grid-column-start: 6
  }

  .mb\:col-start-7 {
    grid-column-start: 7
  }

  .mb\:col-start-8 {
    grid-column-start: 8
  }

  .mb\:col-start-9 {
    grid-column-start: 9
  }

  .mb\:col-start-10 {
    grid-column-start: 10
  }

  .mb\:col-start-11 {
    grid-column-start: 11
  }

  .mb\:col-start-12 {
    grid-column-start: 12
  }

  .mb\:col-start-13 {
    grid-column-start: 13
  }

  .mb\:col-start-auto {
    grid-column-start: auto
  }

  .mb\:col-end-1 {
    grid-column-end: 1
  }

  .mb\:col-end-2 {
    grid-column-end: 2
  }

  .mb\:col-end-3 {
    grid-column-end: 3
  }

  .mb\:col-end-4 {
    grid-column-end: 4
  }

  .mb\:col-end-5 {
    grid-column-end: 5
  }

  .mb\:col-end-6 {
    grid-column-end: 6
  }

  .mb\:col-end-7 {
    grid-column-end: 7
  }

  .mb\:col-end-8 {
    grid-column-end: 8
  }

  .mb\:col-end-9 {
    grid-column-end: 9
  }

  .mb\:col-end-10 {
    grid-column-end: 10
  }

  .mb\:col-end-11 {
    grid-column-end: 11
  }

  .mb\:col-end-12 {
    grid-column-end: 12
  }

  .mb\:col-end-13 {
    grid-column-end: 13
  }

  .mb\:col-end-auto {
    grid-column-end: auto
  }

  .mb\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr))
  }

  .mb\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr))
  }

  .mb\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr))
  }

  .mb\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr))
  }

  .mb\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr))
  }

  .mb\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr))
  }

  .mb\:grid-rows-none {
    grid-template-rows: none
  }

  .mb\:auto-rows-auto {
    grid-auto-rows: auto
  }

  .mb\:auto-rows-min {
    grid-auto-rows: min-content
  }

  .mb\:auto-rows-max {
    grid-auto-rows: max-content
  }

  .mb\:auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr)
  }

  .mb\:row-auto {
    grid-row: auto
  }

  .mb\:row-span-1 {
    grid-row: span 1 / span 1
  }

  .mb\:row-span-2 {
    grid-row: span 2 / span 2
  }

  .mb\:row-span-3 {
    grid-row: span 3 / span 3
  }

  .mb\:row-span-4 {
    grid-row: span 4 / span 4
  }

  .mb\:row-span-5 {
    grid-row: span 5 / span 5
  }

  .mb\:row-span-6 {
    grid-row: span 6 / span 6
  }

  .mb\:row-span-full {
    grid-row: 1 / -1
  }

  .mb\:row-start-1 {
    grid-row-start: 1
  }

  .mb\:row-start-2 {
    grid-row-start: 2
  }

  .mb\:row-start-3 {
    grid-row-start: 3
  }

  .mb\:row-start-4 {
    grid-row-start: 4
  }

  .mb\:row-start-5 {
    grid-row-start: 5
  }

  .mb\:row-start-6 {
    grid-row-start: 6
  }

  .mb\:row-start-7 {
    grid-row-start: 7
  }

  .mb\:row-start-auto {
    grid-row-start: auto
  }

  .mb\:row-end-1 {
    grid-row-end: 1
  }

  .mb\:row-end-2 {
    grid-row-end: 2
  }

  .mb\:row-end-3 {
    grid-row-end: 3
  }

  .mb\:row-end-4 {
    grid-row-end: 4
  }

  .mb\:row-end-5 {
    grid-row-end: 5
  }

  .mb\:row-end-6 {
    grid-row-end: 6
  }

  .mb\:row-end-7 {
    grid-row-end: 7
  }

  .mb\:row-end-auto {
    grid-row-end: auto
  }

  .mb\:transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .mb\:transform-gpu {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .mb\:transform-none {
    transform: none
  }
}

@media (min-width: 768px) {
  .tb\:sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .tb\:not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .tb\:focus-within\:sr-only:focus-within {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .tb\:focus-within\:not-sr-only:focus-within {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .tb\:focus\:sr-only:focus {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .tb\:focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .tb\:border-collapse {
    border-collapse: collapse
  }

  .tb\:border-separate {
    border-collapse: separate
  }

  .tb\:block {
    display: block
  }

  .tb\:inline-block {
    display: inline-block
  }

  .tb\:inline {
    display: inline
  }

  .tb\:flex {
    display: flex
  }

  .tb\:inline-flex {
    display: inline-flex
  }

  .tb\:table {
    display: table
  }

  .tb\:table-caption {
    display: table-caption
  }

  .tb\:table-cell {
    display: table-cell
  }

  .tb\:table-column {
    display: table-column
  }

  .tb\:table-column-group {
    display: table-column-group
  }

  .tb\:table-footer-group {
    display: table-footer-group
  }

  .tb\:table-header-group {
    display: table-header-group
  }

  .tb\:table-row-group {
    display: table-row-group
  }

  .tb\:table-row {
    display: table-row
  }

  .tb\:flow-root {
    display: flow-root
  }

  .tb\:grid {
    display: grid
  }

  .tb\:inline-grid {
    display: inline-grid
  }

  .tb\:contents {
    display: contents
  }

  .tb\:hidden {
    display: none
  }

  .tb\:flex-row {
    flex-direction: row
  }

  .tb\:flex-row-reverse {
    flex-direction: row-reverse
  }

  .tb\:flex-col {
    flex-direction: column
  }

  .tb\:flex-col-reverse {
    flex-direction: column-reverse
  }

  .tb\:flex-wrap {
    flex-wrap: wrap
  }

  .tb\:flex-wrap-reverse {
    flex-wrap: wrap-reverse
  }

  .tb\:flex-nowrap {
    flex-wrap: nowrap
  }

  .tb\:place-items-auto {
    place-items: auto
  }

  .tb\:place-items-start {
    place-items: start
  }

  .tb\:place-items-end {
    place-items: end
  }

  .tb\:place-items-center {
    place-items: center
  }

  .tb\:place-items-stretch {
    place-items: stretch
  }

  .tb\:place-content-center {
    place-content: center
  }

  .tb\:place-content-start {
    place-content: start
  }

  .tb\:place-content-end {
    place-content: end
  }

  .tb\:place-content-between {
    place-content: space-between
  }

  .tb\:place-content-around {
    place-content: space-around
  }

  .tb\:place-content-evenly {
    place-content: space-evenly
  }

  .tb\:place-content-stretch {
    place-content: stretch
  }

  .tb\:place-self-auto {
    place-self: auto
  }

  .tb\:place-self-start {
    place-self: start
  }

  .tb\:place-self-end {
    place-self: end
  }

  .tb\:place-self-center {
    place-self: center
  }

  .tb\:place-self-stretch {
    place-self: stretch
  }

  .tb\:items-start {
    align-items: flex-start
  }

  .tb\:items-end {
    align-items: flex-end
  }

  .tb\:items-center {
    align-items: center
  }

  .tb\:items-baseline {
    align-items: baseline
  }

  .tb\:items-stretch {
    align-items: stretch
  }

  .tb\:content-center {
    align-content: center
  }

  .tb\:content-start {
    align-content: flex-start
  }

  .tb\:content-end {
    align-content: flex-end
  }

  .tb\:content-between {
    align-content: space-between
  }

  .tb\:content-around {
    align-content: space-around
  }

  .tb\:content-evenly {
    align-content: space-evenly
  }

  .tb\:self-auto {
    align-self: auto
  }

  .tb\:self-start {
    align-self: flex-start
  }

  .tb\:self-end {
    align-self: flex-end
  }

  .tb\:self-center {
    align-self: center
  }

  .tb\:self-stretch {
    align-self: stretch
  }

  .tb\:justify-items-auto {
    justify-items: auto
  }

  .tb\:justify-items-start {
    justify-items: start
  }

  .tb\:justify-items-end {
    justify-items: end
  }

  .tb\:justify-items-center {
    justify-items: center
  }

  .tb\:justify-items-stretch {
    justify-items: stretch
  }

  .tb\:justify-start {
    justify-content: flex-start
  }

  .tb\:justify-end {
    justify-content: flex-end
  }

  .tb\:justify-center {
    justify-content: center
  }

  .tb\:justify-between {
    justify-content: space-between
  }

  .tb\:justify-around {
    justify-content: space-around
  }

  .tb\:justify-evenly {
    justify-content: space-evenly
  }

  .tb\:justify-self-auto {
    justify-self: auto
  }

  .tb\:justify-self-start {
    justify-self: start
  }

  .tb\:justify-self-end {
    justify-self: end
  }

  .tb\:justify-self-center {
    justify-self: center
  }

  .tb\:justify-self-stretch {
    justify-self: stretch
  }

  .tb\:flex-1 {
    flex: 1 1 0%
  }

  .tb\:flex-auto {
    flex: 1 1 auto
  }

  .tb\:flex-initial {
    flex: 0 1 auto
  }

  .tb\:flex-none {
    flex: none
  }

  .tb\:flex-grow-0 {
    flex-grow: 0
  }

  .tb\:flex-grow {
    flex-grow: 1
  }

  .tb\:flex-shrink-0 {
    flex-shrink: 0
  }

  .tb\:flex-shrink {
    flex-shrink: 1
  }

  .tb\:order-1 {
    order: 1
  }

  .tb\:order-2 {
    order: 2
  }

  .tb\:order-3 {
    order: 3
  }

  .tb\:order-4 {
    order: 4
  }

  .tb\:order-5 {
    order: 5
  }

  .tb\:order-6 {
    order: 6
  }

  .tb\:order-7 {
    order: 7
  }

  .tb\:order-8 {
    order: 8
  }

  .tb\:order-9 {
    order: 9
  }

  .tb\:order-10 {
    order: 10
  }

  .tb\:order-11 {
    order: 11
  }

  .tb\:order-12 {
    order: 12
  }

  .tb\:order-first {
    order: -9999
  }

  .tb\:order-last {
    order: 9999
  }

  .tb\:order-none {
    order: 0
  }

  .tb\:float-right {
    float: right
  }

  .tb\:float-left {
    float: left
  }

  .tb\:float-none {
    float: none
  }

  .tb\:font-thin {
    font-weight: 100
  }

  .tb\:font-extralight {
    font-weight: 200
  }

  .tb\:font-light {
    font-weight: 300
  }

  .tb\:font-normal {
    font-weight: 400
  }

  .tb\:font-medium {
    font-weight: 500
  }

  .tb\:font-semibold {
    font-weight: 600
  }

  .tb\:font-bold {
    font-weight: 700
  }

  .tb\:font-extrabold {
    font-weight: 800
  }

  .tb\:font-black {
    font-weight: 900
  }

  .tb\:h-0 {
    height: 0px
  }

  .tb\:h-1 {
    height: 0.25rem
  }

  .tb\:h-2 {
    height: 0.5rem
  }

  .tb\:h-3 {
    height: 0.75rem
  }

  .tb\:h-4 {
    height: 1rem
  }

  .tb\:h-5 {
    height: 1.25rem
  }

  .tb\:h-6 {
    height: 1.5rem
  }

  .tb\:h-7 {
    height: 1.75rem
  }

  .tb\:h-8 {
    height: 2rem
  }

  .tb\:h-9 {
    height: 2.25rem
  }

  .tb\:h-10 {
    height: 2.5rem
  }

  .tb\:h-11 {
    height: 2.75rem
  }

  .tb\:h-12 {
    height: 3rem
  }

  .tb\:h-14 {
    height: 3.5rem
  }

  .tb\:h-16 {
    height: 4rem
  }

  .tb\:h-20 {
    height: 5rem
  }

  .tb\:h-24 {
    height: 6rem
  }

  .tb\:h-28 {
    height: 7rem
  }

  .tb\:h-32 {
    height: 8rem
  }

  .tb\:h-36 {
    height: 9rem
  }

  .tb\:h-40 {
    height: 10rem
  }

  .tb\:h-44 {
    height: 11rem
  }

  .tb\:h-48 {
    height: 12rem
  }

  .tb\:h-52 {
    height: 13rem
  }

  .tb\:h-56 {
    height: 14rem
  }

  .tb\:h-60 {
    height: 15rem
  }

  .tb\:h-64 {
    height: 16rem
  }

  .tb\:h-72 {
    height: 18rem
  }

  .tb\:h-80 {
    height: 20rem
  }

  .tb\:h-96 {
    height: 24rem
  }

  .tb\:h-auto {
    height: auto
  }

  .tb\:h-px {
    height: 1px
  }

  .tb\:h-0\.5 {
    height: 0.125rem
  }

  .tb\:h-1\.5 {
    height: 0.375rem
  }

  .tb\:h-2\.5 {
    height: 0.625rem
  }

  .tb\:h-3\.5 {
    height: 0.875rem
  }

  .tb\:h-2\/3 {
    height: 66.666667%
  }

  .tb\:h-3\/4 {
    height: 75%
  }

  .tb\:h-6\/19 {
    height: 56.25%
  }

  .tb\:h-1\/1 {
    height: 100%
  }

  .tb\:h-3\/2 {
    height: 150%
  }

  .tb\:h-4\/3 {
    height: 133.333%
  }

  .tb\:h-1\/2 {
    height: 50%
  }

  .tb\:h-1\/3 {
    height: 33.333333%
  }

  .tb\:h-1\/4 {
    height: 25%
  }

  .tb\:h-2\/4 {
    height: 50%
  }

  .tb\:h-1\/5 {
    height: 20%
  }

  .tb\:h-2\/5 {
    height: 40%
  }

  .tb\:h-3\/5 {
    height: 60%
  }

  .tb\:h-4\/5 {
    height: 80%
  }

  .tb\:h-1\/6 {
    height: 16.666667%
  }

  .tb\:h-2\/6 {
    height: 33.333333%
  }

  .tb\:h-3\/6 {
    height: 50%
  }

  .tb\:h-4\/6 {
    height: 66.666667%
  }

  .tb\:h-5\/6 {
    height: 83.333333%
  }

  .tb\:h-full {
    height: 100%
  }

  .tb\:h-screen {
    height: 100vh
  }

  .tb\:text-xs {
    font-size: .75rem
  }

  .tb\:text-sm {
    font-size: .875rem
  }

  .tb\:text-md {
    font-size: 1rem
  }

  .tb\:text-lg {
    font-size: 1.125rem
  }

  .tb\:text-xl {
    font-size: 1.25rem
  }

  .tb\:text-2xl {
    font-size: 1.5rem
  }

  .tb\:text-3xl {
    font-size: 1.875rem
  }

  .tb\:text-4xl {
    font-size: 2.25rem
  }

  .tb\:text-5xl {
    font-size: 3rem
  }

  .tb\:text-6xl {
    font-size: 4rem
  }

  .tb\:text-7xl {
    font-size: 5rem
  }

  .tb\:text-8xl {
    font-size: 6rem
  }

  .tb\:text-9xl {
    font-size: 8rem
  }

  .tb\:list-inside {
    list-style-position: inside
  }

  .tb\:list-outside {
    list-style-position: outside
  }

  .tb\:list-none {
    list-style-type: none
  }

  .tb\:list-disc {
    list-style-type: disc
  }

  .tb\:list-decimal {
    list-style-type: decimal
  }

  .tb\:m-0 {
    margin: 0px
  }

  .tb\:m-1 {
    margin: 0.25rem
  }

  .tb\:m-2 {
    margin: 0.5rem
  }

  .tb\:m-3 {
    margin: 0.75rem
  }

  .tb\:m-4 {
    margin: 1rem
  }

  .tb\:m-5 {
    margin: 1.25rem
  }

  .tb\:m-6 {
    margin: 1.5rem
  }

  .tb\:m-7 {
    margin: 1.75rem
  }

  .tb\:m-8 {
    margin: 2rem
  }

  .tb\:m-9 {
    margin: 2.25rem
  }

  .tb\:m-10 {
    margin: 2.5rem
  }

  .tb\:m-11 {
    margin: 2.75rem
  }

  .tb\:m-12 {
    margin: 3rem
  }

  .tb\:m-14 {
    margin: 3.5rem
  }

  .tb\:m-16 {
    margin: 4rem
  }

  .tb\:m-20 {
    margin: 5rem
  }

  .tb\:m-24 {
    margin: 6rem
  }

  .tb\:m-28 {
    margin: 7rem
  }

  .tb\:m-32 {
    margin: 8rem
  }

  .tb\:m-36 {
    margin: 9rem
  }

  .tb\:m-40 {
    margin: 10rem
  }

  .tb\:m-44 {
    margin: 11rem
  }

  .tb\:m-48 {
    margin: 12rem
  }

  .tb\:m-52 {
    margin: 13rem
  }

  .tb\:m-56 {
    margin: 14rem
  }

  .tb\:m-60 {
    margin: 15rem
  }

  .tb\:m-64 {
    margin: 16rem
  }

  .tb\:m-72 {
    margin: 18rem
  }

  .tb\:m-80 {
    margin: 20rem
  }

  .tb\:m-96 {
    margin: 24rem
  }

  .tb\:m-auto {
    margin: auto
  }

  .tb\:m-px {
    margin: 1px
  }

  .tb\:m-0\.5 {
    margin: 0.125rem
  }

  .tb\:m-1\.5 {
    margin: 0.375rem
  }

  .tb\:m-2\.5 {
    margin: 0.625rem
  }

  .tb\:m-3\.5 {
    margin: 0.875rem
  }

  .tb\:m-2\/3 {
    margin: 66.666667%
  }

  .tb\:m-3\/4 {
    margin: 75%
  }

  .tb\:m-6\/19 {
    margin: 56.25%
  }

  .tb\:m-1\/1 {
    margin: 100%
  }

  .tb\:m-3\/2 {
    margin: 150%
  }

  .tb\:m-4\/3 {
    margin: 133.333%
  }

  .tb\:-m-0 {
    margin: 0px
  }

  .tb\:-m-1 {
    margin: -0.25rem
  }

  .tb\:-m-2 {
    margin: -0.5rem
  }

  .tb\:-m-3 {
    margin: -0.75rem
  }

  .tb\:-m-4 {
    margin: -1rem
  }

  .tb\:-m-5 {
    margin: -1.25rem
  }

  .tb\:-m-6 {
    margin: -1.5rem
  }

  .tb\:-m-7 {
    margin: -1.75rem
  }

  .tb\:-m-8 {
    margin: -2rem
  }

  .tb\:-m-9 {
    margin: -2.25rem
  }

  .tb\:-m-10 {
    margin: -2.5rem
  }

  .tb\:-m-11 {
    margin: -2.75rem
  }

  .tb\:-m-12 {
    margin: -3rem
  }

  .tb\:-m-14 {
    margin: -3.5rem
  }

  .tb\:-m-16 {
    margin: -4rem
  }

  .tb\:-m-20 {
    margin: -5rem
  }

  .tb\:-m-24 {
    margin: -6rem
  }

  .tb\:-m-28 {
    margin: -7rem
  }

  .tb\:-m-32 {
    margin: -8rem
  }

  .tb\:-m-36 {
    margin: -9rem
  }

  .tb\:-m-40 {
    margin: -10rem
  }

  .tb\:-m-44 {
    margin: -11rem
  }

  .tb\:-m-48 {
    margin: -12rem
  }

  .tb\:-m-52 {
    margin: -13rem
  }

  .tb\:-m-56 {
    margin: -14rem
  }

  .tb\:-m-60 {
    margin: -15rem
  }

  .tb\:-m-64 {
    margin: -16rem
  }

  .tb\:-m-72 {
    margin: -18rem
  }

  .tb\:-m-80 {
    margin: -20rem
  }

  .tb\:-m-96 {
    margin: -24rem
  }

  .tb\:-m-px {
    margin: -1px
  }

  .tb\:-m-0\.5 {
    margin: -0.125rem
  }

  .tb\:-m-1\.5 {
    margin: -0.375rem
  }

  .tb\:-m-2\.5 {
    margin: -0.625rem
  }

  .tb\:-m-3\.5 {
    margin: -0.875rem
  }

  .tb\:-m-2\/3 {
    margin: -66.66667%
  }

  .tb\:-m-3\/4 {
    margin: -75%
  }

  .tb\:-m-6\/19 {
    margin: -56.25%
  }

  .tb\:-m-1\/1 {
    margin: -100%
  }

  .tb\:-m-3\/2 {
    margin: -150%
  }

  .tb\:-m-4\/3 {
    margin: -133.333%
  }

  .tb\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px
  }

  .tb\:mx-0 {
    margin-left: 0px;
    margin-right: 0px
  }

  .tb\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem
  }

  .tb\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem
  }

  .tb\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
  }

  .tb\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem
  }

  .tb\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
  }

  .tb\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem
  }

  .tb\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
  }

  .tb\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
  }

  .tb\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }

  .tb\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
  }

  .tb\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
  }

  .tb\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
  }

  .tb\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem
  }

  .tb\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem
  }

  .tb\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
  }

  .tb\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem
  }

  .tb\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem
  }

  .tb\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem
  }

  .tb\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }

  .tb\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem
  }

  .tb\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem
  }

  .tb\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem
  }

  .tb\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem
  }

  .tb\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem
  }

  .tb\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem
  }

  .tb\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem
  }

  .tb\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem
  }

  .tb\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem
  }

  .tb\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem
  }

  .tb\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem
  }

  .tb\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem
  }

  .tb\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem
  }

  .tb\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem
  }

  .tb\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem
  }

  .tb\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem
  }

  .tb\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem
  }

  .tb\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem
  }

  .tb\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem
  }

  .tb\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem
  }

  .tb\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem
  }

  .tb\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem
  }

  .tb\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem
  }

  .tb\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem
  }

  .tb\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem
  }

  .tb\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem
  }

  .tb\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem
  }

  .tb\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem
  }

  .tb\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem
  }

  .tb\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem
  }

  .tb\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem
  }

  .tb\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem
  }

  .tb\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem
  }

  .tb\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem
  }

  .tb\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem
  }

  .tb\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem
  }

  .tb\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem
  }

  .tb\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem
  }

  .tb\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem
  }

  .tb\:my-auto {
    margin-top: auto;
    margin-bottom: auto
  }

  .tb\:mx-auto {
    margin-left: auto;
    margin-right: auto
  }

  .tb\:my-px {
    margin-top: 1px;
    margin-bottom: 1px
  }

  .tb\:mx-px {
    margin-left: 1px;
    margin-right: 1px
  }

  .tb\:my-0\.5 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem
  }

  .tb\:mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem
  }

  .tb\:my-1\.5 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem
  }

  .tb\:mx-1\.5 {
    margin-left: 0.375rem;
    margin-right: 0.375rem
  }

  .tb\:my-2\.5 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem
  }

  .tb\:mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem
  }

  .tb\:my-3\.5 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem
  }

  .tb\:mx-3\.5 {
    margin-left: 0.875rem;
    margin-right: 0.875rem
  }

  .tb\:my-2\/3 {
    margin-top: 66.666667%;
    margin-bottom: 66.666667%
  }

  .tb\:mx-2\/3 {
    margin-left: 66.666667%;
    margin-right: 66.666667%
  }

  .tb\:my-3\/4 {
    margin-top: 75%;
    margin-bottom: 75%
  }

  .tb\:mx-3\/4 {
    margin-left: 75%;
    margin-right: 75%
  }

  .tb\:my-6\/19 {
    margin-top: 56.25%;
    margin-bottom: 56.25%
  }

  .tb\:mx-6\/19 {
    margin-left: 56.25%;
    margin-right: 56.25%
  }

  .tb\:my-1\/1 {
    margin-top: 100%;
    margin-bottom: 100%
  }

  .tb\:mx-1\/1 {
    margin-left: 100%;
    margin-right: 100%
  }

  .tb\:my-3\/2 {
    margin-top: 150%;
    margin-bottom: 150%
  }

  .tb\:mx-3\/2 {
    margin-left: 150%;
    margin-right: 150%
  }

  .tb\:my-4\/3 {
    margin-top: 133.333%;
    margin-bottom: 133.333%
  }

  .tb\:mx-4\/3 {
    margin-left: 133.333%;
    margin-right: 133.333%
  }

  .tb\:-my-0 {
    margin-top: 0px;
    margin-bottom: 0px
  }

  .tb\:-mx-0 {
    margin-left: 0px;
    margin-right: 0px
  }

  .tb\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem
  }

  .tb\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem
  }

  .tb\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem
  }

  .tb\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem
  }

  .tb\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem
  }

  .tb\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem
  }

  .tb\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem
  }

  .tb\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem
  }

  .tb\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem
  }

  .tb\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem
  }

  .tb\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem
  }

  .tb\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem
  }

  .tb\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem
  }

  .tb\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem
  }

  .tb\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem
  }

  .tb\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem
  }

  .tb\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem
  }

  .tb\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem
  }

  .tb\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem
  }

  .tb\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem
  }

  .tb\:-my-11 {
    margin-top: -2.75rem;
    margin-bottom: -2.75rem
  }

  .tb\:-mx-11 {
    margin-left: -2.75rem;
    margin-right: -2.75rem
  }

  .tb\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem
  }

  .tb\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem
  }

  .tb\:-my-14 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem
  }

  .tb\:-mx-14 {
    margin-left: -3.5rem;
    margin-right: -3.5rem
  }

  .tb\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem
  }

  .tb\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem
  }

  .tb\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem
  }

  .tb\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem
  }

  .tb\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem
  }

  .tb\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem
  }

  .tb\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem
  }

  .tb\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem
  }

  .tb\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem
  }

  .tb\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem
  }

  .tb\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem
  }

  .tb\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem
  }

  .tb\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem
  }

  .tb\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem
  }

  .tb\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem
  }

  .tb\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem
  }

  .tb\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem
  }

  .tb\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem
  }

  .tb\:-my-52 {
    margin-top: -13rem;
    margin-bottom: -13rem
  }

  .tb\:-mx-52 {
    margin-left: -13rem;
    margin-right: -13rem
  }

  .tb\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem
  }

  .tb\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem
  }

  .tb\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem
  }

  .tb\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem
  }

  .tb\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem
  }

  .tb\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem
  }

  .tb\:-my-72 {
    margin-top: -18rem;
    margin-bottom: -18rem
  }

  .tb\:-mx-72 {
    margin-left: -18rem;
    margin-right: -18rem
  }

  .tb\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem
  }

  .tb\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem
  }

  .tb\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem
  }

  .tb\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem
  }

  .tb\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px
  }

  .tb\:-mx-px {
    margin-left: -1px;
    margin-right: -1px
  }

  .tb\:-my-0\.5 {
    margin-top: -0.125rem;
    margin-bottom: -0.125rem
  }

  .tb\:-mx-0\.5 {
    margin-left: -0.125rem;
    margin-right: -0.125rem
  }

  .tb\:-my-1\.5 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem
  }

  .tb\:-mx-1\.5 {
    margin-left: -0.375rem;
    margin-right: -0.375rem
  }

  .tb\:-my-2\.5 {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem
  }

  .tb\:-mx-2\.5 {
    margin-left: -0.625rem;
    margin-right: -0.625rem
  }

  .tb\:-my-3\.5 {
    margin-top: -0.875rem;
    margin-bottom: -0.875rem
  }

  .tb\:-mx-3\.5 {
    margin-left: -0.875rem;
    margin-right: -0.875rem
  }

  .tb\:-my-2\/3 {
    margin-top: -66.66667%;
    margin-bottom: -66.66667%
  }

  .tb\:-mx-2\/3 {
    margin-left: -66.66667%;
    margin-right: -66.66667%
  }

  .tb\:-my-3\/4 {
    margin-top: -75%;
    margin-bottom: -75%
  }

  .tb\:-mx-3\/4 {
    margin-left: -75%;
    margin-right: -75%
  }

  .tb\:-my-6\/19 {
    margin-top: -56.25%;
    margin-bottom: -56.25%
  }

  .tb\:-mx-6\/19 {
    margin-left: -56.25%;
    margin-right: -56.25%
  }

  .tb\:-my-1\/1 {
    margin-top: -100%;
    margin-bottom: -100%
  }

  .tb\:-mx-1\/1 {
    margin-left: -100%;
    margin-right: -100%
  }

  .tb\:-my-3\/2 {
    margin-top: -150%;
    margin-bottom: -150%
  }

  .tb\:-mx-3\/2 {
    margin-left: -150%;
    margin-right: -150%
  }

  .tb\:-my-4\/3 {
    margin-top: -133.333%;
    margin-bottom: -133.333%
  }

  .tb\:-mx-4\/3 {
    margin-left: -133.333%;
    margin-right: -133.333%
  }

  .tb\:mt-0 {
    margin-top: 0px
  }

  .tb\:mr-0 {
    margin-right: 0px
  }

  .tb\:mb-0 {
    margin-bottom: 0px
  }

  .tb\:ml-0 {
    margin-left: 0px
  }

  .tb\:mt-1 {
    margin-top: 0.25rem
  }

  .tb\:mr-1 {
    margin-right: 0.25rem
  }

  .tb\:mb-1 {
    margin-bottom: 0.25rem
  }

  .tb\:ml-1 {
    margin-left: 0.25rem
  }

  .tb\:mt-2 {
    margin-top: 0.5rem
  }

  .tb\:mr-2 {
    margin-right: 0.5rem
  }

  .tb\:mb-2 {
    margin-bottom: 0.5rem
  }

  .tb\:ml-2 {
    margin-left: 0.5rem
  }

  .tb\:mt-3 {
    margin-top: 0.75rem
  }

  .tb\:mr-3 {
    margin-right: 0.75rem
  }

  .tb\:mb-3 {
    margin-bottom: 0.75rem
  }

  .tb\:ml-3 {
    margin-left: 0.75rem
  }

  .tb\:mt-4 {
    margin-top: 1rem
  }

  .tb\:mr-4 {
    margin-right: 1rem
  }

  .tb\:mb-4 {
    margin-bottom: 1rem
  }

  .tb\:ml-4 {
    margin-left: 1rem
  }

  .tb\:mt-5 {
    margin-top: 1.25rem
  }

  .tb\:mr-5 {
    margin-right: 1.25rem
  }

  .tb\:mb-5 {
    margin-bottom: 1.25rem
  }

  .tb\:ml-5 {
    margin-left: 1.25rem
  }

  .tb\:mt-6 {
    margin-top: 1.5rem
  }

  .tb\:mr-6 {
    margin-right: 1.5rem
  }

  .tb\:mb-6 {
    margin-bottom: 1.5rem
  }

  .tb\:ml-6 {
    margin-left: 1.5rem
  }

  .tb\:mt-7 {
    margin-top: 1.75rem
  }

  .tb\:mr-7 {
    margin-right: 1.75rem
  }

  .tb\:mb-7 {
    margin-bottom: 1.75rem
  }

  .tb\:ml-7 {
    margin-left: 1.75rem
  }

  .tb\:mt-8 {
    margin-top: 2rem
  }

  .tb\:mr-8 {
    margin-right: 2rem
  }

  .tb\:mb-8 {
    margin-bottom: 2rem
  }

  .tb\:ml-8 {
    margin-left: 2rem
  }

  .tb\:mt-9 {
    margin-top: 2.25rem
  }

  .tb\:mr-9 {
    margin-right: 2.25rem
  }

  .tb\:mb-9 {
    margin-bottom: 2.25rem
  }

  .tb\:ml-9 {
    margin-left: 2.25rem
  }

  .tb\:mt-10 {
    margin-top: 2.5rem
  }

  .tb\:mr-10 {
    margin-right: 2.5rem
  }

  .tb\:mb-10 {
    margin-bottom: 2.5rem
  }

  .tb\:ml-10 {
    margin-left: 2.5rem
  }

  .tb\:mt-11 {
    margin-top: 2.75rem
  }

  .tb\:mr-11 {
    margin-right: 2.75rem
  }

  .tb\:mb-11 {
    margin-bottom: 2.75rem
  }

  .tb\:ml-11 {
    margin-left: 2.75rem
  }

  .tb\:mt-12 {
    margin-top: 3rem
  }

  .tb\:mr-12 {
    margin-right: 3rem
  }

  .tb\:mb-12 {
    margin-bottom: 3rem
  }

  .tb\:ml-12 {
    margin-left: 3rem
  }

  .tb\:mt-14 {
    margin-top: 3.5rem
  }

  .tb\:mr-14 {
    margin-right: 3.5rem
  }

  .tb\:mb-14 {
    margin-bottom: 3.5rem
  }

  .tb\:ml-14 {
    margin-left: 3.5rem
  }

  .tb\:mt-16 {
    margin-top: 4rem
  }

  .tb\:mr-16 {
    margin-right: 4rem
  }

  .tb\:mb-16 {
    margin-bottom: 4rem
  }

  .tb\:ml-16 {
    margin-left: 4rem
  }

  .tb\:mt-20 {
    margin-top: 5rem
  }

  .tb\:mr-20 {
    margin-right: 5rem
  }

  .tb\:mb-20 {
    margin-bottom: 5rem
  }

  .tb\:ml-20 {
    margin-left: 5rem
  }

  .tb\:mt-24 {
    margin-top: 6rem
  }

  .tb\:mr-24 {
    margin-right: 6rem
  }

  .tb\:mb-24 {
    margin-bottom: 6rem
  }

  .tb\:ml-24 {
    margin-left: 6rem
  }

  .tb\:mt-28 {
    margin-top: 7rem
  }

  .tb\:mr-28 {
    margin-right: 7rem
  }

  .tb\:mb-28 {
    margin-bottom: 7rem
  }

  .tb\:ml-28 {
    margin-left: 7rem
  }

  .tb\:mt-32 {
    margin-top: 8rem
  }

  .tb\:mr-32 {
    margin-right: 8rem
  }

  .tb\:mb-32 {
    margin-bottom: 8rem
  }

  .tb\:ml-32 {
    margin-left: 8rem
  }

  .tb\:mt-36 {
    margin-top: 9rem
  }

  .tb\:mr-36 {
    margin-right: 9rem
  }

  .tb\:mb-36 {
    margin-bottom: 9rem
  }

  .tb\:ml-36 {
    margin-left: 9rem
  }

  .tb\:mt-40 {
    margin-top: 10rem
  }

  .tb\:mr-40 {
    margin-right: 10rem
  }

  .tb\:mb-40 {
    margin-bottom: 10rem
  }

  .tb\:ml-40 {
    margin-left: 10rem
  }

  .tb\:mt-44 {
    margin-top: 11rem
  }

  .tb\:mr-44 {
    margin-right: 11rem
  }

  .tb\:mb-44 {
    margin-bottom: 11rem
  }

  .tb\:ml-44 {
    margin-left: 11rem
  }

  .tb\:mt-48 {
    margin-top: 12rem
  }

  .tb\:mr-48 {
    margin-right: 12rem
  }

  .tb\:mb-48 {
    margin-bottom: 12rem
  }

  .tb\:ml-48 {
    margin-left: 12rem
  }

  .tb\:mt-52 {
    margin-top: 13rem
  }

  .tb\:mr-52 {
    margin-right: 13rem
  }

  .tb\:mb-52 {
    margin-bottom: 13rem
  }

  .tb\:ml-52 {
    margin-left: 13rem
  }

  .tb\:mt-56 {
    margin-top: 14rem
  }

  .tb\:mr-56 {
    margin-right: 14rem
  }

  .tb\:mb-56 {
    margin-bottom: 14rem
  }

  .tb\:ml-56 {
    margin-left: 14rem
  }

  .tb\:mt-60 {
    margin-top: 15rem
  }

  .tb\:mr-60 {
    margin-right: 15rem
  }

  .tb\:mb-60 {
    margin-bottom: 15rem
  }

  .tb\:ml-60 {
    margin-left: 15rem
  }

  .tb\:mt-64 {
    margin-top: 16rem
  }

  .tb\:mr-64 {
    margin-right: 16rem
  }

  .tb\:mb-64 {
    margin-bottom: 16rem
  }

  .tb\:ml-64 {
    margin-left: 16rem
  }

  .tb\:mt-72 {
    margin-top: 18rem
  }

  .tb\:mr-72 {
    margin-right: 18rem
  }

  .tb\:mb-72 {
    margin-bottom: 18rem
  }

  .tb\:ml-72 {
    margin-left: 18rem
  }

  .tb\:mt-80 {
    margin-top: 20rem
  }

  .tb\:mr-80 {
    margin-right: 20rem
  }

  .tb\:mb-80 {
    margin-bottom: 20rem
  }

  .tb\:ml-80 {
    margin-left: 20rem
  }

  .tb\:mt-96 {
    margin-top: 24rem
  }

  .tb\:mr-96 {
    margin-right: 24rem
  }

  .tb\:mb-96 {
    margin-bottom: 24rem
  }

  .tb\:ml-96 {
    margin-left: 24rem
  }

  .tb\:mt-auto {
    margin-top: auto
  }

  .tb\:mr-auto {
    margin-right: auto
  }

  .tb\:mb-auto {
    margin-bottom: auto
  }

  .tb\:ml-auto {
    margin-left: auto
  }

  .tb\:mt-px {
    margin-top: 1px
  }

  .tb\:mr-px {
    margin-right: 1px
  }

  .tb\:mb-px {
    margin-bottom: 1px
  }

  .tb\:ml-px {
    margin-left: 1px
  }

  .tb\:mt-0\.5 {
    margin-top: 0.125rem
  }

  .tb\:mr-0\.5 {
    margin-right: 0.125rem
  }

  .tb\:mb-0\.5 {
    margin-bottom: 0.125rem
  }

  .tb\:ml-0\.5 {
    margin-left: 0.125rem
  }

  .tb\:mt-1\.5 {
    margin-top: 0.375rem
  }

  .tb\:mr-1\.5 {
    margin-right: 0.375rem
  }

  .tb\:mb-1\.5 {
    margin-bottom: 0.375rem
  }

  .tb\:ml-1\.5 {
    margin-left: 0.375rem
  }

  .tb\:mt-2\.5 {
    margin-top: 0.625rem
  }

  .tb\:mr-2\.5 {
    margin-right: 0.625rem
  }

  .tb\:mb-2\.5 {
    margin-bottom: 0.625rem
  }

  .tb\:ml-2\.5 {
    margin-left: 0.625rem
  }

  .tb\:mt-3\.5 {
    margin-top: 0.875rem
  }

  .tb\:mr-3\.5 {
    margin-right: 0.875rem
  }

  .tb\:mb-3\.5 {
    margin-bottom: 0.875rem
  }

  .tb\:ml-3\.5 {
    margin-left: 0.875rem
  }

  .tb\:mt-2\/3 {
    margin-top: 66.666667%
  }

  .tb\:mr-2\/3 {
    margin-right: 66.666667%
  }

  .tb\:mb-2\/3 {
    margin-bottom: 66.666667%
  }

  .tb\:ml-2\/3 {
    margin-left: 66.666667%
  }

  .tb\:mt-3\/4 {
    margin-top: 75%
  }

  .tb\:mr-3\/4 {
    margin-right: 75%
  }

  .tb\:mb-3\/4 {
    margin-bottom: 75%
  }

  .tb\:ml-3\/4 {
    margin-left: 75%
  }

  .tb\:mt-6\/19 {
    margin-top: 56.25%
  }

  .tb\:mr-6\/19 {
    margin-right: 56.25%
  }

  .tb\:mb-6\/19 {
    margin-bottom: 56.25%
  }

  .tb\:ml-6\/19 {
    margin-left: 56.25%
  }

  .tb\:mt-1\/1 {
    margin-top: 100%
  }

  .tb\:mr-1\/1 {
    margin-right: 100%
  }

  .tb\:mb-1\/1 {
    margin-bottom: 100%
  }

  .tb\:ml-1\/1 {
    margin-left: 100%
  }

  .tb\:mt-3\/2 {
    margin-top: 150%
  }

  .tb\:mr-3\/2 {
    margin-right: 150%
  }

  .tb\:mb-3\/2 {
    margin-bottom: 150%
  }

  .tb\:ml-3\/2 {
    margin-left: 150%
  }

  .tb\:mt-4\/3 {
    margin-top: 133.333%
  }

  .tb\:mr-4\/3 {
    margin-right: 133.333%
  }

  .tb\:mb-4\/3 {
    margin-bottom: 133.333%
  }

  .tb\:ml-4\/3 {
    margin-left: 133.333%
  }

  .tb\:-mt-0 {
    margin-top: 0px
  }

  .tb\:-mr-0 {
    margin-right: 0px
  }

  .tb\:-mb-0 {
    margin-bottom: 0px
  }

  .tb\:-ml-0 {
    margin-left: 0px
  }

  .tb\:-mt-1 {
    margin-top: -0.25rem
  }

  .tb\:-mr-1 {
    margin-right: -0.25rem
  }

  .tb\:-mb-1 {
    margin-bottom: -0.25rem
  }

  .tb\:-ml-1 {
    margin-left: -0.25rem
  }

  .tb\:-mt-2 {
    margin-top: -0.5rem
  }

  .tb\:-mr-2 {
    margin-right: -0.5rem
  }

  .tb\:-mb-2 {
    margin-bottom: -0.5rem
  }

  .tb\:-ml-2 {
    margin-left: -0.5rem
  }

  .tb\:-mt-3 {
    margin-top: -0.75rem
  }

  .tb\:-mr-3 {
    margin-right: -0.75rem
  }

  .tb\:-mb-3 {
    margin-bottom: -0.75rem
  }

  .tb\:-ml-3 {
    margin-left: -0.75rem
  }

  .tb\:-mt-4 {
    margin-top: -1rem
  }

  .tb\:-mr-4 {
    margin-right: -1rem
  }

  .tb\:-mb-4 {
    margin-bottom: -1rem
  }

  .tb\:-ml-4 {
    margin-left: -1rem
  }

  .tb\:-mt-5 {
    margin-top: -1.25rem
  }

  .tb\:-mr-5 {
    margin-right: -1.25rem
  }

  .tb\:-mb-5 {
    margin-bottom: -1.25rem
  }

  .tb\:-ml-5 {
    margin-left: -1.25rem
  }

  .tb\:-mt-6 {
    margin-top: -1.5rem
  }

  .tb\:-mr-6 {
    margin-right: -1.5rem
  }

  .tb\:-mb-6 {
    margin-bottom: -1.5rem
  }

  .tb\:-ml-6 {
    margin-left: -1.5rem
  }

  .tb\:-mt-7 {
    margin-top: -1.75rem
  }

  .tb\:-mr-7 {
    margin-right: -1.75rem
  }

  .tb\:-mb-7 {
    margin-bottom: -1.75rem
  }

  .tb\:-ml-7 {
    margin-left: -1.75rem
  }

  .tb\:-mt-8 {
    margin-top: -2rem
  }

  .tb\:-mr-8 {
    margin-right: -2rem
  }

  .tb\:-mb-8 {
    margin-bottom: -2rem
  }

  .tb\:-ml-8 {
    margin-left: -2rem
  }

  .tb\:-mt-9 {
    margin-top: -2.25rem
  }

  .tb\:-mr-9 {
    margin-right: -2.25rem
  }

  .tb\:-mb-9 {
    margin-bottom: -2.25rem
  }

  .tb\:-ml-9 {
    margin-left: -2.25rem
  }

  .tb\:-mt-10 {
    margin-top: -2.5rem
  }

  .tb\:-mr-10 {
    margin-right: -2.5rem
  }

  .tb\:-mb-10 {
    margin-bottom: -2.5rem
  }

  .tb\:-ml-10 {
    margin-left: -2.5rem
  }

  .tb\:-mt-11 {
    margin-top: -2.75rem
  }

  .tb\:-mr-11 {
    margin-right: -2.75rem
  }

  .tb\:-mb-11 {
    margin-bottom: -2.75rem
  }

  .tb\:-ml-11 {
    margin-left: -2.75rem
  }

  .tb\:-mt-12 {
    margin-top: -3rem
  }

  .tb\:-mr-12 {
    margin-right: -3rem
  }

  .tb\:-mb-12 {
    margin-bottom: -3rem
  }

  .tb\:-ml-12 {
    margin-left: -3rem
  }

  .tb\:-mt-14 {
    margin-top: -3.5rem
  }

  .tb\:-mr-14 {
    margin-right: -3.5rem
  }

  .tb\:-mb-14 {
    margin-bottom: -3.5rem
  }

  .tb\:-ml-14 {
    margin-left: -3.5rem
  }

  .tb\:-mt-16 {
    margin-top: -4rem
  }

  .tb\:-mr-16 {
    margin-right: -4rem
  }

  .tb\:-mb-16 {
    margin-bottom: -4rem
  }

  .tb\:-ml-16 {
    margin-left: -4rem
  }

  .tb\:-mt-20 {
    margin-top: -5rem
  }

  .tb\:-mr-20 {
    margin-right: -5rem
  }

  .tb\:-mb-20 {
    margin-bottom: -5rem
  }

  .tb\:-ml-20 {
    margin-left: -5rem
  }

  .tb\:-mt-24 {
    margin-top: -6rem
  }

  .tb\:-mr-24 {
    margin-right: -6rem
  }

  .tb\:-mb-24 {
    margin-bottom: -6rem
  }

  .tb\:-ml-24 {
    margin-left: -6rem
  }

  .tb\:-mt-28 {
    margin-top: -7rem
  }

  .tb\:-mr-28 {
    margin-right: -7rem
  }

  .tb\:-mb-28 {
    margin-bottom: -7rem
  }

  .tb\:-ml-28 {
    margin-left: -7rem
  }

  .tb\:-mt-32 {
    margin-top: -8rem
  }

  .tb\:-mr-32 {
    margin-right: -8rem
  }

  .tb\:-mb-32 {
    margin-bottom: -8rem
  }

  .tb\:-ml-32 {
    margin-left: -8rem
  }

  .tb\:-mt-36 {
    margin-top: -9rem
  }

  .tb\:-mr-36 {
    margin-right: -9rem
  }

  .tb\:-mb-36 {
    margin-bottom: -9rem
  }

  .tb\:-ml-36 {
    margin-left: -9rem
  }

  .tb\:-mt-40 {
    margin-top: -10rem
  }

  .tb\:-mr-40 {
    margin-right: -10rem
  }

  .tb\:-mb-40 {
    margin-bottom: -10rem
  }

  .tb\:-ml-40 {
    margin-left: -10rem
  }

  .tb\:-mt-44 {
    margin-top: -11rem
  }

  .tb\:-mr-44 {
    margin-right: -11rem
  }

  .tb\:-mb-44 {
    margin-bottom: -11rem
  }

  .tb\:-ml-44 {
    margin-left: -11rem
  }

  .tb\:-mt-48 {
    margin-top: -12rem
  }

  .tb\:-mr-48 {
    margin-right: -12rem
  }

  .tb\:-mb-48 {
    margin-bottom: -12rem
  }

  .tb\:-ml-48 {
    margin-left: -12rem
  }

  .tb\:-mt-52 {
    margin-top: -13rem
  }

  .tb\:-mr-52 {
    margin-right: -13rem
  }

  .tb\:-mb-52 {
    margin-bottom: -13rem
  }

  .tb\:-ml-52 {
    margin-left: -13rem
  }

  .tb\:-mt-56 {
    margin-top: -14rem
  }

  .tb\:-mr-56 {
    margin-right: -14rem
  }

  .tb\:-mb-56 {
    margin-bottom: -14rem
  }

  .tb\:-ml-56 {
    margin-left: -14rem
  }

  .tb\:-mt-60 {
    margin-top: -15rem
  }

  .tb\:-mr-60 {
    margin-right: -15rem
  }

  .tb\:-mb-60 {
    margin-bottom: -15rem
  }

  .tb\:-ml-60 {
    margin-left: -15rem
  }

  .tb\:-mt-64 {
    margin-top: -16rem
  }

  .tb\:-mr-64 {
    margin-right: -16rem
  }

  .tb\:-mb-64 {
    margin-bottom: -16rem
  }

  .tb\:-ml-64 {
    margin-left: -16rem
  }

  .tb\:-mt-72 {
    margin-top: -18rem
  }

  .tb\:-mr-72 {
    margin-right: -18rem
  }

  .tb\:-mb-72 {
    margin-bottom: -18rem
  }

  .tb\:-ml-72 {
    margin-left: -18rem
  }

  .tb\:-mt-80 {
    margin-top: -20rem
  }

  .tb\:-mr-80 {
    margin-right: -20rem
  }

  .tb\:-mb-80 {
    margin-bottom: -20rem
  }

  .tb\:-ml-80 {
    margin-left: -20rem
  }

  .tb\:-mt-96 {
    margin-top: -24rem
  }

  .tb\:-mr-96 {
    margin-right: -24rem
  }

  .tb\:-mb-96 {
    margin-bottom: -24rem
  }

  .tb\:-ml-96 {
    margin-left: -24rem
  }

  .tb\:-mt-px {
    margin-top: -1px
  }

  .tb\:-mr-px {
    margin-right: -1px
  }

  .tb\:-mb-px {
    margin-bottom: -1px
  }

  .tb\:-ml-px {
    margin-left: -1px
  }

  .tb\:-mt-0\.5 {
    margin-top: -0.125rem
  }

  .tb\:-mr-0\.5 {
    margin-right: -0.125rem
  }

  .tb\:-mb-0\.5 {
    margin-bottom: -0.125rem
  }

  .tb\:-ml-0\.5 {
    margin-left: -0.125rem
  }

  .tb\:-mt-1\.5 {
    margin-top: -0.375rem
  }

  .tb\:-mr-1\.5 {
    margin-right: -0.375rem
  }

  .tb\:-mb-1\.5 {
    margin-bottom: -0.375rem
  }

  .tb\:-ml-1\.5 {
    margin-left: -0.375rem
  }

  .tb\:-mt-2\.5 {
    margin-top: -0.625rem
  }

  .tb\:-mr-2\.5 {
    margin-right: -0.625rem
  }

  .tb\:-mb-2\.5 {
    margin-bottom: -0.625rem
  }

  .tb\:-ml-2\.5 {
    margin-left: -0.625rem
  }

  .tb\:-mt-3\.5 {
    margin-top: -0.875rem
  }

  .tb\:-mr-3\.5 {
    margin-right: -0.875rem
  }

  .tb\:-mb-3\.5 {
    margin-bottom: -0.875rem
  }

  .tb\:-ml-3\.5 {
    margin-left: -0.875rem
  }

  .tb\:-mt-2\/3 {
    margin-top: -66.66667%
  }

  .tb\:-mr-2\/3 {
    margin-right: -66.66667%
  }

  .tb\:-mb-2\/3 {
    margin-bottom: -66.66667%
  }

  .tb\:-ml-2\/3 {
    margin-left: -66.66667%
  }

  .tb\:-mt-3\/4 {
    margin-top: -75%
  }

  .tb\:-mr-3\/4 {
    margin-right: -75%
  }

  .tb\:-mb-3\/4 {
    margin-bottom: -75%
  }

  .tb\:-ml-3\/4 {
    margin-left: -75%
  }

  .tb\:-mt-6\/19 {
    margin-top: -56.25%
  }

  .tb\:-mr-6\/19 {
    margin-right: -56.25%
  }

  .tb\:-mb-6\/19 {
    margin-bottom: -56.25%
  }

  .tb\:-ml-6\/19 {
    margin-left: -56.25%
  }

  .tb\:-mt-1\/1 {
    margin-top: -100%
  }

  .tb\:-mr-1\/1 {
    margin-right: -100%
  }

  .tb\:-mb-1\/1 {
    margin-bottom: -100%
  }

  .tb\:-ml-1\/1 {
    margin-left: -100%
  }

  .tb\:-mt-3\/2 {
    margin-top: -150%
  }

  .tb\:-mr-3\/2 {
    margin-right: -150%
  }

  .tb\:-mb-3\/2 {
    margin-bottom: -150%
  }

  .tb\:-ml-3\/2 {
    margin-left: -150%
  }

  .tb\:-mt-4\/3 {
    margin-top: -133.333%
  }

  .tb\:-mr-4\/3 {
    margin-right: -133.333%
  }

  .tb\:-mb-4\/3 {
    margin-bottom: -133.333%
  }

  .tb\:-ml-4\/3 {
    margin-left: -133.333%
  }

  .tb\:max-h-0 {
    max-height: 0px
  }

  .tb\:max-h-1 {
    max-height: 0.25rem
  }

  .tb\:max-h-2 {
    max-height: 0.5rem
  }

  .tb\:max-h-3 {
    max-height: 0.75rem
  }

  .tb\:max-h-4 {
    max-height: 1rem
  }

  .tb\:max-h-5 {
    max-height: 1.25rem
  }

  .tb\:max-h-6 {
    max-height: 1.5rem
  }

  .tb\:max-h-7 {
    max-height: 1.75rem
  }

  .tb\:max-h-8 {
    max-height: 2rem
  }

  .tb\:max-h-9 {
    max-height: 2.25rem
  }

  .tb\:max-h-10 {
    max-height: 2.5rem
  }

  .tb\:max-h-11 {
    max-height: 2.75rem
  }

  .tb\:max-h-12 {
    max-height: 3rem
  }

  .tb\:max-h-14 {
    max-height: 3.5rem
  }

  .tb\:max-h-16 {
    max-height: 4rem
  }

  .tb\:max-h-20 {
    max-height: 5rem
  }

  .tb\:max-h-24 {
    max-height: 6rem
  }

  .tb\:max-h-28 {
    max-height: 7rem
  }

  .tb\:max-h-32 {
    max-height: 8rem
  }

  .tb\:max-h-36 {
    max-height: 9rem
  }

  .tb\:max-h-40 {
    max-height: 10rem
  }

  .tb\:max-h-44 {
    max-height: 11rem
  }

  .tb\:max-h-48 {
    max-height: 12rem
  }

  .tb\:max-h-52 {
    max-height: 13rem
  }

  .tb\:max-h-56 {
    max-height: 14rem
  }

  .tb\:max-h-60 {
    max-height: 15rem
  }

  .tb\:max-h-64 {
    max-height: 16rem
  }

  .tb\:max-h-72 {
    max-height: 18rem
  }

  .tb\:max-h-80 {
    max-height: 20rem
  }

  .tb\:max-h-96 {
    max-height: 24rem
  }

  .tb\:max-h-px {
    max-height: 1px
  }

  .tb\:max-h-0\.5 {
    max-height: 0.125rem
  }

  .tb\:max-h-1\.5 {
    max-height: 0.375rem
  }

  .tb\:max-h-2\.5 {
    max-height: 0.625rem
  }

  .tb\:max-h-3\.5 {
    max-height: 0.875rem
  }

  .tb\:max-h-2\/3 {
    max-height: 66.666667%
  }

  .tb\:max-h-3\/4 {
    max-height: 75%
  }

  .tb\:max-h-6\/19 {
    max-height: 56.25%
  }

  .tb\:max-h-1\/1 {
    max-height: 100%
  }

  .tb\:max-h-3\/2 {
    max-height: 150%
  }

  .tb\:max-h-4\/3 {
    max-height: 133.333%
  }

  .tb\:max-h-full {
    max-height: 100%
  }

  .tb\:max-h-screen {
    max-height: 100vh
  }

  .tb\:max-w-0 {
    max-width: 0rem
  }

  .tb\:max-w-none {
    max-width: none
  }

  .tb\:max-w-xs {
    max-width: 20rem
  }

  .tb\:max-w-sm {
    max-width: 24rem
  }

  .tb\:max-w-md {
    max-width: 28rem
  }

  .tb\:max-w-lg {
    max-width: 32rem
  }

  .tb\:max-w-xl {
    max-width: 36rem
  }

  .tb\:max-w-2xl {
    max-width: 42rem
  }

  .tb\:max-w-3xl {
    max-width: 48rem
  }

  .tb\:max-w-4xl {
    max-width: 56rem
  }

  .tb\:max-w-5xl {
    max-width: 64rem
  }

  .tb\:max-w-6xl {
    max-width: 72rem
  }

  .tb\:max-w-7xl {
    max-width: 80rem
  }

  .tb\:max-w-full {
    max-width: 100%
  }

  .tb\:max-w-min {
    max-width: min-content
  }

  .tb\:max-w-max {
    max-width: max-content
  }

  .tb\:max-w-prose {
    max-width: 65ch
  }

  .tb\:max-w-screen-tb {
    max-width: 768px
  }

  .tb\:max-w-screen-ds {
    max-width: 992px
  }

  .tb\:min-h-0 {
    min-height: 0px
  }

  .tb\:min-h-full {
    min-height: 100%
  }

  .tb\:min-h-screen {
    min-height: 100vh
  }

  .tb\:min-w-0 {
    min-width: 0px
  }

  .tb\:min-w-full {
    min-width: 100%
  }

  .tb\:min-w-min {
    min-width: min-content
  }

  .tb\:min-w-max {
    min-width: max-content
  }

  .tb\:overflow-auto {
    overflow: auto
  }

  .tb\:overflow-hidden {
    overflow: hidden
  }

  .tb\:overflow-visible {
    overflow: visible
  }

  .tb\:overflow-scroll {
    overflow: scroll
  }

  .tb\:overflow-x-auto {
    overflow-x: auto
  }

  .tb\:overflow-y-auto {
    overflow-y: auto
  }

  .tb\:overflow-x-hidden {
    overflow-x: hidden
  }

  .tb\:overflow-y-hidden {
    overflow-y: hidden
  }

  .tb\:overflow-x-visible {
    overflow-x: visible
  }

  .tb\:overflow-y-visible {
    overflow-y: visible
  }

  .tb\:overflow-x-scroll {
    overflow-x: scroll
  }

  .tb\:overflow-y-scroll {
    overflow-y: scroll
  }

  .tb\:overscroll-auto {
    overscroll-behavior: auto
  }

  .tb\:overscroll-contain {
    overscroll-behavior: contain
  }

  .tb\:overscroll-none {
    overscroll-behavior: none
  }

  .tb\:overscroll-y-auto {
    overscroll-behavior-y: auto
  }

  .tb\:overscroll-y-contain {
    overscroll-behavior-y: contain
  }

  .tb\:overscroll-y-none {
    overscroll-behavior-y: none
  }

  .tb\:overscroll-x-auto {
    overscroll-behavior-x: auto
  }

  .tb\:overscroll-x-contain {
    overscroll-behavior-x: contain
  }

  .tb\:overscroll-x-none {
    overscroll-behavior-x: none
  }

  .tb\:p-0 {
    padding: 0px
  }

  .tb\:p-1 {
    padding: 0.25rem
  }

  .tb\:p-2 {
    padding: 0.5rem
  }

  .tb\:p-3 {
    padding: 0.75rem
  }

  .tb\:p-4 {
    padding: 1rem
  }

  .tb\:p-5 {
    padding: 1.25rem
  }

  .tb\:p-6 {
    padding: 1.5rem
  }

  .tb\:p-7 {
    padding: 1.75rem
  }

  .tb\:p-8 {
    padding: 2rem
  }

  .tb\:p-9 {
    padding: 2.25rem
  }

  .tb\:p-10 {
    padding: 2.5rem
  }

  .tb\:p-11 {
    padding: 2.75rem
  }

  .tb\:p-12 {
    padding: 3rem
  }

  .tb\:p-14 {
    padding: 3.5rem
  }

  .tb\:p-16 {
    padding: 4rem
  }

  .tb\:p-20 {
    padding: 5rem
  }

  .tb\:p-24 {
    padding: 6rem
  }

  .tb\:p-28 {
    padding: 7rem
  }

  .tb\:p-32 {
    padding: 8rem
  }

  .tb\:p-36 {
    padding: 9rem
  }

  .tb\:p-40 {
    padding: 10rem
  }

  .tb\:p-44 {
    padding: 11rem
  }

  .tb\:p-48 {
    padding: 12rem
  }

  .tb\:p-52 {
    padding: 13rem
  }

  .tb\:p-56 {
    padding: 14rem
  }

  .tb\:p-60 {
    padding: 15rem
  }

  .tb\:p-64 {
    padding: 16rem
  }

  .tb\:p-72 {
    padding: 18rem
  }

  .tb\:p-80 {
    padding: 20rem
  }

  .tb\:p-96 {
    padding: 24rem
  }

  .tb\:p-px {
    padding: 1px
  }

  .tb\:p-0\.5 {
    padding: 0.125rem
  }

  .tb\:p-1\.5 {
    padding: 0.375rem
  }

  .tb\:p-2\.5 {
    padding: 0.625rem
  }

  .tb\:p-3\.5 {
    padding: 0.875rem
  }

  .tb\:p-2\/3 {
    padding: 66.666667%
  }

  .tb\:p-3\/4 {
    padding: 75%
  }

  .tb\:p-6\/19 {
    padding: 56.25%
  }

  .tb\:p-1\/1 {
    padding: 100%
  }

  .tb\:p-3\/2 {
    padding: 150%
  }

  .tb\:p-4\/3 {
    padding: 133.333%
  }

  .tb\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px
  }

  .tb\:px-0 {
    padding-left: 0px;
    padding-right: 0px
  }

  .tb\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
  }

  .tb\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
  }

  .tb\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
  }

  .tb\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
  }

  .tb\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
  }

  .tb\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
  }

  .tb\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
  }

  .tb\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .tb\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }

  .tb\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  .tb\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }

  .tb\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .tb\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem
  }

  .tb\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem
  }

  .tb\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }

  .tb\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem
  }

  .tb\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem
  }

  .tb\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
  }

  .tb\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }

  .tb\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .tb\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem
  }

  .tb\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem
  }

  .tb\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .tb\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem
  }

  .tb\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
  }

  .tb\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
  }

  .tb\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .tb\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem
  }

  .tb\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
  }

  .tb\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem
  }

  .tb\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .tb\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem
  }

  .tb\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem
  }

  .tb\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem
  }

  .tb\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem
  }

  .tb\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem
  }

  .tb\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem
  }

  .tb\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem
  }

  .tb\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem
  }

  .tb\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem
  }

  .tb\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem
  }

  .tb\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem
  }

  .tb\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem
  }

  .tb\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem
  }

  .tb\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem
  }

  .tb\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem
  }

  .tb\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem
  }

  .tb\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem
  }

  .tb\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem
  }

  .tb\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem
  }

  .tb\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem
  }

  .tb\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem
  }

  .tb\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem
  }

  .tb\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem
  }

  .tb\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem
  }

  .tb\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem
  }

  .tb\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem
  }

  .tb\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem
  }

  .tb\:py-px {
    padding-top: 1px;
    padding-bottom: 1px
  }

  .tb\:px-px {
    padding-left: 1px;
    padding-right: 1px
  }

  .tb\:py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem
  }

  .tb\:px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem
  }

  .tb\:py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
  }

  .tb\:px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem
  }

  .tb\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem
  }

  .tb\:px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem
  }

  .tb\:py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem
  }

  .tb\:px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem
  }

  .tb\:py-2\/3 {
    padding-top: 66.666667%;
    padding-bottom: 66.666667%
  }

  .tb\:px-2\/3 {
    padding-left: 66.666667%;
    padding-right: 66.666667%
  }

  .tb\:py-3\/4 {
    padding-top: 75%;
    padding-bottom: 75%
  }

  .tb\:px-3\/4 {
    padding-left: 75%;
    padding-right: 75%
  }

  .tb\:py-6\/19 {
    padding-top: 56.25%;
    padding-bottom: 56.25%
  }

  .tb\:px-6\/19 {
    padding-left: 56.25%;
    padding-right: 56.25%
  }

  .tb\:py-1\/1 {
    padding-top: 100%;
    padding-bottom: 100%
  }

  .tb\:px-1\/1 {
    padding-left: 100%;
    padding-right: 100%
  }

  .tb\:py-3\/2 {
    padding-top: 150%;
    padding-bottom: 150%
  }

  .tb\:px-3\/2 {
    padding-left: 150%;
    padding-right: 150%
  }

  .tb\:py-4\/3 {
    padding-top: 133.333%;
    padding-bottom: 133.333%
  }

  .tb\:px-4\/3 {
    padding-left: 133.333%;
    padding-right: 133.333%
  }

  .tb\:pt-0 {
    padding-top: 0px
  }

  .tb\:pr-0 {
    padding-right: 0px
  }

  .tb\:pb-0 {
    padding-bottom: 0px
  }

  .tb\:pl-0 {
    padding-left: 0px
  }

  .tb\:pt-1 {
    padding-top: 0.25rem
  }

  .tb\:pr-1 {
    padding-right: 0.25rem
  }

  .tb\:pb-1 {
    padding-bottom: 0.25rem
  }

  .tb\:pl-1 {
    padding-left: 0.25rem
  }

  .tb\:pt-2 {
    padding-top: 0.5rem
  }

  .tb\:pr-2 {
    padding-right: 0.5rem
  }

  .tb\:pb-2 {
    padding-bottom: 0.5rem
  }

  .tb\:pl-2 {
    padding-left: 0.5rem
  }

  .tb\:pt-3 {
    padding-top: 0.75rem
  }

  .tb\:pr-3 {
    padding-right: 0.75rem
  }

  .tb\:pb-3 {
    padding-bottom: 0.75rem
  }

  .tb\:pl-3 {
    padding-left: 0.75rem
  }

  .tb\:pt-4 {
    padding-top: 1rem
  }

  .tb\:pr-4 {
    padding-right: 1rem
  }

  .tb\:pb-4 {
    padding-bottom: 1rem
  }

  .tb\:pl-4 {
    padding-left: 1rem
  }

  .tb\:pt-5 {
    padding-top: 1.25rem
  }

  .tb\:pr-5 {
    padding-right: 1.25rem
  }

  .tb\:pb-5 {
    padding-bottom: 1.25rem
  }

  .tb\:pl-5 {
    padding-left: 1.25rem
  }

  .tb\:pt-6 {
    padding-top: 1.5rem
  }

  .tb\:pr-6 {
    padding-right: 1.5rem
  }

  .tb\:pb-6 {
    padding-bottom: 1.5rem
  }

  .tb\:pl-6 {
    padding-left: 1.5rem
  }

  .tb\:pt-7 {
    padding-top: 1.75rem
  }

  .tb\:pr-7 {
    padding-right: 1.75rem
  }

  .tb\:pb-7 {
    padding-bottom: 1.75rem
  }

  .tb\:pl-7 {
    padding-left: 1.75rem
  }

  .tb\:pt-8 {
    padding-top: 2rem
  }

  .tb\:pr-8 {
    padding-right: 2rem
  }

  .tb\:pb-8 {
    padding-bottom: 2rem
  }

  .tb\:pl-8 {
    padding-left: 2rem
  }

  .tb\:pt-9 {
    padding-top: 2.25rem
  }

  .tb\:pr-9 {
    padding-right: 2.25rem
  }

  .tb\:pb-9 {
    padding-bottom: 2.25rem
  }

  .tb\:pl-9 {
    padding-left: 2.25rem
  }

  .tb\:pt-10 {
    padding-top: 2.5rem
  }

  .tb\:pr-10 {
    padding-right: 2.5rem
  }

  .tb\:pb-10 {
    padding-bottom: 2.5rem
  }

  .tb\:pl-10 {
    padding-left: 2.5rem
  }

  .tb\:pt-11 {
    padding-top: 2.75rem
  }

  .tb\:pr-11 {
    padding-right: 2.75rem
  }

  .tb\:pb-11 {
    padding-bottom: 2.75rem
  }

  .tb\:pl-11 {
    padding-left: 2.75rem
  }

  .tb\:pt-12 {
    padding-top: 3rem
  }

  .tb\:pr-12 {
    padding-right: 3rem
  }

  .tb\:pb-12 {
    padding-bottom: 3rem
  }

  .tb\:pl-12 {
    padding-left: 3rem
  }

  .tb\:pt-14 {
    padding-top: 3.5rem
  }

  .tb\:pr-14 {
    padding-right: 3.5rem
  }

  .tb\:pb-14 {
    padding-bottom: 3.5rem
  }

  .tb\:pl-14 {
    padding-left: 3.5rem
  }

  .tb\:pt-16 {
    padding-top: 4rem
  }

  .tb\:pr-16 {
    padding-right: 4rem
  }

  .tb\:pb-16 {
    padding-bottom: 4rem
  }

  .tb\:pl-16 {
    padding-left: 4rem
  }

  .tb\:pt-20 {
    padding-top: 5rem
  }

  .tb\:pr-20 {
    padding-right: 5rem
  }

  .tb\:pb-20 {
    padding-bottom: 5rem
  }

  .tb\:pl-20 {
    padding-left: 5rem
  }

  .tb\:pt-24 {
    padding-top: 6rem
  }

  .tb\:pr-24 {
    padding-right: 6rem
  }

  .tb\:pb-24 {
    padding-bottom: 6rem
  }

  .tb\:pl-24 {
    padding-left: 6rem
  }

  .tb\:pt-28 {
    padding-top: 7rem
  }

  .tb\:pr-28 {
    padding-right: 7rem
  }

  .tb\:pb-28 {
    padding-bottom: 7rem
  }

  .tb\:pl-28 {
    padding-left: 7rem
  }

  .tb\:pt-32 {
    padding-top: 8rem
  }

  .tb\:pr-32 {
    padding-right: 8rem
  }

  .tb\:pb-32 {
    padding-bottom: 8rem
  }

  .tb\:pl-32 {
    padding-left: 8rem
  }

  .tb\:pt-36 {
    padding-top: 9rem
  }

  .tb\:pr-36 {
    padding-right: 9rem
  }

  .tb\:pb-36 {
    padding-bottom: 9rem
  }

  .tb\:pl-36 {
    padding-left: 9rem
  }

  .tb\:pt-40 {
    padding-top: 10rem
  }

  .tb\:pr-40 {
    padding-right: 10rem
  }

  .tb\:pb-40 {
    padding-bottom: 10rem
  }

  .tb\:pl-40 {
    padding-left: 10rem
  }

  .tb\:pt-44 {
    padding-top: 11rem
  }

  .tb\:pr-44 {
    padding-right: 11rem
  }

  .tb\:pb-44 {
    padding-bottom: 11rem
  }

  .tb\:pl-44 {
    padding-left: 11rem
  }

  .tb\:pt-48 {
    padding-top: 12rem
  }

  .tb\:pr-48 {
    padding-right: 12rem
  }

  .tb\:pb-48 {
    padding-bottom: 12rem
  }

  .tb\:pl-48 {
    padding-left: 12rem
  }

  .tb\:pt-52 {
    padding-top: 13rem
  }

  .tb\:pr-52 {
    padding-right: 13rem
  }

  .tb\:pb-52 {
    padding-bottom: 13rem
  }

  .tb\:pl-52 {
    padding-left: 13rem
  }

  .tb\:pt-56 {
    padding-top: 14rem
  }

  .tb\:pr-56 {
    padding-right: 14rem
  }

  .tb\:pb-56 {
    padding-bottom: 14rem
  }

  .tb\:pl-56 {
    padding-left: 14rem
  }

  .tb\:pt-60 {
    padding-top: 15rem
  }

  .tb\:pr-60 {
    padding-right: 15rem
  }

  .tb\:pb-60 {
    padding-bottom: 15rem
  }

  .tb\:pl-60 {
    padding-left: 15rem
  }

  .tb\:pt-64 {
    padding-top: 16rem
  }

  .tb\:pr-64 {
    padding-right: 16rem
  }

  .tb\:pb-64 {
    padding-bottom: 16rem
  }

  .tb\:pl-64 {
    padding-left: 16rem
  }

  .tb\:pt-72 {
    padding-top: 18rem
  }

  .tb\:pr-72 {
    padding-right: 18rem
  }

  .tb\:pb-72 {
    padding-bottom: 18rem
  }

  .tb\:pl-72 {
    padding-left: 18rem
  }

  .tb\:pt-80 {
    padding-top: 20rem
  }

  .tb\:pr-80 {
    padding-right: 20rem
  }

  .tb\:pb-80 {
    padding-bottom: 20rem
  }

  .tb\:pl-80 {
    padding-left: 20rem
  }

  .tb\:pt-96 {
    padding-top: 24rem
  }

  .tb\:pr-96 {
    padding-right: 24rem
  }

  .tb\:pb-96 {
    padding-bottom: 24rem
  }

  .tb\:pl-96 {
    padding-left: 24rem
  }

  .tb\:pt-px {
    padding-top: 1px
  }

  .tb\:pr-px {
    padding-right: 1px
  }

  .tb\:pb-px {
    padding-bottom: 1px
  }

  .tb\:pl-px {
    padding-left: 1px
  }

  .tb\:pt-0\.5 {
    padding-top: 0.125rem
  }

  .tb\:pr-0\.5 {
    padding-right: 0.125rem
  }

  .tb\:pb-0\.5 {
    padding-bottom: 0.125rem
  }

  .tb\:pl-0\.5 {
    padding-left: 0.125rem
  }

  .tb\:pt-1\.5 {
    padding-top: 0.375rem
  }

  .tb\:pr-1\.5 {
    padding-right: 0.375rem
  }

  .tb\:pb-1\.5 {
    padding-bottom: 0.375rem
  }

  .tb\:pl-1\.5 {
    padding-left: 0.375rem
  }

  .tb\:pt-2\.5 {
    padding-top: 0.625rem
  }

  .tb\:pr-2\.5 {
    padding-right: 0.625rem
  }

  .tb\:pb-2\.5 {
    padding-bottom: 0.625rem
  }

  .tb\:pl-2\.5 {
    padding-left: 0.625rem
  }

  .tb\:pt-3\.5 {
    padding-top: 0.875rem
  }

  .tb\:pr-3\.5 {
    padding-right: 0.875rem
  }

  .tb\:pb-3\.5 {
    padding-bottom: 0.875rem
  }

  .tb\:pl-3\.5 {
    padding-left: 0.875rem
  }

  .tb\:pt-2\/3 {
    padding-top: 66.666667%
  }

  .tb\:pr-2\/3 {
    padding-right: 66.666667%
  }

  .tb\:pb-2\/3 {
    padding-bottom: 66.666667%
  }

  .tb\:pl-2\/3 {
    padding-left: 66.666667%
  }

  .tb\:pt-3\/4 {
    padding-top: 75%
  }

  .tb\:pr-3\/4 {
    padding-right: 75%
  }

  .tb\:pb-3\/4 {
    padding-bottom: 75%
  }

  .tb\:pl-3\/4 {
    padding-left: 75%
  }

  .tb\:pt-6\/19 {
    padding-top: 56.25%
  }

  .tb\:pr-6\/19 {
    padding-right: 56.25%
  }

  .tb\:pb-6\/19 {
    padding-bottom: 56.25%
  }

  .tb\:pl-6\/19 {
    padding-left: 56.25%
  }

  .tb\:pt-1\/1 {
    padding-top: 100%
  }

  .tb\:pr-1\/1 {
    padding-right: 100%
  }

  .tb\:pb-1\/1 {
    padding-bottom: 100%
  }

  .tb\:pl-1\/1 {
    padding-left: 100%
  }

  .tb\:pt-3\/2 {
    padding-top: 150%
  }

  .tb\:pr-3\/2 {
    padding-right: 150%
  }

  .tb\:pb-3\/2 {
    padding-bottom: 150%
  }

  .tb\:pl-3\/2 {
    padding-left: 150%
  }

  .tb\:pt-4\/3 {
    padding-top: 133.333%
  }

  .tb\:pr-4\/3 {
    padding-right: 133.333%
  }

  .tb\:pb-4\/3 {
    padding-bottom: 133.333%
  }

  .tb\:pl-4\/3 {
    padding-left: 133.333%
  }

  .tb\:static {
    position: static
  }

  .tb\:fixed {
    position: fixed
  }

  .tb\:absolute {
    position: absolute
  }

  .tb\:relative {
    position: relative
  }

  .tb\:sticky {
    position: sticky
  }

  .tb\:table-auto {
    table-layout: auto
  }

  .tb\:table-fixed {
    table-layout: fixed
  }

  .tb\:text-left {
    text-align: left
  }

  .tb\:text-center {
    text-align: center
  }

  .tb\:text-right {
    text-align: right
  }

  .tb\:text-justify {
    text-align: justify
  }

  .tb\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .tb\:overflow-ellipsis {
    text-overflow: ellipsis
  }

  .tb\:overflow-clip {
    text-overflow: clip
  }

  .tb\:italic {
    font-style: italic
  }

  .tb\:not-italic {
    font-style: normal
  }

  .tb\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
  }

  .tb\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
  }

  .tb\:ordinal, .tb\:slashed-zero, .tb\:lining-nums, .tb\:oldstyle-nums, .tb\:proportional-nums, .tb\:tabular-nums, .tb\:diagonal-fractions, .tb\:stacked-fractions {
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
  }

  .tb\:normal-nums {
    font-variant-numeric: normal
  }

  .tb\:ordinal {
    --tw-ordinal: ordinal
  }

  .tb\:slashed-zero {
    --tw-slashed-zero: slashed-zero
  }

  .tb\:lining-nums {
    --tw-numeric-figure: lining-nums
  }

  .tb\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums
  }

  .tb\:proportional-nums {
    --tw-numeric-spacing: proportional-nums
  }

  .tb\:tabular-nums {
    --tw-numeric-spacing: tabular-nums
  }

  .tb\:diagonal-fractions {
    --tw-numeric-fraction: diagonal-fractions
  }

  .tb\:stacked-fractions {
    --tw-numeric-fraction: stacked-fractions
  }

  .tb\:tracking-tighter {
    letter-spacing: -0.05em
  }

  .tb\:tracking-tight {
    letter-spacing: -0.025em
  }

  .tb\:tracking-normal {
    letter-spacing: 0em
  }

  .tb\:tracking-wide {
    letter-spacing: 0.025em
  }

  .tb\:tracking-wider {
    letter-spacing: 0.05em
  }

  .tb\:tracking-widest {
    letter-spacing: 0.1em
  }

  .tb\:align-baseline {
    vertical-align: baseline
  }

  .tb\:align-top {
    vertical-align: top
  }

  .tb\:align-middle {
    vertical-align: middle
  }

  .tb\:align-bottom {
    vertical-align: bottom
  }

  .tb\:align-text-top {
    vertical-align: text-top
  }

  .tb\:align-text-bottom {
    vertical-align: text-bottom
  }

  .tb\:w-0 {
    width: 0px
  }

  .tb\:w-1 {
    width: 0.25rem
  }

  .tb\:w-2 {
    width: 0.5rem
  }

  .tb\:w-3 {
    width: 0.75rem
  }

  .tb\:w-4 {
    width: 1rem
  }

  .tb\:w-5 {
    width: 1.25rem
  }

  .tb\:w-6 {
    width: 1.5rem
  }

  .tb\:w-7 {
    width: 1.75rem
  }

  .tb\:w-8 {
    width: 2rem
  }

  .tb\:w-9 {
    width: 2.25rem
  }

  .tb\:w-10 {
    width: 2.5rem
  }

  .tb\:w-11 {
    width: 2.75rem
  }

  .tb\:w-12 {
    width: 3rem
  }

  .tb\:w-14 {
    width: 3.5rem
  }

  .tb\:w-16 {
    width: 4rem
  }

  .tb\:w-20 {
    width: 5rem
  }

  .tb\:w-24 {
    width: 6rem
  }

  .tb\:w-28 {
    width: 7rem
  }

  .tb\:w-32 {
    width: 8rem
  }

  .tb\:w-36 {
    width: 9rem
  }

  .tb\:w-40 {
    width: 10rem
  }

  .tb\:w-44 {
    width: 11rem
  }

  .tb\:w-48 {
    width: 12rem
  }

  .tb\:w-52 {
    width: 13rem
  }

  .tb\:w-56 {
    width: 14rem
  }

  .tb\:w-60 {
    width: 15rem
  }

  .tb\:w-64 {
    width: 16rem
  }

  .tb\:w-72 {
    width: 18rem
  }

  .tb\:w-80 {
    width: 20rem
  }

  .tb\:w-96 {
    width: 24rem
  }

  .tb\:w-auto {
    width: auto
  }

  .tb\:w-px {
    width: 1px
  }

  .tb\:w-0\.5 {
    width: 0.125rem
  }

  .tb\:w-1\.5 {
    width: 0.375rem
  }

  .tb\:w-2\.5 {
    width: 0.625rem
  }

  .tb\:w-3\.5 {
    width: 0.875rem
  }

  .tb\:w-2\/3 {
    width: 66.666667%
  }

  .tb\:w-3\/4 {
    width: 75%
  }

  .tb\:w-6\/19 {
    width: 56.25%
  }

  .tb\:w-1\/1 {
    width: 100%
  }

  .tb\:w-3\/2 {
    width: 150%
  }

  .tb\:w-4\/3 {
    width: 133.333%
  }

  .tb\:w-1\/2 {
    width: 50%
  }

  .tb\:w-1\/3 {
    width: 33.333333%
  }

  .tb\:w-1\/4 {
    width: 25%
  }

  .tb\:w-2\/4 {
    width: 50%
  }

  .tb\:w-1\/5 {
    width: 20%
  }

  .tb\:w-2\/5 {
    width: 40%
  }

  .tb\:w-3\/5 {
    width: 60%
  }

  .tb\:w-4\/5 {
    width: 80%
  }

  .tb\:w-1\/6 {
    width: 16.666667%
  }

  .tb\:w-2\/6 {
    width: 33.333333%
  }

  .tb\:w-3\/6 {
    width: 50%
  }

  .tb\:w-4\/6 {
    width: 66.666667%
  }

  .tb\:w-5\/6 {
    width: 83.333333%
  }

  .tb\:w-1\/12 {
    width: 8.333333%
  }

  .tb\:w-2\/12 {
    width: 16.666667%
  }

  .tb\:w-3\/12 {
    width: 25%
  }

  .tb\:w-4\/12 {
    width: 33.333333%
  }

  .tb\:w-5\/12 {
    width: 41.666667%
  }

  .tb\:w-6\/12 {
    width: 50%
  }

  .tb\:w-7\/12 {
    width: 58.333333%
  }

  .tb\:w-8\/12 {
    width: 66.666667%
  }

  .tb\:w-9\/12 {
    width: 75%
  }

  .tb\:w-10\/12 {
    width: 83.333333%
  }

  .tb\:w-11\/12 {
    width: 91.666667%
  }

  .tb\:w-full {
    width: 100%
  }

  .tb\:w-screen {
    width: 100vw
  }

  .tb\:w-min {
    width: min-content
  }

  .tb\:w-max {
    width: max-content
  }

  .tb\:gap-0 {
    gap: 0px
  }

  .tb\:gap-1 {
    gap: 0.25rem
  }

  .tb\:gap-2 {
    gap: 0.5rem
  }

  .tb\:gap-3 {
    gap: 0.75rem
  }

  .tb\:gap-4 {
    gap: 1rem
  }

  .tb\:gap-5 {
    gap: 1.25rem
  }

  .tb\:gap-6 {
    gap: 1.5rem
  }

  .tb\:gap-7 {
    gap: 1.75rem
  }

  .tb\:gap-8 {
    gap: 2rem
  }

  .tb\:gap-9 {
    gap: 2.25rem
  }

  .tb\:gap-10 {
    gap: 2.5rem
  }

  .tb\:gap-11 {
    gap: 2.75rem
  }

  .tb\:gap-12 {
    gap: 3rem
  }

  .tb\:gap-14 {
    gap: 3.5rem
  }

  .tb\:gap-16 {
    gap: 4rem
  }

  .tb\:gap-20 {
    gap: 5rem
  }

  .tb\:gap-24 {
    gap: 6rem
  }

  .tb\:gap-28 {
    gap: 7rem
  }

  .tb\:gap-32 {
    gap: 8rem
  }

  .tb\:gap-36 {
    gap: 9rem
  }

  .tb\:gap-40 {
    gap: 10rem
  }

  .tb\:gap-44 {
    gap: 11rem
  }

  .tb\:gap-48 {
    gap: 12rem
  }

  .tb\:gap-52 {
    gap: 13rem
  }

  .tb\:gap-56 {
    gap: 14rem
  }

  .tb\:gap-60 {
    gap: 15rem
  }

  .tb\:gap-64 {
    gap: 16rem
  }

  .tb\:gap-72 {
    gap: 18rem
  }

  .tb\:gap-80 {
    gap: 20rem
  }

  .tb\:gap-96 {
    gap: 24rem
  }

  .tb\:gap-px {
    gap: 1px
  }

  .tb\:gap-0\.5 {
    gap: 0.125rem
  }

  .tb\:gap-1\.5 {
    gap: 0.375rem
  }

  .tb\:gap-2\.5 {
    gap: 0.625rem
  }

  .tb\:gap-3\.5 {
    gap: 0.875rem
  }

  .tb\:gap-2\/3 {
    gap: 66.666667%
  }

  .tb\:gap-3\/4 {
    gap: 75%
  }

  .tb\:gap-6\/19 {
    gap: 56.25%
  }

  .tb\:gap-1\/1 {
    gap: 100%
  }

  .tb\:gap-3\/2 {
    gap: 150%
  }

  .tb\:gap-4\/3 {
    gap: 133.333%
  }

  .tb\:gap-x-0 {
    column-gap: 0px
  }

  .tb\:gap-x-1 {
    column-gap: 0.25rem
  }

  .tb\:gap-x-2 {
    column-gap: 0.5rem
  }

  .tb\:gap-x-3 {
    column-gap: 0.75rem
  }

  .tb\:gap-x-4 {
    column-gap: 1rem
  }

  .tb\:gap-x-5 {
    column-gap: 1.25rem
  }

  .tb\:gap-x-6 {
    column-gap: 1.5rem
  }

  .tb\:gap-x-7 {
    column-gap: 1.75rem
  }

  .tb\:gap-x-8 {
    column-gap: 2rem
  }

  .tb\:gap-x-9 {
    column-gap: 2.25rem
  }

  .tb\:gap-x-10 {
    column-gap: 2.5rem
  }

  .tb\:gap-x-11 {
    column-gap: 2.75rem
  }

  .tb\:gap-x-12 {
    column-gap: 3rem
  }

  .tb\:gap-x-14 {
    column-gap: 3.5rem
  }

  .tb\:gap-x-16 {
    column-gap: 4rem
  }

  .tb\:gap-x-20 {
    column-gap: 5rem
  }

  .tb\:gap-x-24 {
    column-gap: 6rem
  }

  .tb\:gap-x-28 {
    column-gap: 7rem
  }

  .tb\:gap-x-32 {
    column-gap: 8rem
  }

  .tb\:gap-x-36 {
    column-gap: 9rem
  }

  .tb\:gap-x-40 {
    column-gap: 10rem
  }

  .tb\:gap-x-44 {
    column-gap: 11rem
  }

  .tb\:gap-x-48 {
    column-gap: 12rem
  }

  .tb\:gap-x-52 {
    column-gap: 13rem
  }

  .tb\:gap-x-56 {
    column-gap: 14rem
  }

  .tb\:gap-x-60 {
    column-gap: 15rem
  }

  .tb\:gap-x-64 {
    column-gap: 16rem
  }

  .tb\:gap-x-72 {
    column-gap: 18rem
  }

  .tb\:gap-x-80 {
    column-gap: 20rem
  }

  .tb\:gap-x-96 {
    column-gap: 24rem
  }

  .tb\:gap-x-px {
    column-gap: 1px
  }

  .tb\:gap-x-0\.5 {
    column-gap: 0.125rem
  }

  .tb\:gap-x-1\.5 {
    column-gap: 0.375rem
  }

  .tb\:gap-x-2\.5 {
    column-gap: 0.625rem
  }

  .tb\:gap-x-3\.5 {
    column-gap: 0.875rem
  }

  .tb\:gap-x-2\/3 {
    column-gap: 66.666667%
  }

  .tb\:gap-x-3\/4 {
    column-gap: 75%
  }

  .tb\:gap-x-6\/19 {
    column-gap: 56.25%
  }

  .tb\:gap-x-1\/1 {
    column-gap: 100%
  }

  .tb\:gap-x-3\/2 {
    column-gap: 150%
  }

  .tb\:gap-x-4\/3 {
    column-gap: 133.333%
  }

  .tb\:gap-y-0 {
    row-gap: 0px
  }

  .tb\:gap-y-1 {
    row-gap: 0.25rem
  }

  .tb\:gap-y-2 {
    row-gap: 0.5rem
  }

  .tb\:gap-y-3 {
    row-gap: 0.75rem
  }

  .tb\:gap-y-4 {
    row-gap: 1rem
  }

  .tb\:gap-y-5 {
    row-gap: 1.25rem
  }

  .tb\:gap-y-6 {
    row-gap: 1.5rem
  }

  .tb\:gap-y-7 {
    row-gap: 1.75rem
  }

  .tb\:gap-y-8 {
    row-gap: 2rem
  }

  .tb\:gap-y-9 {
    row-gap: 2.25rem
  }

  .tb\:gap-y-10 {
    row-gap: 2.5rem
  }

  .tb\:gap-y-11 {
    row-gap: 2.75rem
  }

  .tb\:gap-y-12 {
    row-gap: 3rem
  }

  .tb\:gap-y-14 {
    row-gap: 3.5rem
  }

  .tb\:gap-y-16 {
    row-gap: 4rem
  }

  .tb\:gap-y-20 {
    row-gap: 5rem
  }

  .tb\:gap-y-24 {
    row-gap: 6rem
  }

  .tb\:gap-y-28 {
    row-gap: 7rem
  }

  .tb\:gap-y-32 {
    row-gap: 8rem
  }

  .tb\:gap-y-36 {
    row-gap: 9rem
  }

  .tb\:gap-y-40 {
    row-gap: 10rem
  }

  .tb\:gap-y-44 {
    row-gap: 11rem
  }

  .tb\:gap-y-48 {
    row-gap: 12rem
  }

  .tb\:gap-y-52 {
    row-gap: 13rem
  }

  .tb\:gap-y-56 {
    row-gap: 14rem
  }

  .tb\:gap-y-60 {
    row-gap: 15rem
  }

  .tb\:gap-y-64 {
    row-gap: 16rem
  }

  .tb\:gap-y-72 {
    row-gap: 18rem
  }

  .tb\:gap-y-80 {
    row-gap: 20rem
  }

  .tb\:gap-y-96 {
    row-gap: 24rem
  }

  .tb\:gap-y-px {
    row-gap: 1px
  }

  .tb\:gap-y-0\.5 {
    row-gap: 0.125rem
  }

  .tb\:gap-y-1\.5 {
    row-gap: 0.375rem
  }

  .tb\:gap-y-2\.5 {
    row-gap: 0.625rem
  }

  .tb\:gap-y-3\.5 {
    row-gap: 0.875rem
  }

  .tb\:gap-y-2\/3 {
    row-gap: 66.666667%
  }

  .tb\:gap-y-3\/4 {
    row-gap: 75%
  }

  .tb\:gap-y-6\/19 {
    row-gap: 56.25%
  }

  .tb\:gap-y-1\/1 {
    row-gap: 100%
  }

  .tb\:gap-y-3\/2 {
    row-gap: 150%
  }

  .tb\:gap-y-4\/3 {
    row-gap: 133.333%
  }

  .tb\:grid-flow-row {
    grid-auto-flow: row
  }

  .tb\:grid-flow-col {
    grid-auto-flow: column
  }

  .tb\:grid-flow-row-dense {
    grid-auto-flow: row dense
  }

  .tb\:grid-flow-col-dense {
    grid-auto-flow: column dense
  }

  .tb\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .tb\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .tb\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .tb\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .tb\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .tb\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
  }

  .tb\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr))
  }

  .tb\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr))
  }

  .tb\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr))
  }

  .tb\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr))
  }

  .tb\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr))
  }

  .tb\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
  }

  .tb\:grid-cols-none {
    grid-template-columns: none
  }

  .tb\:auto-cols-auto {
    grid-auto-columns: auto
  }

  .tb\:auto-cols-min {
    grid-auto-columns: min-content
  }

  .tb\:auto-cols-max {
    grid-auto-columns: max-content
  }

  .tb\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
  }

  .tb\:col-auto {
    grid-column: auto
  }

  .tb\:col-span-1 {
    grid-column: span 1 / span 1
  }

  .tb\:col-span-2 {
    grid-column: span 2 / span 2
  }

  .tb\:col-span-3 {
    grid-column: span 3 / span 3
  }

  .tb\:col-span-4 {
    grid-column: span 4 / span 4
  }

  .tb\:col-span-5 {
    grid-column: span 5 / span 5
  }

  .tb\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .tb\:col-span-7 {
    grid-column: span 7 / span 7
  }

  .tb\:col-span-8 {
    grid-column: span 8 / span 8
  }

  .tb\:col-span-9 {
    grid-column: span 9 / span 9
  }

  .tb\:col-span-10 {
    grid-column: span 10 / span 10
  }

  .tb\:col-span-11 {
    grid-column: span 11 / span 11
  }

  .tb\:col-span-12 {
    grid-column: span 12 / span 12
  }

  .tb\:col-span-full {
    grid-column: 1 / -1
  }

  .tb\:col-start-1 {
    grid-column-start: 1
  }

  .tb\:col-start-2 {
    grid-column-start: 2
  }

  .tb\:col-start-3 {
    grid-column-start: 3
  }

  .tb\:col-start-4 {
    grid-column-start: 4
  }

  .tb\:col-start-5 {
    grid-column-start: 5
  }

  .tb\:col-start-6 {
    grid-column-start: 6
  }

  .tb\:col-start-7 {
    grid-column-start: 7
  }

  .tb\:col-start-8 {
    grid-column-start: 8
  }

  .tb\:col-start-9 {
    grid-column-start: 9
  }

  .tb\:col-start-10 {
    grid-column-start: 10
  }

  .tb\:col-start-11 {
    grid-column-start: 11
  }

  .tb\:col-start-12 {
    grid-column-start: 12
  }

  .tb\:col-start-13 {
    grid-column-start: 13
  }

  .tb\:col-start-auto {
    grid-column-start: auto
  }

  .tb\:col-end-1 {
    grid-column-end: 1
  }

  .tb\:col-end-2 {
    grid-column-end: 2
  }

  .tb\:col-end-3 {
    grid-column-end: 3
  }

  .tb\:col-end-4 {
    grid-column-end: 4
  }

  .tb\:col-end-5 {
    grid-column-end: 5
  }

  .tb\:col-end-6 {
    grid-column-end: 6
  }

  .tb\:col-end-7 {
    grid-column-end: 7
  }

  .tb\:col-end-8 {
    grid-column-end: 8
  }

  .tb\:col-end-9 {
    grid-column-end: 9
  }

  .tb\:col-end-10 {
    grid-column-end: 10
  }

  .tb\:col-end-11 {
    grid-column-end: 11
  }

  .tb\:col-end-12 {
    grid-column-end: 12
  }

  .tb\:col-end-13 {
    grid-column-end: 13
  }

  .tb\:col-end-auto {
    grid-column-end: auto
  }

  .tb\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr))
  }

  .tb\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr))
  }

  .tb\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr))
  }

  .tb\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr))
  }

  .tb\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr))
  }

  .tb\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr))
  }

  .tb\:grid-rows-none {
    grid-template-rows: none
  }

  .tb\:auto-rows-auto {
    grid-auto-rows: auto
  }

  .tb\:auto-rows-min {
    grid-auto-rows: min-content
  }

  .tb\:auto-rows-max {
    grid-auto-rows: max-content
  }

  .tb\:auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr)
  }

  .tb\:row-auto {
    grid-row: auto
  }

  .tb\:row-span-1 {
    grid-row: span 1 / span 1
  }

  .tb\:row-span-2 {
    grid-row: span 2 / span 2
  }

  .tb\:row-span-3 {
    grid-row: span 3 / span 3
  }

  .tb\:row-span-4 {
    grid-row: span 4 / span 4
  }

  .tb\:row-span-5 {
    grid-row: span 5 / span 5
  }

  .tb\:row-span-6 {
    grid-row: span 6 / span 6
  }

  .tb\:row-span-full {
    grid-row: 1 / -1
  }

  .tb\:row-start-1 {
    grid-row-start: 1
  }

  .tb\:row-start-2 {
    grid-row-start: 2
  }

  .tb\:row-start-3 {
    grid-row-start: 3
  }

  .tb\:row-start-4 {
    grid-row-start: 4
  }

  .tb\:row-start-5 {
    grid-row-start: 5
  }

  .tb\:row-start-6 {
    grid-row-start: 6
  }

  .tb\:row-start-7 {
    grid-row-start: 7
  }

  .tb\:row-start-auto {
    grid-row-start: auto
  }

  .tb\:row-end-1 {
    grid-row-end: 1
  }

  .tb\:row-end-2 {
    grid-row-end: 2
  }

  .tb\:row-end-3 {
    grid-row-end: 3
  }

  .tb\:row-end-4 {
    grid-row-end: 4
  }

  .tb\:row-end-5 {
    grid-row-end: 5
  }

  .tb\:row-end-6 {
    grid-row-end: 6
  }

  .tb\:row-end-7 {
    grid-row-end: 7
  }

  .tb\:row-end-auto {
    grid-row-end: auto
  }

  .tb\:transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .tb\:transform-gpu {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .tb\:transform-none {
    transform: none
  }
}

@media (min-width: 992px) {
  .ds\:sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .ds\:not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .ds\:focus-within\:sr-only:focus-within {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .ds\:focus-within\:not-sr-only:focus-within {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .ds\:focus\:sr-only:focus {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
  }

  .ds\:focus\:not-sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
  }

  .ds\:border-collapse {
    border-collapse: collapse
  }

  .ds\:border-separate {
    border-collapse: separate
  }

  .ds\:block {
    display: block
  }

  .ds\:inline-block {
    display: inline-block
  }

  .ds\:inline {
    display: inline
  }

  .ds\:flex {
    display: flex
  }

  .ds\:inline-flex {
    display: inline-flex
  }

  .ds\:table {
    display: table
  }

  .ds\:table-caption {
    display: table-caption
  }

  .ds\:table-cell {
    display: table-cell
  }

  .ds\:table-column {
    display: table-column
  }

  .ds\:table-column-group {
    display: table-column-group
  }

  .ds\:table-footer-group {
    display: table-footer-group
  }

  .ds\:table-header-group {
    display: table-header-group
  }

  .ds\:table-row-group {
    display: table-row-group
  }

  .ds\:table-row {
    display: table-row
  }

  .ds\:flow-root {
    display: flow-root
  }

  .ds\:grid {
    display: grid
  }

  .ds\:inline-grid {
    display: inline-grid
  }

  .ds\:contents {
    display: contents
  }

  .ds\:hidden {
    display: none
  }

  .ds\:flex-row {
    flex-direction: row
  }

  .ds\:flex-row-reverse {
    flex-direction: row-reverse
  }

  .ds\:flex-col {
    flex-direction: column
  }

  .ds\:flex-col-reverse {
    flex-direction: column-reverse
  }

  .ds\:flex-wrap {
    flex-wrap: wrap
  }

  .ds\:flex-wrap-reverse {
    flex-wrap: wrap-reverse
  }

  .ds\:flex-nowrap {
    flex-wrap: nowrap
  }

  .ds\:place-items-auto {
    place-items: auto
  }

  .ds\:place-items-start {
    place-items: start
  }

  .ds\:place-items-end {
    place-items: end
  }

  .ds\:place-items-center {
    place-items: center
  }

  .ds\:place-items-stretch {
    place-items: stretch
  }

  .ds\:place-content-center {
    place-content: center
  }

  .ds\:place-content-start {
    place-content: start
  }

  .ds\:place-content-end {
    place-content: end
  }

  .ds\:place-content-between {
    place-content: space-between
  }

  .ds\:place-content-around {
    place-content: space-around
  }

  .ds\:place-content-evenly {
    place-content: space-evenly
  }

  .ds\:place-content-stretch {
    place-content: stretch
  }

  .ds\:place-self-auto {
    place-self: auto
  }

  .ds\:place-self-start {
    place-self: start
  }

  .ds\:place-self-end {
    place-self: end
  }

  .ds\:place-self-center {
    place-self: center
  }

  .ds\:place-self-stretch {
    place-self: stretch
  }

  .ds\:items-start {
    align-items: flex-start
  }

  .ds\:items-end {
    align-items: flex-end
  }

  .ds\:items-center {
    align-items: center
  }

  .ds\:items-baseline {
    align-items: baseline
  }

  .ds\:items-stretch {
    align-items: stretch
  }

  .ds\:content-center {
    align-content: center
  }

  .ds\:content-start {
    align-content: flex-start
  }

  .ds\:content-end {
    align-content: flex-end
  }

  .ds\:content-between {
    align-content: space-between
  }

  .ds\:content-around {
    align-content: space-around
  }

  .ds\:content-evenly {
    align-content: space-evenly
  }

  .ds\:self-auto {
    align-self: auto
  }

  .ds\:self-start {
    align-self: flex-start
  }

  .ds\:self-end {
    align-self: flex-end
  }

  .ds\:self-center {
    align-self: center
  }

  .ds\:self-stretch {
    align-self: stretch
  }

  .ds\:justify-items-auto {
    justify-items: auto
  }

  .ds\:justify-items-start {
    justify-items: start
  }

  .ds\:justify-items-end {
    justify-items: end
  }

  .ds\:justify-items-center {
    justify-items: center
  }

  .ds\:justify-items-stretch {
    justify-items: stretch
  }

  .ds\:justify-start {
    justify-content: flex-start
  }

  .ds\:justify-end {
    justify-content: flex-end
  }

  .ds\:justify-center {
    justify-content: center
  }

  .ds\:justify-between {
    justify-content: space-between
  }

  .ds\:justify-around {
    justify-content: space-around
  }

  .ds\:justify-evenly {
    justify-content: space-evenly
  }

  .ds\:justify-self-auto {
    justify-self: auto
  }

  .ds\:justify-self-start {
    justify-self: start
  }

  .ds\:justify-self-end {
    justify-self: end
  }

  .ds\:justify-self-center {
    justify-self: center
  }

  .ds\:justify-self-stretch {
    justify-self: stretch
  }

  .ds\:flex-1 {
    flex: 1 1 0%
  }

  .ds\:flex-auto {
    flex: 1 1 auto
  }

  .ds\:flex-initial {
    flex: 0 1 auto
  }

  .ds\:flex-none {
    flex: none
  }

  .ds\:flex-grow-0 {
    flex-grow: 0
  }

  .ds\:flex-grow {
    flex-grow: 1
  }

  .ds\:flex-shrink-0 {
    flex-shrink: 0
  }

  .ds\:flex-shrink {
    flex-shrink: 1
  }

  .ds\:order-1 {
    order: 1
  }

  .ds\:order-2 {
    order: 2
  }

  .ds\:order-3 {
    order: 3
  }

  .ds\:order-4 {
    order: 4
  }

  .ds\:order-5 {
    order: 5
  }

  .ds\:order-6 {
    order: 6
  }

  .ds\:order-7 {
    order: 7
  }

  .ds\:order-8 {
    order: 8
  }

  .ds\:order-9 {
    order: 9
  }

  .ds\:order-10 {
    order: 10
  }

  .ds\:order-11 {
    order: 11
  }

  .ds\:order-12 {
    order: 12
  }

  .ds\:order-first {
    order: -9999
  }

  .ds\:order-last {
    order: 9999
  }

  .ds\:order-none {
    order: 0
  }

  .ds\:float-right {
    float: right
  }

  .ds\:float-left {
    float: left
  }

  .ds\:float-none {
    float: none
  }

  .ds\:font-thin {
    font-weight: 100
  }

  .ds\:font-extralight {
    font-weight: 200
  }

  .ds\:font-light {
    font-weight: 300
  }

  .ds\:font-normal {
    font-weight: 400
  }

  .ds\:font-medium {
    font-weight: 500
  }

  .ds\:font-semibold {
    font-weight: 600
  }

  .ds\:font-bold {
    font-weight: 700
  }

  .ds\:font-extrabold {
    font-weight: 800
  }

  .ds\:font-black {
    font-weight: 900
  }

  .ds\:h-0 {
    height: 0px
  }

  .ds\:h-1 {
    height: 0.25rem
  }

  .ds\:h-2 {
    height: 0.5rem
  }

  .ds\:h-3 {
    height: 0.75rem
  }

  .ds\:h-4 {
    height: 1rem
  }

  .ds\:h-5 {
    height: 1.25rem
  }

  .ds\:h-6 {
    height: 1.5rem
  }

  .ds\:h-7 {
    height: 1.75rem
  }

  .ds\:h-8 {
    height: 2rem
  }

  .ds\:h-9 {
    height: 2.25rem
  }

  .ds\:h-10 {
    height: 2.5rem
  }

  .ds\:h-11 {
    height: 2.75rem
  }

  .ds\:h-12 {
    height: 3rem
  }

  .ds\:h-14 {
    height: 3.5rem
  }

  .ds\:h-16 {
    height: 4rem
  }

  .ds\:h-20 {
    height: 5rem
  }

  .ds\:h-24 {
    height: 6rem
  }

  .ds\:h-28 {
    height: 7rem
  }

  .ds\:h-32 {
    height: 8rem
  }

  .ds\:h-36 {
    height: 9rem
  }

  .ds\:h-40 {
    height: 10rem
  }

  .ds\:h-44 {
    height: 11rem
  }

  .ds\:h-48 {
    height: 12rem
  }

  .ds\:h-52 {
    height: 13rem
  }

  .ds\:h-56 {
    height: 14rem
  }

  .ds\:h-60 {
    height: 15rem
  }

  .ds\:h-64 {
    height: 16rem
  }

  .ds\:h-72 {
    height: 18rem
  }

  .ds\:h-80 {
    height: 20rem
  }

  .ds\:h-96 {
    height: 24rem
  }

  .ds\:h-auto {
    height: auto
  }

  .ds\:h-px {
    height: 1px
  }

  .ds\:h-0\.5 {
    height: 0.125rem
  }

  .ds\:h-1\.5 {
    height: 0.375rem
  }

  .ds\:h-2\.5 {
    height: 0.625rem
  }

  .ds\:h-3\.5 {
    height: 0.875rem
  }

  .ds\:h-2\/3 {
    height: 66.666667%
  }

  .ds\:h-3\/4 {
    height: 75%
  }

  .ds\:h-6\/19 {
    height: 56.25%
  }

  .ds\:h-1\/1 {
    height: 100%
  }

  .ds\:h-3\/2 {
    height: 150%
  }

  .ds\:h-4\/3 {
    height: 133.333%
  }

  .ds\:h-1\/2 {
    height: 50%
  }

  .ds\:h-1\/3 {
    height: 33.333333%
  }

  .ds\:h-1\/4 {
    height: 25%
  }

  .ds\:h-2\/4 {
    height: 50%
  }

  .ds\:h-1\/5 {
    height: 20%
  }

  .ds\:h-2\/5 {
    height: 40%
  }

  .ds\:h-3\/5 {
    height: 60%
  }

  .ds\:h-4\/5 {
    height: 80%
  }

  .ds\:h-1\/6 {
    height: 16.666667%
  }

  .ds\:h-2\/6 {
    height: 33.333333%
  }

  .ds\:h-3\/6 {
    height: 50%
  }

  .ds\:h-4\/6 {
    height: 66.666667%
  }

  .ds\:h-5\/6 {
    height: 83.333333%
  }

  .ds\:h-full {
    height: 100%
  }

  .ds\:h-screen {
    height: 100vh
  }

  .ds\:text-xs {
    font-size: .75rem
  }

  .ds\:text-sm {
    font-size: .875rem
  }

  .ds\:text-md {
    font-size: 1rem
  }

  .ds\:text-lg {
    font-size: 1.125rem
  }

  .ds\:text-xl {
    font-size: 1.25rem
  }

  .ds\:text-2xl {
    font-size: 1.5rem
  }

  .ds\:text-3xl {
    font-size: 1.875rem
  }

  .ds\:text-4xl {
    font-size: 2.25rem
  }

  .ds\:text-5xl {
    font-size: 3rem
  }

  .ds\:text-6xl {
    font-size: 4rem
  }

  .ds\:text-7xl {
    font-size: 5rem
  }

  .ds\:text-8xl {
    font-size: 6rem
  }

  .ds\:text-9xl {
    font-size: 8rem
  }

  .ds\:list-inside {
    list-style-position: inside
  }

  .ds\:list-outside {
    list-style-position: outside
  }

  .ds\:list-none {
    list-style-type: none
  }

  .ds\:list-disc {
    list-style-type: disc
  }

  .ds\:list-decimal {
    list-style-type: decimal
  }

  .ds\:m-0 {
    margin: 0px
  }

  .ds\:m-1 {
    margin: 0.25rem
  }

  .ds\:m-2 {
    margin: 0.5rem
  }

  .ds\:m-3 {
    margin: 0.75rem
  }

  .ds\:m-4 {
    margin: 1rem
  }

  .ds\:m-5 {
    margin: 1.25rem
  }

  .ds\:m-6 {
    margin: 1.5rem
  }

  .ds\:m-7 {
    margin: 1.75rem
  }

  .ds\:m-8 {
    margin: 2rem
  }

  .ds\:m-9 {
    margin: 2.25rem
  }

  .ds\:m-10 {
    margin: 2.5rem
  }

  .ds\:m-11 {
    margin: 2.75rem
  }

  .ds\:m-12 {
    margin: 3rem
  }

  .ds\:m-14 {
    margin: 3.5rem
  }

  .ds\:m-16 {
    margin: 4rem
  }

  .ds\:m-20 {
    margin: 5rem
  }

  .ds\:m-24 {
    margin: 6rem
  }

  .ds\:m-28 {
    margin: 7rem
  }

  .ds\:m-32 {
    margin: 8rem
  }

  .ds\:m-36 {
    margin: 9rem
  }

  .ds\:m-40 {
    margin: 10rem
  }

  .ds\:m-44 {
    margin: 11rem
  }

  .ds\:m-48 {
    margin: 12rem
  }

  .ds\:m-52 {
    margin: 13rem
  }

  .ds\:m-56 {
    margin: 14rem
  }

  .ds\:m-60 {
    margin: 15rem
  }

  .ds\:m-64 {
    margin: 16rem
  }

  .ds\:m-72 {
    margin: 18rem
  }

  .ds\:m-80 {
    margin: 20rem
  }

  .ds\:m-96 {
    margin: 24rem
  }

  .ds\:m-auto {
    margin: auto
  }

  .ds\:m-px {
    margin: 1px
  }

  .ds\:m-0\.5 {
    margin: 0.125rem
  }

  .ds\:m-1\.5 {
    margin: 0.375rem
  }

  .ds\:m-2\.5 {
    margin: 0.625rem
  }

  .ds\:m-3\.5 {
    margin: 0.875rem
  }

  .ds\:m-2\/3 {
    margin: 66.666667%
  }

  .ds\:m-3\/4 {
    margin: 75%
  }

  .ds\:m-6\/19 {
    margin: 56.25%
  }

  .ds\:m-1\/1 {
    margin: 100%
  }

  .ds\:m-3\/2 {
    margin: 150%
  }

  .ds\:m-4\/3 {
    margin: 133.333%
  }

  .ds\:-m-0 {
    margin: 0px
  }

  .ds\:-m-1 {
    margin: -0.25rem
  }

  .ds\:-m-2 {
    margin: -0.5rem
  }

  .ds\:-m-3 {
    margin: -0.75rem
  }

  .ds\:-m-4 {
    margin: -1rem
  }

  .ds\:-m-5 {
    margin: -1.25rem
  }

  .ds\:-m-6 {
    margin: -1.5rem
  }

  .ds\:-m-7 {
    margin: -1.75rem
  }

  .ds\:-m-8 {
    margin: -2rem
  }

  .ds\:-m-9 {
    margin: -2.25rem
  }

  .ds\:-m-10 {
    margin: -2.5rem
  }

  .ds\:-m-11 {
    margin: -2.75rem
  }

  .ds\:-m-12 {
    margin: -3rem
  }

  .ds\:-m-14 {
    margin: -3.5rem
  }

  .ds\:-m-16 {
    margin: -4rem
  }

  .ds\:-m-20 {
    margin: -5rem
  }

  .ds\:-m-24 {
    margin: -6rem
  }

  .ds\:-m-28 {
    margin: -7rem
  }

  .ds\:-m-32 {
    margin: -8rem
  }

  .ds\:-m-36 {
    margin: -9rem
  }

  .ds\:-m-40 {
    margin: -10rem
  }

  .ds\:-m-44 {
    margin: -11rem
  }

  .ds\:-m-48 {
    margin: -12rem
  }

  .ds\:-m-52 {
    margin: -13rem
  }

  .ds\:-m-56 {
    margin: -14rem
  }

  .ds\:-m-60 {
    margin: -15rem
  }

  .ds\:-m-64 {
    margin: -16rem
  }

  .ds\:-m-72 {
    margin: -18rem
  }

  .ds\:-m-80 {
    margin: -20rem
  }

  .ds\:-m-96 {
    margin: -24rem
  }

  .ds\:-m-px {
    margin: -1px
  }

  .ds\:-m-0\.5 {
    margin: -0.125rem
  }

  .ds\:-m-1\.5 {
    margin: -0.375rem
  }

  .ds\:-m-2\.5 {
    margin: -0.625rem
  }

  .ds\:-m-3\.5 {
    margin: -0.875rem
  }

  .ds\:-m-2\/3 {
    margin: -66.66667%
  }

  .ds\:-m-3\/4 {
    margin: -75%
  }

  .ds\:-m-6\/19 {
    margin: -56.25%
  }

  .ds\:-m-1\/1 {
    margin: -100%
  }

  .ds\:-m-3\/2 {
    margin: -150%
  }

  .ds\:-m-4\/3 {
    margin: -133.333%
  }

  .ds\:my-0 {
    margin-top: 0px;
    margin-bottom: 0px
  }

  .ds\:mx-0 {
    margin-left: 0px;
    margin-right: 0px
  }

  .ds\:my-1 {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem
  }

  .ds\:mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem
  }

  .ds\:my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
  }

  .ds\:mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem
  }

  .ds\:my-3 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem
  }

  .ds\:mx-3 {
    margin-left: 0.75rem;
    margin-right: 0.75rem
  }

  .ds\:my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem
  }

  .ds\:mx-4 {
    margin-left: 1rem;
    margin-right: 1rem
  }

  .ds\:my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
  }

  .ds\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
  }

  .ds\:my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
  }

  .ds\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
  }

  .ds\:my-7 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem
  }

  .ds\:mx-7 {
    margin-left: 1.75rem;
    margin-right: 1.75rem
  }

  .ds\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem
  }

  .ds\:mx-8 {
    margin-left: 2rem;
    margin-right: 2rem
  }

  .ds\:my-9 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem
  }

  .ds\:mx-9 {
    margin-left: 2.25rem;
    margin-right: 2.25rem
  }

  .ds\:my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }

  .ds\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem
  }

  .ds\:my-11 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem
  }

  .ds\:mx-11 {
    margin-left: 2.75rem;
    margin-right: 2.75rem
  }

  .ds\:my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem
  }

  .ds\:mx-12 {
    margin-left: 3rem;
    margin-right: 3rem
  }

  .ds\:my-14 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem
  }

  .ds\:mx-14 {
    margin-left: 3.5rem;
    margin-right: 3.5rem
  }

  .ds\:my-16 {
    margin-top: 4rem;
    margin-bottom: 4rem
  }

  .ds\:mx-16 {
    margin-left: 4rem;
    margin-right: 4rem
  }

  .ds\:my-20 {
    margin-top: 5rem;
    margin-bottom: 5rem
  }

  .ds\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem
  }

  .ds\:my-24 {
    margin-top: 6rem;
    margin-bottom: 6rem
  }

  .ds\:mx-24 {
    margin-left: 6rem;
    margin-right: 6rem
  }

  .ds\:my-28 {
    margin-top: 7rem;
    margin-bottom: 7rem
  }

  .ds\:mx-28 {
    margin-left: 7rem;
    margin-right: 7rem
  }

  .ds\:my-32 {
    margin-top: 8rem;
    margin-bottom: 8rem
  }

  .ds\:mx-32 {
    margin-left: 8rem;
    margin-right: 8rem
  }

  .ds\:my-36 {
    margin-top: 9rem;
    margin-bottom: 9rem
  }

  .ds\:mx-36 {
    margin-left: 9rem;
    margin-right: 9rem
  }

  .ds\:my-40 {
    margin-top: 10rem;
    margin-bottom: 10rem
  }

  .ds\:mx-40 {
    margin-left: 10rem;
    margin-right: 10rem
  }

  .ds\:my-44 {
    margin-top: 11rem;
    margin-bottom: 11rem
  }

  .ds\:mx-44 {
    margin-left: 11rem;
    margin-right: 11rem
  }

  .ds\:my-48 {
    margin-top: 12rem;
    margin-bottom: 12rem
  }

  .ds\:mx-48 {
    margin-left: 12rem;
    margin-right: 12rem
  }

  .ds\:my-52 {
    margin-top: 13rem;
    margin-bottom: 13rem
  }

  .ds\:mx-52 {
    margin-left: 13rem;
    margin-right: 13rem
  }

  .ds\:my-56 {
    margin-top: 14rem;
    margin-bottom: 14rem
  }

  .ds\:mx-56 {
    margin-left: 14rem;
    margin-right: 14rem
  }

  .ds\:my-60 {
    margin-top: 15rem;
    margin-bottom: 15rem
  }

  .ds\:mx-60 {
    margin-left: 15rem;
    margin-right: 15rem
  }

  .ds\:my-64 {
    margin-top: 16rem;
    margin-bottom: 16rem
  }

  .ds\:mx-64 {
    margin-left: 16rem;
    margin-right: 16rem
  }

  .ds\:my-72 {
    margin-top: 18rem;
    margin-bottom: 18rem
  }

  .ds\:mx-72 {
    margin-left: 18rem;
    margin-right: 18rem
  }

  .ds\:my-80 {
    margin-top: 20rem;
    margin-bottom: 20rem
  }

  .ds\:mx-80 {
    margin-left: 20rem;
    margin-right: 20rem
  }

  .ds\:my-96 {
    margin-top: 24rem;
    margin-bottom: 24rem
  }

  .ds\:mx-96 {
    margin-left: 24rem;
    margin-right: 24rem
  }

  .ds\:my-auto {
    margin-top: auto;
    margin-bottom: auto
  }

  .ds\:mx-auto {
    margin-left: auto;
    margin-right: auto
  }

  .ds\:my-px {
    margin-top: 1px;
    margin-bottom: 1px
  }

  .ds\:mx-px {
    margin-left: 1px;
    margin-right: 1px
  }

  .ds\:my-0\.5 {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem
  }

  .ds\:mx-0\.5 {
    margin-left: 0.125rem;
    margin-right: 0.125rem
  }

  .ds\:my-1\.5 {
    margin-top: 0.375rem;
    margin-bottom: 0.375rem
  }

  .ds\:mx-1\.5 {
    margin-left: 0.375rem;
    margin-right: 0.375rem
  }

  .ds\:my-2\.5 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem
  }

  .ds\:mx-2\.5 {
    margin-left: 0.625rem;
    margin-right: 0.625rem
  }

  .ds\:my-3\.5 {
    margin-top: 0.875rem;
    margin-bottom: 0.875rem
  }

  .ds\:mx-3\.5 {
    margin-left: 0.875rem;
    margin-right: 0.875rem
  }

  .ds\:my-2\/3 {
    margin-top: 66.666667%;
    margin-bottom: 66.666667%
  }

  .ds\:mx-2\/3 {
    margin-left: 66.666667%;
    margin-right: 66.666667%
  }

  .ds\:my-3\/4 {
    margin-top: 75%;
    margin-bottom: 75%
  }

  .ds\:mx-3\/4 {
    margin-left: 75%;
    margin-right: 75%
  }

  .ds\:my-6\/19 {
    margin-top: 56.25%;
    margin-bottom: 56.25%
  }

  .ds\:mx-6\/19 {
    margin-left: 56.25%;
    margin-right: 56.25%
  }

  .ds\:my-1\/1 {
    margin-top: 100%;
    margin-bottom: 100%
  }

  .ds\:mx-1\/1 {
    margin-left: 100%;
    margin-right: 100%
  }

  .ds\:my-3\/2 {
    margin-top: 150%;
    margin-bottom: 150%
  }

  .ds\:mx-3\/2 {
    margin-left: 150%;
    margin-right: 150%
  }

  .ds\:my-4\/3 {
    margin-top: 133.333%;
    margin-bottom: 133.333%
  }

  .ds\:mx-4\/3 {
    margin-left: 133.333%;
    margin-right: 133.333%
  }

  .ds\:-my-0 {
    margin-top: 0px;
    margin-bottom: 0px
  }

  .ds\:-mx-0 {
    margin-left: 0px;
    margin-right: 0px
  }

  .ds\:-my-1 {
    margin-top: -0.25rem;
    margin-bottom: -0.25rem
  }

  .ds\:-mx-1 {
    margin-left: -0.25rem;
    margin-right: -0.25rem
  }

  .ds\:-my-2 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem
  }

  .ds\:-mx-2 {
    margin-left: -0.5rem;
    margin-right: -0.5rem
  }

  .ds\:-my-3 {
    margin-top: -0.75rem;
    margin-bottom: -0.75rem
  }

  .ds\:-mx-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem
  }

  .ds\:-my-4 {
    margin-top: -1rem;
    margin-bottom: -1rem
  }

  .ds\:-mx-4 {
    margin-left: -1rem;
    margin-right: -1rem
  }

  .ds\:-my-5 {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem
  }

  .ds\:-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem
  }

  .ds\:-my-6 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem
  }

  .ds\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem
  }

  .ds\:-my-7 {
    margin-top: -1.75rem;
    margin-bottom: -1.75rem
  }

  .ds\:-mx-7 {
    margin-left: -1.75rem;
    margin-right: -1.75rem
  }

  .ds\:-my-8 {
    margin-top: -2rem;
    margin-bottom: -2rem
  }

  .ds\:-mx-8 {
    margin-left: -2rem;
    margin-right: -2rem
  }

  .ds\:-my-9 {
    margin-top: -2.25rem;
    margin-bottom: -2.25rem
  }

  .ds\:-mx-9 {
    margin-left: -2.25rem;
    margin-right: -2.25rem
  }

  .ds\:-my-10 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem
  }

  .ds\:-mx-10 {
    margin-left: -2.5rem;
    margin-right: -2.5rem
  }

  .ds\:-my-11 {
    margin-top: -2.75rem;
    margin-bottom: -2.75rem
  }

  .ds\:-mx-11 {
    margin-left: -2.75rem;
    margin-right: -2.75rem
  }

  .ds\:-my-12 {
    margin-top: -3rem;
    margin-bottom: -3rem
  }

  .ds\:-mx-12 {
    margin-left: -3rem;
    margin-right: -3rem
  }

  .ds\:-my-14 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem
  }

  .ds\:-mx-14 {
    margin-left: -3.5rem;
    margin-right: -3.5rem
  }

  .ds\:-my-16 {
    margin-top: -4rem;
    margin-bottom: -4rem
  }

  .ds\:-mx-16 {
    margin-left: -4rem;
    margin-right: -4rem
  }

  .ds\:-my-20 {
    margin-top: -5rem;
    margin-bottom: -5rem
  }

  .ds\:-mx-20 {
    margin-left: -5rem;
    margin-right: -5rem
  }

  .ds\:-my-24 {
    margin-top: -6rem;
    margin-bottom: -6rem
  }

  .ds\:-mx-24 {
    margin-left: -6rem;
    margin-right: -6rem
  }

  .ds\:-my-28 {
    margin-top: -7rem;
    margin-bottom: -7rem
  }

  .ds\:-mx-28 {
    margin-left: -7rem;
    margin-right: -7rem
  }

  .ds\:-my-32 {
    margin-top: -8rem;
    margin-bottom: -8rem
  }

  .ds\:-mx-32 {
    margin-left: -8rem;
    margin-right: -8rem
  }

  .ds\:-my-36 {
    margin-top: -9rem;
    margin-bottom: -9rem
  }

  .ds\:-mx-36 {
    margin-left: -9rem;
    margin-right: -9rem
  }

  .ds\:-my-40 {
    margin-top: -10rem;
    margin-bottom: -10rem
  }

  .ds\:-mx-40 {
    margin-left: -10rem;
    margin-right: -10rem
  }

  .ds\:-my-44 {
    margin-top: -11rem;
    margin-bottom: -11rem
  }

  .ds\:-mx-44 {
    margin-left: -11rem;
    margin-right: -11rem
  }

  .ds\:-my-48 {
    margin-top: -12rem;
    margin-bottom: -12rem
  }

  .ds\:-mx-48 {
    margin-left: -12rem;
    margin-right: -12rem
  }

  .ds\:-my-52 {
    margin-top: -13rem;
    margin-bottom: -13rem
  }

  .ds\:-mx-52 {
    margin-left: -13rem;
    margin-right: -13rem
  }

  .ds\:-my-56 {
    margin-top: -14rem;
    margin-bottom: -14rem
  }

  .ds\:-mx-56 {
    margin-left: -14rem;
    margin-right: -14rem
  }

  .ds\:-my-60 {
    margin-top: -15rem;
    margin-bottom: -15rem
  }

  .ds\:-mx-60 {
    margin-left: -15rem;
    margin-right: -15rem
  }

  .ds\:-my-64 {
    margin-top: -16rem;
    margin-bottom: -16rem
  }

  .ds\:-mx-64 {
    margin-left: -16rem;
    margin-right: -16rem
  }

  .ds\:-my-72 {
    margin-top: -18rem;
    margin-bottom: -18rem
  }

  .ds\:-mx-72 {
    margin-left: -18rem;
    margin-right: -18rem
  }

  .ds\:-my-80 {
    margin-top: -20rem;
    margin-bottom: -20rem
  }

  .ds\:-mx-80 {
    margin-left: -20rem;
    margin-right: -20rem
  }

  .ds\:-my-96 {
    margin-top: -24rem;
    margin-bottom: -24rem
  }

  .ds\:-mx-96 {
    margin-left: -24rem;
    margin-right: -24rem
  }

  .ds\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px
  }

  .ds\:-mx-px {
    margin-left: -1px;
    margin-right: -1px
  }

  .ds\:-my-0\.5 {
    margin-top: -0.125rem;
    margin-bottom: -0.125rem
  }

  .ds\:-mx-0\.5 {
    margin-left: -0.125rem;
    margin-right: -0.125rem
  }

  .ds\:-my-1\.5 {
    margin-top: -0.375rem;
    margin-bottom: -0.375rem
  }

  .ds\:-mx-1\.5 {
    margin-left: -0.375rem;
    margin-right: -0.375rem
  }

  .ds\:-my-2\.5 {
    margin-top: -0.625rem;
    margin-bottom: -0.625rem
  }

  .ds\:-mx-2\.5 {
    margin-left: -0.625rem;
    margin-right: -0.625rem
  }

  .ds\:-my-3\.5 {
    margin-top: -0.875rem;
    margin-bottom: -0.875rem
  }

  .ds\:-mx-3\.5 {
    margin-left: -0.875rem;
    margin-right: -0.875rem
  }

  .ds\:-my-2\/3 {
    margin-top: -66.66667%;
    margin-bottom: -66.66667%
  }

  .ds\:-mx-2\/3 {
    margin-left: -66.66667%;
    margin-right: -66.66667%
  }

  .ds\:-my-3\/4 {
    margin-top: -75%;
    margin-bottom: -75%
  }

  .ds\:-mx-3\/4 {
    margin-left: -75%;
    margin-right: -75%
  }

  .ds\:-my-6\/19 {
    margin-top: -56.25%;
    margin-bottom: -56.25%
  }

  .ds\:-mx-6\/19 {
    margin-left: -56.25%;
    margin-right: -56.25%
  }

  .ds\:-my-1\/1 {
    margin-top: -100%;
    margin-bottom: -100%
  }

  .ds\:-mx-1\/1 {
    margin-left: -100%;
    margin-right: -100%
  }

  .ds\:-my-3\/2 {
    margin-top: -150%;
    margin-bottom: -150%
  }

  .ds\:-mx-3\/2 {
    margin-left: -150%;
    margin-right: -150%
  }

  .ds\:-my-4\/3 {
    margin-top: -133.333%;
    margin-bottom: -133.333%
  }

  .ds\:-mx-4\/3 {
    margin-left: -133.333%;
    margin-right: -133.333%
  }

  .ds\:mt-0 {
    margin-top: 0px
  }

  .ds\:mr-0 {
    margin-right: 0px
  }

  .ds\:mb-0 {
    margin-bottom: 0px
  }

  .ds\:ml-0 {
    margin-left: 0px
  }

  .ds\:mt-1 {
    margin-top: 0.25rem
  }

  .ds\:mr-1 {
    margin-right: 0.25rem
  }

  .ds\:mb-1 {
    margin-bottom: 0.25rem
  }

  .ds\:ml-1 {
    margin-left: 0.25rem
  }

  .ds\:mt-2 {
    margin-top: 0.5rem
  }

  .ds\:mr-2 {
    margin-right: 0.5rem
  }

  .ds\:mb-2 {
    margin-bottom: 0.5rem
  }

  .ds\:ml-2 {
    margin-left: 0.5rem
  }

  .ds\:mt-3 {
    margin-top: 0.75rem
  }

  .ds\:mr-3 {
    margin-right: 0.75rem
  }

  .ds\:mb-3 {
    margin-bottom: 0.75rem
  }

  .ds\:ml-3 {
    margin-left: 0.75rem
  }

  .ds\:mt-4 {
    margin-top: 1rem
  }

  .ds\:mr-4 {
    margin-right: 1rem
  }

  .ds\:mb-4 {
    margin-bottom: 1rem
  }

  .ds\:ml-4 {
    margin-left: 1rem
  }

  .ds\:mt-5 {
    margin-top: 1.25rem
  }

  .ds\:mr-5 {
    margin-right: 1.25rem
  }

  .ds\:mb-5 {
    margin-bottom: 1.25rem
  }

  .ds\:ml-5 {
    margin-left: 1.25rem
  }

  .ds\:mt-6 {
    margin-top: 1.5rem
  }

  .ds\:mr-6 {
    margin-right: 1.5rem
  }

  .ds\:mb-6 {
    margin-bottom: 1.5rem
  }

  .ds\:ml-6 {
    margin-left: 1.5rem
  }

  .ds\:mt-7 {
    margin-top: 1.75rem
  }

  .ds\:mr-7 {
    margin-right: 1.75rem
  }

  .ds\:mb-7 {
    margin-bottom: 1.75rem
  }

  .ds\:ml-7 {
    margin-left: 1.75rem
  }

  .ds\:mt-8 {
    margin-top: 2rem
  }

  .ds\:mr-8 {
    margin-right: 2rem
  }

  .ds\:mb-8 {
    margin-bottom: 2rem
  }

  .ds\:ml-8 {
    margin-left: 2rem
  }

  .ds\:mt-9 {
    margin-top: 2.25rem
  }

  .ds\:mr-9 {
    margin-right: 2.25rem
  }

  .ds\:mb-9 {
    margin-bottom: 2.25rem
  }

  .ds\:ml-9 {
    margin-left: 2.25rem
  }

  .ds\:mt-10 {
    margin-top: 2.5rem
  }

  .ds\:mr-10 {
    margin-right: 2.5rem
  }

  .ds\:mb-10 {
    margin-bottom: 2.5rem
  }

  .ds\:ml-10 {
    margin-left: 2.5rem
  }

  .ds\:mt-11 {
    margin-top: 2.75rem
  }

  .ds\:mr-11 {
    margin-right: 2.75rem
  }

  .ds\:mb-11 {
    margin-bottom: 2.75rem
  }

  .ds\:ml-11 {
    margin-left: 2.75rem
  }

  .ds\:mt-12 {
    margin-top: 3rem
  }

  .ds\:mr-12 {
    margin-right: 3rem
  }

  .ds\:mb-12 {
    margin-bottom: 3rem
  }

  .ds\:ml-12 {
    margin-left: 3rem
  }

  .ds\:mt-14 {
    margin-top: 3.5rem
  }

  .ds\:mr-14 {
    margin-right: 3.5rem
  }

  .ds\:mb-14 {
    margin-bottom: 3.5rem
  }

  .ds\:ml-14 {
    margin-left: 3.5rem
  }

  .ds\:mt-16 {
    margin-top: 4rem
  }

  .ds\:mr-16 {
    margin-right: 4rem
  }

  .ds\:mb-16 {
    margin-bottom: 4rem
  }

  .ds\:ml-16 {
    margin-left: 4rem
  }

  .ds\:mt-20 {
    margin-top: 5rem
  }

  .ds\:mr-20 {
    margin-right: 5rem
  }

  .ds\:mb-20 {
    margin-bottom: 5rem
  }

  .ds\:ml-20 {
    margin-left: 5rem
  }

  .ds\:mt-24 {
    margin-top: 6rem
  }

  .ds\:mr-24 {
    margin-right: 6rem
  }

  .ds\:mb-24 {
    margin-bottom: 6rem
  }

  .ds\:ml-24 {
    margin-left: 6rem
  }

  .ds\:mt-28 {
    margin-top: 7rem
  }

  .ds\:mr-28 {
    margin-right: 7rem
  }

  .ds\:mb-28 {
    margin-bottom: 7rem
  }

  .ds\:ml-28 {
    margin-left: 7rem
  }

  .ds\:mt-32 {
    margin-top: 8rem
  }

  .ds\:mr-32 {
    margin-right: 8rem
  }

  .ds\:mb-32 {
    margin-bottom: 8rem
  }

  .ds\:ml-32 {
    margin-left: 8rem
  }

  .ds\:mt-36 {
    margin-top: 9rem
  }

  .ds\:mr-36 {
    margin-right: 9rem
  }

  .ds\:mb-36 {
    margin-bottom: 9rem
  }

  .ds\:ml-36 {
    margin-left: 9rem
  }

  .ds\:mt-40 {
    margin-top: 10rem
  }

  .ds\:mr-40 {
    margin-right: 10rem
  }

  .ds\:mb-40 {
    margin-bottom: 10rem
  }

  .ds\:ml-40 {
    margin-left: 10rem
  }

  .ds\:mt-44 {
    margin-top: 11rem
  }

  .ds\:mr-44 {
    margin-right: 11rem
  }

  .ds\:mb-44 {
    margin-bottom: 11rem
  }

  .ds\:ml-44 {
    margin-left: 11rem
  }

  .ds\:mt-48 {
    margin-top: 12rem
  }

  .ds\:mr-48 {
    margin-right: 12rem
  }

  .ds\:mb-48 {
    margin-bottom: 12rem
  }

  .ds\:ml-48 {
    margin-left: 12rem
  }

  .ds\:mt-52 {
    margin-top: 13rem
  }

  .ds\:mr-52 {
    margin-right: 13rem
  }

  .ds\:mb-52 {
    margin-bottom: 13rem
  }

  .ds\:ml-52 {
    margin-left: 13rem
  }

  .ds\:mt-56 {
    margin-top: 14rem
  }

  .ds\:mr-56 {
    margin-right: 14rem
  }

  .ds\:mb-56 {
    margin-bottom: 14rem
  }

  .ds\:ml-56 {
    margin-left: 14rem
  }

  .ds\:mt-60 {
    margin-top: 15rem
  }

  .ds\:mr-60 {
    margin-right: 15rem
  }

  .ds\:mb-60 {
    margin-bottom: 15rem
  }

  .ds\:ml-60 {
    margin-left: 15rem
  }

  .ds\:mt-64 {
    margin-top: 16rem
  }

  .ds\:mr-64 {
    margin-right: 16rem
  }

  .ds\:mb-64 {
    margin-bottom: 16rem
  }

  .ds\:ml-64 {
    margin-left: 16rem
  }

  .ds\:mt-72 {
    margin-top: 18rem
  }

  .ds\:mr-72 {
    margin-right: 18rem
  }

  .ds\:mb-72 {
    margin-bottom: 18rem
  }

  .ds\:ml-72 {
    margin-left: 18rem
  }

  .ds\:mt-80 {
    margin-top: 20rem
  }

  .ds\:mr-80 {
    margin-right: 20rem
  }

  .ds\:mb-80 {
    margin-bottom: 20rem
  }

  .ds\:ml-80 {
    margin-left: 20rem
  }

  .ds\:mt-96 {
    margin-top: 24rem
  }

  .ds\:mr-96 {
    margin-right: 24rem
  }

  .ds\:mb-96 {
    margin-bottom: 24rem
  }

  .ds\:ml-96 {
    margin-left: 24rem
  }

  .ds\:mt-auto {
    margin-top: auto
  }

  .ds\:mr-auto {
    margin-right: auto
  }

  .ds\:mb-auto {
    margin-bottom: auto
  }

  .ds\:ml-auto {
    margin-left: auto
  }

  .ds\:mt-px {
    margin-top: 1px
  }

  .ds\:mr-px {
    margin-right: 1px
  }

  .ds\:mb-px {
    margin-bottom: 1px
  }

  .ds\:ml-px {
    margin-left: 1px
  }

  .ds\:mt-0\.5 {
    margin-top: 0.125rem
  }

  .ds\:mr-0\.5 {
    margin-right: 0.125rem
  }

  .ds\:mb-0\.5 {
    margin-bottom: 0.125rem
  }

  .ds\:ml-0\.5 {
    margin-left: 0.125rem
  }

  .ds\:mt-1\.5 {
    margin-top: 0.375rem
  }

  .ds\:mr-1\.5 {
    margin-right: 0.375rem
  }

  .ds\:mb-1\.5 {
    margin-bottom: 0.375rem
  }

  .ds\:ml-1\.5 {
    margin-left: 0.375rem
  }

  .ds\:mt-2\.5 {
    margin-top: 0.625rem
  }

  .ds\:mr-2\.5 {
    margin-right: 0.625rem
  }

  .ds\:mb-2\.5 {
    margin-bottom: 0.625rem
  }

  .ds\:ml-2\.5 {
    margin-left: 0.625rem
  }

  .ds\:mt-3\.5 {
    margin-top: 0.875rem
  }

  .ds\:mr-3\.5 {
    margin-right: 0.875rem
  }

  .ds\:mb-3\.5 {
    margin-bottom: 0.875rem
  }

  .ds\:ml-3\.5 {
    margin-left: 0.875rem
  }

  .ds\:mt-2\/3 {
    margin-top: 66.666667%
  }

  .ds\:mr-2\/3 {
    margin-right: 66.666667%
  }

  .ds\:mb-2\/3 {
    margin-bottom: 66.666667%
  }

  .ds\:ml-2\/3 {
    margin-left: 66.666667%
  }

  .ds\:mt-3\/4 {
    margin-top: 75%
  }

  .ds\:mr-3\/4 {
    margin-right: 75%
  }

  .ds\:mb-3\/4 {
    margin-bottom: 75%
  }

  .ds\:ml-3\/4 {
    margin-left: 75%
  }

  .ds\:mt-6\/19 {
    margin-top: 56.25%
  }

  .ds\:mr-6\/19 {
    margin-right: 56.25%
  }

  .ds\:mb-6\/19 {
    margin-bottom: 56.25%
  }

  .ds\:ml-6\/19 {
    margin-left: 56.25%
  }

  .ds\:mt-1\/1 {
    margin-top: 100%
  }

  .ds\:mr-1\/1 {
    margin-right: 100%
  }

  .ds\:mb-1\/1 {
    margin-bottom: 100%
  }

  .ds\:ml-1\/1 {
    margin-left: 100%
  }

  .ds\:mt-3\/2 {
    margin-top: 150%
  }

  .ds\:mr-3\/2 {
    margin-right: 150%
  }

  .ds\:mb-3\/2 {
    margin-bottom: 150%
  }

  .ds\:ml-3\/2 {
    margin-left: 150%
  }

  .ds\:mt-4\/3 {
    margin-top: 133.333%
  }

  .ds\:mr-4\/3 {
    margin-right: 133.333%
  }

  .ds\:mb-4\/3 {
    margin-bottom: 133.333%
  }

  .ds\:ml-4\/3 {
    margin-left: 133.333%
  }

  .ds\:-mt-0 {
    margin-top: 0px
  }

  .ds\:-mr-0 {
    margin-right: 0px
  }

  .ds\:-mb-0 {
    margin-bottom: 0px
  }

  .ds\:-ml-0 {
    margin-left: 0px
  }

  .ds\:-mt-1 {
    margin-top: -0.25rem
  }

  .ds\:-mr-1 {
    margin-right: -0.25rem
  }

  .ds\:-mb-1 {
    margin-bottom: -0.25rem
  }

  .ds\:-ml-1 {
    margin-left: -0.25rem
  }

  .ds\:-mt-2 {
    margin-top: -0.5rem
  }

  .ds\:-mr-2 {
    margin-right: -0.5rem
  }

  .ds\:-mb-2 {
    margin-bottom: -0.5rem
  }

  .ds\:-ml-2 {
    margin-left: -0.5rem
  }

  .ds\:-mt-3 {
    margin-top: -0.75rem
  }

  .ds\:-mr-3 {
    margin-right: -0.75rem
  }

  .ds\:-mb-3 {
    margin-bottom: -0.75rem
  }

  .ds\:-ml-3 {
    margin-left: -0.75rem
  }

  .ds\:-mt-4 {
    margin-top: -1rem
  }

  .ds\:-mr-4 {
    margin-right: -1rem
  }

  .ds\:-mb-4 {
    margin-bottom: -1rem
  }

  .ds\:-ml-4 {
    margin-left: -1rem
  }

  .ds\:-mt-5 {
    margin-top: -1.25rem
  }

  .ds\:-mr-5 {
    margin-right: -1.25rem
  }

  .ds\:-mb-5 {
    margin-bottom: -1.25rem
  }

  .ds\:-ml-5 {
    margin-left: -1.25rem
  }

  .ds\:-mt-6 {
    margin-top: -1.5rem
  }

  .ds\:-mr-6 {
    margin-right: -1.5rem
  }

  .ds\:-mb-6 {
    margin-bottom: -1.5rem
  }

  .ds\:-ml-6 {
    margin-left: -1.5rem
  }

  .ds\:-mt-7 {
    margin-top: -1.75rem
  }

  .ds\:-mr-7 {
    margin-right: -1.75rem
  }

  .ds\:-mb-7 {
    margin-bottom: -1.75rem
  }

  .ds\:-ml-7 {
    margin-left: -1.75rem
  }

  .ds\:-mt-8 {
    margin-top: -2rem
  }

  .ds\:-mr-8 {
    margin-right: -2rem
  }

  .ds\:-mb-8 {
    margin-bottom: -2rem
  }

  .ds\:-ml-8 {
    margin-left: -2rem
  }

  .ds\:-mt-9 {
    margin-top: -2.25rem
  }

  .ds\:-mr-9 {
    margin-right: -2.25rem
  }

  .ds\:-mb-9 {
    margin-bottom: -2.25rem
  }

  .ds\:-ml-9 {
    margin-left: -2.25rem
  }

  .ds\:-mt-10 {
    margin-top: -2.5rem
  }

  .ds\:-mr-10 {
    margin-right: -2.5rem
  }

  .ds\:-mb-10 {
    margin-bottom: -2.5rem
  }

  .ds\:-ml-10 {
    margin-left: -2.5rem
  }

  .ds\:-mt-11 {
    margin-top: -2.75rem
  }

  .ds\:-mr-11 {
    margin-right: -2.75rem
  }

  .ds\:-mb-11 {
    margin-bottom: -2.75rem
  }

  .ds\:-ml-11 {
    margin-left: -2.75rem
  }

  .ds\:-mt-12 {
    margin-top: -3rem
  }

  .ds\:-mr-12 {
    margin-right: -3rem
  }

  .ds\:-mb-12 {
    margin-bottom: -3rem
  }

  .ds\:-ml-12 {
    margin-left: -3rem
  }

  .ds\:-mt-14 {
    margin-top: -3.5rem
  }

  .ds\:-mr-14 {
    margin-right: -3.5rem
  }

  .ds\:-mb-14 {
    margin-bottom: -3.5rem
  }

  .ds\:-ml-14 {
    margin-left: -3.5rem
  }

  .ds\:-mt-16 {
    margin-top: -4rem
  }

  .ds\:-mr-16 {
    margin-right: -4rem
  }

  .ds\:-mb-16 {
    margin-bottom: -4rem
  }

  .ds\:-ml-16 {
    margin-left: -4rem
  }

  .ds\:-mt-20 {
    margin-top: -5rem
  }

  .ds\:-mr-20 {
    margin-right: -5rem
  }

  .ds\:-mb-20 {
    margin-bottom: -5rem
  }

  .ds\:-ml-20 {
    margin-left: -5rem
  }

  .ds\:-mt-24 {
    margin-top: -6rem
  }

  .ds\:-mr-24 {
    margin-right: -6rem
  }

  .ds\:-mb-24 {
    margin-bottom: -6rem
  }

  .ds\:-ml-24 {
    margin-left: -6rem
  }

  .ds\:-mt-28 {
    margin-top: -7rem
  }

  .ds\:-mr-28 {
    margin-right: -7rem
  }

  .ds\:-mb-28 {
    margin-bottom: -7rem
  }

  .ds\:-ml-28 {
    margin-left: -7rem
  }

  .ds\:-mt-32 {
    margin-top: -8rem
  }

  .ds\:-mr-32 {
    margin-right: -8rem
  }

  .ds\:-mb-32 {
    margin-bottom: -8rem
  }

  .ds\:-ml-32 {
    margin-left: -8rem
  }

  .ds\:-mt-36 {
    margin-top: -9rem
  }

  .ds\:-mr-36 {
    margin-right: -9rem
  }

  .ds\:-mb-36 {
    margin-bottom: -9rem
  }

  .ds\:-ml-36 {
    margin-left: -9rem
  }

  .ds\:-mt-40 {
    margin-top: -10rem
  }

  .ds\:-mr-40 {
    margin-right: -10rem
  }

  .ds\:-mb-40 {
    margin-bottom: -10rem
  }

  .ds\:-ml-40 {
    margin-left: -10rem
  }

  .ds\:-mt-44 {
    margin-top: -11rem
  }

  .ds\:-mr-44 {
    margin-right: -11rem
  }

  .ds\:-mb-44 {
    margin-bottom: -11rem
  }

  .ds\:-ml-44 {
    margin-left: -11rem
  }

  .ds\:-mt-48 {
    margin-top: -12rem
  }

  .ds\:-mr-48 {
    margin-right: -12rem
  }

  .ds\:-mb-48 {
    margin-bottom: -12rem
  }

  .ds\:-ml-48 {
    margin-left: -12rem
  }

  .ds\:-mt-52 {
    margin-top: -13rem
  }

  .ds\:-mr-52 {
    margin-right: -13rem
  }

  .ds\:-mb-52 {
    margin-bottom: -13rem
  }

  .ds\:-ml-52 {
    margin-left: -13rem
  }

  .ds\:-mt-56 {
    margin-top: -14rem
  }

  .ds\:-mr-56 {
    margin-right: -14rem
  }

  .ds\:-mb-56 {
    margin-bottom: -14rem
  }

  .ds\:-ml-56 {
    margin-left: -14rem
  }

  .ds\:-mt-60 {
    margin-top: -15rem
  }

  .ds\:-mr-60 {
    margin-right: -15rem
  }

  .ds\:-mb-60 {
    margin-bottom: -15rem
  }

  .ds\:-ml-60 {
    margin-left: -15rem
  }

  .ds\:-mt-64 {
    margin-top: -16rem
  }

  .ds\:-mr-64 {
    margin-right: -16rem
  }

  .ds\:-mb-64 {
    margin-bottom: -16rem
  }

  .ds\:-ml-64 {
    margin-left: -16rem
  }

  .ds\:-mt-72 {
    margin-top: -18rem
  }

  .ds\:-mr-72 {
    margin-right: -18rem
  }

  .ds\:-mb-72 {
    margin-bottom: -18rem
  }

  .ds\:-ml-72 {
    margin-left: -18rem
  }

  .ds\:-mt-80 {
    margin-top: -20rem
  }

  .ds\:-mr-80 {
    margin-right: -20rem
  }

  .ds\:-mb-80 {
    margin-bottom: -20rem
  }

  .ds\:-ml-80 {
    margin-left: -20rem
  }

  .ds\:-mt-96 {
    margin-top: -24rem
  }

  .ds\:-mr-96 {
    margin-right: -24rem
  }

  .ds\:-mb-96 {
    margin-bottom: -24rem
  }

  .ds\:-ml-96 {
    margin-left: -24rem
  }

  .ds\:-mt-px {
    margin-top: -1px
  }

  .ds\:-mr-px {
    margin-right: -1px
  }

  .ds\:-mb-px {
    margin-bottom: -1px
  }

  .ds\:-ml-px {
    margin-left: -1px
  }

  .ds\:-mt-0\.5 {
    margin-top: -0.125rem
  }

  .ds\:-mr-0\.5 {
    margin-right: -0.125rem
  }

  .ds\:-mb-0\.5 {
    margin-bottom: -0.125rem
  }

  .ds\:-ml-0\.5 {
    margin-left: -0.125rem
  }

  .ds\:-mt-1\.5 {
    margin-top: -0.375rem
  }

  .ds\:-mr-1\.5 {
    margin-right: -0.375rem
  }

  .ds\:-mb-1\.5 {
    margin-bottom: -0.375rem
  }

  .ds\:-ml-1\.5 {
    margin-left: -0.375rem
  }

  .ds\:-mt-2\.5 {
    margin-top: -0.625rem
  }

  .ds\:-mr-2\.5 {
    margin-right: -0.625rem
  }

  .ds\:-mb-2\.5 {
    margin-bottom: -0.625rem
  }

  .ds\:-ml-2\.5 {
    margin-left: -0.625rem
  }

  .ds\:-mt-3\.5 {
    margin-top: -0.875rem
  }

  .ds\:-mr-3\.5 {
    margin-right: -0.875rem
  }

  .ds\:-mb-3\.5 {
    margin-bottom: -0.875rem
  }

  .ds\:-ml-3\.5 {
    margin-left: -0.875rem
  }

  .ds\:-mt-2\/3 {
    margin-top: -66.66667%
  }

  .ds\:-mr-2\/3 {
    margin-right: -66.66667%
  }

  .ds\:-mb-2\/3 {
    margin-bottom: -66.66667%
  }

  .ds\:-ml-2\/3 {
    margin-left: -66.66667%
  }

  .ds\:-mt-3\/4 {
    margin-top: -75%
  }

  .ds\:-mr-3\/4 {
    margin-right: -75%
  }

  .ds\:-mb-3\/4 {
    margin-bottom: -75%
  }

  .ds\:-ml-3\/4 {
    margin-left: -75%
  }

  .ds\:-mt-6\/19 {
    margin-top: -56.25%
  }

  .ds\:-mr-6\/19 {
    margin-right: -56.25%
  }

  .ds\:-mb-6\/19 {
    margin-bottom: -56.25%
  }

  .ds\:-ml-6\/19 {
    margin-left: -56.25%
  }

  .ds\:-mt-1\/1 {
    margin-top: -100%
  }

  .ds\:-mr-1\/1 {
    margin-right: -100%
  }

  .ds\:-mb-1\/1 {
    margin-bottom: -100%
  }

  .ds\:-ml-1\/1 {
    margin-left: -100%
  }

  .ds\:-mt-3\/2 {
    margin-top: -150%
  }

  .ds\:-mr-3\/2 {
    margin-right: -150%
  }

  .ds\:-mb-3\/2 {
    margin-bottom: -150%
  }

  .ds\:-ml-3\/2 {
    margin-left: -150%
  }

  .ds\:-mt-4\/3 {
    margin-top: -133.333%
  }

  .ds\:-mr-4\/3 {
    margin-right: -133.333%
  }

  .ds\:-mb-4\/3 {
    margin-bottom: -133.333%
  }

  .ds\:-ml-4\/3 {
    margin-left: -133.333%
  }

  .ds\:max-h-0 {
    max-height: 0px
  }

  .ds\:max-h-1 {
    max-height: 0.25rem
  }

  .ds\:max-h-2 {
    max-height: 0.5rem
  }

  .ds\:max-h-3 {
    max-height: 0.75rem
  }

  .ds\:max-h-4 {
    max-height: 1rem
  }

  .ds\:max-h-5 {
    max-height: 1.25rem
  }

  .ds\:max-h-6 {
    max-height: 1.5rem
  }

  .ds\:max-h-7 {
    max-height: 1.75rem
  }

  .ds\:max-h-8 {
    max-height: 2rem
  }

  .ds\:max-h-9 {
    max-height: 2.25rem
  }

  .ds\:max-h-10 {
    max-height: 2.5rem
  }

  .ds\:max-h-11 {
    max-height: 2.75rem
  }

  .ds\:max-h-12 {
    max-height: 3rem
  }

  .ds\:max-h-14 {
    max-height: 3.5rem
  }

  .ds\:max-h-16 {
    max-height: 4rem
  }

  .ds\:max-h-20 {
    max-height: 5rem
  }

  .ds\:max-h-24 {
    max-height: 6rem
  }

  .ds\:max-h-28 {
    max-height: 7rem
  }

  .ds\:max-h-32 {
    max-height: 8rem
  }

  .ds\:max-h-36 {
    max-height: 9rem
  }

  .ds\:max-h-40 {
    max-height: 10rem
  }

  .ds\:max-h-44 {
    max-height: 11rem
  }

  .ds\:max-h-48 {
    max-height: 12rem
  }

  .ds\:max-h-52 {
    max-height: 13rem
  }

  .ds\:max-h-56 {
    max-height: 14rem
  }

  .ds\:max-h-60 {
    max-height: 15rem
  }

  .ds\:max-h-64 {
    max-height: 16rem
  }

  .ds\:max-h-72 {
    max-height: 18rem
  }

  .ds\:max-h-80 {
    max-height: 20rem
  }

  .ds\:max-h-96 {
    max-height: 24rem
  }

  .ds\:max-h-px {
    max-height: 1px
  }

  .ds\:max-h-0\.5 {
    max-height: 0.125rem
  }

  .ds\:max-h-1\.5 {
    max-height: 0.375rem
  }

  .ds\:max-h-2\.5 {
    max-height: 0.625rem
  }

  .ds\:max-h-3\.5 {
    max-height: 0.875rem
  }

  .ds\:max-h-2\/3 {
    max-height: 66.666667%
  }

  .ds\:max-h-3\/4 {
    max-height: 75%
  }

  .ds\:max-h-6\/19 {
    max-height: 56.25%
  }

  .ds\:max-h-1\/1 {
    max-height: 100%
  }

  .ds\:max-h-3\/2 {
    max-height: 150%
  }

  .ds\:max-h-4\/3 {
    max-height: 133.333%
  }

  .ds\:max-h-full {
    max-height: 100%
  }

  .ds\:max-h-screen {
    max-height: 100vh
  }

  .ds\:max-w-0 {
    max-width: 0rem
  }

  .ds\:max-w-none {
    max-width: none
  }

  .ds\:max-w-xs {
    max-width: 20rem
  }

  .ds\:max-w-sm {
    max-width: 24rem
  }

  .ds\:max-w-md {
    max-width: 28rem
  }

  .ds\:max-w-lg {
    max-width: 32rem
  }

  .ds\:max-w-xl {
    max-width: 36rem
  }

  .ds\:max-w-2xl {
    max-width: 42rem
  }

  .ds\:max-w-3xl {
    max-width: 48rem
  }

  .ds\:max-w-4xl {
    max-width: 56rem
  }

  .ds\:max-w-5xl {
    max-width: 64rem
  }

  .ds\:max-w-6xl {
    max-width: 72rem
  }

  .ds\:max-w-7xl {
    max-width: 80rem
  }

  .ds\:max-w-full {
    max-width: 100%
  }

  .ds\:max-w-min {
    max-width: min-content
  }

  .ds\:max-w-max {
    max-width: max-content
  }

  .ds\:max-w-prose {
    max-width: 65ch
  }

  .ds\:max-w-screen-tb {
    max-width: 768px
  }

  .ds\:max-w-screen-ds {
    max-width: 992px
  }

  .ds\:min-h-0 {
    min-height: 0px
  }

  .ds\:min-h-full {
    min-height: 100%
  }

  .ds\:min-h-screen {
    min-height: 100vh
  }

  .ds\:min-w-0 {
    min-width: 0px
  }

  .ds\:min-w-full {
    min-width: 100%
  }

  .ds\:min-w-min {
    min-width: min-content
  }

  .ds\:min-w-max {
    min-width: max-content
  }

  .ds\:overflow-auto {
    overflow: auto
  }

  .ds\:overflow-hidden {
    overflow: hidden
  }

  .ds\:overflow-visible {
    overflow: visible
  }

  .ds\:overflow-scroll {
    overflow: scroll
  }

  .ds\:overflow-x-auto {
    overflow-x: auto
  }

  .ds\:overflow-y-auto {
    overflow-y: auto
  }

  .ds\:overflow-x-hidden {
    overflow-x: hidden
  }

  .ds\:overflow-y-hidden {
    overflow-y: hidden
  }

  .ds\:overflow-x-visible {
    overflow-x: visible
  }

  .ds\:overflow-y-visible {
    overflow-y: visible
  }

  .ds\:overflow-x-scroll {
    overflow-x: scroll
  }

  .ds\:overflow-y-scroll {
    overflow-y: scroll
  }

  .ds\:overscroll-auto {
    overscroll-behavior: auto
  }

  .ds\:overscroll-contain {
    overscroll-behavior: contain
  }

  .ds\:overscroll-none {
    overscroll-behavior: none
  }

  .ds\:overscroll-y-auto {
    overscroll-behavior-y: auto
  }

  .ds\:overscroll-y-contain {
    overscroll-behavior-y: contain
  }

  .ds\:overscroll-y-none {
    overscroll-behavior-y: none
  }

  .ds\:overscroll-x-auto {
    overscroll-behavior-x: auto
  }

  .ds\:overscroll-x-contain {
    overscroll-behavior-x: contain
  }

  .ds\:overscroll-x-none {
    overscroll-behavior-x: none
  }

  .ds\:p-0 {
    padding: 0px
  }

  .ds\:p-1 {
    padding: 0.25rem
  }

  .ds\:p-2 {
    padding: 0.5rem
  }

  .ds\:p-3 {
    padding: 0.75rem
  }

  .ds\:p-4 {
    padding: 1rem
  }

  .ds\:p-5 {
    padding: 1.25rem
  }

  .ds\:p-6 {
    padding: 1.5rem
  }

  .ds\:p-7 {
    padding: 1.75rem
  }

  .ds\:p-8 {
    padding: 2rem
  }

  .ds\:p-9 {
    padding: 2.25rem
  }

  .ds\:p-10 {
    padding: 2.5rem
  }

  .ds\:p-11 {
    padding: 2.75rem
  }

  .ds\:p-12 {
    padding: 3rem
  }

  .ds\:p-14 {
    padding: 3.5rem
  }

  .ds\:p-16 {
    padding: 4rem
  }

  .ds\:p-20 {
    padding: 5rem
  }

  .ds\:p-24 {
    padding: 6rem
  }

  .ds\:p-28 {
    padding: 7rem
  }

  .ds\:p-32 {
    padding: 8rem
  }

  .ds\:p-36 {
    padding: 9rem
  }

  .ds\:p-40 {
    padding: 10rem
  }

  .ds\:p-44 {
    padding: 11rem
  }

  .ds\:p-48 {
    padding: 12rem
  }

  .ds\:p-52 {
    padding: 13rem
  }

  .ds\:p-56 {
    padding: 14rem
  }

  .ds\:p-60 {
    padding: 15rem
  }

  .ds\:p-64 {
    padding: 16rem
  }

  .ds\:p-72 {
    padding: 18rem
  }

  .ds\:p-80 {
    padding: 20rem
  }

  .ds\:p-96 {
    padding: 24rem
  }

  .ds\:p-px {
    padding: 1px
  }

  .ds\:p-0\.5 {
    padding: 0.125rem
  }

  .ds\:p-1\.5 {
    padding: 0.375rem
  }

  .ds\:p-2\.5 {
    padding: 0.625rem
  }

  .ds\:p-3\.5 {
    padding: 0.875rem
  }

  .ds\:p-2\/3 {
    padding: 66.666667%
  }

  .ds\:p-3\/4 {
    padding: 75%
  }

  .ds\:p-6\/19 {
    padding: 56.25%
  }

  .ds\:p-1\/1 {
    padding: 100%
  }

  .ds\:p-3\/2 {
    padding: 150%
  }

  .ds\:p-4\/3 {
    padding: 133.333%
  }

  .ds\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px
  }

  .ds\:px-0 {
    padding-left: 0px;
    padding-right: 0px
  }

  .ds\:py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
  }

  .ds\:px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
  }

  .ds\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
  }

  .ds\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
  }

  .ds\:py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
  }

  .ds\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
  }

  .ds\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
  }

  .ds\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem
  }

  .ds\:py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
  }

  .ds\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
  }

  .ds\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
  }

  .ds\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .ds\:py-7 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem
  }

  .ds\:px-7 {
    padding-left: 1.75rem;
    padding-right: 1.75rem
  }

  .ds\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }

  .ds\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem
  }

  .ds\:py-9 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem
  }

  .ds\:px-9 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
  }

  .ds\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }

  .ds\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
  }

  .ds\:py-11 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem
  }

  .ds\:px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem
  }

  .ds\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem
  }

  .ds\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem
  }

  .ds\:py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
  }

  .ds\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
  }

  .ds\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem
  }

  .ds\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem
  }

  .ds\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem
  }

  .ds\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem
  }

  .ds\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .ds\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem
  }

  .ds\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem
  }

  .ds\:px-28 {
    padding-left: 7rem;
    padding-right: 7rem
  }

  .ds\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem
  }

  .ds\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem
  }

  .ds\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem
  }

  .ds\:px-36 {
    padding-left: 9rem;
    padding-right: 9rem
  }

  .ds\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem
  }

  .ds\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem
  }

  .ds\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem
  }

  .ds\:px-44 {
    padding-left: 11rem;
    padding-right: 11rem
  }

  .ds\:py-48 {
    padding-top: 12rem;
    padding-bottom: 12rem
  }

  .ds\:px-48 {
    padding-left: 12rem;
    padding-right: 12rem
  }

  .ds\:py-52 {
    padding-top: 13rem;
    padding-bottom: 13rem
  }

  .ds\:px-52 {
    padding-left: 13rem;
    padding-right: 13rem
  }

  .ds\:py-56 {
    padding-top: 14rem;
    padding-bottom: 14rem
  }

  .ds\:px-56 {
    padding-left: 14rem;
    padding-right: 14rem
  }

  .ds\:py-60 {
    padding-top: 15rem;
    padding-bottom: 15rem
  }

  .ds\:px-60 {
    padding-left: 15rem;
    padding-right: 15rem
  }

  .ds\:py-64 {
    padding-top: 16rem;
    padding-bottom: 16rem
  }

  .ds\:px-64 {
    padding-left: 16rem;
    padding-right: 16rem
  }

  .ds\:py-72 {
    padding-top: 18rem;
    padding-bottom: 18rem
  }

  .ds\:px-72 {
    padding-left: 18rem;
    padding-right: 18rem
  }

  .ds\:py-80 {
    padding-top: 20rem;
    padding-bottom: 20rem
  }

  .ds\:px-80 {
    padding-left: 20rem;
    padding-right: 20rem
  }

  .ds\:py-96 {
    padding-top: 24rem;
    padding-bottom: 24rem
  }

  .ds\:px-96 {
    padding-left: 24rem;
    padding-right: 24rem
  }

  .ds\:py-px {
    padding-top: 1px;
    padding-bottom: 1px
  }

  .ds\:px-px {
    padding-left: 1px;
    padding-right: 1px
  }

  .ds\:py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem
  }

  .ds\:px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem
  }

  .ds\:py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
  }

  .ds\:px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem
  }

  .ds\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem
  }

  .ds\:px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem
  }

  .ds\:py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem
  }

  .ds\:px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem
  }

  .ds\:py-2\/3 {
    padding-top: 66.666667%;
    padding-bottom: 66.666667%
  }

  .ds\:px-2\/3 {
    padding-left: 66.666667%;
    padding-right: 66.666667%
  }

  .ds\:py-3\/4 {
    padding-top: 75%;
    padding-bottom: 75%
  }

  .ds\:px-3\/4 {
    padding-left: 75%;
    padding-right: 75%
  }

  .ds\:py-6\/19 {
    padding-top: 56.25%;
    padding-bottom: 56.25%
  }

  .ds\:px-6\/19 {
    padding-left: 56.25%;
    padding-right: 56.25%
  }

  .ds\:py-1\/1 {
    padding-top: 100%;
    padding-bottom: 100%
  }

  .ds\:px-1\/1 {
    padding-left: 100%;
    padding-right: 100%
  }

  .ds\:py-3\/2 {
    padding-top: 150%;
    padding-bottom: 150%
  }

  .ds\:px-3\/2 {
    padding-left: 150%;
    padding-right: 150%
  }

  .ds\:py-4\/3 {
    padding-top: 133.333%;
    padding-bottom: 133.333%
  }

  .ds\:px-4\/3 {
    padding-left: 133.333%;
    padding-right: 133.333%
  }

  .ds\:pt-0 {
    padding-top: 0px
  }

  .ds\:pr-0 {
    padding-right: 0px
  }

  .ds\:pb-0 {
    padding-bottom: 0px
  }

  .ds\:pl-0 {
    padding-left: 0px
  }

  .ds\:pt-1 {
    padding-top: 0.25rem
  }

  .ds\:pr-1 {
    padding-right: 0.25rem
  }

  .ds\:pb-1 {
    padding-bottom: 0.25rem
  }

  .ds\:pl-1 {
    padding-left: 0.25rem
  }

  .ds\:pt-2 {
    padding-top: 0.5rem
  }

  .ds\:pr-2 {
    padding-right: 0.5rem
  }

  .ds\:pb-2 {
    padding-bottom: 0.5rem
  }

  .ds\:pl-2 {
    padding-left: 0.5rem
  }

  .ds\:pt-3 {
    padding-top: 0.75rem
  }

  .ds\:pr-3 {
    padding-right: 0.75rem
  }

  .ds\:pb-3 {
    padding-bottom: 0.75rem
  }

  .ds\:pl-3 {
    padding-left: 0.75rem
  }

  .ds\:pt-4 {
    padding-top: 1rem
  }

  .ds\:pr-4 {
    padding-right: 1rem
  }

  .ds\:pb-4 {
    padding-bottom: 1rem
  }

  .ds\:pl-4 {
    padding-left: 1rem
  }

  .ds\:pt-5 {
    padding-top: 1.25rem
  }

  .ds\:pr-5 {
    padding-right: 1.25rem
  }

  .ds\:pb-5 {
    padding-bottom: 1.25rem
  }

  .ds\:pl-5 {
    padding-left: 1.25rem
  }

  .ds\:pt-6 {
    padding-top: 1.5rem
  }

  .ds\:pr-6 {
    padding-right: 1.5rem
  }

  .ds\:pb-6 {
    padding-bottom: 1.5rem
  }

  .ds\:pl-6 {
    padding-left: 1.5rem
  }

  .ds\:pt-7 {
    padding-top: 1.75rem
  }

  .ds\:pr-7 {
    padding-right: 1.75rem
  }

  .ds\:pb-7 {
    padding-bottom: 1.75rem
  }

  .ds\:pl-7 {
    padding-left: 1.75rem
  }

  .ds\:pt-8 {
    padding-top: 2rem
  }

  .ds\:pr-8 {
    padding-right: 2rem
  }

  .ds\:pb-8 {
    padding-bottom: 2rem
  }

  .ds\:pl-8 {
    padding-left: 2rem
  }

  .ds\:pt-9 {
    padding-top: 2.25rem
  }

  .ds\:pr-9 {
    padding-right: 2.25rem
  }

  .ds\:pb-9 {
    padding-bottom: 2.25rem
  }

  .ds\:pl-9 {
    padding-left: 2.25rem
  }

  .ds\:pt-10 {
    padding-top: 2.5rem
  }

  .ds\:pr-10 {
    padding-right: 2.5rem
  }

  .ds\:pb-10 {
    padding-bottom: 2.5rem
  }

  .ds\:pl-10 {
    padding-left: 2.5rem
  }

  .ds\:pt-11 {
    padding-top: 2.75rem
  }

  .ds\:pr-11 {
    padding-right: 2.75rem
  }

  .ds\:pb-11 {
    padding-bottom: 2.75rem
  }

  .ds\:pl-11 {
    padding-left: 2.75rem
  }

  .ds\:pt-12 {
    padding-top: 3rem
  }

  .ds\:pr-12 {
    padding-right: 3rem
  }

  .ds\:pb-12 {
    padding-bottom: 3rem
  }

  .ds\:pl-12 {
    padding-left: 3rem
  }

  .ds\:pt-14 {
    padding-top: 3.5rem
  }

  .ds\:pr-14 {
    padding-right: 3.5rem
  }

  .ds\:pb-14 {
    padding-bottom: 3.5rem
  }

  .ds\:pl-14 {
    padding-left: 3.5rem
  }

  .ds\:pt-16 {
    padding-top: 4rem
  }

  .ds\:pr-16 {
    padding-right: 4rem
  }

  .ds\:pb-16 {
    padding-bottom: 4rem
  }

  .ds\:pl-16 {
    padding-left: 4rem
  }

  .ds\:pt-20 {
    padding-top: 5rem
  }

  .ds\:pr-20 {
    padding-right: 5rem
  }

  .ds\:pb-20 {
    padding-bottom: 5rem
  }

  .ds\:pl-20 {
    padding-left: 5rem
  }

  .ds\:pt-24 {
    padding-top: 6rem
  }

  .ds\:pr-24 {
    padding-right: 6rem
  }

  .ds\:pb-24 {
    padding-bottom: 6rem
  }

  .ds\:pl-24 {
    padding-left: 6rem
  }

  .ds\:pt-28 {
    padding-top: 7rem
  }

  .ds\:pr-28 {
    padding-right: 7rem
  }

  .ds\:pb-28 {
    padding-bottom: 7rem
  }

  .ds\:pl-28 {
    padding-left: 7rem
  }

  .ds\:pt-32 {
    padding-top: 8rem
  }

  .ds\:pr-32 {
    padding-right: 8rem
  }

  .ds\:pb-32 {
    padding-bottom: 8rem
  }

  .ds\:pl-32 {
    padding-left: 8rem
  }

  .ds\:pt-36 {
    padding-top: 9rem
  }

  .ds\:pr-36 {
    padding-right: 9rem
  }

  .ds\:pb-36 {
    padding-bottom: 9rem
  }

  .ds\:pl-36 {
    padding-left: 9rem
  }

  .ds\:pt-40 {
    padding-top: 10rem
  }

  .ds\:pr-40 {
    padding-right: 10rem
  }

  .ds\:pb-40 {
    padding-bottom: 10rem
  }

  .ds\:pl-40 {
    padding-left: 10rem
  }

  .ds\:pt-44 {
    padding-top: 11rem
  }

  .ds\:pr-44 {
    padding-right: 11rem
  }

  .ds\:pb-44 {
    padding-bottom: 11rem
  }

  .ds\:pl-44 {
    padding-left: 11rem
  }

  .ds\:pt-48 {
    padding-top: 12rem
  }

  .ds\:pr-48 {
    padding-right: 12rem
  }

  .ds\:pb-48 {
    padding-bottom: 12rem
  }

  .ds\:pl-48 {
    padding-left: 12rem
  }

  .ds\:pt-52 {
    padding-top: 13rem
  }

  .ds\:pr-52 {
    padding-right: 13rem
  }

  .ds\:pb-52 {
    padding-bottom: 13rem
  }

  .ds\:pl-52 {
    padding-left: 13rem
  }

  .ds\:pt-56 {
    padding-top: 14rem
  }

  .ds\:pr-56 {
    padding-right: 14rem
  }

  .ds\:pb-56 {
    padding-bottom: 14rem
  }

  .ds\:pl-56 {
    padding-left: 14rem
  }

  .ds\:pt-60 {
    padding-top: 15rem
  }

  .ds\:pr-60 {
    padding-right: 15rem
  }

  .ds\:pb-60 {
    padding-bottom: 15rem
  }

  .ds\:pl-60 {
    padding-left: 15rem
  }

  .ds\:pt-64 {
    padding-top: 16rem
  }

  .ds\:pr-64 {
    padding-right: 16rem
  }

  .ds\:pb-64 {
    padding-bottom: 16rem
  }

  .ds\:pl-64 {
    padding-left: 16rem
  }

  .ds\:pt-72 {
    padding-top: 18rem
  }

  .ds\:pr-72 {
    padding-right: 18rem
  }

  .ds\:pb-72 {
    padding-bottom: 18rem
  }

  .ds\:pl-72 {
    padding-left: 18rem
  }

  .ds\:pt-80 {
    padding-top: 20rem
  }

  .ds\:pr-80 {
    padding-right: 20rem
  }

  .ds\:pb-80 {
    padding-bottom: 20rem
  }

  .ds\:pl-80 {
    padding-left: 20rem
  }

  .ds\:pt-96 {
    padding-top: 24rem
  }

  .ds\:pr-96 {
    padding-right: 24rem
  }

  .ds\:pb-96 {
    padding-bottom: 24rem
  }

  .ds\:pl-96 {
    padding-left: 24rem
  }

  .ds\:pt-px {
    padding-top: 1px
  }

  .ds\:pr-px {
    padding-right: 1px
  }

  .ds\:pb-px {
    padding-bottom: 1px
  }

  .ds\:pl-px {
    padding-left: 1px
  }

  .ds\:pt-0\.5 {
    padding-top: 0.125rem
  }

  .ds\:pr-0\.5 {
    padding-right: 0.125rem
  }

  .ds\:pb-0\.5 {
    padding-bottom: 0.125rem
  }

  .ds\:pl-0\.5 {
    padding-left: 0.125rem
  }

  .ds\:pt-1\.5 {
    padding-top: 0.375rem
  }

  .ds\:pr-1\.5 {
    padding-right: 0.375rem
  }

  .ds\:pb-1\.5 {
    padding-bottom: 0.375rem
  }

  .ds\:pl-1\.5 {
    padding-left: 0.375rem
  }

  .ds\:pt-2\.5 {
    padding-top: 0.625rem
  }

  .ds\:pr-2\.5 {
    padding-right: 0.625rem
  }

  .ds\:pb-2\.5 {
    padding-bottom: 0.625rem
  }

  .ds\:pl-2\.5 {
    padding-left: 0.625rem
  }

  .ds\:pt-3\.5 {
    padding-top: 0.875rem
  }

  .ds\:pr-3\.5 {
    padding-right: 0.875rem
  }

  .ds\:pb-3\.5 {
    padding-bottom: 0.875rem
  }

  .ds\:pl-3\.5 {
    padding-left: 0.875rem
  }

  .ds\:pt-2\/3 {
    padding-top: 66.666667%
  }

  .ds\:pr-2\/3 {
    padding-right: 66.666667%
  }

  .ds\:pb-2\/3 {
    padding-bottom: 66.666667%
  }

  .ds\:pl-2\/3 {
    padding-left: 66.666667%
  }

  .ds\:pt-3\/4 {
    padding-top: 75%
  }

  .ds\:pr-3\/4 {
    padding-right: 75%
  }

  .ds\:pb-3\/4 {
    padding-bottom: 75%
  }

  .ds\:pl-3\/4 {
    padding-left: 75%
  }

  .ds\:pt-6\/19 {
    padding-top: 56.25%
  }

  .ds\:pr-6\/19 {
    padding-right: 56.25%
  }

  .ds\:pb-6\/19 {
    padding-bottom: 56.25%
  }

  .ds\:pl-6\/19 {
    padding-left: 56.25%
  }

  .ds\:pt-1\/1 {
    padding-top: 100%
  }

  .ds\:pr-1\/1 {
    padding-right: 100%
  }

  .ds\:pb-1\/1 {
    padding-bottom: 100%
  }

  .ds\:pl-1\/1 {
    padding-left: 100%
  }

  .ds\:pt-3\/2 {
    padding-top: 150%
  }

  .ds\:pr-3\/2 {
    padding-right: 150%
  }

  .ds\:pb-3\/2 {
    padding-bottom: 150%
  }

  .ds\:pl-3\/2 {
    padding-left: 150%
  }

  .ds\:pt-4\/3 {
    padding-top: 133.333%
  }

  .ds\:pr-4\/3 {
    padding-right: 133.333%
  }

  .ds\:pb-4\/3 {
    padding-bottom: 133.333%
  }

  .ds\:pl-4\/3 {
    padding-left: 133.333%
  }

  .ds\:static {
    position: static
  }

  .ds\:fixed {
    position: fixed
  }

  .ds\:absolute {
    position: absolute
  }

  .ds\:relative {
    position: relative
  }

  .ds\:sticky {
    position: sticky
  }

  .ds\:table-auto {
    table-layout: auto
  }

  .ds\:table-fixed {
    table-layout: fixed
  }

  .ds\:text-left {
    text-align: left
  }

  .ds\:text-center {
    text-align: center
  }

  .ds\:text-right {
    text-align: right
  }

  .ds\:text-justify {
    text-align: justify
  }

  .ds\:truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
  }

  .ds\:overflow-ellipsis {
    text-overflow: ellipsis
  }

  .ds\:overflow-clip {
    text-overflow: clip
  }

  .ds\:italic {
    font-style: italic
  }

  .ds\:not-italic {
    font-style: normal
  }

  .ds\:antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
  }

  .ds\:subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
  }

  .ds\:ordinal, .ds\:slashed-zero, .ds\:lining-nums, .ds\:oldstyle-nums, .ds\:proportional-nums, .ds\:tabular-nums, .ds\:diagonal-fractions, .ds\:stacked-fractions {
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/);
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/);
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/);
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
  }

  .ds\:normal-nums {
    font-variant-numeric: normal
  }

  .ds\:ordinal {
    --tw-ordinal: ordinal
  }

  .ds\:slashed-zero {
    --tw-slashed-zero: slashed-zero
  }

  .ds\:lining-nums {
    --tw-numeric-figure: lining-nums
  }

  .ds\:oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums
  }

  .ds\:proportional-nums {
    --tw-numeric-spacing: proportional-nums
  }

  .ds\:tabular-nums {
    --tw-numeric-spacing: tabular-nums
  }

  .ds\:diagonal-fractions {
    --tw-numeric-fraction: diagonal-fractions
  }

  .ds\:stacked-fractions {
    --tw-numeric-fraction: stacked-fractions
  }

  .ds\:tracking-tighter {
    letter-spacing: -0.05em
  }

  .ds\:tracking-tight {
    letter-spacing: -0.025em
  }

  .ds\:tracking-normal {
    letter-spacing: 0em
  }

  .ds\:tracking-wide {
    letter-spacing: 0.025em
  }

  .ds\:tracking-wider {
    letter-spacing: 0.05em
  }

  .ds\:tracking-widest {
    letter-spacing: 0.1em
  }

  .ds\:align-baseline {
    vertical-align: baseline
  }

  .ds\:align-top {
    vertical-align: top
  }

  .ds\:align-middle {
    vertical-align: middle
  }

  .ds\:align-bottom {
    vertical-align: bottom
  }

  .ds\:align-text-top {
    vertical-align: text-top
  }

  .ds\:align-text-bottom {
    vertical-align: text-bottom
  }

  .ds\:w-0 {
    width: 0px
  }

  .ds\:w-1 {
    width: 0.25rem
  }

  .ds\:w-2 {
    width: 0.5rem
  }

  .ds\:w-3 {
    width: 0.75rem
  }

  .ds\:w-4 {
    width: 1rem
  }

  .ds\:w-5 {
    width: 1.25rem
  }

  .ds\:w-6 {
    width: 1.5rem
  }

  .ds\:w-7 {
    width: 1.75rem
  }

  .ds\:w-8 {
    width: 2rem
  }

  .ds\:w-9 {
    width: 2.25rem
  }

  .ds\:w-10 {
    width: 2.5rem
  }

  .ds\:w-11 {
    width: 2.75rem
  }

  .ds\:w-12 {
    width: 3rem
  }

  .ds\:w-14 {
    width: 3.5rem
  }

  .ds\:w-16 {
    width: 4rem
  }

  .ds\:w-20 {
    width: 5rem
  }

  .ds\:w-24 {
    width: 6rem
  }

  .ds\:w-28 {
    width: 7rem
  }

  .ds\:w-32 {
    width: 8rem
  }

  .ds\:w-36 {
    width: 9rem
  }

  .ds\:w-40 {
    width: 10rem
  }

  .ds\:w-44 {
    width: 11rem
  }

  .ds\:w-48 {
    width: 12rem
  }

  .ds\:w-52 {
    width: 13rem
  }

  .ds\:w-56 {
    width: 14rem
  }

  .ds\:w-60 {
    width: 15rem
  }

  .ds\:w-64 {
    width: 16rem
  }

  .ds\:w-72 {
    width: 18rem
  }

  .ds\:w-80 {
    width: 20rem
  }

  .ds\:w-96 {
    width: 24rem
  }

  .ds\:w-auto {
    width: auto
  }

  .ds\:w-px {
    width: 1px
  }

  .ds\:w-0\.5 {
    width: 0.125rem
  }

  .ds\:w-1\.5 {
    width: 0.375rem
  }

  .ds\:w-2\.5 {
    width: 0.625rem
  }

  .ds\:w-3\.5 {
    width: 0.875rem
  }

  .ds\:w-2\/3 {
    width: 66.666667%
  }

  .ds\:w-3\/4 {
    width: 75%
  }

  .ds\:w-6\/19 {
    width: 56.25%
  }

  .ds\:w-1\/1 {
    width: 100%
  }

  .ds\:w-3\/2 {
    width: 150%
  }

  .ds\:w-4\/3 {
    width: 133.333%
  }

  .ds\:w-1\/2 {
    width: 50%
  }

  .ds\:w-1\/3 {
    width: 33.333333%
  }

  .ds\:w-1\/4 {
    width: 25%
  }

  .ds\:w-2\/4 {
    width: 50%
  }

  .ds\:w-1\/5 {
    width: 20%
  }

  .ds\:w-2\/5 {
    width: 40%
  }

  .ds\:w-3\/5 {
    width: 60%
  }

  .ds\:w-4\/5 {
    width: 80%
  }

  .ds\:w-1\/6 {
    width: 16.666667%
  }

  .ds\:w-2\/6 {
    width: 33.333333%
  }

  .ds\:w-3\/6 {
    width: 50%
  }

  .ds\:w-4\/6 {
    width: 66.666667%
  }

  .ds\:w-5\/6 {
    width: 83.333333%
  }

  .ds\:w-1\/12 {
    width: 8.333333%
  }

  .ds\:w-2\/12 {
    width: 16.666667%
  }

  .ds\:w-3\/12 {
    width: 25%
  }

  .ds\:w-4\/12 {
    width: 33.333333%
  }

  .ds\:w-5\/12 {
    width: 41.666667%
  }

  .ds\:w-6\/12 {
    width: 50%
  }

  .ds\:w-7\/12 {
    width: 58.333333%
  }

  .ds\:w-8\/12 {
    width: 66.666667%
  }

  .ds\:w-9\/12 {
    width: 75%
  }

  .ds\:w-10\/12 {
    width: 83.333333%
  }

  .ds\:w-11\/12 {
    width: 91.666667%
  }

  .ds\:w-full {
    width: 100%
  }

  .ds\:w-screen {
    width: 100vw
  }

  .ds\:w-min {
    width: min-content
  }

  .ds\:w-max {
    width: max-content
  }

  .ds\:gap-0 {
    gap: 0px
  }

  .ds\:gap-1 {
    gap: 0.25rem
  }

  .ds\:gap-2 {
    gap: 0.5rem
  }

  .ds\:gap-3 {
    gap: 0.75rem
  }

  .ds\:gap-4 {
    gap: 1rem
  }

  .ds\:gap-5 {
    gap: 1.25rem
  }

  .ds\:gap-6 {
    gap: 1.5rem
  }

  .ds\:gap-7 {
    gap: 1.75rem
  }

  .ds\:gap-8 {
    gap: 2rem
  }

  .ds\:gap-9 {
    gap: 2.25rem
  }

  .ds\:gap-10 {
    gap: 2.5rem
  }

  .ds\:gap-11 {
    gap: 2.75rem
  }

  .ds\:gap-12 {
    gap: 3rem
  }

  .ds\:gap-14 {
    gap: 3.5rem
  }

  .ds\:gap-16 {
    gap: 4rem
  }

  .ds\:gap-20 {
    gap: 5rem
  }

  .ds\:gap-24 {
    gap: 6rem
  }

  .ds\:gap-28 {
    gap: 7rem
  }

  .ds\:gap-32 {
    gap: 8rem
  }

  .ds\:gap-36 {
    gap: 9rem
  }

  .ds\:gap-40 {
    gap: 10rem
  }

  .ds\:gap-44 {
    gap: 11rem
  }

  .ds\:gap-48 {
    gap: 12rem
  }

  .ds\:gap-52 {
    gap: 13rem
  }

  .ds\:gap-56 {
    gap: 14rem
  }

  .ds\:gap-60 {
    gap: 15rem
  }

  .ds\:gap-64 {
    gap: 16rem
  }

  .ds\:gap-72 {
    gap: 18rem
  }

  .ds\:gap-80 {
    gap: 20rem
  }

  .ds\:gap-96 {
    gap: 24rem
  }

  .ds\:gap-px {
    gap: 1px
  }

  .ds\:gap-0\.5 {
    gap: 0.125rem
  }

  .ds\:gap-1\.5 {
    gap: 0.375rem
  }

  .ds\:gap-2\.5 {
    gap: 0.625rem
  }

  .ds\:gap-3\.5 {
    gap: 0.875rem
  }

  .ds\:gap-2\/3 {
    gap: 66.666667%
  }

  .ds\:gap-3\/4 {
    gap: 75%
  }

  .ds\:gap-6\/19 {
    gap: 56.25%
  }

  .ds\:gap-1\/1 {
    gap: 100%
  }

  .ds\:gap-3\/2 {
    gap: 150%
  }

  .ds\:gap-4\/3 {
    gap: 133.333%
  }

  .ds\:gap-x-0 {
    column-gap: 0px
  }

  .ds\:gap-x-1 {
    column-gap: 0.25rem
  }

  .ds\:gap-x-2 {
    column-gap: 0.5rem
  }

  .ds\:gap-x-3 {
    column-gap: 0.75rem
  }

  .ds\:gap-x-4 {
    column-gap: 1rem
  }

  .ds\:gap-x-5 {
    column-gap: 1.25rem
  }

  .ds\:gap-x-6 {
    column-gap: 1.5rem
  }

  .ds\:gap-x-7 {
    column-gap: 1.75rem
  }

  .ds\:gap-x-8 {
    column-gap: 2rem
  }

  .ds\:gap-x-9 {
    column-gap: 2.25rem
  }

  .ds\:gap-x-10 {
    column-gap: 2.5rem
  }

  .ds\:gap-x-11 {
    column-gap: 2.75rem
  }

  .ds\:gap-x-12 {
    column-gap: 3rem
  }

  .ds\:gap-x-14 {
    column-gap: 3.5rem
  }

  .ds\:gap-x-16 {
    column-gap: 4rem
  }

  .ds\:gap-x-20 {
    column-gap: 5rem
  }

  .ds\:gap-x-24 {
    column-gap: 6rem
  }

  .ds\:gap-x-28 {
    column-gap: 7rem
  }

  .ds\:gap-x-32 {
    column-gap: 8rem
  }

  .ds\:gap-x-36 {
    column-gap: 9rem
  }

  .ds\:gap-x-40 {
    column-gap: 10rem
  }

  .ds\:gap-x-44 {
    column-gap: 11rem
  }

  .ds\:gap-x-48 {
    column-gap: 12rem
  }

  .ds\:gap-x-52 {
    column-gap: 13rem
  }

  .ds\:gap-x-56 {
    column-gap: 14rem
  }

  .ds\:gap-x-60 {
    column-gap: 15rem
  }

  .ds\:gap-x-64 {
    column-gap: 16rem
  }

  .ds\:gap-x-72 {
    column-gap: 18rem
  }

  .ds\:gap-x-80 {
    column-gap: 20rem
  }

  .ds\:gap-x-96 {
    column-gap: 24rem
  }

  .ds\:gap-x-px {
    column-gap: 1px
  }

  .ds\:gap-x-0\.5 {
    column-gap: 0.125rem
  }

  .ds\:gap-x-1\.5 {
    column-gap: 0.375rem
  }

  .ds\:gap-x-2\.5 {
    column-gap: 0.625rem
  }

  .ds\:gap-x-3\.5 {
    column-gap: 0.875rem
  }

  .ds\:gap-x-2\/3 {
    column-gap: 66.666667%
  }

  .ds\:gap-x-3\/4 {
    column-gap: 75%
  }

  .ds\:gap-x-6\/19 {
    column-gap: 56.25%
  }

  .ds\:gap-x-1\/1 {
    column-gap: 100%
  }

  .ds\:gap-x-3\/2 {
    column-gap: 150%
  }

  .ds\:gap-x-4\/3 {
    column-gap: 133.333%
  }

  .ds\:gap-y-0 {
    row-gap: 0px
  }

  .ds\:gap-y-1 {
    row-gap: 0.25rem
  }

  .ds\:gap-y-2 {
    row-gap: 0.5rem
  }

  .ds\:gap-y-3 {
    row-gap: 0.75rem
  }

  .ds\:gap-y-4 {
    row-gap: 1rem
  }

  .ds\:gap-y-5 {
    row-gap: 1.25rem
  }

  .ds\:gap-y-6 {
    row-gap: 1.5rem
  }

  .ds\:gap-y-7 {
    row-gap: 1.75rem
  }

  .ds\:gap-y-8 {
    row-gap: 2rem
  }

  .ds\:gap-y-9 {
    row-gap: 2.25rem
  }

  .ds\:gap-y-10 {
    row-gap: 2.5rem
  }

  .ds\:gap-y-11 {
    row-gap: 2.75rem
  }

  .ds\:gap-y-12 {
    row-gap: 3rem
  }

  .ds\:gap-y-14 {
    row-gap: 3.5rem
  }

  .ds\:gap-y-16 {
    row-gap: 4rem
  }

  .ds\:gap-y-20 {
    row-gap: 5rem
  }

  .ds\:gap-y-24 {
    row-gap: 6rem
  }

  .ds\:gap-y-28 {
    row-gap: 7rem
  }

  .ds\:gap-y-32 {
    row-gap: 8rem
  }

  .ds\:gap-y-36 {
    row-gap: 9rem
  }

  .ds\:gap-y-40 {
    row-gap: 10rem
  }

  .ds\:gap-y-44 {
    row-gap: 11rem
  }

  .ds\:gap-y-48 {
    row-gap: 12rem
  }

  .ds\:gap-y-52 {
    row-gap: 13rem
  }

  .ds\:gap-y-56 {
    row-gap: 14rem
  }

  .ds\:gap-y-60 {
    row-gap: 15rem
  }

  .ds\:gap-y-64 {
    row-gap: 16rem
  }

  .ds\:gap-y-72 {
    row-gap: 18rem
  }

  .ds\:gap-y-80 {
    row-gap: 20rem
  }

  .ds\:gap-y-96 {
    row-gap: 24rem
  }

  .ds\:gap-y-px {
    row-gap: 1px
  }

  .ds\:gap-y-0\.5 {
    row-gap: 0.125rem
  }

  .ds\:gap-y-1\.5 {
    row-gap: 0.375rem
  }

  .ds\:gap-y-2\.5 {
    row-gap: 0.625rem
  }

  .ds\:gap-y-3\.5 {
    row-gap: 0.875rem
  }

  .ds\:gap-y-2\/3 {
    row-gap: 66.666667%
  }

  .ds\:gap-y-3\/4 {
    row-gap: 75%
  }

  .ds\:gap-y-6\/19 {
    row-gap: 56.25%
  }

  .ds\:gap-y-1\/1 {
    row-gap: 100%
  }

  .ds\:gap-y-3\/2 {
    row-gap: 150%
  }

  .ds\:gap-y-4\/3 {
    row-gap: 133.333%
  }

  .ds\:grid-flow-row {
    grid-auto-flow: row
  }

  .ds\:grid-flow-col {
    grid-auto-flow: column
  }

  .ds\:grid-flow-row-dense {
    grid-auto-flow: row dense
  }

  .ds\:grid-flow-col-dense {
    grid-auto-flow: column dense
  }

  .ds\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
  }

  .ds\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .ds\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .ds\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
  }

  .ds\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }

  .ds\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
  }

  .ds\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr))
  }

  .ds\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr))
  }

  .ds\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr))
  }

  .ds\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr))
  }

  .ds\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr))
  }

  .ds\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
  }

  .ds\:grid-cols-none {
    grid-template-columns: none
  }

  .ds\:auto-cols-auto {
    grid-auto-columns: auto
  }

  .ds\:auto-cols-min {
    grid-auto-columns: min-content
  }

  .ds\:auto-cols-max {
    grid-auto-columns: max-content
  }

  .ds\:auto-cols-fr {
    grid-auto-columns: minmax(0, 1fr)
  }

  .ds\:col-auto {
    grid-column: auto
  }

  .ds\:col-span-1 {
    grid-column: span 1 / span 1
  }

  .ds\:col-span-2 {
    grid-column: span 2 / span 2
  }

  .ds\:col-span-3 {
    grid-column: span 3 / span 3
  }

  .ds\:col-span-4 {
    grid-column: span 4 / span 4
  }

  .ds\:col-span-5 {
    grid-column: span 5 / span 5
  }

  .ds\:col-span-6 {
    grid-column: span 6 / span 6
  }

  .ds\:col-span-7 {
    grid-column: span 7 / span 7
  }

  .ds\:col-span-8 {
    grid-column: span 8 / span 8
  }

  .ds\:col-span-9 {
    grid-column: span 9 / span 9
  }

  .ds\:col-span-10 {
    grid-column: span 10 / span 10
  }

  .ds\:col-span-11 {
    grid-column: span 11 / span 11
  }

  .ds\:col-span-12 {
    grid-column: span 12 / span 12
  }

  .ds\:col-span-full {
    grid-column: 1 / -1
  }

  .ds\:col-start-1 {
    grid-column-start: 1
  }

  .ds\:col-start-2 {
    grid-column-start: 2
  }

  .ds\:col-start-3 {
    grid-column-start: 3
  }

  .ds\:col-start-4 {
    grid-column-start: 4
  }

  .ds\:col-start-5 {
    grid-column-start: 5
  }

  .ds\:col-start-6 {
    grid-column-start: 6
  }

  .ds\:col-start-7 {
    grid-column-start: 7
  }

  .ds\:col-start-8 {
    grid-column-start: 8
  }

  .ds\:col-start-9 {
    grid-column-start: 9
  }

  .ds\:col-start-10 {
    grid-column-start: 10
  }

  .ds\:col-start-11 {
    grid-column-start: 11
  }

  .ds\:col-start-12 {
    grid-column-start: 12
  }

  .ds\:col-start-13 {
    grid-column-start: 13
  }

  .ds\:col-start-auto {
    grid-column-start: auto
  }

  .ds\:col-end-1 {
    grid-column-end: 1
  }

  .ds\:col-end-2 {
    grid-column-end: 2
  }

  .ds\:col-end-3 {
    grid-column-end: 3
  }

  .ds\:col-end-4 {
    grid-column-end: 4
  }

  .ds\:col-end-5 {
    grid-column-end: 5
  }

  .ds\:col-end-6 {
    grid-column-end: 6
  }

  .ds\:col-end-7 {
    grid-column-end: 7
  }

  .ds\:col-end-8 {
    grid-column-end: 8
  }

  .ds\:col-end-9 {
    grid-column-end: 9
  }

  .ds\:col-end-10 {
    grid-column-end: 10
  }

  .ds\:col-end-11 {
    grid-column-end: 11
  }

  .ds\:col-end-12 {
    grid-column-end: 12
  }

  .ds\:col-end-13 {
    grid-column-end: 13
  }

  .ds\:col-end-auto {
    grid-column-end: auto
  }

  .ds\:grid-rows-1 {
    grid-template-rows: repeat(1, minmax(0, 1fr))
  }

  .ds\:grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr))
  }

  .ds\:grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr))
  }

  .ds\:grid-rows-4 {
    grid-template-rows: repeat(4, minmax(0, 1fr))
  }

  .ds\:grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr))
  }

  .ds\:grid-rows-6 {
    grid-template-rows: repeat(6, minmax(0, 1fr))
  }

  .ds\:grid-rows-none {
    grid-template-rows: none
  }

  .ds\:auto-rows-auto {
    grid-auto-rows: auto
  }

  .ds\:auto-rows-min {
    grid-auto-rows: min-content
  }

  .ds\:auto-rows-max {
    grid-auto-rows: max-content
  }

  .ds\:auto-rows-fr {
    grid-auto-rows: minmax(0, 1fr)
  }

  .ds\:row-auto {
    grid-row: auto
  }

  .ds\:row-span-1 {
    grid-row: span 1 / span 1
  }

  .ds\:row-span-2 {
    grid-row: span 2 / span 2
  }

  .ds\:row-span-3 {
    grid-row: span 3 / span 3
  }

  .ds\:row-span-4 {
    grid-row: span 4 / span 4
  }

  .ds\:row-span-5 {
    grid-row: span 5 / span 5
  }

  .ds\:row-span-6 {
    grid-row: span 6 / span 6
  }

  .ds\:row-span-full {
    grid-row: 1 / -1
  }

  .ds\:row-start-1 {
    grid-row-start: 1
  }

  .ds\:row-start-2 {
    grid-row-start: 2
  }

  .ds\:row-start-3 {
    grid-row-start: 3
  }

  .ds\:row-start-4 {
    grid-row-start: 4
  }

  .ds\:row-start-5 {
    grid-row-start: 5
  }

  .ds\:row-start-6 {
    grid-row-start: 6
  }

  .ds\:row-start-7 {
    grid-row-start: 7
  }

  .ds\:row-start-auto {
    grid-row-start: auto
  }

  .ds\:row-end-1 {
    grid-row-end: 1
  }

  .ds\:row-end-2 {
    grid-row-end: 2
  }

  .ds\:row-end-3 {
    grid-row-end: 3
  }

  .ds\:row-end-4 {
    grid-row-end: 4
  }

  .ds\:row-end-5 {
    grid-row-end: 5
  }

  .ds\:row-end-6 {
    grid-row-end: 6
  }

  .ds\:row-end-7 {
    grid-row-end: 7
  }

  .ds\:row-end-auto {
    grid-row-end: auto
  }

  .ds\:transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .ds\:transform-gpu {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
  }

  .ds\:transform-none {
    transform: none
  }
}

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


.accordion{position:relative;z-index:2;max-width:1090px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px;padding-top:50px;padding-bottom:60px}
.accordion .accordion-description{margin-bottom:70px;max-width:972px;margin-left:auto;margin-right:auto}
.accordion .accordion-container{gap:15px}
.accordion .accordion-container .accordion-item{border:unset;-webkit-transition:border .01s ease;transition:border .01s ease}
.accordion .accordion-container .accordion-item.active{background:#fff;border:1px solid #fdaf30;padding:0 32px 32px 26px}
.accordion .accordion-container .accordion-item.active .accordion-content{height:auto;-webkit-transition:height .1s ease;transition:height .1s ease}
.accordion .accordion-container .accordion-item.active .accordion-title{border-bottom:unset;padding-bottom:0;padding-left:0}
.accordion .accordion-container .accordion-item.active .accordion-title .arrows{padding-right:0}
.accordion .accordion-container .accordion-item.active .accordion-title .accordion-open{display:none}
.accordion .accordion-container .accordion-item.active .accordion-title .accordion-close{display:block}
.accordion .accordion-container .accordion-item .accordion-title{position:relative;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;z-index:2;padding-bottom:25px;margin:0;font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:22px;line-height:24px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#000;border-bottom:1px solid black;padding-left:26px;padding-top:28px;background:white}
.accordion .accordion-container .accordion-item .accordion-title .arrows{padding-right:32px}
.accordion .accordion-container .accordion-item .accordion-title svg{height:100%;width:auto;display:block}
.accordion .accordion-container .accordion-item .accordion-title .accordion-close{display:none}
.accordion .accordion-container .accordion-item .accordion-content{padding-top:24px;height:0;-webkit-transition:height .01s ease;transition:height .01s ease}
.accordion .accordion-container .accordion-item .accordion-content .content-wrapper{font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:18px;line-height:26px;color:#2b2b2b}
@media(min-width:767px){.accordion{padding-top:94px;padding-bottom:110px}
.accordion .accordion-description{margin-bottom:37px}
}
.social-links-container a.social-link{height:31px;width:30px;border-radius:50%;background:#000}
.social-links-container a.social-link:hover{background:#fdaf30}
.social-links-container a.social-link:not(last-of-type){margin-right:12px}
form .field{margin-bottom:12px;padding-left:14px 21px 16px 21px}
form .field input{font-weight:400 !important;font-size:16px !important;line-height:24px !important;color:#000 !important;height:52px !important;border:1px solid #000 !important}
form .hs_submit .actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative}
form .hs_submit .actions:after{position:absolute;background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-btn.png);content:"";display:inline-block;width:23px;height:10px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);right:calc(50% - 45px)}
form .hs_submit .actions:hover:after{background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-black.png)}
form .hs_submit .actions input{background:#000;color:#fff;position:relative;padding:11px 55px 11px 12px;border:1px solid black}
form .hs_submit .actions input:hover{background:white;color:black;border:1px solid black}
.form .submitted-message{font-family:'Tilda Sans';font-style:normal;font-weight:500;font-size:22px;line-height:26px;text-align:center;color:#000}
/* Direction */
.menu ul {
	flex-wrap: nowrap;
	margin-top: 0;
}

@media (min-width: 768px) {
	.menu-vertical .hs-menu-wrapper > ul {
		flex-direction: column;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
  .menu-horizontal ul,
  .menu-vertical ul {
		white-space: nowrap;
		overflow-x: scroll;
  }
}

/* 
 * Styles 
 */

.menu .hs-menu-item a {
	color: inherit;
}
.menu .hs-menu-item.active a {
	font-weight: bold;
}

/* Border */
.menu-border.menu-horizontal ul {
	text-align: center;
}
.menu-border.menu-horizontal ul li {
	width: 100%;
}
.menu-border .hs-menu-item a {
	border-bottom: 1px solid var(--color-light);
	padding: 1em;
}
.menu-border.menu-horizontal .hs-menu-item.active a {
	border-bottom-width: 2px;
}
@media (min-width: 768px) {
  .menu-border.menu-vertical .hs-menu-item a {
		border-bottom: 0;
    border-left: 1px solid var(--color-light);
	  padding: .5em 1em;
	}
	.menu-border.menu-vertical .hs-menu-item.active a {
		border-left-width: 2px;
	}
}
.menu-border .hs-menu-item a:hover,
.menu-border .hs-menu-item.active a {
	color: #FDAF30;
	border-color: #FDAF30;
	font-weight: bold;
}

/* Box */
.menu-box ul {
	margin: -0.35rem;
}
.menu-box ul li {
	padding: .35rem;
	width: 100%;
}
.menu-box .hs-menu-item a {
	padding: 1em 1.5em;
	color: var(--color);
	background: var(--background);
	transition: all ease 200ms;
	position: relative;
	border-radius: px;
	overflow: hidden;
}
.menu-box .hs-menu-item a:after {
	content: "";
	position: absolute;
	left: -1px;
	bottom: -0;
	width: calc(100% + 2px);
	height: 0px;
	background: #FDAF30;
}
.menu-box .hs-menu-item a:hover,
.menu-box .hs-menu-item.active a {
	border-color: #fff;
/* 	color: #FDAF30; */
}
.menu-box .hs-menu-item a:hover:after,
.menu-box .hs-menu-item.active a:after {
  height: 2px;
}

/* Card */
.menu-card ul,
.menu-card-border ul {
	margin: -.75rem;
}
.menu-card ul li,
.menu-card-border ul li {
	padding: .75rem;
	width: 100%;
}
.menu-card .hs-menu-item a,
.menu-card-border .hs-menu-item a {
	padding: 1em 2em;
	color: var(--color);
	box-shadow: ;
	background: var(--background);
	transition: all ease 200ms;
	position: relative;
	border-radius: px;
	width: 100%;
}
	.menu-card-border .hs-menu-item a {
	  border: 1px solid var(--color-light);
	}
.menu-card .hs-menu-item a:hover,
.menu-card .hs-menu-item.active a,
.menu-card-border .hs-menu-item a:hover,
.menu-card-border .hs-menu-item.active a {
	background: var(--primary-100);
	color: #FDAF30;
}
	.menu-card-border .hs-menu-item a:hover,
	.menu-card-border .hs-menu-item.active a {
		border-color: #FDAF30;
	}


	.menu-lite{
		position: relative;
		z-index: 2;
	  }


	  .pricing-lite {
		position: relative;
		z-index: 2;
	  }
.pricing-price {
	line-height: 80%;
}

/* Features */
.pricing-features .strike {
	opacity: .8;
}
.pricing-feature-inactive {
	filter: grayscale(100%);
	opacity: 0.25;
}
/* =========
 * Popup Controller
 * ================= */
.popup-iframe {
	background: repeating-linear-gradient(
  45deg,
  #fafafa,
  #fafafa 10px,
  #dddddd 10px,
  #dddddd 20px
);
	background-color: #f9f9f9;
	width: 100%;
	height: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.popup-iframe span {
	color: #000;
	font-size: 14px;
	font-weight: bold;
}

/* =========
 * Video Popup
 * ================= */
.video-popup {
  position: relative;
  width: auto;
  max-width: 800px;
  margin: 1.5rem auto;
}

/* =========
 * Popup
 * ================= */
.popup {
	width: 90%!important;
  position: relative;
  width: auto;
  max-width: 800px;
  margin: 1.5rem auto;
}

/* One Col 02 */
.popup-one-col-02 {
	width: 500px;
}

/* Two Col 01 */
.popup-two-col-01,
.popup-two-col-02 {
	max-width: 1100px;
}

/* =========
 * Close Button
 * ================= */
.mfp-close-btn-in .mfp-close {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: space-between;
/* 	background-color: var(--primary); */
	width: 125px!important;
	top: -60px;
	right: 0;
	border: 2px solid white;
    padding: 10px 10px;
    border-radius: 20px;
	opacity: 1;
	color: #fff!important;
	transition: 0.4s ease;
}
/* .mfp-close:before {
	content: "";
	position: absolute;
	top: 0;
	margin-top: -15px;
	margin-left: 22px;
	border-top: 15px solid transparent;
	border-bottom: 0px solid transparent;
	border-left: 22px solid var(--primary-700);
} */
.mfp-image-holder .mfp-close {
	top: 40px!important;
	right: 0!important;
}


/* =========
 * Zoom Animation
 * ================= */
/* start state */
.popup-zoom-animation .popup-zoom {
	opacity: 0;
	transition: all 0.4s cubic-bezier(.57,0,0,1);
	transform: translateY(-40px); 
}

/* animate in */
.popup-zoom-animation.mfp-ready .popup-zoom {
	opacity: 1;
	transform: translateY(0); 
}

/* animate out */
.popup-zoom-animation.mfp-removing .popup-zoom {
	transform: translateY(40px); 
	opacity: 0;
}

/* Dark overlay, start state */
.popup-zoom-animation.mfp-bg {
	opacity: 0;
	transition: all 0.4s cubic-bezier(.57,0,0,1);
}
/* animate in */
.mfp-bg {
	background: var(--dark);
}
.popup-zoom-animation.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.popup-zoom-animation.mfp-removing.mfp-bg {
	opacity: 0;
}
/* ----------------- Language Switcher ----------------- */
.header_language-switcher-label-current {
	display: none;
}

.two-images {
    display: flex;
 flex-direction: column;
 position: relative;
 z-index: 2;
}

.two-images .first-image {
   height: 253px; 
 background-position: center; 
 background-repeat: no-repeat; 
 background-size: cover; 
}
.two-images .second-image {
   height: 336px; 
 background-position: center; 
 background-repeat: no-repeat; 
 background-size: cover; 
}

@media (min-width: 767px){
 .two-images {
 flex-direction: row;
 }
 .two-images .second-image {
   flex: 0 0 43%;
   height: 539px; 
 }
 .two-images .first-image {
   flex: 0 0 57%;
   height: 539px; 
 }
}

.two-images.company-page-two-images .second-image{
 height: 627px; 
 
}
.two-images.company-page-two-images .first-image{
 height: 627px; 
}
.blog-lisiting {
    position: relative;
    z-index: 2;
}
.blog-lisiting.news .blog-listing-news-inner {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 60px;
}
.blog-lisiting.news .blog-listing-news-inner .news-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .image-holder {
    position: relative;
    height: 193px;
    overflow: hidden;
    margin-bottom: 47px;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .image-holder img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .theme-label {
    border-radius: 2px;
    border: solid 1px #4a3564;
    background-color: rgba(74, 53, 100, 0.2);
    margin-bottom: 18px;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .theme-label i, .blog-lisiting.news .blog-listing-news-inner .news-card .theme-label p {
    color: #4a3564;
}
.blog-lisiting.news .blog-listing-news-inner .news-card.blog-card .theme-label {
    border-radius: 2px;
    border: solid 1px #37bdce;
    background-color: rgba(55, 189, 206, 0.2);
}
.blog-lisiting.news .blog-listing-news-inner .news-card.blog-card .theme-label p, .blog-lisiting.news .blog-listing-news-inner .news-card.blog-card .theme-label i {
    color: #37bdce;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .title {
    font-family: Inter;
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: 0.04px;
    text-align: left;
    margin-bottom: 12px;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .title a {
    color: #000000;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .date {
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 0.35px;
    text-align: left;
    color: #adb2c3;
    margin-bottom: 20px;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .content img, .blog-lisiting.news .blog-listing-news-inner .news-card .content h1, .blog-lisiting.news .blog-listing-news-inner .news-card .content h2, .blog-lisiting.news .blog-listing-news-inner .news-card .content h3, .blog-lisiting.news .blog-listing-news-inner .news-card .content h4, .blog-lisiting.news .blog-listing-news-inner .news-card .content .blog-redesign-quote-box {
    display: none;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .content img p, .blog-lisiting.news .blog-listing-news-inner .news-card .content h1 p, .blog-lisiting.news .blog-listing-news-inner .news-card .content h2 p, .blog-lisiting.news .blog-listing-news-inner .news-card .content h3 p, .blog-lisiting.news .blog-listing-news-inner .news-card .content h4 p {
    font-family: Inter;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: 0.03px;
    text-align: left;
    color: #000000;
}
.blog-lisiting.news .blog-listing-news-inner .news-card .btn-holder {
    margin-top: 21px;
}
.blog-lisiting.learning-center .blog-listing-learning-center {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 35px;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FDAF30), to(#281934));
    background-image: -webkit-linear-gradient(top, #FDAF30, #281934);
    background-image: linear-gradient(to bottom, #FDAF30, #281934);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-body {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 57px);
    flex: 0 0 calc(100% - 57px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-header {
    padding: 26px 20px 24px 32px;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-header p{
 line-height: 1;

}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-header p > a {
    font-family: Inter;
    font-size: 17px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: white;
    text-transform: capitalize;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .image-holder {
    height: 159px;
    position: relative;
    opacity: 0.7;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .image-holder img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-footer {
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: white;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-footer p {
    font-size: 14px;
    line-height: 1;
    margin-left: 8px;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card .card-footer i {
    font-size: 11px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.case-study {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FDAF30), to(#281934));
    background-image: -webkit-linear-gradient(top, #FDAF30, #281934);
    background-image: linear-gradient(to bottom, #FDAF30, #281934);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.case-study .card-footer i::before {
    content: '\e826' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.research-report {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8efe5), to(#182840));
    background-image: -webkit-linear-gradient(top, #f8efe5, #182840);
    background-image: linear-gradient(to bottom, #f8efe5, #182840);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.research-report .card-footer i::before {
    content: '\e827' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.white-paper {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#2e6260));
    background-image: -webkit-linear-gradient(top, #f2f2f2, #2e6260);
    background-image: linear-gradient(to bottom, #f2f2f2, #2e6260);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.white-paper .card-footer i::before {
    content: '\e825' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.datasheets {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#325367), to(#192a34));
    background-image: -webkit-linear-gradient(top, #325367, #192a34);
    background-image: linear-gradient(to bottom, #325367, #192a34);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.datasheets .card-footer i::before {
    content: '\e829' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.solution-briefs {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#286ac4), to(#143562));
    background-image: -webkit-linear-gradient(top, #286ac4, #143562);
    background-image: linear-gradient(to bottom, #286ac4, #143562);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.solution-briefs .card-footer i::before {
    content: '\e81c' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.demo {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5346b9), to(#2a235d));
    background-image: -webkit-linear-gradient(top, #5346b9, #2a235d);
    background-image: linear-gradient(to bottom, #5346b9, #2a235d);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.demo .card-footer i::before {
    content: '\e828' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.vulnerability-analysis {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#17a9d5), to(#0c556b));
    background-image: -webkit-linear-gradient(top, #17a9d5, #0c556b);
    background-image: linear-gradient(to bottom, #17a9d5, #0c556b);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.vulnerability-analysis .card-footer i::before {
    content: '\e82c' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.video {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#09c181), to(#056141));
    background-image: -webkit-linear-gradient(top, #09c181, #056141);
    background-image: linear-gradient(to bottom, #09c181, #056141);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.video .card-footer i::before {
    content: '\e82b' !important;
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.analyst-report {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#5ba3c3), to(#2e5262));
    background-image: -webkit-linear-gradient(top, #5ba3c3, #2e5262);
    background-image: linear-gradient(to bottom, #5ba3c3, #2e5262);
}
.blog-lisiting.learning-center .blog-listing-learning-center .learning-center-card.analyst-report .card-footer i::before {
    content: '\e824' !important;
}
@media (min-width: 500px) {
    .blog-lisiting.news .blog-listing-news-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 60px;
   }
    .blog-lisiting.learning-center .blog-listing-learning-center {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        -webkit-column-gap: 28px;
        -moz-column-gap: 28px;
        column-gap: 28px;
        row-gap: 35px;
   }
}
@media (min-width: 980px) {
    .blog-lisiting.news .blog-listing-news-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 60px;
   }
    .blog-lisiting.learning-center .blog-listing-learning-center {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -webkit-column-gap: 28px;
        -moz-column-gap: 28px;
        column-gap: 28px;
        row-gap: 35px;
   }
}
@media (min-width: 1300px) {
    .blog-lisiting.news .blog-listing-news-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -webkit-column-gap: 99px;
        -moz-column-gap: 99px;
        column-gap: 99px;
        row-gap: 105px;
   }
    .blog-lisiting.learning-center .blog-listing-learning-center {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        -webkit-column-gap: 28px;
        -moz-column-gap: 28px;
        column-gap: 28px;
        row-gap: 35px;
   }
}
@media (min-width: 1500px) {
    .blog-lisiting.learning-center .blog-listing-learning-center {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        -webkit-column-gap: 28px;
        -moz-column-gap: 28px;
        column-gap: 28px;
        row-gap: 35px;
   }
}


.blog-lisiting.news .theme-label {
 display: none;
}

.blog-lisiting.news .theme-label:first-of-type {
 display: inline-flex;
}

.video-popup-trigger{
  width: 100% !important;
      height: 100%;
  }
  
  .hs-embed-wrapper{
      max-width: unset !important;
      max-height: unset !important; 
  }
.community {
    position: relative;
    z-index: 2;
}
.community .community-inner {
    gap: 50px 50px;
}
@media (min-width: 920px) {
    .community .community-inner {
        gap: 50px 100px;
   }
}
@media only screen and (max-width: 996px) and (min-width: 767px){
 .community .community-inner {
 grid-template-columns: repeat(3, minmax(0, 1fr));
 }
}

.community .community-inner .community-member-wrapper .community-member-image {
    width: 135px;
    height: 135px;
    position: relative;
}
.community .community-inner .community-member-wrapper .community-member-image img {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.community .community-inner .community-member-wrapper .community-member-name {
    font-family: Inter;
    font-size: 22px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.09;
    letter-spacing: 0.04px;
    text-align: left;
    color: #000000;
    margin-top: 22.6px;
}
.community .community-inner .community-member-wrapper .community-member-info {
    margin-top: 7px;
    max-width: 223px;
    font-family: Inter;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 0.03px;
    text-align: left;
    color: #707070;
}

@media (max-width: 450px) {
 .community .community-inner .community-member-wrapper .community-member-image{
   width: auto;
 }
 .community .community-inner .community-member-wrapper .community-member-image img{
   width: 100%;
 }
}

@media (max-width: 320px) {
  .community .community-inner {
     grid-template-columns: repeat(1, minmax(0, 1fr));
 }
 .community .community-inner .community-member-wrapper .community-member-image img{
   width: 135px;
 }
}
.content-lite{
    position: relative;
    z-index: 2;
  }
.d-none {
    display:  none;
  }
  
  
  .hs-inline-edit  .extend-column-options {
    display: flex;
    justify-content: center;
    background: grey;
    TEXT-TRANSFORM: UPPERCASE;
    font-size: 12px;
    color: white;
  }
.d-none {
    display:  none;
  }
  
  .hs-inline-edit  .extend-section-options {
    display: flex;
    justify-content: center;
    background: grey;
    TEXT-TRANSFORM: UPPERCASE;
    font-size: 12px;
    color: white;
  }
.images-desktop-mobile{
    position: relative;
    z-index: 2;
  
  }
   .images-desktop-mobile .images-container .desktop-image {
       display: none;
  }
   @media (min-width: 767px) {
       .images-desktop-mobile .images-container .desktop-image {
           display: block;
      }
  }
   .images-desktop-mobile .images-container .mobile-image {
       display: block;
  }
   @media (min-width: 767px) {
       .images-desktop-mobile .images-container .mobile-image {
           display: none;
      }
  }
.logo-slider{
    position: relative;
    z-index: 2;
  }
  
  .logo-slider .slick-slider {
    width: 100%;
  }
  
  .logo-slider .logo {
      display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
  }
  
  /* 
    .logo-slider .logo img {
      height: 195px;
    } */
  
  .logo-slider .slick-slider .slick-slide {
    background: white;
  }
  
  .logo-slider .slick-slider .slick-slide {
    box-shadow: 0 0 22px 0 rgb(135 154 197 / 31%);
    width: 339px;
    height: 195px;
    margin-right: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-slider .slick-slide {
    opacity: .7;
    width:10px;
  }
  
  .logo-slider .slick-list.draggable {
      margin-right: 0
  }
  
  .logo-slider .slick-track {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  
  .logo-slider .slick-center {
    height: 229px !important;
    margin-top: -17px !important;
  /*   width: 428px !important; */
    opacity: 1 !important;
  }
  
  
  @media (max-width: 767px) {
    .logo-slider .slick-slider .slick-slide{
        width: 335px !important;
    }
    .logo-slider .slick-slider .slick-slide{
        margin-right: 33px;
        margin-left: 44px;
    }
  
  }
  
  .logo-slider .slick-dots{
  margin-top: 14px;
  }
  
  @media (max-width: 500px) {
  /*   .logo-slider .slick-center img {
      height: 179px !important;
  } */
    .logo-slider .slick-center {
      height: 179px !important;
    }
    .logo-slider .slick-track{
    padding-bottom: 0px;
    }
  }
  .logo-slider .slick-list{
    box-sizing: initial;
    padding: 25px 0px;
  }
.quote-slider{
    position: relative;
    z-index: 2;
  }
  .quote-slider .quote {
       display: flex;
       flex-direction: column;
       align-items: center;
     max-width: 808px;
     margin-left: auto;
     margin-right: auto;
  }
   .quote-slider .quote .quote-text {
      font-size: 24px;
      line-height: 1.45;
     font-weight: bold;
     width: 100%;
     color: #000000;
  }
  
   .quote-slider .quote .quote-name {
     width: 100%;
     font-size: 14px;
     line-height: normal;
     font-weight: bold;
     color: #FDAF30;
     margin-top: 22.5px;
  }
  
  @media (max-width: 767px) {
    .quote-slider .quote .quote-text {
      font-size: 20px;
     line-height: 32px;
    }
    
    .quote-slider .quote .quote-name{
    margin-top: 43px;
    }
  }
.recognition-logos {
    position: relative;
    z-index: 2;
}
.recognition-logos .recognition-inner {
    gap: 80px 50px;
}
@media (min-width: 920px) {
    .recognition-logos .recognition-inner {
        gap: 161px 28px;
   }
}
@media only screen and (max-width: 996px) and (min-width: 767px){
 .recognition-logos .recognition-inner {
 grid-template-columns: repeat(3, minmax(0, 1fr));
 }
}

.recognition-logos .recognition-inner .recognition-member-wrapper .recognition-member-image {
  height: 168px;
    position: relative;
  display: flex;
  justify-content: center;
}
.recognition-logos .recognition-inner .recognition-member-wrapper .recognition-member-image img {
    position: absolute;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
  height: 100%;
}

.recognition-logos .recognition-inner .recognition-member-wrapper .recognition-member-info {
    margin-top: 30px;
    max-width: 247px;
    font-family: Inter;
 font-size: 14px;
 font-weight: bold;
 font-stretch: normal;
 font-style: normal;
 line-height: 1.43;
 letter-spacing: 0.35px;
 text-align: center;
 color: #f8efe5;
 margin-left: auto;
 margin-right: auto;
}

@media (max-width: 450px) {
 .recognition-logos .recognition-inner .recognition-member-wrapper .recognition-member-image{
   width: auto;
 }
 .recognition-logos .recognition-inner .recognition-member-wrapper .recognition-member-image img{
   width: 100%;
 }
}

@media (max-width: 320px) {
  .recognition-logos .recognition-inner {
     grid-template-columns: repeat(1, minmax(0, 1fr));
 }
}
.simple-vertical-tabs {
    position: relative;
    overflow: hidden;
  z-index: 2;
}
.simple-vertical-tabs .w-video-wrapper.w-css-reset {
    background-color: unset !important;
}
.simple-vertical-tabs .corner-image-holder {
    position: absolute;
    bottom: 0;
}
.simple-vertical-tabs .corner-image-holder.right {
    right: -214px;
}
.simple-vertical-tabs .corner-image-holder.left {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -214px;
}
.simple-vertical-tabs .corner-image-holder img {
    z-index: 9;
    max-width: 450px;
    width: 400px;
}
.simple-vertical-tabs .corner-image-holder .inner-container {
    display: block;
}
.simple-vertical-tabs .container-inner {
    position: relative;
}
.simple-vertical-tabs .container-inner .tabs-container {
    justify-content: space-between;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 50%;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item {
    border: 0;
    max-width: 382px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active .tab-number {
    color: #f2f2f2;
}
@media (min-width: 768px) {
    .simple-vertical-tabs .container-inner .tabs-container .tab-content-item h3 {
        font-size: 24px;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item::before {
        left: -6px !important;
        top: 63px;
   }
  .simple-vertical-tabs .container-inner .tabs-container .tab-list-item:first-child::before{
  left: -6px !important;
    top: 10px;
  }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item .active-indicator {
        left: -52px;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-name {
        line-height: 1;
        font-size: 24px;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-content-item h1 {
        line-height: 1.63;
   }
}
@media (min-width: 767px) {
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active:first-child:after{
top: 4px;
}

.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active:after {
    top: 56px;
    left: -13px !important;
   
}

 }
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active:before {
    background: #f2f2f2;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active:after {
    content: "";
    width: 28px;
    height: 28px;
    background: transparent;
    position: absolute;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
  left: -13px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item:before {
    content: "";
    position: absolute;
    background: #e0e3f0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
  left: -6px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-number {
    position: relative;
    font-family: Inter;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03px;
    color: #c8cce2;
    letter-spacing: 0.03px;
    padding-left: 39px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-name {
    font-family: Inter;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #f8efe5;
    padding-left: 32px;
    padding-top: 20px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-name span {
    color: #9ed0e8;
    position: absolute;
    left: -24px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: flex-start;
    line-height: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-name {
    font-family: Inter;
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #f8efe5;
    z-index: 9;
    margin-top: -8px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-inner-content {
    display: none;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-icon {
    padding: 15px;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-icon img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item:hover {
    cursor: pointer;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-name {
    color: #97989c;
    font-weight: 700;
}
.simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: display 1s;
    transition: display 1s;
    text-align: center;
}
.simple-vertical-tabs .container-inner .tab-content {
    z-index: 9;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 35%;
}
.simple-vertical-tabs .container-inner .tab-content-item {
    display: none;
}
.simple-vertical-tabs .container-inner .tab-content-item h3 {
    font-family: "Sharp Sans", "Sharp Sans Medium", "Source Sans Pro", Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.3px;
    text-align: left;
    color: #333;
}
.simple-vertical-tabs .container-inner .tab-content-item .image img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 0;
}
.simple-vertical-tabs .container-inner .tab-content-item .tab-description {
    font-family: Inter;
   font-size: 18px;
   font-weight: normal;
   font-stretch: normal;
   font-style: normal;
   line-height: 1.56;
   letter-spacing: 0.04px;
   text-align: left;
   color: #133d57;
   max-width: 300px;
  margin-top: 22px;
}

.simple-vertical-tabs .container-inner .tab-content-item .tab-buttons{
 padding-top: 21px;
}

.simple-vertical-tabs .container-inner .tab-content-item .tab-button {
 margin-top: 22px;
}
.simple-vertical-tabs .container-inner .tab-content-item.active {
    display: block;
}
.simple-vertical-tabs .container-inner .tab-content-item-description {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.simple-vertical-tabs .container-inner .tab-content-item-description h5 p {
    font-family: "Source Sans Pro", "system-ui", "Arial", sans-serif;
    font-size: 16px;
    line-height: 1.69;
    letter-spacing: -0.2px;
    color: #333;
    line-height: 1.69;
    font-weight: normal;
}
.simple-vertical-tabs .container-inner .tab-content-item-description h5 p a {
    position: relative;
    color: #333;
}
.simple-vertical-tabs .container-inner .tab-content-item-description h5 p span {
    position: relative;
    cursor: pointer;
}
.simple-vertical-tabs .container-inner .tab-content-item-description h5 p .learn-more-icon:after {
    content: "";
    width: 15px;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 13px solid #333;
    right: -15px;
    position: absolute;
    top: calc(50% - 7px);
}
.simple-vertical-tabs .container-inner .tab-content-item-description h5 p .open:after {
    right: -20px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.simple-vertical-tabs .container-inner .tab-content-item-description .hidden {
    display: none;
}

.simple-vertical-tabs .container-inner .tab-list-item .tab-inner-content .description p {
    margin-bottom: 0;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description p + p {
    margin-top: 15px;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more {
    color: #00a3f5;
    font-weight: normal;
    padding-right: 5px;
    display: flex;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more.open .see-more {
    display: none;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more.open .see-less {
    display: block;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .see-less {
    display: none;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more.open .learn-more-icon.open .arrow-up {
    display: block;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon .arrow-down {
    display: block;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon .arrow-up, .simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon.open .arrow-down {
    display: none;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-less {
    color: #00a3f5;
    font-weight: bold;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon {
    padding-left: 5px;
    padding-top: 2px;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .link-holder {
    padding-bottom: 7px;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-content-item-description {
    display: flex !important;
}
.simple-vertical-tabs .container-inner .tab-list-item.active .tab-inner-content .description .description-inner {
    display: flex;
}
.rotating-item {
    font-size: 60px;
    font-weight: 700;
    color: #a9a9a7;
    border-bottom: 4px solid transparent;
    padding: 0 15px;
    transition: all 0.5s linear 0.3s;
}
.rotating-item.slick-current.slick-active.slick-center {
    color: #00a3f5;
}
.tabs-container .tab-list .tab-inner-content .description {
    font-size: 18px;
    line-height: 24px;
}
@media (min-width: 47.5em) {
    .simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-name {
        display: block !important;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item {
        border-bottom: 0.5px solid #ccc;
       
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
   }
  
  .simple-vertical-tabs .container-inner .tabs-container .tab-list-item:not(:first-child) {
       padding-top: 62px;
   }
  .simple-vertical-tabs .container-inner .tabs-container .tab-list-item:first-child {
       padding-top: 10px;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item .tab-name {
        text-align: left;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item.active .tab-inner-content {
        text-align: left;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item.active .tab-inner-content .description {
        margin-bottom: 10px;
        margin-top: 5px;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-content-item .image img {
        margin: 0 auto 0 0;
   }
}

@media (min-width: 1800px) {
    .simple-vertical-tabs .corner-image-holder.right {
        right: -190px;
   }
    .simple-vertical-tabs .corner-image-holder.left {
        left: -190px;
   }
}
@media (max-width: 61.25em) {
    .simple-vertical-tabs .corner-image-holder {
        display: none;
   }
}
@media (max-width: 47.5em) {
 
    
    .simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item {
        padding: 0;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item.active .tab-inner-content {
        text-align: left;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item.active .tab-inner-content .link-holder {
        margin-bottom: 20px;
        margin-top: 10px;
   }
    .simple-vertical-tabs .container-inner .tabs-container .tab-list-item.active .tab-inner-content .description {
        padding-bottom: 10px;
   }
}

.simple-vertical-tabs .container-inner .tab-content {
    display: none;
}

.simple-vertical-tabs .tab-list-item.active .tab-content-mobile  {
display: block;
}
.simple-vertical-tabs .tab-list-item .tab-content-mobile  {
display: none;
}
@media (min-width: 767px) {
 .simple-vertical-tabs .tab-content-mobile{
 display: none;
 }
  .simple-vertical-tabs .container-inner .tab-content {
    display: block;
}
 .simple-vertical-tabs .tab-list-item.active .tab-content-mobile {
display: none;
}
 .simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-name{
 font-size: 18px;
 }
  .simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-number {
  padding-left: 32px;
  }
 
}

.simple-vertical-tabs .container-inner .tabs-container .tab-list-item:first-child{
padding-top: 10px;
}

.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item:not(:first-child){
padding-top: 63px;
}

.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active:first-child:after{
top: 3px;
}

.simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item.active:after {
    top: 56px;
   
}
.simple-vertical-tabs .container-inner .tab-content-mobile .tab-description{
 padding-top: 21px;
 font-family: Inter;
 font-size: 18px;
 font-weight: normal;
 font-stretch: normal;
 font-style: normal;
 line-height: 1.56;
 letter-spacing: 0.04px;
 text-align: left;
 color: #133d57;
 max-width: 350px;
}
.simple-vertical-tabs .container-inner .tab-content-mobile .tab-buttons{
 padding-top: 21px;
}

.simple-vertical-tabs .container-inner .tab-content-mobile .image-holder{
padding-top: 30px;
}

@media (max-width: 767px) {
 .simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-number,
 .simple-vertical-tabs .container-inner .tabs-container .tab-list .tab-list-item .tab-name {
   padding-left: 26px;
 }
}


   
/* Added style */
.social-share {
    display: flex;
    flex-wrap: wrap;
  }
  
  .social-share a {
    margin-right: 22px;
    cursor: pointer'
  }
  
  .social-share a:last-of-type {
    margin-right: 0px;
  }
  
  .social-share i {
    font-size: 20px;
  }
.image-text-repeater{padding-top:115px;padding-bottom:115px}
.image-text-repeater .image-text-repeater-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:1916px;margin-left:auto;margin-right:auto}
.image-text-repeater .image-text-repeater-wrapper:not(:last-child){margin-bottom:90px}
.image-text-repeater .image-text-repeater-wrapper .content{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}
.image-text-repeater .image-text-repeater-wrapper .content .preheader{margin-bottom:8px}
.image-text-repeater .image-text-repeater-wrapper .content .repeater-header h2{color:#000}
.image-text-repeater .image-text-repeater-wrapper .content .repeater-header h3{color:#000}
.image-text-repeater .image-text-repeater-wrapper .content .description{padding-bottom:21px}
.image-text-repeater .image-text-repeater-wrapper .content .buttons-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.image-text-repeater .image-text-repeater-wrapper .content .buttons-wrapper a{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}
.image-text-repeater .image-text-repeater-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-bottom:34px}
.image-text-repeater .image-text-repeater-wrapper .repeater-image{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}
@media(min-width:767px){.image-text-repeater .image-text-repeater-wrapper .content .buttons-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.image-text-repeater .image-text-repeater-wrapper .content .buttons-wrapper a{width:unset}
.image-text-repeater .image-text-repeater-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-right:21px;margin-bottom:0}
}@media(min-width:992px){.image-text-repeater .image-text-repeater-wrapper .content .repeater-header h2{margin-bottom:30px}
.image-text-repeater .image-text-repeater-wrapper .content .repeater-header h3{margin-bottom:30px}
.image-text-repeater .image-text-repeater-wrapper .content .description{padding-bottom:40px}
}@media(min-width:1290px){.image-text-repeater.image-left .image-text-repeater-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.image-text-repeater.image-left .image-text-repeater-wrapper:nth-child(odd){-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.image-text-repeater.image-left .image-text-repeater-wrapper:nth-child(odd) .content{padding-left:70px;padding-right:70px}
.image-text-repeater.image-left .image-text-repeater-wrapper:nth-child(even){-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.image-text-repeater.image-left .image-text-repeater-wrapper:nth-child(even) .content{margin-left:20px;padding-left:70px;padding-right:70px}
.image-text-repeater.image-right .image-text-repeater-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.image-text-repeater.image-right .image-text-repeater-wrapper:nth-child(odd){-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.image-text-repeater.image-right .image-text-repeater-wrapper:nth-child(odd) .content{padding-left:70px;padding-right:70px}
.image-text-repeater.image-right .image-text-repeater-wrapper:nth-child(even){-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.image-text-repeater.image-right .image-text-repeater-wrapper:nth-child(even) .content{padding-right:20px;padding-left:70px;padding-right:70px}
.image-text-repeater .image-text-repeater-wrapper:not(:last-child){margin-bottom:50px}
}@media(min-width:1700px){.image-text-repeater .image-text-repeater-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.image-text-repeater .image-text-repeater-wrapper .content .description{max-width:730px}
}@media(max-width:1290px){.image-text-repeater .image-text-repeater-wrapper .content{max-width:960px}
.image-text-repeater .image-text-repeater-wrapper .content .description{padding-bottom:41px}
.image-text-repeater .image-text-repeater-wrapper .repeater-image{margin-bottom:27px}
}@media(max-width:1000px){.image-text-repeater{padding-left:20px;padding-right:20px}
}
.hero{position:relative}
.hero.hero-video{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:900px;overflow:hidden;max-height:900px}
.hero.hero-video .hero-content{z-index:9;color:#fff}
.hero.hero-image{padding-top:200px;padding-bottom:100px;background-size:cover;background-repeat:no-repeat}
.hero.hero-center{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.hero.hero-center .hero-content{margin-right:auto;left:0;right:0;text-align:center}
.hero.hero-center .description{margin-left:auto;margin-right:auto}
.hero.hero-left .hero-content .button{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}
.hero video{max-height:667px;position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;-o-object-fit:cover;object-fit:cover;z-index:-1;-webkit-animation:scale 30s infinite alternate ease-in-out;animation:scale 30s infinite alternate ease-in-out}
.hero .hero-content .hero-header{color:white}
.hero .hero-content .hero-header strong,.hero .hero-content .hero-header b{color:#fdaf30;font-weight:400}
.hero .hero-content .description{color:white;max-width:763px}
.hero .hero-content .button{margin-top:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.hero .hero-content .button a:not(:last-of-type){margin-right:21px}
@media(min-width:992px){.hero.hero-image{max-height:900px;padding-top:317px;padding-bottom:282px}
.hero.hero-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center}
.hero.hero-center .hero-content{margin-left:auto}
.hero.hero-left .hero-content{padding-left:73px}
.hero .hero-content .hero-header{margin-bottom:30px}
}@media(min-width:1200px){.hero video{width:100%;max-height:unset}
}@media only screen and (max-width:1500px) and (min-width:992px){.hero.hero-video .hero-content .hero-header{font-size:100px;line-height:100px}
}@media(max-width:992px){.hero.hero-video .hero-content h1{margin-bottom:5px}
.hero .hero-content{text-align:left !important;padding-left:20px;padding-right:20px}
.hero .hero-content .description{margin-left:unset !important}
.hero .hero-content .button{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:300px;margin-top:15px}
.hero .hero-content .button a:not(:last-of-type){margin-bottom:35px}
}@media(max-width:500px){.hero.hero-left .hero-content{padding-left:20px}
.hero.hero-left .hero-content .description{max-width:300px}
}
.ctas{padding-top:140px;padding-bottom:140px}
.ctas .ctas-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;max-width:1194px;margin-right:auto;margin-left:auto;padding-right:20px;padding-left:20px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.ctas .ctas-wrapper .description{max-width:415px;margin-left:auto;margin-right:auto}
.ctas .ctas-wrapper .contact-us-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;background:rgba(0,0,0,0.9);opacity:.9;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:51px 20px 44px 20px}
.ctas .ctas-wrapper .contact-us-wrapper .description{padding-bottom:40px}
.ctas .ctas-wrapper .newsletter-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;background:rgba(255,255,255,0.9);-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:51px 20px 44px 20px;position:relative}
@media(min-width:767px){.ctas .ctas-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
}
.for-sale-listing .listing-content-intro{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 33%;flex:0 0 33%}
.for-sale-listing .listing-content-intro .content .description{padding-bottom:22px}
.for-sale-listing .listing-content-intro .content .button-wrapper a:not(:last-of-type){margin-bottom:20px}
.for-sale-listing .properties-wrapper{display:block}
.for-sale-listing .properties-wrapper .slick-arrow{width:58px;height:58px;background:#fff;border-radius:50%}
.for-sale-listing .properties-wrapper .slick-arrow::before{opacity:1}
.for-sale-listing .properties-wrapper .slick-arrow:hover{background:#fdaf30}
.for-sale-listing .properties-wrapper .slick-prev{right:unset;left:-180px;bottom:0;top:unset}
.for-sale-listing .properties-wrapper .slick-next{right:unset;left:-107px;bottom:0;top:unset}
.for-sale-listing .properties-wrapper .slick-disabled{background:#ededed}
.for-sale-listing .properties-wrapper .property{position:relative;min-height:800px;width:350px;margin-right:10px;position:relative}
.for-sale-listing .properties-wrapper .property .button-hover{display:none}
.for-sale-listing .properties-wrapper .property:after{opacity:0;-webkit-transition:opacity 2s ease;transition:opacity 2s ease}
.for-sale-listing .properties-wrapper .property:hover:after{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/bg-logo-overlay.png);width:505px;height:575px;bottom:0;right:0}
.for-sale-listing .properties-wrapper .property:hover:before{position:absolute;content:"";background-color:rgba(0,0,0,0.7);width:100%;height:100%;bottom:0;right:0}
.for-sale-listing .properties-wrapper .property:hover .button-hover{display:block;position:absolute;margin-left:auto;margin-right:auto;left:0;right:0;text-align:center;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);z-index:999}
.for-sale-listing .properties-wrapper .property:hover .button-hover a{background:transparent;border:1px solid #fdaf30;color:#fdaf30}
.for-sale-listing .properties-wrapper .property:hover .button-hover a .btn-icon path{stroke:#fdaf30}
.for-sale-listing .properties-wrapper .property:hover .property-content{display:none}
.for-sale-listing .properties-wrapper .property .property-content{position:absolute;bottom:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;padding-left:22px;padding-right:26px;padding-bottom:26px}
.for-sale-listing .properties-wrapper .property .property-content .property-data{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}
.for-sale-listing .properties-wrapper .property .property-content .property-data .property-other-data .card-description-1{padding-bottom:11px}
@media(min-width:767px){.for-sale-listing .property-container{margin-left:33%}
.for-sale-listing .listing-content-intro{position:absolute;left:0;width:33%}
.for-sale-listing .listing-content-intro .content{padding-top:90px;padding-left:74px;padding-right:88px}
.for-sale-listing .properties-wrapper .property{width:540px}
}@media(min-width:992px){.for-sale-listing .listing-content-intro .content .content-header{margin-bottom:30px}
.for-sale-listing .listing-content-intro .content .description{padding-bottom:45px}
}@media(min-width:1024px){.for-sale-listing .properties-wrapper .property{width:640px}
}@media only screen and (max-width:1500px) and (min-width:767px){.for-sale-listing .listing-content-intro .content{padding-left:30px;padding-right:30px}
.for-sale-listing .listing-content-intro .content h2{font-size:50px}
}@media only screen and (max-width:1750px) and (min-width:1100px){.for-sale-listing .listing-content-intro .content h2{font-size:100px}
}@media(max-width:992px){.for-sale-listing .properties-wrapper .property{margin-right:0}
}@media(max-width:767px){.for-sale-listing{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-right:20px;padding-left:20px;padding-top:54px;padding-bottom:129px}
.for-sale-listing .listing-content-intro{padding-bottom:33px}
.for-sale-listing .properties-wrapper .slick-prev{left:.6%;bottom:-24%;top:unset}
.for-sale-listing .properties-wrapper .slick-next{left:1.2%;bottom:-24%;top:unset}
.for-sale-listing .properties-wrapper .property{margin-left:20px;margin-right:20px;min-height:445px}
.for-sale-listing .properties-wrapper .property .property-content .property-data{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.for-sale-listing .properties-wrapper .property .property-content .property-data .property-neighboour{margin-top:7px}
}
.testimonial{padding-bottom:44px;padding-top:53px}
.testimonial .testimonial-content-intro{margin-bottom:82px}
.testimonial .testimonial-content-intro .content-preheader{text-align:center;margin-bottom:10px}
.testimonial .testimonial-content-intro .description{max-width:500px;margin-right:auto;margin-left:auto}
.testimonial .testimonial-content-intro .buttons-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:28px}
.testimonial .testimonial-content-intro .buttons-wrapper .button:not(:last-of-type){margin-bottom:10px}
.testimonial .testimonial-wrapper .testimonials-top-row .quote-container{position:relative;background:#f2f2f2;padding:39px 45px 45px 53px}
.testimonial .testimonial-wrapper .testimonials-top-row .quote-container::after{opacity:1;position:absolute;content:"";background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/logo-js.png");width:160px;height:184px;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}
.testimonial .testimonial-wrapper .testimonials-top-row .quote-container::before{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);width:31px;height:19px;top:20px;left:20px;background-repeat:no-repeat;background-size:contain}
.testimonial .testimonial-wrapper .testimonials-top-row .quote-container .quote{font-family:'Canela Trial Regular';font-style:italic;font-weight:400;font-size:20px;line-height:30px}
.testimonial .testimonial-wrapper .testimonials-top-row .quote-container .additional-info{margin-top:12px;font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:16px;line-height:24px;color:#000}
.testimonial .testimonial-wrapper .testimonials-bottom-row{margin-top:38px}
.testimonial .testimonial-wrapper .testimonials-bottom-row .quote-container{position:relative;background:#f2f2f2;padding:39px 48px 45px 45px}
.testimonial .testimonial-wrapper .testimonials-bottom-row .quote-container::after{opacity:1;position:absolute;content:"";background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/logo-js.png");width:160px;height:184px;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}
.testimonial .testimonial-wrapper .testimonials-bottom-row .quote-container::before{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);width:31px;height:19px;top:20px;left:13px;background-repeat:no-repeat;background-size:contain}
.testimonial .testimonial-wrapper .testimonials-bottom-row .quote-container .quote{text-align:left;font-family:'Canela Trial Regular';font-style:italic;font-weight:400;font-size:20px;line-height:30px;color:#000}
.testimonial .testimonial-wrapper .testimonials-bottom-row .quote-container .additional-info{text-align:left;font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:16px;line-height:24px;color:#000;margin-top:12px}
@media(min-width:750px){.testimonial .testimonial-content-intro .content .content-header{margin-bottom:30px}
}@media(min-width:992px){.testimonial{padding-bottom:90px;padding-top:174px}
.testimonial .testimonial-content-intro .description{max-width:964px}
.testimonial .testimonial-content-intro .buttons-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-top:40px}
.testimonial .testimonial-content-intro .buttons-wrapper .button:not(:last-of-type){margin-right:20px;margin-bottom:0}
.testimonial .testimonial-wrapper .testimonials-top-row{max-height:308px}
.testimonial .testimonial-wrapper .testimonials-top-row .image-container{max-height:308px;-webkit-box-flex:0;-ms-flex:0 0 489px;flex:0 0 489px;margin-right:25px;max-width:489px}
.testimonial .testimonial-wrapper .testimonials-top-row .quote-container{max-height:308px;-webkit-box-flex:0;-ms-flex:0 0 572px;flex:0 0 572px;margin-right:25px;max-width:572px}
.testimonial .testimonial-wrapper .testimonials-bottom-row{max-height:489px}
.testimonial .testimonial-wrapper .testimonials-bottom-row .image-container{max-height:489px;margin-right:25px;max-width:500px}
.testimonial .testimonial-wrapper .testimonials-bottom-row .quote-container{max-height:489px;margin-right:25px;max-width:572px}
}@media(max-width:992px){.testimonial .testimonial-wrapper .couple{margin-right:15px;margin-left:15px}
.testimonial .testimonial-wrapper .couple .image img{width:100%}
.testimonial .testimonial-wrapper .testimonials-top-row .couple{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.testimonial .testimonial-wrapper .testimonials-bottom-row .couple{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}
}@media(max-width:750px){.testimonial .testimonial-content-intro{padding:0 20px;margin-bottom:75px}
.testimonial .testimonial-wrapper{padding:0 20px}
}
.property-tour{padding-top:141px;padding-bottom:141px}
.property-tour .property-tour-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.property-tour .property-tour-wrapper.video-right .property-video{margin-right:0}
.property-tour .property-tour-wrapper.video-right .content{max-width:760px}
.property-tour .property-tour-wrapper:not(:last-child){margin-bottom:90px}
.property-tour .property-tour-wrapper .content{-webkit-box-flex:0;-ms-flex:0 1 calc(45% - 70px);flex:0 1 calc(45% - 70px);position:relative}
.property-tour .property-tour-wrapper .content .preheader{margin-bottom:8px}
.property-tour .property-tour-wrapper .content .repeater-header h4{color:black;text-transform:capitalize}
.property-tour .property-tour-wrapper .content .description{padding-bottom:21px;max-width:545px}
.property-tour .property-tour-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-right:21px}
.property-tour .property-tour-wrapper .content .logos-wrapper{padding-top:31px;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:40px}
.property-tour .property-tour-wrapper .content .logos-wrapper img{max-height:93px;width:auto;margin-bottom:20px}
.property-tour .property-tour-wrapper .content .logos-wrapper img:not(:last-child){margin-right:23px}
.property-tour .property-tour-wrapper .property-video{-webkit-box-flex:0;-ms-flex:0 0 calc(65% - 70px);flex:0 0 calc(65% - 70px);width:100%;max-width:1128px}
.property-tour .property-tour-wrapper .property-video #play_button{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);left:calc(50% - 45px);position:absolute;cursor:pointer;z-index:0}
.property-tour .property-tour-wrapper .property-video #play_button.hidden{display:none}
.property-tour .property-tour-wrapper .property-video #play_button.show{display:block}
.property-tour .property-tour-wrapper .property-video #propertyVideo{max-height:650px;width:100%;max-width:1128px}
.property-tour.is-windows h3 {margin-bottom: 1.5rem}
@media(min-width:767px){.property-tour .property-tour-wrapper .content{padding-right:20px;max-width:547px;margin-right:auto}
}@media(min-width:992px){.property-tour .property-tour-wrapper .content:after{content:"";background:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/js-logo-bg.png");background-size:contain;background-position:right center;background-repeat:no-repeat;position:absolute;width:100%;height:100%;top:0;top:20%;z-index:-2;max-width:427px;right:42px}
}@media(min-width:1100px){.property-tour .property-tour-wrapper.video-left{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.property-tour .property-tour-wrapper.video-right{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.property-tour .property-tour-wrapper .content{margin-left:35px}
.property-tour .property-tour-wrapper .content .logos-wrapper{padding-top:61px;padding-bottom:0}
.property-tour .property-tour-wrapper .property-video{margin-right:35px}
}@media(min-width:1290px){.property-tour .property-tour-wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.property-tour .property-tour-wrapper:not(:last-child){margin-bottom:50px}
.property-tour .property-tour-wrapper .content .description{padding-bottom:55px}
}@media(min-width:1400px){.property-tour .property-tour-wrapper .content:after{top:35% }
}@media(min-width:1500px){.property-tour .property-tour-wrapper .content{margin-left:70px}
.property-tour .property-tour-wrapper .property-video{margin-right:70px}
}@media(min-width:1700px){.property-tour .property-tour-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.property-tour .property-tour-wrapper .content .description{max-width:800px}
}@media(max-width:1290px){.property-tour .property-tour-wrapper .content{max-width:960px}
.property-tour .property-tour-wrapper .property-video{margin-bottom:27px}
}@media(max-width:1100px){.property-tour{padding-top:49px;padding-bottom:57px}
.property-tour .property-tour-wrapper .content{padding-right:20px;padding-left:20px}
.property-tour .property-tour-wrapper .property-video{margin-top:30px}
}@media(max-width:767px){.property-tour .property-tour-wrapper .content .buttons-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.property-tour .property-tour-wrapper .content .buttons-wrapper a{margin-right:0 !important;margin-bottom:20px}
.property-tour .property-tour-wrapper .content .logos-wrapper img{max-height:67px}
.property-tour .property-tour-wrapper .content .logos-wrapper img:not(:last-child){margin-right:15px}
}@media(max-width:500px){.property-tour .property-tour-wrapper .content .logos-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.property-tour .property-tour-wrapper .property-video #play_button{max-width:40px;left:calc(50% - 20px)}
}
.featured-press-release{padding-top:100px;padding-bottom:100px}
.featured-press-release .featured-press-release-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.featured-press-release .featured-press-release-wrapper:not(:last-child){margin-bottom:90px}
.featured-press-release .featured-press-release-wrapper .content{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 34px);flex:0 0 calc(50% - 34px);padding-right:20px}
.featured-press-release .featured-press-release-wrapper .content .content-gold-divider{padding-left:28px;border-left:1px solid rgba(253,175,48,0.9);padding-bottom:40px}
.featured-press-release .featured-press-release-wrapper .content .content-gold-divider .preheader{margin-bottom:12px}
.featured-press-release .featured-press-release-wrapper .content .content-gold-divider .content-header h4{color:#000}
.featured-press-release .featured-press-release-wrapper .content .featured-logo{margin-bottom:22px;padding-left:28px}
.featured-press-release .featured-press-release-wrapper .content .buttons-wrapper{padding-left:28px}
.featured-press-release .featured-press-release-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-right:21px}
.featured-press-release .featured-press-release-wrapper .press-image{-webkit-box-flex:0;-ms-flex:0 0 calc(50% - 34px);flex:0 0 calc(50% - 34px)}
@media(min-width:1100px){.featured-press-release .featured-press-release-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.featured-press-release .featured-press-release-wrapper .content .content-gold-divider{max-width:582px}
.featured-press-release .featured-press-release-wrapper .press-image{padding-right:28px}
}@media(min-width:1290px){.featured-press-release .featured-press-release-wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.featured-press-release .featured-press-release-wrapper:not(:last-child){margin-bottom:50px}
}@media(min-width:1700px){.featured-press-release .featured-press-release-wrapper{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.featured-press-release .featured-press-release-wrapper .content .content-gold-divider .description{max-width:800px}
}@media(max-width:1290px){.featured-press-release .featured-press-release-wrapper .content{max-width:960px}
}@media(max-width:1100px){.featured-press-release{padding-left:20px;padding-right:20px;padding-top:40px;padding-bottom:40px}
.featured-press-release .featured-press-release-wrapper .press-image{margin-bottom:38px}
}
.stats .stats-wrapper{max-width:1806px;margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px;padding-top:64px;padding-bottom:76px}
.stats .stats-wrapper .stats-inner{grid-template-columns:repeat(1,minmax(0,1fr));margin-top:62px}
.stats .stats-wrapper .stats-inner .single-stat .content-icon{display:-webkit-box;display:-ms-flexbox;display:flex}
.stats .stats-wrapper .stats-inner .single-stat .content-icon img{width:50px;height:50px;margin-right:27px}
.stats .stats-wrapper .stats-inner .single-stat .content-icon .content{font-family:'Canela Trial Regular';font-style:normal;font-weight:400;font-size:128px;line-height:98px;color:rgba(0,0,0,0.9);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}
.stats .stats-wrapper .stats-inner .single-stat .content-icon .content h2{margin-bottom:0}
.stats .stats-wrapper .stats-inner .single-stat .description{font-family:'Canela Trial Regular';font-size:24px;line-height:30px;padding-top:7px}
.stats.is-windows .stats-wrapper .stats-inner .single-stat .content-icon .content h3 {
  line-height: 0.7;
  padding-bottom: 15px;
}
@media(min-width:900px){.stats .stats-wrapper .stats-inner{grid-template-columns:repeat(2,minmax(0,1fr))}
}@media(min-width:992px){.stats .stats-wrapper{padding-left:75px;padding-right:75px;padding-top:43px;padding-bottom:115px}
}@media(min-width:1680px){.stats .stats-wrapper .stats-inner{grid-template-columns:repeat(4,minmax(0,1fr))}
}@media(max-width:992px){.stats .stats-wrapper .stats-inner .single-stat .content-icon .content h2{font-size:96px;line-height:98px}
}
.proven-success .proven-success-wrapper{padding-top:110px;padding-bottom:83px;width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.proven-success .proven-success-wrapper .proven-success-intro{margin-bottom:67px}
.proven-success .proven-success-wrapper .proven-success-intro .content .description{max-width:430px}
.proven-success .proven-success-wrapper .proven-success-intro .content .buttons-wrapper{margin-top:40px;flex-wrap: wrap;row-gap: 21px;}
.proven-success .proven-success-wrapper .proven-success-intro .content .buttons-wrapper a:not(:last-of-type){margin-right:21px}
.proven-success .proven-success-wrapper .proven-success-intro .content .content-preheader{margin-bottom:20px}
.proven-success .proven-success-wrapper .properties{-webkit-box-flex:0;-ms-flex:0 0 70%;flex:0 0 70%}
.proven-success .proven-success-wrapper .properties .properties-wrapper{width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property{position:relative;margin-right:0}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-url{position:absolute;width:100%;height:100%;z-index:9}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:after{content:unset}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:hover .property-content{display:-webkit-box;display:-ms-flexbox;display:flex}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:hover:before{content:unset}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-status{position:absolute;background:rgba(253,175,48,0.9);-webkit-backdrop-filter:blur(2.85714px);backdrop-filter:blur(2.85714px);padding:16px 30px;font-family:'Tilda Sans';font-style:normal;font-weight:500;font-size:24px;line-height:26px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;text-transform:uppercase;color:#000;right:0;top:0}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-data{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
@media(min-width:767px){.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-data{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-data .property-neighboour{margin-top:0;padding-top:10px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-data .property-other-data{padding-top:10px;padding-right:20px}
}@media(min-width:992px){.proven-success .proven-success-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.proven-success .proven-success-wrapper .proven-success-intro{margin-bottom:0;padding-left:74px;-webkit-box-flex:0;-ms-flex:0 0 30%;flex:0 0 30%}
.proven-success .proven-success-wrapper .proven-success-intro .content .content-header{margin-bottom:30px}
.proven-success .proven-success-wrapper .properties .properties-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-image{display:none}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:nth-child(1){height:400px;-webkit-box-flex:0;-ms-flex:0 1 55%;flex:0 1 calc(55% - 40px);margin-left:70px;margin-right:10px;margin-bottom:10px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:nth-child(2){width:100%;-webkit-box-flex:0;-ms-flex:0 1 calc(45% - 75px);flex:0 1 calc(45% - 40px);height:400px;margin-bottom:10px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:nth-child(3){width:100%;-webkit-box-flex:0;-ms-flex:0 1 45%;height:400px;-ms-flex:0 1 calc(45% - 40px);flex:0 1 calc(45% - 40px);margin-right:10px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:nth-child(4){width:100%;-webkit-box-flex:0;height:400px;-ms-flex:0 1 calc(55% - 40px);flex:0 1 calc(55% - 40px);margin-right:70px}
}@media only screen and (max-width:1690px) and (min-width:992px){.proven-success .proven-success-wrapper .proven-success-intro .content .content-header h2{font-size:65px}
.proven-success .proven-success-wrapper .proven-success-intro .content .content-preheader h2{font-size:17px}
}@media(max-width:992px){.proven-success .proven-success-wrapper{padding-left:20px;padding-right:20px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property{background-image:unset !important;margin-left:0}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-content{position:relative;margin-top:20px;padding-left:13px;padding-right:13px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-content .property-image{position:relative}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-content .property-image:after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:-webkit-gradient(linear,left top,left bottom,color-stop(41.86%,rgba(0,0,0,0)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(0,0,0,0) 41.86%,rgba(0,0,0,0.7) 100%);background:linear-gradient(180deg,rgba(0,0,0,0) 41.86%,rgba(0,0,0,0.7) 100%);z-index:1}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property .property-content .property-data .property-neighboour{margin-top:15px}
.proven-success .proven-success-wrapper .properties .properties-wrapper .property:not(:last-of-type){margin-bottom:55px}
}
.property{position:relative;margin-right:10px;position:relative}
.property .button-hover{display:none}
.property:after{content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/bg-logo-overlay.png);max-width:505px;max-height:575px;bottom:0;right:0;background-size:contain;width:100%;background-repeat:no-repeat;height:100%;position:absolute;opacity:0;visibility:hidden;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}
.property:before{position:absolute;content:"";background-color:rgba(0,0,0,0.7);visibility:hidden;width:100%;bottom:0;right:0;-webkit-transition:visibility .2s ease-in;transition:visibility .2s ease-in}
.property:hover:after{opacity:1;visibility:visible}
.property:hover:before{visibility:visible}
.property:hover .button-hover{display:block;position:absolute;margin-left:auto;margin-right:auto;left:0;right:0;text-align:center;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);z-index:999}
.property:hover .button-hover a{background:transparent;border:1px solid #fdaf30;color:#fdaf30}
.property:hover .button-hover a .btn-icon path{stroke:#fdaf30}
.property:hover .property-content{display:none}
.property .property-content{position:absolute;bottom:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;padding-left:22px;padding-right:26px;padding-bottom:26px}
.property .property-content .property-data{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%}
.property .property-content .property-data .property-other-data .card-description-1{padding-bottom:11px}
@media(max-width:767px){.property{margin-left:20px;margin-right:20px;min-height:445px}
}
.chicago-neighborhoods .chicago-neighborhoods-wrapper{max-width:1718px;margin-left:auto;margin-right:auto;padding-right:20px;padding-left:20px;padding-top:100px;padding-bottom:70px}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .content{margin-bottom:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .content .preheader{margin-bottom:10px}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .content .description{margin-bottom:40px;max-width:700px}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-right:21px}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood{padding:0 15px;position:relative;max-width:546px;background-size:cover;height:325px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:21px;-webkit-box-shadow:unset;box-shadow:unset;-webkit-transition:-webkit-box-shadow 1s ease;transition:-webkit-box-shadow 1s ease;transition:box-shadow 1s ease;transition:box-shadow 1s ease,-webkit-box-shadow 1s ease}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood .card-url{position:absolute;width:100%;height:100%}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood:hover{border:2px solid #fdaf30;-webkit-box-shadow:inset 0 0 0 1000px rgba(0,0,0,0.7);box-shadow:inset 0 0 0 1000px rgba(0,0,0,0.7)}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood:hover .neighborhood-name{color:#fdaf30}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood .neighborhood-name{color:white}
@media(min-width:992px){.chicago-neighborhoods .chicago-neighborhoods-wrapper .content .content-header h2{margin-bottom:30px}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .content .description{max-width:936px}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood{margin-bottom:0}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood:not(:last-of-type){margin-right:20px}
}@media(max-width:992px){.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container{justify-items:center}
.chicago-neighborhoods .chicago-neighborhoods-wrapper .chicago-neighborhoods-container .individual-neighborhood{width:100%}
}
.team-member-container{padding:85px 20px 50px;background:white;width:90vw;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:90vh;overflow-y:auto;padding-bottom:50px;-ms-overflow-style:none;scrollbar-width:none}
.team-member-container::-webkit-scrollbar{display:none}
.team-member-container .team-member-info .team-member-data{padding-top:35px}
.team-member-container .team-member-info .team-member-data .team-member-name{margin-bottom:11px}
.team-member-container .team-member-info .team-member-data .team-member-socials{padding-top:13px;padding-bottom:35px}
.team-member-container .team-member-info .team-member-data .team-member-socials a{width:31px;height:31px;background:black;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.team-member-container .team-member-info .team-member-data .team-member-socials a:not(:last-of-type){margin-right:12px}
.prev-member-button,.next-member-button{display:-webkit-box;display:-ms-flexbox;display:flex}
.team-members{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px;max-width:1330px;padding-top:54px;padding-bottom:54px}
.team-members .content-intro{max-width:860px;margin-left:auto;margin-right:auto;margin-bottom:77px}
.team-members .content-intro .preheader{margin-bottom:18px}
.team-members .hs-image__grid__container .hs-image__grid__list{gap:45px;padding:0}
.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item{-ms-flex-preferred-size:100%;flex-basis:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item .hs-image__grid__list__item__button .team-member-front-view{background-color:#f2f2f2;padding:25px 25px 167px 25px;position:relative}
.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item .hs-image__grid__list__item__button .team-member-front-view:hover{background-color:#f7f7f7;-webkit-transition:background-color 2s linear;transition:background-color 2s linear}
.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item .hs-image__grid__list__item__button .team-member-front-view .team-member-name{margin-top:30px;margin-bottom:10px}
.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item .hs-image__grid__list__item__button .team-member-front-view .team-member-contact-info{background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.75)),to(#000));background:-webkit-linear-gradient(top,rgba(0,0,0,0.75) 0,#000 100%);background:linear-gradient(180deg,rgba(0,0,0,0.75) 0,#000 100%);padding:10px 22px;margin-top:18px;position:absolute;left:0;width:calc(100% - 25px)}
.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item .hs-image__grid__list__item__button .team-member-front-view .team-member-contact-info .email{word-wrap:break-word;position:relative}
@media(min-width:800px){.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item{-ms-flex-preferred-size:calc(50% - 30px);flex-basis:calc(50% - 30px)}
}@media(min-width:992px){.team-member-container{padding:102px 90px 57px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:80vw}
.team-member-container .team-member-info{-ms-flex-preferred-size:calc(42% - 35px);flex-basis:calc(42% - 35px);margin-right:35px}
.team-member-container .team-member-info .team-member-data{padding-top:54px}
.team-member-container .team-member-info .team-member-data .team-member-socials{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}
.team-member-container .team-member-info .team-member-data .team-member-socials a{width:31px;height:31px;background:black;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.team-member-container .team-member-info .team-member-data .team-member-socials a:not(:last-of-type){margin-right:12px}
.team-member-container .team-member-description{-ms-flex-preferred-size:calc(58% - 35px);flex-basis:calc(58% - 35px);margin-left:35px;overflow:auto;-ms-overflow-style:none;scrollbar-width:none}
.team-member-container .team-member-description::-webkit-scrollbar{display:none}
.team-members{padding-top:119px}
}@media(min-width:1050px){.team-members .hs-image__grid__container .hs-image__grid__list .hs-image__grid__list__item{-ms-flex-preferred-size:calc(33.333333333333336% - 30px);flex-basis:calc(33.333333333333336% - 30px)}
}@media(min-width:1600px){.team-member-container{width:62vw}
}@media(max-width:992px){.prev-member-button,.next-member-button{display:none !important}
}
.our-process{padding:35px 0 55px}
.our-process .tab-container{margin-top:28px}
.our-process .tab-container .tabs li{-webkit-box-flex:0;-ms-flex:0 0 33%;flex:0 0 33%}
.our-process .tab-container .tabs li.active a{border-bottom:7px solid #fdaf30;color:#000}
.our-process .tab-container .tabs li a{font-family:'Canela Trial Regular';font-style:normal;font-weight:400;font-size:64px;line-height:60px;text-align:center;letter-spacing:.03em;font-size:36px;line-height:48px;color:rgba(0,0,0,0.5)}
.our-process .tab-container .tab-content .content-container-wrapper{background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/background-img-process.png");background-repeat:repeat;background-size:auto;background-position:center}
.our-process .tab-container .tab-content .content-container-wrapper .extra-information{position:absolute;bottom:-99px;width:100%}
.our-process .tab-container .tab-content .content-container-wrapper .extra-information .extra-information-inner{max-width:100%;margin-left:auto;background:white;padding:25px 20px}
.our-process .tab-container .tab-content .content-container-wrapper .content-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:46px 20px 80px}
/* .our-process .tab-container .tab-content .content-container-wrapper .content-container.extra-information-true{padding:46px 20px 200px} */
.our-process .tab-container .tab-content .content-container-wrapper .content-container .content{padding-top:45px}
@media(min-width:1024px){.our-process .tab-container .tab-content .content-container-wrapper .content-container .content-inner{max-width:519px}
}.our-process .tab-container .tab-content .content-container-wrapper .content-container .content-description ul{padding-left:18px}
.our-process .tab-container .tab-content .marketing-information{background:#f2f2f2;padding:63px 80px 31px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:100px 20px 31px}
.our-process .tab-container .tab-content .marketing-information .marketing-information-lists div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}
.our-process .tab-container .tab-content .marketing-information .marketing-information-lists div ul{margin:0}
.our-process .tab-container .lets-get-started{background:rgba(253,175,48,0.8);background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/let%E2%80%99s%20get%20started%20%281%29.png");padding-top:100px;padding-bottom:100px;background-repeat:no-repeat;background-size:auto;background-position:center}
.our-process .tab-container .lets-get-started-wrapper{max-width:1004px;padding-right:20px;padding-left:20px;margin-left:auto;margin-right:auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
.our-process .tab-container .lets-get-started-wrapper .lets-get-started-text{text-align:center;text-transform:inherit;padding-bottom:31px}
.our-process .tab-container .lets-get-started-wrapper a{padding:15px 22px}
@media screen{.our-process .tab-container .tab-content .content-container-wrapper .content-container .content-image{-webkit-box-flex:0;-ms-flex:0 1 66%;flex:0 1 66%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-item-align:center;align-self:center}
}@media(min-width:992px){.our-process{padding:95px 73px 53px 75px}
.our-process .tab-container{margin-top:55px}
.our-process .tab-container .tabs li a{font-size:48px;line-height:60px}
.our-process .tab-container .tab-content .content-container-wrapper{background-repeat:no-repeat;background-size:cover}
.our-process .tab-container .tab-content .content-container-wrapper .extra-information .extra-information-inner{max-width:66%;padding:25px 46px}
.our-process .tab-container .tab-content .content-container-wrapper .content-container{row-gap:50px;-webkit-column-gap:10px;-moz-column-gap:10px;column-gap:10px}
.our-process .tab-container .tab-content .content-container-wrapper .content-container{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:74px 80px 60px}
.our-process .tab-container .tab-content .content-container-wrapper .content-container.extra-information-true{padding:74px 80px 150px}
.our-process .tab-container .tab-content .content-container-wrapper .content-container .content{-webkit-box-flex:0;-ms-flex:0 0 calc(33% - 10px);flex:0 0 calc(33% - 10px);padding-top:0}
.our-process .tab-container .tab-content .marketing-information{padding:63px 80px 31px}
.our-process .tab-container .lets-get-started{background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/let%E2%80%99s%20get%20started.png");background-size:contain;padding-top:60px;padding-bottom:70px}
}@media screen and (min-width:1024px){.our-process .tab-container .tab-content .content-container-wrapper .content-container .content-image{padding-right:95px;padding-bottom:47px}
}@media(min-width:1500px){.our-process .tab-container .lets-get-started{background-size:auto}
}@media(max-width:1024px){.our-process .our-process-title{padding-left:20px}
.our-process .tab-container .tab-content .marketing-information .marketing-information-lists{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
}@media(max-width:500px){.our-process .our-process-title{padding-left:20px;padding-right:81px;display:block}
}
.tabs-bol .buttons-wrapper{
  justify-content: center;
  margin-top: 67px;
}


@media (min-width: 500px){
  .tabs-bol {
    padding: 20px 23px;
  }
}

@media (min-width: 768px){
  .tabs-bol {
    padding: 40px 46px;
  }
}

@media (min-width: 992px){
  .tabs-bol {
    padding: 50px 60px;
  }
}

.tabs-bol-quote {
  font-style: italic;
  padding-bottom: 15px;
  font-family: 'Canela Trial Regular';
}

.tabs-bol-quote-name{
  margin-bottom: 0;
}

.tabs-bol-content-image{
  min-width: 502px;
}

.tabs-bol-content-inner{
  padding: 60px 54px 45px 60px;
  position: relative;
}

.tabs-bol-content-inner:before{
  content: "";
  background-image: url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);
  width: 31px;
  height: 19px;
  position: absolute;
  top: 43px;
  left: 26px;
  font-size: 40px;
}

.tabs-bol-content-container{
    background: #FDF3E8;
}

.tabs-bol-tabs{
  width: max-content;
}

.tabs-bol-tabs li{
  margin-right: 87px;
}

.tab-container {
  position: relative;
  margin-top: 29px;
}

@media(max-width: 767px){
  .tab-container {
    margin-top: 15px;
  }
}

.tabs-bol-content-inner::after {
    opacity: 1;
    position: absolute;
    content: "";
    background-image: url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/logo-js.png);
    width: 160px;
    height: 184px;
    bottom: 22px;
    right: 40px;
    background-repeat: no-repeat;
    background-size: contain;
}


ul.tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  transition: left 0.2s ease-in-out;
  position: relative;
  left: 0;
}


.tabs-bol ul.tabs li a {
  display: block;
  padding: 5px 0 14px;
  color: #333;
  opacity: 0.5;
  cursor: pointer;
}

ul.tabs li a:hover{
  opacity: 1;
}

ul.tabs li.active a {
  opacity: 1;
}

.tabs-bol .tab-content {
  display: none;
  top: 30px;
  left: 0;
  right: 0;
  max-width: 1170px;
  margin: 0 auto;
}

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

.nav-buttons {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.tabs-bol .nav-buttons {
    width: calc(100% + 58px);
    left: -29px;
    z-index: 20;
}
@media(max-width: 992px){
  .nav-buttons.extra-information-true {
    bottom: 100px;
    justify-content: center;
    top: unset;
  }
  .nav-buttons {
    bottom: 0px;
    justify-content: center;
    top: unset;
  }
  .tabs-bol-content-image {
    min-width: 100%;
    text-align: center;
  }
  .tabs-bol-content-container {
  flex-direction: column;
  }
  .tabs-bol-quote-extra {
    margin-bottom: 108px !important;
  }
  .tabs-bol {
    padding-top: 35px;  
  }
}

.nav-buttons button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 2px 2px 16px 2px rgb(0 0 0 / 20%);
}

.nav-buttons button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tabs-bol .nav-buttons button.disabled {
  background: #EDEDED;
  cursor: not-allowed;
}


@media(max-width: 992px){
  .prev-tab-btn{
      margin-right: 10px;
  }
  .next-tab-btn{
    margin-left: 10px;
  }
}

@media(max-width: 500px){
  ul.tabs {
    width: 100%;
  }
  .tabs-bol-tabs li {
    width: 100%;
    margin: 0 auto;
  }
  .tabs-bol-tabs li:not(.active)  {
    display: none;
  }
  .tabs-bol ul.tabs li a {
    text-align: center;
    padding-top: 25px;
  }
  
  .tabs-bol-content-inner::after {
    bottom: 150px;
  }
  
   .tabs-bol .tabs-bol-title {
    padding-left: 20px;
  }
 
  
}
@media (max-width: 768px){
 .tabs-bol .buttons-wrapper {
    padding-top: 45px;
    padding-bottom: 65px;
   margin-top: 0;
}
}

.tabs-bol-quote-name, 
.tabs-bol-quote-extra, 
.tabs-bol-quote.hero-description{
  color: #000;
}

.tabs-bol-quote.hero-description{
      font-weight: 400;
  line-height: 36px;
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-arrow.active{
  top: 28px;
}

@media (max-width: 47.5em){
  .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-arrow.active{
  top: 18px;
  }
}

@media (min-width: 992px){
  .tabs-bol-tabs{
    margin-bottom: 43px !important;
  }
  .tabs-bol-content-image{
    height: 100%;
  }
  .tabs-bol-content-image img{
    height: 100%;
  }
}

@media (max-width: 500px){
  .tabs-bol-content-container{
    margin-left: 20px;
    margin-right: 20px;
    
  }
 

}
.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:100px}
.pagination .pagination-btn{border:0;text-align:center;text-decoration:none;display:inline-block;font-family:'Canela Trial';font-style:normal;font-weight:500;font-size:24px;line-height:140.62%;color:#000;background:transparent;cursor:pointer}
.pagination .pagination-btn.disabled{display:none}
.pagination .pages .page{background:transparent;margin-right:15px;margin-left:15px;font-family:'Canela Trial';font-style:normal;font-weight:500;font-size:24px;line-height:140.62%;color:#000; cursor: pointer;}
.pagination .pages .page.active{background:#f2f2f2;width:54px;height:54px;border-radius:50%}
.pagination .prev{margin-right:10px}
.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 60px;
  padding: 60px 20px 60px 20px;
  justify-items: center;
}

@media(max-width: 992px){
  .grid-container .card{
    background: unset !important;
  }
  .grid-container .card-inner h6{
    color: #000000;
    margin-top: 22px;
    margin-bottom: 5px;
  }
  .grid-container .card-inner p{
    color: #000000;
  }
}

.grid-container .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  text-align: center;
  max-width: 799px;
  width: 100%;
  height: auto;
  
}
.grid-container .card:hover {
  opacity: 1;
}
@media(min-width: 992px){
  .grid-container .card {
    padding: 0 35px 38px 35px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}




@media screen and (min-width: 992px) {
 .grid-container .card:nth-child(odd) {
  height: 850px;
}

.grid-container .card:nth-child(even) {
  height: 425px;
}
  .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 131px 20px 85px 20px;
    max-width: 1699px;
    margin: auto;
  }

  .grid-container .card {
/*     max-width: calc(50% - 10px); */
    /* Subtract grid gap from card width */
    height: auto;
  }

 .grid-container .card:nth-child(odd) {
    grid-row: span 2;
  }

  .grid-container .card:nth-child(even) {
    grid-row: span 1;
  }
}

@media screen and (min-width: 992px) {
  .grid-container {
    max-width: 1699px;
  }

 .grid-container .card {
    max-width: 799px;
  }
}
 .grid-container .card-inner{
  height: 100%;
 }

@media(min-width: 992px){
  .grid-container .card-inner h6{
    color: #ffffff !important;
  }
}

.grid-container .card .property-status{
  position: absolute;
    background: rgba(253,175,48,0.9);
    -webkit-backdrop-filter: blur(2.85714px);
    backdrop-filter: blur(2.85714px);
    padding: 16px 30px;
    font-family: 'Tilda Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    right: 0;
    top: 0;
}

.press-release .card p:last-child{
  font-weight: 400;
}
.testimonial-with-video{padding-top:115px;padding-bottom:115px}
.testimonial-with-video .testimonial-with-video-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.testimonial-with-video .testimonial-with-video-wrapper .property-video{margin-right:0}
.testimonial-with-video .testimonial-with-video-wrapper:not(:last-child){margin-bottom:90px}
.testimonial-with-video .testimonial-with-video-wrapper .content{-webkit-box-flex:0;-ms-flex:0 0 calc(50%);flex:0 0 calc(50%); position: relative}
.testimonial-with-video .testimonial-with-video-wrapper .content .preheader{margin-bottom:8px}
.testimonial-with-video .testimonial-with-video-wrapper .content .repeater-header h4{color:black;text-transform:capitalize}
.testimonial-with-video .testimonial-with-video-wrapper .content .description{padding-bottom:21px; font-family: 'Canela Trial Regular';;font-style: italic;font-weight: 400;font-size: 20px;line-height: 30px;color: #000000;}
@media(min-width: 1100px){.testimonial-with-video .testimonial-with-video-wrapper .content .description{max-width:545px;}
}
.testimonial-with-video .testimonial-with-video-wrapper .content .description p{font-family: 'Canela Trial Regular';font-style: italic;font-weight: 400;font-size: 20px;line-height: 30px;color: #000000;}
.testimonial-with-video .testimonial-with-video-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-right:21px}
.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper{padding-top:31px;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:40px}
.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper img{max-height:93px;width:auto;margin-bottom:20px}
.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper img:not(:last-child){margin-right:23px}
.testimonial-with-video .testimonial-with-video-wrapper .property-video{-webkit-box-flex:0;-ms-flex:0 0 calc(50%);flex:0 0 calc(50%);width:100%;max-width:1128px}
.testimonial-with-video .testimonial-with-video-wrapper .property-video #play_button{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);left:calc(50% - 90px);position:absolute;cursor:pointer;z-index:0}
.testimonial-with-video .testimonial-with-video-wrapper .property-video #play_button.hidden{display:none}
.testimonial-with-video .testimonial-with-video-wrapper .property-video #play_button.show{display:block}
.testimonial-with-video .testimonial-with-video-wrapper .property-video #propertyVideo{max-height:650px;width:100%;max-width:1128px}
@media(min-width:1100px){.testimonial-with-video .testimonial-with-video-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.testimonial-with-video .testimonial-with-video-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper{padding-top:61px;padding-bottom:0}
.testimonial-with-video .testimonial-with-video-wrapper .property-video{margin-right:35px}
}@media(min-width:1290px){.testimonial-with-video .testimonial-with-video-wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.testimonial-with-video .testimonial-with-video-wrapper:not(:last-child){margin-bottom:50px}
.testimonial-with-video .testimonial-with-video-wrapper .content .description{padding-bottom:20px}
}@media(min-width:1100px){.testimonial-with-video .testimonial-with-video-wrapper .content{margin-left:131px}
.testimonial-with-video .testimonial-with-video-wrapper .property-video{margin-right:70px}
}@media(min-width:1700px){.testimonial-with-video .testimonial-with-video-wrapper{}
.testimonial-with-video .testimonial-with-video-wrapper .content .description{max-width:800px}
}@media(max-width:1290px){.testimonial-with-video .testimonial-with-video-wrapper .content{max-width:960px}
.testimonial-with-video .testimonial-with-video-wrapper .property-video{margin-bottom:27px}
}@media(max-width:1100px){.testimonial-with-video{padding-top:49px;padding-bottom:13px}
.testimonial-with-video .testimonial-with-video-wrapper .content{padding-right:20px;padding-left:20px }
  .testimonial-with-video .testimonial-with-video-wrapper .content{margin-bottom: 35px;}
}@media(max-width:767px){.testimonial-with-video .testimonial-with-video-wrapper .content .buttons-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.testimonial-with-video .testimonial-with-video-wrapper .content .buttons-wrapper a{margin-right:0 !important;margin-bottom:20px}
.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper img{max-height:67px}
.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper img:not(:last-child){margin-right:15px}
}@media(max-width:500px){.testimonial-with-video .testimonial-with-video-wrapper .content .logos-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.testimonial-with-video .testimonial-with-video-wrapper .property-video #play_button{max-width:40px;left:calc(50% - 20px)}
}.testimonial-with-video .testimonial-with-video-wrapper .content:before{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);    width: 50px;
    height: 31px;
    top: -29px;
    left: -50px;background-repeat:no-repeat;background-size:contain;
}
@media(max-width:1100px){
  .testimonial-with-video .testimonial-with-video-wrapper .content:before{
    content: unset;
  }
  .testimonial-with-video .testimonial-with-video-wrapper .content .description{
    position: relative;
    padding-top: 32px;
  }
  .testimonial-with-video .testimonial-with-video-wrapper .content .description:before{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);    width: 31px;
    height: 19px;
    top: -4px;
    left: 0;background-repeat:no-repeat;background-size:contain;
}
}

.testimonial-with-video .testimonial-with-video-wrapper .content .quote-name p,
.testimonial-with-video .testimonial-with-video-wrapper .content .quote-related p{
  color: #000000;
}

@media (min-width: 1100px){
.testimonial-with-video .testimonial-with-video-wrapper .content {
    margin-left: 131px;
    flex: 0 0 calc(50% - 131px );
    padding-right: 30px;
  }
}
.simple-vertical-tabs-bol {
    position: relative;
    overflow: hidden;
  z-index: 2;
  padding: 80px 0 86px 73px;
}

.simple-vertical-tabs-bol .w-video-wrapper.w-css-reset {
    background-color: unset !important;
}
.simple-vertical-tabs-bol .corner-image-holder {
    position: absolute;
    bottom: 0;
}
.simple-vertical-tabs-bol .corner-image-holder.right {
    right: -214px;
}
.simple-vertical-tabs-bol .corner-image-holder.left {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -214px;
}
.simple-vertical-tabs-bol .corner-image-holder img {
    z-index: 9;
    max-width: 450px;
    width: 400px;
}
.simple-vertical-tabs-bol .corner-image-holder .inner-container {
    display: block;
}
.simple-vertical-tabs-bol .container-inner {
    position: relative;
}
.simple-vertical-tabs-bol .container-inner .tabs-container {
    justify-content: space-between;
  margin-top: 39px;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 350px;
    flex: 0 0 50%;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item {
    border: 0;
    border-bottom: 1px solid #B9B9B9;
  background: #fff;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item.active {
  border-color: #FDAF30;
}

@media (min-width: 768px) {
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .active-indicator {
        left: -52px;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-content-item h1 {
        line-height: 1.63;
   }
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item {
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  padding: 18px 70px 26px 26px;
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-name {
    z-index: 9;
    opacity: 0.5;
    font-weight: 400;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-name {
    opacity: 1;
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item .tab-name{
    text-transform: capitalize;
  font-family: 'Canela Trial Regular';
}


.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 33px;
}
  

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-arrow:not(.active) {
    display: block;
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-arrow:not(.active) {
    display: none;
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-arrow.active {
    display: none;
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-arrow.active {
    display: block;
}


.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-inner-content {
    display: none;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-icon {
    padding: 15px;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-icon img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item:hover {
    cursor: pointer;
}
.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: display 1s;
    transition: display 1s;
    text-align: center;
}
.simple-vertical-tabs-bol .container-inner .tab-content {
    z-index: 9;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 45%;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item {
    display: none;
  position: relative;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item .image img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 0;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item .tab-description {
  opacity: 0;
  z-index: 0;
  height: 0;
  transform: scaleY(0);    
  transform-origin: top;
  transition: transform 0.3s ease;
  font-family: 'Tilda Sans';
  color: #000;
}

.simple-vertical-tabs-bol .container-inner .tab-list-item .tab-description p {
  color: #000;
}


.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-description {
  opacity: 1;
  transform: scaleY(1);    
  height: auto;
  margin-top: 7px;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item .tab-buttons{
 padding-top: 21px;
}

.simple-vertical-tabs-bol .container-inner .tab-content-item .tab-button {
 margin-top: 22px;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item.active {
    display: block;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item-description {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item-description h5 p a {
    position: relative;
    color: #333;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item-description h5 p span {
    position: relative;
    cursor: pointer;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item-description h5 p .learn-more-icon:after {
    content: "";
    width: 15px;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 13px solid #333;
    right: -15px;
    position: absolute;
    top: calc(50% - 7px);
}
.simple-vertical-tabs-bol .container-inner .tab-content-item-description h5 p .open:after {
    right: -20px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.simple-vertical-tabs-bol .container-inner .tab-content-item-description .hidden {
    display: none;
}

.simple-vertical-tabs-bol .container-inner .tab-list-item .tab-inner-content .description p {
    margin-bottom: 0;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description p + p {
    margin-top: 15px;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more {
    padding-right: 5px;
    display: flex;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more.open .see-more {
    display: none;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more.open .see-less {
    display: block;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .see-less {
    display: none;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more.open .learn-more-icon.open .arrow-up {
    display: block;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon .arrow-down {
    display: block;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon .arrow-up, .simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon.open .arrow-down {
    display: none;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .learn-more .learn-more-icon {
    padding-left: 5px;
    padding-top: 2px;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .link-holder {
    padding-bottom: 7px;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-content-item-description {
    display: flex !important;
}
.simple-vertical-tabs-bol .container-inner .tab-list-item.active .tab-inner-content .description .description-inner {
    display: flex;
}

.simple-vertical-tabs-bol .container-inner .tab-content-item .image-holder.image-1.multi {
  margin-right: 38px;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item .image-holder.image-2 {
      position: absolute;
    top: -50px;
    right: 0;
    width: 30%;
}
.simple-vertical-tabs-bol .container-inner .tab-content-item .image-holder.image-3 {
  position: absolute;
    bottom: -50px;
    left: -40px;
    width: 30%;
}

.simple-vertical-tabs-bol .container-inner .tab-content-item .image-holder.image-2 img,
.simple-vertical-tabs-bol .container-inner .tab-content-item .image-holder.image-3 img {
    border: 2px solid #fff;
}


.rotating-item.slick-current.slick-active.slick-center {
    color: #00a3f5;
}
@media (min-width: 47.5em) {
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item .tab-name {
        display: block !important;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item {
        border-bottom: 0.5px solid #ccc;
       
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item .tab-name {
        text-align: left;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-inner-content {
        text-align: left;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-inner-content .description {
        margin-bottom: 10px;
        margin-top: 5px;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-content-item .image img {
        margin: 0 auto 0 0;
   }
}

@media (min-width: 1800px) {
    .simple-vertical-tabs-bol .corner-image-holder.right {
        right: -190px;
   }
    .simple-vertical-tabs-bol .corner-image-holder.left {
        left: -190px;
   }
}
@media (max-width: 61.25em) {
    .simple-vertical-tabs-bol .corner-image-holder {
        display: none;
   }
}
@media (max-width: 47.5em) {
 
    
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item {
        padding: 10px 30px 10px 10px;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-inner-content {
        text-align: left;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-inner-content .link-holder {
        margin-bottom: 20px;
        margin-top: 10px;
   }
    .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list-item.active .tab-inner-content .description {
        padding-bottom: 10px;
   }
}

.simple-vertical-tabs-bol .container-inner .tab-content {
    display: none;
}

.simple-vertical-tabs-bol .tab-list-item.active .tab-content-mobile  {
display: block;
}
.simple-vertical-tabs-bol .tab-list-item .tab-content-mobile  {
display: none;
}
@media (min-width: 767px) {
 .simple-vertical-tabs-bol .tab-content-mobile{
 display: none;
 }
  .simple-vertical-tabs-bol .container-inner .tab-content {
    display: block;
}
 .simple-vertical-tabs-bol .tab-list-item.active .tab-content-mobile {
display: none;
}
}

@media (max-width: 767px) {
  .simple-vertical-tabs-bol {
    padding: 40px 35px;
  }
  .simple-vertical-tabs-bol .container-inner .tab-content-item.active {
  margin-top: 45px;
  }
}

.simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item:not(:first-child){
margin-top: 12px;
}

.simple-vertical-tabs-bol .container-inner .tab-content-mobile .tab-description{
 padding-top: 21px;
 max-width: 350px;
}
.simple-vertical-tabs-bol .container-inner .tab-content-mobile .tab-buttons{
 padding-top: 21px;
}

.simple-vertical-tabs-bol .container-inner .tab-content-mobile .image-holder{
padding-top: 30px;
}

@media (max-width: 992px){
  .simple-vertical-tabs-bol .container-inner .tabs-container .tab-list .tab-list-item .tab-name{
    font-size: 22px;
  }
}

   
/* Added style */
.testimonial-with-image{padding-top:92px;padding-bottom:105px}
.testimonial-with-image .testimonial-with-image-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column-reverse;flex-direction:column-reverse}
.testimonial-with-image .testimonial-with-image-wrapper .property-video{margin-right:0}

.testimonial-with-image .testimonial-with-image-wrapper:not(:last-child){margin-bottom:90px}
.testimonial-with-image .testimonial-with-image-wrapper .content{-webkit-box-flex:0;-ms-flex:0 0 40%;flex:0 0 40%}
.testimonial-with-image .testimonial-with-image-wrapper .content .preheader{margin-bottom:8px}
.testimonial-with-image .testimonial-with-image-wrapper .content .repeater-header h4{color:black;text-transform:capitalize}
@media(min-width:1100px){.testimonial-with-image .testimonial-with-image-wrapper .content .description{padding-bottom:21px;max-width:545px}}
.testimonial-with-image .testimonial-with-image-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-right:21px}
.testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper{padding-top:31px;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:40px}
.testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper img{max-height:93px;width:auto;margin-bottom:20px}
.testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper img:not(:last-child){margin-right:23px}
.testimonial-with-image .testimonial-with-image-wrapper .content .description{padding-bottom:24px}
.testimonial-with-image .testimonial-with-image-wrapper .content .description p{
  font-family: 'Canela Trial Regular';
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
}
.testimonial-with-image .testimonial-with-image-wrapper .property-video #play_button{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);left:calc(50% - 45px);position:absolute;cursor:pointer;z-index:0}
.testimonial-with-image .testimonial-with-image-wrapper .property-video #play_button.hidden{display:none}
.testimonial-with-image .testimonial-with-image-wrapper .property-video #play_button.show{display:block}
.testimonial-with-image .testimonial-with-image-wrapper .property-video #propertyVideo{max-height:650px;width:100%;max-width:1128px}
@media(min-width:1100px){.testimonial-with-image .testimonial-with-image-wrapper .content{    max-width: 607px;
    margin-right: auto;
    margin-left: auto;
/*     padding-left: 40px; */
    padding-right: 20px;}
}@media(min-width:1100px){.testimonial-with-image .testimonial-with-image-wrapper{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}
.testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper{padding-top:61px;padding-bottom:0}
.testimonial-with-image .testimonial-with-image-wrapper .property-video{margin-right:35px}
}@media(min-width:1100px){.testimonial-with-image .testimonial-with-image-wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.testimonial-with-image .testimonial-with-image-wrapper:not(:last-child){margin-bottom:50px}
.testimonial-with-image .testimonial-with-image-wrapper .content .description{padding-bottom:15px}
}@media(min-width:1700px){
.testimonial-with-image .testimonial-with-image-wrapper .content .description{max-width:800px}
}@media(max-width:1100px){.testimonial-with-image .testimonial-with-image-wrapper .property-video{margin-bottom:27px}
}@media(max-width:1100px){.testimonial-with-image{padding-top:49px;padding-bottom:57px}
.testimonial-with-image .testimonial-with-image-wrapper .content{padding-right:20px;padding-left:20px;padding-top: 38px;}
}@media(max-width:767px){.testimonial-with-image .testimonial-with-image-wrapper .content .buttons-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.testimonial-with-image .testimonial-with-image-wrapper .content .buttons-wrapper a{margin-right:0 !important;max-width: 300px;}
.testimonial-with-image .testimonial-with-image-wrapper .content .buttons-wrapper a:not(:last-of-type){margin-bottom:34px;}

  .testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper img{max-height:67px}
.testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper img:not(:last-child){margin-right:15px}
}@media(max-width:500px){.testimonial-with-image .testimonial-with-image-wrapper .content .logos-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}
.testimonial-with-image .testimonial-with-image-wrapper .property-video #play_button{max-width:40px;left:calc(50% - 20px)}
}
@media(min-width: 1100px){
  .testimonial-with-image .testimonial-with-image-wrapper .property-image{
    flex: 0 0 60%;
    margin-right: 60px;
  }
  .testimonial-with-image .testimonial-with-image-wrapper .property-image img{
    width: 100%;
  }

}
.testimonial-with-image .testimonial-with-image-wrapper .content{position: relative;}
.testimonial-with-image .testimonial-with-image-wrapper .content:before{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);    width: 50px;
    height: 31px;
    top: -43px;
    left: -45px;background-repeat:no-repeat;background-size:contain;
}

.testimonial-with-image .testimonial-with-image-wrapper .content:after{
    opacity: 1;
    position: absolute;
    content: "";
    background-image: url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/logo-js.png);
    width: 160px;
    height: 184px;
    bottom: 50px;
    right: 47px;
    background-repeat: no-repeat;
    background-size: contain;
}


.testimonial-with-image .testimonial-with-image-wrapper .content .buttons-wrapper {
  padding-top: 61px;
}
@media(max-width:1100px){
  .testimonial-with-image .testimonial-with-image-wrapper .content:before{
    content: unset;
  }
  .testimonial-with-image .testimonial-with-image-wrapper .content .description{
    position: relative;
    padding-top: 32px;
  }
  .testimonial-with-image .testimonial-with-image-wrapper .content .description:before{opacity:1;position:absolute;content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/quote-js.png);    width: 31px;
    height: 19px;
    top: -4px;
    left: 0;background-repeat:no-repeat;background-size:contain;
}
  .testimonial-with-image .testimonial-with-image-wrapper .content .buttons-wrapper {
  padding-top: 25px;
}
  .testimonial-with-image .testimonial-with-image-wrapper .content:after{
        bottom: 184px;
  }
}
.testimonial-with-image .testimonial-with-image-wrapper .content .quote-name p,
.testimonial-with-image .testimonial-with-image-wrapper .content .quote-related p{
  color: #000000;
}
.hero-with-form .hs_error_rollup label{color:white}
.hero-with-form .submitted-message{font-family:'Tilda Sans';font-style:normal;font-weight:500;font-size:22px;line-height:26px;text-align:center;color:white}
.hero-with-form .hero-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.hero-with-form .hero-wrapper .hero-content .description{max-width:500px}
.hero-with-form .hero-wrapper .hero-content .contact-us-information{padding-top:35px}
.hero-with-form .hero-wrapper .hero-content .contact-us-information .contact-us-individual:not(:last-of-type){padding-bottom:25px}
.hero-with-form .hero-wrapper .hero-content .contact-us-information .contact-us-individual .content{padding-left:15px;font-family:'Canela Trial Regular';font-style:normal;font-weight:400;font-size:24px;line-height:36px}
.hero-with-form .hero-wrapper .hero-form{max-width:566px;padding-left:20px;padding-right:20px}
.hero-with-form .hero-wrapper .hero-form .hs-fieldtype-select{position:relative}
.hero-with-form .hero-wrapper .hero-form .hs-fieldtype-select::after{background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-down-black.png");content:"";background-size:contain;width:23px;height:10px;display:inline-block;top:50%;right:20px;position:absolute;background-position:center;background-repeat:no-repeat}
.hero-with-form .hero-wrapper .hero-form .form-title{display:block;margin-top:49px;margin-bottom:35px;font-family:'Tilda Sans';font-style:normal;font-weight:500;font-size:28px;line-height:34px;text-transform:uppercase;color:#fff;text-align:center}
.hero-with-form .hero-wrapper .hero-form .field.hs-form-field{height:50px}
.hero-with-form .hero-wrapper .hero-form .field.hs-form-field select{font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:16px;line-height:18px;text-transform:uppercase;color:rgba(0,0,0,0.5);border:1px solid #fdaf30;position:relative}
.hero-with-form .hero-wrapper .hero-form .field.hs-form-field select::after{background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-down-black.png");content:"";background-size:contain;width:23px;height:10px;display:inline-block;top:0;right:0;position:absolute;background-position:center}
.hero-with-form .hero-wrapper .hero-form .field.hs-form-field input{border:1px solid #fdaf30 !important}
.hero-with-form .hero-wrapper .hero-form .actions{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin-top:23px}
.hero-with-form .hero-wrapper .hero-form .actions:after{background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-right-black.png");left:86px;height:12px}
.hero-with-form .hero-wrapper .hero-form .actions:hover:after{background-image:url("https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/arrow-right-orange.png")}
.hero-with-form .hero-wrapper .hero-form .actions input{position:relative;background:#fdaf30;color:#000;border:1px solid #fdaf30}
.hero-with-form .hero-wrapper .hero-form .actions input:hover{background:#000;color:#fdaf30;-webkit-transition:.3s;transition:.3s;border:1px solid #000}
@media(min-width:992px){.hero-with-form .hero-wrapper .hero-content{-webkit-box-flex:0;-ms-flex:0 0 calc(70% - 30px);flex:0 0 calc(70% - 30px);padding-right:50px}
.hero-with-form .hero-wrapper .hero-content .description{max-width:740px}
.hero-with-form .hero-wrapper .hero-form{-webkit-box-flex:0;-ms-flex:0 0 35%;flex:0 0 35%}
.hero-with-form .hero-wrapper .hero-form{padding-left:0;padding-right:0}
.hero-with-form .hero-wrapper .hero-form .actions{margin-top:35px}
}@media(min-width:1200px){.hero-with-form .hero-wrapper{padding-left:73px;padding-right:73px;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
}@media(min-width:1600px){.hero-with-form .hero-wrapper{padding-right:182px}
}
.neighbourhoods-bol{
  padding: 55px 73px 116px;
}

.neighbourhoods-bol-map{
  margin-left: -73px;
  margin-right: -73px;
  margin-top: 54px;
  margin-bottom: 87px;
}

.neighbourhoods-bol-map img{
  width: 100vw;
}

.neighbourhoods-bol-data{
  display: flex;
  justify-content: space-between;
}

.neighbourhoods-bol-data-image{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, #000000 100%);
  min-width: 45px;
  height: 45px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neighbourhoods-bol-data-header{
  display: flex;
  align-items: center;
}

.neighbourhoods-bol-data-wrapper{
  max-width: 460px;
  width: 30%;
}

.neighbourhoods-bol-data-wrapper ul{
  margin-top: 0px;
}

.neighbourhoods-bol-data-description{
  padding-top: 12px;
  font-family: 'Tilda Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #110C0C;
}
.neighbourhoods-bol-data-description p,
.neighbourhoods-bol-data-description ul li{
  font-weight: 400;
  color: #110C0C;
}

.neighbourhoods-bol-data-description ul li strong{
  font-family: 'Tilda Sans Bold';
}


@media (max-width: 768px) {
  .neighbourhoods-bol {
    padding: 40px 35px;
  }
  .neighbourhoods-bol-map{
    margin-left: -35px;
    margin-right: -35px;
    margin-top: 30px;
    margin-bottom: 35px;
  }
  .neighbourhoods-bol-data{
    display: flex;  
    flex-direction: column;
  } 
  .neighbourhoods-bol-data-wrapper{
    width: unset;
  }
  .neighbourhoods-bol-data-wrapper:not(:last-child){
    padding-bottom: 15px;
  }
}
.neighborhoods-listing{max-width:1718px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px;padding-top:40px;padding-bottom:100px}
.neighborhoods-listing .neighborhoods-filter{margin-bottom:40px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.neighborhoods-listing .neighborhoods-filter .direction{font-family:'Canela Trial Regular';font-style:normal;font-weight:400;font-size:24px;line-height:26px;text-align:center;text-transform:capitalize;color:#000;margin-right:24px;margin-bottom:20px;padding:12px 0}
.neighborhoods-listing .neighborhoods-filter .locations{padding:12px 22px;border:1px solid #000;font-family:'Tilda Sans';font-style:normal;font-weight:500;font-size:18px;line-height:18px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;text-transform:uppercase;color:#000;margin-bottom:20px;cursor: pointer;}
.neighborhoods-listing .neighborhoods-filter .locations:not(:last-of-type){margin-right:10px}
.neighborhoods-listing .neighborhoods-filter .locations.active{background:#000;color:white}
.neighborhoods-listing .neighborhoods-wrapper{grid-template-columns:1fr;gap:20px}
.neighborhoods-listing .neighborhoods-wrapper .neighborhood-individual{padding:20px;height:325px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-position:center;background-size:cover;background-repeat:no-repeat}
.neighborhoods-listing .neighborhoods-wrapper .neighborhood-individual .neighborhood-name{color:#fff !important}
@media(min-width:767px){.neighborhoods-listing .neighborhoods-wrapper{grid-template-columns:1fr 1fr}
}@media(min-width:992px){.neighborhoods-listing{max-width:1778px;margin-left:auto;margin-right:auto;padding-left:50px;padding-right:50px;padding-top:61px;padding-bottom:150px}
.neighborhoods-listing .neighborhoods-filter{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center}
}@media(min-width:1500px){.neighborhoods-listing .neighborhoods-wrapper{grid-template-columns:1fr 1fr 1fr}
}
.sold-properties-listing .sold-properties .property .property-content{
  left: 0;
}
.sold-properties-listing .sold-properties .property .property-content .property-price{
      color: #ffffff;
}
.sold-properties-listing .sold-properties{
  padding-bottom: 115px;
}

.sold-properties-listing .pagination{
  margin-bottom: 126px;
}

.sold-properties-listing .property:hover:before{
  content: unset;
}

.sold-properties-listing .property:hover:after{
  content: unset;
}

.sold-properties-listing .property:hover .property-content{
  display: flex;
}

@media(max-width:992px){.sold-properties-listing .property.card{background-image:unset !important;padding:0;height:unset;margin:0;min-height:unset}
.sold-properties-listing .property.card .property-content{position:relative;padding-left:13px;padding-right:13px;padding-top:25px}
.sold-properties-listing .property.card .property-content .property-price{color:#000}
.sold-properties-listing .property.card .property-content .property-data{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.sold-properties-listing .property.card .property-content .property-data .card-description-1{color:#000}
.sold-properties-listing .property.card .property-content .property-data .card-description-3{color:#000}
.sold-properties-listing .property.card .property-content .property-data .property-neighboour{color:#000;padding-top:9px;    text-align: left;}
}
.current-listing{padding-top:67px;padding-bottom:100px;padding-left:20px;padding-right:20px}
.current-listing .filters-container .neighborhoods{font-family:'Canela Trial Regular';font-style:normal;font-weight:400;font-size:24px;line-height:26px;text-align:right;color:#000;padding-right:13px}
.current-listing .filters-container .filters-wrapper{background:#000}
.current-listing .filters-container .filters-wrapper .dropdown-toggle{background:#000;color:white;padding:12px 44px 12px 22px;min-width:160px;display:block;margin-left:auto;margin-right:auto;position:relative;cursor:pointer}
.current-listing .filters-container .filters-wrapper .dropdown-toggle::after{content:"";background-image:url(https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Vector%20297%20%283%29.png);width:15px;height:13px;background-size:contain;background-position:center;display:block;background-repeat:no-repeat;top:0;position:absolute;top:48%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);right:11px}
.current-listing .filters-container .filters-wrapper .dropdown-menu{width:100%}
.current-listing .filters-container .filters-wrapper .dropdown-menu .dropdown-item{font-family:'Tilda Sans';font-style:normal;font-weight:500;font-size:18px;line-height:18px;text-align:center;text-transform:uppercase;color:#fff;display:block;clear:both;white-space:nowrap;padding:6px 22px;cursor:pointer}
.current-listing .filters-container .filters-wrapper .dropdown-menu .dropdown-item.active{display:none}
.current-listing .current-properties-listing{grid-template-columns:1fr;padding-top:60px;gap:55px}
.current-listing .current-properties-listing .property.card{background-size:cover;background-position:center;padding:20px;height:530px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-position:center;background-size:cover;background-repeat:no-repeat}
.current-listing .current-properties-listing .property.card:hover{opacity:1}
.current-listing .current-properties-listing .property.card:hover .property-content{display:-webkit-box;display:-ms-flexbox;display:flex}
.current-listing .current-properties-listing .property.card:hover::after{content:unset}
.current-listing .current-properties-listing .property.card:hover::before{content:unset}
.current-listing .current-properties-listing .property.card .property-price{color:white}
@media(min-width:768px){.current-listing{padding-top:113px;padding-bottom:93px}
.current-listing .current-properties-listing{grid-template-columns:1fr 1fr;padding-top:81px;gap:68px 49px}
}@media screen and (min-width:1200px){.current-listing{padding-left:131px;padding-right:131px}
}@media(max-width:992px){.current-listing .current-properties-listing .property.card{background-image:unset !important;padding:0;height:unset;margin:0;min-height:unset}
.current-listing .current-properties-listing .property.card .property-content{position:relative;padding-left:13px;padding-right:13px;padding-top:25px}
.current-listing .current-properties-listing .property.card .property-content .property-price{color:#000}
.current-listing .current-properties-listing .property.card .property-content .property-data{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.current-listing .current-properties-listing .property.card .property-content .property-data .card-description-1{color:#000}
.current-listing .current-properties-listing .property.card .property-content .property-data .card-description-3{color:#000}
.current-listing .current-properties-listing .property.card .property-content .property-data .property-neighboour{color:#000;padding-top:9px}
}@media(max-width:400px){.current-listing .filters-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.current-listing .filters-container .neighborhoods{padding-bottom:30px}
}
.current-exclusive-listing{background:black}
.current-exclusive-listing .properties-wrapper .slick-prev{left:0;width:57px;height:57px;background:white;z-index:999;border-radius:50%;bottom:60px;top:unset;left:22%}
.current-exclusive-listing .properties-wrapper .slick-next{left:0;width:57px;height:57px;background:white;z-index:999;border-radius:50%;bottom:60px;top:unset;left:25%}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-content{background-color:black}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-content .property-content-inner{padding-left:20px;padding-right:20px;padding-top:54px;padding-bottom:33px}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-content .property-content-inner .property-neighboour{padding-top:14px;padding-bottom:25px}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-content .property-content-inner .property-description{margin-bottom:29px}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-image{height:445px}
@media(min-width:768px){.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-content{-webkit-box-flex:0;-ms-flex:0 0 33%;flex:0 0 33%}
.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-image{height:800px;-webkit-box-flex:0;-ms-flex:0 0 66%;flex:0 0 66%}
}@media(min-width:776px){.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper .property-content .property-content-inner{padding-top:90px;max-width:491px;margin-left:auto;margin-right:auto}
}@media(max-width:768px){.current-exclusive-listing .properties-wrapper .property-inner .property-inner-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
}

















































/* Line Height */

  


/* Letter Spacing */

  










/* Color */











  






  






  






  




  



  




  



  



































/* Uppercase */

  


/* Letter Spacing */


/* Shadow */


/* Shadow Hover */


.header {
	left: 0;
	top: 0;
	width: 100%!important;
	z-index: 30!important;
	transition: all ease-in-out 400ms;
	position: fixed;
}

.header.scrolled {
  box-shadow: 0 0 30px 0 rgba(135, 154, 197, 0.31);
  background-color: #fff;
}


.hs-inline-edit .hubspot-disable-focus-styles .body-wrapper >div:not(.hs-baymax-editor) header{
  position: relative !important;
}

.mobile-ctas .header-cta-mobile {
    padding: 7px 20px;
    background-image: black;
    display: block;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

.mobile-ctas .header-cta-mobile .btn-icon {
  margin-left: 0px;
  font-size: 12px;
  padding: 0;
}

.mobile-ctas .header-cta-mobile .header-cta-mobile-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-ctas .header-cta-mobile .header-cta-mobile-wrapper p {
  margin-bottom: 0px;
}
.mobile-ctas .header-cta-mobile a {
  padding: 10px 18px !important;
}

.mobile-ctas .header-cta-mobile p {
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: black;
}



.header-cta .btn-mega-menu {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  
}




.header .dnd-section > .row-fluid .span3 {
	width: 152px !important;
}

.header .hamburger.is-active .hamburger-inner:after,
.header .hamburger.is-active .hamburger-inner:before {
    opacity:1
}




@media (min-width:992px) {
  .mobile-ctas {
    display: none;
  }
  
	header .header-menu > .hs-menu-wrapper {
		display: block !important;
	}
  .header.scrolled {
    padding-top: 0px;
  }
  
  
  .header-menu {
    position: relative;
  }
  
  .header .dnd-section > .row-fluid:after,
  .header .dnd-section > .row-fluid:before {
    display: none;
   }
}



 .header {
   padding-left: 20px;
   padding-right: 20px;
  }
@media (min-width:992px) {
 .header {
    padding-left: 73px;
   padding-right: 73px;
  }
}


@media (max-width:991px) {
 
  
  .header-menu > .hs-menu-wrapper {
    padding-bottom: 20px !important;
  }
  
  
  .hamburger {
    position: absolute;
    right: 0;
  }
  
  .header-menu {
    position: unset;
  }
  

  
  .header .dnd-section > .row-fluid::after,
  .header .dnd-section > .row-fluid::before {
    display: none;
  }
  
  .header .dnd-section > .row-fluid {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
  
	header .dnd-section .dnd-module+.dnd-module,
	header .dnd-section .dnd-column+.dnd-column, 
	header .dnd-section .dnd-column+.dnd-module, 
	header .dnd-section .dnd-module+.dnd-column {
		padding-top: 0.5rem;
	}
}


/* ==========================================================================
   Logo
   ========================================================================== */

@media (max-width: 991px) {
	.logo > .flex {
    justify-content: center;
	}
}

/* ==========================================================================
   Header Skip
   ========================================================================== */
a.header_skip {
	position: absolute;
	top: 0;
	left: -1000px;
	height: 1px;
	width: 1px;
	text-align: left;
	overflow: hidden;
	padding: 0.5rem 1rem;
	line-height: 1;
	font-size: 1rem;
	background-color: #FDAF30;
	color: #fff;
	z-index: 100;
}
	a.header_skip:active,
	a.header_skip:focus,
	a.header_skip:hover {
		left: 0;
		top: 0;
		width: auto;
		height: auto;
		overflow: visible;
	}

/* ==========================================================================
   Desktop Menu
   ========================================================================== */

@media (min-width: 992px) {
  .second-level-only {
    position: relative;
  }
  
  .header .hs-menu-item.hs-menu-depth-2 > ul {
    max-width: 229px;
  }
  
  .header .hs-menu-item.hs-menu-depth-1 > ul.cta-holder {
    min-width: 863px;
  }
  
  .header .hs-menu-wrapper > ul {
    align-items: center;
  }
	.header-menu > .hs-menu-wrapper,
	.header-menu .hs-menu-wrapper > ul,
	.header-menu .hs-menu-wrapper > ul > li {
		height: 100%;
	}
  
  .header-menu .hs-menu-item.hs-menu-depth-1.hs-item-has-children.second-level-only >ul {
    flex-direction: column;
  }
  
  .header-menu .hs-menu-item.hs-menu-depth-1.hs-item-has-children.second-level-only >ul {
/*     min-width: 300px; */
/*     left: -41px; */
  }
  
  .header-menu .hs-menu-item.hs-menu-depth-1.hs-item-has-children.second-level-only >ul a::first-letter{
    color: red;
    margin-right:2px;
  }
  
  .header-menu .hs-menu-item.hs-menu-depth-1 > ul li a {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 20px;
    letter-spacing: normal;
    text-align: left;
    color: #f8efe5;
    padding: 0px;
}
  
  .header-menu .hs-menu-item.hs-menu-depth-1 > ul li:not(:last-of-type) {
/*     margin-bottom: 12px; */
  }
	
	.header-menu .hs-menu-wrapper ul {
		margin-top: 0;
	}
	.header-menu .hs-menu-wrapper li {

	}
	.header-menu > .hs-menu-wrapper > ul > li > a,
	.header-menu > .hs-menu-wrapper > ul  > li > .hs-menu-children-wrapper li a {
		color: inherit;
		color: #000000;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: flex-start;
/* 		height: 100%; */
	}
  
	.header-menu .hs-menu-wrapper > ul > li {
		position: relative;
	}
/* 	.header-menu > .hs-menu-wrapper > ul > li > a {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.4px;
    text-align: center;
    color: #f8efe5;
    opacity: 1;
	} */
	.header-menu .hs-menu-wrapper li a:hover {
		opacity: 1;
	}
	.header-menu > .hs-menu-wrapper > ul  > li > .hs-menu-children-wrapper li a {
		color: #f8efe5;
	}
	.header .header-menu li.active > a {
		color: #FDAF30;
	}
	.header-menu > .hs-menu-wrapper > ul  > li > .hs-menu-children-wrapper li.active a,
	.header-menu > .hs-menu-wrapper > ul  > li > .hs-menu-children-wrapper li a:hover {
		opacity: 1;
	}
	
	/* ---------
	 * Level 01
	 * ------------ */
	.header .header-menu > .hs-menu-wrapper > ul > li {
	}
	.header .header-menu > .hs-menu-wrapper > ul > li > a {
		position: relative;
		border-bottom: 1px solid transparent;
	}
	
	/* Active */ 
	.header .header-menu > .hs-menu-wrapper > ul > li:hover > a,
	.header .header-menu > .hs-menu-wrapper > ul > li.active-branch > a,
	.header .header-menu > .hs-menu-wrapper > ul > li.active > a {
		color: inherit;
/* 		border-bottom: 1px solid; */
	}
	.header .header-menu > .hs-menu-wrapper > ul > li.active-branch > a:after,
	.header .header-menu > .hs-menu-wrapper > ul > li.active > a:after {
		width: 100%;
		opacity: 1;
		background-color: #FDAF30;
	}
  
  .header .header-menu > .hs-menu-wrapper > ul > li:last-of-type.active > a:after {
    width: unset;
		opacity: 1;
		background-color: unset;
  }

	/* Hover */
	.header .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper {
		position: absolute;
/* 		top: 45%; */
		left: 0;
		opacity: 0;
		transform: translateY(10px);
		-webkit-transform: translateY(10px);
		visibility: hidden;
		transition: 0.15s ease;
    display:none;
	}
  
  .header.scrolled .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper {
		top: 100%;
  }
  
  .header .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
	}
  
  .header .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper.cta-holder {
      padding: 0px 0px 0 55px;
  }
  
  @media(min-width: 992px){
    .header-menu .hs-menu-item.hs-menu-depth-1.hs-item-has-children.second-level-only >ul{
          min-width: 180px;
    left: calc(50% - 90px);
    }
    .header-menu .hs-menu-item.hs-menu-depth-1.hs-item-has-children.second-level-only:nth-of-type(2) >ul{
      left: calc(50% - 105px);
    }
  .header-cta {
     background-image: linear-gradient(91deg, #f8efe5 1%, #f2f2f2 99%);
    min-width: 368px;
    max-width: 368px;
    padding: 40px 43px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: none;
  }
  }
  
  .header-cta img {
     max-height: 120px;
    width: auto;
    margin-bottom: 15px;
  }
  
  
  .header-cta a {
   width: fit-content;
    font-size: 14px;
  }
  
  .header-cta p {
    font-size: 18px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.44;
    letter-spacing: normal;
    text-align: left;
    color: white;
/*      margin-bottom: 50px; */
  }
  
  .header .icon-asset-7 {
    font-size: 11px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.73;
  letter-spacing: normal;
  text-align: left;
  color: #f2f2f2;
    margin-right: 7px;
  }
  
  
	.header .header-menu > .hs-menu-wrapper > ul > li.hs-menu-depth-1.hs-item-has-children:hover > .hs-menu-children-wrapper {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		opacity: 1;
		visibility: visible;
    display:flex;
    box-shadow: 0 0 30px 0 rgba(135, 154, 197, 0.31);
/*     width: 100%; */
	}
	
	/* ---------
	 * Level 02
	 * ------------ */
	
	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper {
		background-color: #000;
		width: auto;
		color: black;
	}
  
	
  
  
	
  
  
  .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li.hs-menu-depth-2.hs-item-has-children > a > i {
    display: none;
  }
  
  .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li.hs-menu-depth-2.hs-item-has-children > a {
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  }
 
  

	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li + li {
/* 		margin-top: .75rem; */
	}
	
	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li:hover > a {
		color: #f2f2f2;
	}
	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li.hs-item-has-children {
		position: relative;
	}
	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li.hs-item-has-children:before {
		content: "";
		position: absolute;
		right: 0.5rem;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	
	/* ---------
	 * Level 03
	 * ================= */
	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper {
		left: 100%;
		top: -1rem;
		background-color: var(--gray800);
		padding: 1rem 0;
		min-width: 10rem;
		width: auto;
		background-color: var(--gray-700);
		color: #fff;
		transition: 0.15s ease;
    
    left: 100%;
			opacity: 1;
			transform: translateX(0);
			-webkit-transform: translateX(0);
		  visibility: visible;
    flex-direction: column;
	}
	.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li > .hs-menu-children-wrapper a {
		padding: 0;
	}
/* 		.header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper > li:hover > .hs-menu-children-wrapper {
			left: 100%;
			opacity: 1;
			transform: translateX(0);
			-webkit-transform: translateX(0);
		  visibility: visible;
		} */
  
  .header-menu>.hs-menu-wrapper>ul>li>.hs-menu-children-wrapper>li.hs-menu-depth-2.hs-item-has-children:hover>a {
    color: #f8efe5;
  }
	
}

@media (max-width: 991px) {
  .header-menu .hs-menu-wrapper > ul li{
    padding: 22px 24px;
  }
  
	.header-menu-wrapper {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		justify-self: flex-end;
	}
	.header-menu .hs-menu-wrapper {
		display: none;
	}
  
  .header-menu .hs-menu-wrapper>ul li a {
    font-size: 16px;
    font-weight: bold !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: 1.5 !important;
    letter-spacing: 0.4px !important;
    text-align: center !important;
  }
  .header-menu .hs-menu-wrapper>ul .hs-menu-item.hs-menu-depth-2 a {
    font-weight: normal !important;
  }
}

/* ==========================================================================
   Desktop Menu - Transparent
   ========================================================================== */

@media (min-width: 992px) {
	.header-menu > .hs-menu-wrapper > ul > li > a {
    color: currentColor;
  }
  
  
	.header .header-menu > .hs-menu-wrapper > ul > li:hover > a {
		color: #f2f2f2;
		opacity: 1;
	}
  

}

/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
   ========================================================================== */

.child-trigger {
	display: none; /* Hide button on Desktop */
}

@media (min-width: 992px) {
	.mobile-trigger {
		display: none!important;
	}
}

@media (max-width: 991px) {
  .header-menu .hs-menu-wrapper > ul .hs-menu-depth-2{
    padding: 0;
  }
   .open-parent {
/*     box-shadow: inset 0 0 30px 0 rgba(49, 49, 49, 0.13) !important; */
     background: #413F3F;
  }
  
  .hs-menu-depth-2.open-parent {
      box-shadow: none !important;
  }
  
  .header-menu .hs-menu-wrapper>ul .open-parent > a {
    position: relative;
    color: #fdaf30 !important;
    padding-top: 28px;
    padding-bottom: 25px;
  }
/*   .open-parent.hs-menu-depth-1 > a:before{
    content: '';
    width: 17px;
    height: 2px;
    background: #f8efe5;
    position: absolute;
    bottom: 17px;
    left: calc(50% - 8px);
  } */
	.header-menu > .hs-menu-wrapper {
/* 		max-height: calc( 100vh - var(--header-height) ); */
/* 		overflow-y: scroll; */
	}

  /* Variables
     ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* 
    * Menu Reset
    *
    * Remove styling from desktop version of header-menu. Place any 
    * additional CSS you want removed from the mobile menu in this reset 
    */

  .header-menu .hs-menu-wrapper > ul,
  .header-menu .hs-menu-wrapper > ul li,
  .header-menu .hs-menu-wrapper > ul li a {
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: center;
    color:#ffffff;
  }
  
  .header .hs-menu-depth-1.hs-item-has-children > ul.hs-menu-children-wrapper {
    flex-wrap: nowrap;
  }


  /* Toggle Button
     ========================================================================== */
	.hamburger {
		padding: 0!important;
		outline: none!important;
		display: inline-flex;
	}
	.hamburger-box {
		width: 2rem;
	}
	.hamburger-inner, 
	.hamburger-inner:after, 
	.hamburger-inner:before {
    width: 2rem!important;
    height: 1.5px!important;
	}


  /* Child Toggle Button
     ========================================================================== */

  .child-trigger {
    display: block !important;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 0;
    width: 55px !important;
    min-width: 55px !important;
    height: 3rem !important;
    padding: 0 !important;
  }
  
  .header .hs-menu-item.hs-menu-depth-2 .child-trigger {
    top: 2px;
  }
  
  .header-cta {
    display: none;
  }
  
  .child-trigger:hover {
    text-decoration: none;
  }
  .child-trigger i {
    position: relative;
    top: 50%;
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after {
    position: absolute;
    content: '';
    background: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Vector%20306.png');
    display: block;
    width: 15px;
    height: 8px;
    background-repeat: no-repeat;
  }
   .child-trigger i:after {
    

  }
 
  .child-trigger.child-open i:after {
    background: url('https://23532480.fs1.hubspotusercontent-na1.net/hubfs/23532480/Vector%20300.svg');
  }
  .child-trigger.child-open i {
  }

    
  /* Menu Styles on Mobile Devices
     ========================================================================== */  
     
   .header-menu.js-enabled {
   }

  /* Hide menu on mobile */
  .header-menu.js-enabled .hs-menu-wrapper,
  .header-menu.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .header-menu > ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
    padding: 0 20px;
  }

 
  /* Mobile Menu Styles */ 
  .header-menu.js-enabled .hs-menu-wrapper{
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    height: 100%;
    padding-top: 40px;
  }
  .header-menu .hs-menu-wrapper{
    background-color:#ffffff;
    width: 100%;
  }
	.header-menu .hs-menu-wrapper li.active-branch > a {
	  font-weight: bold;
	}
	.header-menu .hs-menu-wrapper li.active > a {

		color: #fff;
	} 

   /* Level 1 Menu List Styles */

  .header-menu .hs-menu-wrapper > ul > li a {
    font-size: 1rem;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .header-menu > .hs-menu-wrapper > ul li {
    padding: 0 20px;
		position: relative;
  }
  .header-menu .hs-menu-wrapper >  ul li > a{
		padding: 28px 0;
    border-bottom: 1px solid #FFFFFF;
  }
  
  .header-menu .hs-menu-wrapper >  ul .hs-menu-depth-1:last-of-type{
    max-width: 200px;
    margin-left: auto !important;
    margin-right: auto;
}
  .header-menu .hs-menu-wrapper >  ul .hs-menu-depth-1:last-of-type > a{
    border-bottom: unset;
  }

  .header-menu .hs-menu-wrapper >  ul .hs-menu-depth-1:nth-last-of-type(2) > a{
    border-bottom: unset;
  }
  .header-menu .hs-menu-wrapper >  ul li .hs-menu-item.hs-menu-depth-2 a{
		padding: 15px 0;
  }
  
  .header-menu .hs-menu-wrapper >  ul li .hs-menu-item.hs-menu-depth-2:last-of-type a{
/*     padding-bottom: 40px; */
  }
  
  .header-menu .hs-menu-wrapper > ul li a:hover{
    color: #f8efe5;
  }

  /* Level 2 and Higher Menu List Styles */
  .header-menu .hs-menu-wrapper > ul ul li{
  }
  .header-menu .hs-menu-wrapper > ul ul li a{
    text-indent: 10px;
    font-size: 1rem;
  }

  /* Level 3 and Higher Menu List Styles */
  .header-menu .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px;
  }
  .header-menu .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px;
  }
}


/* ==========================================================================
   Language Switcher
   ========================================================================== */

.header-lite-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	order: 2;
}
.header-lite-language-switcher {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
	margin-right: 2rem;
	font-size: .85rem;
	height: 100%;
	color: inherit;
	line-height: 1;
}
.header-lite-language-switcher-label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header-lite-language-switcher-label > div > span {
	display: flex;
}
.header-lite-language-switcher .lang-switcher-class {
	display: block;
}
.header-lite-language-switcher .globe-class {
	background: none;
	position: relative;
	width: auto;
	height: auto;
}
.header-lite-language-switcher .globe-class:before {
	content: "\f0ac";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.header-lite-language-switcher-label-current {
	margin-left: .5rem;
	font-size: .9rem;
}

.header-lite-language-switcher .lang-list-class:before {
	border-bottom-color: #f8efe5;
}
.header-lite-language-switcher .lang-list-class:after {
	border-bottom-color: #f8efe5;
}
.header-lite-language-switcher .lang-list-class li {
	border: none!important;
	background: #f8efe5;
	width: 10rem;
	font-size: .75rem;
}
.header-lite-language-switcher .lang-list-class li a {
	color: #fff;
}
.header-lite-language-switcher .lang-list-class li a:hover {
	color: #FDAF30;
}

@media (max-width: 991px) {
	.header-lite-right {
		margin-left: auto;
		justify-self: flex-end;
	}
  
  .header-menu .hs-menu-wrapper > ul .hs-menu-depth-2:last-of-type a{
    border-bottom: 1px solid #fdaf30;
  }
  header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:not(:last-of-type){
    margin-top: 0 !important;
  }
	.header-lite-language-switcher-label-current {
		display: none;
	}
}

/* ==========================================================================
   Search Bar
   ========================================================================== */

.header-lite-search {
  position: fixed;
	top: 0;
  left: 0;
  display: flex!important;
  align-items: center;
  justify-content: center;
	flex-flow: column;
  width: 100vw;
  height: 100vh;
	padding: 2rem;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s ease;
}
.header-lite-search.active {
  opacity: 1!important;
	top: 0;
  visibility: visible!important;
}

.header-lite-search p {
	color: #fff;
}

@media (max-width: 991px) {
	.header-lite-search-wrapper {
  	order: 3;
	}
}

/* Search Field Animation */
body .header-lite-search .hs-search-field .hs-search-field__bar form {
	text-align: center;
}
body .header-lite-search .hs-search-field .hs-search-field__bar form input {
	width: 0!important;
	opacity: 0!important;
	transition: 0.5s cubic-bezier(.57,0,0,1);
	margin: auto!important;
	font-size: 1.25rem;
	border-radius: 0px;
	border: 5px solid #dcdcdc;
}
body .header-lite-search.active .hs-search-field .hs-search-field__bar form input {
  opacity: 1!important;
	width: 100%!important;
}

/* Trigger */
.header-lite-search-trigger {
	cursor: pointer;
}
.header-lite-search-trigger svg {
	height: 1.25rem;
	fill: currentColor;
	transition: 0.3s ease;
}

/* Close */
.header-lite-search_top {
	width: 36px;
	height: 36px;
	top: 13px;
	right: -18px;
	z-index: 10;
}
.header-lite-search-close {
	width: auto;
  cursor: pointer;
	width: 36px;
	height: 36px;
	background-color: #FDAF30;
}
.header-lite-search-close .hamburger {
	padding: 0px;
}
.header-lite-search-close .hamburger .hamburger-box {
	width: 16px;
}
.header-lite-search-close .hamburger-inner, 
.header-lite-search-close .hamburger-inner::before, 
.header-lite-search-close .hamburger-inner::after {
	width: 1rem;
	height: 2px;
	background-color: #ffffff!important;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #ffffff!important;
}

/* Search input styling */
.header-lite-search > div {
  position: relative;
  width: 600px;
  max-width: 100%;
  transition: all 0.3s cubic-bezier(.57,0,0,1);
}
.header-lite-search-active > div {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
}
.header-lite-search input.hs-search-field__input {

}

@media (max-width:992px) {
  .header .icon-asset-7 {
    display: none;
  }
}
@media (min-width:992px) {
  .header-menu .hs-menu-depth-1 .hs-menu-children-wrapper  {
/*     padding: 0 25px; */
  }
  .header-menu .hs-menu-wrapper ul .hs-menu-depth-2 {
   padding: 13px 25px 12px 25px;
  }
  .header-menu .hs-menu-wrapper ul .hs-menu-depth-2 a{
    justify-content: center !important;
  }
	
  .header-lite-search-trigger-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		height: 100%;
	}
}


@media (min-width:992px) {
   header .wider-menu.cta-holder {
		min-width: 872px !important;
	}
  
  header .header-menu > .hs-menu-wrapper .hs-menu-children-wrapper.cta-holder {
    overflow: hidden;
  }
}

@media (min-width:1280px) {
   header .wider-menu.cta-holder {
		min-width: 1160px !important;
	}
}



@media screen and (max-width: 1200px) and (min-width: 992px) {
  header .hs-menu-item.hs-menu-depth-1 a {
    font-size: 13px !important;
  }
  
  header .dnd-section .span9 {
    width: 97% !important;
  }
  
  header .hs-menu-item.hs-menu-depth-1.has-cta {
    position: unset;
  }
  
  header .hs-menu-item.hs-menu-depth-1.has-cta ul.cta-holder {
    right: 0px;
    left: unset;
  }
  
}

@media (min-width:1300px) {
  .header .dnd-section > .row-fluid .span3 {
	width: 221px !important;
}

  
 
}



@media screen and (max-width: 1380px) and (min-width: 1200px) {
  
  header .dnd-section .span9 {
    width: 90% !important;
  }
  
}




@media (min-width: 1350px) {
  	header .header-menu > .hs-menu-wrapper .hs-menu-children-wrapper.cta-holder {
          transform: translateX(-50%) !important;
  }
 
  	.header .header-menu > .hs-menu-wrapper > ul > li:hover > a:after {
      left: calc(50% - 9px);
  }
}

.mobile-open .header:before {
  content: unset;
}

/* Search Suggestion 
.hs-search-field__suggestions {
	background-color: #fff;
}
.hs-search-field__suggestions > * {
	padding: 0.25rem 1.25rem!important;
}
.hs-search-field__suggestions > *:first-child {
	padding-top: 0.5rem!important;
}
.hs-search-field__suggestions > *:last-child {
	padding-bottom: 0.5rem!important;
}
.hs-search-field__suggestions a {
	color: currentColor;
}
.hs-search-field__suggestions a:hover {
	background-color: transparent!important;
}
*/

.header-white:not(.scrolled) .image-lite img {
/* 	 content: url("https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/bol-logo-2020-1k.png"); */
}
 .header-white:not(.scrolled) .header-menu .hs-menu-wrapper ul> li.hs-menu-depth-1 > a {
	 color: white;
}

header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:last-of-type:hover a{
  background: #000 !important;
}
footer .hs-menu-wrapper>ul{display:grid;grid-template-columns:repeat(2,1fr);margin-top:0}
footer .hs-menu-wrapper>ul br{display:block;margin-top:10px;content:""}
footer .hs-menu-wrapper>ul{grid-template-columns:repeat(1,1fr)}
footer{position:relative;z-index:0}
.footer h6{color:black}
.footer .footer__container{background:#f2f2f2}
.footer .footer__container .hs-menu-item a{padding-right:20px;padding-bottom:28px;font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:16px;line-height:18px;color:#000}
.footer .footer__container .hs-menu-item a:hover{color:#fdaf30}
.footer .footer__container .about-us{max-width:489px}
.footer .footer__container .about-us h6{color:black}
.footer .footer__container .about-us .content p{font-family:'Tilda Sans';font-weight:400;font-size:16px;line-height:24px}
.footer .footer__container .content a{color:#202}
.footer .footer__container .content a:hover{color:#fdaf30}
@media(min-width:767px){footer .footer__container{padding-top:60px}
.footer .footer__container .hs-menu-item a{padding-bottom:13px}
}@media(min-width:1100px){footer .hs-menu-wrapper>ul{grid-template-columns:repeat(2,1fr)}
}@media(min-width:1560px){footer .hs-menu-wrapper>ul{grid-template-columns:repeat(3,1fr)}
}@media(max-width:768px){.footer .footer__container .footer-logos .row-number-4>.row-fluid{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}
.footer .footer__container .footer-logos .row-number-4>.row-fluid img{padding-right:15px}
}@media(max-width:767px){footer .hs-menu-wrapper>ul{grid-template-columns:repeat(2,1fr)}
}@media(max-width:500px){footer .hs-menu-wrapper>ul{grid-template-columns:repeat(1,1fr)}
.footer .hs-menu-wrapper.flyouts ul{grid-template-columns:repeat(2,1fr)}
footer .images-grid-footer img{margin-right:15px !important;max-width:80px !important}
footer .first-column-footer{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important;-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}
footer .first-column-footer .about-us{text-align:center !important}
}
body.mobile-open{position:fixed;width:100%}
body.mobile-open header .mobile-cta{background:black}
body.mobile-open header .mobile-cta .header-cta-mobile a{background:#fdaf30;text-align:center}
body .black-header header{background:white}
body .black-header header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1>a{color:#000}
body .black-header header .header-menu .mobile-trigger .hamburger-box .hamburger-inner,body .black-header header .header-menu .mobile-trigger .hamburger-box .hamburger-inner::before,body .black-header header .header-menu .mobile-trigger .hamburger-box .hamburger-inner::after{background-color:#000}
body .black-header header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:hover>a{color:#fdaf30}
header.scrolled .hamburger-inner{height:2px !important;background-color:black !important}
header.scrolled .hamburger-inner::after{background-color:black !important;height:2px !important}
header.scrolled .hamburger-inner::before{background-color:black !important;height:2px !important}
header.scrolled .header-top-row-0-padding{padding-top:12px !important;padding-bottom:12px !important}
@media(min-width:992px){header.scrolled .header-menu .hs-menu-wrapper .hs-menu-item.hs-menu-depth-1>a{color:#000}
}header .header-menu .hs-menu-wrapper>ul{-ms-flex-wrap:nowrap;flex-wrap:nowrap}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:not(:last-of-type){margin-top:5px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:last-of-type{padding-left:0 !important;margin-left:7px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:last-of-type a{padding:7px 22px;background:#fdaf30;font-style:normal;text-transform:uppercase;color:#000}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1 .current-page{color:#fdaf30}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1 a{font-family:'Tilda Sans';font-style:normal;font-weight:400;font-size:18px;line-height:18px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;text-transform:uppercase;color:#fff;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper{width:100%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
header .header-menu .mobile-trigger{margin-right:30px}
header .header-menu .mobile-trigger .hamburger-box .hamburger-inner{height:2px !important;background-color:white}
header .header-menu .mobile-trigger .hamburger-box .hamburger-inner::after{background-color:white;height:2px !important}
header .header-menu .mobile-trigger .hamburger-box .hamburger-inner::before{background-color:white;height:2px !important}
header .header-button{display:none;margin-bottom:20px;font-size:18px}
header .header-button a{padding:7px 22px}
header .header-button a .btn-icon{display:none}
header .image{max-width:98px}
header .image-header{max-width:64px}
@media(min-width:767px){header .image-header{max-width:74px}
}@media(min-width:992px){header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:hover>a{border-bottom:2px solid #fdaf30;color:#fdaf30;padding-bottom:5px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1{padding-top:0;padding-left:10px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:not(:last-of-type){padding-right:10px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1 a{padding-bottom:5px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2:hover{background:#383636}
header .header-button{display:block;text-align:end}
}@media(min-width:1100px){header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1{padding-top:0;padding-left:30px}
header .header-menu .hs-menu-wrapper ul .hs-menu-item.hs-menu-depth-1:not(:last-of-type){padding-right:30px}
}@media(max-width:992px){body.mobile-open header{background:#000}
body.mobile-open header .header-top-row-0-padding{padding-top:20px !important;padding-bottom:20px !important}
body.mobile-open header.scrolled{background:black}
body.mobile-open header.scrolled .header-top-row-0-padding{padding-top:20px !important;padding-bottom:20px !important}
header .header-top-row-0-padding{padding-top:20px !important;padding-bottom:20px !important}
header.scrolled .header-top-row-0-padding{padding-top:20px !important;padding-bottom:20px !important}
header .header-menu .hs-menu-wrapper{background:black}
}




/* Password */
.widget-type-password_prompt input[type="password"] {
	margin-top: 0!important;
	margin-bottom: 1rem;
}



/* Search Results */


.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: ;
  font-size: 1.25rem;
  color: ;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  color: ;
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: ;
}

/* Backup Unsubscribe */
#email-prefs-form input[type="email"] {
	padding: 1rem 1.5rem!important;
	margin-top: 1rem;
}


/* Subscription Preferences */

.email-prefs {
	
}
.email-prefs .item + .item {
	margin-top: 1rem;
}

.email-prefs .item-inner > p {
	opacity: .8;
}
.email-prefs .checkbox-row {
	font-weight: bold;
}
.email-prefs .item .fakelabel span {
	margin-right: .25rem;
}

.subscribe-options {
	margin: 1rem 0;
}
.subscribe-options .header {
	margin: 0;
}
.subscribe-options label {
	display: flex;
	align-items: center;
}
.checkbox-row > span {
	display: flex;
	align-items: center;
}
/* 
/*  
 * Pagination 
 

.blog-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin: 8rem 0 0;
}
.blog-pagination_link {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: .25rem .4rem;
  margin: 0 0.5rem;
	color: rgba(91,195,191,1);
  text-decoration: none;
  line-height: 1;
	border-radius: 0px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.blog-pagination_number-link {
	width: 3rem;
	height: 3rem;
	border: 2px solid rgba(91,195,191,1);
	color:  rgba(91,195,191,1);
	font-weight: bold;
	border-radius: 0px;
}
.blog-pagination_link--active,
.blog-pagination_link--active:visited {
	background-color: rgba(91,195,191,1);
	border: 2px solid rgba(91,195,191,1);
	color: #fff;
}
.blog-pagination_number-link:hover,
.blog-pagination_number-link:focus {
	background: rgba(91,195,191,1);
	color: #fff;
}

.blog-pagination_prev-link,
.blog-pagination_next-link {
  display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
}
.blog-pagination_prev-link {
  text-align: right;
  padding-left: 0px;
  padding-right: 0px;

}
.blog-pagination_next-link {
  text-align: left;
}
.blog-pagination_prev-link:hover,
.blog-pagination_next-link:hover,
.blog-pagination_prev-link:focus,
.blog-pagination_next-link:focus {
  text-decoration: none;
	color: rgba(91,195,191,1);
}
.blog-pagination_prev-link svg,
.blog-pagination_next-link svg {
	fill: rgba(91,195,191,1);
  margin: 0 5px;
}
.blog-pagination_link:hover svg,
.blog-pagination_link:focus svg {
	fill: rgba(91,195,191,1);
}

.blog-pagination_prev-link svg,
.blog-pagination_next-link svg {
	fill: rgba(91,195,191,1);
	height: 1rem;
  margin: 0 5px;
}

.blog-header_author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header_author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header_author-social-links a:hover {
  background-color: ;
}
.blog-header_author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
@media (max-width:767px) {
	.blog-pagination {
		margin: 4rem 0 0;
	}
	.blog-pagination_link {
		margin: 0 0.25rem;
	}
	.blog-pagination_prev-link {
		margin-right: 0.5rem;
	}
	.blog-pagination_next-link {
		margin-left: 0.5rem;
	}
}


/* ----------------- Post ---------------- */

/*  
 * Post Title 
 */

.blog-post_meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-top: 1.5rem;
	font-size: 1rem;
}
.blog-post_meta a {
	margin-right: .75rem;
	color: inherit;
}
	.blog-post_meta a:hover {
		color: #FDAF30;
	}

/*  
 * Post Body 
 */
.blog-post_body {
  font-size: 1.1rem;
}

.blog-post_body * + h1,
.blog-post_body * + h2,
.blog-post_body * + h3,
.blog-post_body * + h4,
.blog-post_body * + h5,
.blog-post_body * + h6 {
	margin-top: 1em;
}


/*  
 * Tags 
 */
.blog-template-01 .blog-post_tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog-template-01 .blog-post_tag-link {
	padding: .25rem .5rem;
	border: 2px solid #000000;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0.5rem 0.5rem 0;
	font-size: .8rem;
	transition: all ease 200ms;
	font-weight: bold;
	border-radius: 0px;
}
.blog-template-01 .blog-post_tag-link:hover {
	background: #FDAF30;
	color: #fff;
	border-color: #FDAF30;
}

/*  
 * Table of Contents
 

.toc-content h2:before, .toc-content h3:before {
	content: "";
	display: block;
	height: calc(var(--header-height) + 1rem);
	margin-top: calc(-1 * (var(--header-height) + 1rem));
	visibility: hidden;
}
.toc-sticky {
	top: calc(var(--header-height) + 1rem);
}
.toc {
	overflow-y: auto;
}
.toc > .toc-list {
	overflow: hidden;
	position: relative;
}
.toc > .toc-list li {
	list-style: none;
}
.toc-list {
	margin: 0;
	padding-left: 10px;
}
a.toc-link {
	color: #282828;
	height: 100%;
}
.is-collapsible {
	max-height: 1000px;
	overflow: hidden;
	transition: all 300ms ease-in-out;
}
.is-collapsed {
	max-height: 0;
}
.is-position-fixed {
	position: fixed !important;
	top: 0;
}
.is-active-link {
	font-weight: bold;
	color: #000000;
}
.toc-link::before {
	background-color: #eee;
	content: " ";
	display: inline-block;
	height: inherit;
	left: 0;
	margin-top: -1px;
	position: absolute;
	width: 2px;
}
.is-active-link::before {
	background-color: #FDAF30;
}

/* ==========================================================================
    Blog 02
   ========================================================================== */
/* 
.blog-template-02 {
	
}
*/
/* ----------------- Listing ---------------- */
/* 
.blog-template-02 .blog-index_post + .blog-index_post {
	margin-top: 7rem;
}
.blog-template-02 .blog-index_post-image {
	padding-bottom: 50%;
	display: block;
	margin-bottom: 3rem;
}
.blog-template-02 .blog-index_post-content {
	max-width: 660px;
	display: block;
	margin: 0 auto;
}


@media (min-width: 768px) {
	.blog-template-02 .blog-index_post-image {
		padding-bottom: 30%;
	}
}

/* ----------------- Listing 01 ---------------- 
.blog-template-01 .blog-index-01_post-image-wrapper {
	position: relative;
	display: block;
	overflow: hidden;
}
.blog-template-01 .blog-index-01_post-image {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  transition: 7s ease transform;
}
  .blog-template-01 .blog-index-01_post-image-wrapper:hover .blog-index-01_post-image {
		transform: scale(1.1) rotateZ(2deg);
		-webkit-transform: scale(1.1) rotateZ(2deg);
		-ms-transform: scale(1.1) rotateZ(2deg);
  }

/* ----------------- Post ---------------- 

.blog-template-02 .blog-post_header {
	padding: 7rem 0 5rem;
}

.blog-template-02 .blog-post_image {
	padding-bottom: 30%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

@media (min-width:768px) {
	.blog-template-02 .blog-post_image img {
		display: none;
	}
}
*/
/*  
 * Body 

.blog-template-02 .blog-post_content {
	padding: 3rem 0 7rem;
}

 
 
.blog-comments .comment-reply-to.hs-button {
	margin-top: 1rem;
}
.blog-comments form.hs-form {
  margin-top: 2rem;
}
.blog-template-02 .blog-post_comments {
	border-top: 1px solid ;
}

@media (min-width: 768px) {
	.blog-post_comments .row-fluid {
		display: flex;
	}
}



.blog-template-02 .blog-post_tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.blog-template-02 .blog-post_tag-link {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-right: 1rem;
	font-size: 1rem;
	transition: all ease 200ms;
	font-weight: bold;
}
.blog-template-02 .blog-post_tag-link:hover {
	color: #FDAF30;
	opacity: 1;
}

 */
.blog-template-redesign {
/* 	 background-image: linear-gradient(to top, #f2faff, #fff); */
/* 	 padding-bottom: 162px; */
}

 .blog-template-dots-left {
	 position: fixed;
	 width: 290.3px;
	 height: 694.2px;
	 top: 364px;
	 left: 0;
	 background-color: rgba(0, 0, 0, 0.1);
	 opacity: 0.01;
}
 .blog-template-dots-right {
	 position: fixed;
	 width: 290.3px;
	 height: 694.2px;
	 top: 17px;
	 right: 0;
	 background-color: rgba(0, 0, 0, 0.1);
	 opacity: 0.01;
}
 .main-blog-redesign {
/* 	 margin-top: 276px;
	 padding: 0 99px; */
}
 .blog-redesign-row {
	 display: flex;
}
 .blog-redesign-row.wrap {
	 flex-wrap: wrap;
}
 .blog-redesign-section {
	 display: flex;
	 flex-direction: row;
	 justify-content: space-between;
	 position: relative;
	 z-index: 2;
}
 .blog-redesign-section.post-body {
	 display: block;
}
 .blog-redesign-section.post-body .blog-redesign-row {
	 display: block;
}
 .blog-redesign-insights i:before {
	 color: #37bdce;
}
 .blog-insights {
	 margin: 0 0 0 8px;
	 font-family: Inter;
	 font-size: 14px;
	 font-weight: bold;
	 line-height: 1.86;
	 letter-spacing: 0.03px;
	 color: #37bdce;
}
 .blog-redesign-insights {
	 max-width: 115px;
	 border-radius: 2px;
	 border: solid 1px #37bdce;
	 background-color: rgba(55, 189, 206, 0.2);
	 padding: 2px 11px;
}
 .blog-redesign-date {
	 margin-bottom: auto;
	 margin-top: auto;
	 margin-left: 26px;
	 font-size: 14px;
	 font-weight: bold;
	 line-height: 1.43;
	 letter-spacing: 0.35px;
	 color: #adb2c3;
}
 .blog-redesign-title {
	 margin-top: 17px;
	 font-size: 48px;
	 font-weight: bold;
	 line-height: 1.21;
	 text-align: left;
	 color: #f8efe5;
}
 .blog-redesign-tag {
	 margin-top: 18px;
	 font-size: 14px;
	 font-weight: bold;
	 line-height: 1.21;
	 text-align: left;
	 color: #f8efe5;
	 text-decoration: underline;
}
 .blog-redesign-row.has-image {
	 margin: 0 -99px;
	 margin-top: 75px;
	 display: block;
	 width: calc(100% + 99px + 99px);
}
 .blog-redesign-section.has-image {
	 display: block;
}
 .blog-redesign-img {
	 height: auto;
	 width: 100%;
}
 .blog-redesign-author {
	 margin-top: 107px;
	 font-size: 14px;
	 font-weight: bold;
	 line-height: 1.21;
	 color: #f8efe5;
	 text-decoration: underline;
}
 .blog-redesign-text {
	 margin-top: 30px;
}
 .blog-redesign-text h2 {
	 font-family: Inter;
	 font-size: 32px !important;
	 font-weight: bold;
	 line-height: 1.44;
	 color: #f8efe5;
}
 .blog-redesign-text p {
	 font-family: Inter;
	 font-size: 20px !important;
	 line-height: 1.7;
	 letter-spacing: 0.04px;
	 text-align: left;
	 color: #000000;
}
 .blog-redesign-text h3 {
	 font-family: Inter;
	 font-size: 24px !important;
	 font-weight: bold;
	 line-height: 1.92;
	 color: #f2f2f2;
}
 .blog-redesign-text h4 {
	 font-family: Inter;
	 font-size: 20px !important;
	 font-weight: bold;
	 line-height: 2.3;
	 color: #f8efe5;
}
 .blog-redesign-row.has-icon {
	 margin-top: 20px;
	 margin-bottom: 77px;
}
 .blog-template-redesign .social-links-lite a {
	 margin: 0 27px 0 0;
	 font-size: 20px;
	 color: #f2f2f2;
	 cursor: pointer;
}
 .blog-redesign-button {
	 padding: 12px 30px;
	 font-size: 16px;
	 font-weight: bold;
	 font-stretch: normal;
	 line-height: 1.25;
	 letter-spacing: normal;
	 text-align: left;
	 border-radius: 31px;
	 border: solid 2px #2d4c7a;
	 color: #f8efe5;
}
 .blog-redesign-button a {
	 color: #f8efe5;
}
 .blog-redesign-button.right i:before {
	 margin-left: 69px;
}
 .blog-redesign-button.left i:before {
	 transform: rotate(180deg);
	 margin-right: 34px;
}
 .blog-template-redesign .blog-redesign-text blockquote, .blog-redesign-quote-box {
	 width: 110%;
	 left: -5%;
}
 @media (min-width: 500px) {
	 .blog-template-redesign .blog-redesign-text blockquote, .blog-redesign-quote-box {
		 width: calc(100% + 2px);
		 left: 0;
	}
}

 .blog-template-redesign .blog-redesign-text blockquote,
 .news-blog-post .blog-redesign-text blockquote {
	 border-left: none;
	 max-width: 100%;
}
 .blog-template-redesign blockquote, .news-blog-post .blog-redesign-text blockquote, .blog-redesign-quote-box {
	 margin: 68px -1px 83px;
	 padding: 119px 64px 54px 65px;
	 box-shadow: 0 0 30px 0 rgba(135, 154, 197, 0.31);
	 background-color: #fff;
	 position: relative;
}
 .news-blog-post .blog-redesign-text blockquote:after, .blog-redesign-quote-box:after {
	 content: "";
	 height: 1px;
	 top: 66px;
	 right: 0px;
	 left: 0px;
	 position: absolute;
	 background-color: #dee1f5;
}
 .news-blog-post .blog-redesign-text blockquote h2, .blog-template-redesign .blog-redesign-text blockquote h2 {
	 margin-bottom: 32px;
	 font-family: Inter !important;
	 font-size: 26px !important;
	 line-height: 1.69 !important;
	 letter-spacing: 0.05px !important;
	 color: #000000 !important;
	 font-weight: normal !important;
}
 .news-blog-post .blog-redesign-text blockquote h2 span, 
.blog-template-redesign .blog-redesign-text blockquote h2 span {
	 margin-bottom: 32px;
	 font-family: Inter !important;
	 font-size: 26px !important;
	 line-height: 1.69 !important;
	 letter-spacing: 0.05px !important;
	 color: #000000 !important;
	 font-weight: normal !important;
}
 .blog-redesign-quote-box-text {
	 margin-bottom: 32px;
	 font-family: Inter !important;
	 font-size: 26px !important;
	 line-height: 1.69 !important;
	 letter-spacing: 0.05px !important;
	 color: #000000 !important;
	 font-weight: normal !important;
}
 .news-blog-post .blog-redesign-text blockquote h6 {
	 font-family: Inter;
	 font-size: 14px !important;
	 font-weight: normal !important;
	 line-height: 20px !important;
	 letter-spacing: 0.35px !important;
	 color: #adb2c3 !important;
	 margin-bottom: 0 !important;
	 position: relative !important;
}
 .news-blog-post .blog-redesign-text blockquote h6 span {
	 font-family: Inter;
	 font-size: 14px !important;
	 font-weight: normal !important;
	 line-height: 20px !important;
	 letter-spacing: 0.35px !important;
	 color: #adb2c3 !important;
	 margin-bottom: 0 !important;
	 position: relative !important;
}
 .blog-template-redesign .blog-redesign-text blockquote h6, .blog-redesign-quote-box h6 {
	 font-family: Inter;
	 font-size: 14px !important;
	 font-weight: normal !important;
	 line-height: 20px !important;
	 letter-spacing: 0.35px !important;
	 color: #adb2c3 !important;
	 margin-bottom: 0 !important;
	 position: relative !important;
}
 .blog-template-redesign .blog-redesign-text blockquote h2 {
	 position: relative;
}
 .news-blog-post .blog-redesign-text blockquote h2 {
	 position: relative;
}
 .news-blog-post .blog-redesign-text blockquote h2::before {
	 content: '';
	 top: -67px;
	 position: absolute;
	 width: 28px;
	 height: 28px;
	 border: solid 1px #45dcd3;
	 border-radius: 50%;
	 background: white;
	 z-index: 9;
}
 .news-blog-post .blog-redesign-text blockquote h2::after {
	 left: 7px;
	 content: '';
	 top: -60px;
	 position: absolute;
	 width: 14px;
	 border-radius: 50%;
	 height: 14px;
	 background: #45dcd3;
	 z-index: 10;
}
 .blog-template-redesign .blog-redesign-text blockquote  h2::before {
	 content: '';
	 top: -67px;
	 position: absolute;
	 width: 28px;
	 height: 28px;
	 border: solid 1px #45dcd3;
	 border-radius: 50%;
	 background: white;
	 z-index: 9;
}
 .blog-template-redesign .blog-redesign-text blockquote  h2::after {
	 left: 7px;
	 content: '';
	 top: -60px;
	 position: absolute;
	 width: 14px;
	 border-radius: 50%;
	 height: 14px;
	 background: #45dcd3;
	 z-index: 10;
}
 .blog-redesign-quote-circle {
	 border-radius: 50%;
	 width: 28px;
	 height: 28px;
	 border: solid 1px #45dcd3;
	 background-color: #fff;
	 position: absolute;
	 top: 52px;
	 left: 65px;
	 z-index: 1;
}
 .blog-redesign-quote-circle:after {
	 content: "";
	 border-radius: 50%;
	 width: 14px;
	 height: 14px;
	 background-color: #f2f2f2;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 z-index: 1;
}
 @media (max-width: 500px) {
	 .blog-template-redesign .blog-redesign-text blockquote,
	 .news-blog-post .blog-redesign-text blockquote {
		 max-width: 110%;
		 width: 110%;
		 left: -5%;
	}
}
 @media (max-width: 1280px) {
	 .blog-redesign-button.right i:before {
		 margin-left: 45px;
	}
	 .blog-redesign-button.left i:before {
		 margin-right: 10px;
	}
	 .main-blog-redesign {
/* 		 padding: 0 50px; */
	}
	 .blog-redesign-row.has-image {
		 margin: 45px -50px 0;
		 width: calc(100% + 50px + 50px);
	}
}
 @media (max-width: 900px) {
	 .blog-redesign-button {
		 padding: 8px 15px;
	}
}
 @media (max-width: 768px) {
	 .blog-redesign-title {
		 font-size: 42px;
	}
	 .main-blog-redesign {
/* 		 padding: 0 0px; */
	}
	 .blog-redesign-row.has-image {
		 margin: 75px -30px 0;
		 width: calc(100% + 30px + 30px);
	}
	 .blog-redesign-author {
		 margin-top: 57px;
	}
	 .blog-template-redesign .blog-redesign-text blockquote, .blog-redesign-quote-box {
		 margin: 45px 0 60px;
	}
	 .blog-template-redesign .blog-redesign-text  blockquote, 
   .blog-redesign-quote-box {
		 padding: 119px 45px 54px 45px;
	}
	 .main-blog-redesign {
/* 		 margin-top: 200px; */
	}
}
 @media (max-width: 560px) {
	 .blog-redesign-title {
		 font-size: 36px !important;
	}
	 .blog-redesign-row.has-image {
		 margin: 75px -15px 0;
		 width: calc(100% + 15px + 15px);
	}
	 .blog-redesign-button span {
		 display: none;
	}
	 .blog-redesign-button.right i:before {
		 margin-left: 0;
	}
	 .blog-redesign-button.left i:before {
		 margin-right: 0;
	}
	 .blog-redesign-row.has-icon {
		 margin-top: 47px;
		 margin-bottom: 47px;
	}
}
 @media (max-width: 440px) {
	 .blog-redesign-row.has-insights {
		 flex-direction: column;
	}
	 .blog-redesign-date {
		 margin-top: 30px;
		 margin-left: 0px;
	}

	 .blog-template-redesign.container-lines {
		 padding-left: 47px !important;
		 padding-right: 47px !important;
	}
}
 .news-blog-post .blog-redesign-author {
	 margin-top: 50px;
}
 .news-blog-post .theme-label {
	 display: none;
	 padding: 8px 14px 7px 9px;
	 border-radius: 2px;
	 border: solid 1px #4a3564;
	 background-color: rgba(74, 53, 100, 0.2);
}
 .news-blog-post .published-date {
	 font-family: Inter;
	 font-size: 24px;
	 font-weight: bold;
	 font-stretch: normal;
	 font-style: normal;
	 line-height: 1.92;
	 letter-spacing: normal;
	 text-align: left;
	 color: #f2f2f2;
	 margin-top: 63px;
}
 .news-blog-post .theme-label:first-of-type {
	 display: flex;
}
 .news-blog-post .theme-label i {
	 color: #4a3564;
}
 .news-blog-post .theme-label p {
	 color: #4a3564;
	 font-size: 14px;
	 font-weight: bold;
	 font-stretch: normal;
	 font-style: normal;
	 line-height: 1.86;
	 letter-spacing: 0.03px;
	 text-align: left;
	 color: #FDAF30;
}
 @media (max-width: 400px) {
	 .news-blog-post .published-date {
		 font-size: 17px;
		 margin-top: 30px;
	}
}
 .blog-redesign-text, .blog-redesign-column, .blog-redesign-row {
	 width: 100%;
}
.error-404-section{
  background-image: linear-gradient(63deg, #356087 -12%, #4f3166 103%);
  padding: 307px 0 307px;
}
  
.main-error-404{
  padding: 0 50px;
}  
  
.error-404-grid-container{
  display: grid;
  grid-template-areas:
    'title description'
    'title content';
  grid-row-gap: 11px;
  grid-column-gap: 48px;
  margin-bottom: 80px;
}  

.error-404-title{
  color: #fff;
  grid-area: title;
  line-height: 7.625rem;
  margin-bottom: 0;
}

.error-404-description{
  font-family: Inter;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.04px;
  color: #f2f2f2;
  grid-area: description;
  margin-bottom: 0;
  display: flex;
  align-items: end;
}
  
.error-404-content{
  font-family: Inter;
  font-size: 16px;
  line-height: 1.63;
  letter-spacing: 0.03px;
  color: #fff;
  grid-area: content;
  font-weight: normal:
}
  
.error-404-row{
  display: flex;
  justify-content: space-between;
}  

.error-404-button{
  padding: 12px 30.3px 12px 39px;
  width: 197px;
  border-radius: 31px;
  color: #fff;
  background-color: #f2f2f2;
  justify-content: space-between;
  display: flex;
}  
  
@media (min-width: 1400px) {
  .main-error-404 {
    padding: 0 99px;
  }
}
  
@media (max-width: 1280px) {
  .error-404-section{
    padding: 207px 0 207px;
  }
  
  .main-error-404 {
      padding: 0 50px;
  }
  
  .error-404-button{
    width: 150px;
    padding: 6px 15px 6px 15px;
  }  
}
    
@media (max-width: 1073px) {
  .error-404-grid-container {
    margin-bottom: 50px;
    text-align: center;
    grid-template-areas:
      'title'
      'description'
      'content';
  } 
  
  .error-404-description {
    display: block;
  }
  
  .error-404-row {
     flex-direction: column;
      align-items: center;
  }
  
  .error-404-button {
    margin-bottom: 30px;
  }
}
  
@media (max-width: 768px) {
  .error-404-section{
    padding: 107px 0 107px;
  }
  
  .main-error-404 {
      padding: 0 30px;
  }
}
  
@media (max-width: 560px) {
  .main-error-404 {
      padding: 0 15px;
  }
}
.backup-unsubscribe {
	 padding-top: 200px;
	 padding-bottom: 100px;
}
 .backup-unsubscribe .page-header h1 {
	 font-size: 90px;
}
 @media (max-width: 767px) {
	 .backup-unsubscribe .page-header h1 {
		 font-size: 10vw !important;
	}
}
 .backup-unsubscribe form #content h3 {
	 font-size: 30px !important;
}
 @media (max-width: 767px) {
	 .backup-unsubscribe form #content h3 {
		 font-size: 5vw !important;
	}
}
 .backup-unsubscribe form #content > div {
	 padding-bottom: 20px !important;
}
 .backup-unsubscribe form #content > div input {
	 padding: 10px 20px !important;
	 max-width: 240px !important;
}
 .backup-unsubscribe form #content > input {
	 padding: 12px 31px !important;
	 font-family: Inter;
	 font-size: 16px;
	 font-weight: bold;
	 font-stretch: normal;
	 font-style: normal;
	 line-height: 1.5;
	 letter-spacing: 0.4px;
	 text-align: left;
	 opacity: 1;
	 background-image: linear-gradient(to left, #356087, #4f3166) !important;
}
@media (max-width: 767px){
.backup-unsubscribe form #content > input {
   font-size: 13px;
  }
}
.subscription-preferences {
	 padding-top: 200px;
	 padding-bottom: 100px;
}
 .subscription-preferences form .page-header h1 {
	 font-size: 90px;
}
 .subscription-preferences form .page-header h2 {
	 font-size: 40px;
}
 .subscription-preferences form .email-prefs p.header {
	 position: relative;
	 padding-left: 0px;
	 padding-right: 0px;
   box-shadow: unset;
}
 .subscription-preferences form .email-prefs .subscribe-options p.header {
	 position: relative;
   box-shadow: unset;
}
 
@media (max-width: 767px){
   .subscription-preferences form .page-header h1 {
	     font-size: 8vw !important;
}
   .subscription-preferences form .page-header h2 {
	 font-size: 5vw !important;
}
}

.subscription-preferences form .email-prefs .hs-button {
    padding: 12px 31px !important;
    font-family: Inter;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.4px;
    text-align: left;
    opacity: 1;
    background-image: linear-gradient(to left, #356087, #4f3166) !important;

}

.subscription-preferences form .email-prefs .item .item-inner .checkbox-row input{
      margin: 3px 10px 3px 0px;
}

.subscription-preferences form .email-prefs .item .item-inner p{
  padding-left: 26px;
}

@media (max-width: 500px){
.subscription-preferences form .email-prefs .item .fakelabel span{
  margin-right: 0 rem; 
    font-size: 10px;

  }
  .subscription-preferences form .email-prefs .item .item-inner p{
     font-size: 10px;
  }
}
.individual-neighborhoods .image-text-repeater-wrapper{
    align-items: center;
}
.service-page.image-text-repeater .image-text-repeater-wrapper .content .description{
      padding-bottom: 41px;
}
@media(max-width:768px){
.testimonials.hero .hero-content .hero-header{
  font-size: 60px!important;
} 
}

@media(min-width:992px){
  .individual-neighborhoods.image-text-repeater .image-text-repeater-wrapper .content .repeater-header h2{
    font-size: 96px;
    line-height: 100px;
  }
}
@media(max-width:500px){
  .chicago-neighborhoods.hero h1.hero-header{
    font-size: 50px !important;
    line-height: 70px !important;
    margin-bottom: 5px !important;
}
  .thank-you.hero .hero-content .hero-header{
    text-align: center;
  }
}
















* {
  --base: #000000;
  --primary: #FDAF30;
  --secondary: #f2f2f2;
  --danger: ;
  --dark: #f8efe5;
  --white: #ffffff;

	--h1_color: #000000;
	--h2_color: #000000;
	--h3_color: #000000;
	--h4_color: #000000;
	--h5_color: #000000;
	--h6_color: #000000;
	
	--base-50: #878787;
	--base-100: #787878;
	--base-200: #5a5a5a;
	--base-300: #3c3c3c;
	--base-400: #1e1e1e;
	--base-500: #000000;
	--base-600: #000000;
	--base-700: #000000;
	--base-800: #000000;
	--base-900: #000000;
	
	--primary-50: #ffffb7;
	--primary-100: #ffffa8;
	--primary-200: #ffff8a;
	--primary-300: #ffeb6c;
	--primary-400: #ffcd4e;
	--primary-500: #FDAF30;
	--primary-600: #df9112;
	--primary-700: #c17300;
	--primary-800: #a35500;
	--primary-900: #853700;
	
	--white-50: #ffffff;
	--white-100: #ffffff;
	--white-200: #ffffff;
	--white-300: #ffffff;
	--white-400: #ffffff;
	--white-500: #ffffff;
	--white-600: #ffffff;
	--white-700: #ffffff;
	--white-800: #ffffff;
	--white-900: #ffffff;
}