/* Base - site-specific settings */
/*Theme colors*/
/* General colors */
/*General typography*/
/*Error*/
/*Color options*/
.color-white {
  color: #FFF;
}

.color-black {
  color: #000;
}

.color-yellow {
  color: #F3AF34;
}

.color-gold {
  color: #EF8930;
}

.color-orange {
  color: #EC5F2C;
}

.color-sienna {
  color: #6A1F16;
}

/*Background colors options*/
.bg-white {
  background-color: #FFF;
}

.bg-black {
  background-color: #000;
  color: #FFF;
}

.bg-yellow {
  background-color: #F3AF34;
}

.bg-gold {
  background-color: #EF8930;
}

.bg-orange {
  background-color: #EC5F2C;
}

.bg-sienna {
  background-color: #6A1F16;
}

/*Global Options*/
/*Typography*/
/*Font path*/
/*Grid*/
/*Gutters*/
/*Used to set the padding on .container-fluid, per breakpoint*/
/*Wrapper max width*/
/*Container max width*/
/*Breakpoints*/
/*Container Widths*/
/*Transition settings*/
/*Modals*/
/*Borders*/
/*Global border radius*/
/*Sliders*/
/*Font mixins*/
/* Vendor - unedited vendor base styles */
/*Bootstrap grid/reset*/
/*!
 * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}

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

.col {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1450px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1800px) {
  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-grid {
    display: grid !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxxl-none {
    display: none !important;
  }

  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxxl-row {
    flex-direction: row !important;
  }

  .flex-xxxl-column {
    flex-direction: column !important;
  }

  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxxl-center {
    justify-content: center !important;
  }

  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxxl-center {
    align-items: center !important;
  }

  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxxl-center {
    align-content: center !important;
  }

  .align-content-xxxl-between {
    align-content: space-between !important;
  }

  .align-content-xxxl-around {
    align-content: space-around !important;
  }

  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxxl-auto {
    align-self: auto !important;
  }

  .align-self-xxxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxxl-center {
    align-self: center !important;
  }

  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }

  .order-xxxl-first {
    order: -1 !important;
  }

  .order-xxxl-0 {
    order: 0 !important;
  }

  .order-xxxl-1 {
    order: 1 !important;
  }

  .order-xxxl-2 {
    order: 2 !important;
  }

  .order-xxxl-3 {
    order: 3 !important;
  }

  .order-xxxl-4 {
    order: 4 !important;
  }

  .order-xxxl-5 {
    order: 5 !important;
  }

  .order-xxxl-last {
    order: 6 !important;
  }

  .m-xxxl-0 {
    margin: 0 !important;
  }

  .m-xxxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxxl-3 {
    margin: 1rem !important;
  }

  .m-xxxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxxl-5 {
    margin: 3rem !important;
  }

  .m-xxxl-auto {
    margin: auto !important;
  }

  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .me-xxxl-0 {
    margin-right: 0 !important;
  }

  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxxl-auto {
    margin-right: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxxl-auto {
    margin-left: auto !important;
  }

  .p-xxxl-0 {
    padding: 0 !important;
  }

  .p-xxxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxxl-3 {
    padding: 1rem !important;
  }

  .p-xxxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxxl-5 {
    padding: 3rem !important;
  }

  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*!
 * Bootstrap Reboot v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 0;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 375px) {
  .sticky-ms-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1450px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1800px) {
  .sticky-xxxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 0 solid transparent !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 0 solid transparent !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 0 solid transparent !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 0 solid transparent !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 0 solid transparent !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #0d6efd !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #198754 !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-white {
  color: #fff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #0d6efd !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 22px !important;
}

.rounded-2 {
  border-radius: 8px !important;
}

.rounded-3 {
  border-radius: 35px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.rounded-end {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.rounded-start {
  border-bottom-left-radius: 8px !important;
  border-top-left-radius: 8px !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 375px) {
  .float-ms-start {
    float: left !important;
  }

  .float-ms-end {
    float: right !important;
  }

  .float-ms-none {
    float: none !important;
  }

  .d-ms-inline {
    display: inline !important;
  }

  .d-ms-inline-block {
    display: inline-block !important;
  }

  .d-ms-block {
    display: block !important;
  }

  .d-ms-grid {
    display: grid !important;
  }

  .d-ms-table {
    display: table !important;
  }

  .d-ms-table-row {
    display: table-row !important;
  }

  .d-ms-table-cell {
    display: table-cell !important;
  }

  .d-ms-flex {
    display: flex !important;
  }

  .d-ms-inline-flex {
    display: inline-flex !important;
  }

  .d-ms-none {
    display: none !important;
  }

  .flex-ms-fill {
    flex: 1 1 auto !important;
  }

  .flex-ms-row {
    flex-direction: row !important;
  }

  .flex-ms-column {
    flex-direction: column !important;
  }

  .flex-ms-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-ms-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-ms-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-ms-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-ms-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-ms-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-ms-wrap {
    flex-wrap: wrap !important;
  }

  .flex-ms-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-ms-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-ms-0 {
    gap: 0 !important;
  }

  .gap-ms-1 {
    gap: 0.25rem !important;
  }

  .gap-ms-2 {
    gap: 0.5rem !important;
  }

  .gap-ms-3 {
    gap: 1rem !important;
  }

  .gap-ms-4 {
    gap: 1.5rem !important;
  }

  .gap-ms-5 {
    gap: 3rem !important;
  }

  .justify-content-ms-start {
    justify-content: flex-start !important;
  }

  .justify-content-ms-end {
    justify-content: flex-end !important;
  }

  .justify-content-ms-center {
    justify-content: center !important;
  }

  .justify-content-ms-between {
    justify-content: space-between !important;
  }

  .justify-content-ms-around {
    justify-content: space-around !important;
  }

  .justify-content-ms-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-ms-start {
    align-items: flex-start !important;
  }

  .align-items-ms-end {
    align-items: flex-end !important;
  }

  .align-items-ms-center {
    align-items: center !important;
  }

  .align-items-ms-baseline {
    align-items: baseline !important;
  }

  .align-items-ms-stretch {
    align-items: stretch !important;
  }

  .align-content-ms-start {
    align-content: flex-start !important;
  }

  .align-content-ms-end {
    align-content: flex-end !important;
  }

  .align-content-ms-center {
    align-content: center !important;
  }

  .align-content-ms-between {
    align-content: space-between !important;
  }

  .align-content-ms-around {
    align-content: space-around !important;
  }

  .align-content-ms-stretch {
    align-content: stretch !important;
  }

  .align-self-ms-auto {
    align-self: auto !important;
  }

  .align-self-ms-start {
    align-self: flex-start !important;
  }

  .align-self-ms-end {
    align-self: flex-end !important;
  }

  .align-self-ms-center {
    align-self: center !important;
  }

  .align-self-ms-baseline {
    align-self: baseline !important;
  }

  .align-self-ms-stretch {
    align-self: stretch !important;
  }

  .order-ms-first {
    order: -1 !important;
  }

  .order-ms-0 {
    order: 0 !important;
  }

  .order-ms-1 {
    order: 1 !important;
  }

  .order-ms-2 {
    order: 2 !important;
  }

  .order-ms-3 {
    order: 3 !important;
  }

  .order-ms-4 {
    order: 4 !important;
  }

  .order-ms-5 {
    order: 5 !important;
  }

  .order-ms-last {
    order: 6 !important;
  }

  .m-ms-0 {
    margin: 0 !important;
  }

  .m-ms-1 {
    margin: 0.25rem !important;
  }

  .m-ms-2 {
    margin: 0.5rem !important;
  }

  .m-ms-3 {
    margin: 1rem !important;
  }

  .m-ms-4 {
    margin: 1.5rem !important;
  }

  .m-ms-5 {
    margin: 3rem !important;
  }

  .m-ms-auto {
    margin: auto !important;
  }

  .mx-ms-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-ms-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-ms-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-ms-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-ms-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-ms-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-ms-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-ms-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-ms-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-ms-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-ms-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-ms-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-ms-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-ms-0 {
    margin-top: 0 !important;
  }

  .mt-ms-1 {
    margin-top: 0.25rem !important;
  }

  .mt-ms-2 {
    margin-top: 0.5rem !important;
  }

  .mt-ms-3 {
    margin-top: 1rem !important;
  }

  .mt-ms-4 {
    margin-top: 1.5rem !important;
  }

  .mt-ms-5 {
    margin-top: 3rem !important;
  }

  .mt-ms-auto {
    margin-top: auto !important;
  }

  .me-ms-0 {
    margin-right: 0 !important;
  }

  .me-ms-1 {
    margin-right: 0.25rem !important;
  }

  .me-ms-2 {
    margin-right: 0.5rem !important;
  }

  .me-ms-3 {
    margin-right: 1rem !important;
  }

  .me-ms-4 {
    margin-right: 1.5rem !important;
  }

  .me-ms-5 {
    margin-right: 3rem !important;
  }

  .me-ms-auto {
    margin-right: auto !important;
  }

  .mb-ms-0 {
    margin-bottom: 0 !important;
  }

  .mb-ms-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-ms-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-ms-3 {
    margin-bottom: 1rem !important;
  }

  .mb-ms-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-ms-5 {
    margin-bottom: 3rem !important;
  }

  .mb-ms-auto {
    margin-bottom: auto !important;
  }

  .ms-ms-0 {
    margin-left: 0 !important;
  }

  .ms-ms-1 {
    margin-left: 0.25rem !important;
  }

  .ms-ms-2 {
    margin-left: 0.5rem !important;
  }

  .ms-ms-3 {
    margin-left: 1rem !important;
  }

  .ms-ms-4 {
    margin-left: 1.5rem !important;
  }

  .ms-ms-5 {
    margin-left: 3rem !important;
  }

  .ms-ms-auto {
    margin-left: auto !important;
  }

  .p-ms-0 {
    padding: 0 !important;
  }

  .p-ms-1 {
    padding: 0.25rem !important;
  }

  .p-ms-2 {
    padding: 0.5rem !important;
  }

  .p-ms-3 {
    padding: 1rem !important;
  }

  .p-ms-4 {
    padding: 1.5rem !important;
  }

  .p-ms-5 {
    padding: 3rem !important;
  }

  .px-ms-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-ms-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-ms-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-ms-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-ms-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-ms-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-ms-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-ms-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-ms-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-ms-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-ms-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-ms-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-ms-0 {
    padding-top: 0 !important;
  }

  .pt-ms-1 {
    padding-top: 0.25rem !important;
  }

  .pt-ms-2 {
    padding-top: 0.5rem !important;
  }

  .pt-ms-3 {
    padding-top: 1rem !important;
  }

  .pt-ms-4 {
    padding-top: 1.5rem !important;
  }

  .pt-ms-5 {
    padding-top: 3rem !important;
  }

  .pe-ms-0 {
    padding-right: 0 !important;
  }

  .pe-ms-1 {
    padding-right: 0.25rem !important;
  }

  .pe-ms-2 {
    padding-right: 0.5rem !important;
  }

  .pe-ms-3 {
    padding-right: 1rem !important;
  }

  .pe-ms-4 {
    padding-right: 1.5rem !important;
  }

  .pe-ms-5 {
    padding-right: 3rem !important;
  }

  .pb-ms-0 {
    padding-bottom: 0 !important;
  }

  .pb-ms-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-ms-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-ms-3 {
    padding-bottom: 1rem !important;
  }

  .pb-ms-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-ms-5 {
    padding-bottom: 3rem !important;
  }

  .ps-ms-0 {
    padding-left: 0 !important;
  }

  .ps-ms-1 {
    padding-left: 0.25rem !important;
  }

  .ps-ms-2 {
    padding-left: 0.5rem !important;
  }

  .ps-ms-3 {
    padding-left: 1rem !important;
  }

  .ps-ms-4 {
    padding-left: 1.5rem !important;
  }

  .ps-ms-5 {
    padding-left: 3rem !important;
  }

  .text-ms-start {
    text-align: left !important;
  }

  .text-ms-end {
    text-align: right !important;
  }

  .text-ms-center {
    text-align: center !important;
  }
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1450px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1800px) {
  .float-xxxl-start {
    float: left !important;
  }

  .float-xxxl-end {
    float: right !important;
  }

  .float-xxxl-none {
    float: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-grid {
    display: grid !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxxl-none {
    display: none !important;
  }

  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxxl-row {
    flex-direction: row !important;
  }

  .flex-xxxl-column {
    flex-direction: column !important;
  }

  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxxl-0 {
    gap: 0 !important;
  }

  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxxl-3 {
    gap: 1rem !important;
  }

  .gap-xxxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxxl-center {
    justify-content: center !important;
  }

  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxxl-center {
    align-items: center !important;
  }

  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxxl-center {
    align-content: center !important;
  }

  .align-content-xxxl-between {
    align-content: space-between !important;
  }

  .align-content-xxxl-around {
    align-content: space-around !important;
  }

  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxxl-auto {
    align-self: auto !important;
  }

  .align-self-xxxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxxl-center {
    align-self: center !important;
  }

  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }

  .order-xxxl-first {
    order: -1 !important;
  }

  .order-xxxl-0 {
    order: 0 !important;
  }

  .order-xxxl-1 {
    order: 1 !important;
  }

  .order-xxxl-2 {
    order: 2 !important;
  }

  .order-xxxl-3 {
    order: 3 !important;
  }

  .order-xxxl-4 {
    order: 4 !important;
  }

  .order-xxxl-5 {
    order: 5 !important;
  }

  .order-xxxl-last {
    order: 6 !important;
  }

  .m-xxxl-0 {
    margin: 0 !important;
  }

  .m-xxxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxxl-3 {
    margin: 1rem !important;
  }

  .m-xxxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxxl-5 {
    margin: 3rem !important;
  }

  .m-xxxl-auto {
    margin: auto !important;
  }

  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .me-xxxl-0 {
    margin-right: 0 !important;
  }

  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxxl-auto {
    margin-right: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxxl-auto {
    margin-left: auto !important;
  }

  .p-xxxl-0 {
    padding: 0 !important;
  }

  .p-xxxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxxl-3 {
    padding: 1rem !important;
  }

  .p-xxxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxxl-5 {
    padding: 3rem !important;
  }

  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxxl-start {
    text-align: left !important;
  }

  .text-xxxl-end {
    text-align: right !important;
  }

  .text-xxxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*Optional components*/
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: transparent;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 0;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 0 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 0;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 374.98px) {
  .table-responsive-ms {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1449.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1799.98px) {
  .table-responsive-xxxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 0;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 0 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem);
}

.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 0 solid #ced4da;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-check[disabled] + .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-check[disabled] + .tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-check[disabled] + .tribe-events-c-search__button, .gform_wrapper .gform_footer .btn-check[disabled] + input, .btn-check:disabled + .btn, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-check:disabled + .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-check:disabled + .tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-check:disabled + .tribe-events-c-search__button, .gform_wrapper .gform_footer .btn-check:disabled + input {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: 3.5rem;
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 0 solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn, .input-group .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .input-group .tribe-events-c-subscribe-dropdown__button, .input-group .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .input-group .tribe-events-c-subscribe-dropdown__button, .input-group .tribe-events .tribe-events-c-search__button, .tribe-events .input-group .tribe-events-c-search__button, .input-group .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .input-group input {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus, .input-group .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, .single-tribe_events .tribe-events-c-subscribe-dropdown .input-group .tribe-events-c-subscribe-dropdown__button:focus, .input-group .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, .tribe-events .tribe-events-c-subscribe-dropdown .input-group .tribe-events-c-subscribe-dropdown__button:focus, .input-group .tribe-events .tribe-events-c-search__button:focus, .tribe-events .input-group .tribe-events-c-search__button:focus, .input-group .gform_wrapper .gform_footer input:focus, .gform_wrapper .gform_footer .input-group input:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 0 solid #ced4da;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn,
.single-tribe_events .tribe-events-c-subscribe-dropdown .input-group-lg > .tribe-events-c-subscribe-dropdown__button,
.tribe-events .tribe-events-c-subscribe-dropdown .input-group-lg > .tribe-events-c-subscribe-dropdown__button,
.tribe-events .input-group-lg > .tribe-events-c-search__button,
.gform_wrapper .gform_footer .input-group-lg > input {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn,
.single-tribe_events .tribe-events-c-subscribe-dropdown .input-group-sm > .tribe-events-c-subscribe-dropdown__button,
.tribe-events .tribe-events-c-subscribe-dropdown .input-group-sm > .tribe-events-c-subscribe-dropdown__button,
.tribe-events .input-group-sm > .tribe-events-c-search__button,
.gform_wrapper .gform_footer .input-group-sm > input {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 375px) {
  .dropdown-menu-ms-start {
    --bs-position: start;
  }
  .dropdown-menu-ms-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-ms-end {
    --bs-position: end;
  }
  .dropdown-menu-ms-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1450px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1800px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 0 solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: 0;
  background: none;
  border: 0 solid transparent;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.4;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 0 solid transparent;
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 0 solid transparent;
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1250px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
@media (max-width: 374.98px) {
  .modal-fullscreen-ms-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-ms-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-ms-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1449.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1799.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
}
/* so we can override bootstrap */
/*Theme colors*/
/* General colors */
/*General typography*/
/*Error*/
/*Color options*/
.color-white {
  color: #FFF;
}

.color-black {
  color: #000;
}

.color-yellow {
  color: #F3AF34;
}

.color-gold {
  color: #EF8930;
}

.color-orange {
  color: #EC5F2C;
}

.color-sienna {
  color: #6A1F16;
}

/*Background colors options*/
.bg-white {
  background-color: #FFF;
}

.bg-black {
  background-color: #000;
  color: #FFF;
}

.bg-yellow {
  background-color: #F3AF34;
}

.bg-gold {
  background-color: #EF8930;
}

.bg-orange {
  background-color: #EC5F2C;
}

.bg-sienna {
  background-color: #6A1F16;
}

/*Container fluid gutter setup*/
/*Container fluid gutter setup*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Input Placeholder Color*/
/*Columns*/
/*Site wrapper*/
.wrapper {
  background: #FFF;
  max-width: 2070px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 991.98px) {
  .container {
    max-width: calc(100% - 10px);
  }
}

/*Custom container fluid*/
.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
  max-width: 2070px;
}
@media (max-width: 767.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (min-width: 1450px) and (max-width: 1799.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (min-width: 1800px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 150px;
    padding-right: 150px;
  }
}

.container-fluid-sm {
  max-width: 2070px;
}
@media (max-width: 767.98px) {
  .container-fluid-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .container-fluid-sm {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1449.98px) {
  .container-fluid-sm {
    padding-left: 125px;
    padding-right: 125px;
  }
}
@media (min-width: 1450px) {
  .container-fluid-sm {
    padding-left: 150px;
    padding-right: 150px;
  }
}

@media (max-width: 767.98px) {
  .container-offset-left {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 991.98px) {
  .container-offset-left {
    padding-left: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1199.98px) {
  .container-offset-left {
    padding-left: 75px;
  }
}
@media (min-width: 1450px) {
  .container-offset-left {
    padding-left: 100px;
  }
}

@media (max-width: 767.98px) {
  .container-offset-right {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 992px) and (max-width: 991.98px) {
  .container-offset-right {
    padding-right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1199.98px) {
  .container-offset-right {
    padding-right: 75px;
  }
}
@media (min-width: 1450px) {
  .container-offset-right {
    padding-right: 100px;
  }
}
/*Adds 10px gutter to container element*/
@media (min-width: 992px) {
  .container-gutter {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*Removes gutters to any bootstrap row*/
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/*Larger gutter options*/
@media (min-width: 1450px) {
  .gutters-lg {
    margin-right: -85px;
    margin-left: -85px;
  }
}
@media (min-width: 1450px) {
  .gutters-lg > .col,
.gutters-lg > [class*=col-] {
    padding-right: 85px;
    padding-left: 85px;
  }
}

/*Medium gutter options*/
@media (min-width: 1450px) {
  .gutters-md {
    margin-right: -40px;
    margin-left: -40px;
  }
}
@media (min-width: 1450px) {
  .gutters-md > .col,
.gutters-md > [class*=col-] {
    padding-right: 40px;
    padding-left: 40px;
  }
}

/*Small gutter options*/
@media (min-width: 992px) {
  .gutters-sm {
    margin-right: -9px;
    margin-left: -9px;
  }
}
@media (min-width: 992px) {
  .gutters-sm > .col,
.gutters-sm > [class*=col-] {
    padding-right: 9px;
    padding-left: 9px;
  }
}

/*Smallest gutter options*/
@media (min-width: 992px) {
  .gutters-xs {
    margin: -4px;
  }
}
@media (min-width: 992px) {
  .gutters-xs > .col,
.gutters-xs > [class*=col-] {
    padding: 4px;
  }
}

/*Adds top/bottom padding to each column*/
.row-grid {
  margin-bottom: -15px;
  margin-top: -15px;
}
.row-grid > [class*=col-],
.row-grid > .col {
  padding-bottom: 15px;
  padding-top: 15px;
}

.row-grid-sm {
  margin: -5px;
  margin: -5px;
}
.row-grid-sm > [class*=col-],
.row-grid-sm > .col {
  padding: 5px;
  padding: 5px;
}

@media (max-width: 767.98px) {
  .row-grid-lg {
    margin-bottom: -20px;
    margin-top: -20px;
  }
}
@media (min-width: 768px) {
  .row-grid-lg {
    margin-bottom: -40px;
    margin-top: -40px;
  }
}
@media (max-width: 767.98px) {
  .row-grid-lg > [class*=col-],
.row-grid-lg > .col {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .row-grid-lg > [class*=col-],
.row-grid-lg > .col {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

/*Used to create 5 equal columns that wrap*/
@media (min-width: 992px) {
  .col-lg-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-lg-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-lg-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-lg-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-lg-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-lg-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-lg-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .col-xl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-xl-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-xl-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-xl-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-xl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-xl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (min-width: 1450px) {
  .col-xxl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xxl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-xxl-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-xxl-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-xxl-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-xxl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-xxl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media (min-width: 1800px) {
  .col-xxxl-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .col-xxxl-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }

  .col-xxxl-35 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .col-xxxl-40 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .col-xxxl-50 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxxl-60 {
    flex: 0 0 60%;
    max-width: 60%;
  }

  .col-xxxl-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .col-xxxl-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
.css-grid {
  display: grid;
  grid-auto-rows: 1fr;
}
@media screen and (max-width: 993px) {
  .css-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 993px) {
  .css-grid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .css-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.css-grid.no-px {
  padding-left: 0;
  padding-right: 0;
}
.css-grid.center-grid {
  margin: 0 auto;
}
.css-grid.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.contain-xxxl {
  max-width: 1910px;
}

.contain-xxl {
  max-width: 1380px;
}

.contain-xl {
  max-width: 1200px;
}

.contain-lg {
  max-width: 992px;
}

.contain-md {
  max-width: 768px;
}

.contain-sm {
  max-width: 576px;
}

.contain-ms {
  max-width: 375px;
}

@media screen and (min-width: 992px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "a b";
  }
  .grid-2 div:nth-of-type(1) {
    grid-area: a;
  }
  .grid-2 div:nth-of-type(2) {
    grid-area: b;
  }
  .grid-2.grid-reverse {
    grid-template-areas: "b a";
  }
}
@media screen and (max-width: 992px) {
  .grid-2 {
    grid-auto-rows: auto;
    grid-template-areas: "a" "b";
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-2 div:nth-of-type(1) {
    grid-area: a;
  }
  .grid-2 div:nth-of-type(2) {
    grid-area: b;
  }
  .grid-2.grid-reverse {
    grid-template-areas: "b" "a";
  }
}

@media screen and (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .grid-3.md-col-2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .grid-3.md-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .grid-3.md-col-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .grid-5 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media screen and (min-width: 1380px) {
  .grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1380px) {
  .grid-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 576px) and (max-width: 992px) {
  .grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 576px) {
  .grid-6 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gap-10 {
  gap: 10px;
}

.gap-30 {
  gap: 30px;
}

.gap-40 {
  gap: 40px;
}

@media screen and (min-width: 992px) {
  .gap-column-30 {
    grid-column-gap: 30px;
  }
}

@media screen and (min-width: 992px) {
  .gap-column-40 {
    grid-column-gap: 40px;
  }
}

@media screen and (min-width: 992px) {
  .gap-column-180 {
    grid-column-gap: 180px;
  }
}

@media screen and (min-width: 992px) {
  .gap-row-30 {
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  .sm-gap-row-30 {
    grid-row-gap: 30px;
  }
}

/*Container fluid gutter setup*/
/*Container fluid gutter setup*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Input Placeholder Color*/
/*Columns*/
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
}
html :root {
  accent-color: #fa0f75 !important;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  background: #FFFFFF;
  color: #000;
  font-weight: 300;
  height: 100%;
  letter-spacing: 0;
  line-height: 30px;
  margin: 0;
  position: relative;
  text-align: left;
  /*Prevents body from scrolling*/
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
}

picture {
  display: block;
}

/*Utilities*/
/*Adds 1 px border to element with 30px gutter*/
.border-gutters {
  position: relative;
}
.border-gutters:after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
}
@media (max-width: 767.98px) {
  .border-gutters:after {
    left: 30px;
    right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .border-gutters:after {
    left: 50px;
    right: 50px;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .border-gutters:after {
    left: 75px;
    right: 75px;
  }
}
@media (min-width: 1450px) and (max-width: 1799.98px) {
  .border-gutters:after {
    left: 100px;
    right: 100px;
  }
}
@media (min-width: 1800px) {
  .border-gutters:after {
    left: 150px;
    right: 150px;
  }
}

/*Adds 1 px border to element with 30px gutter*/
.border-gutters-0 {
  position: relative;
}
.border-gutters-0:after {
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}

/*Adds 1 px border to element with 30px gutter*/
.border-gutters-30 {
  position: relative;
}
.border-gutters-30:after {
  content: "";
  display: block;
  height: 1px;
  left: 30px;
  position: absolute;
  right: 30px;
}

/*Adds 1 px border to element with 15px gutter*/
.border-gutters-15 {
  position: relative;
}
.border-gutters-15:after {
  content: "";
  display: block;
  height: 1px;
  left: 15px;
  position: absolute;
  right: 15px;
}

/*Color options*/
.border-gutters-light:after {
  background: #FFF;
}

.border-gutters-dark:after {
  background: #000;
}

/*Position options*/
.border-gutters-bottom:after {
  bottom: 0;
}

.border-gutters-top:after {
  top: 0;
}

.box-shadow {
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.07), 0 10px 24.1177px rgba(0, 0, 0, 0.0456112), 0 5px 10.0172px rgba(0, 0, 0, 0.035), 0 3px 3.62304px rgba(0, 0, 0, 0.0243888);
}

.box-shadow-bottom-light {
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.25);
}

/*Column options*/
@media (min-width: 992px) {
  .column-2 {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40pxpx;
         column-gap: 40pxpx;
  }

  .column-3 {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 40pxpx;
         column-gap: 40pxpx;
  }
}
/*Global alignment options*/
.justify-left {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
  text-align: center;
}

.justify-right {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.gap-10 {
  gap: 10px;
}

.gap-120 {
  gap: 120px;
}

/*Alignment options*/
@media (max-width: 767.98px) {
  .center-xs {
    margin-left: auto;
    margin-right: auto;
  }
}
/*Splits paragraph content into 2 columns*/
@media (min-width: 768px) {
  .paragraph-col-2 {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
/*Display options*/
@media (max-width: 767.98px) {
  .d-xs-none {
    display: none;
  }
}
/*Hide element on mobile*/
@media (max-width: 767.98px) {
  .hidden-xs {
    display: none;
  }
}
/*Adds styled Horizontal Rule*/
.horizontal-rule {
  background: #000;
  border: none;
  height: 1px;
  max-width: 1320px;
}

/*Adds scribble line coming out of any corner*/
.scribble-line:before {
  background: url("../images/icons/icon-line-dark.svg") center center/contain no-repeat;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 250px;
}
.scribble-line.scribble-line-tl:before {
  right: calc(100% + 20px);
  top: 0;
}

.arrow {
  width: 40px;
  height: 40px;
  position: relative;
}
.arrow:hover {
  transform: scale(1.2);
}

/*Adds centered play button on top of element*/
.element-play {
  position: relative;
}

.element-play:before, .element-play:after {
  content: "";
  display: block;
  position: absolute;
  transition: 0.4s;
}

.element-play:before {
  background: url("/assets/images/elements/video-play-icon.svg") center center/contain no-repeat;
  border-radius: 50%;
  box-shadow: 0px 4px 40px rgba(21, 40, 21, 0.15);
  left: 50%;
  max-height: 130px;
  max-width: 130px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

@media (max-width: 575.98px) {
  .element-play:before {
    height: 50px;
    width: 50px;
  }
}
@media (min-width: 576px) {
  .element-play:before {
    height: 7vw;
    width: 7vw;
  }
}
.social-icon:hover {
  fill: black;
}

.link a {
  position: relative;
}
.link a:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .link a:after {
    transition: 0.4s;
  }
}
.link a:hover:after {
  opacity: 1;
  visibility: visible;
}

/*Responsive image options*/
.img-responsive {
  height: auto;
  width: 100%;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

/*Absolute position image to mimic background cover*/
.img-absolute-container {
  border: none;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.img-absolute {
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  right: -9999px;
  top: -9999px;
  width: auto;
}

.image-backdrop {
  position: relative;
  z-index: 1;
  color: #fff;
  /*Position breakpoint options*/
}
.image-backdrop .bg-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .image-backdrop .bg-image {
    max-height: 550px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .image-backdrop .bg-image {
    max-height: 650px;
  }
}
@media (min-width: 1201px) and (max-width: 1449px) {
  .image-backdrop .bg-image {
    max-height: 650px;
  }
}
@media (min-width: 1450px) {
  .image-backdrop .bg-image {
    min-height: 850px;
  }
}
.image-backdrop .position-absolute {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.image-backdrop .position-absolute .container,
.image-backdrop .position-absolute [class*=container-],
.image-backdrop .position-absolute .row {
  height: 100%;
  align-items: center;
}

.img-rounded {
  border-radius: 35px;
}

.img-rounded-sm {
  border-radius: 22px;
}

.tl-rounded, .block-cta .img-left img, .block-cta .img-right .col-content {
  border-top-left-radius: 35px;
}

.tr-rounded, .block-cta .img-left .col-content, .block-cta .img-right img {
  border-top-right-radius: 35px;
}

.bl-rounded, .block-cta .img-left img, .block-cta .img-right .col-content {
  border-bottom-left-radius: 35px;
}

.br-rounded, .block-cta .img-left .col-content, .block-cta .img-right img {
  border-bottom-right-radius: 35px;
}

/*Position options*/
.position-absolute {
  position: absolute !important;
}

.relative {
  position: relative;
}

.position-absolute-30-tl {
  left: 30px;
  position: absolute;
  top: 30px;
}

.position-absolute-30-tr {
  position: absolute;
  right: 30px;
  top: 30px;
}

.position-absolute-30-br {
  bottom: 30px;
  position: absolute;
  right: 30px;
}

.position-absolute-30-bl {
  bottom: 30px;
  left: 30px;
  position: absolute;
}

/*Responsive position options*/
@media (min-width: 576px) {
  .position-absolute-sm {
    position: absolute !important;
  }

  .position-absolute-tl-sm {
    left: 50px;
    top: 50px;
  }

  .position-absolute-tr-sm {
    right: 50px;
    top: 50px;
  }

  .position-absolute-br-sm {
    bottom: 50px;
    right: 50px;
  }

  .position-absolute-bl-sm {
    bottom: 50px;
    left: 50px;
  }
}
@media (min-width: 768px) {
  .position-absolute-md {
    position: absolute !important;
  }

  .position-absolute-tl-md {
    left: 50px;
    top: 50px;
  }

  .position-absolute-tr-md {
    right: 50px;
    top: 50px;
  }

  .position-absolute-br-md {
    bottom: 50px;
    right: 50px;
  }

  .position-absolute-bl-md {
    bottom: 50px;
    left: 50px;
  }
}
@media (min-width: 992px) {
  .position-absolute-lg {
    position: absolute !important;
  }

  .position-absolute-tl-lg {
    left: 50px;
    top: 50px;
  }

  .position-absolute-tr-lg {
    right: 50px;
    top: 50px;
  }

  .position-absolute-br-lg {
    bottom: 50px;
    right: 50px;
  }

  .position-absolute-bl-lg {
    bottom: 50px;
    left: 50px;
  }
}
@media (min-width: 1200px) {
  .position-absolute-xl {
    position: absolute !important;
  }

  .position-absolute-tl-xl {
    left: 50px;
    top: 50px;
  }

  .position-absolute-tr-xl {
    right: 50px;
    top: 50px;
  }

  .position-absolute-br-xl {
    bottom: 50px;
    right: 50px;
  }

  .position-absolute-bl-xl {
    bottom: 50px;
    left: 50px;
  }
}
/*Used to apply top/bottom padding to any block*/
@media (max-width: 767.98px) {
  .pb-xl {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-xl {
    padding-bottom: 120px;
  }
}
@media (min-width: 1200px) {
  .pb-xl {
    padding-bottom: 150px;
  }
}

@media (max-width: 767.98px) {
  .pt-xl {
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-xl {
    padding-top: 120px;
  }
}
@media (min-width: 1200px) {
  .pt-xl {
    padding-top: 150px;
  }
}

@media (max-width: 767.98px) {
  .pb-lg {
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-lg {
    padding-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .pb-lg {
    padding-bottom: 100px;
  }
}

@media (max-width: 767.98px) {
  .pt-lg {
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-lg {
    padding-top: 75px;
  }
}
@media (min-width: 1200px) {
  .pt-lg {
    padding-top: 100px;
  }
}

@media (max-width: 991.98px) {
  .pb-md {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1449.98px) {
  .pb-md {
    padding-bottom: 50px;
  }
}
@media (min-width: 1450px) {
  .pb-md {
    padding-bottom: 75px;
  }
}

@media (max-width: 991.98px) {
  .pt-md {
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1449.98px) {
  .pt-md {
    padding-top: 50px;
  }
}
@media (min-width: 1450px) {
  .pt-md {
    padding-top: 75px;
  }
}

.pb-sm {
  padding-bottom: 40px;
}

.pt-sm {
  padding-top: 40px;
}

.pb-xs {
  padding-bottom: 20px;
}

.pt-xs {
  padding-top: 20px;
}

@media (min-width: 992px) {
  .pr-44-lg {
    padding-right: 44%;
  }
}
.pad-30 {
  padding: 30px;
}

.pad-50 {
  padding: 50px;
}

/*Used to apply top/bottom margin to any block*/
@media (max-width: 767.98px) {
  .mb-lg {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-lg {
    margin-bottom: 75px;
  }
}
@media (min-width: 1200px) {
  .mb-lg {
    margin-bottom: 100px;
  }
}

@media (max-width: 767.98px) {
  .mt-lg {
    margin-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mt-lg {
    margin-top: 75px;
  }
}
@media (min-width: 1200px) {
  .mt-lg {
    margin-top: 100px;
  }
}

@media (max-width: 767.98px) {
  .mb-md {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-md {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .mb-md {
    margin-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .mt-md {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mt-md {
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .mt-md {
    margin-top: 80px;
  }
}

@media (max-width: 767.98px) {
  .mb-sm {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-sm {
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .mb-sm {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .mt-sm {
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mt-sm {
    margin-top: 25px;
  }
}
@media (min-width: 1200px) {
  .mt-sm {
    margin-top: 40px;
  }
}

/*Responsive margin options*/
@media (min-width: 992px) {
  .ml-30-lg {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .mt-20-xs {
    margin-top: 20px;
  }
}
/*Margin options*/
.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .lg-pt-20 {
    padding-top: 20px;
  }

  .lg-mt-35 {
    margin-top: 35px;
  }

  .lg-mb-15 {
    margin-bottom: 15px;
  }

  .lg-mb-20 {
    margin-bottom: 20px;
  }

  .lg-mb-30 {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .sm-pt-20 {
    padding-top: 20px;
  }

  .sm-mt-10 {
    margin-top: 10px;
  }

  .sm-mb-20 {
    margin-bottom: 20px;
  }

  .sm-mb-25 {
    margin-bottom: 25px;
  }

  .sm-mb-60 {
    margin-bottom: 60px;
  }
}
@media (min-width: 992px) {
  .mw-35-lg {
    max-width: 35%;
  }

  .mw-50-lg {
    max-width: 50%;
  }

  .mw-60-lg {
    max-width: 60%;
  }

  .mw-70-lg {
    max-width: 70%;
  }

  .mw-75-lg {
    max-width: 75%;
  }

  .mw-80-lg {
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .mw-50-xl {
    max-width: 50%;
  }
}
@media (min-width: 1450px) {
  .mw-50-xxl {
    max-width: 50%;
  }
}
@media (min-width: 1800px) {
  .mw-50-xxxl {
    max-width: 50%;
  }
}
/*Text mixin options*/
/* Text Styles */
.text-medium {
  font-weight: 500;
}

/*Text style options*/
.text-14-regular {
  font-size: 1.4rem;
  display: block;
}

/*Text alignment options*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/*Reponsive text alignment options*/
@media (max-width: 767.98px) {
  .text-center-xs {
    text-align: center;
  }
}
/*Text transform options*/
.text-uppercase {
  text-transform: uppercase;
}

/*Fades text 80%*/
.text-fade-70 {
  opacity: 0.7;
}

/*Used for larger paragraph text*/
@media (max-width: 1199.98px) {
  .paragraph-lead p {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .paragraph-lead p {
    font-size: 2.2rem;
  }
}

@media (max-width: 1199.98px) {
  .paragraph-lead-lg p {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .paragraph-lead-lg p {
    font-size: 2.4rem;
  }
}

/*Global paragraph styles*/
p:not(:last-child) {
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  text-decoration: none;
}

/*Global anchor styles*/
a {
  color: inherit;
}
@media screen and (prefers-reduced-motion: no-preference) {
  a {
    transition: 0.4s;
  }
}
a:hover {
  text-decoration: none;
}

/*General dropcap setup*/
/*Adds underline to anchors within this element*/
.link-underline {
  text-decoration: underline;
}
.link-underline:hover {
  color: #000;
  text-decoration: underline;
}
.link-underline a {
  text-decoration: underline;
}
.link-underline a:hover {
  color: #000;
  text-decoration: underline;
}

/*Link color options*/
.link-dark {
  color: #000;
}

.link-light {
  color: #FFF;
}

/*Default strong styles*/
/*Small text*/
small {
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

/*Formats telephone element*/
.link-tel {
  color: inherit;
}

.bg-white a {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000;
  text-decoration: underline;
}
.bg-white a:hover {
  color: #EC5F2C;
}

.bg-sienna {
  color: #FFF;
}
.bg-sienna a {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #FFF;
  text-decoration: underline;
}
.bg-sienna a:hover {
  color: #EC5F2C;
}

/*Elements*/
/*Buttons*/
.btn, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-search__button, .gform_wrapper .gform_footer input {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1.5;
  text-decoration: none;
  white-space: normal;
  padding: 15px 45px;
  border-radius: 8px;
  font-size: 1.8rem;
  position: relative;
  /*Prmary button*/
  /*Stretches button full width at all breakpoints*/
  /*Stretches button full width on smallest breakpoint only*/
}
@media screen and (prefers-reduced-motion: no-preference) {
  .btn, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-search__button, .gform_wrapper .gform_footer input {
    transition: 0.4s;
  }
}
@media (max-width: 575.98px) {
  .btn, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-search__button, .gform_wrapper .gform_footer input {
    font-size: 1.3rem;
    padding: 10px 35px;
  }
}
.btn:before, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:before, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:before, .tribe-events .tribe-events-c-search__button:before, .gform_wrapper .gform_footer input:before, .btn:before {
  content: "";
  display: block;
}
.btn.disabled, .single-tribe_events .tribe-events-c-subscribe-dropdown .disabled.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .disabled.tribe-events-c-subscribe-dropdown__button, .tribe-events .disabled.tribe-events-c-search__button, .gform_wrapper .gform_footer input.disabled {
  opacity: 0.4;
}
.btn:before, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:before, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:before, .tribe-events .tribe-events-c-search__button:before, .gform_wrapper .gform_footer input:before {
  width: 100%;
  border-radius: 8px;
  background-color: inherit;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  transform: scale(1);
}
@media screen and (prefers-reduced-motion: no-preference) {
  .btn:before, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:before, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:before, .tribe-events .tribe-events-c-search__button:before, .gform_wrapper .gform_footer input:before {
    transition: 0.4s;
  }
}
.btn span, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button span, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button span, .tribe-events .tribe-events-c-search__button span, .gform_wrapper .gform_footer input span {
  position: relative;
  z-index: 10;
}
.btn:hover, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-search__button:hover, .gform_wrapper .gform_footer input:hover {
  text-decoration: none;
}
.btn:hover:before, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover:before, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover:before, .tribe-events .tribe-events-c-search__button:hover:before, .gform_wrapper .gform_footer input:hover:before {
  left: 0px;
  top: 0px;
  bottom: -3px;
  right: -3px;
  transform: scale(1.1);
  background: inherit;
}
.btn.btn-primary, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-search__button, .gform_wrapper .gform_footer input {
  align-items: center;
  min-height: 45px;
  min-width: 40px;
  overflow: revert;
  position: relative;
  text-decoration: none;
}
.btn.btn-small, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-small.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-small.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-search__button, .gform_wrapper .gform_footer input.btn-small, .gform_wrapper .gform_footer .tribe-events input.tribe-events-c-search__button, .tribe-events .gform_wrapper .gform_footer input.tribe-events-c-search__button {
  min-height: 40px;
  max-height: 40px;
  font-size: 1.4rem;
  padding: 15px 30px;
  line-height: 19px;
}
.btn.btn-small:hover:before, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-small.tribe-events-c-subscribe-dropdown__button:hover:before, .tribe-events .tribe-events-c-subscribe-dropdown .btn-small.tribe-events-c-subscribe-dropdown__button:hover:before, .tribe-events .tribe-events-c-search__button:hover:before, .gform_wrapper .gform_footer input.btn-small:hover:before {
  bottom: 0px;
}
.btn.btn-download, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-download.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-download.tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-download.tribe-events-c-search__button, .gform_wrapper .gform_footer input.btn-download {
  width: 40px;
  height: 40px;
  padding: 15px;
}
.btn.btn-yellow, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-search__button, .gform_wrapper .gform_footer input {
  background: #F3AF34;
  color: #6A1F16;
}
.btn.btn-yellow:hover, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-search__button:hover, .gform_wrapper .gform_footer input:hover {
  background-color: #FFC861;
  color: #6A1F16 !important;
}
.btn.btn-sienna, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-sienna.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-sienna.tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-sienna.tribe-events-c-search__button, .block-cta .bg-yellow .btn.btn-yellow, .block-cta .bg-yellow .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-cta .bg-yellow .tribe-events-c-subscribe-dropdown__button, .block-cta .bg-yellow .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-cta .bg-yellow .tribe-events-c-subscribe-dropdown__button, .block-cta .bg-yellow .tribe-events .tribe-events-c-search__button, .tribe-events .block-cta .bg-yellow .tribe-events-c-search__button, .gform_wrapper .gform_footer input.btn-sienna, .block-cta .bg-yellow .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-cta .bg-yellow input {
  background: #6A1F16;
  color: #FFF;
}
.btn.btn-sienna:hover, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-sienna.tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .btn-sienna.tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .btn-sienna.tribe-events-c-search__button:hover, .block-cta .bg-yellow .btn.btn-yellow:hover, .block-cta .bg-yellow .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-cta .bg-yellow .tribe-events-c-subscribe-dropdown__button:hover, .block-cta .bg-yellow .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .block-cta .bg-yellow .tribe-events-c-subscribe-dropdown__button:hover, .block-cta .bg-yellow .tribe-events .tribe-events-c-search__button:hover, .tribe-events .block-cta .bg-yellow .tribe-events-c-search__button:hover, .gform_wrapper .gform_footer input.btn-sienna:hover, .block-cta .bg-yellow .gform_wrapper .gform_footer input:hover, .gform_wrapper .gform_footer .block-cta .bg-yellow input:hover {
  background-color: #993533;
  color: #FFF !important;
}
.btn.btn-white, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-white.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-white.tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-white.tribe-events-c-search__button, .gform_wrapper .gform_footer input.btn-white {
  background: #FFF;
  color: #6A1F16;
}
.btn.btn-white:hover, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-white.tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .btn-white.tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .btn-white.tribe-events-c-search__button:hover, .gform_wrapper .gform_footer input.btn-white:hover {
  background-color: #F6E7D9;
  color: #6A1F16 !important;
}
.btn.btn-full, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-full.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-full.tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-full.tribe-events-c-search__button, .gform_wrapper .gform_footer input.btn-full {
  width: 100%;
}
@media (max-width: 575.98px) {
  .btn.btn-xs-full, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-xs-full.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-xs-full.tribe-events-c-subscribe-dropdown__button, .tribe-events .btn-xs-full.tribe-events-c-search__button, .gform_wrapper .gform_footer input.btn-xs-full {
    width: 100%;
  }
}

/*Button row*/
.btn-row {
  align-items: center;
  display: inline-flex;
  margin-left: -10px;
  margin-right: -10px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .btn-row:not(.inline-xs) {
    flex-wrap: wrap;
  }
}
.btn-row .btn, .btn-row .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-row .tribe-events-c-subscribe-dropdown__button, .btn-row .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-row .tribe-events-c-subscribe-dropdown__button, .btn-row .tribe-events .tribe-events-c-search__button, .tribe-events .btn-row .tribe-events-c-search__button, .btn-row .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .btn-row input {
  margin-left: 10px;
  margin-right: 10px;
}
@media (max-width: 374.98px) {
  .btn-row .btn, .btn-row .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-row .tribe-events-c-subscribe-dropdown__button, .btn-row .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-row .tribe-events-c-subscribe-dropdown__button, .btn-row .tribe-events .tribe-events-c-search__button, .tribe-events .btn-row .tribe-events-c-search__button, .btn-row .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .btn-row input {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .btn-row .btn, .btn-row .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-row .tribe-events-c-subscribe-dropdown__button, .btn-row .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .btn-row .tribe-events-c-subscribe-dropdown__button, .btn-row .tribe-events .tribe-events-c-search__button, .tribe-events .btn-row .tribe-events-c-search__button, .btn-row .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .btn-row input {
    margin-top: 20px;
  }
}

/*Stacked column of buttons*/
.btn-stacked {
  display: inline-flex;
  flex-direction: column;
}
.btn-stacked .btn:not(:last-child), .btn-stacked .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:not(:last-child), .single-tribe_events .tribe-events-c-subscribe-dropdown .btn-stacked .tribe-events-c-subscribe-dropdown__button:not(:last-child), .btn-stacked .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:not(:last-child), .tribe-events .tribe-events-c-subscribe-dropdown .btn-stacked .tribe-events-c-subscribe-dropdown__button:not(:last-child), .btn-stacked .tribe-events .tribe-events-c-search__button:not(:last-child), .tribe-events .btn-stacked .tribe-events-c-search__button:not(:last-child), .btn-stacked .gform_wrapper .gform_footer input:not(:last-child), .gform_wrapper .gform_footer .btn-stacked input:not(:last-child) {
  margin-bottom: 20px;
}

/*Gravity forms*/
.gform_wrapper input[type=checkbox], .gform_wrapper input[type=radio] {
  accent-color: #F3AF34 !important;
}
.gform_wrapper input[type=checkbox]:hover {
  border: 1px solid #F3AF34 !important;
}
.gform_wrapper label.gfield_label, .gform_wrapper .ginput_complex label {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}
.gform_wrapper .gfield {
  margin-bottom: 10px;
  position: relative;
}
.gform_wrapper .gfield.gfield_contains_required .gfield_label:after, .gform_wrapper .gfield.gfield_contains_required label:after {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  content: "*";
  display: inline-block;
}
.gform_wrapper .gfield_required {
  display: none !important;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea, .gform_wrapper select {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  -moz-appearance: none;
       appearance: none;
  background-clip: padding-box;
  background-color: transparent;
  border-radius: 11px;
  border: solid 1px #D1D1D1;
  box-shadow: none;
  display: inline-flex;
  -webkit-appearance: none;
  color: #000;
  line-height: 1.5;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper textarea, .gform_wrapper select {
    transition: 0.4s;
  }
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder, .gform_wrapper select::-moz-placeholder {
  color: #000;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder, .gform_wrapper textarea:-ms-input-placeholder, .gform_wrapper select:-ms-input-placeholder {
  color: #000;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) option, .gform_wrapper textarea::placeholder, .gform_wrapper textarea option, .gform_wrapper select::placeholder, .gform_wrapper select option {
  color: #000;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .gform_wrapper textarea:focus, .gform_wrapper select:focus {
  outline: none;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus-visible, .gform_wrapper textarea:focus-visible, .gform_wrapper select:focus-visible {
  outline: 5px auto -webkit-focus-ring-color;
}
.gform_wrapper .ginput_container_select select {
  background: url("/assets/images/icons/pagination-down.svg") no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
}
.gform_wrapper .ginput_container_radio .gfield_radio {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 993px) {
  .gform_wrapper .ginput_container_radio .gfield_radio {
    flex-direction: row;
    gap: 30px;
  }
}
.gform_wrapper .ginput_container_radio .gfield_radio .gfield-choice-input + label {
  max-width: 100% !important;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 8px 16px;
}
.gform_wrapper textarea {
  padding: 10px 16px !important;
}
.gform_wrapper select {
  padding: 10px 16px;
}
.gform_wrapper .gfield_html_formatted {
  color: #000;
  font-size: 1.6rem;
  line-height: 24px;
}
.gform_wrapper .gform_footer {
  display: flex;
  justify-content: end;
}
.gform_wrapper .gform_footer input {
  border: none;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .gform_wrapper .gform_footer input {
    transition: 0.4s;
  }
}
.gform_wrapper .gform_footer input:hover {
  transform: scale(1.1);
}
@media (max-width: 374.98px) {
  .gform_wrapper .gform_footer input {
    width: 100%;
  }
}
@media (min-width: 375px) {
  .gform_wrapper .gform_footer input {
    min-width: 250px;
  }
}
.gform_wrapper .gfield_validation_message {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
  width: auto !important;
}
.gform_wrapper .gsection {
  border-bottom: 0px !important;
  color: #000;
}
.gform_wrapper .gsection .gsection_description {
  font-size: 1.6rem !important;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.gform_confirmation_message {
  text-align: center;
}

.style-form {
  --checked-color: #ff5722;
  text-align: left;
  justify-content: start;
}
.style-form label {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem;
}
.style-form input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  box-shadow: inset 1em 1em var(--form-control-color);
}
@media screen and (prefers-reduced-motion: no-preference) {
  .style-form input[type=radio]::before {
    transition: 120ms transform ease-in-out;
  }
}
.style-form input[type=radio]:checked::before {
  transform: scale(1);
}
.style-form #accent {
  accent-color: var(--checked-color);
}

/*Heading mixin options*/
/*Heading options*/
.micro-title {
  display: block;
}

.heading-1, .tribe-events-pg-template .tribe-events-single-event-title, .block-event-detail .heading-1 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.95em;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-1, .tribe-events-pg-template .tribe-events-single-event-title, .block-event-detail .heading-1 {
    font-size: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-1, .tribe-events-pg-template .tribe-events-single-event-title, .block-event-detail .heading-1 {
    font-size: 5.6rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .heading-1, .tribe-events-pg-template .tribe-events-single-event-title, .block-event-detail .heading-1 {
    font-size: 6.3rem;
  }
}
@media (min-width: 1450px) {
  .heading-1, .tribe-events-pg-template .tribe-events-single-event-title, .block-event-detail .heading-1 {
    font-size: 7rem;
  }
}

.heading-2 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9em;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .heading-2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1450px) {
  .heading-2 {
    font-size: 5rem;
  }
}

.heading-3 {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .heading-3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1450px) {
  .heading-3 {
    font-size: 3rem;
  }
}

.heading-4 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-4 {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-4 {
    font-size: 1.93rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .heading-4 {
    font-size: 2.06rem;
  }
}
@media (min-width: 1450px) {
  .heading-4 {
    font-size: 2.2rem;
  }
}

.heading-5 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  display: block;
}
@media (max-width: 767.98px) {
  .heading-5 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .heading-5 {
    font-size: 3.15rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .heading-5 {
    font-size: 3.3rem;
  }
}
@media (min-width: 1450px) {
  .heading-5 {
    font-size: 3.5rem;
  }
}

.heading-6 {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: block;
}

/*Add transition to all heading options*/
@media screen and (prefers-reduced-motion: no-preference) {
  [class*=heading-] {
    transition: 0.4s;
  }
}
[class*=heading-] a:hover {
  color: #00008b;
}

ol {
  margin-bottom: 30px;
  padding: 0 0 0 20px;
}
ol li:not(:last-child) {
  margin-bottom: 15px;
}

/*General unstyled list*/
.list-unstyled {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-unstyled li:not(:last-child) {
  margin-bottom: 4px;
}

/*Used to display elements inline on all screens*/
.list-inline {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  display: inline-flex;
}
.list-inline li:not(:last-child),
.list-inline .list-item:not(:last-child) {
  margin-right: 24px;
}

/*Adds dividers between list items*/
.list-inline-dividers {
  align-items: center;
  display: flex;
  list-style: none;
  padding: 0;
}
.list-inline-dividers li:not(:last-child):after,
.list-inline-dividers .list-item:not(:last-child):after {
  content: "|";
  display: inline-block;
  margin: 0 8px;
}

/*General list with yellow bullets*/
.list-bullets {
  list-style: none;
  margin: 0 0 40px;
  padding: 0 0 0 30px;
}
.list-bullets li {
  align-items: center;
  display: flex;
  padding: 0 0 0 20px;
  position: relative;
}
.list-bullets li:not(:last-child) {
  margin-bottom: 15px;
}
.list-bullets li:before {
  background: #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 8px;
}

/*Adds numbers before list item*/
.list-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: listNumbers;
  margin-bottom: 30px;
}
.list-numbers li, .list-numbers .list-item {
  padding-left: 20px;
  position: relative;
}
@media (max-width: 991.98px) {
  .list-numbers li, .list-numbers .list-item {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .list-numbers li, .list-numbers .list-item {
    margin-left: 10%;
  }
}
.list-numbers li:not(:last-child), .list-numbers .list-item:not(:last-child) {
  margin-bottom: 20px;
}
.list-numbers li:before, .list-numbers li:after, .list-numbers .list-item:before, .list-numbers .list-item:after {
  display: block;
  position: absolute;
}
.list-numbers li:before, .list-numbers .list-item:before {
  border-radius: 50%;
  content: "";
  height: 30px;
  left: -10;
  top: 0;
  width: 30px;
  z-index: 1;
}
.list-numbers li:after, .list-numbers .list-item:after {
  content: counter(listNumbers);
  counter-increment: listNumbers;
  left: 0px;
  letter-spacing: -0.01em;
  line-height: 1;
  top: 4px;
  z-index: 15;
}
.list-numbers li span,
.list-numbers li strong,
.list-numbers li b, .list-numbers .list-item span,
.list-numbers .list-item strong,
.list-numbers .list-item b {
  display: block;
  margin-bottom: 5px;
}

/*Used to create a stacked list*/
.list-stacked {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list-stacked li:not(:last-child),
.list-stacked .list-item:not(:last-child) {
  margin-bottom: 8px;
}
.list-stacked .list-link {
  color: inherit;
}
.list-stacked .list-link:hover {
  text-decoration: underline;
}

/*Splits list into two columns*/
@media (min-width: 992px) {
  .list-col-2-lg {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 27px;
         column-gap: 27px;
  }
}
/* Components - specific elements that make up a page */
/*GLobal accordion setup*/
.accordion-default {
  counter-reset: number-counter;
  margin-left: 60px;
  margin-top: 40px;
}
.accordion-default .accordion-header {
  margin-bottom: 20px;
}
.accordion-default .accordion-item {
  margin-bottom: 35px;
}
@media screen and (max-width: 992px) {
  .accordion-default .accordion-item {
    margin-bottom: 25px;
  }
}
.accordion-default button {
  color: #000;
}
.accordion-default .accordion-button {
  position: relative;
  background-color: transparent;
  border: none;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 992px) {
  .accordion-default .accordion-button {
    text-align: left;
  }
}
.accordion-default .accordion-button:before {
  content: "";
  display: block;
  width: 39px;
  height: 39px;
  border-radius: 100px;
  background-color: #F3AF34;
  color: #6A1F16;
  position: absolute;
  left: -60px;
  top: -10px;
}
.accordion-default .accordion-button:after {
  content: counter(number-counter);
  counter-increment: number-counter;
  position: absolute;
  left: -44px;
  top: 0px;
  color: #6A1F16;
  font-weight: 700;
  font-size: 1.6rem;
}
.accordion-default .accordion-button.collapsed {
  font-weight: 500;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .accordion-default .accordion-button.collapsed {
    transition: 0.4s;
  }
}
.accordion-default .accordion-button.collapsed:before {
  background-color: #F7F7F7;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .accordion-default .accordion-button.collapsed:before {
    transition: 0.4s;
  }
}
.accordion-default .accordion-button.collapsed:hover {
  font-weight: 700;
}
.accordion-default .accordion-button.collapsed:hover:before {
  background-color: #F3AF34;
}
.accordion-default .accordion-body {
  margin-left: 5px;
  border-left: 5px solid #F3AF34;
  padding-left: 20px;
  padding-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .accordion-default .accordion-body {
    padding-top: 2px;
    padding-bottom: 5px;
  }
}

.accordion {
  border-left: 1px solid #CCC;
  padding-top: 20px;
  padding-left: 82px;
}
@media screen and (max-width: 992px) {
  .accordion {
    padding-left: 60px;
    padding-top: 20px;
  }
}
.accordion .question {
  font-family: montserrat, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.6rem !important;
  border-width: 0 0 0 1px;
  border-radius: 0;
  position: relative;
  margin-bottom: 30px;
}
.accordion .question:after {
  content: "";
  display: none;
  width: 5px;
  height: 100%;
  position: absolute;
  left: -85px;
  top: 0;
  background-color: #F3AF34;
}
@media screen and (max-width: 992px) {
  .accordion .question:after {
    left: -63px;
  }
}
.accordion .question:hover {
  cursor: pointer;
}
.accordion .question .title {
  position: relative;
}
.accordion .question .title:before {
  content: "";
  display: block;
  background: url("/assets/images/icons/accordion-down.svg") no-repeat;
  position: absolute;
  left: -35px;
  top: 6px;
  width: 16px;
  height: 8px;
}
.accordion .question.active:after {
  display: block;
}
.accordion .question.active .title {
  font-weight: 700 !important;
}
.accordion .question.active .title:before {
  background: url("/assets/images/icons/accordion-up.svg") no-repeat;
}
@media screen and (max-width: 992px) {
  .accordion .question.active .title:before {
    transform: rotate(90deg);
  }
}
.accordion .question.active .answer {
  margin-top: 20px;
  padding-bottom: 20px;
  font-weight: 300 !important;
}
.accordion .question.active .answer:hover {
  cursor: default;
}
.accordion .question.title {
  background: none;
  padding-left: 50px;
  position: relative;
  border: 0;
}
.accordion .question.title:before {
  display: none;
}

/*Global modal setup*/
.modal-backdrop {
  background: #000;
}
.modal-backdrop.show {
  opacity: 0.7;
}

.modal {
  background: transparent !important;
  /*close button*/
}
.modal .modal-dialog {
  max-width: 1090px;
}
.modal .modal-dialog .modal-content:after {
  content: "";
}
@media (min-width: 768px) {
  .modal .modal-dialog .modal-content:after {
    display: block;
    width: 600px;
    height: 100%;
    background: url(/assets/images/elements/state-modal-bg.png) no-repeat;
    position: absolute;
    background-position: center;
    right: 0;
    top: 0px;
    z-index: 1;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .modal .modal-dialog .bio-content {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .modal .modal-dialog {
    max-width: 375px;
  }
}
.modal .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: 0 0 200px rgba(0, 0, 0, 0.4);
  margin-bottom: -1px;
}
.modal .modal-body {
  padding: 20px;
}
.modal button {
  background-color: #FFFFFF;
  color: #FFF;
}
.modal.video .modal-content {
  background: #FFF;
}
.modal.video .modal-header {
  height: 0px !important;
}
.modal.video .video-body {
  margin-bottom: -1px;
}
.modal .modal-header {
  position: relative;
  background: transparent;
  height: 0px !important;
}
.modal .btn-close {
  color: #FFF;
  background: none;
  background-color: #F3AF34;
  opacity: 1;
  width: 48px;
  border-radius: 100px;
  height: 48px;
  position: absolute;
  border: none;
  top: 40px;
  right: 40px;
  z-index: 9;
  transition: 0.4s;
}
.modal .btn-close:hover {
  background-color: #EF8930;
}
.modal .btn-close:after {
  content: "";
  background: url("/assets/images/elements/modal-close.svg");
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal .bio-bg {
  padding: 5px 20px 20px;
}
@media (min-width: 768px) {
  .modal .bio-bg {
    padding: 4px 60px 60px;
  }
}
@media (min-width: 992px) {
  .modal .bio-bg {
    padding: 70px 82px 90px 100px;
  }
}
.modal .bio-bg .bio-content {
  align-items: start;
  font-size: 1.8rem;
  color: #F3AF34;
  line-height: 27px;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .modal .bio-bg .bio-content {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .modal .bio-bg .bio-content {
    gap: 73px;
  }
}
@media (min-width: 576px) {
  .modal .bio-bg .bio-content {
    display: flex;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .modal .bio-bg .bio-content picture {
    flex: 0 0 250px;
  }
}
@media (min-width: 992px) {
  .modal .bio-bg .bio-content picture {
    flex: 0 0 390px;
  }
}
.modal .bio-bg .bio-content .map-circle {
  width: 280px;
  height: 280px;
  margin-bottom: 30px;
  border-radius: 100%;
  display: block;
  position: relative;
  z-index: 99;
}
@media (max-width: 767.98px) {
  .modal .bio-bg .bio-content .map-circle {
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .modal .bio-bg .bio-content .map-circle {
    width: 406px;
    height: 406px;
  }
}
.modal .bio-bg .bio-content .map-circle img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .modal .bio-bg .bio-content .map-circle img {
    width: 65% !important;
  }
}
@media (max-width: 991.98px) {
  .modal .bio-bg .bio-content img {
    margin-bottom: 20px;
    width: 100%;
  }
}
.modal .bio-bg .bio-content .social-icon {
  width: 24px;
}
.modal .bio-bg .bio-content a:hover {
  color: #000;
}
.modal .modal-bg:before {
  content: "";
  background: url("/assets/images/elements/modal-bg.jpg") no-repeat;
  position: absolute;
  left: 0px;
  display: block;
  width: 286px;
  height: 100%;
  background-size: cover;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.5 !important;
}

.swiper-button-next, .swiper-button-prev {
  border-radius: 8px;
  width: 40px !important;
  height: 40px !important;
  background-color: #F3AF34;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .swiper-button-next, .swiper-button-prev {
    transition: 0.4s;
  }
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  transform: scale(1.1);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: #FFC861;
}
.swiper-button-next:after, .swiper-button-prev:after {
  width: 9px;
  height: 15px;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev:after {
  content: "" !important;
  background: url("/assets/images/icons/chevron-prev.svg") no-repeat;
}

.swiper-button-next:after {
  content: "" !important;
  background: url("/assets/images/icons/chevron-next.svg") no-repeat;
}

.swiper-pagination .swiper-pagination-bullet {
  outline: none;
  background: transparent;
  border: 2px solid #FFF;
  transform: translateZ(0);
  opacity: 1;
  height: 18px;
  width: 18px;
}
.swiper-pagination .swiper-pagination-bullet:after {
  position: absolute;
  top: -5px;
  content: "";
  left: -5px;
  width: 24px;
  height: 24px;
  border: 2px solid #6A1F16;
  border-radius: 40px;
  background-color: transparent;
  display: inherit;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6A1F16;
  outline: none;
  border: 2px solid #FFF;
}
.swiper-pagination .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

.block-related {
  position: relative;
  --swiper-pagination-bullet-horizontal-gap: 5px;
}
.block-related .col-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block-related .col-content .heading-2 {
  color: #6A1F16;
}
@media screen and (min-width: 993px) {
  .block-related .col-content .heading-2 {
    margin-top: -70px;
  }
}
.block-related .js-swiper {
  overflow: hidden;
}
.block-related .js-swiper p {
  margin-bottom: 10px;
}
.block-related .swiper-slide {
  height: auto;
  padding-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .block-related .swiper-slide {
    text-align: center;
  }
}
@media screen and (min-width: 1400px) {
  .block-related .swiper-slide h4 {
    padding-right: 50px;
  }
}
.block-related .swiper-slide a {
  text-decoration: none;
}
.block-related .swiper-slide a:hover {
  color: #6A1F16;
}
.block-related .swiper-slide .link-icon {
  padding-bottom: 5px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 0px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .block-related .swiper-slide .link-icon {
    transition: 0.4s;
  }
}
@media screen and (max-width: 600px) {
  .block-related .swiper-slide .link-icon {
    transform: translateX(-50%);
  }
}
.block-related .swiper-slide .link-icon:after {
  content: "";
  display: inline-flex;
  background: url(/assets/images/icons/chevron-right-black.svg) no-repeat;
  width: 9px;
  height: 10px;
  background-size: contain;
  margin-left: 5px;
  margin-top: -3px;
  align-items: center;
}
.block-related .swiper-slide .link-icon span {
  border-bottom: 2px solid transparent;
}
.block-related .swiper-slide .link-icon:hover {
  color: inherit;
}
.block-related .swiper-slide .link-icon:hover:after {
  background: url(/assets/images/icons/chevron-right-gold.svg) no-repeat;
  content: "";
  display: inline-flex;
  width: 9px;
  height: 10px;
  background-size: contain;
  margin-left: 5px;
  margin-top: -3px;
  align-items: center;
}
.block-related .swiper-slide .link-icon:hover span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #F3AF34;
}
@media screen and (max-width: 1249px) {
  .block-related .swiper-button-next, .block-related .swiper-button-prev {
    top: initial;
    z-index: 99;
  }
}
@media screen and (max-width: 992px) {
  .block-related .swiper-button-next, .block-related .swiper-button-prev {
    bottom: -115px;
  }
}
@media screen and (min-width: 993px) {
  .block-related .swiper-button-next, .block-related .swiper-button-prev {
    bottom: 0;
  }
}
@media screen and (max-width: 992px) {
  .block-related .swiper-button-prev {
    left: 15px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1249px) {
  .block-related .swiper-button-prev {
    left: 15px;
    bottom: -115px;
  }
}
@media screen and (min-width: 1250px) {
  .block-related .swiper-button-prev {
    left: -45px;
    top: calc(50% - 40px);
  }
}
.block-related .swiper-button-prev:after {
  background: url("/assets/images/icons/chevron-prev.svg") no-repeat;
}
@media screen and (max-width: 992px) {
  .block-related .swiper-button-next {
    right: 15px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1249px) {
  .block-related .swiper-button-next {
    right: 15px;
    bottom: -115px;
  }
}
@media screen and (min-width: 1250px) {
  .block-related .swiper-button-next {
    right: -45px;
    top: calc(50% - 40px);
  }
}
.block-related .swiper-button-next:after {
  background: url("/assets/images/icons/chevron-next.svg") no-repeat;
}
.block-related .swiper-pagination-horizontal {
  bottom: initial;
  left: initial;
}
@media screen and (max-width: 1249px) {
  .block-related .swiper-pagination {
    position: absolute;
    bottom: -114px !important;
  }
}
@media screen and (min-width: 1250px) {
  .block-related .swiper-pagination {
    position: relative !important;
    margin-left: auto;
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}
.block-related.bg-yellow .swiper-pagination-bullet {
  outline: none;
  border: 2px solid #F3AF34;
  transform: translateZ(0);
}
.block-related.bg-yellow .swiper-pagination-bullet:after {
  position: absolute;
  top: -5px;
  content: "";
  left: -5px;
  width: 24px;
  height: 24px;
  border: 2px solid #6A1F16;
  border-radius: 40px;
  background-color: transparent;
  display: inherit;
}
.block-related.bg-yellow .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #6A1F16;
  outline: none;
  border: 2px solid #F3AF34;
}
.block-related.bg-yellow .swiper-button-next, .block-related.bg-yellow .swiper-button-prev {
  background-color: #6A1F16;
}
.block-related.bg-yellow .swiper-button-next:hover, .block-related.bg-yellow .swiper-button-prev:hover {
  background-color: #993533;
}
.block-related.bg-yellow .swiper-button-prev:after {
  background: url("/assets/images/icons/chevron-prev-white.svg") no-repeat;
}
.block-related.bg-yellow .swiper-button-next:after {
  background: url("/assets/images/icons/chevron-next-white.svg") no-repeat;
}
.block-related.bg-yellow .link-icon:after {
  background: url(/assets/images/icons/chevron-right-black.svg) no-repeat;
  content: "";
  display: inline-flex;
  width: 9px;
  height: 10px;
  background-size: contain;
  margin-left: 5px;
  margin-top: -3px;
  align-items: center;
}
.block-related.bg-yellow .link-icon:hover {
  color: inherit;
}
.block-related.bg-yellow .link-icon:hover:after {
  background: url(/assets/images/icons/chevron-next-white.svg) no-repeat;
  content: "";
  display: inline-flex;
  width: 9px;
  height: 10px;
  background-size: contain;
  margin-left: 5px;
  margin-top: -3px;
  align-items: center;
}
.block-related.bg-yellow .link-icon:hover span {
  border-bottom: 2px solid white;
}

@media screen and (max-width: 992px) {
  .block-timeline-carousel {
    padding-top: 40px;
  }
}
.block-timeline-carousel .heading-2 {
  color: #6A1F16;
}
.block-timeline-carousel .swiper-pad {
  overflow: hidden;
}
@media screen and (min-width: 993px) {
  .block-timeline-carousel .swiper-pad {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (max-width: 992px) {
  .block-timeline-carousel .swiper-container {
    padding-bottom: 80px;
  }
}
.block-timeline-carousel .swiper-pagination.main-pagination {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: initial !important;
  left: initial !important;
  counter-reset: number-counter;
  position: relative;
}
@media screen and (max-width: 992px) {
  .block-timeline-carousel .swiper-pagination.main-pagination {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 993px) {
  .block-timeline-carousel .swiper-pagination.main-pagination {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 600px) {
  .block-timeline-carousel .swiper-pagination.main-pagination:after {
    content: "";
    background: url(/assets/images/elements/dots-bg.png) repeat-x;
    display: block;
    right: 0px;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 93%;
    height: 5px;
    z-index: -1;
  }
}
@media screen and (min-width: 600px) and (max-width: 768px) {
  .block-timeline-carousel .swiper-pagination.main-pagination:after {
    width: 85%;
  }
}
.block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet {
  background: #F7F7F7;
  border: none;
  outline: none;
  height: 52px;
  width: 52px;
  position: relative;
}
@media screen and (min-width: 450px) and (max-width: 992px) {
  .block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet {
    height: 71px;
    width: 71px;
  }
}
@media screen and (min-width: 993px) {
  .block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet {
    height: 93px;
    width: 93px;
  }
}
@media screen and (max-width: 992px) {
  .block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet:after {
    content: initial;
  }
}
@media screen and (min-width: 993px) {
  .block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet:after {
    content: "";
    top: -1px;
    left: -1px;
    width: 95px;
    height: 95px;
    border: 8px solid #FFF;
    border-radius: 48px;
  }
}
.block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet:before {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  content: counter(number-counter);
  counter-increment: number-counter;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #6A1F16;
}
.block-timeline-carousel .swiper-pagination.main-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F3AF34;
  border: none;
  outline: none;
}
@media screen and (max-width: 992px) {
  .block-timeline-carousel .swiper-pagination {
    bottom: -20px;
  }
}
.block-timeline-carousel .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 5px;
}
@media screen and (min-width: 993px) {
  .block-timeline-carousel .swiper-button-next, .block-timeline-carousel .swiper-button-prev {
    top: calc(50% + 100px);
  }
}
@media screen and (max-width: 992px) {
  .block-timeline-carousel .swiper-button-next, .block-timeline-carousel .swiper-button-prev {
    top: initial;
    bottom: 0px;
  }
}
.block-timeline-carousel .swiper-timeline-pagination.swiper-timeline-pagination-clone {
  bottom: 6px;
  left: 50%;
  transform: translateX(-46%);
}
.block-timeline-carousel .swiper-timeline-pagination.swiper-timeline-pagination-clone .swiper-pagination-bullet {
  margin-right: 10px;
}

/*Layout*/
/*Global site header*/
.site-header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 100;
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom {
    padding-top: 30px;
  }
}
.site-header .header-bottom .header-flex {
  display: flex;
  justify-content: end;
  align-items: center;
  background: #fff;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .header-flex {
    padding-right: 0;
    padding-left: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .header-flex {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .header-flex .site-branding {
    margin-right: auto;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation {
    opacity: 0;
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation.mobile-show {
    position: fixed;
    height: 100%;
    width: 100%;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    display: block;
    opacity: 1;
    right: 0;
    top: 71px;
    z-index: 200 !important;
    overflow-y: scroll;
    padding-bottom: 70px;
  }
}
.site-header .header-bottom .site-navigation ul {
  display: flex;
  margin-bottom: 0;
  background: #FFF;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul {
    flex-direction: column;
    padding-left: 0;
    border-top: 1px solid #F3AF34;
  }
}
.site-header .header-bottom .site-navigation ul li {
  display: inline-block;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 1199px) and (max-width: 1399px) {
  .site-header .header-bottom .site-navigation ul li {
    margin-right: 8px;
    margin-left: 8px;
  }
}
@media screen and (min-width: 1400px) {
  .site-header .header-bottom .site-navigation ul li {
    margin-right: 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .header-bottom .site-navigation ul li {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-nav {
  margin-top: 5px;
}
.site-header .header-bottom .site-navigation ul li.parent-sub {
  position: relative;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow {
    position: relative;
  }
}
@media screen and (max-width: 1199px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow {
    transition: 0.4s;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow:after {
    content: "";
    background: url("/assets/images/icons/chevron-mobile-down.svg") no-repeat;
    right: 22px;
    display: block;
    width: 22px;
    height: 13px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 1199px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow:after {
    transition: 0.4s;
  }
}
@media screen and (max-width: 1199px) and (min-width: 993px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub .dropdown-arrow:after {
    background: url("/assets/images/icons/chevron-down.svg") no-repeat;
    right: 17px;
    display: block;
    width: 13px;
    height: 8px;
  }
}
@media screen and (min-width: 1199px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub > span {
    padding-bottom: 5px;
    margin-top: 5px;
    border-bottom: 4px solid transparent;
  }
}
@media screen and (min-width: 1199px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub > span {
    transition: 0.4s;
  }
}
@media screen and (min-width: 1199px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub > span:hover {
    border-bottom: 4px solid #F3AF34;
    cursor: pointer;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-sub img {
  margin-left: 10px;
}
.site-header .header-bottom .site-navigation ul li.parent-sub.menu-active > span {
  border-bottom: 4px solid #F3AF34;
}
@media (min-width: 992px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active > span a {
    font-family: montserrat, sans-serif;
    font-weight: 500;
    font-style: normal;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active > span a {
    color: #6A1F16;
  }
}
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul li.parent-sub.menu-active .dropdown-arrow {
    transition: 0.4s;
  }
}
.site-header .header-bottom .site-navigation ul li.parent-sub.menu-active .dropdown-arrow:after {
  transform: translateY(-50%) rotate(90deg);
}
.site-header .header-bottom .site-navigation ul a {
  display: block;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.4rem;
  text-align: right;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.469px;
}
@media screen and (min-width: 1199px) and (max-width: 1399px) {
  .site-header .header-bottom .site-navigation ul a {
    font-size: 1rem;
  }
}
.site-header .header-bottom .site-navigation ul a:hover {
  color: #000;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul a {
    font-size: 2.2rem;
    color: #6A1F16;
    padding: 32px 25px;
    width: 100%;
    border-bottom: 1px solid #F3AF34;
    text-align: left;
    line-height: 24px;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu {
  position: relative;
  display: flex;
  flex-direction: column;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul {
  flex-direction: column;
  padding-left: 0;
  background-color: #FFF;
  white-space: nowrap;
  position: relative;
  opacity: 0;
  display: none;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul {
    transition: 0.4s;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul {
    top: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul {
    flex-direction: column;
    position: absolute;
    top: 30px;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li a {
  text-transform: initial;
  padding: 22px 25px 22px 30px;
  font-size: 1.6rem;
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li a {
    padding: 15px 40px 15px 30px;
    border-left: 7px solid transparent;
  }
  .site-header .header-bottom .site-navigation ul .sub-menu ul li a:hover {
    border-left: 7px solid #F3AF34;
    background-color: #F7F7F7;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li a {
    background-color: #F3AF34;
    color: #000;
    border-left: none;
    border-bottom: 1px solid #FFF;
    letter-spacing: 0px;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .dropdown-arrow {
  position: relative;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .dropdown-arrow:after {
  content: initial;
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .dropdown-arrow a {
    position: relative;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .dropdown-arrow a:after {
  content: "";
  position: absolute;
  width: 22px;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .dropdown-arrow a:after {
    display: block;
    right: 22px;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: url("/assets/images/icons/chevron-mobile-down.svg") no-repeat;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .dropdown-arrow a:after {
    background: url("/assets/images/icons/chevron-right-black.png") no-repeat;
    height: 13px;
    display: inline-block;
    margin-left: 10px;
    margin-top: 2px;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu:hover {
    background-color: #F3AF34;
  }
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu:hover a {
    background-color: #F3AF34;
    border-left-color: #F3AF34;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu span img {
  margin-left: initial;
  margin-right: 10px;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .js-show li {
  height: auto;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .js-show a {
  background: #FFF;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .js-show a:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-left: 10px;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .js-show a:hover {
  background-color: #F7F7F7;
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu .js-show a:hover:after {
  background: url("/assets/images/icons/chevron-right-gold.svg") no-repeat;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu.sub-active .dropdown-arrow a {
    transition: 0.4s;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu.sub-active .dropdown-arrow a:after {
    transform: translateY(-50%) rotate(90deg);
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu.sub-active .js-show ul {
  display: flex !important;
  opacity: 1 !important;
  position: absolute !important;
  left: 100% !important;
  z-index: 99 !important;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu.sub-active .js-show ul {
    position: relative !important;
    left: 0px !important;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu ul li.sub-sub-menu.sub-active .js-show ul li a {
    padding: 18px 25px 18px 30px;
    letter-spacing: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu > ul {
    left: -12%;
    transform: translateX(-12%);
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu ul {
  opacity: 1;
  left: 0px;
  position: absolute;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu ul {
    display: flex;
    position: relative;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu ul {
    display: flex;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.07), 0 10px 24.1177px rgba(0, 0, 0, 0.0456112), 0 5px 10.0172px rgba(0, 0, 0, 0.035), 0 3px 3.62304px rgba(0, 0, 0, 0.0243888);
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu ul li {
    padding-left: 0;
    padding-right: 0;
  }
}
.site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu .sub-sub-menu {
  margin-right: 0px !important;
  margin-left: 0px !important;
}
.site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu .sub-sub-menu:hover {
  background-color: #F3AF34;
}
.site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu .sub-sub-menu ul {
  opacity: 0;
  position: absolute;
  left: 100%;
  top: 0px;
  background: #FFF;
  transform: translateY(0px);
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu .sub-sub-menu ul {
    left: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .site-navigation ul .sub-menu.show-sub-menu .sub-sub-menu ul {
    display: none;
  }
}
@media screen and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .search {
    transition: 0.4s;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .search {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .search {
    position: relative;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 13px;
  }
  .site-header .header-bottom .search:hover {
    cursor: pointer;
  }
}
.site-header .header-bottom .search img {
  position: absolute;
  z-index: 9999;
  right: 60px;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .search img {
    top: 18px;
    right: 81px;
  }
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .search img {
    width: 14.73px;
    height: 15.21px;
  }
}
@media screen and (min-width: 1200px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .search img {
    transition: 0.4s;
  }
}
.site-header .header-bottom .search span {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .search span {
    display: none;
  }
}
.site-header .header-bottom .search form {
  display: none;
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .search form {
    display: none;
    opacity: 0;
    position: absolute;
    right: 0px;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .search form {
    display: flex;
    position: absolute;
    left: 0px;
    right: 0px;
    background: #fff;
    padding: 15px;
    top: 0px;
    z-index: -1;
  }
}
@media screen and (max-width: 1199px) and (prefers-reduced-motion: no-preference) {
  .site-header .header-bottom .search form {
    transition: 0.4s;
  }
}
.site-header .header-bottom .search input {
  width: 152px;
  margin-right: 2px;
  border-radius: 9px;
  border: 1px solid #ADADAD;
}
.site-header .header-bottom .search .submit-search {
  background: url("/assets/images/icons/chevron-btn-submit.svg") no-repeat;
  display: none;
  width: 34px;
  height: 34px;
  border: none;
  transition: 0.4s;
}
.site-header .header-bottom .search .submit-search:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .search.show-form img {
    transform: translateX(-100px);
  }
}
.site-header .header-bottom .search.show-form span {
  opacity: 0;
}
.site-header .header-bottom .search.show-form form {
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  .site-header .header-bottom .search.show-form form {
    display: flex;
  }
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .search.show-form form {
    transform: translateY(71px);
    border-bottom: 1px solid #ccc;
    box-shadow: inset 0px 11px 8px -10px #CCC;
  }
}
.site-header .header-bottom .search.show-form input {
  border: 1px solid gray;
  width: 152px;
  padding-left: 35px;
}
@media screen and (max-width: 1199px) {
  .site-header .header-bottom .search.show-form input {
    flex-grow: 1;
    padding-left: 10px;
  }
}
.site-header .header-bottom .search.show-form input:focus-visible {
  border: none;
}
.site-header .header-bottom .search.show-form .submit-search {
  display: block;
}

.top-bar {
  padding-top: 6px;
  padding-bottom: 5px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .top-bar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .top-bar .container-fluid, .top-bar .container-sm, .top-bar .container-md, .top-bar .container-lg, .top-bar .container-xl, .top-bar .container-xxl, .top-bar .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .top-bar {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #6A1F16;
    height: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .top-bar {
    background-color: #F3AF34;
  }
}
.top-bar ul {
  display: none;
}
@media screen and (min-width: 1200px) {
  .top-bar ul {
    display: flex;
    justify-content: end;
    background-color: #6A1F16 !important;
  }
}
@media screen and (max-width: 1199px) {
  .top-bar ul {
    flex-direction: column;
    background-color: #F3AF34 !important;
  }
}
.top-bar ul li {
  display: inline-block;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 10px;
}
.top-bar ul li:last-child {
  margin-right: 0 !important;
}
@media screen and (max-width: 1199px) {
  .top-bar ul li {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
.top-bar ul li a {
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .top-bar ul li a {
    transition: 0.4s;
  }
}
.top-bar ul li a:hover {
  color: #EC5F2C !important;
  text-decoration: underline !important;
}
@media screen and (max-width: 1199px) {
  .top-bar ul li a {
    padding: 0px 20px !important;
    font-size: 1.6rem !important;
    letter-spacing: 0px !important;
  }
}
@media screen and (min-width: 1200px) {
  .top-bar ul li a {
    letter-spacing: 0px !important;
  }
  .top-bar ul li a:last-child {
    padding-right: 0 !important;
  }
}
.top-bar .social {
  position: absolute;
  right: 35px;
  top: 15px;
}
.top-bar .social li {
  margin-right: 0;
}
.top-bar .social li a {
  padding: 0px !important;
}

/*Toggler icons*/
.toggler-icons {
  background: transparent;
  border-bottom: 4px solid transparent;
  border-color: transparent;
  border-top: 4px solid transparent;
  color: #6A1F16;
  display: block;
  font-size: 0;
  height: 24px;
  margin: 0 auto;
  position: relative;
  width: 31px;
  margin-right: 16px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .toggler-icons {
    transition: 0.4s;
  }
}
.toggler-icons:before, .toggler-icons:after {
  background: #6A1F16;
  border-radius: 0px;
  content: "";
  display: block;
  height: 4px;
  left: 41%;
  position: absolute;
  top: 50%;
  width: 117%;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .toggler-icons:before, .toggler-icons:after {
    transition: 0.4s;
  }
}
.toggler-icons:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.toggler-icons:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*Adds navigation toggle button on mobile*/
.navbar-toggle {
  background: #F3AF34;
  border: none;
  height: 71px;
  opacity: 1;
  padding: 0;
  pointer-events: all;
  position: relative;
  visibility: visible;
  width: 71px;
  z-index: 100;
  /*Default styles*/
  /*Used when sub toggle is visible*/
}
@media (min-width: 1200px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle:focus {
  outline: none;
}
.navbar-toggle.collapsed {
  background: transparent;
}
.navbar-toggle.collapsed .toggler-icons {
  border-color: #6A1F16;
}
.navbar-toggle.collapsed .toggler-icons:before, .navbar-toggle.collapsed .toggler-icons:after {
  transform: translate(-50%, -50%);
  background: #6A1F16;
}
.navbar-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/*Global site footer*/
.site-footer {
  padding-top: 63px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .site-footer {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .site-footer {
    padding-top: 44px;
  }
}
.site-footer .col-main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-bottom: 1px solid #F3AF34;
  padding-bottom: 27px;
}
@media (min-width: 992px) {
  .site-footer .col-main {
    flex-direction: row;
    padding-bottom: 39px;
  }
}
@media (min-width: 992px) {
  .site-footer .col-main .col-branding {
    width: 680px;
    display: flex;
    gap: 60px;
  }
}
@media (max-width: 991.98px) {
  .site-footer .col-main .col-branding .footer-logo {
    margin: 0 auto;
    margin-bottom: 26px;
  }
}
@media (min-width: 992px) {
  .site-footer .col-main .col-branding .footer-logo {
    max-width: 265px;
  }
}
.site-footer .col-main .col-branding .social {
  margin-top: 27px;
}
@media (max-width: 991.98px) {
  .site-footer .col-main .col-branding .social {
    display: flex;
    justify-content: center;
    margin-bottom: 27px;
  }
}
.site-footer .col-main .col-branding .footer-menu a {
  text-decoration: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: em;
}
@media (min-width: 1200px) {
  .site-footer .col-main .col-proof {
    width: 500px;
  }
}
.site-footer .col-main .col-proof .disclaimer {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.2em;
}
@media (max-width: 991.98px) {
  .site-footer .col-main .col-proof .disclaimer {
    text-align: center;
  }
}
.site-footer .col-main .col-proof .logos {
  gap: 33px;
  margin-top: 18px;
  justify-content: center;
}
@media (min-width: 992px) {
  .site-footer .col-main .col-proof .logos {
    gap: 40px;
    margin-top: 27px;
  }
}
.site-footer .col-main .footer-nav h4 {
  color: #F3AF34;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer .copyright {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 15px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 19px;
  font-size: 1.1rem;
}
.site-footer .copyright .col-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: none;
  padding-bottom: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .site-footer .copyright .col-main {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer .copyright .col-main p {
  margin-bottom: 0;
}

/*Global main content area*/
#breadcrumbs {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 25px 10px;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  #breadcrumbs {
    padding-left: 15px;
  }
  #breadcrumbs span span:first-child a {
    margin-left: -10px;
  }
  #breadcrumbs .col-12 {
    padding-left: 0;
  }
}
#breadcrumbs span {
  padding: 0 5px;
}
#breadcrumbs a {
  text-decoration: none;
  color: #000;
}
#breadcrumbs a:hover {
  text-decoration: underline;
}

.block-hero-main .heading-1, .block-hero-main .tribe-events-pg-template .tribe-events-single-event-title, .tribe-events-pg-template .block-hero-main .tribe-events-single-event-title {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .block-hero-main .heading-1, .block-hero-main .tribe-events-pg-template .tribe-events-single-event-title, .tribe-events-pg-template .block-hero-main .tribe-events-single-event-title {
    font-size: 7rem;
    line-height: 1em;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-hero-main .heading-1, .block-hero-main .tribe-events-pg-template .tribe-events-single-event-title, .tribe-events-pg-template .block-hero-main .tribe-events-single-event-title {
    font-size: 8.33rem;
    line-height: 0.86em;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .block-hero-main .heading-1, .block-hero-main .tribe-events-pg-template .tribe-events-single-event-title, .tribe-events-pg-template .block-hero-main .tribe-events-single-event-title {
    font-size: 9.66rem;
    line-height: 0.92em;
  }
}
@media (min-width: 1450px) {
  .block-hero-main .heading-1, .block-hero-main .tribe-events-pg-template .tribe-events-single-event-title, .tribe-events-pg-template .block-hero-main .tribe-events-single-event-title {
    font-size: 11rem;
    line-height: 0.83em;
  }
}

@media (max-width: 767.98px) {
  .block-hero {
    margin-top: 0;
  }
}
.block-hero .two-column {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 993px) {
  .block-hero .two-column {
    flex-direction: row;
  }
}
.block-hero .two-column .col-content {
  width: 100%;
}
.block-hero .two-column .col-image, .block-hero .two-column .col-content {
  flex: 0 0 auto;
  width: 100%;
}
@media screen and (min-width: 993px) {
  .block-hero .two-column .col-image, .block-hero .two-column .col-content {
    width: 50%;
  }
}
.block-hero .two-column .col-image .img-holder img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-bottom-right-radius: 65px;
}
@media (max-width: 767.98px) {
  .block-hero .two-column .col-image .img-holder img {
    border-bottom-right-radius: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-hero .two-column .col-image .img-holder img {
    border-bottom-right-radius: 95px;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .block-hero .two-column .col-image .img-holder img {
    border-bottom-right-radius: 110px;
  }
}
@media (min-width: 1450px) {
  .block-hero .two-column .col-image .img-holder img {
    border-bottom-right-radius: 124px;
  }
}
.block-hero .two-column .col-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
  padding-left: 5%;
}
@media screen and (min-width: 1400px) {
  .block-hero .two-column .col-content {
    max-width: 50%;
  }
}
@media screen and (max-width: 992px) {
  .block-hero .two-column .col-content {
    margin-top: 30px;
  }
}

.block-image-text {
  position: relative;
}
@media (max-width: 767.98px) {
  .block-image-text {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-image-text {
    padding-bottom: 75px;
    padding-top: 75px;
  }
}
@media (min-width: 1200px) {
  .block-image-text {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media (max-width: 991.98px) {
  .block-image-text picture {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.block-image-text.bg-left:before {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0;
  bottom: 0px;
  z-index: -1;
  border-top-right-radius: 35px;
  border-bottom-right-radius: 35px;
}
@media (max-width: 991.98px) {
  .block-image-text.bg-left:before {
    top: 20%;
    width: 100%;
    height: initial;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
  }
}
@media (min-width: 1200px) {
  .block-image-text.bg-left:before {
    max-width: 1530px;
  }
}
.block-image-text.bg-left.bg-yellow-match:before {
  background-color: #F3AF34;
}
.block-image-text.bg-left.bg-yellow-match .match-text-color {
  color: #6A1F16;
}
.block-image-text.bg-left.bg-yellow-match .btn, .block-image-text.bg-left.bg-yellow-match .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-image-text.bg-left.bg-yellow-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-left.bg-yellow-match .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-image-text.bg-left.bg-yellow-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-left.bg-yellow-match .tribe-events .tribe-events-c-search__button, .tribe-events .block-image-text.bg-left.bg-yellow-match .tribe-events-c-search__button, .block-image-text.bg-left.bg-yellow-match .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-image-text.bg-left.bg-yellow-match input {
  background-color: #6A1F16;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.block-image-text.bg-left.bg-sienna-match:before {
  background-color: #6A1F16;
}
.block-image-text.bg-left.bg-sienna-match .match-text-color {
  color: #FFF;
}
.block-image-text.bg-left.bg-sienna-match .btn, .block-image-text.bg-left.bg-sienna-match .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-image-text.bg-left.bg-sienna-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-left.bg-sienna-match .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-image-text.bg-left.bg-sienna-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-left.bg-sienna-match .tribe-events .tribe-events-c-search__button, .tribe-events .block-image-text.bg-left.bg-sienna-match .tribe-events-c-search__button, .block-image-text.bg-left.bg-sienna-match .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-image-text.bg-left.bg-sienna-match input {
  background-color: #F3AF34;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.block-image-text.bg-right:after {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0px;
  z-index: -1;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
}
@media (max-width: 991.98px) {
  .block-image-text.bg-right:after {
    top: 20%;
    width: 100%;
    height: initial;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
  }
}
@media (min-width: 1200px) {
  .block-image-text.bg-right:after {
    max-width: 1530px;
  }
}
.block-image-text.bg-right.bg-yellow-match:after {
  background-color: #F3AF34;
}
.block-image-text.bg-right.bg-yellow-match .match-text-color {
  color: #6A1F16;
}
.block-image-text.bg-right.bg-yellow-match .btn, .block-image-text.bg-right.bg-yellow-match .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-image-text.bg-right.bg-yellow-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-right.bg-yellow-match .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-image-text.bg-right.bg-yellow-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-right.bg-yellow-match .tribe-events .tribe-events-c-search__button, .tribe-events .block-image-text.bg-right.bg-yellow-match .tribe-events-c-search__button, .block-image-text.bg-right.bg-yellow-match .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-image-text.bg-right.bg-yellow-match input {
  background-color: #6A1F16;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.block-image-text.bg-right.bg-sienna-match:after {
  background-color: #6A1F16;
}
.block-image-text.bg-right.bg-sienna-match .match-text-color {
  color: #FFF;
}
.block-image-text.bg-right.bg-sienna-match .btn, .block-image-text.bg-right.bg-sienna-match .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-image-text.bg-right.bg-sienna-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-right.bg-sienna-match .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-image-text.bg-right.bg-sienna-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-right.bg-sienna-match .tribe-events .tribe-events-c-search__button, .tribe-events .block-image-text.bg-right.bg-sienna-match .tribe-events-c-search__button, .block-image-text.bg-right.bg-sienna-match .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-image-text.bg-right.bg-sienna-match input {
  background-color: #F3AF34;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.block-image-text.bg-white-match .match-text-color {
  color: #000;
}
.block-image-text.bg-white-match .match-text-color h2 {
  color: #6A1F16;
}
.block-image-text.bg-white-match .btn, .block-image-text.bg-white-match .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-image-text.bg-white-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-white-match .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-image-text.bg-white-match .tribe-events-c-subscribe-dropdown__button, .block-image-text.bg-white-match .tribe-events .tribe-events-c-search__button, .tribe-events .block-image-text.bg-white-match .tribe-events-c-search__button, .block-image-text.bg-white-match .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-image-text.bg-white-match input {
  background-color: #F3AF34;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.img-grid {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .img-grid {
    margin-top: 3px;
    margin-bottom: 3px;
  }
  .img-grid [class*=col-] {
    margin-top: 7px;
    margin-bottom: 7px;
  }
}
.img-grid a {
  position: relative;
}
.img-grid a:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
  border-radius: 35px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .img-grid a:after {
    transition: 0.4s;
  }
}
.img-grid a:hover:after {
  opacity: 1;
  visibility: visible;
}
.img-grid.six-column .img-rounded {
  border-radius: 22px;
}
.img-grid.six-column a:after {
  border-radius: 22px;
}
@media (max-width: 991.98px) {
  .img-grid {
    --bs-gutter-x: 6px;
  }
  .img-grid .img-rounded {
    border-radius: 16px;
  }
  .img-grid a:after {
    border-radius: 16px;
  }
  .img-grid.six-column .img-rounded {
    border-radius: 12px;
  }
  .img-grid.six-column a:after {
    border-radius: 12px;
  }
}

.block-cta .col-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 45px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-cta .col-content {
    padding: 52px;
  }
}
@media (min-width: 1200px) {
  .block-cta .col-content {
    padding: 60px;
  }
}
@media (min-width: 768px) {
  .block-cta .col-img {
    width: 580px;
  }
}
.block-cta .col-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 767.98px) {
  .block-cta {
    padding-top: 0;
    padding-bottom: 0;
  }
  .block-cta .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .block-cta .container .row {
    margin-left: 0;
    margin-right: 0;
  }
  .block-cta .container .row .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .block-cta .container .row .col-lg-12 .tl-rounded, .block-cta .container .row .col-lg-12 .img-right .col-content, .block-cta .img-right .container .row .col-lg-12 .col-content, .block-cta .container .row .col-lg-12 .img-left img, .block-cta .img-left .container .row .col-lg-12 img, .block-cta .container .row .col-lg-12 .tr-rounded, .block-cta .container .row .col-lg-12 .img-right img, .block-cta .img-right .container .row .col-lg-12 img, .block-cta .container .row .col-lg-12 .img-left .col-content, .block-cta .img-left .container .row .col-lg-12 .col-content, .block-cta .container .row .col-lg-12 .bl-rounded, .block-cta .container .row .col-lg-12 .br-rounded {
    border-radius: 0px;
  }
}
.block-cta .bg-yellow {
  color: #6A1F16;
}
.block-cta .bg-yellow .heading-2 {
  color: #6A1F16;
}
@media screen and (max-width: 992px) {
  .block-accordion .col-content .heading-2 {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 993px) {
  .block-accordion .col-content .heading-2 {
    margin-bottom: 30px;
  }
}
.block-accordion .col-content a {
  text-decoration: underline;
  font-weight: bold;
}
.block-accordion .col-content a:hover {
  color: #EC5F2C;
}
@media screen and (max-width: 992px) {
  .block-accordion .col-accordion {
    margin-bottom: 20px;
  }
}
.block-accordion.accordion-image-text {
  position: relative;
}
@media screen and (max-width: 992px) {
  .block-accordion.accordion-image-text {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .block-accordion.accordion-image-text img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .block-accordion.accordion-image-text .btn, .block-accordion.accordion-image-text .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-accordion.accordion-image-text .tribe-events-c-subscribe-dropdown__button, .block-accordion.accordion-image-text .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-accordion.accordion-image-text .tribe-events-c-subscribe-dropdown__button, .block-accordion.accordion-image-text .tribe-events .tribe-events-c-search__button, .tribe-events .block-accordion.accordion-image-text .tribe-events-c-search__button, .block-accordion.accordion-image-text .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-accordion.accordion-image-text input {
    position: absolute;
    bottom: 30px;
  }
}

.block-timeline-accordion .accordion-body a {
  text-decoration: underline;
  font-weight: bold;
}
.block-timeline-accordion .accordion-body a:hover {
  color: #EC5F2C;
}

.block-el-right {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 50;
}
@media screen and (min-width: 993px) and (max-width: 1199px) {
  .block-el-right.square {
    top: 0px;
  }
}
.block-el-right.square img {
  width: 137px;
}
@media screen and (min-width: 994px) {
  .block-el-right.square img {
    width: 381px;
  }
}
.block-el-right.square.no-second-square img {
  width: 66px;
}
@media screen and (min-width: 994px) {
  .block-el-right.square.no-second-square img {
    width: 168px;
  }
}
.block-el-right.square-middle {
  top: 50%;
  transform: translateY(-50%);
}
.block-el-right.square-middle img {
  width: 0px;
}
@media screen and (min-width: 994px) {
  .block-el-right.square-middle img {
    width: 157px;
  }
}
.block-el-right.horizontal-line img {
  width: 262px;
}
@media screen and (min-width: 993px) {
  .block-el-right.horizontal-line img {
    width: 944px;
  }
}
.block-el-right.horizontal-line.hero img {
  width: 277px;
}
@media screen and (min-width: 1200px) {
  .block-el-right.horizontal-line.hero img {
    width: 436px;
  }
}

.block-el-left {
  position: absolute;
  bottom: -35px;
  left: 0px;
  z-index: 50;
}
.block-el-left.vertical-line img {
  width: 24px;
}
@media screen and (min-width: 1400px) {
  .block-el-left.vertical-line img {
    width: 98px;
  }
}
.block-el-left.vertical-line.hero {
  bottom: -45px;
}
@media screen and (min-width: 1200px) {
  .block-el-left.vertical-line.hero {
    bottom: -70px;
  }
}
.block-el-left.vertical-line.hero.top-pos {
  bottom: initial;
  top: 0px;
}
@media screen and (max-width: 1199px) {
  .block-el-left.vertical-line.hero.top-pos img {
    width: 0px;
  }
}
.block-el-left.vertical-line.hero img {
  width: 28px;
}
@media screen and (min-width: 1200px) {
  .block-el-left.vertical-line.hero img {
    width: 88px;
  }
}
.block-el-left.horizontal-line {
  top: -15px;
  bottom: initial;
}
@media screen and (min-width: 1200px) {
  .block-el-left.horizontal-line {
    top: 0px;
  }
}
.block-el-left.horizontal-line img {
  width: 170px;
}
@media screen and (min-width: 1200px) {
  .block-el-left.horizontal-line img {
    width: 639px;
  }
}
.block-el-left.horizontal-line.hero {
  top: 0px;
}
.block-el-left.horizontal-line.hero img {
  width: 373px;
}
@media screen and (min-width: 1200px) {
  .block-el-left.horizontal-line.hero img {
    width: 484px;
  }
}
.block-el-left.horizontal-line.bottom-pos {
  left: 0px;
  bottom: 4px;
  top: initial;
}
.block-el-left.horizontal-line.bottom-pos img {
  width: 170px;
}
@media screen and (min-width: 1200px) {
  .block-el-left.horizontal-line.bottom-pos img {
    width: 455px;
  }
}

.dots {
  position: absolute;
}
.dots.top-right {
  top: -30px;
  right: -30px;
}
.dots.top-left {
  top: -30px;
  left: -30px;
}
.dots.bottom-right {
  bottom: -30px;
  right: -30px;
}
.dots.bottom-left {
  bottom: -30px;
  left: -30px;
}
.dots.el-hide-behind {
  z-index: -1;
}

.page-bottom {
  overflow: hidden;
  padding-top: 20px;
}

.search-results .results-col {
  border-bottom: 1px solid #c6c6c6;
}
.search-results .general-block h3 {
  text-transform: capitalize;
}
.search-results .general-block a {
  text-decoration: none;
}
.search-results .general-block a:hover {
  color: #000;
  text-decoration: underline;
}

.single-career .content {
  margin-bottom: 30px;
}
.single-career .content a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
}
.single-career .degree {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .single-career .degree {
    text-align: left;
    margin: 20px 0;
  }
}
.single-career .degree img {
  margin: 0 auto;
  width: 150px;
  height: auto;
}
@media screen and (max-width: 991px) {
  .single-career .degree img {
    margin: 0;
  }
}
.single-career .hot-career {
  text-align: center;
  border-top: 1px solid #efefef;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .single-career .hot-career {
    text-align: left;
    margin: 20px 0;
  }
}
.single-career .hot-career p {
  font-size: 1.4rem;
  line-height: 1.1;
}
.single-career .hot-career img {
  margin: 0 auto;
  width: 35px;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .single-career .hot-career img {
    margin: 0;
  }
}
.single-career .high-demand {
  text-align: center;
  border-top: 1px solid #efefef;
  padding-top: 10px;
}
.single-career .high-demand p {
  font-size: 1.4rem;
  line-height: 1.1;
}
@media screen and (max-width: 991px) {
  .single-career .high-demand {
    text-align: left;
    margin: 20px 0;
  }
}
.single-career .type {
  text-transform: uppercase;
  font-weight: 600;
}
.single-career hr {
  border-top: 2px solid #9C9C9C;
  opacity: 1;
}
.single-career .details .content {
  padding: 0 20px;
}
.single-career .details .content h2 {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #6A1F16;
}
@media (max-width: 767.98px) {
  .single-career .details .content h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .single-career .details .content h2 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .single-career .details .content h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1450px) {
  .single-career .details .content h2 {
    font-size: 3rem;
  }
}
.single-career .details .content h3 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .single-career .details .content h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .single-career .details .content h3 {
    font-size: 1.93rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .single-career .details .content h3 {
    font-size: 2.06rem;
  }
}
@media (min-width: 1450px) {
  .single-career .details .content h3 {
    font-size: 2.2rem;
  }
}
.single-career .details .content strong {
  font-weight: 500;
  font-size: 1.3rem;
}
.single-career .details .content .subtitle {
  font-size: 1.4rem;
  font-weight: 400;
}
.single-career .details .content p {
  margin-bottom: 0;
}
.single-career .details .content ul {
  margin: 20px 0;
}
.single-career .details .content ul li {
  font-weight: 600;
}
.single-career .details .content a {
  color: #6A1F16;
}
.single-career .details .content .button {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1.5;
  text-decoration: none;
  white-space: normal;
  padding: 15px 45px;
  border-radius: 8px;
  font-size: 1.8rem;
  position: relative;
  margin: 20px 0;
  align-items: center;
  min-height: 45px;
  min-width: 40px;
  overflow: revert;
  position: relative;
  text-decoration: none;
  background: #F3AF34;
  color: #6A1F16;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .single-career .details .content .button {
    transition: 0.4s;
  }
}
.single-career .details .content .button:hover {
  background-color: #FFC861;
  color: #6A1F16 !important;
}

/* Blocks */
.block-event-search .search {
  position: relative;
}
.block-event-search .search .search-events-icon {
  display: inline-block;
  position: absolute;
  left: 20px;
  width: 16px;
  height: 18px;
  background-size: contain;
  top: 32px;
  transform: translateY(-50%);
  z-index: 99;
}
@media screen and (min-width: 993px) {
  .block-event-search .search .search-events-icon {
    top: 50%;
  }
}
.block-event-search .search input {
  height: 61px;
  width: 100%;
  text-indent: 40px;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  position: relative;
  font-size: 1.6rem;
}
.block-event-search .search input:focus {
  box-shadow: none;
  border: 2px solid #F3AF34;
}
.block-event-search .search button {
  position: relative;
  border: none;
}
@media screen and (max-width: 992px) {
  .block-event-search .search button {
    margin-top: 20px;
    line-height: 9px;
    margin-right: auto;
    display: block;
  }
}
@media screen and (min-width: 993px) {
  .block-event-search .search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .block-event-search .search button:hover {
    right: 14px;
  }
}

.event-block .event-row {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.18em;
  font-weight: 300;
  letter-spacing: -0.1px;
  margin-bottom: 30px;
}
.event-block .event-row .gap-event {
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .event-block .event-row .gap-event {
    gap: 20px;
    margin-top: 30px;
  }
}
.event-block .event-row .event-header {
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.event-block .event-row .event-header span {
  margin-bottom: 10px;
}
.event-block .event-row .day-num {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #6A1F16;
  font-size: 5rem;
}
.event-block .event-row .day-month {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  font-weight: 400;
  margin-top: 10px;
}
.event-block .event-row .event-detail .event-icon {
  position: relative;
  padding-left: 28px;
}
.event-block .event-row .event-detail .event-icon:before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.event-block .event-row .event-detail .event-icon.hybrid-event:before {
  background: url("/assets/images/icons/hybrid-event.svg") no-repeat;
  width: 14px;
  height: 12px;
}
.event-block .event-row .event-detail .event-icon.virtual-event:before {
  background: url("/assets/images/icons/virtual-event.svg") no-repeat;
  width: 25px;
  height: 16px;
}
.event-block .event-row .event-detail.featured {
  position: relative;
}
.event-block .event-row .event-detail.featured .date {
  font-size: 1.4rem;
}
.event-block .event-row .event-detail.featured:before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #F3AF34;
  position: absolute;
  left: -20px;
}
.event-block .event-row .event-detail.featured .featured-event {
  color: #6A1F16;
  font-weight: 700;
  padding-left: 18px;
  margin-right: 10px;
}
.event-block .event-row .event-detail.featured .featured-event:before {
  background: url("/assets/images/icons/featured-event.svg") no-repeat;
  width: 10px;
  height: 13px;
}
.event-block .event-row .event-detail .date {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.18em;
  margin-bottom: 0;
}
.event-block .event-row .event-detail .event-title {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 1.28em;
}
.event-block .event-row .event-detail strong {
  font-weight: 700;
}
.event-block .event-row .event-detail button {
  border: none;
}
.event-block .events-pagination {
  margin-top: 50px;
}
.event-block .events-pagination .nav {
  display: flex;
  justify-content: space-between;
  border-top: 3px solid #F3AF34;
  padding-top: 35px;
}
.event-block .events-pagination .nav a {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem;
  text-decoration: none;
}
.event-block .events-pagination .nav a:before, .event-block .events-pagination .nav a:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 13px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
}
.event-block .events-pagination .nav a.prev {
  position: relative;
  padding-left: 20px;
}
.event-block .events-pagination .nav a.prev:before {
  background: url("/assets/images/icons/events-prev.svg") no-repeat;
  left: 0px;
}
.event-block .events-pagination .nav a.next {
  position: relative;
  padding-right: 20px;
}
.event-block .events-pagination .nav a.next:after {
  background: url("/assets/images/icons/events-next.svg") no-repeat;
  right: 0px;
}
.event-block .events-pagination .btn, .event-block .events-pagination .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .event-block .events-pagination .tribe-events-c-subscribe-dropdown__button, .event-block .events-pagination .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .event-block .events-pagination .tribe-events-c-subscribe-dropdown__button, .event-block .events-pagination .tribe-events .tribe-events-c-search__button, .tribe-events .event-block .events-pagination .tribe-events-c-search__button, .event-block .events-pagination .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .event-block .events-pagination input {
  margin-left: auto !important;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.block-event-detail .all-events {
  position: relative;
  padding-left: 20px;
  text-decoration: none;
  margin-bottom: 25px;
  display: block;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.block-event-detail .all-events:hover {
  color: #EC5F2C;
}
.block-event-detail .all-events:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3px;
  display: inline-block;
  width: 10px;
  height: 12px;
  background: url("/assets/images/icons/all-prev.svg") no-repeat;
  background-size: contain;
}
.block-event-detail .event-content p a {
  font-weight: bold;
  text-decoration: underline;
}
.block-event-detail .event-content p a:hover {
  color: #EC5F2C;
}
.block-event-detail .heading-1, .block-event-detail .tribe-events-pg-template .tribe-events-single-event-title, .tribe-events-pg-template .block-event-detail .tribe-events-single-event-title {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #EC5F2C;
  margin-bottom: 45px;
}
.block-event-detail .date-time {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2.2rem;
  margin-bottom: 33px;
}
@media screen and (max-width: 1199px) {
  .block-event-detail .map-detail-container {
    margin: 30px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .block-event-detail .map-detail-container {
    margin: 70px 0px;
  }
}
@media screen and (max-width: 992px) {
  .block-event-detail .col-detail {
    margin-top: 20px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1199px) {
  .block-event-detail .col-detail {
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .block-event-detail .col-detail {
    padding-left: 90px;
  }
}
.block-event-detail .col-detail strong {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  display: block;
}
.block-event-detail .col-detail .add-to-calendar {
  display: flex;
}
.block-event-detail .col-detail .add-to-calendar a {
  flex: 0 0 auto;
  width: 50%;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
}
.block-event-detail .col-detail .add-to-calendar a.cal-icon {
  position: relative;
  padding-left: 35px;
}
.block-event-detail .col-detail .add-to-calendar a.cal-icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 18px;
  background: url("/assets/images/icons/cal-icon.svg") no-repeat;
}
@media screen and (max-width: 1199px) {
  .block-event-detail .event-sponsors {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .block-event-detail .event-sponsors {
    margin-bottom: 80px;
  }
}
.block-event-detail .event-sponsors .img-grid-6 {
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .block-event-detail .event-sponsors .img-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1399px) {
  .block-event-detail .event-sponsors .img-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .block-event-detail .event-sponsors .img-grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.block-event-detail .related-events .four-events {
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .block-event-detail .related-events .four-events {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .block-event-detail .related-events .four-events {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .block-event-detail .related-events .four-events {
    grid-template-columns: repeat(4, 1fr);
  }
}
.block-event-detail .related-events .four-events a {
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .block-event-detail .related-events .four-events a {
    margin-bottom: 20px;
  }
}
.block-event-detail .related-events .four-events a:hover {
  color: #EC5F2C;
}
.block-event-detail .related-events .four-events a picture {
  position: relative;
}
.block-event-detail .related-events .four-events a picture:after {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .block-event-detail .related-events .four-events a picture:after {
    transition: 0.4s;
  }
}
.block-event-detail .related-events .four-events a picture:hover:after {
  opacity: 1;
  visibility: visible;
}
.block-event-detail .related-events .four-events strong {
  margin-top: 15px;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.2rem;
  display: block;
}
.block-event-detail .related-events .four-events span {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem;
  display: block;
  margin-top: 3px;
}
.block-event-detail .related-events.border-top .heading-2 {
  padding-top: 25px;
  border-top: 3px solid #F3AF34;
}

.tribe-events-calendar-list {
  --tec-color-border-default: $color-yellow;
}
.tribe-events-calendar-list .tribe-common-g-row {
  font-family: montserrat, sans-serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  font-size: 1.6rem !important;
  line-height: 1.18em !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-date-tag-weekday, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-venue, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-c-small-cta {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem !important;
  line-height: 1.18em !important;
  font-weight: 300 !important;
  letter-spacing: -0.1px !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-date-tag-daynum {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #6A1F16 !important;
  font-size: 5rem !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-datetime-wrapper {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem !important;
  line-height: 1.18em !important;
  margin-bottom: 0;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-details {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem !important;
  line-height: 1.18em !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-details .tribe-events-calendar-list__event-venue-title {
  font-family: montserrat, sans-serif !important;
  font-weight: 700 !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-common-h4--min-medium {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 1.28em;
  border-bottom: none !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-common-h4--min-medium a {
  color: #6A1F16 !important;
}
.tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common h1, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common h2, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common h3, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common h4, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common h5, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common h6, .tribe-events-calendar-list .tribe-common-g-row .tribe-events-calendar-list__event-description.tribe-common p {
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.6rem !important;
  line-height: 1.18em !important;
}
.tribe-events-calendar-list .tribe-events-calendar-list__month-separator {
  display: none !important;
}

.tribe-events {
  font-family: montserrat, sans-serif !important;
}
.tribe-events .tribe-events-calendar-list-nav {
  border-top: 3px solid #F3AF34 !important;
}
.tribe-events .tribe-events-c-nav__next, .tribe-events .tribe-events-c-nav__prev {
  color: #000 !important;
  font-weight: 300 !important;
}
.tribe-events .tribe-events-c-top-bar__datepicker button {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-size: 2.2rem !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-events-bar--border {
  border-radius: 12px !important;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-c-btn-border-small, .tribe-common--breakpoint-medium.tribe-common a.tribe-common-c-btn-border-small {
  border-radius: 15px !important;
}

.tribe-events .tribe-events-c-events-bar__search-container, .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__content {
  background-color: transparent !important;
}

.tribe-common--breakpoint-medium.tribe-common .tribe-common-form-control-text__input {
  font-weight: 300 !important;
  font-size: 1.6rem !important;
}

.tribe-common .tribe-common-c-svgicon {
  color: #F3AF34 !important;
}

.tribe-common .tribe-common-c-svgicon__svg-fill {
  fill: #F3AF34 !important;
}

.tribe-events .datepicker .day.active, .tribe-events .datepicker .day.active.focused, .tribe-events .datepicker .day.active:focus, .tribe-events .datepicker .day.active:hover, .tribe-events .datepicker .month.active, .tribe-events .datepicker .month.active.focused, .tribe-events .datepicker .month.active:focus, .tribe-events .datepicker .month.active:hover, .tribe-events .datepicker .year.active, .tribe-events .datepicker .year.active.focused, .tribe-events .datepicker .year.active:focus, .tribe-events .datepicker .year.active:hover, .tribe-events .tribe-events-calendar-list__event-row--featured .tribe-events-calendar-list__event-date-tag-datetime:after, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within, .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button.tribe-events-c-subscribe-dropdown__button--active, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:focus-within, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
  background: #F3AF34 !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__event-datetime-featured-text {
  color: #6A1F16 !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-header--has-event-search .tribe-events-c-events-bar {
  max-height: 60px;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
  border: none;
}

.tribe-events-pg-template .tribe-events-single-event-title {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #EC5F2C;
}
.tribe-events-pg-template .tribe-events-schedule {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}
.tribe-events-pg-template .tribe-events-schedule h2, .tribe-events-pg-template .tribe-events-schedule span {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.2rem;
}
.tribe-events-pg-template .tribe-events-single-event-description.tribe-events-content {
  font-size: 1.6rem;
}

@media screen and (min-width: 993px) {
  .block-resources {
    padding-top: 15px;
  }
}
.block-resources svg {
  fill: #6A1F16;
  width: 30px;
}
.block-resources .form-check {
  display: grid;
  grid-template-columns: 0px auto;
  gap: 10px;
  align-items: start;
}
.block-resources .form-check label {
  margin-top: -7px;
  margin-bottom: 7px;
}
.block-resources .form-check-input {
  margin-top: 0;
  width: 15px;
  height: 15px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .block-resources .form-check-input {
    transition: 0.4s;
  }
}
.block-resources .form-check-input:hover {
  border-color: #F3AF34;
  border-size: 2px;
}
.block-resources .form-check-input:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}
.block-resources .form-check-input:checked[type=radio] {
  background-color: #FFF;
  border-color: #F3AF34;
  background: url("/assets/images/icons/bullet-sienna.svg") no-repeat !important;
}
.block-resources input[type=checkbox] {
  border-radius: 4px;
}
.block-resources .form-check-input:checked[type=checkbox] {
  background-color: #F3AF34 !important;
  border-color: #F3AF34;
  background: #F3AF34 url("/assets/images/icons/checkbox-sienna.svg") no-repeat !important;
}
.block-resources .search {
  position: relative;
  margin-bottom: 15px;
}
.block-resources .search img {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.block-resources .search input {
  border: 1px solid #DEDEDE;
  border-radius: 7px;
  width: calc( 100% - 40px);
  height: 34px;
  text-transform: uppercase;
  text-indent: 30px;
}
.block-resources .search .submit-search {
  background: url("/assets/images/icons/chevron-btn-submit.svg") no-repeat;
  display: block;
  width: 34px;
  height: 34px;
  border: none;
  position: absolute;
  right: 0px;
  top: 0px;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .block-resources .search .submit-search {
    transition: 0.4s;
  }
}
.block-resources .search .submit-search:hover {
  transform: scale(1.1);
}
.block-resources .inline-filter .filter-title {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.2rem;
  text-transform: uppercase;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
}
.block-resources .inline-filter .filter-title.drop {
  text-decoration: none;
}
.block-resources .inline-filter .filter-title.drop:after {
  content: "";
  background: url("/assets/images/icons/chevron-right-gold.svg") no-repeat;
  display: inline-flex;
  width: 8px;
  height: 15px;
  margin-left: 15px;
}
.block-resources .inline-filter .filter-title.drop[aria-expanded=true]:after {
  transform: rotate(90deg);
}
.block-resources .inline-filter button {
  color: #000;
  text-align: left;
  padding-left: 0;
}
@media screen and (min-width: 993px) {
  .block-resources .inline-filter .set-collapse {
    display: block;
  }
}
.block-resources .inline-filter .form-check {
  margin-bottom: 5px;
}
.block-resources .inline-filter .collapse-style {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}
.block-resources .inline-filter .collapse-style:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 8px;
  height: 13px;
  background: url("/assets/images/icons/chevron-right-gold.svg") no-repeat;
  transform: rotate(90deg);
}
.block-resources .inline-filter .collapse-style.collapsed:before {
  transform: rotate(0deg);
}
.block-resources .inline-filter .filter-checkboxes {
  padding-left: 20px;
}
.block-resources .inline-filter .select-drop .collapse {
  padding-bottom: 15px;
}
.block-resources .inline-filter .select-drop .small-info {
  font-size: 1.2rem;
  padding-left: 20px;
  line-height: 1.3;
}
.block-resources .inline-filter .form-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}
@media screen and (min-width: 993px) {
  .block-resources .inline-filter .form-actions {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .block-resources .inline-filter .form-actions {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.block-resources .inline-filter .form-actions button {
  max-width: 139px;
  border: none;
  padding: 10px 20px;
  height: 40px;
  font-size: 1.4rem;
}
.block-resources .inline-filter .form-actions button:before {
  border: none;
}
.block-resources .inline-filter .form-actions button, .block-resources .inline-filter .form-actions a {
  flex: 0 0 auto;
}
.block-resources .inline-filter .form-actions a {
  font-weight: 700;
  color: #6A1F16;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.block-resources .table-header {
  border-bottom: 2px solid #c6c6c6;
}
.block-resources .table-header td {
  padding-right: 20px;
  position: relative;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.4rem;
  text-align: left;
  padding-left: 18px;
}
@media screen and (min-width: 993px) {
  .block-resources .table-header td:before {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    background-size: contain;
    width: 13px;
    height: 7px;
    top: 20px;
  }
}
@media screen and (min-width: 993px) and (max-width: 992px) {
  .block-resources .table-header td:before {
    right: 12px;
  }
}
@media screen and (min-width: 993px) {
  .block-resources .table-header td:after {
    content: "";
    display: block;
    height: 31px;
    width: 1px;
    border-right: 1px solid #C6C6C6;
    position: absolute;
    right: 0px;
    top: 9px;
  }
}
@media screen and (min-width: 993px) and (max-width: 992px) {
  .block-resources .table-header td:last-child:before {
    right: 20px;
  }
  .block-resources .table-header td:last-child:after {
    right: 0px;
    border-right: none;
  }
}
@media screen and (min-width: 993px) and (min-width: 993px) {
  .block-resources .table-header td:last-child:before {
    right: 220px;
  }
  .block-resources .table-header td:last-child:after {
    right: 200px;
  }
}
.block-resources .table-light {
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .block-resources .table > :not(caption) > * > * {
    padding: 15px 10px;
  }
}
@media screen and (min-width: 993px) {
  .block-resources .table > :not(caption) > * > * {
    padding: 15px 20px;
  }
}
.block-resources .btn-rows {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 993px) {
  .block-resources .btn-rows {
    margin-left: auto;
  }
}
.block-resources tr {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #C6C6C6;
}
.block-resources .table-name {
  display: grid;
  grid-column-gap: 20px;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  text-align: left;
  padding-left: 20px;
  font-family: montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-style: italic;
  font-size: 1.1rem;
  color: #000;
}
@media screen and (max-width: 992px) {
  .block-resources .table-name {
    margin-left: -15px;
  }
}
@media screen and (min-width: 993px) {
  .block-resources .table-name {
    grid-template-columns: auto 200px;
  }
}
.block-resources .table-name strong, .block-resources .table-name span {
  display: block;
}
.block-resources .table-name strong {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (min-width: 993px) and (max-width: 1399px) {
  .block-resources .table-name .table-row-info {
    max-width: 500px;
  }
}
@media screen and (min-width: 1400px) {
  .block-resources .table-name .table-row-info {
    max-width: 550px;
  }
}
@media screen and (max-width: 992px) {
  .block-resources .table-name .table-row-info {
    margin-bottom: 10px;
    line-height: 14px;
  }
  .block-resources .table-name .table-row-info strong {
    margin-bottom: 10px;
    line-height: 19px;
  }
}
.block-resources .table-name .table-row-info p {
  margin-bottom: 0;
}
.block-resources .resource-pagination {
  margin-top: 30px;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
.block-resources .resource-pagination .d-flex {
  align-items: start;
  gap: 10px;
}
@media screen and (min-width: 993px) {
  .block-resources .resource-pagination .d-flex {
    align-items: center;
  }
}
.block-resources .resource-pagination .d-flex select {
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #ccc;
  width: 82px;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  padding-left: 20px;
  background-image: url("/assets/images/icons/pagination-down.svg");
  position: relative;
}
@media screen and (max-width: 992px) {
  .block-resources .resource-pagination .pag-num {
    margin-top: -50px;
  }
}
.block-resources .resource-pagination .btn, .block-resources .resource-pagination .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-resources .resource-pagination input, .block-resources .resource-pagination .tribe-events .tribe-events-c-search__button, .tribe-events .block-resources .resource-pagination .tribe-events-c-search__button, .block-resources .resource-pagination .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-resources .resource-pagination .tribe-events-c-subscribe-dropdown__button, .block-resources .resource-pagination .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-resources .resource-pagination .tribe-events-c-subscribe-dropdown__button {
  padding: 0px;
  width: 40px;
  height: 40px;
}

.filter-title {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.2rem;
  text-transform: uppercase;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
}
.filter-title.drop {
  text-decoration: none;
}
.filter-title.drop:after {
  content: "";
  background: url("/assets/images/icons/chevron-right-gold.svg") no-repeat;
  display: inline-flex;
  width: 8px;
  height: 15px;
  margin-left: 15px;
}
.filter-title.drop[aria-expanded=true]:after {
  transform: rotate(90deg);
}

button {
  color: #000;
  text-align: left;
  padding-left: 0;
}

@media screen and (min-width: 993px) {
  .set-collapse {
    display: block;
  }
}

.block-sponsorship .table-name {
  width: initial;
}
.block-sponsorship .scholar-info {
  font-size: 1.6rem;
  font-style: normal;
}
@media screen and (max-width: 992px) {
  .block-sponsorship .scholar-info {
    line-height: 1.5 !important;
    overflow: hidden;
  }
}
.block-sponsorship .form-actions {
  margin-top: 20px;
  margin-bottom: 20px;
}

.block-hero {
  position: relative;
}
.block-hero h1 {
  z-index: 50;
  margin: 20px 0;
}
.block-hero p {
  max-width: 90%;
}
.block-hero p a {
  font-weight: bold;
  text-decoration: underline;
}
.block-hero p a:hover {
  color: #EC5F2C;
}

.full-hero-block {
  position: relative;
}
.full-hero-block .col-12 {
  z-index: 10000;
}
.full-hero-block h1 {
  margin: 20px 0;
}
.full-hero-block p {
  max-width: 75%;
  margin: 0 auto;
}
.full-hero-block p a {
  font-weight: bold;
  text-decoration: underline;
}
.full-hero-block p a:hover {
  color: #EC5F2C;
}

.column-block .title {
  background-color: #6A1F16;
  border-radius: 10px;
  text-align: center;
  padding: 50px 100px;
  margin-top: 20px;
}
.column-block .title h3 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFF;
}
.column-block .intro {
  font-weight: bold;
  font-style: italic;
  margin: 10px 0;
}
.column-block p {
  line-height: 1.2;
}
.column-block .btn, .column-block .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .column-block input, .column-block .tribe-events .tribe-events-c-search__button, .tribe-events .column-block .tribe-events-c-search__button, .column-block .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .column-block .tribe-events-c-subscribe-dropdown__button, .column-block .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .column-block .tribe-events-c-subscribe-dropdown__button {
  margin-bottom: 10px;
}

.two-col-block {
  position: relative;
}
.two-col-block .col-left,
.two-col-block .col-right {
  position: relative;
  padding-bottom: 75px;
}
.general-block h2,
.two-col-block h2,
.photo-column-block h2 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9em;
  text-transform: uppercase;
  color: #6A1F16;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .general-block h2,
.two-col-block h2,
.photo-column-block h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .general-block h2,
.two-col-block h2,
.photo-column-block h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .general-block h2,
.two-col-block h2,
.photo-column-block h2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1450px) {
  .general-block h2,
.two-col-block h2,
.photo-column-block h2 {
    font-size: 5rem;
  }
}
.general-block h3,
.two-col-block h3,
.photo-column-block h3 {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #6A1F16;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .general-block h3,
.two-col-block h3,
.photo-column-block h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .general-block h3,
.two-col-block h3,
.photo-column-block h3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .general-block h3,
.two-col-block h3,
.photo-column-block h3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1450px) {
  .general-block h3,
.two-col-block h3,
.photo-column-block h3 {
    font-size: 3rem;
  }
}
.general-block .content a,
.two-col-block .content a,
.photo-column-block .content a {
  font-weight: bold;
  text-decoration: underline;
}
.general-block .content a:hover,
.two-col-block .content a:hover,
.photo-column-block .content a:hover {
  color: #EC5F2C;
}
.general-block.bg-sienna h1, .general-block.bg-sienna h2, .general-block.bg-sienna h3, .general-block.bg-sienna h4, .general-block.bg-sienna p, .general-block.bg-sienna ul, .general-block.bg-sienna ol, .general-block.bg-sienna-match h1, .general-block.bg-sienna-match h2, .general-block.bg-sienna-match h3, .general-block.bg-sienna-match h4, .general-block.bg-sienna-match p, .general-block.bg-sienna-match ul, .general-block.bg-sienna-match ol,
.two-col-block.bg-sienna h1,
.two-col-block.bg-sienna h2,
.two-col-block.bg-sienna h3,
.two-col-block.bg-sienna h4,
.two-col-block.bg-sienna p,
.two-col-block.bg-sienna ul,
.two-col-block.bg-sienna ol,
.two-col-block.bg-sienna-match h1,
.two-col-block.bg-sienna-match h2,
.two-col-block.bg-sienna-match h3,
.two-col-block.bg-sienna-match h4,
.two-col-block.bg-sienna-match p,
.two-col-block.bg-sienna-match ul,
.two-col-block.bg-sienna-match ol,
.photo-column-block.bg-sienna h1,
.photo-column-block.bg-sienna h2,
.photo-column-block.bg-sienna h3,
.photo-column-block.bg-sienna h4,
.photo-column-block.bg-sienna p,
.photo-column-block.bg-sienna ul,
.photo-column-block.bg-sienna ol,
.photo-column-block.bg-sienna-match h1,
.photo-column-block.bg-sienna-match h2,
.photo-column-block.bg-sienna-match h3,
.photo-column-block.bg-sienna-match h4,
.photo-column-block.bg-sienna-match p,
.photo-column-block.bg-sienna-match ul,
.photo-column-block.bg-sienna-match ol {
  color: #FFF;
}
.general-block.bg-sienna .content a, .general-block.bg-sienna-match .content a,
.two-col-block.bg-sienna .content a,
.two-col-block.bg-sienna-match .content a,
.photo-column-block.bg-sienna .content a,
.photo-column-block.bg-sienna-match .content a {
  font-weight: bold;
  text-decoration: underline;
}
.general-block.bg-yellow .content a, .general-block.bg-yellow-match .content a,
.two-col-block.bg-yellow .content a,
.two-col-block.bg-yellow-match .content a,
.photo-column-block.bg-yellow .content a,
.photo-column-block.bg-yellow-match .content a {
  text-decoration: underline;
  font-weight: bold;
}
.general-block.bg-yellow .content a:hover, .general-block.bg-yellow-match .content a:hover,
.two-col-block.bg-yellow .content a:hover,
.two-col-block.bg-yellow-match .content a:hover,
.photo-column-block.bg-yellow .content a:hover,
.photo-column-block.bg-yellow-match .content a:hover {
  color: #EC5F2C;
}
.general-block .btn-row,
.two-col-block .btn-row,
.photo-column-block .btn-row {
  margin-top: 20px;
}

.block-cta .col-content {
  width: 80%;
}
@media (max-width: 767.98px) {
  .block-cta .col-content {
    width: 100%;
  }
}
.block-cta h2 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9em;
  text-transform: uppercase;
  color: #6A1F16;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .block-cta h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-cta h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .block-cta h2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1450px) {
  .block-cta h2 {
    font-size: 5rem;
  }
}
.block-cta h3 {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #6A1F16;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .block-cta h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-cta h3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .block-cta h3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1450px) {
  .block-cta h3 {
    font-size: 3rem;
  }
}
.block-cta .bg-sienna h1, .block-cta .bg-sienna h2, .block-cta .bg-sienna h3, .block-cta .bg-sienna h4, .block-cta .bg-sienna p {
  color: #FFF;
}
.block-cta .bg-yellow p {
  color: #000;
}

.block-timeline-carousel h2 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9em;
  text-transform: uppercase;
  color: #6A1F16;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .block-timeline-carousel h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-timeline-carousel h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .block-timeline-carousel h2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1450px) {
  .block-timeline-carousel h2 {
    font-size: 5rem;
  }
}
.block-timeline-carousel h3 {
  font-family: montserrat, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  color: #6A1F16;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .block-timeline-carousel h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-timeline-carousel h3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .block-timeline-carousel h3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 1450px) {
  .block-timeline-carousel h3 {
    font-size: 3rem;
  }
}

.event-block .event-row {
  margin-bottom: 75px;
}
.event-block .event-row .event-header {
  min-width: 160px;
}
.event-block a {
  text-decoration: none;
  cursor: pointer !important;
}
.event-block a:hover {
  color: #000;
}

.block-related.bg-sienna h2 {
  color: #FFF !important;
}
.block-related.bg-sienna .swiper-slide .link-icon:after {
  background-image: url("/assets/images/icons/chevron-right-gold.svg");
}
.block-related.bg-sienna .swiper-slide a:hover {
  color: #F3AF34;
}
.block-related.bg-sienna .swiper-pagination-bullet {
  border: 2px solid transparent;
}
.block-related.bg-sienna .swiper-pagination-bullet:after {
  border: 2px solid #F3AF34;
}
.block-related.bg-sienna .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F3AF34;
  outline: none;
  border: 2px solid #6A1F16;
}
.block-related.bg-sienna .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  border: 2px solid #F3AF34;
}

.block-photo-slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -30px;
}

.block-image-video .modal .modal-body iframe {
  z-index: 999;
}

.block-accordion .col-content .photo {
  width: 100%;
  height: auto;
  border-radius: 35px;
}
.block-accordion .answer a {
  text-decoration: underline;
  font-weight: bold;
}
.block-accordion .answer a:hover {
  color: #EC5F2C;
}
.block-accordion .answer .btn, .block-accordion .answer .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-accordion .answer input, .block-accordion .answer .tribe-events .tribe-events-c-search__button, .tribe-events .block-accordion .answer .tribe-events-c-search__button, .block-accordion .answer .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-accordion .answer .tribe-events-c-subscribe-dropdown__button, .block-accordion .answer .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-accordion .answer .tribe-events-c-subscribe-dropdown__button {
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .block-accordion .answer .btn, .block-accordion .answer .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .block-accordion .answer input, .block-accordion .answer .tribe-events .tribe-events-c-search__button, .tribe-events .block-accordion .answer .tribe-events-c-search__button, .block-accordion .answer .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .block-accordion .answer .tribe-events-c-subscribe-dropdown__button, .block-accordion .answer .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .block-accordion .answer .tribe-events-c-subscribe-dropdown__button {
    position: relative;
    bottom: auto;
  }
}

@media (max-width: 991.98px) {
  .column-list-block .titles {
    display: none;
  }
}
.column-list-block .titles h4 {
  text-transform: uppercase;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.column-list-block .titles .label-1 {
  text-align: left;
}
.column-list-block .titles .label-2,
.column-list-block .titles .label-3,
.column-list-block .titles .label-4,
.column-list-block .titles .label-5 {
  text-align: center;
}
.column-list-block .columns {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 2px solid #F3AF34;
}
@media (max-width: 991.98px) {
  .column-list-block .columns {
    text-align: center;
  }
}
.column-list-block .columns h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #6A1F16;
}
.column-list-block .columns h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.column-list-block .columns p {
  line-height: 20px;
}
.column-list-block .columns .title-col h4,
.column-list-block .columns .text-col h4,
.column-list-block .columns .img-col h4 {
  display: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (max-width: 991.98px) {
  .column-list-block .columns .title-col h4,
.column-list-block .columns .text-col h4,
.column-list-block .columns .img-col h4 {
    display: block;
    margin-top: 25px;
  }
}
.column-list-block .columns .text-col {
  text-align: center;
  display: table;
}
@media (max-width: 991.98px) {
  .column-list-block .columns .text-col {
    text-align: center;
    display: block;
  }
}
.column-list-block .columns .text-col h3 {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .column-list-block .columns .text-col h3 {
    display: block;
    margin: 0 0 25px 0;
  }
}
.column-list-block .columns .img-col {
  text-align: center;
  display: flex;
}
.column-list-block .columns .img-col img {
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .column-list-block .columns .img-col img {
    max-width: 200px;
    margin: 0 auto;
  }
}

.fafsa-block .tableauPlaceholder,
.sdbb-block .tableauPlaceholder {
  margin: 0 auto;
}

.math-pathways .intro h2, .math-pathways .intro h3, .math-pathways .intro h4 {
  font-weight: 600;
  text-transform: uppercase;
}
.math-pathways .pathways .section {
  display: none;
  margin-bottom: 2rem;
}
.math-pathways .pathways .section p {
  margin-bottom: 15px;
}
.math-pathways .pathways .section hr {
  border-top: 1px solid #ccc;
  margin: 25px 0;
  opacity: 1;
}
.math-pathways .pathways .section.full-buttons .btn, .math-pathways .pathways .section.full-buttons .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .math-pathways .pathways .section.full-buttons input, .math-pathways .pathways .section.full-buttons .tribe-events .tribe-events-c-search__button, .tribe-events .math-pathways .pathways .section.full-buttons .tribe-events-c-search__button, .math-pathways .pathways .section.full-buttons .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section.full-buttons .tribe-events-c-subscribe-dropdown__button, .math-pathways .pathways .section.full-buttons .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section.full-buttons .tribe-events-c-subscribe-dropdown__button {
  width: 100%;
  text-align: center;
}
.math-pathways .pathways .section.half-buttons .btn, .math-pathways .pathways .section.half-buttons .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .math-pathways .pathways .section.half-buttons input, .math-pathways .pathways .section.half-buttons .tribe-events .tribe-events-c-search__button, .tribe-events .math-pathways .pathways .section.half-buttons .tribe-events-c-search__button, .math-pathways .pathways .section.half-buttons .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section.half-buttons .tribe-events-c-subscribe-dropdown__button, .math-pathways .pathways .section.half-buttons .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section.half-buttons .tribe-events-c-subscribe-dropdown__button {
  width: 49%;
  text-align: center;
}
.math-pathways .pathways .section .link {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 10px;
}
.math-pathways .pathways .section #jr-note,
.math-pathways .pathways .section #sr-note {
  display: none;
}
.math-pathways .pathways .section .button-note {
  font-size: 1.2rem;
  line-height: 1.3;
}
.math-pathways .pathways .section h2 {
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.math-pathways .pathways .section select {
  outline: none !important;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-clip: padding-box;
  background-color: transparent;
  border-radius: 11px;
  border: solid 1px #D1D1D1;
  box-shadow: none;
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 8px;
  background: url("/assets/images/icons/pagination-down.svg") no-repeat !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
}
.math-pathways .pathways .section .btn, .math-pathways .pathways .section .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .math-pathways .pathways .section input, .math-pathways .pathways .section .tribe-events .tribe-events-c-search__button, .tribe-events .math-pathways .pathways .section .tribe-events-c-search__button, .math-pathways .pathways .section .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .tribe-events-c-subscribe-dropdown__button, .math-pathways .pathways .section .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .tribe-events-c-subscribe-dropdown__button {
  width: 32%;
  margin-bottom: 10px;
}
.math-pathways .pathways .section .btn.active, .math-pathways .pathways .section .gform_wrapper .gform_footer input.active, .gform_wrapper .gform_footer .math-pathways .pathways .section input.active, .math-pathways .pathways .section .tribe-events .active.tribe-events-c-search__button, .tribe-events .math-pathways .pathways .section .active.tribe-events-c-search__button, .math-pathways .pathways .section .single-tribe_events .tribe-events-c-subscribe-dropdown .active.tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .active.tribe-events-c-subscribe-dropdown__button, .math-pathways .pathways .section .tribe-events .tribe-events-c-subscribe-dropdown .active.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .active.tribe-events-c-subscribe-dropdown__button {
  background-color: #6A1F16;
  color: #FFF;
}
.math-pathways .pathways .section .btn.active:hover span, .math-pathways .pathways .section .gform_wrapper .gform_footer input.active:hover span, .gform_wrapper .gform_footer .math-pathways .pathways .section input.active:hover span, .math-pathways .pathways .section .tribe-events .active.tribe-events-c-search__button:hover span, .tribe-events .math-pathways .pathways .section .active.tribe-events-c-search__button:hover span, .math-pathways .pathways .section .single-tribe_events .tribe-events-c-subscribe-dropdown .active.tribe-events-c-subscribe-dropdown__button:hover span, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .active.tribe-events-c-subscribe-dropdown__button:hover span, .math-pathways .pathways .section .tribe-events .tribe-events-c-subscribe-dropdown .active.tribe-events-c-subscribe-dropdown__button:hover span, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .active.tribe-events-c-subscribe-dropdown__button:hover span {
  color: #FFF;
}
.math-pathways .pathways .section .btn.inactive, .math-pathways .pathways .section .gform_wrapper .gform_footer input.inactive, .gform_wrapper .gform_footer .math-pathways .pathways .section input.inactive, .math-pathways .pathways .section .tribe-events .inactive.tribe-events-c-search__button, .tribe-events .math-pathways .pathways .section .inactive.tribe-events-c-search__button, .math-pathways .pathways .section .single-tribe_events .tribe-events-c-subscribe-dropdown .inactive.tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .inactive.tribe-events-c-subscribe-dropdown__button, .math-pathways .pathways .section .tribe-events .tribe-events-c-subscribe-dropdown .inactive.tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .inactive.tribe-events-c-subscribe-dropdown__button {
  opacity: 0.15;
}
@media screen and (max-width: 600px) {
  .math-pathways .pathways .section .btn, .math-pathways .pathways .section .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .math-pathways .pathways .section input, .math-pathways .pathways .section .tribe-events .tribe-events-c-search__button, .tribe-events .math-pathways .pathways .section .tribe-events-c-search__button, .math-pathways .pathways .section .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .tribe-events-c-subscribe-dropdown__button, .math-pathways .pathways .section .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .tribe-events-c-subscribe-dropdown__button {
    width: 49%;
  }
}
.math-pathways .pathways .section .btn:hover:before, .math-pathways .pathways .section .gform_wrapper .gform_footer input:hover:before, .gform_wrapper .gform_footer .math-pathways .pathways .section input:hover:before, .math-pathways .pathways .section .tribe-events .tribe-events-c-search__button:hover:before, .tribe-events .math-pathways .pathways .section .tribe-events-c-search__button:hover:before, .math-pathways .pathways .section .single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover:before, .single-tribe_events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .tribe-events-c-subscribe-dropdown__button:hover:before, .math-pathways .pathways .section .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover:before, .tribe-events .tribe-events-c-subscribe-dropdown .math-pathways .pathways .section .tribe-events-c-subscribe-dropdown__button:hover:before {
  left: 0px;
  top: 0px;
  bottom: -3px;
  right: -3px;
  transform: scale(1.02);
  background: inherit;
}
.math-pathways .pathways .section .note {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
}
.math-pathways .pathways .section .note.black {
  color: #000;
}
.math-pathways .pathways .section .note.main-note {
  background-color: rgba(34, 34, 34, 0.05);
  border: 1px solid #aaa;
  padding: 15px;
  color: #222;
  border-radius: 5px;
  padding: 20px 15px;
}
.math-pathways .pathways .section .note.main-note h3 {
  font-weight: 600;
}
.math-pathways .pathways #current-grade,
.math-pathways .pathways #occupation {
  display: block !important;
}
.math-pathways .pathways #current-grade .note,
.math-pathways .pathways #occupation .note {
  padding-top: 10px;
  font-weight: 400;
}
.math-pathways .pathways #current-grade .note a,
.math-pathways .pathways #occupation .note a {
  text-decoration: underline;
  color: #6A1F16;
}
.math-pathways .pathways #current-grade .note p,
.math-pathways .pathways #occupation .note p {
  margin-bottom: 5px;
}
.math-pathways .pathways #freshman-year .heading-2 {
  font-family: cubano, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: #6A1F16;
  margin-bottom: 0px;
  margin-top: 0px;
}
.math-pathways .pathways #freshman-year .heading-2 br {
  display: none;
}
.math-pathways .pathways #freshman-year .heading-2 strong {
  display: block;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: #000;
  margin: 15px 0;
}
@media (max-width: 767.98px) {
  .math-pathways .pathways #freshman-year .heading-2 strong {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .math-pathways .pathways #freshman-year .heading-2 strong {
    font-size: 1.93rem;
  }
}
@media (min-width: 1200px) and (max-width: 1449.98px) {
  .math-pathways .pathways #freshman-year .heading-2 strong {
    font-size: 2.06rem;
  }
}
@media (min-width: 1450px) {
  .math-pathways .pathways #freshman-year .heading-2 strong {
    font-size: 2.2rem;
  }
}
.math-pathways .pathways #freshman-year .heading-2 strong:before {
  content: "-";
}
.math-pathways .pathways #freshman-year .heading-2 strong:after {
  content: "-";
}
.math-pathways .pathways #freshman-year .note {
  margin-bottom: 2rem;
}
.math-pathways .pathways #freshman-year .note a {
  text-transform: uppercase;
  font-weight: 600;
}
.math-pathways .pathways #freshman-year .note a:hover {
  color: #6A1F16;
}
