@charset "UTF-8";
/* Base - site-specific settings */
/*Theme colors*/
/*Design center colors*/
/*Bluestem colors*/
/* General colors */
/*General typography*/
/*Error*/
/*Color options*/
.color-white {
  color: #ffffff;
}

.sp-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.color-black {
  color: #000;
}

.color-smoke {
  color: #989D9F;
}

.color-grey {
  color: #737373;
}

.color-light {
  color: #e5e5e5;
}

.color-charcoal {
  color: #3A4044;
}

.color-red {
  color: #AC441E;
}

.color-active-charcoal {
  color: #3A4044 !important;
}

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

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

.bg-smoke {
  background-color: #989D9F;
}

.bg-smoke-light {
  background-color: #f5f5f5;
}

.bg-grey {
  background-color: #737373;
}

.bg-light {
  background-color: #e5e5e5;
}

.bg-charcoal {
  background-color: #3A4044;
  color: #ffffff;
}

.bg-red {
  background-color: #AC441E;
  color: #ffffff;
}

/*Global Options*/
/*Typography*/
/*Font path*/
/*Grid*/
/*Gutters*/
/*Breakpoints*/
/*Container Widths*/
/*Used to set the padding on .container-fluid, per breakpoint*/
/*Wrapper max width*/
/*Container max width*/
/*Transition settings*/
/*Modals*/
/*Borders*/
/*Global border radius*/
/*Sliders*/
/*Form controls*/
/*cta*/
/*Custom fonts*/
@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Elephant";
  src: url("../fonts/Elephant-Regular.woff2") format("woff2"), url("../fonts/Elephant-Regular.woff") format("woff"), url("../fonts/Elephant-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura";
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2"), url("../fonts/FuturaPT-Book.woff") format("woff"), url("../fonts/FuturaPT-Book.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura-Medium";
  src: url("../fonts/futuramedium.woff2") format("woff2"), url("../fonts/futuramedium.woff") format("woff"), url("../fonts/futuramedium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
/*Font mixins*/
/* Vendor - unedited vendor base styles */
/*Bootstrap grid/reset*/
/*!
 * Bootstrap Grid v5.0.1 (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: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-ms, .container {
    max-width: 1200px;
  }
}
.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) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  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%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
    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%;
  }
  .col-ms-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-ms-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-ms-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-ms-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-ms-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-ms-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-ms-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-ms-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-ms-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-ms-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-ms-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-ms-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-ms-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-ms-0 {
    margin-left: 0;
  }
  .offset-ms-1 {
    margin-left: 8.3333333333%;
  }
  .offset-ms-2 {
    margin-left: 16.6666666667%;
  }
  .offset-ms-3 {
    margin-left: 25%;
  }
  .offset-ms-4 {
    margin-left: 33.3333333333%;
  }
  .offset-ms-5 {
    margin-left: 41.6666666667%;
  }
  .offset-ms-6 {
    margin-left: 50%;
  }
  .offset-ms-7 {
    margin-left: 58.3333333333%;
  }
  .offset-ms-8 {
    margin-left: 66.6666666667%;
  }
  .offset-ms-9 {
    margin-left: 75%;
  }
  .offset-ms-10 {
    margin-left: 83.3333333333%;
  }
  .offset-ms-11 {
    margin-left: 91.6666666667%;
  }
  .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 {
    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%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.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%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .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: 1600px) {
  .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-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.6666666667%;
  }
  .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: 1400px) {
  .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: 1600px) {
  .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.1 (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: rgb(10.4, 88, 202.4);
}

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

::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.1 (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: rgb(10.4, 88, 202.4);
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: rgb(86.4, 93.6, 100);
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: rgb(20, 108, 67.2);
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: rgb(61.4, 212.6, 243);
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: rgb(255, 205.4, 56.6);
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: rgb(176, 42.4, 55.2);
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: rgb(249.4, 250.2, 251);
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: rgb(26.4, 29.6, 32.8);
}

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

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

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

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

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

@media (min-width: 375px) {
  .sticky-ms-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1600px) {
  .sticky-xxxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden, .gfield.hidden_label .gfield_label, .screen-reader-text,
.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: 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;
          user-select: auto !important;
}

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

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

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

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

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

.rounded-1 {
  border-radius: 0.2rem !important;
}

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

.rounded-3 {
  border-radius: 0.3rem !important;
}

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

.rounded-pill {
  border-radius: 50rem !important;
}

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

.rounded-end {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

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

.rounded-start {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !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: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .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: 1600px) {
  .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*/
.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.4s 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 /* rtl:ignore */;
  left: 0 /* rtl:ignore */;
}

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

@media (min-width: 375px) {
  .dropdown-menu-ms-start {
    --bs-position: start;
  }
  .dropdown-menu-ms-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-ms-end {
    --bs-position: end;
  }
  .dropdown-menu-ms-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
@media (min-width: 1600px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0 /* rtl:ignore */;
  }
  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
  }
}
.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: rgb(29.7, 33.3, 36.9);
  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: rgb(10.4, 88, 202.4);
}
.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;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

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

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 0 solid transparent;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

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

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

@media (min-width: 375px) {
  .navbar-expand-ms {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-ms .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-ms .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-ms .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-ms .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-ms .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-ms .navbar-toggler {
    display: none;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1600px) {
  .navbar-expand-xxxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid rgba(0, 0, 0, 0.125);
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}
.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 0 solid rgba(0, 0, 0, 0.125);
}
.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
}

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

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

.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: 1200px;
  }
}
.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: 1399.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: 1599.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;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

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

.slick-arrow.slick-hidden {
  display: none;
}

.hero-slider-xs .slider-item {
  padding-right: 0px;
  margin-right: 2px;
}
.hero-slider-xs .slider-item:last-child {
  margin-right: 0px;
}
.hero-slider-xs .slider-item picture {
  min-height: 100%;
}
.hero-slider-xs .slider-item img {
  height: 100%;
}
@media (max-width: 991.98px) {
  .hero-slider-xs.deactivate-slick .slider-item {
    margin-right: 0px;
  }
}

.slider .slider-item {
  flex: 1;
}
@media (min-width: 992px) {
  .slider.gallery-detail .slider-item, .slider.hero-slider-xs .slider-item {
    flex: 0 1 66%;
  }
}
@media (min-width: 768px) {
  .slider.gallery-detail .slider-item img {
    max-height: 800px;
  }
}
.slider:not(.slick-initialized) .slider-item:not(:first-child) {
  display: none;
}

.slider-card-info {
  padding: 10px 30px 20px;
}
@media (min-width: 1200px) {
  .slider-card-info {
    min-height: 270px;
  }
}

.slider-shadow {
  position: relative;
}
.slider-shadow::after {
  box-shadow: 0px 100px 40px rgba(0, 0, 0, 0.21), 0px 41.7776px 16.711px rgba(0, 0, 0, 0.150959), 0px 22.3363px 8.93452px rgba(0, 0, 0, 0.125183), 0px 12.5216px 5.00862px rgba(0, 0, 0, 0.105), 0px 6.6501px 2.66004px rgba(0, 0, 0, 0.0848175), 0px 2.76726px 1.1069px rgba(0, 0, 0, 0.0590406);
  content: "";
  position: absolute;
  bottom: -10px;
  width: 100%;
  margin-bottom: 8px;
  display: block;
  height: 50px;
}

@media (min-width: 992px) {
  .card-slider-block .content-column {
    margin-bottom: 120px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .card-slider-block .content-column {
    padding-right: 30px !important;
  }
}

.slider-card .slick-track {
  padding-bottom: 120px;
  display: flex;
}
.slider-card .slick-track .slider-item {
  height: auto;
}

/* purgecss start ignore */
.gform_wrapper {
  --gf-field-gap-x: 12px;
  --gf-field-gap-y: 12px;
}

.gform-grid-row {
  display: flex;
  flex-flow: row wrap;
  margin-inline: calc(var(--gf-field-gap-x) * -1 / 2);
  row-gap: var(--gf-field-gap-y);
}

.gform-grid-col {
  flex: none;
  inline-size: 100%;
  padding-inline: calc(var(--gf-field-gap-x) / 2);
}

.gform-grid-col.gform-grid-row {
  inline-size: calc(100% + var(--gf-field-gap-x));
}

@media (min-width: 640px) {
  .gform-grid-col.gform-grid-col--size-auto {
    flex: 1;
    inline-size: auto;
  }
}
/*
----------------------------------------------------------------

Gravity Forms Date Picker Styles
http: //www.gravityforms.com
updated: January 31, 2014 3:32 PM

Customized styles for the jQuery UI Datepicker 1.9.2
copyright 2012 jQuery Foundation and other contributors
Released under the MIT license.
http://jquery.org/license
some styles courtesty of http://www.hongkiat.com/

Gravity Forms is a Rocketgenius project
copyright 2008 - 2014 Rocketgenius Inc.
http: //www.rocketgenius.com

NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.

If you need to make extensive customizations,
copy the contents of this file to your theme
style sheet for editing. Then, go to the form
settings page & set the 'output CSS' option
to no.

----------------------------------------------------------------
*/
.gfield--input-type-datepicker .ui-datepicker-trigger {
  display: none;
}

.gravity-theme.ui-datepicker {
  background-color: #FFF;
  height: auto;
  margin: -20px auto 0;
  font: 9pt Arial, sans-serif;
  min-width: 216px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.gravity-theme.ui-datepicker a {
  text-decoration: none;
}
.gravity-theme.ui-datepicker table {
  border-collapse: collapse;
  width: 100%;
}
.gravity-theme.ui-datepicker table.ui-datepicker-calendar {
  margin: 0 0 0 0 !important;
}
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-icon {
  display: none;
}
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-month {
  max-height: 25px;
  max-width: 40%;
}
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-year {
  max-height: 25px;
  max-width: 30%;
}
.gravity-theme.ui-datepicker .ui-datepicker-title {
  text-align: center;
}
.gravity-theme.ui-datepicker .ui-datepicker-title select {
  margin-top: 2.5%;
}
.gravity-theme.ui-datepicker .ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}
.gravity-theme.ui-datepicker .ui-datepicker-next {
  float: right;
  background-position: center 0px;
}
.gravity-theme.ui-datepicker thead {
  background: #f7f7f7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #f7f7f7 0%, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f7f7f7", endColorstr="#f1f1f1",GradientType=0 );
  border-bottom: 1px solid #bbb;
}
.gravity-theme.ui-datepicker th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666666;
  text-shadow: 1px 0px 0px #fff;
  filter: dropshadow(color=#fff, offx=1, offy=0);
}
.gravity-theme.ui-datepicker tbody td {
  padding: 0;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
}
.gravity-theme.ui-datepicker tbody td:last-child {
  border-right: 0px;
}
.gravity-theme.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}
.gravity-theme.ui-datepicker tbody tr:last-child {
  border-bottom: 0;
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default {
  background: #ededed;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #ededed 0%, #dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ededed", endColorstr="#dedede",GradientType=0 );
  box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7;
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-active {
  background: #FFF2AA;
  border: 1px solid #c19163;
  color: #666;
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  text-shadow: 0px 1px 0px #FFF;
  filter: dropshadow(color=#FFF, offx=0, offy=1);
  position: relative;
  margin: -1px;
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0;
}
.gravity-theme.ui-datepicker .ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}
.gravity-theme.ui-datepicker .ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}
.gravity-theme.ui-datepicker td.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-header,
.gravity-theme.ui-datepicker .ui-datepicker-header {
  background-color: #666;
  border-color: #666;
  border-style: solid;
  border-width: 1px 0 0 0;
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  color: #e0e0e0;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  font-weight: bold;
  line-height: 31px;
  min-height: 31px !important;
  text-shadow: 1px -1px 0px #000;
}

.gravity-theme.ui-datepicker .ui-datepicker-prev,
.gravity-theme.ui-datepicker .ui-datepicker-next {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url("../images/datepicker/arrow.png");
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden;
}

.gravity-theme.ui-datepicker td span,
.gravity-theme.ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 30px;
  line-height: 30px;
  color: #666666;
  text-shadow: 1px 1px 0 #fff;
  filter: dropshadow(color=#fff, offx=1, offy=1);
}

body #ui-datepicker-div.gravity-theme[style] {
  z-index: 9999 !important;
}

.gravity-theme.ui-datepicker:not(.gform-preview-datepicker) .ui-datepicker-header .ui-datepicker-month,
.gravity-theme.ui-datepicker:not(.gform-preview-datepicker) .ui-datepicker-header .ui-datepicker-year {
  border-width: 1px;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  padding-bottom: 3px;
  padding-left: 3px;
  padding-top: 3px;
}

.gravity-theme .gf_progressbar_wrapper {
  clear: both;
  width: 100%;
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
}
.gravity-theme .gf_progressbar_wrapper .gf_progressbar_title {
  color: #3A4044;
  font-size: 13px;
  line-height: 1 !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  clear: both;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.gravity-theme .gf_progressbar {
  position: relative;
  background: #e8e8e8;
  position: relative;
  border-radius: 10.5px;
  width: 100%;
}
.gravity-theme .gf_progressbar_percentage {
  height: 21px;
  text-align: right;
  border-radius: 10.5px;
  vertical-align: middle;
  font-family: helvetica, arial, sans-serif;
  font-size: 13px !important;
  z-index: 999;
}
.gravity-theme .gf_progressbar_percentage.percentbar_100 {
  border-top-right-radius: 10.5px;
  border-bottom-right-radius: 10.5px;
}
.gravity-theme .gf_progressbar_percentage span {
  display: block;
  width: auto;
  float: right;
  margin-right: 5px;
  margin-left: 5px;
  line-height: 21px;
}
.gravity-theme .gf_progressbar_percentage.percentbar_0 span {
  color: #959595;
  text-shadow: none;
  float: none !important;
  margin-left: 12px;
  word-wrap: normal;
}
.gravity-theme .gf_progressbar_percentage.percentbar_blue {
  background-color: #1E7AC4;
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_gray {
  background-color: #6B7280;
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_green {
  background-color: #AAC138;
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_orange {
  background-color: #FF5D38;
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_red {
  background-color: #EC1E31;
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_spring {
  background: linear-gradient(270deg, #9CD790 0%, #76D7DB 100%);
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_blues {
  background: linear-gradient(270deg, #00C2FF 0%, #7838E2 100%);
  color: #FFF;
}
.gravity-theme .gf_progressbar_percentage.percentbar_rainbow {
  background: linear-gradient(270deg, #1DBEEA 0%, #CD6AD6 50%, #F35160 100%);
  color: #FFF;
}
.gravity-theme .gf_progressbar_blue {
  background: #D2D6DC;
}
.gravity-theme .gf_progressbar_gray {
  background: #D2D6DC;
}
.gravity-theme .gf_progressbar_green {
  background: #E8E8E8;
}
.gravity-theme .gf_progressbar_orange {
  background: #E8EAEC;
}
.gravity-theme .gf_progressbar_red {
  background: #E8EAEC;
}
.gravity-theme .gf_progressbar_spring {
  background: #D2D6DC;
}
.gravity-theme .gf_progressbar_blues {
  background: #D2D6DC;
}
.gravity-theme .gf_progressbar_rainbow {
  background: #D2D6DC;
}

/* purgecss end ignore */
/* so we can override bootstrap */
/*Theme colors*/
/*Design center colors*/
/*Bluestem colors*/
/* General colors */
/*General typography*/
/*Error*/
/*Color options*/
.color-white {
  color: #ffffff;
}

.sp-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.color-black {
  color: #000;
}

.color-smoke {
  color: #989D9F;
}

.color-grey {
  color: #737373;
}

.color-light {
  color: #e5e5e5;
}

.color-charcoal {
  color: #3A4044;
}

.color-red {
  color: #AC441E;
}

.color-active-charcoal {
  color: #3A4044 !important;
}

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

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

.bg-smoke {
  background-color: #989D9F;
}

.bg-smoke-light {
  background-color: #f5f5f5;
}

.bg-grey {
  background-color: #737373;
}

.bg-light {
  background-color: #e5e5e5;
}

.bg-charcoal {
  background-color: #3A4044;
  color: #ffffff;
}

.bg-red {
  background-color: #AC441E;
  color: #ffffff;
}

/*Container fluid gutter setup*/
/*Container fluid gutter setup*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Input Placeholder Color*/
/*Columns*/
/*Site wrapper*/
.wrapper {
  max-width: 1830px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/*Custom container fluid*/
@media (max-width: 991.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .container-fluid.mobile-0-left, .mobile-0-left.container-sm, .mobile-0-left.container-md, .mobile-0-left.container-lg, .mobile-0-left.container-xl, .mobile-0-left.container-xxl {
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  .container-fluid.mobile-20-right, .mobile-20-right.container-sm, .mobile-20-right.container-md, .mobile-20-right.container-lg, .mobile-20-right.container-xl, .mobile-20-right.container-xxl {
    padding-right: 20px;
  }
}

/*Custom containers with smaller gutter*/
.container-fluid-sm {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
}
@media (max-width: 1199.98px) {
  .container-fluid-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .container-fluid-sm {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*Custom containers with larger gutter*/
.container-fluid-lg {
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  max-width: 1830px;
}
@media (max-width: 767.98px) {
  .container-fluid-lg {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .container-fluid-lg {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container-fluid-lg {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .container-fluid-lg {
    padding-left: 130px;
    padding-right: 130px;
  }
}
@media (min-width: 1600px) {
  .container-fluid-lg {
    padding-left: 180px;
    padding-right: 180px;
  }
}

/*Custom containers with larger gutter*/
.container-fluid-xl {
  margin-left: auto;
  margin-right: auto;
  max-width: 1830px;
}
@media (max-width: 1199.98px) {
  .container-fluid-xl {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .container-fluid-xl {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1600px) {
  .container-fluid-xl {
    padding-left: 120px;
    padding-right: 10px;
  }
}

/*Displays container padding on one side only*/
@media (max-width: 767.98px) {
  .container-offset-left {
    padding-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .container-offset-left {
    padding-left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container-offset-left {
    padding-left: 80px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .container-offset-left {
    padding-left: 130px;
  }
}
@media (min-width: 1600px) {
  .container-offset-left {
    padding-left: 180px;
  }
}

@media (max-width: 767.98px) {
  .container-offset-right {
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .container-offset-right {
    padding-right: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .container-offset-right {
    padding-right: 80px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .container-offset-right {
    padding-right: 130px;
  }
}
@media (min-width: 1600px) {
  .container-offset-right {
    padding-right: 180px;
  }
}

/*Adds left 30px gutter to container element*/
.container-gutters-30-left {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .container-gutters-30-left {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .container-gutters-30-left {
    padding-left: 30px;
  }
}

/*Adds right 30px gutter to container element*/
.container-gutters-30-right {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .container-gutters-30-right {
    padding-left: 30px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .container-gutters-30-right {
    padding-right: 30px;
  }
}

/*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: 1400px) {
  .gutters-lg {
    margin-right: -85px;
    margin-left: -85px;
  }
}
@media (min-width: 1400px) {
  .gutters-lg > .col,
  .gutters-lg > [class*=col-] {
    padding-right: 85px;
    padding-left: 85px;
  }
}

/*Medium gutter options*/
@media (min-width: 1400px) {
  .gutters-md {
    margin-right: -40px;
    margin-left: -40px;
  }
}
@media (min-width: 1400px) {
  .gutters-md > .col,
  .gutters-md > [class*=col-] {
    padding-right: 40px;
    padding-left: 40px;
  }
}

/*Small gutter options*/
@media (min-width: 992px) {
  .gutters-sm {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .gutters-sm > .col,
  .gutters-sm > [class*=col-] {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/*Small gutter options*/
@media (min-width: 992px) {
  .gutters-img-split {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.gutters-img-split > .col,
.gutters-img-split > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 991.98px) {
  .gutters-img-split > .col,
  .gutters-img-split > [class*=col-] {
    margin-right: -10px;
    margin-left: -10px;
  }
}

/*Small gutter options*/
@media (min-width: 992px) {
  .gutters-door-detail {
    margin-right: 0;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .gutters-door-detail > .col,
  .gutters-door-detail > [class*=col-] {
    padding-right: 0px;
    padding-left: 10px;
  }
}

/*Smallest gutter options*/
@media (min-width: 992px) {
  .gutters-xs {
    margin: -5px;
  }
}
@media (min-width: 992px) {
  .gutters-xs > .col,
  .gutters-xs > [class*=col-] {
    padding: 5px;
  }
}

/*Adds top/bottom padding to each column*/
.row-grid {
  margin-bottom: -15px;
  margin-top: -15px;
}
.row-grid > [class*=col-],
.row-grid > .col {
  padding-bottom: 15px;
  padding-top: 15px;
}
@media (max-width: 767.98px) {
  .row-grid > [class*=col-],
  .row-grid > .col {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}

.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: 1400px) {
  .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: 1600px) {
  .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%;
  }
}
/*Container fluid gutter setup*/
/*Container fluid gutter setup*/
/*List reset*/
/*Button reset*/
/*Field reset*/
/*Input Placeholder Color*/
/*Columns*/
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: "Metropolis", sans-serif;
  background: #e5e5e5;
  color: #3A4044;
  font-weight: normal;
  height: 100%;
  letter-spacing: 0.04rem;
  line-height: 1.6;
  margin: 0;
  position: relative;
  text-align: left;
  /*Prevents body from scrolling*/
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.7rem;
  }
}
body.no-scroll {
  overflow: hidden;
}
body .skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
}

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: 20px;
    right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .border-gutters:after {
    left: 40px;
    right: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .border-gutters:after {
    left: 80px;
    right: 80px;
  }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .border-gutters:after {
    left: 130px;
    right: 130px;
  }
}
@media (min-width: 1600px) {
  .border-gutters:after {
    left: 180px;
    right: 180px;
  }
}

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

@media (max-width: 991.98px) {
  .has-border-xs {
    border-top: 2px solid #e5e6e7;
  }
}
@media (max-width: 991.98px) {
  .has-border-xs:last-child {
    border-bottom: solid 2px #e5e6e7;
  }
}

.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 -6px rgba(0, 0, 0, 0.07);
}

@media (max-width: 991.98px) {
  .bt-75 {
    border-top: solid 50px #112F3D;
  }
}
@media (min-width: 992px) {
  .bt-75 {
    border-top: solid 75px #112F3D;
  }
}

/*Animated styles*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  /*Animated delay options*/
  /*Animation duration options*/
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  animation-delay: 1s;
}
.animated.delay-2s {
  animation-delay: 2s;
}
.animated.delay-3s {
  animation-delay: 3s;
}
.animated.delay-4s {
  animation-delay: 4s;
}
.animated.delay-5s {
  animation-delay: 5s;
}
.animated.fast {
  animation-duration: 800ms;
}
.animated.faster {
  animation-duration: 500ms;
}
.animated.slow {
  animation-duration: 1s;
}
.animated.slower {
  animation-duration: 2s;
}
.animated.slowest {
  animation-duration: 4s;
}

/*Disabled for print*/
@media (print), (prefers-reduced-motion) {
  .animated {
    animation: unset !important;
    transition: none !important;
  }
}
/*Fade in*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/*Fade in - up*/
@media (max-width: 767.98px) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media (min-width: 992px) {
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 20px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/*Slide in - up*/
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

/*Fade in - down*/
@media (max-width: 767.98px) {
  @keyframes fadeInDown {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media (min-width: 992px) {
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -10%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(0, 100%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

/*Fade in - left*/
@media (max-width: 767.98px) {
  @keyframes fadeInLeft {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media (min-width: 992px) {
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-100px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/*Fade in - right*/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/*Fade in - right*/
@keyframes fadeInSpin {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0);
  }
}
.animated-spin {
  animation-name: fadeInSpin;
}

/*Bounce*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-5px);
  }
}
/*Scale in*/
@keyframes scaleIn {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}
.scaleIn {
  animation-name: scaleIn;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .scaleIn {
    transition: none;
  }
}

/*Fades list items in sequentially*/
@keyframes listFadeIn {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*Fades in SVG for animation on scroll*/
@keyframes fadeInSVG {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInSVG .svg-bg {
  animation-name: fadeInSVG;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .fadeInSVG .svg-bg {
    transition: none;
  }
}

/*Bounce element in from left side*/
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-13px);
  }
  60% {
    opacity: 1;
    transform: translateX(8px);
  }
  80% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes pulse-animation {
  0% {
    background-color: rgba(255, 255, 255, 0.5);
  }
  100% {
    background-color: rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-animation-dark {
  0% {
    background-color: rgba(58, 64, 68, 0.6);
  }
  100% {
    background-color: rgba(58, 64, 68, 0);
  }
}
/*Column options*/
@media (min-width: 992px) {
  .column-2 {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 40pxpx;
         column-gap: 40pxpx;
  }
  .column-3 {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 40pxpx;
         column-gap: 40pxpx;
  }
}
/*Global alignment options*/
.justify-left {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
  text-align: center;
}

.justify-right {
  justify-content: flex-end;
}

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

/*Alignment options*/
@media (max-width: 767.98px) {
  .center-xs {
    margin-left: auto;
    margin-right: auto;
  }
}
/*Splits paragraph content into 2 columns*/
@media (min-width: 768px) {
  .paragraph-col-2 {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
/*Display options*/
@media (max-width: 767.98px) {
  .d-xs-none {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .sm-el-hidden {
    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*/
.no-lg-cursor {
  text-decoration: none;
}
@media (min-width: 992px) {
  .no-lg-cursor {
    cursor: default;
  }
}
@media (min-width: 992px) {
  .no-lg-cursor a {
    cursor: pointer;
  }
}

.active-border-top-red {
  position: relative;
}
.active-border-top-red:before {
  content: "";
  position: absolute;
  height: 2px;
  display: block;
  background-color: #AC441E;
  margin-top: -5px;
  width: 100%;
}

.active-border-bottom-red {
  position: relative;
}
.active-border-bottom-red:after {
  content: "";
  position: absolute;
  height: 2px;
  display: block;
  background-color: #AC441E;
  width: 100%;
  bottom: -10px;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
  border-top: 2px solid #3A4044;
  opacity: 1;
}

.back-white-icon {
  position: relative;
  width: 70px;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .back-white-icon {
    transition: none;
  }
}
.back-white-icon:before {
  content: "";
  background: url("/assets/images/icons/white-prev-arrow.svg") center center/contain no-repeat;
  transition: all 0.4s;
  display: block;
  width: 21px;
  height: 25px;
  position: absolute;
  left: -17px;
}
@media (prefers-reduced-motion) {
  .back-white-icon:before {
    transition: none;
  }
}
.back-white-icon:hover:before {
  left: -25px;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .back-white-icon:hover:before {
    transition: none;
  }
}

.share-icon {
  position: relative;
}
.share-icon:before {
  content: "";
  background: url("/assets/images/icons/share.svg") center center/contain no-repeat;
  display: block;
  width: 17px;
  height: 22px;
  position: absolute;
  left: -24px;
}

.trash-icon {
  position: relative;
}
.trash-icon:before {
  content: "";
  background: url("/assets/images/icons/trash-icon.svg") center center/contain no-repeat;
  display: block;
  width: 20px;
  height: 23px;
  position: absolute;
  left: -22px;
}

.print-icon {
  position: relative;
}
.print-icon:before {
  content: "";
  background: url("/assets/images/icons/printer-icon.svg") center center/contain no-repeat;
  display: block;
  width: 20px;
  height: 23px;
  position: absolute;
  left: -29px;
}

.block-60 {
  width: 60px;
  height: 60px;
}

.square-40 {
  width: 40px;
  height: 40px;
}

.border-2 {
  border: 2px solid transparent;
}

.border-left {
  border-left: 2px solid transparent;
}

.border-3-left {
  border-left: 3px solid transparent;
}

.border-2-right {
  border-right: 2px solid transparent;
}

.border-2-bottom {
  border-bottom: 2px solid transparent;
}

@media (max-width: 991.98px) {
  .sm-border-2-bottom {
    border-bottom: 2px solid transparent;
  }
}

.border-2-top {
  border-top: 2px solid transparent;
}

.border-white-25 {
  border-color: rgba(255, 255, 255, 0.25);
}

.border-white {
  border-color: #ffffff;
}

.border-red {
  border-color: #AC441E;
}

.border-gray {
  border-color: #e5e6e7;
}

.border-blue {
  border-color: #307698;
}

.border-black {
  border-color: #3A4044;
}

@media (max-width: 1425px) and (min-width: 1399px) {
  .xxl-helper-pull-left {
    max-width: 450px;
  }
}

.sticky-div {
  position: sticky;
  top: 135px;
}

@media (min-width: 992px) {
  .sticky-div-lg {
    position: sticky;
    top: 140px;
  }
}
@media screen and (max-width: 1321px) and (min-width: 1278px) {
  .sticky-div-lg {
    top: 170px;
  }
}
@media (min-width: 1400px) {
  .sticky-div-lg {
    top: 135px;
  }
}

.active-border-red .active .border-2 {
  border-color: #AC441E;
}

.img-outline {
  outline: 2px solid transparent;
  padding: 5px;
  margin-left: -5px;
  margin-right: -5px;
}

.img-active {
  outline-color: #AC441E;
}

#uses::before {
  content: "";
  display: block;
  margin-top: 0px;
  visibility: hidden;
}
@media (min-width: 992px) {
  #uses::before {
    height: 150px;
  }
}
@media (max-width: 991.98px) {
  #uses::before {
    height: 90px;
  }
}

@media (min-width: 1200px) {
  .border-between .border-right {
    border-right: 2px solid transparent;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .border-between .border-right:nth-child(odd) {
    border-right: 2px solid transparent;
  }
  .border-between .border-right:nth-child(-n+2) {
    border-bottom: 2px solid transparent;
  }
}
@media (max-width: 767.98px) {
  .border-between .border-right {
    border-bottom: 2px solid transparent;
  }
}
.border-between .border-right:last-child {
  border-right: none;
  border-bottom: none;
}
.border-between .border-right.border-black {
  border-color: #000;
}

@media (max-width: 1590px) and (min-width: 993px) {
  .fav-icon-pull-left-fix-wood {
    left: 20px !important;
  }
}

.btn-close-transparent {
  background: none;
}

.btn-bottom-card-pad {
  position: absolute;
  bottom: 30px;
}

.close-icon-card-pad {
  right: 23px;
  top: 18px;
  position: absolute;
}

.close-icon-card-popup {
  right: 15px;
  top: 15px;
  position: absolute;
}

.modal-open {
  padding-right: 0px !important;
  overflow: auto;
}

body:not(.modal-open) {
  padding-right: 0px !important;
}

.cursor-hand:hover {
  cursor: pointer;
}

.opacity-1 {
  opacity: 1;
}

.opacity-25 {
  opacity: 0.25;
}

@media (max-width: 575.98px) {
  .sm-img-fluid {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 1340px) and (min-width: 993px) {
  .shift-icon-left-lower-lg {
    left: -10px !important;
  }
}

.dropdown-arrow-after {
  font-weight: 500;
  width: 100%;
  text-align: left;
  position: relative;
  font-size: 1.6rem;
}
.dropdown-arrow-after:after {
  border-bottom: 5px solid #000;
  border: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  height: 10px;
  margin: 0px;
  transform: rotate(45deg);
  transition: all 0.4s;
  vertical-align: middle;
  width: 10px;
  transition: 0.4s;
  right: 0;
  position: absolute;
}
@media (prefers-reduced-motion) {
  .dropdown-arrow-after:after {
    transition: none;
  }
}
.dropdown-arrow-after[aria-expanded=true]:after {
  transform: rotate(225deg);
}

@media (min-width: 992px) {
  .project-slider {
    max-height: 435px;
    overflow-y: scroll;
  }
}
@media (min-width: 1200px) {
  .project-slider {
    max-height: 550px;
  }
}
@media screen and (min-width: 768px) and (max-width: 993px) {
  .project-slider {
    padding-right: 0px;
  }
}
@media (max-width: 991.98px) {
  .project-slider .slick-list {
    padding-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .project-slider .slider-item-xs {
    margin-right: 5px;
  }
}

.project-thumbs {
  border-top: 2px solid #3A4044;
  color: #3A4044;
  padding-top: 4px !important;
  padding-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .gallery-detail, .gallery-video-holder {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .gallery-detail, .gallery-video-holder {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.project-detail-group {
  border-top: 2px solid rgba(58, 64, 68, 0.1);
}
.project-detail-group .project-detail-group-title {
  display: inline-block;
  background-color: rgba(152, 157, 159, 0.2);
  padding: 3px 6px;
  letter-spacing: 0.05em;
}
.project-detail-group .project-detail-link {
  font-weight: 500;
  color: #AC441E;
}
.project-detail-group.sunset-style .color-black:not(.color-sunset-black),
.project-detail-group.sunset-style .project-detail-link {
  color: #6A6E71;
}
.project-detail-group.sunset-style img {
  filter: grayscale(100%);
}
.project-detail-group.sunset-style .text-opacity-70 {
  opacity: 1;
}

.map-container {
  z-index: 1;
}
@media (max-width: 991.98px) {
  .map-container {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .map-container {
    bottom: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
  }
}
.map-container iframe {
  height: 100%;
  min-height: 500px;
  width: 100%;
}

.sunset-alert {
  border: 2px solid #AC441E;
  display: flex;
  align-items: center;
}
.sunset-alert .sunset-icon {
  padding: 15px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.sunset-alert .sunset-icon svg {
  width: 20px;
  height: 20px;
}
.sunset-alert .sunset-message {
  display: flex;
  flex: 1 1 auto;
  justify-content: space-between;
  padding: 0 18px;
  line-height: 1.65;
}
@media (max-width: 767.98px) {
  .sunset-alert .sunset-message {
    flex-direction: column;
  }
}
.sunset-alert.sunset-alert-modal .sunset-message {
  flex-direction: column;
}

/*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;
}
.img-absolute.w-130 {
  width: 130%;
}

.object-position-center {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/* Image Gradients */
.overlay-black-30::before {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.overlay-black-50::before {
  background: rgba(0, 0, 0, 0.5);
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay-gray-70-left::before {
  background: linear-gradient(0deg, rgba(45, 45, 45, 0.7), rgba(45, 45, 45, 0.7));
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay-up-down::before {
  background: linear-gradient(0deg, rgba(45, 45, 45, 0.8) 0%, rgba(58, 64, 68, 0) 100%);
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay-bottom-up::before {
  background: linear-gradient(360deg, rgba(58, 64, 68, 0.8) 0%, rgba(58, 64, 68, 0) 100%);
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay-bottom-up::before {
  background: linear-gradient(360deg, rgba(58, 64, 68, 0.8) 0%, rgba(58, 64, 68, 0) 100%);
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.overlay-light-gray-bottom-up::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-overlay-light-gray-bottom-up {
  width: 100%;
  height: 180px;
  pointer-events: none;
}
.home-overlay-light-gray-bottom-up::before {
  background: linear-gradient(360deg, #4B4B4B 0%, rgba(75, 75, 75, 0) 100%);
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dropdown-shadow {
  filter: drop-shadow(0px 33px 47px rgba(0, 0, 0, 0.13)) drop-shadow(0px 9.94853px 14.1691px rgba(0, 0, 0, 0.0847066)) drop-shadow(0px 4.13211px 5.88513px rgba(0, 0, 0, 0.065)) drop-shadow(0px 1.4945px 2.12854px rgba(0, 0, 0, 0.0452935));
}

.door-style-shadow-hero {
  filter: drop-shadow(0px 100px 136px rgba(0, 0, 0, 0.36)) drop-shadow(0px 41.7776px 56.8175px rgba(0, 0, 0, 0.258788)) drop-shadow(0px 22.3363px 30.3774px rgba(0, 0, 0, 0.214599)) drop-shadow(0px 12.5216px 17.0293px rgba(0, 0, 0, 0.18)) drop-shadow(0px 6.6501px 9.04414px rgba(0, 0, 0, 0.145401)) drop-shadow(0px 2.76726px 3.76347px rgba(0, 0, 0, 0.101212));
}

.door-style-shadow-split {
  filter: drop-shadow(0px 100px 40px rgba(0, 0, 0, 0.21)) drop-shadow(0px 41.7776px 16.711px rgba(0, 0, 0, 0.150959)) drop-shadow(0px 22.3363px 8.93452px rgba(0, 0, 0, 0.125183)) drop-shadow(0px 12.5216px 5.00862px rgba(0, 0, 0, 0.105)) drop-shadow(0px 6.6501px 2.66004px rgba(0, 0, 0, 0.0848175)) drop-shadow(0px 2.76726px 1.1069px rgba(0, 0, 0, 0.0590406));
}

.background-blur {
  opacity: 0.5;
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.img-1 {
  height: 370px;
  overflow: hidden;
}
@media (max-width: 1200px) and (min-width: 994px) {
  .img-1 {
    height: 350px;
  }
}
@media (max-width: 993px) and (min-width: 774px) {
  .img-1 {
    height: 400px;
  }
}
@media (max-width: 773px) and (min-width: 465px) {
  .img-1 {
    height: 500px;
  }
}
@media (max-width: 464px) {
  .img-1 {
    height: 300px;
  }
}

.img-2 {
  z-index: 9;
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  width: 63%;
}
@media (max-width: 1600px) and (min-width: 994px) {
  .img-2 {
    width: 80%;
  }
}
@media (max-width: 993px) and (min-width: 774px) {
  .img-2 {
    width: 85%;
  }
}
@media (max-width: 773px) and (min-width: 610px) {
  .img-2 {
    width: 75%;
  }
}
@media (max-width: 609px) {
  .img-2 {
    width: 75%;
  }
}
.has-img-border img {
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.img-cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/*Position options*/
.position-absolute {
  position: absolute !important;
}

.position-relative {
  position: relative;
}

.position-absolute-30-tl {
  left: 30px;
  position: absolute;
  top: 30px;
}

.position-absolute-neg-45-tl {
  left: -45px;
  position: absolute;
  top: 7px;
}

.position-absolute-50-tl {
  left: 67px;
  position: absolute;
  top: 46px;
}

.position-absolute-30-tr {
  position: absolute;
  right: 30px;
  top: 30px;
}

.position-absolute-0-tr {
  position: absolute;
  right: 0px;
  top: 0px;
}

.position-absolute-0-r {
  position: absolute;
  right: 0px;
}

.position-absolute-30-br {
  bottom: 30px;
  position: absolute;
  right: 30px;
}

.position-absolute-30-bl {
  bottom: 30px;
  left: 30px;
  position: absolute;
}

.position-absolute-0-bl {
  bottom: 0px;
  left: 0px;
  position: absolute;
}

.position-absolute-20-b-30-l {
  bottom: 20px;
  left: 30px;
  position: absolute;
}

.position-absolute-20-bl {
  bottom: 20px;
  left: 0px;
  position: absolute;
}

.position-absolute-center {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.position-absolute-center-icon {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
}

@media (min-width: 992px) {
  .position-absolute-0-lg-r {
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    position: absolute;
  }
}

@media (max-width: 991.98px) {
  .position-absolute-sm-0-l {
    right: 0px;
    left: auto;
    top: 0px;
  }
}

.right-neg-5 {
  right: -5px;
}

.right-5 {
  right: 5px;
}

.right-20 {
  right: 20px;
}

.top-50 {
  top: 50%;
  transform: translateY(-50%);
}

.top-neg-5 {
  top: -5px;
}

.top-5 {
  top: 5px;
}

.top-neg-10 {
  top: -10px;
}

.top-10 {
  top: 10px;
}

@media (max-width: 991.98px) {
  .sm-top-15 {
    top: 15px;
  }
}

.top-0 {
  top: 0px;
}

.top-15 {
  top: 15px;
}

.top-23 {
  top: 23px;
}

@media (max-width: 991.98px) {
  .sm-top-20 {
    top: 20px !important;
  }
}

.bottom-0 {
  bottom: 0px;
}

.bottom-2 {
  bottom: 2px;
}

.bottom-5 {
  bottom: 5px;
}

.bottom-7 {
  bottom: 7px;
}

.bottom-12 {
  bottom: 12px;
}

.bottom-15 {
  bottom: 15px;
}

.bottom-neg-15 {
  bottom: -15px;
}

.bottom-17 {
  bottom: 17px;
}

.bottom-20 {
  bottom: 20px;
}

.bottom-50-px {
  bottom: 50px;
}

.bottom-neg-5 {
  bottom: -5px;
}

.left-5 {
  left: 5px;
}

.left-7 {
  left: 7px;
}

.left-10 {
  left: 10px;
}

.left-12 {
  left: 12px;
}

@media (max-width: 991.98px) {
  .left-sm-12 {
    left: 12px;
  }
}

.left-15 {
  left: 15px;
}

.left-20 {
  left: 20px;
}

.left-17 {
  left: 17px;
}

@media (max-width: 991.98px) {
  .left-sm-17 {
    left: 17px;
  }
}

.left-25 {
  left: 25px;
}

.left-30 {
  left: 30px;
}

.left-45 {
  left: 45px;
}

.left-60 {
  left: 60px;
}

.left-70 {
  left: 70px;
}

@media (max-width: 991.98px) {
  .left-sm-0 {
    left: 0px;
  }
}

@media (max-width: 991.98px) {
  .left-sm-20 {
    left: 20px;
  }
}

.right-neg-30 {
  right: -20px;
}

.right-0 {
  right: 0px;
}

.right-10 {
  right: 10px;
}

.right-15 {
  right: 15px;
}

.right-neg-15 {
  right: -15px;
}

.right-20 {
  right: 20px;
}

.right-23 {
  right: 23px;
}

.right-30 {
  right: 30px;
}

.right-60 {
  right: 60px;
}

@media (max-width: 991.98px) {
  .right-sm-15 {
    right: 15px;
  }
}

@media (max-width: 991.98px) {
  .top-sm-0 {
    top: 0px !important;
  }
}

@media (max-width: 991.98px) {
  .position-absolute-30-bl-md {
    bottom: 30px;
    left: 30px;
    position: absolute;
  }
}

.position-absolute-40-b-center {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  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;
  }
}
@media (max-width: 991.98px) {
  .position-absolute-md-bottom {
    position: absolute;
    bottom: 0px;
  }
}
.pos-left-90 {
  left: -90px;
}

@media (max-width: 991.98px) {
  .sm-left-40 {
    left: 40px;
  }
}

@media (max-width: 991.98px) {
  .sm-top-20 {
    top: 20px;
  }
}

@media (max-width: 991.98px) {
  .sm-position-relative {
    position: relative !important;
    right: initial;
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .sm-position-relative .btn.btn-remove-border, .sm-position-relative .gtranslate_wrapper .btn-remove-border.gt_selector, .gtranslate_wrapper .sm-position-relative .btn-remove-border.gt_selector, .sm-position-relative .btn-remove-border.wp-block-button__link {
    border: 2px solid #3A4044;
  }
}

.js-style-detail-target {
  animation-name: fadeIn;
  transition: 1s;
}

.black-arrow-down {
  transition: 0.4s;
  left: 0;
}
@media (min-width: 992px) {
  .black-arrow-down .half-tab-active {
    padding-left: 52%;
  }
}
@media (max-width: 991.98px) {
  .black-arrow-down .half-tab-active {
    padding-left: 51%;
  }
}
@media (max-width: 767.98px) {
  .black-arrow-down .half-tab-active {
    padding-left: 52%;
  }
}
@media (max-width: 575.98px) {
  .black-arrow-down .half-tab-active {
    padding-left: 54%;
  }
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-15 {
  z-index: 15;
}

/*Used to apply top/bottom padding to any block*/
@media (max-width: 767.98px) {
  .pb-xl {
    padding-bottom: 235px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-xl {
    padding-bottom: 267px;
  }
}
@media (min-width: 1200px) {
  .pb-xl {
    padding-bottom: 300px;
  }
}

@media (max-width: 767.98px) {
  .pt-xl {
    padding-top: 235px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-xl {
    padding-top: 267px;
  }
}
@media (min-width: 1200px) {
  .pt-xl {
    padding-top: 300px;
  }
}

@media (max-width: 767.98px) {
  .pb-lg {
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pb-lg {
    padding-bottom: 175px;
  }
}
@media (min-width: 1200px) {
  .pb-lg {
    padding-bottom: 200px;
  }
}

@media (max-width: 767.98px) {
  .pt-lg {
    padding-top: 150px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .pt-lg {
    padding-top: 175px;
  }
}
@media (min-width: 1200px) {
  .pt-lg {
    padding-top: 200px;
  }
}

@media (max-width: 991.98px) {
  .pb-md {
    padding-bottom: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .pb-md {
    padding-bottom: 125px;
  }
}
@media (min-width: 1400px) {
  .pb-md {
    padding-bottom: 160px;
  }
}

@media (max-width: 991.98px) {
  .pt-md {
    padding-top: 90px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .pt-md {
    padding-top: 125px;
  }
}
@media (min-width: 1400px) {
  .pt-md {
    padding-top: 160px;
  }
}

@media (max-width: 991.98px) {
  .pb-sm, .styled-form form {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .pb-sm, .styled-form form {
    padding-bottom: 77px;
  }
}
@media (min-width: 1400px) {
  .pb-sm, .styled-form form {
    padding-bottom: 110px;
  }
}

@media (max-width: 991.98px) {
  .pt-sm, .styled-form form {
    padding-top: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .pt-sm, .styled-form form {
    padding-top: 77px;
  }
}
@media (min-width: 1400px) {
  .pt-sm, .styled-form form {
    padding-top: 110px;
  }
}

@media (max-width: 991.98px) {
  .pb-xs {
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .pb-xs {
    padding-bottom: 50px;
  }
}
@media (min-width: 1400px) {
  .pb-xs {
    padding-bottom: 75px;
  }
}

@media (max-width: 991.98px) {
  .pt-xs {
    padding-top: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .pt-xs {
    padding-top: 50px;
  }
}
@media (min-width: 1400px) {
  .pt-xs {
    padding-top: 75px;
  }
}

.pt-xxs {
  padding-top: 30px;
}

.pb-xxs {
  padding-bottom: 30px;
}

.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: 1199.98px) {
  .mb-md {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .mb-md {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199.98px) {
  .mt-md {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .mt-md {
    margin-top: 30px;
  }
}

/*Responsive margin options*/
@media (min-width: 992px) {
  .ml-30-lg {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .mt-20-xs {
    margin-top: 20px;
  }
}
@media (max-width: 1399.98px) {
  .mb-10-xxl {
    margin-bottom: 10px;
  }
}

/*Margin options*/
@media (max-width: 767.98px) {
  .mb-sm, .block-row:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-sm, .block-row:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .mb-sm, .block-row:not(:last-child) {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .mb-md {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .mb-md {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .mb-md {
    margin-bottom: 80px;
  }
}

/*Margin options*/
.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mr-2 {
  margin-right: 3px;
}

.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-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .mb-md-25 {
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .mb-sm-10 {
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .lg-mt-0 {
    margin-top: 0px;
  }
  .lg-mt-5 {
    margin-top: 5px;
  }
  .lg-mt-10 {
    margin-top: 10px;
  }
  .lg-mt-15 {
    margin-top: 15px;
  }
  .lg-mt-20 {
    margin-top: 20px;
  }
  .lg-mt-25 {
    margin-top: 25px;
  }
  .lg-mt-30 {
    margin-top: 30px;
  }
  .lg-mt-35 {
    margin-top: 35px;
  }
  .lg-mt-40 {
    margin-top: 40px;
  }
  .lg-mt-45 {
    margin-top: 45px;
  }
  .lg-mt-50 {
    margin-top: 50px;
  }
  .lg-mt-55 {
    margin-top: 55px;
  }
  .lg-mt-60 {
    margin-top: 60px;
  }
  .lg-mt-65 {
    margin-top: 65px;
  }
  .lg-mt-70 {
    margin-top: 70px;
  }
  .lg-mt-75 {
    margin-top: 75px;
  }
  .lg-mt-80 {
    margin-top: 80px;
  }
  .lg-mt-85 {
    margin-top: 85px;
  }
  .lg-mt-90 {
    margin-top: 90px;
  }
  .lg-mt-95 {
    margin-top: 95px;
  }
  .lg-mt-100 {
    margin-top: 100px;
  }
  .lg-mt-105 {
    margin-top: 105px;
  }
  .lg-mt-110 {
    margin-top: 110px;
  }
  .lg-mt-115 {
    margin-top: 115px;
  }
  .lg-mt-120 {
    margin-top: 120px;
  }
  .lg-mt-125 {
    margin-top: 125px;
  }
  .lg-mt-130 {
    margin-top: 130px;
  }
  .lg-mt-135 {
    margin-top: 135px;
  }
  .lg-mt-140 {
    margin-top: 140px;
  }
  .lg-mt-145 {
    margin-top: 145px;
  }
  .lg-mt-150 {
    margin-top: 150px;
  }
  .lg-mt-155 {
    margin-top: 155px;
  }
  .lg-mt-160 {
    margin-top: 160px;
  }
  .lg-mt-165 {
    margin-top: 165px;
  }
  .lg-mt-170 {
    margin-top: 170px;
  }
  .lg-mt-175 {
    margin-top: 175px;
  }
  .lg-mt-180 {
    margin-top: 180px;
  }
  .lg-mt-185 {
    margin-top: 185px;
  }
  .lg-mt-190 {
    margin-top: 190px;
  }
  .lg-mt-195 {
    margin-top: 195px;
  }
  .lg-mt-200 {
    margin-top: 200px;
  }
  .lg-mr-0 {
    margin-right: 0px;
  }
  .lg-mr-5 {
    margin-right: 5px;
  }
  .lg-mr-10 {
    margin-right: 10px;
  }
  .lg-mr-15 {
    margin-right: 15px;
  }
  .lg-mr-20 {
    margin-right: 20px;
  }
  .lg-mr-25 {
    margin-right: 25px;
  }
  .lg-mr-30 {
    margin-right: 30px;
  }
  .lg-mr-35 {
    margin-right: 35px;
  }
  .lg-mr-40 {
    margin-right: 40px;
  }
  .lg-mr-45 {
    margin-right: 45px;
  }
  .lg-mr-50 {
    margin-right: 50px;
  }
  .lg-mr-55 {
    margin-right: 55px;
  }
  .lg-mr-60 {
    margin-right: 60px;
  }
  .lg-mr-65 {
    margin-right: 65px;
  }
  .lg-mr-70 {
    margin-right: 70px;
  }
  .lg-mr-75 {
    margin-right: 75px;
  }
  .lg-mr-80 {
    margin-right: 80px;
  }
  .lg-mr-85 {
    margin-right: 85px;
  }
  .lg-mr-90 {
    margin-right: 90px;
  }
  .lg-mr-95 {
    margin-right: 95px;
  }
  .lg-mr-100 {
    margin-right: 100px;
  }
  .lg-mr-105 {
    margin-right: 105px;
  }
  .lg-mr-110 {
    margin-right: 110px;
  }
  .lg-mr-115 {
    margin-right: 115px;
  }
  .lg-mr-120 {
    margin-right: 120px;
  }
  .lg-mr-125 {
    margin-right: 125px;
  }
  .lg-mr-130 {
    margin-right: 130px;
  }
  .lg-mr-135 {
    margin-right: 135px;
  }
  .lg-mr-140 {
    margin-right: 140px;
  }
  .lg-mr-145 {
    margin-right: 145px;
  }
  .lg-mr-150 {
    margin-right: 150px;
  }
  .lg-mr-155 {
    margin-right: 155px;
  }
  .lg-mr-160 {
    margin-right: 160px;
  }
  .lg-mr-165 {
    margin-right: 165px;
  }
  .lg-mr-170 {
    margin-right: 170px;
  }
  .lg-mr-175 {
    margin-right: 175px;
  }
  .lg-mr-180 {
    margin-right: 180px;
  }
  .lg-mr-185 {
    margin-right: 185px;
  }
  .lg-mr-190 {
    margin-right: 190px;
  }
  .lg-mr-195 {
    margin-right: 195px;
  }
  .lg-mr-200 {
    margin-right: 200px;
  }
  .lg-mb-0 {
    margin-bottom: 0px;
  }
  .lg-mb-5 {
    margin-bottom: 5px;
  }
  .lg-mb-10 {
    margin-bottom: 10px;
  }
  .lg-mb-15 {
    margin-bottom: 15px;
  }
  .lg-mb-20 {
    margin-bottom: 20px;
  }
  .lg-mb-25 {
    margin-bottom: 25px;
  }
  .lg-mb-30, .gfield {
    margin-bottom: 30px;
  }
  .lg-mb-35 {
    margin-bottom: 35px;
  }
  .lg-mb-40 {
    margin-bottom: 40px;
  }
  .lg-mb-45 {
    margin-bottom: 45px;
  }
  .lg-mb-50 {
    margin-bottom: 50px;
  }
  .lg-mb-55 {
    margin-bottom: 55px;
  }
  .lg-mb-60 {
    margin-bottom: 60px;
  }
  .lg-mb-65 {
    margin-bottom: 65px;
  }
  .lg-mb-70 {
    margin-bottom: 70px;
  }
  .lg-mb-75 {
    margin-bottom: 75px;
  }
  .lg-mb-80 {
    margin-bottom: 80px;
  }
  .lg-mb-85 {
    margin-bottom: 85px;
  }
  .lg-mb-90 {
    margin-bottom: 90px;
  }
  .lg-mb-95 {
    margin-bottom: 95px;
  }
  .lg-mb-100 {
    margin-bottom: 100px;
  }
  .lg-mb-105 {
    margin-bottom: 105px;
  }
  .lg-mb-110 {
    margin-bottom: 110px;
  }
  .lg-mb-115 {
    margin-bottom: 115px;
  }
  .lg-mb-120 {
    margin-bottom: 120px;
  }
  .lg-mb-125 {
    margin-bottom: 125px;
  }
  .lg-mb-130 {
    margin-bottom: 130px;
  }
  .lg-mb-135 {
    margin-bottom: 135px;
  }
  .lg-mb-140 {
    margin-bottom: 140px;
  }
  .lg-mb-145 {
    margin-bottom: 145px;
  }
  .lg-mb-150 {
    margin-bottom: 150px;
  }
  .lg-mb-155 {
    margin-bottom: 155px;
  }
  .lg-mb-160 {
    margin-bottom: 160px;
  }
  .lg-mb-165 {
    margin-bottom: 165px;
  }
  .lg-mb-170 {
    margin-bottom: 170px;
  }
  .lg-mb-175 {
    margin-bottom: 175px;
  }
  .lg-mb-180 {
    margin-bottom: 180px;
  }
  .lg-mb-185 {
    margin-bottom: 185px;
  }
  .lg-mb-190 {
    margin-bottom: 190px;
  }
  .lg-mb-195 {
    margin-bottom: 195px;
  }
  .lg-mb-200 {
    margin-bottom: 200px;
  }
  .lg-ml-0 {
    margin-left: 0px;
  }
  .lg-ml-5 {
    margin-left: 5px;
  }
  .lg-ml-10 {
    margin-left: 10px;
  }
  .lg-ml-15, .gfield .gfield_required_text,
  .gfield .gfield_required_custom {
    margin-left: 15px;
  }
  .lg-ml-20 {
    margin-left: 20px;
  }
  .lg-ml-25 {
    margin-left: 25px;
  }
  .lg-ml-30 {
    margin-left: 30px;
  }
  .lg-ml-35 {
    margin-left: 35px;
  }
  .lg-ml-40 {
    margin-left: 40px;
  }
  .lg-ml-45 {
    margin-left: 45px;
  }
  .lg-ml-50 {
    margin-left: 50px;
  }
  .lg-ml-55 {
    margin-left: 55px;
  }
  .lg-ml-60 {
    margin-left: 60px;
  }
  .lg-ml-65 {
    margin-left: 65px;
  }
  .lg-ml-70 {
    margin-left: 70px;
  }
  .lg-ml-75 {
    margin-left: 75px;
  }
  .lg-ml-80 {
    margin-left: 80px;
  }
  .lg-ml-85 {
    margin-left: 85px;
  }
  .lg-ml-90 {
    margin-left: 90px;
  }
  .lg-ml-95 {
    margin-left: 95px;
  }
  .lg-ml-100 {
    margin-left: 100px;
  }
  .lg-ml-105 {
    margin-left: 105px;
  }
  .lg-ml-110 {
    margin-left: 110px;
  }
  .lg-ml-115 {
    margin-left: 115px;
  }
  .lg-ml-120 {
    margin-left: 120px;
  }
  .lg-ml-125 {
    margin-left: 125px;
  }
  .lg-ml-130 {
    margin-left: 130px;
  }
  .lg-ml-135 {
    margin-left: 135px;
  }
  .lg-ml-140 {
    margin-left: 140px;
  }
  .lg-ml-145 {
    margin-left: 145px;
  }
  .lg-ml-150 {
    margin-left: 150px;
  }
  .lg-ml-155 {
    margin-left: 155px;
  }
  .lg-ml-160 {
    margin-left: 160px;
  }
  .lg-ml-165 {
    margin-left: 165px;
  }
  .lg-ml-170 {
    margin-left: 170px;
  }
  .lg-ml-175 {
    margin-left: 175px;
  }
  .lg-ml-180 {
    margin-left: 180px;
  }
  .lg-ml-185 {
    margin-left: 185px;
  }
  .lg-ml-190 {
    margin-left: 190px;
  }
  .lg-ml-195 {
    margin-left: 195px;
  }
  .lg-ml-200 {
    margin-left: 200px;
  }
  .lg-mt-neg-0 {
    margin-top: 0px;
  }
  .lg-mt-neg-5 {
    margin-top: -5px;
  }
  .lg-mt-neg-10 {
    margin-top: -10px;
  }
  .lg-mt-neg-15 {
    margin-top: -15px;
  }
  .lg-mt-neg-20 {
    margin-top: -20px;
  }
  .lg-mt-neg-25 {
    margin-top: -25px;
  }
  .lg-mt-neg-30 {
    margin-top: -30px;
  }
  .lg-mt-neg-35 {
    margin-top: -35px;
  }
  .lg-mt-neg-40 {
    margin-top: -40px;
  }
  .lg-mt-neg-45 {
    margin-top: -45px;
  }
  .lg-mt-neg-50 {
    margin-top: -50px;
  }
  .lg-mt-neg-55 {
    margin-top: -55px;
  }
  .lg-mt-neg-60 {
    margin-top: -60px;
  }
  .lg-mt-neg-65 {
    margin-top: -65px;
  }
  .lg-mt-neg-70 {
    margin-top: -70px;
  }
  .lg-mt-neg-75 {
    margin-top: -75px;
  }
  .lg-mt-neg-80 {
    margin-top: -80px;
  }
  .lg-mt-neg-85 {
    margin-top: -85px;
  }
  .lg-mt-neg-90 {
    margin-top: -90px;
  }
  .lg-mt-neg-95 {
    margin-top: -95px;
  }
  .lg-mt-neg-100 {
    margin-top: -100px;
  }
  .lg-mt-neg-105 {
    margin-top: -105px;
  }
  .lg-mt-neg-110 {
    margin-top: -110px;
  }
  .lg-mt-neg-115 {
    margin-top: -115px;
  }
  .lg-mt-neg-120 {
    margin-top: -120px;
  }
  .lg-mt-neg-125 {
    margin-top: -125px;
  }
  .lg-mt-neg-130 {
    margin-top: -130px;
  }
  .lg-mt-neg-135 {
    margin-top: -135px;
  }
  .lg-mt-neg-140 {
    margin-top: -140px;
  }
  .lg-mt-neg-145 {
    margin-top: -145px;
  }
  .lg-mt-neg-150 {
    margin-top: -150px;
  }
  .lg-mt-neg-155 {
    margin-top: -155px;
  }
  .lg-mt-neg-160 {
    margin-top: -160px;
  }
  .lg-mt-neg-165 {
    margin-top: -165px;
  }
  .lg-mt-neg-170 {
    margin-top: -170px;
  }
  .lg-mt-neg-175 {
    margin-top: -175px;
  }
  .lg-mt-neg-180 {
    margin-top: -180px;
  }
  .lg-mt-neg-185 {
    margin-top: -185px;
  }
  .lg-mt-neg-190 {
    margin-top: -190px;
  }
  .lg-mt-neg-195 {
    margin-top: -195px;
  }
  .lg-mt-neg-200 {
    margin-top: -200px;
  }
  .lg-mr-neg-0 {
    margin-right: 0px;
  }
  .lg-mr-neg-5 {
    margin-right: -5px;
  }
  .lg-mr-neg-10 {
    margin-right: -10px;
  }
  .lg-mr-neg-15 {
    margin-right: -15px;
  }
  .lg-mr-neg-20 {
    margin-right: -20px;
  }
  .lg-mr-neg-25 {
    margin-right: -25px;
  }
  .lg-mr-neg-30 {
    margin-right: -30px;
  }
  .lg-mr-neg-35 {
    margin-right: -35px;
  }
  .lg-mr-neg-40 {
    margin-right: -40px;
  }
  .lg-mr-neg-45 {
    margin-right: -45px;
  }
  .lg-mr-neg-50 {
    margin-right: -50px;
  }
  .lg-mr-neg-55 {
    margin-right: -55px;
  }
  .lg-mr-neg-60 {
    margin-right: -60px;
  }
  .lg-mr-neg-65 {
    margin-right: -65px;
  }
  .lg-mr-neg-70 {
    margin-right: -70px;
  }
  .lg-mr-neg-75 {
    margin-right: -75px;
  }
  .lg-mr-neg-80 {
    margin-right: -80px;
  }
  .lg-mr-neg-85 {
    margin-right: -85px;
  }
  .lg-mr-neg-90 {
    margin-right: -90px;
  }
  .lg-mr-neg-95 {
    margin-right: -95px;
  }
  .lg-mr-neg-100 {
    margin-right: -100px;
  }
  .lg-mr-neg-105 {
    margin-right: -105px;
  }
  .lg-mr-neg-110 {
    margin-right: -110px;
  }
  .lg-mr-neg-115 {
    margin-right: -115px;
  }
  .lg-mr-neg-120 {
    margin-right: -120px;
  }
  .lg-mr-neg-125 {
    margin-right: -125px;
  }
  .lg-mr-neg-130 {
    margin-right: -130px;
  }
  .lg-mr-neg-135 {
    margin-right: -135px;
  }
  .lg-mr-neg-140 {
    margin-right: -140px;
  }
  .lg-mr-neg-145 {
    margin-right: -145px;
  }
  .lg-mr-neg-150 {
    margin-right: -150px;
  }
  .lg-mr-neg-155 {
    margin-right: -155px;
  }
  .lg-mr-neg-160 {
    margin-right: -160px;
  }
  .lg-mr-neg-165 {
    margin-right: -165px;
  }
  .lg-mr-neg-170 {
    margin-right: -170px;
  }
  .lg-mr-neg-175 {
    margin-right: -175px;
  }
  .lg-mr-neg-180 {
    margin-right: -180px;
  }
  .lg-mr-neg-185 {
    margin-right: -185px;
  }
  .lg-mr-neg-190 {
    margin-right: -190px;
  }
  .lg-mr-neg-195 {
    margin-right: -195px;
  }
  .lg-mr-neg-200 {
    margin-right: -200px;
  }
  .lg-mb-neg-0 {
    margin-bottom: 0px;
  }
  .lg-mb-neg-5 {
    margin-bottom: -5px;
  }
  .lg-mb-neg-10 {
    margin-bottom: -10px;
  }
  .lg-mb-neg-15 {
    margin-bottom: -15px;
  }
  .lg-mb-neg-20 {
    margin-bottom: -20px;
  }
  .lg-mb-neg-25 {
    margin-bottom: -25px;
  }
  .lg-mb-neg-30 {
    margin-bottom: -30px;
  }
  .lg-mb-neg-35 {
    margin-bottom: -35px;
  }
  .lg-mb-neg-40 {
    margin-bottom: -40px;
  }
  .lg-mb-neg-45 {
    margin-bottom: -45px;
  }
  .lg-mb-neg-50 {
    margin-bottom: -50px;
  }
  .lg-mb-neg-55 {
    margin-bottom: -55px;
  }
  .lg-mb-neg-60 {
    margin-bottom: -60px;
  }
  .lg-mb-neg-65 {
    margin-bottom: -65px;
  }
  .lg-mb-neg-70 {
    margin-bottom: -70px;
  }
  .lg-mb-neg-75 {
    margin-bottom: -75px;
  }
  .lg-mb-neg-80 {
    margin-bottom: -80px;
  }
  .lg-mb-neg-85 {
    margin-bottom: -85px;
  }
  .lg-mb-neg-90 {
    margin-bottom: -90px;
  }
  .lg-mb-neg-95 {
    margin-bottom: -95px;
  }
  .lg-mb-neg-100 {
    margin-bottom: -100px;
  }
  .lg-mb-neg-105 {
    margin-bottom: -105px;
  }
  .lg-mb-neg-110 {
    margin-bottom: -110px;
  }
  .lg-mb-neg-115 {
    margin-bottom: -115px;
  }
  .lg-mb-neg-120 {
    margin-bottom: -120px;
  }
  .lg-mb-neg-125 {
    margin-bottom: -125px;
  }
  .lg-mb-neg-130 {
    margin-bottom: -130px;
  }
  .lg-mb-neg-135 {
    margin-bottom: -135px;
  }
  .lg-mb-neg-140 {
    margin-bottom: -140px;
  }
  .lg-mb-neg-145 {
    margin-bottom: -145px;
  }
  .lg-mb-neg-150 {
    margin-bottom: -150px;
  }
  .lg-mb-neg-155 {
    margin-bottom: -155px;
  }
  .lg-mb-neg-160 {
    margin-bottom: -160px;
  }
  .lg-mb-neg-165 {
    margin-bottom: -165px;
  }
  .lg-mb-neg-170 {
    margin-bottom: -170px;
  }
  .lg-mb-neg-175 {
    margin-bottom: -175px;
  }
  .lg-mb-neg-180 {
    margin-bottom: -180px;
  }
  .lg-mb-neg-185 {
    margin-bottom: -185px;
  }
  .lg-mb-neg-190 {
    margin-bottom: -190px;
  }
  .lg-mb-neg-195 {
    margin-bottom: -195px;
  }
  .lg-mb-neg-200 {
    margin-bottom: -200px;
  }
  .lg-ml-neg-0 {
    margin-left: 0px;
  }
  .lg-ml-neg-5 {
    margin-left: -5px;
  }
  .lg-ml-neg-10 {
    margin-left: -10px;
  }
  .lg-ml-neg-15 {
    margin-left: -15px;
  }
  .lg-ml-neg-20 {
    margin-left: -20px;
  }
  .lg-ml-neg-25 {
    margin-left: -25px;
  }
  .lg-ml-neg-30 {
    margin-left: -30px;
  }
  .lg-ml-neg-35 {
    margin-left: -35px;
  }
  .lg-ml-neg-40 {
    margin-left: -40px;
  }
  .lg-ml-neg-45 {
    margin-left: -45px;
  }
  .lg-ml-neg-50 {
    margin-left: -50px;
  }
  .lg-ml-neg-55 {
    margin-left: -55px;
  }
  .lg-ml-neg-60 {
    margin-left: -60px;
  }
  .lg-ml-neg-65 {
    margin-left: -65px;
  }
  .lg-ml-neg-70 {
    margin-left: -70px;
  }
  .lg-ml-neg-75 {
    margin-left: -75px;
  }
  .lg-ml-neg-80 {
    margin-left: -80px;
  }
  .lg-ml-neg-85 {
    margin-left: -85px;
  }
  .lg-ml-neg-90 {
    margin-left: -90px;
  }
  .lg-ml-neg-95 {
    margin-left: -95px;
  }
  .lg-ml-neg-100 {
    margin-left: -100px;
  }
  .lg-ml-neg-105 {
    margin-left: -105px;
  }
  .lg-ml-neg-110 {
    margin-left: -110px;
  }
  .lg-ml-neg-115 {
    margin-left: -115px;
  }
  .lg-ml-neg-120 {
    margin-left: -120px;
  }
  .lg-ml-neg-125 {
    margin-left: -125px;
  }
  .lg-ml-neg-130 {
    margin-left: -130px;
  }
  .lg-ml-neg-135 {
    margin-left: -135px;
  }
  .lg-ml-neg-140 {
    margin-left: -140px;
  }
  .lg-ml-neg-145 {
    margin-left: -145px;
  }
  .lg-ml-neg-150 {
    margin-left: -150px;
  }
  .lg-ml-neg-155 {
    margin-left: -155px;
  }
  .lg-ml-neg-160 {
    margin-left: -160px;
  }
  .lg-ml-neg-165 {
    margin-left: -165px;
  }
  .lg-ml-neg-170 {
    margin-left: -170px;
  }
  .lg-ml-neg-175 {
    margin-left: -175px;
  }
  .lg-ml-neg-180 {
    margin-left: -180px;
  }
  .lg-ml-neg-185 {
    margin-left: -185px;
  }
  .lg-ml-neg-190 {
    margin-left: -190px;
  }
  .lg-ml-neg-195 {
    margin-left: -195px;
  }
  .lg-ml-neg-200 {
    margin-left: -200px;
  }
  .lg-pt-0 {
    padding-top: 0px;
  }
  .lg-pt-5 {
    padding-top: 5px;
  }
  .lg-pt-10 {
    padding-top: 10px;
  }
  .lg-pt-15 {
    padding-top: 15px;
  }
  .lg-pt-20 {
    padding-top: 20px;
  }
  .lg-pt-25 {
    padding-top: 25px;
  }
  .lg-pt-30 {
    padding-top: 30px;
  }
  .lg-pt-35 {
    padding-top: 35px;
  }
  .lg-pt-40 {
    padding-top: 40px;
  }
  .lg-pt-45 {
    padding-top: 45px;
  }
  .lg-pt-50 {
    padding-top: 50px;
  }
  .lg-pt-55 {
    padding-top: 55px;
  }
  .lg-pt-60 {
    padding-top: 60px;
  }
  .lg-pt-65 {
    padding-top: 65px;
  }
  .lg-pt-70 {
    padding-top: 70px;
  }
  .lg-pt-75 {
    padding-top: 75px;
  }
  .lg-pt-80 {
    padding-top: 80px;
  }
  .lg-pt-85 {
    padding-top: 85px;
  }
  .lg-pt-90 {
    padding-top: 90px;
  }
  .lg-pt-95 {
    padding-top: 95px;
  }
  .lg-pt-100 {
    padding-top: 100px;
  }
  .lg-pt-105 {
    padding-top: 105px;
  }
  .lg-pt-110 {
    padding-top: 110px;
  }
  .lg-pt-115 {
    padding-top: 115px;
  }
  .lg-pt-120 {
    padding-top: 120px;
  }
  .lg-pt-125 {
    padding-top: 125px;
  }
  .lg-pt-130 {
    padding-top: 130px;
  }
  .lg-pt-135 {
    padding-top: 135px;
  }
  .lg-pt-140 {
    padding-top: 140px;
  }
  .lg-pt-145 {
    padding-top: 145px;
  }
  .lg-pt-150 {
    padding-top: 150px;
  }
  .lg-pt-155 {
    padding-top: 155px;
  }
  .lg-pt-160 {
    padding-top: 160px;
  }
  .lg-pt-165 {
    padding-top: 165px;
  }
  .lg-pt-170 {
    padding-top: 170px;
  }
  .lg-pt-175 {
    padding-top: 175px;
  }
  .lg-pt-180 {
    padding-top: 180px;
  }
  .lg-pt-185 {
    padding-top: 185px;
  }
  .lg-pt-190 {
    padding-top: 190px;
  }
  .lg-pt-195 {
    padding-top: 195px;
  }
  .lg-pt-200 {
    padding-top: 200px;
  }
  .lg-pr-0 {
    padding-right: 0px;
  }
  .lg-pr-5 {
    padding-right: 5px;
  }
  .lg-pr-10 {
    padding-right: 10px;
  }
  .lg-pr-15 {
    padding-right: 15px;
  }
  .lg-pr-20 {
    padding-right: 20px;
  }
  .lg-pr-25 {
    padding-right: 25px;
  }
  .lg-pr-30 {
    padding-right: 30px;
  }
  .lg-pr-35 {
    padding-right: 35px;
  }
  .lg-pr-40 {
    padding-right: 40px;
  }
  .lg-pr-45 {
    padding-right: 45px;
  }
  .lg-pr-50 {
    padding-right: 50px;
  }
  .lg-pr-55 {
    padding-right: 55px;
  }
  .lg-pr-60 {
    padding-right: 60px;
  }
  .lg-pr-65 {
    padding-right: 65px;
  }
  .lg-pr-70 {
    padding-right: 70px;
  }
  .lg-pr-75 {
    padding-right: 75px;
  }
  .lg-pr-80 {
    padding-right: 80px;
  }
  .lg-pr-85 {
    padding-right: 85px;
  }
  .lg-pr-90 {
    padding-right: 90px;
  }
  .lg-pr-95 {
    padding-right: 95px;
  }
  .lg-pr-100 {
    padding-right: 100px;
  }
  .lg-pr-105 {
    padding-right: 105px;
  }
  .lg-pr-110 {
    padding-right: 110px;
  }
  .lg-pr-115 {
    padding-right: 115px;
  }
  .lg-pr-120 {
    padding-right: 120px;
  }
  .lg-pr-125 {
    padding-right: 125px;
  }
  .lg-pr-130 {
    padding-right: 130px;
  }
  .lg-pr-135 {
    padding-right: 135px;
  }
  .lg-pr-140 {
    padding-right: 140px;
  }
  .lg-pr-145 {
    padding-right: 145px;
  }
  .lg-pr-150 {
    padding-right: 150px;
  }
  .lg-pr-155 {
    padding-right: 155px;
  }
  .lg-pr-160 {
    padding-right: 160px;
  }
  .lg-pr-165 {
    padding-right: 165px;
  }
  .lg-pr-170 {
    padding-right: 170px;
  }
  .lg-pr-175 {
    padding-right: 175px;
  }
  .lg-pr-180 {
    padding-right: 180px;
  }
  .lg-pr-185 {
    padding-right: 185px;
  }
  .lg-pr-190 {
    padding-right: 190px;
  }
  .lg-pr-195 {
    padding-right: 195px;
  }
  .lg-pr-200 {
    padding-right: 200px;
  }
  .lg-pb-0 {
    padding-bottom: 0px;
  }
  .lg-pb-5 {
    padding-bottom: 5px;
  }
  .lg-pb-10 {
    padding-bottom: 10px;
  }
  .lg-pb-15 {
    padding-bottom: 15px;
  }
  .lg-pb-20 {
    padding-bottom: 20px;
  }
  .lg-pb-25 {
    padding-bottom: 25px;
  }
  .lg-pb-30 {
    padding-bottom: 30px;
  }
  .lg-pb-35 {
    padding-bottom: 35px;
  }
  .lg-pb-40 {
    padding-bottom: 40px;
  }
  .lg-pb-45 {
    padding-bottom: 45px;
  }
  .lg-pb-50 {
    padding-bottom: 50px;
  }
  .lg-pb-55 {
    padding-bottom: 55px;
  }
  .lg-pb-60 {
    padding-bottom: 60px;
  }
  .lg-pb-65 {
    padding-bottom: 65px;
  }
  .lg-pb-70 {
    padding-bottom: 70px;
  }
  .lg-pb-75 {
    padding-bottom: 75px;
  }
  .lg-pb-80 {
    padding-bottom: 80px;
  }
  .lg-pb-85 {
    padding-bottom: 85px;
  }
  .lg-pb-90 {
    padding-bottom: 90px;
  }
  .lg-pb-95 {
    padding-bottom: 95px;
  }
  .lg-pb-100 {
    padding-bottom: 100px;
  }
  .lg-pb-105 {
    padding-bottom: 105px;
  }
  .lg-pb-110 {
    padding-bottom: 110px;
  }
  .lg-pb-115 {
    padding-bottom: 115px;
  }
  .lg-pb-120 {
    padding-bottom: 120px;
  }
  .lg-pb-125 {
    padding-bottom: 125px;
  }
  .lg-pb-130 {
    padding-bottom: 130px;
  }
  .lg-pb-135 {
    padding-bottom: 135px;
  }
  .lg-pb-140 {
    padding-bottom: 140px;
  }
  .lg-pb-145 {
    padding-bottom: 145px;
  }
  .lg-pb-150 {
    padding-bottom: 150px;
  }
  .lg-pb-155 {
    padding-bottom: 155px;
  }
  .lg-pb-160 {
    padding-bottom: 160px;
  }
  .lg-pb-165 {
    padding-bottom: 165px;
  }
  .lg-pb-170 {
    padding-bottom: 170px;
  }
  .lg-pb-175 {
    padding-bottom: 175px;
  }
  .lg-pb-180 {
    padding-bottom: 180px;
  }
  .lg-pb-185 {
    padding-bottom: 185px;
  }
  .lg-pb-190 {
    padding-bottom: 190px;
  }
  .lg-pb-195 {
    padding-bottom: 195px;
  }
  .lg-pb-200 {
    padding-bottom: 200px;
  }
  .lg-pl-0 {
    padding-left: 0px;
  }
  .lg-pl-5 {
    padding-left: 5px;
  }
  .lg-pl-10 {
    padding-left: 10px;
  }
  .lg-pl-15 {
    padding-left: 15px;
  }
  .lg-pl-20 {
    padding-left: 20px;
  }
  .lg-pl-25 {
    padding-left: 25px;
  }
  .lg-pl-30 {
    padding-left: 30px;
  }
  .lg-pl-35 {
    padding-left: 35px;
  }
  .lg-pl-40 {
    padding-left: 40px;
  }
  .lg-pl-45 {
    padding-left: 45px;
  }
  .lg-pl-50 {
    padding-left: 50px;
  }
  .lg-pl-55 {
    padding-left: 55px;
  }
  .lg-pl-60 {
    padding-left: 60px;
  }
  .lg-pl-65 {
    padding-left: 65px;
  }
  .lg-pl-70 {
    padding-left: 70px;
  }
  .lg-pl-75 {
    padding-left: 75px;
  }
  .lg-pl-80 {
    padding-left: 80px;
  }
  .lg-pl-85 {
    padding-left: 85px;
  }
  .lg-pl-90 {
    padding-left: 90px;
  }
  .lg-pl-95 {
    padding-left: 95px;
  }
  .lg-pl-100 {
    padding-left: 100px;
  }
  .lg-pl-105 {
    padding-left: 105px;
  }
  .lg-pl-110 {
    padding-left: 110px;
  }
  .lg-pl-115 {
    padding-left: 115px;
  }
  .lg-pl-120 {
    padding-left: 120px;
  }
  .lg-pl-125 {
    padding-left: 125px;
  }
  .lg-pl-130 {
    padding-left: 130px;
  }
  .lg-pl-135 {
    padding-left: 135px;
  }
  .lg-pl-140 {
    padding-left: 140px;
  }
  .lg-pl-145 {
    padding-left: 145px;
  }
  .lg-pl-150 {
    padding-left: 150px;
  }
  .lg-pl-155 {
    padding-left: 155px;
  }
  .lg-pl-160 {
    padding-left: 160px;
  }
  .lg-pl-165 {
    padding-left: 165px;
  }
  .lg-pl-170 {
    padding-left: 170px;
  }
  .lg-pl-175 {
    padding-left: 175px;
  }
  .lg-pl-180 {
    padding-left: 180px;
  }
  .lg-pl-185 {
    padding-left: 185px;
  }
  .lg-pl-190 {
    padding-left: 190px;
  }
  .lg-pl-195 {
    padding-left: 195px;
  }
  .lg-pl-200 {
    padding-left: 200px;
  }
}
@media (min-width: 768px) {
  .md-mt-0 {
    margin-top: 0px;
  }
  .md-mt-5 {
    margin-top: 5px;
  }
  .md-mt-10 {
    margin-top: 10px;
  }
  .md-mt-15 {
    margin-top: 15px;
  }
  .md-mt-20 {
    margin-top: 20px;
  }
  .md-mt-25 {
    margin-top: 25px;
  }
  .md-mt-30 {
    margin-top: 30px;
  }
  .md-mt-35 {
    margin-top: 35px;
  }
  .md-mt-40 {
    margin-top: 40px;
  }
  .md-mt-45 {
    margin-top: 45px;
  }
  .md-mt-50 {
    margin-top: 50px;
  }
  .md-mt-55 {
    margin-top: 55px;
  }
  .md-mt-60 {
    margin-top: 60px;
  }
  .md-mt-65 {
    margin-top: 65px;
  }
  .md-mt-70 {
    margin-top: 70px;
  }
  .md-mt-75 {
    margin-top: 75px;
  }
  .md-mt-80 {
    margin-top: 80px;
  }
  .md-mt-85 {
    margin-top: 85px;
  }
  .md-mt-90 {
    margin-top: 90px;
  }
  .md-mt-95 {
    margin-top: 95px;
  }
  .md-mt-100 {
    margin-top: 100px;
  }
  .md-mt-105 {
    margin-top: 105px;
  }
  .md-mt-110 {
    margin-top: 110px;
  }
  .md-mt-115 {
    margin-top: 115px;
  }
  .md-mt-120 {
    margin-top: 120px;
  }
  .md-mt-125 {
    margin-top: 125px;
  }
  .md-mt-130 {
    margin-top: 130px;
  }
  .md-mt-135 {
    margin-top: 135px;
  }
  .md-mt-140 {
    margin-top: 140px;
  }
  .md-mt-145 {
    margin-top: 145px;
  }
  .md-mt-150 {
    margin-top: 150px;
  }
  .md-mt-155 {
    margin-top: 155px;
  }
  .md-mt-160 {
    margin-top: 160px;
  }
  .md-mt-165 {
    margin-top: 165px;
  }
  .md-mt-170 {
    margin-top: 170px;
  }
  .md-mt-175 {
    margin-top: 175px;
  }
  .md-mt-180 {
    margin-top: 180px;
  }
  .md-mt-185 {
    margin-top: 185px;
  }
  .md-mt-190 {
    margin-top: 190px;
  }
  .md-mt-195 {
    margin-top: 195px;
  }
  .md-mt-200 {
    margin-top: 200px;
  }
  .md-mr-0 {
    margin-right: 0px;
  }
  .md-mr-5 {
    margin-right: 5px;
  }
  .md-mr-10 {
    margin-right: 10px;
  }
  .md-mr-15 {
    margin-right: 15px;
  }
  .md-mr-20 {
    margin-right: 20px;
  }
  .md-mr-25 {
    margin-right: 25px;
  }
  .md-mr-30 {
    margin-right: 30px;
  }
  .md-mr-35 {
    margin-right: 35px;
  }
  .md-mr-40 {
    margin-right: 40px;
  }
  .md-mr-45 {
    margin-right: 45px;
  }
  .md-mr-50 {
    margin-right: 50px;
  }
  .md-mr-55 {
    margin-right: 55px;
  }
  .md-mr-60 {
    margin-right: 60px;
  }
  .md-mr-65 {
    margin-right: 65px;
  }
  .md-mr-70 {
    margin-right: 70px;
  }
  .md-mr-75 {
    margin-right: 75px;
  }
  .md-mr-80 {
    margin-right: 80px;
  }
  .md-mr-85 {
    margin-right: 85px;
  }
  .md-mr-90 {
    margin-right: 90px;
  }
  .md-mr-95 {
    margin-right: 95px;
  }
  .md-mr-100 {
    margin-right: 100px;
  }
  .md-mr-105 {
    margin-right: 105px;
  }
  .md-mr-110 {
    margin-right: 110px;
  }
  .md-mr-115 {
    margin-right: 115px;
  }
  .md-mr-120 {
    margin-right: 120px;
  }
  .md-mr-125 {
    margin-right: 125px;
  }
  .md-mr-130 {
    margin-right: 130px;
  }
  .md-mr-135 {
    margin-right: 135px;
  }
  .md-mr-140 {
    margin-right: 140px;
  }
  .md-mr-145 {
    margin-right: 145px;
  }
  .md-mr-150 {
    margin-right: 150px;
  }
  .md-mr-155 {
    margin-right: 155px;
  }
  .md-mr-160 {
    margin-right: 160px;
  }
  .md-mr-165 {
    margin-right: 165px;
  }
  .md-mr-170 {
    margin-right: 170px;
  }
  .md-mr-175 {
    margin-right: 175px;
  }
  .md-mr-180 {
    margin-right: 180px;
  }
  .md-mr-185 {
    margin-right: 185px;
  }
  .md-mr-190 {
    margin-right: 190px;
  }
  .md-mr-195 {
    margin-right: 195px;
  }
  .md-mr-200 {
    margin-right: 200px;
  }
  .md-mb-0 {
    margin-bottom: 0px;
  }
  .md-mb-5 {
    margin-bottom: 5px;
  }
  .md-mb-10 {
    margin-bottom: 10px;
  }
  .md-mb-15 {
    margin-bottom: 15px;
  }
  .md-mb-20 {
    margin-bottom: 20px;
  }
  .md-mb-25 {
    margin-bottom: 25px;
  }
  .md-mb-30 {
    margin-bottom: 30px;
  }
  .md-mb-35 {
    margin-bottom: 35px;
  }
  .md-mb-40 {
    margin-bottom: 40px;
  }
  .md-mb-45 {
    margin-bottom: 45px;
  }
  .md-mb-50 {
    margin-bottom: 50px;
  }
  .md-mb-55 {
    margin-bottom: 55px;
  }
  .md-mb-60 {
    margin-bottom: 60px;
  }
  .md-mb-65 {
    margin-bottom: 65px;
  }
  .md-mb-70 {
    margin-bottom: 70px;
  }
  .md-mb-75 {
    margin-bottom: 75px;
  }
  .md-mb-80 {
    margin-bottom: 80px;
  }
  .md-mb-85 {
    margin-bottom: 85px;
  }
  .md-mb-90 {
    margin-bottom: 90px;
  }
  .md-mb-95 {
    margin-bottom: 95px;
  }
  .md-mb-100 {
    margin-bottom: 100px;
  }
  .md-mb-105 {
    margin-bottom: 105px;
  }
  .md-mb-110 {
    margin-bottom: 110px;
  }
  .md-mb-115 {
    margin-bottom: 115px;
  }
  .md-mb-120 {
    margin-bottom: 120px;
  }
  .md-mb-125 {
    margin-bottom: 125px;
  }
  .md-mb-130 {
    margin-bottom: 130px;
  }
  .md-mb-135 {
    margin-bottom: 135px;
  }
  .md-mb-140 {
    margin-bottom: 140px;
  }
  .md-mb-145 {
    margin-bottom: 145px;
  }
  .md-mb-150 {
    margin-bottom: 150px;
  }
  .md-mb-155 {
    margin-bottom: 155px;
  }
  .md-mb-160 {
    margin-bottom: 160px;
  }
  .md-mb-165 {
    margin-bottom: 165px;
  }
  .md-mb-170 {
    margin-bottom: 170px;
  }
  .md-mb-175 {
    margin-bottom: 175px;
  }
  .md-mb-180 {
    margin-bottom: 180px;
  }
  .md-mb-185 {
    margin-bottom: 185px;
  }
  .md-mb-190 {
    margin-bottom: 190px;
  }
  .md-mb-195 {
    margin-bottom: 195px;
  }
  .md-mb-200 {
    margin-bottom: 200px;
  }
  .md-ml-0 {
    margin-left: 0px;
  }
  .md-ml-5 {
    margin-left: 5px;
  }
  .md-ml-10 {
    margin-left: 10px;
  }
  .md-ml-15 {
    margin-left: 15px;
  }
  .md-ml-20 {
    margin-left: 20px;
  }
  .md-ml-25 {
    margin-left: 25px;
  }
  .md-ml-30 {
    margin-left: 30px;
  }
  .md-ml-35 {
    margin-left: 35px;
  }
  .md-ml-40 {
    margin-left: 40px;
  }
  .md-ml-45 {
    margin-left: 45px;
  }
  .md-ml-50 {
    margin-left: 50px;
  }
  .md-ml-55 {
    margin-left: 55px;
  }
  .md-ml-60 {
    margin-left: 60px;
  }
  .md-ml-65 {
    margin-left: 65px;
  }
  .md-ml-70 {
    margin-left: 70px;
  }
  .md-ml-75 {
    margin-left: 75px;
  }
  .md-ml-80 {
    margin-left: 80px;
  }
  .md-ml-85 {
    margin-left: 85px;
  }
  .md-ml-90 {
    margin-left: 90px;
  }
  .md-ml-95 {
    margin-left: 95px;
  }
  .md-ml-100 {
    margin-left: 100px;
  }
  .md-ml-105 {
    margin-left: 105px;
  }
  .md-ml-110 {
    margin-left: 110px;
  }
  .md-ml-115 {
    margin-left: 115px;
  }
  .md-ml-120 {
    margin-left: 120px;
  }
  .md-ml-125 {
    margin-left: 125px;
  }
  .md-ml-130 {
    margin-left: 130px;
  }
  .md-ml-135 {
    margin-left: 135px;
  }
  .md-ml-140 {
    margin-left: 140px;
  }
  .md-ml-145 {
    margin-left: 145px;
  }
  .md-ml-150 {
    margin-left: 150px;
  }
  .md-ml-155 {
    margin-left: 155px;
  }
  .md-ml-160 {
    margin-left: 160px;
  }
  .md-ml-165 {
    margin-left: 165px;
  }
  .md-ml-170 {
    margin-left: 170px;
  }
  .md-ml-175 {
    margin-left: 175px;
  }
  .md-ml-180 {
    margin-left: 180px;
  }
  .md-ml-185 {
    margin-left: 185px;
  }
  .md-ml-190 {
    margin-left: 190px;
  }
  .md-ml-195 {
    margin-left: 195px;
  }
  .md-ml-200 {
    margin-left: 200px;
  }
  .md-mt-neg-0 {
    margin-top: 0px;
  }
  .md-mt-neg-5 {
    margin-top: -5px;
  }
  .md-mt-neg-10 {
    margin-top: -10px;
  }
  .md-mt-neg-15 {
    margin-top: -15px;
  }
  .md-mt-neg-20 {
    margin-top: -20px;
  }
  .md-mt-neg-25 {
    margin-top: -25px;
  }
  .md-mt-neg-30 {
    margin-top: -30px;
  }
  .md-mt-neg-35 {
    margin-top: -35px;
  }
  .md-mt-neg-40 {
    margin-top: -40px;
  }
  .md-mt-neg-45 {
    margin-top: -45px;
  }
  .md-mt-neg-50 {
    margin-top: -50px;
  }
  .md-mt-neg-55 {
    margin-top: -55px;
  }
  .md-mt-neg-60 {
    margin-top: -60px;
  }
  .md-mt-neg-65 {
    margin-top: -65px;
  }
  .md-mt-neg-70 {
    margin-top: -70px;
  }
  .md-mt-neg-75 {
    margin-top: -75px;
  }
  .md-mt-neg-80 {
    margin-top: -80px;
  }
  .md-mt-neg-85 {
    margin-top: -85px;
  }
  .md-mt-neg-90 {
    margin-top: -90px;
  }
  .md-mt-neg-95 {
    margin-top: -95px;
  }
  .md-mt-neg-100 {
    margin-top: -100px;
  }
  .md-mt-neg-105 {
    margin-top: -105px;
  }
  .md-mt-neg-110 {
    margin-top: -110px;
  }
  .md-mt-neg-115 {
    margin-top: -115px;
  }
  .md-mt-neg-120 {
    margin-top: -120px;
  }
  .md-mt-neg-125 {
    margin-top: -125px;
  }
  .md-mt-neg-130 {
    margin-top: -130px;
  }
  .md-mt-neg-135 {
    margin-top: -135px;
  }
  .md-mt-neg-140 {
    margin-top: -140px;
  }
  .md-mt-neg-145 {
    margin-top: -145px;
  }
  .md-mt-neg-150 {
    margin-top: -150px;
  }
  .md-mt-neg-155 {
    margin-top: -155px;
  }
  .md-mt-neg-160 {
    margin-top: -160px;
  }
  .md-mt-neg-165 {
    margin-top: -165px;
  }
  .md-mt-neg-170 {
    margin-top: -170px;
  }
  .md-mt-neg-175 {
    margin-top: -175px;
  }
  .md-mt-neg-180 {
    margin-top: -180px;
  }
  .md-mt-neg-185 {
    margin-top: -185px;
  }
  .md-mt-neg-190 {
    margin-top: -190px;
  }
  .md-mt-neg-195 {
    margin-top: -195px;
  }
  .md-mt-neg-200 {
    margin-top: -200px;
  }
  .md-mr-neg-0 {
    margin-right: 0px;
  }
  .md-mr-neg-5 {
    margin-right: -5px;
  }
  .md-mr-neg-10 {
    margin-right: -10px;
  }
  .md-mr-neg-15 {
    margin-right: -15px;
  }
  .md-mr-neg-20 {
    margin-right: -20px;
  }
  .md-mr-neg-25 {
    margin-right: -25px;
  }
  .md-mr-neg-30 {
    margin-right: -30px;
  }
  .md-mr-neg-35 {
    margin-right: -35px;
  }
  .md-mr-neg-40 {
    margin-right: -40px;
  }
  .md-mr-neg-45 {
    margin-right: -45px;
  }
  .md-mr-neg-50 {
    margin-right: -50px;
  }
  .md-mr-neg-55 {
    margin-right: -55px;
  }
  .md-mr-neg-60 {
    margin-right: -60px;
  }
  .md-mr-neg-65 {
    margin-right: -65px;
  }
  .md-mr-neg-70 {
    margin-right: -70px;
  }
  .md-mr-neg-75 {
    margin-right: -75px;
  }
  .md-mr-neg-80 {
    margin-right: -80px;
  }
  .md-mr-neg-85 {
    margin-right: -85px;
  }
  .md-mr-neg-90 {
    margin-right: -90px;
  }
  .md-mr-neg-95 {
    margin-right: -95px;
  }
  .md-mr-neg-100 {
    margin-right: -100px;
  }
  .md-mr-neg-105 {
    margin-right: -105px;
  }
  .md-mr-neg-110 {
    margin-right: -110px;
  }
  .md-mr-neg-115 {
    margin-right: -115px;
  }
  .md-mr-neg-120 {
    margin-right: -120px;
  }
  .md-mr-neg-125 {
    margin-right: -125px;
  }
  .md-mr-neg-130 {
    margin-right: -130px;
  }
  .md-mr-neg-135 {
    margin-right: -135px;
  }
  .md-mr-neg-140 {
    margin-right: -140px;
  }
  .md-mr-neg-145 {
    margin-right: -145px;
  }
  .md-mr-neg-150 {
    margin-right: -150px;
  }
  .md-mr-neg-155 {
    margin-right: -155px;
  }
  .md-mr-neg-160 {
    margin-right: -160px;
  }
  .md-mr-neg-165 {
    margin-right: -165px;
  }
  .md-mr-neg-170 {
    margin-right: -170px;
  }
  .md-mr-neg-175 {
    margin-right: -175px;
  }
  .md-mr-neg-180 {
    margin-right: -180px;
  }
  .md-mr-neg-185 {
    margin-right: -185px;
  }
  .md-mr-neg-190 {
    margin-right: -190px;
  }
  .md-mr-neg-195 {
    margin-right: -195px;
  }
  .md-mr-neg-200 {
    margin-right: -200px;
  }
  .md-mb-neg-0 {
    margin-bottom: 0px;
  }
  .md-mb-neg-5 {
    margin-bottom: -5px;
  }
  .md-mb-neg-10 {
    margin-bottom: -10px;
  }
  .md-mb-neg-15 {
    margin-bottom: -15px;
  }
  .md-mb-neg-20 {
    margin-bottom: -20px;
  }
  .md-mb-neg-25 {
    margin-bottom: -25px;
  }
  .md-mb-neg-30 {
    margin-bottom: -30px;
  }
  .md-mb-neg-35 {
    margin-bottom: -35px;
  }
  .md-mb-neg-40 {
    margin-bottom: -40px;
  }
  .md-mb-neg-45 {
    margin-bottom: -45px;
  }
  .md-mb-neg-50 {
    margin-bottom: -50px;
  }
  .md-mb-neg-55 {
    margin-bottom: -55px;
  }
  .md-mb-neg-60 {
    margin-bottom: -60px;
  }
  .md-mb-neg-65 {
    margin-bottom: -65px;
  }
  .md-mb-neg-70 {
    margin-bottom: -70px;
  }
  .md-mb-neg-75 {
    margin-bottom: -75px;
  }
  .md-mb-neg-80 {
    margin-bottom: -80px;
  }
  .md-mb-neg-85 {
    margin-bottom: -85px;
  }
  .md-mb-neg-90 {
    margin-bottom: -90px;
  }
  .md-mb-neg-95 {
    margin-bottom: -95px;
  }
  .md-mb-neg-100 {
    margin-bottom: -100px;
  }
  .md-mb-neg-105 {
    margin-bottom: -105px;
  }
  .md-mb-neg-110 {
    margin-bottom: -110px;
  }
  .md-mb-neg-115 {
    margin-bottom: -115px;
  }
  .md-mb-neg-120 {
    margin-bottom: -120px;
  }
  .md-mb-neg-125 {
    margin-bottom: -125px;
  }
  .md-mb-neg-130 {
    margin-bottom: -130px;
  }
  .md-mb-neg-135 {
    margin-bottom: -135px;
  }
  .md-mb-neg-140 {
    margin-bottom: -140px;
  }
  .md-mb-neg-145 {
    margin-bottom: -145px;
  }
  .md-mb-neg-150 {
    margin-bottom: -150px;
  }
  .md-mb-neg-155 {
    margin-bottom: -155px;
  }
  .md-mb-neg-160 {
    margin-bottom: -160px;
  }
  .md-mb-neg-165 {
    margin-bottom: -165px;
  }
  .md-mb-neg-170 {
    margin-bottom: -170px;
  }
  .md-mb-neg-175 {
    margin-bottom: -175px;
  }
  .md-mb-neg-180 {
    margin-bottom: -180px;
  }
  .md-mb-neg-185 {
    margin-bottom: -185px;
  }
  .md-mb-neg-190 {
    margin-bottom: -190px;
  }
  .md-mb-neg-195 {
    margin-bottom: -195px;
  }
  .md-mb-neg-200 {
    margin-bottom: -200px;
  }
  .md-ml-neg-0 {
    margin-left: 0px;
  }
  .md-ml-neg-5 {
    margin-left: -5px;
  }
  .md-ml-neg-10 {
    margin-left: -10px;
  }
  .md-ml-neg-15 {
    margin-left: -15px;
  }
  .md-ml-neg-20 {
    margin-left: -20px;
  }
  .md-ml-neg-25 {
    margin-left: -25px;
  }
  .md-ml-neg-30 {
    margin-left: -30px;
  }
  .md-ml-neg-35 {
    margin-left: -35px;
  }
  .md-ml-neg-40 {
    margin-left: -40px;
  }
  .md-ml-neg-45 {
    margin-left: -45px;
  }
  .md-ml-neg-50 {
    margin-left: -50px;
  }
  .md-ml-neg-55 {
    margin-left: -55px;
  }
  .md-ml-neg-60 {
    margin-left: -60px;
  }
  .md-ml-neg-65 {
    margin-left: -65px;
  }
  .md-ml-neg-70 {
    margin-left: -70px;
  }
  .md-ml-neg-75 {
    margin-left: -75px;
  }
  .md-ml-neg-80 {
    margin-left: -80px;
  }
  .md-ml-neg-85 {
    margin-left: -85px;
  }
  .md-ml-neg-90 {
    margin-left: -90px;
  }
  .md-ml-neg-95 {
    margin-left: -95px;
  }
  .md-ml-neg-100 {
    margin-left: -100px;
  }
  .md-ml-neg-105 {
    margin-left: -105px;
  }
  .md-ml-neg-110 {
    margin-left: -110px;
  }
  .md-ml-neg-115 {
    margin-left: -115px;
  }
  .md-ml-neg-120 {
    margin-left: -120px;
  }
  .md-ml-neg-125 {
    margin-left: -125px;
  }
  .md-ml-neg-130 {
    margin-left: -130px;
  }
  .md-ml-neg-135 {
    margin-left: -135px;
  }
  .md-ml-neg-140 {
    margin-left: -140px;
  }
  .md-ml-neg-145 {
    margin-left: -145px;
  }
  .md-ml-neg-150 {
    margin-left: -150px;
  }
  .md-ml-neg-155 {
    margin-left: -155px;
  }
  .md-ml-neg-160 {
    margin-left: -160px;
  }
  .md-ml-neg-165 {
    margin-left: -165px;
  }
  .md-ml-neg-170 {
    margin-left: -170px;
  }
  .md-ml-neg-175 {
    margin-left: -175px;
  }
  .md-ml-neg-180 {
    margin-left: -180px;
  }
  .md-ml-neg-185 {
    margin-left: -185px;
  }
  .md-ml-neg-190 {
    margin-left: -190px;
  }
  .md-ml-neg-195 {
    margin-left: -195px;
  }
  .md-ml-neg-200 {
    margin-left: -200px;
  }
  .md-pt-0 {
    padding-top: 0px;
  }
  .md-pt-5 {
    padding-top: 5px;
  }
  .md-pt-10 {
    padding-top: 10px;
  }
  .md-pt-15 {
    padding-top: 15px;
  }
  .md-pt-20 {
    padding-top: 20px;
  }
  .md-pt-25 {
    padding-top: 25px;
  }
  .md-pt-30 {
    padding-top: 30px;
  }
  .md-pt-35 {
    padding-top: 35px;
  }
  .md-pt-40 {
    padding-top: 40px;
  }
  .md-pt-45 {
    padding-top: 45px;
  }
  .md-pt-50 {
    padding-top: 50px;
  }
  .md-pt-55 {
    padding-top: 55px;
  }
  .md-pt-60 {
    padding-top: 60px;
  }
  .md-pt-65 {
    padding-top: 65px;
  }
  .md-pt-70 {
    padding-top: 70px;
  }
  .md-pt-75 {
    padding-top: 75px;
  }
  .md-pt-80 {
    padding-top: 80px;
  }
  .md-pt-85 {
    padding-top: 85px;
  }
  .md-pt-90 {
    padding-top: 90px;
  }
  .md-pt-95 {
    padding-top: 95px;
  }
  .md-pt-100 {
    padding-top: 100px;
  }
  .md-pt-105 {
    padding-top: 105px;
  }
  .md-pt-110 {
    padding-top: 110px;
  }
  .md-pt-115 {
    padding-top: 115px;
  }
  .md-pt-120 {
    padding-top: 120px;
  }
  .md-pt-125 {
    padding-top: 125px;
  }
  .md-pt-130 {
    padding-top: 130px;
  }
  .md-pt-135 {
    padding-top: 135px;
  }
  .md-pt-140 {
    padding-top: 140px;
  }
  .md-pt-145 {
    padding-top: 145px;
  }
  .md-pt-150 {
    padding-top: 150px;
  }
  .md-pt-155 {
    padding-top: 155px;
  }
  .md-pt-160 {
    padding-top: 160px;
  }
  .md-pt-165 {
    padding-top: 165px;
  }
  .md-pt-170 {
    padding-top: 170px;
  }
  .md-pt-175 {
    padding-top: 175px;
  }
  .md-pt-180 {
    padding-top: 180px;
  }
  .md-pt-185 {
    padding-top: 185px;
  }
  .md-pt-190 {
    padding-top: 190px;
  }
  .md-pt-195 {
    padding-top: 195px;
  }
  .md-pt-200 {
    padding-top: 200px;
  }
  .md-pr-0 {
    padding-right: 0px;
  }
  .md-pr-5 {
    padding-right: 5px;
  }
  .md-pr-10 {
    padding-right: 10px;
  }
  .md-pr-15 {
    padding-right: 15px;
  }
  .md-pr-20 {
    padding-right: 20px;
  }
  .md-pr-25 {
    padding-right: 25px;
  }
  .md-pr-30 {
    padding-right: 30px;
  }
  .md-pr-35 {
    padding-right: 35px;
  }
  .md-pr-40 {
    padding-right: 40px;
  }
  .md-pr-45 {
    padding-right: 45px;
  }
  .md-pr-50 {
    padding-right: 50px;
  }
  .md-pr-55 {
    padding-right: 55px;
  }
  .md-pr-60 {
    padding-right: 60px;
  }
  .md-pr-65 {
    padding-right: 65px;
  }
  .md-pr-70 {
    padding-right: 70px;
  }
  .md-pr-75 {
    padding-right: 75px;
  }
  .md-pr-80 {
    padding-right: 80px;
  }
  .md-pr-85 {
    padding-right: 85px;
  }
  .md-pr-90 {
    padding-right: 90px;
  }
  .md-pr-95 {
    padding-right: 95px;
  }
  .md-pr-100 {
    padding-right: 100px;
  }
  .md-pr-105 {
    padding-right: 105px;
  }
  .md-pr-110 {
    padding-right: 110px;
  }
  .md-pr-115 {
    padding-right: 115px;
  }
  .md-pr-120 {
    padding-right: 120px;
  }
  .md-pr-125 {
    padding-right: 125px;
  }
  .md-pr-130 {
    padding-right: 130px;
  }
  .md-pr-135 {
    padding-right: 135px;
  }
  .md-pr-140 {
    padding-right: 140px;
  }
  .md-pr-145 {
    padding-right: 145px;
  }
  .md-pr-150 {
    padding-right: 150px;
  }
  .md-pr-155 {
    padding-right: 155px;
  }
  .md-pr-160 {
    padding-right: 160px;
  }
  .md-pr-165 {
    padding-right: 165px;
  }
  .md-pr-170 {
    padding-right: 170px;
  }
  .md-pr-175 {
    padding-right: 175px;
  }
  .md-pr-180 {
    padding-right: 180px;
  }
  .md-pr-185 {
    padding-right: 185px;
  }
  .md-pr-190 {
    padding-right: 190px;
  }
  .md-pr-195 {
    padding-right: 195px;
  }
  .md-pr-200 {
    padding-right: 200px;
  }
  .md-pb-0 {
    padding-bottom: 0px;
  }
  .md-pb-5 {
    padding-bottom: 5px;
  }
  .md-pb-10 {
    padding-bottom: 10px;
  }
  .md-pb-15 {
    padding-bottom: 15px;
  }
  .md-pb-20 {
    padding-bottom: 20px;
  }
  .md-pb-25 {
    padding-bottom: 25px;
  }
  .md-pb-30 {
    padding-bottom: 30px;
  }
  .md-pb-35 {
    padding-bottom: 35px;
  }
  .md-pb-40 {
    padding-bottom: 40px;
  }
  .md-pb-45 {
    padding-bottom: 45px;
  }
  .md-pb-50 {
    padding-bottom: 50px;
  }
  .md-pb-55 {
    padding-bottom: 55px;
  }
  .md-pb-60 {
    padding-bottom: 60px;
  }
  .md-pb-65 {
    padding-bottom: 65px;
  }
  .md-pb-70 {
    padding-bottom: 70px;
  }
  .md-pb-75 {
    padding-bottom: 75px;
  }
  .md-pb-80 {
    padding-bottom: 80px;
  }
  .md-pb-85 {
    padding-bottom: 85px;
  }
  .md-pb-90 {
    padding-bottom: 90px;
  }
  .md-pb-95 {
    padding-bottom: 95px;
  }
  .md-pb-100 {
    padding-bottom: 100px;
  }
  .md-pb-105 {
    padding-bottom: 105px;
  }
  .md-pb-110 {
    padding-bottom: 110px;
  }
  .md-pb-115 {
    padding-bottom: 115px;
  }
  .md-pb-120 {
    padding-bottom: 120px;
  }
  .md-pb-125 {
    padding-bottom: 125px;
  }
  .md-pb-130 {
    padding-bottom: 130px;
  }
  .md-pb-135 {
    padding-bottom: 135px;
  }
  .md-pb-140 {
    padding-bottom: 140px;
  }
  .md-pb-145 {
    padding-bottom: 145px;
  }
  .md-pb-150 {
    padding-bottom: 150px;
  }
  .md-pb-155 {
    padding-bottom: 155px;
  }
  .md-pb-160 {
    padding-bottom: 160px;
  }
  .md-pb-165 {
    padding-bottom: 165px;
  }
  .md-pb-170 {
    padding-bottom: 170px;
  }
  .md-pb-175 {
    padding-bottom: 175px;
  }
  .md-pb-180 {
    padding-bottom: 180px;
  }
  .md-pb-185 {
    padding-bottom: 185px;
  }
  .md-pb-190 {
    padding-bottom: 190px;
  }
  .md-pb-195 {
    padding-bottom: 195px;
  }
  .md-pb-200 {
    padding-bottom: 200px;
  }
  .md-pl-0 {
    padding-left: 0px;
  }
  .md-pl-5 {
    padding-left: 5px;
  }
  .md-pl-10 {
    padding-left: 10px;
  }
  .md-pl-15 {
    padding-left: 15px;
  }
  .md-pl-20 {
    padding-left: 20px;
  }
  .md-pl-25 {
    padding-left: 25px;
  }
  .md-pl-30 {
    padding-left: 30px;
  }
  .md-pl-35 {
    padding-left: 35px;
  }
  .md-pl-40 {
    padding-left: 40px;
  }
  .md-pl-45 {
    padding-left: 45px;
  }
  .md-pl-50 {
    padding-left: 50px;
  }
  .md-pl-55 {
    padding-left: 55px;
  }
  .md-pl-60 {
    padding-left: 60px;
  }
  .md-pl-65 {
    padding-left: 65px;
  }
  .md-pl-70 {
    padding-left: 70px;
  }
  .md-pl-75 {
    padding-left: 75px;
  }
  .md-pl-80 {
    padding-left: 80px;
  }
  .md-pl-85 {
    padding-left: 85px;
  }
  .md-pl-90 {
    padding-left: 90px;
  }
  .md-pl-95 {
    padding-left: 95px;
  }
  .md-pl-100 {
    padding-left: 100px;
  }
  .md-pl-105 {
    padding-left: 105px;
  }
  .md-pl-110 {
    padding-left: 110px;
  }
  .md-pl-115 {
    padding-left: 115px;
  }
  .md-pl-120 {
    padding-left: 120px;
  }
  .md-pl-125 {
    padding-left: 125px;
  }
  .md-pl-130 {
    padding-left: 130px;
  }
  .md-pl-135 {
    padding-left: 135px;
  }
  .md-pl-140 {
    padding-left: 140px;
  }
  .md-pl-145 {
    padding-left: 145px;
  }
  .md-pl-150 {
    padding-left: 150px;
  }
  .md-pl-155 {
    padding-left: 155px;
  }
  .md-pl-160 {
    padding-left: 160px;
  }
  .md-pl-165 {
    padding-left: 165px;
  }
  .md-pl-170 {
    padding-left: 170px;
  }
  .md-pl-175 {
    padding-left: 175px;
  }
  .md-pl-180 {
    padding-left: 180px;
  }
  .md-pl-185 {
    padding-left: 185px;
  }
  .md-pl-190 {
    padding-left: 190px;
  }
  .md-pl-195 {
    padding-left: 195px;
  }
  .md-pl-200 {
    padding-left: 200px;
  }
}
@media (max-width: 991.98px) {
  .sm-mt-0 {
    margin-top: 0px;
  }
  .sm-mt-5 {
    margin-top: 5px;
  }
  .sm-mt-10 {
    margin-top: 10px;
  }
  .sm-mt-15 {
    margin-top: 15px;
  }
  .sm-mt-20 {
    margin-top: 20px;
  }
  .sm-mt-25 {
    margin-top: 25px;
  }
  .sm-mt-30 {
    margin-top: 30px;
  }
  .sm-mt-35 {
    margin-top: 35px;
  }
  .sm-mt-40 {
    margin-top: 40px;
  }
  .sm-mt-45 {
    margin-top: 45px;
  }
  .sm-mt-50 {
    margin-top: 50px;
  }
  .sm-mt-55 {
    margin-top: 55px;
  }
  .sm-mt-60 {
    margin-top: 60px;
  }
  .sm-mt-65 {
    margin-top: 65px;
  }
  .sm-mt-70 {
    margin-top: 70px;
  }
  .sm-mt-75 {
    margin-top: 75px;
  }
  .sm-mt-80 {
    margin-top: 80px;
  }
  .sm-mt-85 {
    margin-top: 85px;
  }
  .sm-mt-90 {
    margin-top: 90px;
  }
  .sm-mt-95 {
    margin-top: 95px;
  }
  .sm-mt-100 {
    margin-top: 100px;
  }
  .sm-mt-105 {
    margin-top: 105px;
  }
  .sm-mt-110 {
    margin-top: 110px;
  }
  .sm-mt-115 {
    margin-top: 115px;
  }
  .sm-mt-120 {
    margin-top: 120px;
  }
  .sm-mt-125 {
    margin-top: 125px;
  }
  .sm-mt-130 {
    margin-top: 130px;
  }
  .sm-mt-135 {
    margin-top: 135px;
  }
  .sm-mt-140 {
    margin-top: 140px;
  }
  .sm-mt-145 {
    margin-top: 145px;
  }
  .sm-mt-150 {
    margin-top: 150px;
  }
  .sm-mt-155 {
    margin-top: 155px;
  }
  .sm-mt-160 {
    margin-top: 160px;
  }
  .sm-mt-165 {
    margin-top: 165px;
  }
  .sm-mt-170 {
    margin-top: 170px;
  }
  .sm-mt-175 {
    margin-top: 175px;
  }
  .sm-mt-180 {
    margin-top: 180px;
  }
  .sm-mt-185 {
    margin-top: 185px;
  }
  .sm-mt-190 {
    margin-top: 190px;
  }
  .sm-mt-195 {
    margin-top: 195px;
  }
  .sm-mt-200 {
    margin-top: 200px;
  }
  .sm-mr-0 {
    margin-right: 0px;
  }
  .sm-mr-5 {
    margin-right: 5px;
  }
  .sm-mr-10 {
    margin-right: 10px;
  }
  .sm-mr-15 {
    margin-right: 15px;
  }
  .sm-mr-20 {
    margin-right: 20px;
  }
  .sm-mr-25 {
    margin-right: 25px;
  }
  .sm-mr-30 {
    margin-right: 30px;
  }
  .sm-mr-35 {
    margin-right: 35px;
  }
  .sm-mr-40 {
    margin-right: 40px;
  }
  .sm-mr-45 {
    margin-right: 45px;
  }
  .sm-mr-50 {
    margin-right: 50px;
  }
  .sm-mr-55 {
    margin-right: 55px;
  }
  .sm-mr-60 {
    margin-right: 60px;
  }
  .sm-mr-65 {
    margin-right: 65px;
  }
  .sm-mr-70 {
    margin-right: 70px;
  }
  .sm-mr-75 {
    margin-right: 75px;
  }
  .sm-mr-80 {
    margin-right: 80px;
  }
  .sm-mr-85 {
    margin-right: 85px;
  }
  .sm-mr-90 {
    margin-right: 90px;
  }
  .sm-mr-95 {
    margin-right: 95px;
  }
  .sm-mr-100 {
    margin-right: 100px;
  }
  .sm-mr-105 {
    margin-right: 105px;
  }
  .sm-mr-110 {
    margin-right: 110px;
  }
  .sm-mr-115 {
    margin-right: 115px;
  }
  .sm-mr-120 {
    margin-right: 120px;
  }
  .sm-mr-125 {
    margin-right: 125px;
  }
  .sm-mr-130 {
    margin-right: 130px;
  }
  .sm-mr-135 {
    margin-right: 135px;
  }
  .sm-mr-140 {
    margin-right: 140px;
  }
  .sm-mr-145 {
    margin-right: 145px;
  }
  .sm-mr-150 {
    margin-right: 150px;
  }
  .sm-mr-155 {
    margin-right: 155px;
  }
  .sm-mr-160 {
    margin-right: 160px;
  }
  .sm-mr-165 {
    margin-right: 165px;
  }
  .sm-mr-170 {
    margin-right: 170px;
  }
  .sm-mr-175 {
    margin-right: 175px;
  }
  .sm-mr-180 {
    margin-right: 180px;
  }
  .sm-mr-185 {
    margin-right: 185px;
  }
  .sm-mr-190 {
    margin-right: 190px;
  }
  .sm-mr-195 {
    margin-right: 195px;
  }
  .sm-mr-200 {
    margin-right: 200px;
  }
  .sm-mb-0 {
    margin-bottom: 0px;
  }
  .sm-mb-5 {
    margin-bottom: 5px;
  }
  .sm-mb-10, .gfield {
    margin-bottom: 10px;
  }
  .sm-mb-15 {
    margin-bottom: 15px;
  }
  .sm-mb-20 {
    margin-bottom: 20px;
  }
  .sm-mb-25 {
    margin-bottom: 25px;
  }
  .sm-mb-30 {
    margin-bottom: 30px;
  }
  .sm-mb-35 {
    margin-bottom: 35px;
  }
  .sm-mb-40 {
    margin-bottom: 40px;
  }
  .sm-mb-45 {
    margin-bottom: 45px;
  }
  .sm-mb-50 {
    margin-bottom: 50px;
  }
  .sm-mb-55 {
    margin-bottom: 55px;
  }
  .sm-mb-60 {
    margin-bottom: 60px;
  }
  .sm-mb-65 {
    margin-bottom: 65px;
  }
  .sm-mb-70 {
    margin-bottom: 70px;
  }
  .sm-mb-75 {
    margin-bottom: 75px;
  }
  .sm-mb-80 {
    margin-bottom: 80px;
  }
  .sm-mb-85 {
    margin-bottom: 85px;
  }
  .sm-mb-90 {
    margin-bottom: 90px;
  }
  .sm-mb-95 {
    margin-bottom: 95px;
  }
  .sm-mb-100 {
    margin-bottom: 100px;
  }
  .sm-mb-105 {
    margin-bottom: 105px;
  }
  .sm-mb-110 {
    margin-bottom: 110px;
  }
  .sm-mb-115 {
    margin-bottom: 115px;
  }
  .sm-mb-120 {
    margin-bottom: 120px;
  }
  .sm-mb-125 {
    margin-bottom: 125px;
  }
  .sm-mb-130 {
    margin-bottom: 130px;
  }
  .sm-mb-135 {
    margin-bottom: 135px;
  }
  .sm-mb-140 {
    margin-bottom: 140px;
  }
  .sm-mb-145 {
    margin-bottom: 145px;
  }
  .sm-mb-150 {
    margin-bottom: 150px;
  }
  .sm-mb-155 {
    margin-bottom: 155px;
  }
  .sm-mb-160 {
    margin-bottom: 160px;
  }
  .sm-mb-165 {
    margin-bottom: 165px;
  }
  .sm-mb-170 {
    margin-bottom: 170px;
  }
  .sm-mb-175 {
    margin-bottom: 175px;
  }
  .sm-mb-180 {
    margin-bottom: 180px;
  }
  .sm-mb-185 {
    margin-bottom: 185px;
  }
  .sm-mb-190 {
    margin-bottom: 190px;
  }
  .sm-mb-195 {
    margin-bottom: 195px;
  }
  .sm-mb-200 {
    margin-bottom: 200px;
  }
  .sm-ml-0 {
    margin-left: 0px;
  }
  .sm-ml-5 {
    margin-left: 5px;
  }
  .sm-ml-10, .gfield .gfield_required_text,
  .gfield .gfield_required_custom {
    margin-left: 10px;
  }
  .sm-ml-15 {
    margin-left: 15px;
  }
  .sm-ml-20 {
    margin-left: 20px;
  }
  .sm-ml-25 {
    margin-left: 25px;
  }
  .sm-ml-30 {
    margin-left: 30px;
  }
  .sm-ml-35 {
    margin-left: 35px;
  }
  .sm-ml-40 {
    margin-left: 40px;
  }
  .sm-ml-45 {
    margin-left: 45px;
  }
  .sm-ml-50 {
    margin-left: 50px;
  }
  .sm-ml-55 {
    margin-left: 55px;
  }
  .sm-ml-60 {
    margin-left: 60px;
  }
  .sm-ml-65 {
    margin-left: 65px;
  }
  .sm-ml-70 {
    margin-left: 70px;
  }
  .sm-ml-75 {
    margin-left: 75px;
  }
  .sm-ml-80 {
    margin-left: 80px;
  }
  .sm-ml-85 {
    margin-left: 85px;
  }
  .sm-ml-90 {
    margin-left: 90px;
  }
  .sm-ml-95 {
    margin-left: 95px;
  }
  .sm-ml-100 {
    margin-left: 100px;
  }
  .sm-ml-105 {
    margin-left: 105px;
  }
  .sm-ml-110 {
    margin-left: 110px;
  }
  .sm-ml-115 {
    margin-left: 115px;
  }
  .sm-ml-120 {
    margin-left: 120px;
  }
  .sm-ml-125 {
    margin-left: 125px;
  }
  .sm-ml-130 {
    margin-left: 130px;
  }
  .sm-ml-135 {
    margin-left: 135px;
  }
  .sm-ml-140 {
    margin-left: 140px;
  }
  .sm-ml-145 {
    margin-left: 145px;
  }
  .sm-ml-150 {
    margin-left: 150px;
  }
  .sm-ml-155 {
    margin-left: 155px;
  }
  .sm-ml-160 {
    margin-left: 160px;
  }
  .sm-ml-165 {
    margin-left: 165px;
  }
  .sm-ml-170 {
    margin-left: 170px;
  }
  .sm-ml-175 {
    margin-left: 175px;
  }
  .sm-ml-180 {
    margin-left: 180px;
  }
  .sm-ml-185 {
    margin-left: 185px;
  }
  .sm-ml-190 {
    margin-left: 190px;
  }
  .sm-ml-195 {
    margin-left: 195px;
  }
  .sm-ml-200 {
    margin-left: 200px;
  }
  .sm-mt-neg-0 {
    margin-top: 0px;
  }
  .sm-mt-neg-5 {
    margin-top: -5px;
  }
  .sm-mt-neg-10 {
    margin-top: -10px;
  }
  .sm-mt-neg-15 {
    margin-top: -15px;
  }
  .sm-mt-neg-20 {
    margin-top: -20px;
  }
  .sm-mt-neg-25 {
    margin-top: -25px;
  }
  .sm-mt-neg-30 {
    margin-top: -30px;
  }
  .sm-mt-neg-35 {
    margin-top: -35px;
  }
  .sm-mt-neg-40 {
    margin-top: -40px;
  }
  .sm-mt-neg-45 {
    margin-top: -45px;
  }
  .sm-mt-neg-50 {
    margin-top: -50px;
  }
  .sm-mt-neg-55 {
    margin-top: -55px;
  }
  .sm-mt-neg-60 {
    margin-top: -60px;
  }
  .sm-mt-neg-65 {
    margin-top: -65px;
  }
  .sm-mt-neg-70 {
    margin-top: -70px;
  }
  .sm-mt-neg-75 {
    margin-top: -75px;
  }
  .sm-mt-neg-80 {
    margin-top: -80px;
  }
  .sm-mt-neg-85 {
    margin-top: -85px;
  }
  .sm-mt-neg-90 {
    margin-top: -90px;
  }
  .sm-mt-neg-95 {
    margin-top: -95px;
  }
  .sm-mt-neg-100 {
    margin-top: -100px;
  }
  .sm-mt-neg-105 {
    margin-top: -105px;
  }
  .sm-mt-neg-110 {
    margin-top: -110px;
  }
  .sm-mt-neg-115 {
    margin-top: -115px;
  }
  .sm-mt-neg-120 {
    margin-top: -120px;
  }
  .sm-mt-neg-125 {
    margin-top: -125px;
  }
  .sm-mt-neg-130 {
    margin-top: -130px;
  }
  .sm-mt-neg-135 {
    margin-top: -135px;
  }
  .sm-mt-neg-140 {
    margin-top: -140px;
  }
  .sm-mt-neg-145 {
    margin-top: -145px;
  }
  .sm-mt-neg-150 {
    margin-top: -150px;
  }
  .sm-mt-neg-155 {
    margin-top: -155px;
  }
  .sm-mt-neg-160 {
    margin-top: -160px;
  }
  .sm-mt-neg-165 {
    margin-top: -165px;
  }
  .sm-mt-neg-170 {
    margin-top: -170px;
  }
  .sm-mt-neg-175 {
    margin-top: -175px;
  }
  .sm-mt-neg-180 {
    margin-top: -180px;
  }
  .sm-mt-neg-185 {
    margin-top: -185px;
  }
  .sm-mt-neg-190 {
    margin-top: -190px;
  }
  .sm-mt-neg-195 {
    margin-top: -195px;
  }
  .sm-mt-neg-200 {
    margin-top: -200px;
  }
  .sm-mr-neg-0 {
    margin-right: 0px;
  }
  .sm-mr-neg-5 {
    margin-right: -5px;
  }
  .sm-mr-neg-10 {
    margin-right: -10px;
  }
  .sm-mr-neg-15 {
    margin-right: -15px;
  }
  .sm-mr-neg-20 {
    margin-right: -20px;
  }
  .sm-mr-neg-25 {
    margin-right: -25px;
  }
  .sm-mr-neg-30 {
    margin-right: -30px;
  }
  .sm-mr-neg-35 {
    margin-right: -35px;
  }
  .sm-mr-neg-40 {
    margin-right: -40px;
  }
  .sm-mr-neg-45 {
    margin-right: -45px;
  }
  .sm-mr-neg-50 {
    margin-right: -50px;
  }
  .sm-mr-neg-55 {
    margin-right: -55px;
  }
  .sm-mr-neg-60 {
    margin-right: -60px;
  }
  .sm-mr-neg-65 {
    margin-right: -65px;
  }
  .sm-mr-neg-70 {
    margin-right: -70px;
  }
  .sm-mr-neg-75 {
    margin-right: -75px;
  }
  .sm-mr-neg-80 {
    margin-right: -80px;
  }
  .sm-mr-neg-85 {
    margin-right: -85px;
  }
  .sm-mr-neg-90 {
    margin-right: -90px;
  }
  .sm-mr-neg-95 {
    margin-right: -95px;
  }
  .sm-mr-neg-100 {
    margin-right: -100px;
  }
  .sm-mr-neg-105 {
    margin-right: -105px;
  }
  .sm-mr-neg-110 {
    margin-right: -110px;
  }
  .sm-mr-neg-115 {
    margin-right: -115px;
  }
  .sm-mr-neg-120 {
    margin-right: -120px;
  }
  .sm-mr-neg-125 {
    margin-right: -125px;
  }
  .sm-mr-neg-130 {
    margin-right: -130px;
  }
  .sm-mr-neg-135 {
    margin-right: -135px;
  }
  .sm-mr-neg-140 {
    margin-right: -140px;
  }
  .sm-mr-neg-145 {
    margin-right: -145px;
  }
  .sm-mr-neg-150 {
    margin-right: -150px;
  }
  .sm-mr-neg-155 {
    margin-right: -155px;
  }
  .sm-mr-neg-160 {
    margin-right: -160px;
  }
  .sm-mr-neg-165 {
    margin-right: -165px;
  }
  .sm-mr-neg-170 {
    margin-right: -170px;
  }
  .sm-mr-neg-175 {
    margin-right: -175px;
  }
  .sm-mr-neg-180 {
    margin-right: -180px;
  }
  .sm-mr-neg-185 {
    margin-right: -185px;
  }
  .sm-mr-neg-190 {
    margin-right: -190px;
  }
  .sm-mr-neg-195 {
    margin-right: -195px;
  }
  .sm-mr-neg-200 {
    margin-right: -200px;
  }
  .sm-mb-neg-0 {
    margin-bottom: 0px;
  }
  .sm-mb-neg-5 {
    margin-bottom: -5px;
  }
  .sm-mb-neg-10 {
    margin-bottom: -10px;
  }
  .sm-mb-neg-15 {
    margin-bottom: -15px;
  }
  .sm-mb-neg-20 {
    margin-bottom: -20px;
  }
  .sm-mb-neg-25 {
    margin-bottom: -25px;
  }
  .sm-mb-neg-30 {
    margin-bottom: -30px;
  }
  .sm-mb-neg-35 {
    margin-bottom: -35px;
  }
  .sm-mb-neg-40 {
    margin-bottom: -40px;
  }
  .sm-mb-neg-45 {
    margin-bottom: -45px;
  }
  .sm-mb-neg-50 {
    margin-bottom: -50px;
  }
  .sm-mb-neg-55 {
    margin-bottom: -55px;
  }
  .sm-mb-neg-60 {
    margin-bottom: -60px;
  }
  .sm-mb-neg-65 {
    margin-bottom: -65px;
  }
  .sm-mb-neg-70 {
    margin-bottom: -70px;
  }
  .sm-mb-neg-75 {
    margin-bottom: -75px;
  }
  .sm-mb-neg-80 {
    margin-bottom: -80px;
  }
  .sm-mb-neg-85 {
    margin-bottom: -85px;
  }
  .sm-mb-neg-90 {
    margin-bottom: -90px;
  }
  .sm-mb-neg-95 {
    margin-bottom: -95px;
  }
  .sm-mb-neg-100 {
    margin-bottom: -100px;
  }
  .sm-mb-neg-105 {
    margin-bottom: -105px;
  }
  .sm-mb-neg-110 {
    margin-bottom: -110px;
  }
  .sm-mb-neg-115 {
    margin-bottom: -115px;
  }
  .sm-mb-neg-120 {
    margin-bottom: -120px;
  }
  .sm-mb-neg-125 {
    margin-bottom: -125px;
  }
  .sm-mb-neg-130 {
    margin-bottom: -130px;
  }
  .sm-mb-neg-135 {
    margin-bottom: -135px;
  }
  .sm-mb-neg-140 {
    margin-bottom: -140px;
  }
  .sm-mb-neg-145 {
    margin-bottom: -145px;
  }
  .sm-mb-neg-150 {
    margin-bottom: -150px;
  }
  .sm-mb-neg-155 {
    margin-bottom: -155px;
  }
  .sm-mb-neg-160 {
    margin-bottom: -160px;
  }
  .sm-mb-neg-165 {
    margin-bottom: -165px;
  }
  .sm-mb-neg-170 {
    margin-bottom: -170px;
  }
  .sm-mb-neg-175 {
    margin-bottom: -175px;
  }
  .sm-mb-neg-180 {
    margin-bottom: -180px;
  }
  .sm-mb-neg-185 {
    margin-bottom: -185px;
  }
  .sm-mb-neg-190 {
    margin-bottom: -190px;
  }
  .sm-mb-neg-195 {
    margin-bottom: -195px;
  }
  .sm-mb-neg-200 {
    margin-bottom: -200px;
  }
  .sm-ml-neg-0 {
    margin-left: 0px;
  }
  .sm-ml-neg-5 {
    margin-left: -5px;
  }
  .sm-ml-neg-10 {
    margin-left: -10px;
  }
  .sm-ml-neg-15 {
    margin-left: -15px;
  }
  .sm-ml-neg-20 {
    margin-left: -20px;
  }
  .sm-ml-neg-25 {
    margin-left: -25px;
  }
  .sm-ml-neg-30 {
    margin-left: -30px;
  }
  .sm-ml-neg-35 {
    margin-left: -35px;
  }
  .sm-ml-neg-40 {
    margin-left: -40px;
  }
  .sm-ml-neg-45 {
    margin-left: -45px;
  }
  .sm-ml-neg-50 {
    margin-left: -50px;
  }
  .sm-ml-neg-55 {
    margin-left: -55px;
  }
  .sm-ml-neg-60 {
    margin-left: -60px;
  }
  .sm-ml-neg-65 {
    margin-left: -65px;
  }
  .sm-ml-neg-70 {
    margin-left: -70px;
  }
  .sm-ml-neg-75 {
    margin-left: -75px;
  }
  .sm-ml-neg-80 {
    margin-left: -80px;
  }
  .sm-ml-neg-85 {
    margin-left: -85px;
  }
  .sm-ml-neg-90 {
    margin-left: -90px;
  }
  .sm-ml-neg-95 {
    margin-left: -95px;
  }
  .sm-ml-neg-100 {
    margin-left: -100px;
  }
  .sm-ml-neg-105 {
    margin-left: -105px;
  }
  .sm-ml-neg-110 {
    margin-left: -110px;
  }
  .sm-ml-neg-115 {
    margin-left: -115px;
  }
  .sm-ml-neg-120 {
    margin-left: -120px;
  }
  .sm-ml-neg-125 {
    margin-left: -125px;
  }
  .sm-ml-neg-130 {
    margin-left: -130px;
  }
  .sm-ml-neg-135 {
    margin-left: -135px;
  }
  .sm-ml-neg-140 {
    margin-left: -140px;
  }
  .sm-ml-neg-145 {
    margin-left: -145px;
  }
  .sm-ml-neg-150 {
    margin-left: -150px;
  }
  .sm-ml-neg-155 {
    margin-left: -155px;
  }
  .sm-ml-neg-160 {
    margin-left: -160px;
  }
  .sm-ml-neg-165 {
    margin-left: -165px;
  }
  .sm-ml-neg-170 {
    margin-left: -170px;
  }
  .sm-ml-neg-175 {
    margin-left: -175px;
  }
  .sm-ml-neg-180 {
    margin-left: -180px;
  }
  .sm-ml-neg-185 {
    margin-left: -185px;
  }
  .sm-ml-neg-190 {
    margin-left: -190px;
  }
  .sm-ml-neg-195 {
    margin-left: -195px;
  }
  .sm-ml-neg-200 {
    margin-left: -200px;
  }
  .sm-pt-0 {
    padding-top: 0px;
  }
  .sm-pt-5 {
    padding-top: 5px;
  }
  .sm-pt-10 {
    padding-top: 10px;
  }
  .sm-pt-15 {
    padding-top: 15px;
  }
  .sm-pt-20 {
    padding-top: 20px;
  }
  .sm-pt-25 {
    padding-top: 25px;
  }
  .sm-pt-30 {
    padding-top: 30px;
  }
  .sm-pt-35 {
    padding-top: 35px;
  }
  .sm-pt-40 {
    padding-top: 40px;
  }
  .sm-pt-45 {
    padding-top: 45px;
  }
  .sm-pt-50 {
    padding-top: 50px;
  }
  .sm-pt-55 {
    padding-top: 55px;
  }
  .sm-pt-60 {
    padding-top: 60px;
  }
  .sm-pt-65 {
    padding-top: 65px;
  }
  .sm-pt-70 {
    padding-top: 70px;
  }
  .sm-pt-75 {
    padding-top: 75px;
  }
  .sm-pt-80 {
    padding-top: 80px;
  }
  .sm-pt-85 {
    padding-top: 85px;
  }
  .sm-pt-90 {
    padding-top: 90px;
  }
  .sm-pt-95 {
    padding-top: 95px;
  }
  .sm-pt-100 {
    padding-top: 100px;
  }
  .sm-pt-105 {
    padding-top: 105px;
  }
  .sm-pt-110 {
    padding-top: 110px;
  }
  .sm-pt-115 {
    padding-top: 115px;
  }
  .sm-pt-120 {
    padding-top: 120px;
  }
  .sm-pt-125 {
    padding-top: 125px;
  }
  .sm-pt-130 {
    padding-top: 130px;
  }
  .sm-pt-135 {
    padding-top: 135px;
  }
  .sm-pt-140 {
    padding-top: 140px;
  }
  .sm-pt-145 {
    padding-top: 145px;
  }
  .sm-pt-150 {
    padding-top: 150px;
  }
  .sm-pt-155 {
    padding-top: 155px;
  }
  .sm-pt-160 {
    padding-top: 160px;
  }
  .sm-pt-165 {
    padding-top: 165px;
  }
  .sm-pt-170 {
    padding-top: 170px;
  }
  .sm-pt-175 {
    padding-top: 175px;
  }
  .sm-pt-180 {
    padding-top: 180px;
  }
  .sm-pt-185 {
    padding-top: 185px;
  }
  .sm-pt-190 {
    padding-top: 190px;
  }
  .sm-pt-195 {
    padding-top: 195px;
  }
  .sm-pt-200 {
    padding-top: 200px;
  }
  .sm-pr-0 {
    padding-right: 0px;
  }
  .sm-pr-5 {
    padding-right: 5px;
  }
  .sm-pr-10 {
    padding-right: 10px;
  }
  .sm-pr-15 {
    padding-right: 15px;
  }
  .sm-pr-20 {
    padding-right: 20px;
  }
  .sm-pr-25 {
    padding-right: 25px;
  }
  .sm-pr-30 {
    padding-right: 30px;
  }
  .sm-pr-35 {
    padding-right: 35px;
  }
  .sm-pr-40 {
    padding-right: 40px;
  }
  .sm-pr-45 {
    padding-right: 45px;
  }
  .sm-pr-50 {
    padding-right: 50px;
  }
  .sm-pr-55 {
    padding-right: 55px;
  }
  .sm-pr-60 {
    padding-right: 60px;
  }
  .sm-pr-65 {
    padding-right: 65px;
  }
  .sm-pr-70 {
    padding-right: 70px;
  }
  .sm-pr-75 {
    padding-right: 75px;
  }
  .sm-pr-80 {
    padding-right: 80px;
  }
  .sm-pr-85 {
    padding-right: 85px;
  }
  .sm-pr-90 {
    padding-right: 90px;
  }
  .sm-pr-95 {
    padding-right: 95px;
  }
  .sm-pr-100 {
    padding-right: 100px;
  }
  .sm-pr-105 {
    padding-right: 105px;
  }
  .sm-pr-110 {
    padding-right: 110px;
  }
  .sm-pr-115 {
    padding-right: 115px;
  }
  .sm-pr-120 {
    padding-right: 120px;
  }
  .sm-pr-125 {
    padding-right: 125px;
  }
  .sm-pr-130 {
    padding-right: 130px;
  }
  .sm-pr-135 {
    padding-right: 135px;
  }
  .sm-pr-140 {
    padding-right: 140px;
  }
  .sm-pr-145 {
    padding-right: 145px;
  }
  .sm-pr-150 {
    padding-right: 150px;
  }
  .sm-pr-155 {
    padding-right: 155px;
  }
  .sm-pr-160 {
    padding-right: 160px;
  }
  .sm-pr-165 {
    padding-right: 165px;
  }
  .sm-pr-170 {
    padding-right: 170px;
  }
  .sm-pr-175 {
    padding-right: 175px;
  }
  .sm-pr-180 {
    padding-right: 180px;
  }
  .sm-pr-185 {
    padding-right: 185px;
  }
  .sm-pr-190 {
    padding-right: 190px;
  }
  .sm-pr-195 {
    padding-right: 195px;
  }
  .sm-pr-200 {
    padding-right: 200px;
  }
  .sm-pb-0 {
    padding-bottom: 0px;
  }
  .sm-pb-5 {
    padding-bottom: 5px;
  }
  .sm-pb-10 {
    padding-bottom: 10px;
  }
  .sm-pb-15 {
    padding-bottom: 15px;
  }
  .sm-pb-20 {
    padding-bottom: 20px;
  }
  .sm-pb-25 {
    padding-bottom: 25px;
  }
  .sm-pb-30 {
    padding-bottom: 30px;
  }
  .sm-pb-35 {
    padding-bottom: 35px;
  }
  .sm-pb-40 {
    padding-bottom: 40px;
  }
  .sm-pb-45 {
    padding-bottom: 45px;
  }
  .sm-pb-50 {
    padding-bottom: 50px;
  }
  .sm-pb-55 {
    padding-bottom: 55px;
  }
  .sm-pb-60 {
    padding-bottom: 60px;
  }
  .sm-pb-65 {
    padding-bottom: 65px;
  }
  .sm-pb-70 {
    padding-bottom: 70px;
  }
  .sm-pb-75 {
    padding-bottom: 75px;
  }
  .sm-pb-80 {
    padding-bottom: 80px;
  }
  .sm-pb-85 {
    padding-bottom: 85px;
  }
  .sm-pb-90 {
    padding-bottom: 90px;
  }
  .sm-pb-95 {
    padding-bottom: 95px;
  }
  .sm-pb-100 {
    padding-bottom: 100px;
  }
  .sm-pb-105 {
    padding-bottom: 105px;
  }
  .sm-pb-110 {
    padding-bottom: 110px;
  }
  .sm-pb-115 {
    padding-bottom: 115px;
  }
  .sm-pb-120 {
    padding-bottom: 120px;
  }
  .sm-pb-125 {
    padding-bottom: 125px;
  }
  .sm-pb-130 {
    padding-bottom: 130px;
  }
  .sm-pb-135 {
    padding-bottom: 135px;
  }
  .sm-pb-140 {
    padding-bottom: 140px;
  }
  .sm-pb-145 {
    padding-bottom: 145px;
  }
  .sm-pb-150 {
    padding-bottom: 150px;
  }
  .sm-pb-155 {
    padding-bottom: 155px;
  }
  .sm-pb-160 {
    padding-bottom: 160px;
  }
  .sm-pb-165 {
    padding-bottom: 165px;
  }
  .sm-pb-170 {
    padding-bottom: 170px;
  }
  .sm-pb-175 {
    padding-bottom: 175px;
  }
  .sm-pb-180 {
    padding-bottom: 180px;
  }
  .sm-pb-185 {
    padding-bottom: 185px;
  }
  .sm-pb-190 {
    padding-bottom: 190px;
  }
  .sm-pb-195 {
    padding-bottom: 195px;
  }
  .sm-pb-200 {
    padding-bottom: 200px;
  }
  .sm-pl-0 {
    padding-left: 0px;
  }
  .sm-pl-5 {
    padding-left: 5px;
  }
  .sm-pl-10 {
    padding-left: 10px;
  }
  .sm-pl-15 {
    padding-left: 15px;
  }
  .sm-pl-20 {
    padding-left: 20px;
  }
  .sm-pl-25 {
    padding-left: 25px;
  }
  .sm-pl-30 {
    padding-left: 30px;
  }
  .sm-pl-35 {
    padding-left: 35px;
  }
  .sm-pl-40 {
    padding-left: 40px;
  }
  .sm-pl-45 {
    padding-left: 45px;
  }
  .sm-pl-50 {
    padding-left: 50px;
  }
  .sm-pl-55 {
    padding-left: 55px;
  }
  .sm-pl-60 {
    padding-left: 60px;
  }
  .sm-pl-65 {
    padding-left: 65px;
  }
  .sm-pl-70 {
    padding-left: 70px;
  }
  .sm-pl-75 {
    padding-left: 75px;
  }
  .sm-pl-80 {
    padding-left: 80px;
  }
  .sm-pl-85 {
    padding-left: 85px;
  }
  .sm-pl-90 {
    padding-left: 90px;
  }
  .sm-pl-95 {
    padding-left: 95px;
  }
  .sm-pl-100 {
    padding-left: 100px;
  }
  .sm-pl-105 {
    padding-left: 105px;
  }
  .sm-pl-110 {
    padding-left: 110px;
  }
  .sm-pl-115 {
    padding-left: 115px;
  }
  .sm-pl-120 {
    padding-left: 120px;
  }
  .sm-pl-125 {
    padding-left: 125px;
  }
  .sm-pl-130 {
    padding-left: 130px;
  }
  .sm-pl-135 {
    padding-left: 135px;
  }
  .sm-pl-140 {
    padding-left: 140px;
  }
  .sm-pl-145 {
    padding-left: 145px;
  }
  .sm-pl-150 {
    padding-left: 150px;
  }
  .sm-pl-155 {
    padding-left: 155px;
  }
  .sm-pl-160 {
    padding-left: 160px;
  }
  .sm-pl-165 {
    padding-left: 165px;
  }
  .sm-pl-170 {
    padding-left: 170px;
  }
  .sm-pl-175 {
    padding-left: 175px;
  }
  .sm-pl-180 {
    padding-left: 180px;
  }
  .sm-pl-185 {
    padding-left: 185px;
  }
  .sm-pl-190 {
    padding-left: 190px;
  }
  .sm-pl-195 {
    padding-left: 195px;
  }
  .sm-pl-200 {
    padding-left: 200px;
  }
}
@media (max-width: 991.98px) {
  .sm-pt-7 {
    padding-top: 7px;
  }
}

.pos-pt-5 {
  padding-top: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.lg-p-5 {
  padding: 5px;
}

.pr-7 {
  padding-right: 7px;
}

@media (max-width: 767.98px) {
  .mw-20-sm {
    max-width: 20%;
  }
  .mw-30-sm {
    max-width: 30%;
  }
  .mw-40-sm {
    max-width: 40%;
  }
  .mw-50-sm {
    max-width: 50%;
  }
  .mw-60-sm {
    max-width: 60%;
  }
  .mw-70-sm {
    max-width: 70%;
  }
  .mw-80-sm {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .mw-20-md {
    max-width: 20%;
  }
  .mw-30-md {
    max-width: 30%;
  }
  .mw-40-md {
    max-width: 40%;
  }
  .mw-50-md {
    max-width: 50%;
  }
  .mw-60-md {
    max-width: 60%;
  }
  .mw-70-md {
    max-width: 70%;
  }
  .mw-80-md {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .mw-20-lg {
    max-width: 20%;
  }
  .mw-25-lg {
    max-width: 25%;
  }
  .mw-30-lg {
    max-width: 30%;
  }
  .mw-40-lg {
    max-width: 40%;
  }
  .mw-50-lg {
    max-width: 50%;
  }
  .mw-60-lg {
    max-width: 60%;
  }
  .mw-70-lg {
    max-width: 70%;
  }
  .mw-80-lg {
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .mw-20-xl {
    max-width: 20%;
  }
  .mw-30-xl {
    max-width: 30%;
  }
  .mw-40-xl {
    max-width: 40%;
  }
  .mw-50-xl {
    max-width: 50%;
  }
  .mw-60-xl {
    max-width: 60%;
  }
  .mw-65-xl {
    max-width: 65%;
  }
  .mw-70-xl {
    max-width: 70%;
  }
  .mw-80-xl {
    max-width: 80%;
  }
  .mw-90-xl {
    max-width: 90%;
  }
}
@media (min-width: 1400px) {
  .mw-20-xxl {
    max-width: 20%;
  }
  .mw-30-xxl {
    max-width: 30%;
  }
  .mw-40-xxl {
    max-width: 40%;
  }
  .mw-50-xxl {
    max-width: 50%;
  }
  .mw-60-xxl {
    max-width: 60%;
  }
  .mw-70-xxl {
    max-width: 70%;
  }
  .mw-80-xxl {
    max-width: 80%;
  }
}
@media (min-width: 1600px) {
  .mw-20-xxxl {
    max-width: 20%;
  }
  .mw-30-xxxl {
    max-width: 30%;
  }
  .mw-40-xxxl {
    max-width: 40%;
  }
  .mw-50-xxxl {
    max-width: 50%;
  }
  .mw-60-xxxl {
    max-width: 60%;
  }
  .mw-70-xxxl {
    max-width: 70%;
  }
  .mw-80-xxxl {
    max-width: 80%;
  }
}
@media (max-width: 767.98px) {
  .mw-65-md-down {
    max-width: 65%;
  }
}
@media (min-width: 992px) {
  .mt-pull-30-lg {
    margin-top: -30px;
  }
}

@media (min-width: 992px) {
  .mt-pull-40-lg {
    margin-top: -40px;
  }
}

@media (min-width: 992px) {
  .mt-pull-50-lg {
    margin-top: -50px;
  }
}

@media (min-width: 992px) {
  .mt-pull-70-lg {
    margin-top: -70px;
  }
}

.height-100 {
  height: 100%;
}

.width-full {
  width: 100%;
}

.fill-height {
  flex: 1;
}

@media (max-width: 991.98px) {
  .mw-50-down-lg {
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .xl-mxw-360 {
    max-width: 360px;
  }
}

@media (min-width: 1400px) {
  .xl-w-460 {
    width: 460px;
  }
}

.mw-20 {
  max-width: 20%;
}

.mh-80 {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .w-xxl-230 {
    width: 230px;
  }
}

.mw-120 {
  max-width: 120px;
}

.mw-220 {
  max-width: 220px;
}

.mw-270 {
  max-width: 270px;
}

.mw-360 {
  max-width: 360px;
}

.mw-370 {
  max-width: 370px;
}

.mw-450 {
  max-width: 450px;
}

.mw-600 {
  max-width: 600px;
}

.mw-640 {
  max-width: 640px;
}

.mw-720 {
  max-width: 720px;
}

@media (min-width: 992px) {
  .w-220 {
    max-width: 220px;
  }
}

.w-300 {
  width: 300px;
}

@media (min-width: 992px) {
  .w-360 {
    width: 360px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .md-between-35 {
    max-width: 35%;
  }
}

@media (min-width: 992px) {
  .lg-mw-240 {
    width: 240px;
  }
}

@media (min-width: 992px) {
  .lg-mw-270 {
    width: 270px;
  }
}

@media (min-width: 1200px) {
  .xl-mw-240 {
    max-width: 240px;
  }
}

@media (min-width: 1200px) {
  .xl-mw-290 {
    max-width: 290px;
  }
}

@media (min-width: 992px) {
  .lg-mw-300 {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .lg-mw-340 {
    width: 340px;
  }
}

@media (min-width: 992px) {
  .lg-mw-360 {
    width: 360px;
  }
}

@media (min-width: 992px) {
  .lg-mw-390 {
    width: 390px;
  }
}

@media (min-width: 992px) {
  .lg-w-420 {
    width: 420px;
  }
}

@media (min-width: 992px) {
  .lg-mw-420 {
    max-width: 420px;
  }
}

@media (min-width: 992px) {
  .lg-mw-430 {
    max-width: 430px;
  }
}

@media (min-width: 992px) {
  .lg-mw-450 {
    max-width: 450px;
  }
}

@media (min-width: 992px) {
  .lg-mw-500 {
    max-width: 500px;
  }
}

@media (min-width: 992px) {
  .lg-mw-510 {
    max-width: 510px;
  }
}

@media (min-width: 992px) {
  .lg-mw-550 {
    max-width: 550px;
  }
}

@media (min-width: 992px) {
  .lg-mw-640 {
    max-width: 640px;
  }
}

@media (min-width: 992px) {
  .lg-mxw-225 {
    max-width: 225px;
  }
}

@media (min-width: 992px) {
  .lg-mxw-260 {
    max-width: 260px;
  }
}

@media (min-width: 992px) {
  .lg-mxw-270 {
    max-width: 270px;
  }
}

@media (min-width: 992px) {
  .lg-mxw-300 {
    max-width: 300px;
  }
}

@media (min-width: 768px) {
  .lg-mxw-345 {
    width: 345px;
  }
}

@media (min-width: 992px) {
  .lg-mxw-390 {
    max-width: 390px;
  }
}

@media (min-width: 992px) {
  .lg-mw-570 {
    max-width: 570px;
  }
}

@media (min-width: 992px) {
  .lg-mw-600 {
    max-width: 600px;
  }
}

@media (min-width: 992px) {
  .lg-mw-870 {
    max-width: 870px;
  }
}

@media (min-width: 992px) {
  .xxl-mxw-760 {
    max-width: 760px;
  }
}

@media (max-width: 592px) {
  .sm-mnw-115 img {
    width: 150px;
  }
}
@media (max-width: 400px) {
  .sm-mnw-115 img {
    width: 115px;
  }
}

@media (max-width: 991.98px) {
  .sm-mw-50 {
    max-width: 50%;
  }
}

@media (max-width: 991.98px) {
  .sm-height-500 {
    height: 500px;
  }
}

@media (max-width: 991.98px) {
  .sm-height-600 {
    height: 600px;
  }
}

@media (max-width: 991.98px) {
  .sm-mxh-100 {
    max-height: 100px;
  }
}

@media (min-width: 992px) {
  .lg-mxh-370 {
    max-height: 370px;
  }
}

@media (max-width: 991.98px) {
  .md-mw-full {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .mw-485 {
    max-width: 425px;
  }
}
@media (min-width: 1400px) {
  .mw-485 {
    max-width: 485px;
  }
}
@media (max-width: 1199.98px) {
  .mw-485 {
    max-width: 485px;
  }
}
@media (max-width: 991.98px) {
  .mw-485 {
    width: 100%;
  }
}

.mw-660 {
  max-width: 660px;
}

.mnh-50 {
  min-height: 50px;
}

/*Text mixin options*/
.text-base, .gfield .gfield_required_text,
.gfield .gfield_required_custom {
  font-family: "Metropolis", sans-serif;
}

.text-medium, .gfield.gfield--type-address.gfield_contains_required .gform-field-label--type-sub, .gfield .gfield_label, .gfield .gsection_title {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
}

.text-18-book {
  font-family: "Metropolis", sans-serif;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .text-18-book {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .text-18-book {
    font-size: 2rem;
  }
}

.text-bold {
  font-family: "GothamSSm-Bold", sans-serif;
}

.text-big-base {
  font-family: "Metropolis", sans-serif;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .text-big-base {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .text-big-base {
    font-size: 2rem;
  }
}

.text-8 {
  font-size: 1rem;
  display: block;
}

.text-9 {
  font-size: 1.1rem;
  display: block;
}

.text-10 {
  font-size: 1.2rem;
  display: block;
}

.text-11 {
  font-size: 1.3rem;
  display: block;
}

.text-12 {
  font-size: 1.4rem;
  display: block;
}

.text-13 {
  font-size: 1.5rem;
  display: block;
}

.text-14 {
  font-size: 1.6rem;
  display: block;
}

.text-15 {
  font-size: 1.7rem;
  display: block;
}

.text-16 {
  font-size: 1.8rem;
  display: block;
}

.text-17 {
  font-size: 1.9rem;
  display: block;
}

.text-18 {
  font-size: 2rem;
  display: block;
}

.text-19 {
  font-size: 2.1rem;
  display: block;
}

.text-20 {
  font-size: 2.2rem;
  display: block;
}

.text-21 {
  font-size: 2.3rem;
  display: block;
}

.text-22 {
  font-size: 2.4rem;
  display: block;
}

.text-23 {
  font-size: 2.5rem;
  display: block;
}

.text-24 {
  font-size: 2.6rem;
  display: block;
}

@media (min-width: 992px) {
  .lg-text-8 {
    font-size: 1rem;
    display: block;
  }
  .lg-text-9 {
    font-size: 1.1rem;
    display: block;
  }
  .lg-text-10 {
    font-size: 1.2rem;
    display: block;
  }
  .lg-text-11 {
    font-size: 1.3rem;
    display: block;
  }
  .lg-text-12 {
    font-size: 1.4rem;
    display: block;
  }
  .lg-text-13 {
    font-size: 1.5rem;
    display: block;
  }
  .lg-text-14 {
    font-size: 1.6rem;
    display: block;
  }
  .lg-text-15 {
    font-size: 1.7rem;
    display: block;
  }
  .lg-text-16 {
    font-size: 1.8rem;
    display: block;
  }
  .lg-text-17 {
    font-size: 1.9rem;
    display: block;
  }
  .lg-text-18 {
    font-size: 2rem;
    display: block;
  }
  .lg-text-19 {
    font-size: 2.1rem;
    display: block;
  }
  .lg-text-20 {
    font-size: 2.2rem;
    display: block;
  }
  .lg-text-21 {
    font-size: 2.3rem;
    display: block;
  }
  .lg-text-22 {
    font-size: 2.4rem;
    display: block;
  }
  .lg-text-23 {
    font-size: 2.5rem;
    display: block;
  }
  .lg-text-24 {
    font-size: 2.6rem;
    display: block;
  }
}
@media (max-width: 991.98px) {
  .sm-text-8 {
    font-size: 1rem;
    display: block;
  }
  .sm-text-9 {
    font-size: 1.1rem;
    display: block;
  }
  .sm-text-10 {
    font-size: 1.2rem;
    display: block;
  }
  .sm-text-11 {
    font-size: 1.3rem;
    display: block;
  }
  .sm-text-12 {
    font-size: 1.4rem;
    display: block;
  }
  .sm-text-13 {
    font-size: 1.5rem;
    display: block;
  }
  .sm-text-14 {
    font-size: 1.6rem;
    display: block;
  }
  .sm-text-15 {
    font-size: 1.7rem;
    display: block;
  }
  .sm-text-16 {
    font-size: 1.8rem;
    display: block;
  }
  .sm-text-17 {
    font-size: 1.9rem;
    display: block;
  }
  .sm-text-18 {
    font-size: 2rem;
    display: block;
  }
  .sm-text-19 {
    font-size: 2.1rem;
    display: block;
  }
  .sm-text-20 {
    font-size: 2.2rem;
    display: block;
  }
  .sm-text-21 {
    font-size: 2.3rem;
    display: block;
  }
  .sm-text-22 {
    font-size: 2.4rem;
    display: block;
  }
  .sm-text-23 {
    font-size: 2.5rem;
    display: block;
  }
  .sm-text-24 {
    font-size: 2.6rem;
    display: block;
  }
}
.text-height-16 {
  line-height: 1.6;
}

.text-height-20 {
  line-height: 2;
}

.text-height-14 {
  line-height: 1.3;
}

.text-height-165 {
  line-height: 1.65;
}

.text-12-medium {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  display: block;
  font-size: 1.4rem;
  font-weight: 350;
}

.text-15-medium {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  display: block;
  font-size: 1.7rem;
  font-weight: 350;
}

/*Text style options*/
.letter-spacing-0 {
  letter-spacing: 0rem;
}

.letter-spacing-1 {
  letter-spacing: 0.01rem;
}

.letter-spacing-2 {
  letter-spacing: 0.02rem;
}

.letter-spacing-3 {
  letter-spacing: 0.03rem;
}

.letter-spacing-4 {
  letter-spacing: 0.04rem;
}

.letter-spacing-5 {
  letter-spacing: 0.05rem;
}

.letter-spacing-6 {
  letter-spacing: 0.06rem;
}

.letter-spacing-7 {
  letter-spacing: 0.07rem;
}

.letter-spacing-8 {
  letter-spacing: 0.08rem;
}

.letter-spacing-9 {
  letter-spacing: 0.09rem;
}

.letter-spacing-10 {
  letter-spacing: 0.1rem;
}

.letter-spacing-11 {
  letter-spacing: 0.11rem;
}

.letter-spacing-12 {
  letter-spacing: 0.12rem;
}

.letter-spacing-13 {
  letter-spacing: 0.13rem;
}

.letter-spacing-14 {
  letter-spacing: 0.14rem;
}

.letter-spacing-15 {
  letter-spacing: 0.15rem;
}

.letter-spacing-16 {
  letter-spacing: 0.16rem;
}

.letter-spacing-17 {
  letter-spacing: 0.17rem;
}

.letter-spacing-18 {
  letter-spacing: 0.18rem;
}

.letter-spacing-19 {
  letter-spacing: 0.19rem;
}

.letter-spacing-20 {
  letter-spacing: 0.2rem;
}

.letter-spacing-21 {
  letter-spacing: 0.21rem;
}

.letter-spacing-22 {
  letter-spacing: 0.22rem;
}

.letter-spacing-23 {
  letter-spacing: 0.23rem;
}

.letter-spacing-24 {
  letter-spacing: 0.24rem;
}

.letter-spacing-25 {
  letter-spacing: 0.25rem;
}

.letter-spacing-26 {
  letter-spacing: 0.26rem;
}

.letter-spacing-27 {
  letter-spacing: 0.27rem;
}

.letter-spacing-28 {
  letter-spacing: 0.28rem;
}

.letter-spacing-29 {
  letter-spacing: 0.29rem;
}

.letter-spacing-30 {
  letter-spacing: 0.3rem;
}

.letter-spacing-31 {
  letter-spacing: 0.31rem;
}

.letter-spacing-32 {
  letter-spacing: 0.32rem;
}

.letter-spacing-33 {
  letter-spacing: 0.33rem;
}

.letter-spacing-34 {
  letter-spacing: 0.34rem;
}

.letter-spacing-35 {
  letter-spacing: 0.35rem;
}

.letter-spacing-36 {
  letter-spacing: 0.36rem;
}

.letter-spacing-37 {
  letter-spacing: 0.37rem;
}

.letter-spacing-38 {
  letter-spacing: 0.38rem;
}

.letter-spacing-39 {
  letter-spacing: 0.39rem;
}

.letter-spacing-40 {
  letter-spacing: 0.4rem;
}

.letter-spacing-41 {
  letter-spacing: 0.41rem;
}

.letter-spacing-42 {
  letter-spacing: 0.42rem;
}

.letter-spacing-43 {
  letter-spacing: 0.43rem;
}

.letter-spacing-44 {
  letter-spacing: 0.44rem;
}

.letter-spacing-45 {
  letter-spacing: 0.45rem;
}

.letter-spacing-46 {
  letter-spacing: 0.46rem;
}

.letter-spacing-47 {
  letter-spacing: 0.47rem;
}

.letter-spacing-48 {
  letter-spacing: 0.48rem;
}

.letter-spacing-49 {
  letter-spacing: 0.49rem;
}

.letter-spacing-50 {
  letter-spacing: 0.5rem;
}

.letter-spacing-51 {
  letter-spacing: 0.51rem;
}

.letter-spacing-52 {
  letter-spacing: 0.52rem;
}

.letter-spacing-53 {
  letter-spacing: 0.53rem;
}

.letter-spacing-54 {
  letter-spacing: 0.54rem;
}

.letter-spacing-55 {
  letter-spacing: 0.55rem;
}

.letter-spacing-56 {
  letter-spacing: 0.56rem;
}

.letter-spacing-57 {
  letter-spacing: 0.57rem;
}

.letter-spacing-58 {
  letter-spacing: 0.58rem;
}

.letter-spacing-59 {
  letter-spacing: 0.59rem;
}

.letter-spacing-60 {
  letter-spacing: 0.6rem;
}

.letter-spacing-61 {
  letter-spacing: 0.61rem;
}

.letter-spacing-62 {
  letter-spacing: 0.62rem;
}

.letter-spacing-63 {
  letter-spacing: 0.63rem;
}

.letter-spacing-64 {
  letter-spacing: 0.64rem;
}

.letter-spacing-65 {
  letter-spacing: 0.65rem;
}

.letter-spacing-66 {
  letter-spacing: 0.66rem;
}

.letter-spacing-67 {
  letter-spacing: 0.67rem;
}

.letter-spacing-68 {
  letter-spacing: 0.68rem;
}

.letter-spacing-69 {
  letter-spacing: 0.69rem;
}

.letter-spacing-70 {
  letter-spacing: 0.7rem;
}

.letter-spacing-71 {
  letter-spacing: 0.71rem;
}

.letter-spacing-72 {
  letter-spacing: 0.72rem;
}

.letter-spacing-73 {
  letter-spacing: 0.73rem;
}

.letter-spacing-74 {
  letter-spacing: 0.74rem;
}

.letter-spacing-75 {
  letter-spacing: 0.75rem;
}

.letter-spacing-76 {
  letter-spacing: 0.76rem;
}

.letter-spacing-77 {
  letter-spacing: 0.77rem;
}

.letter-spacing-78 {
  letter-spacing: 0.78rem;
}

.letter-spacing-79 {
  letter-spacing: 0.79rem;
}

.letter-spacing-80 {
  letter-spacing: 0.8rem;
}

.letter-spacing-81 {
  letter-spacing: 0.81rem;
}

.letter-spacing-82 {
  letter-spacing: 0.82rem;
}

.letter-spacing-83 {
  letter-spacing: 0.83rem;
}

.letter-spacing-84 {
  letter-spacing: 0.84rem;
}

.letter-spacing-85 {
  letter-spacing: 0.85rem;
}

.letter-spacing-86 {
  letter-spacing: 0.86rem;
}

.letter-spacing-87 {
  letter-spacing: 0.87rem;
}

.letter-spacing-88 {
  letter-spacing: 0.88rem;
}

.letter-spacing-89 {
  letter-spacing: 0.89rem;
}

.letter-spacing-90 {
  letter-spacing: 0.9rem;
}

.letter-spacing-91 {
  letter-spacing: 0.91rem;
}

.letter-spacing-92 {
  letter-spacing: 0.92rem;
}

.letter-spacing-93 {
  letter-spacing: 0.93rem;
}

.letter-spacing-94 {
  letter-spacing: 0.94rem;
}

.letter-spacing-95 {
  letter-spacing: 0.95rem;
}

.letter-spacing-96 {
  letter-spacing: 0.96rem;
}

.letter-spacing-97 {
  letter-spacing: 0.97rem;
}

.letter-spacing-98 {
  letter-spacing: 0.98rem;
}

.letter-spacing-99 {
  letter-spacing: 0.99rem;
}

.letter-spacing-100 {
  letter-spacing: 1rem;
}

.letter-spacing-101 {
  letter-spacing: 1.01rem;
}

.letter-spacing-102 {
  letter-spacing: 1.02rem;
}

.letter-spacing-103 {
  letter-spacing: 1.03rem;
}

.letter-spacing-104 {
  letter-spacing: 1.04rem;
}

.letter-spacing-105 {
  letter-spacing: 1.05rem;
}

.letter-spacing-106 {
  letter-spacing: 1.06rem;
}

.letter-spacing-107 {
  letter-spacing: 1.07rem;
}

.letter-spacing-108 {
  letter-spacing: 1.08rem;
}

.letter-spacing-109 {
  letter-spacing: 1.09rem;
}

.letter-spacing-110 {
  letter-spacing: 1.1rem;
}

.letter-spacing-111 {
  letter-spacing: 1.11rem;
}

.letter-spacing-112 {
  letter-spacing: 1.12rem;
}

.letter-spacing-113 {
  letter-spacing: 1.13rem;
}

.letter-spacing-114 {
  letter-spacing: 1.14rem;
}

.letter-spacing-115 {
  letter-spacing: 1.15rem;
}

.letter-spacing-116 {
  letter-spacing: 1.16rem;
}

.letter-spacing-117 {
  letter-spacing: 1.17rem;
}

.letter-spacing-118 {
  letter-spacing: 1.18rem;
}

.letter-spacing-119 {
  letter-spacing: 1.19rem;
}

.letter-spacing-120 {
  letter-spacing: 1.2rem;
}

.letter-spacing-121 {
  letter-spacing: 1.21rem;
}

.letter-spacing-122 {
  letter-spacing: 1.22rem;
}

.letter-spacing-123 {
  letter-spacing: 1.23rem;
}

.letter-spacing-124 {
  letter-spacing: 1.24rem;
}

.letter-spacing-125 {
  letter-spacing: 1.25rem;
}

.letter-spacing-126 {
  letter-spacing: 1.26rem;
}

.letter-spacing-127 {
  letter-spacing: 1.27rem;
}

.letter-spacing-128 {
  letter-spacing: 1.28rem;
}

.letter-spacing-129 {
  letter-spacing: 1.29rem;
}

.letter-spacing-130 {
  letter-spacing: 1.3rem;
}

.letter-spacing-131 {
  letter-spacing: 1.31rem;
}

.letter-spacing-132 {
  letter-spacing: 1.32rem;
}

.letter-spacing-133 {
  letter-spacing: 1.33rem;
}

.letter-spacing-134 {
  letter-spacing: 1.34rem;
}

.letter-spacing-135 {
  letter-spacing: 1.35rem;
}

.letter-spacing-136 {
  letter-spacing: 1.36rem;
}

.letter-spacing-137 {
  letter-spacing: 1.37rem;
}

.letter-spacing-138 {
  letter-spacing: 1.38rem;
}

.letter-spacing-139 {
  letter-spacing: 1.39rem;
}

.letter-spacing-140 {
  letter-spacing: 1.4rem;
}

.letter-spacing-141 {
  letter-spacing: 1.41rem;
}

.letter-spacing-142 {
  letter-spacing: 1.42rem;
}

.letter-spacing-143 {
  letter-spacing: 1.43rem;
}

.letter-spacing-144 {
  letter-spacing: 1.44rem;
}

.letter-spacing-145 {
  letter-spacing: 1.45rem;
}

.letter-spacing-146 {
  letter-spacing: 1.46rem;
}

.letter-spacing-147 {
  letter-spacing: 1.47rem;
}

.letter-spacing-148 {
  letter-spacing: 1.48rem;
}

.letter-spacing-149 {
  letter-spacing: 1.49rem;
}

.letter-spacing-150 {
  letter-spacing: 1.5rem;
}

.letter-spacing-151 {
  letter-spacing: 1.51rem;
}

.letter-spacing-152 {
  letter-spacing: 1.52rem;
}

.letter-spacing-153 {
  letter-spacing: 1.53rem;
}

.letter-spacing-154 {
  letter-spacing: 1.54rem;
}

.letter-spacing-155 {
  letter-spacing: 1.55rem;
}

.letter-spacing-156 {
  letter-spacing: 1.56rem;
}

.letter-spacing-157 {
  letter-spacing: 1.57rem;
}

.letter-spacing-158 {
  letter-spacing: 1.58rem;
}

.letter-spacing-159 {
  letter-spacing: 1.59rem;
}

.letter-spacing-160 {
  letter-spacing: 1.6rem;
}

.letter-spacing-161 {
  letter-spacing: 1.61rem;
}

.letter-spacing-162 {
  letter-spacing: 1.62rem;
}

.letter-spacing-163 {
  letter-spacing: 1.63rem;
}

.letter-spacing-164 {
  letter-spacing: 1.64rem;
}

.letter-spacing-165 {
  letter-spacing: 1.65rem;
}

.letter-spacing-166 {
  letter-spacing: 1.66rem;
}

.letter-spacing-167 {
  letter-spacing: 1.67rem;
}

.letter-spacing-168 {
  letter-spacing: 1.68rem;
}

.letter-spacing-169 {
  letter-spacing: 1.69rem;
}

.letter-spacing-170 {
  letter-spacing: 1.7rem;
}

.letter-spacing-171 {
  letter-spacing: 1.71rem;
}

.letter-spacing-172 {
  letter-spacing: 1.72rem;
}

.letter-spacing-173 {
  letter-spacing: 1.73rem;
}

.letter-spacing-174 {
  letter-spacing: 1.74rem;
}

.letter-spacing-175 {
  letter-spacing: 1.75rem;
}

.letter-spacing-176 {
  letter-spacing: 1.76rem;
}

.letter-spacing-177 {
  letter-spacing: 1.77rem;
}

.letter-spacing-178 {
  letter-spacing: 1.78rem;
}

.letter-spacing-179 {
  letter-spacing: 1.79rem;
}

.letter-spacing-180 {
  letter-spacing: 1.8rem;
}

.letter-spacing-181 {
  letter-spacing: 1.81rem;
}

.letter-spacing-182 {
  letter-spacing: 1.82rem;
}

.letter-spacing-183 {
  letter-spacing: 1.83rem;
}

.letter-spacing-184 {
  letter-spacing: 1.84rem;
}

.letter-spacing-185 {
  letter-spacing: 1.85rem;
}

.letter-spacing-186 {
  letter-spacing: 1.86rem;
}

.letter-spacing-187 {
  letter-spacing: 1.87rem;
}

.letter-spacing-188 {
  letter-spacing: 1.88rem;
}

.letter-spacing-189 {
  letter-spacing: 1.89rem;
}

.letter-spacing-190 {
  letter-spacing: 1.9rem;
}

.letter-spacing-191 {
  letter-spacing: 1.91rem;
}

.letter-spacing-192 {
  letter-spacing: 1.92rem;
}

.letter-spacing-193 {
  letter-spacing: 1.93rem;
}

.letter-spacing-194 {
  letter-spacing: 1.94rem;
}

.letter-spacing-195 {
  letter-spacing: 1.95rem;
}

.letter-spacing-196 {
  letter-spacing: 1.96rem;
}

.letter-spacing-197 {
  letter-spacing: 1.97rem;
}

.letter-spacing-198 {
  letter-spacing: 1.98rem;
}

.letter-spacing-199 {
  letter-spacing: 1.99rem;
}

.letter-spacing-200 {
  letter-spacing: 2rem;
}

.letter-spacing-201 {
  letter-spacing: 2.01rem;
}

.letter-spacing-202 {
  letter-spacing: 2.02rem;
}

.letter-spacing-203 {
  letter-spacing: 2.03rem;
}

.letter-spacing-204 {
  letter-spacing: 2.04rem;
}

.letter-spacing-205 {
  letter-spacing: 2.05rem;
}

.letter-spacing-206 {
  letter-spacing: 2.06rem;
}

.letter-spacing-207 {
  letter-spacing: 2.07rem;
}

.letter-spacing-208 {
  letter-spacing: 2.08rem;
}

.letter-spacing-209 {
  letter-spacing: 2.09rem;
}

.letter-spacing-210 {
  letter-spacing: 2.1rem;
}

.letter-spacing-211 {
  letter-spacing: 2.11rem;
}

.letter-spacing-212 {
  letter-spacing: 2.12rem;
}

.letter-spacing-213 {
  letter-spacing: 2.13rem;
}

.letter-spacing-214 {
  letter-spacing: 2.14rem;
}

.letter-spacing-215 {
  letter-spacing: 2.15rem;
}

.letter-spacing-216 {
  letter-spacing: 2.16rem;
}

.letter-spacing-217 {
  letter-spacing: 2.17rem;
}

.letter-spacing-218 {
  letter-spacing: 2.18rem;
}

.letter-spacing-219 {
  letter-spacing: 2.19rem;
}

.letter-spacing-220 {
  letter-spacing: 2.2rem;
}

.letter-spacing-221 {
  letter-spacing: 2.21rem;
}

.letter-spacing-222 {
  letter-spacing: 2.22rem;
}

.letter-spacing-223 {
  letter-spacing: 2.23rem;
}

.letter-spacing-224 {
  letter-spacing: 2.24rem;
}

.letter-spacing-225 {
  letter-spacing: 2.25rem;
}

.letter-spacing-226 {
  letter-spacing: 2.26rem;
}

.letter-spacing-227 {
  letter-spacing: 2.27rem;
}

.letter-spacing-228 {
  letter-spacing: 2.28rem;
}

.letter-spacing-229 {
  letter-spacing: 2.29rem;
}

.letter-spacing-230 {
  letter-spacing: 2.3rem;
}

.letter-spacing-231 {
  letter-spacing: 2.31rem;
}

.letter-spacing-232 {
  letter-spacing: 2.32rem;
}

.letter-spacing-233 {
  letter-spacing: 2.33rem;
}

.letter-spacing-234 {
  letter-spacing: 2.34rem;
}

.letter-spacing-235 {
  letter-spacing: 2.35rem;
}

.letter-spacing-236 {
  letter-spacing: 2.36rem;
}

.letter-spacing-237 {
  letter-spacing: 2.37rem;
}

.letter-spacing-238 {
  letter-spacing: 2.38rem;
}

.letter-spacing-239 {
  letter-spacing: 2.39rem;
}

.letter-spacing-240 {
  letter-spacing: 2.4rem;
}

.letter-spacing-241 {
  letter-spacing: 2.41rem;
}

.letter-spacing-242 {
  letter-spacing: 2.42rem;
}

.letter-spacing-243 {
  letter-spacing: 2.43rem;
}

.letter-spacing-244 {
  letter-spacing: 2.44rem;
}

.letter-spacing-245 {
  letter-spacing: 2.45rem;
}

.letter-spacing-246 {
  letter-spacing: 2.46rem;
}

.letter-spacing-247 {
  letter-spacing: 2.47rem;
}

.letter-spacing-248 {
  letter-spacing: 2.48rem;
}

.letter-spacing-249 {
  letter-spacing: 2.49rem;
}

.letter-spacing-250 {
  letter-spacing: 2.5rem;
}

.letter-spacing-251 {
  letter-spacing: 2.51rem;
}

.letter-spacing-252 {
  letter-spacing: 2.52rem;
}

.letter-spacing-253 {
  letter-spacing: 2.53rem;
}

.letter-spacing-254 {
  letter-spacing: 2.54rem;
}

.letter-spacing-255 {
  letter-spacing: 2.55rem;
}

.letter-spacing-256 {
  letter-spacing: 2.56rem;
}

.letter-spacing-257 {
  letter-spacing: 2.57rem;
}

.letter-spacing-258 {
  letter-spacing: 2.58rem;
}

.letter-spacing-259 {
  letter-spacing: 2.59rem;
}

.letter-spacing-260 {
  letter-spacing: 2.6rem;
}

.letter-spacing-261 {
  letter-spacing: 2.61rem;
}

.letter-spacing-262 {
  letter-spacing: 2.62rem;
}

.letter-spacing-263 {
  letter-spacing: 2.63rem;
}

.letter-spacing-264 {
  letter-spacing: 2.64rem;
}

.letter-spacing-265 {
  letter-spacing: 2.65rem;
}

.letter-spacing-266 {
  letter-spacing: 2.66rem;
}

.letter-spacing-267 {
  letter-spacing: 2.67rem;
}

.letter-spacing-268 {
  letter-spacing: 2.68rem;
}

.letter-spacing-269 {
  letter-spacing: 2.69rem;
}

.letter-spacing-270 {
  letter-spacing: 2.7rem;
}

.letter-spacing-271 {
  letter-spacing: 2.71rem;
}

.letter-spacing-272 {
  letter-spacing: 2.72rem;
}

.letter-spacing-273 {
  letter-spacing: 2.73rem;
}

.letter-spacing-274 {
  letter-spacing: 2.74rem;
}

.letter-spacing-275 {
  letter-spacing: 2.75rem;
}

.letter-spacing-276 {
  letter-spacing: 2.76rem;
}

.letter-spacing-277 {
  letter-spacing: 2.77rem;
}

.letter-spacing-278 {
  letter-spacing: 2.78rem;
}

.letter-spacing-279 {
  letter-spacing: 2.79rem;
}

.letter-spacing-280 {
  letter-spacing: 2.8rem;
}

.letter-spacing-281 {
  letter-spacing: 2.81rem;
}

.letter-spacing-282 {
  letter-spacing: 2.82rem;
}

.letter-spacing-283 {
  letter-spacing: 2.83rem;
}

.letter-spacing-284 {
  letter-spacing: 2.84rem;
}

.letter-spacing-285 {
  letter-spacing: 2.85rem;
}

.letter-spacing-286 {
  letter-spacing: 2.86rem;
}

.letter-spacing-287 {
  letter-spacing: 2.87rem;
}

.letter-spacing-288 {
  letter-spacing: 2.88rem;
}

.letter-spacing-289 {
  letter-spacing: 2.89rem;
}

.letter-spacing-290 {
  letter-spacing: 2.9rem;
}

.letter-spacing-291 {
  letter-spacing: 2.91rem;
}

.letter-spacing-292 {
  letter-spacing: 2.92rem;
}

.letter-spacing-293 {
  letter-spacing: 2.93rem;
}

.letter-spacing-294 {
  letter-spacing: 2.94rem;
}

.letter-spacing-295 {
  letter-spacing: 2.95rem;
}

.letter-spacing-296 {
  letter-spacing: 2.96rem;
}

.letter-spacing-297 {
  letter-spacing: 2.97rem;
}

.letter-spacing-298 {
  letter-spacing: 2.98rem;
}

.letter-spacing-299 {
  letter-spacing: 2.99rem;
}

.letter-spacing-300 {
  letter-spacing: 3rem;
}

.letter-spacing-301 {
  letter-spacing: 3.01rem;
}

.letter-spacing-302 {
  letter-spacing: 3.02rem;
}

.letter-spacing-303 {
  letter-spacing: 3.03rem;
}

.letter-spacing-304 {
  letter-spacing: 3.04rem;
}

.letter-spacing-305 {
  letter-spacing: 3.05rem;
}

.letter-spacing-306 {
  letter-spacing: 3.06rem;
}

.letter-spacing-307 {
  letter-spacing: 3.07rem;
}

.letter-spacing-308 {
  letter-spacing: 3.08rem;
}

.letter-spacing-309 {
  letter-spacing: 3.09rem;
}

.letter-spacing-310 {
  letter-spacing: 3.1rem;
}

.letter-spacing-311 {
  letter-spacing: 3.11rem;
}

.letter-spacing-312 {
  letter-spacing: 3.12rem;
}

.letter-spacing-313 {
  letter-spacing: 3.13rem;
}

.letter-spacing-314 {
  letter-spacing: 3.14rem;
}

.letter-spacing-315 {
  letter-spacing: 3.15rem;
}

.letter-spacing-316 {
  letter-spacing: 3.16rem;
}

.letter-spacing-317 {
  letter-spacing: 3.17rem;
}

.letter-spacing-318 {
  letter-spacing: 3.18rem;
}

.letter-spacing-319 {
  letter-spacing: 3.19rem;
}

.letter-spacing-320 {
  letter-spacing: 3.2rem;
}

.letter-spacing-321 {
  letter-spacing: 3.21rem;
}

.letter-spacing-322 {
  letter-spacing: 3.22rem;
}

.letter-spacing-323 {
  letter-spacing: 3.23rem;
}

.letter-spacing-324 {
  letter-spacing: 3.24rem;
}

.letter-spacing-325 {
  letter-spacing: 3.25rem;
}

.letter-spacing-326 {
  letter-spacing: 3.26rem;
}

.letter-spacing-327 {
  letter-spacing: 3.27rem;
}

.letter-spacing-328 {
  letter-spacing: 3.28rem;
}

.letter-spacing-329 {
  letter-spacing: 3.29rem;
}

.letter-spacing-330 {
  letter-spacing: 3.3rem;
}

.letter-spacing-331 {
  letter-spacing: 3.31rem;
}

.letter-spacing-332 {
  letter-spacing: 3.32rem;
}

.letter-spacing-333 {
  letter-spacing: 3.33rem;
}

.letter-spacing-334 {
  letter-spacing: 3.34rem;
}

.letter-spacing-335 {
  letter-spacing: 3.35rem;
}

.letter-spacing-336 {
  letter-spacing: 3.36rem;
}

.letter-spacing-337 {
  letter-spacing: 3.37rem;
}

.letter-spacing-338 {
  letter-spacing: 3.38rem;
}

.letter-spacing-339 {
  letter-spacing: 3.39rem;
}

.letter-spacing-340 {
  letter-spacing: 3.4rem;
}

.letter-spacing-341 {
  letter-spacing: 3.41rem;
}

.letter-spacing-342 {
  letter-spacing: 3.42rem;
}

.letter-spacing-343 {
  letter-spacing: 3.43rem;
}

.letter-spacing-344 {
  letter-spacing: 3.44rem;
}

.letter-spacing-345 {
  letter-spacing: 3.45rem;
}

.letter-spacing-346 {
  letter-spacing: 3.46rem;
}

.letter-spacing-347 {
  letter-spacing: 3.47rem;
}

.letter-spacing-348 {
  letter-spacing: 3.48rem;
}

.letter-spacing-349 {
  letter-spacing: 3.49rem;
}

.letter-spacing-350 {
  letter-spacing: 3.5rem;
}

.letter-05 {
  letter-spacing: 0.09em !important;
}

.letter-spacing-neg-5 {
  letter-spacing: -0.01rem;
}

/*Text alignment options*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-after-horizontal-line {
  position: relative;
}
.text-after-horizontal-line:after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  position: absolute;
  margin-left: 23px;
}
@media (min-width: 768px) {
  .text-after-horizontal-line:after {
    bottom: 55%;
    transform: translateY(55%);
  }
}
@media (max-width: 767.98px) {
  .text-after-horizontal-line:after {
    bottom: 20px;
  }
}
.text-after-horizontal-line.line-white:after {
  background-color: #ffffff;
}
.text-after-horizontal-line.line-black:after {
  background-color: #3A4044;
}

.text-bottom-horizontal-line {
  position: relative;
}
.text-bottom-horizontal-line:after {
  background-color: #3A4044;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 40px;
}

/*Reponsive text alignment options*/
@media (max-width: 767.98px) {
  .text-center-xs {
    text-align: center;
  }
}
/*Text transform options*/
.text-uppercase {
  text-transform: uppercase;
}

.remove-underlines a {
  text-decoration: none;
}

/*Fades text 80%*/
.text-fade-70 {
  opacity: 0.7;
}

.text-fade-80 {
  opacity: 0.8;
}

.text-opacity-0 {
  opacity: 0;
}

.text-opacity-10 {
  opacity: 0.1;
}

.text-opacity-20 {
  opacity: 0.2;
}

.text-opacity-30 {
  opacity: 0.3;
}

.text-opacity-40 {
  opacity: 0.4;
}

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

.text-opacity-60 {
  opacity: 0.6;
}

.text-opacity-70 {
  opacity: 0.7;
}

.text-opacity-80 {
  opacity: 0.8;
}

.text-opacity-90 {
  opacity: 0.9;
}

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

/*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: 15px;
}
p:last-child {
  margin-bottom: 0;
}

/*Global anchor styles*/
a {
  color: inherit;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  a {
    transition: none;
  }
}
a:hover {
  text-decoration: none;
  color: #AC441E;
}
a.hover-white:hover {
  color: #ffffff;
}

.color-link-red {
  color: #AC441E;
}
.color-link-red:hover {
  color: #3A4044;
}

.color-link-blue {
  color: #307698;
}
.color-link-blue:hover {
  color: #3A4044;
}

/*General dropcap setup*/
/*Adds underline to anchors within this element*/
.link-underlinea,
.link-underline a {
  text-decoration: underline;
}
.link-underlinea:hover,
.link-underline a:hover {
  color: currentColor;
  text-decoration: none;
}

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

.text-fit {
  width: 100%;
  display: block;
  overflow-wrap: normal;
}

/*Elements*/
/*Heading mixin options*/
/*Heading options*/
.micro-title {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: block;
}

.heading-title, .styled-form .gform_heading .gform_title {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .heading-title, .styled-form .gform_heading .gform_title {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .heading-title, .styled-form .gform_heading .gform_title {
    font-size: 6rem;
  }
}
@media (min-width: 1400px) {
  .heading-title, .styled-form .gform_heading .gform_title {
    font-size: 7.5rem;
  }
}
.heading-title.outline-black, .styled-form .gform_heading .gform_title {
  -webkit-text-stroke: 2px #3A4044;
  color: transparent;
}
.heading-title.outline-white, .styled-form .gform_heading .outline-white.gform_title {
  -webkit-text-stroke: 2px #ffffff;
  color: transparent;
}

.heading-subtitle {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
  overflow-wrap: inherit;
}
@media (max-width: 575.98px) {
  .heading-subtitle {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .heading-subtitle {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .heading-subtitle {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .heading-subtitle {
    font-size: 4rem;
  }
}

.heading-small-subtitle, .gform_fields .gfield--type-section .gsection_title {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .heading-small-subtitle, .gform_fields .gfield--type-section .gsection_title {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .heading-small-subtitle, .gform_fields .gfield--type-section .gsection_title {
    font-size: 2rem;
  }
}

.heading-medium {
  font-weight: 500;
}

.heading-subtitle-light {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 300;
  display: block;
  text-transform: uppercase;
  line-height: 1.1;
  overflow-wrap: inherit;
}
@media (max-width: 575.98px) {
  .heading-subtitle-light {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .heading-subtitle-light {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .heading-subtitle-light {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .heading-subtitle-light {
    font-size: 4rem;
  }
}

@media (min-width: 992px) {
  .lg-heading-fs-8 {
    font-size: 0.8rem;
  }
  .lg-heading-fs-9 {
    font-size: 0.9rem;
  }
  .lg-heading-fs-10 {
    font-size: 1rem;
  }
  .lg-heading-fs-11 {
    font-size: 1.1rem;
  }
  .lg-heading-fs-12 {
    font-size: 1.2rem;
  }
  .lg-heading-fs-13 {
    font-size: 1.3rem;
  }
  .lg-heading-fs-14 {
    font-size: 1.4rem;
  }
  .lg-heading-fs-15 {
    font-size: 1.5rem;
  }
  .lg-heading-fs-16 {
    font-size: 1.6rem;
  }
  .lg-heading-fs-17 {
    font-size: 1.7rem;
  }
  .lg-heading-fs-18 {
    font-size: 1.8rem;
  }
  .lg-heading-fs-19 {
    font-size: 1.9rem;
  }
  .lg-heading-fs-20 {
    font-size: 2rem;
  }
  .lg-heading-fs-21 {
    font-size: 2.1rem;
  }
  .lg-heading-fs-22 {
    font-size: 2.2rem;
  }
  .lg-heading-fs-23 {
    font-size: 2.3rem;
  }
  .lg-heading-fs-24 {
    font-size: 2.4rem;
  }
  .lg-heading-fs-25 {
    font-size: 2.5rem;
  }
  .lg-heading-fs-26 {
    font-size: 2.6rem;
  }
  .lg-heading-fs-27 {
    font-size: 2.7rem;
  }
  .lg-heading-fs-28 {
    font-size: 2.8rem;
  }
  .lg-heading-fs-29 {
    font-size: 2.9rem;
  }
  .lg-heading-fs-30 {
    font-size: 3rem;
  }
  .lg-heading-fs-31 {
    font-size: 3.1rem;
  }
  .lg-heading-fs-32 {
    font-size: 3.2rem;
  }
  .lg-heading-fs-33 {
    font-size: 3.3rem;
  }
  .lg-heading-fs-34 {
    font-size: 3.4rem;
  }
  .lg-heading-fs-35 {
    font-size: 3.5rem;
  }
  .lg-heading-fs-36 {
    font-size: 3.6rem;
  }
  .lg-heading-fs-37 {
    font-size: 3.7rem;
  }
  .lg-heading-fs-38 {
    font-size: 3.8rem;
  }
  .lg-heading-fs-39 {
    font-size: 3.9rem;
  }
  .lg-heading-fs-40 {
    font-size: 4rem;
  }
  .lg-heading-fs-41 {
    font-size: 4.1rem;
  }
  .lg-heading-fs-42 {
    font-size: 4.2rem;
  }
  .lg-heading-fs-43 {
    font-size: 4.3rem;
  }
  .lg-heading-fs-44 {
    font-size: 4.4rem;
  }
  .lg-heading-fs-45 {
    font-size: 4.5rem;
  }
  .lg-heading-fs-46 {
    font-size: 4.6rem;
  }
  .lg-heading-fs-47 {
    font-size: 4.7rem;
  }
  .lg-heading-fs-48 {
    font-size: 4.8rem;
  }
  .lg-heading-fs-49 {
    font-size: 4.9rem;
  }
  .lg-heading-fs-50 {
    font-size: 5rem;
  }
  .lg-heading-fs-51 {
    font-size: 5.1rem;
  }
  .lg-heading-fs-52 {
    font-size: 5.2rem;
  }
  .lg-heading-fs-53 {
    font-size: 5.3rem;
  }
  .lg-heading-fs-54 {
    font-size: 5.4rem;
  }
  .lg-heading-fs-55 {
    font-size: 5.5rem;
  }
  .lg-heading-fs-56 {
    font-size: 5.6rem;
  }
  .lg-heading-fs-57 {
    font-size: 5.7rem;
  }
  .lg-heading-fs-58 {
    font-size: 5.8rem;
  }
  .lg-heading-fs-59 {
    font-size: 5.9rem;
  }
  .lg-heading-fs-60 {
    font-size: 6rem;
  }
  .lg-heading-fs-61 {
    font-size: 6.1rem;
  }
  .lg-heading-fs-62 {
    font-size: 6.2rem;
  }
  .lg-heading-fs-63 {
    font-size: 6.3rem;
  }
  .lg-heading-fs-64 {
    font-size: 6.4rem;
  }
  .lg-heading-fs-65 {
    font-size: 6.5rem;
  }
  .lg-heading-fs-66 {
    font-size: 6.6rem;
  }
  .lg-heading-fs-67 {
    font-size: 6.7rem;
  }
  .lg-heading-fs-68 {
    font-size: 6.8rem;
  }
  .lg-heading-fs-69 {
    font-size: 6.9rem;
  }
  .lg-heading-fs-70 {
    font-size: 7rem;
  }
  .lg-heading-fs-71 {
    font-size: 7.1rem;
  }
  .lg-heading-fs-72 {
    font-size: 7.2rem;
  }
  .lg-heading-fs-73 {
    font-size: 7.3rem;
  }
  .lg-heading-fs-74 {
    font-size: 7.4rem;
  }
  .lg-heading-fs-75 {
    font-size: 7.5rem;
  }
  .lg-heading-fs-76 {
    font-size: 7.6rem;
  }
  .lg-heading-fs-77 {
    font-size: 7.7rem;
  }
  .lg-heading-fs-78 {
    font-size: 7.8rem;
  }
  .lg-heading-fs-79 {
    font-size: 7.9rem;
  }
  .lg-heading-fs-80 {
    font-size: 8rem;
  }
  .lg-heading-fs-81 {
    font-size: 8.1rem;
  }
  .lg-heading-fs-82 {
    font-size: 8.2rem;
  }
  .lg-heading-fs-83 {
    font-size: 8.3rem;
  }
  .lg-heading-fs-84 {
    font-size: 8.4rem;
  }
  .lg-heading-fs-85 {
    font-size: 8.5rem;
  }
  .lg-heading-fs-86 {
    font-size: 8.6rem;
  }
  .lg-heading-fs-87 {
    font-size: 8.7rem;
  }
  .lg-heading-fs-88 {
    font-size: 8.8rem;
  }
  .lg-heading-fs-89 {
    font-size: 8.9rem;
  }
  .lg-heading-fs-90 {
    font-size: 9rem;
  }
  .lg-heading-fs-91 {
    font-size: 9.1rem;
  }
  .lg-heading-fs-92 {
    font-size: 9.2rem;
  }
  .lg-heading-fs-93 {
    font-size: 9.3rem;
  }
  .lg-heading-fs-94 {
    font-size: 9.4rem;
  }
  .lg-heading-fs-95 {
    font-size: 9.5rem;
  }
  .lg-heading-fs-96 {
    font-size: 9.6rem;
  }
  .lg-heading-fs-97 {
    font-size: 9.7rem;
  }
  .lg-heading-fs-98 {
    font-size: 9.8rem;
  }
  .lg-heading-fs-99 {
    font-size: 9.9rem;
  }
  .lg-heading-fs-100 {
    font-size: 10rem;
  }
  .lg-heading-fs-101 {
    font-size: 10.1rem;
  }
  .lg-heading-fs-102 {
    font-size: 10.2rem;
  }
  .lg-heading-fs-103 {
    font-size: 10.3rem;
  }
  .lg-heading-fs-104 {
    font-size: 10.4rem;
  }
  .lg-heading-fs-105 {
    font-size: 10.5rem;
  }
  .lg-heading-fs-106 {
    font-size: 10.6rem;
  }
  .lg-heading-fs-107 {
    font-size: 10.7rem;
  }
  .lg-heading-fs-108 {
    font-size: 10.8rem;
  }
  .lg-heading-fs-109 {
    font-size: 10.9rem;
  }
  .lg-heading-fs-110 {
    font-size: 11rem;
  }
  .lg-heading-fs-111 {
    font-size: 11.1rem;
  }
  .lg-heading-fs-112 {
    font-size: 11.2rem;
  }
  .lg-heading-fs-113 {
    font-size: 11.3rem;
  }
  .lg-heading-fs-114 {
    font-size: 11.4rem;
  }
  .lg-heading-fs-115 {
    font-size: 11.5rem;
  }
  .lg-heading-fs-116 {
    font-size: 11.6rem;
  }
  .lg-heading-fs-117 {
    font-size: 11.7rem;
  }
  .lg-heading-fs-118 {
    font-size: 11.8rem;
  }
  .lg-heading-fs-119 {
    font-size: 11.9rem;
  }
  .lg-heading-fs-120 {
    font-size: 12rem;
  }
}
@media (max-width: 991.98px) {
  .sm-heading-fs-8 {
    font-size: 0.8rem;
  }
  .sm-heading-fs-9 {
    font-size: 0.9rem;
  }
  .sm-heading-fs-10 {
    font-size: 1rem;
  }
  .sm-heading-fs-11 {
    font-size: 1.1rem;
  }
  .sm-heading-fs-12 {
    font-size: 1.2rem;
  }
  .sm-heading-fs-13 {
    font-size: 1.3rem;
  }
  .sm-heading-fs-14 {
    font-size: 1.4rem;
  }
  .sm-heading-fs-15 {
    font-size: 1.5rem;
  }
  .sm-heading-fs-16 {
    font-size: 1.6rem;
  }
  .sm-heading-fs-17 {
    font-size: 1.7rem;
  }
  .sm-heading-fs-18 {
    font-size: 1.8rem;
  }
  .sm-heading-fs-19 {
    font-size: 1.9rem;
  }
  .sm-heading-fs-20 {
    font-size: 2rem;
  }
  .sm-heading-fs-21 {
    font-size: 2.1rem;
  }
  .sm-heading-fs-22 {
    font-size: 2.2rem;
  }
  .sm-heading-fs-23 {
    font-size: 2.3rem;
  }
  .sm-heading-fs-24 {
    font-size: 2.4rem;
  }
  .sm-heading-fs-25 {
    font-size: 2.5rem;
  }
  .sm-heading-fs-26 {
    font-size: 2.6rem;
  }
  .sm-heading-fs-27 {
    font-size: 2.7rem;
  }
  .sm-heading-fs-28 {
    font-size: 2.8rem;
  }
  .sm-heading-fs-29 {
    font-size: 2.9rem;
  }
  .sm-heading-fs-30 {
    font-size: 3rem;
  }
  .sm-heading-fs-31 {
    font-size: 3.1rem;
  }
  .sm-heading-fs-32 {
    font-size: 3.2rem;
  }
  .sm-heading-fs-33 {
    font-size: 3.3rem;
  }
  .sm-heading-fs-34 {
    font-size: 3.4rem;
  }
  .sm-heading-fs-35 {
    font-size: 3.5rem;
  }
  .sm-heading-fs-36 {
    font-size: 3.6rem;
  }
  .sm-heading-fs-37 {
    font-size: 3.7rem;
  }
  .sm-heading-fs-38 {
    font-size: 3.8rem;
  }
  .sm-heading-fs-39 {
    font-size: 3.9rem;
  }
  .sm-heading-fs-40 {
    font-size: 4rem;
  }
  .sm-heading-fs-41 {
    font-size: 4.1rem;
  }
  .sm-heading-fs-42 {
    font-size: 4.2rem;
  }
  .sm-heading-fs-43 {
    font-size: 4.3rem;
  }
  .sm-heading-fs-44 {
    font-size: 4.4rem;
  }
  .sm-heading-fs-45 {
    font-size: 4.5rem;
  }
  .sm-heading-fs-46 {
    font-size: 4.6rem;
  }
  .sm-heading-fs-47 {
    font-size: 4.7rem;
  }
  .sm-heading-fs-48 {
    font-size: 4.8rem;
  }
  .sm-heading-fs-49 {
    font-size: 4.9rem;
  }
  .sm-heading-fs-50 {
    font-size: 5rem;
  }
  .sm-heading-fs-51 {
    font-size: 5.1rem;
  }
  .sm-heading-fs-52 {
    font-size: 5.2rem;
  }
  .sm-heading-fs-53 {
    font-size: 5.3rem;
  }
  .sm-heading-fs-54 {
    font-size: 5.4rem;
  }
  .sm-heading-fs-55 {
    font-size: 5.5rem;
  }
  .sm-heading-fs-56 {
    font-size: 5.6rem;
  }
  .sm-heading-fs-57 {
    font-size: 5.7rem;
  }
  .sm-heading-fs-58 {
    font-size: 5.8rem;
  }
  .sm-heading-fs-59 {
    font-size: 5.9rem;
  }
  .sm-heading-fs-60 {
    font-size: 6rem;
  }
  .sm-heading-fs-61 {
    font-size: 6.1rem;
  }
  .sm-heading-fs-62 {
    font-size: 6.2rem;
  }
  .sm-heading-fs-63 {
    font-size: 6.3rem;
  }
  .sm-heading-fs-64 {
    font-size: 6.4rem;
  }
  .sm-heading-fs-65 {
    font-size: 6.5rem;
  }
  .sm-heading-fs-66 {
    font-size: 6.6rem;
  }
  .sm-heading-fs-67 {
    font-size: 6.7rem;
  }
  .sm-heading-fs-68 {
    font-size: 6.8rem;
  }
  .sm-heading-fs-69 {
    font-size: 6.9rem;
  }
  .sm-heading-fs-70 {
    font-size: 7rem;
  }
  .sm-heading-fs-71 {
    font-size: 7.1rem;
  }
  .sm-heading-fs-72 {
    font-size: 7.2rem;
  }
  .sm-heading-fs-73 {
    font-size: 7.3rem;
  }
  .sm-heading-fs-74 {
    font-size: 7.4rem;
  }
  .sm-heading-fs-75 {
    font-size: 7.5rem;
  }
  .sm-heading-fs-76 {
    font-size: 7.6rem;
  }
  .sm-heading-fs-77 {
    font-size: 7.7rem;
  }
  .sm-heading-fs-78 {
    font-size: 7.8rem;
  }
  .sm-heading-fs-79 {
    font-size: 7.9rem;
  }
  .sm-heading-fs-80 {
    font-size: 8rem;
  }
  .sm-heading-fs-81 {
    font-size: 8.1rem;
  }
  .sm-heading-fs-82 {
    font-size: 8.2rem;
  }
  .sm-heading-fs-83 {
    font-size: 8.3rem;
  }
  .sm-heading-fs-84 {
    font-size: 8.4rem;
  }
  .sm-heading-fs-85 {
    font-size: 8.5rem;
  }
  .sm-heading-fs-86 {
    font-size: 8.6rem;
  }
  .sm-heading-fs-87 {
    font-size: 8.7rem;
  }
  .sm-heading-fs-88 {
    font-size: 8.8rem;
  }
  .sm-heading-fs-89 {
    font-size: 8.9rem;
  }
  .sm-heading-fs-90 {
    font-size: 9rem;
  }
  .sm-heading-fs-91 {
    font-size: 9.1rem;
  }
  .sm-heading-fs-92 {
    font-size: 9.2rem;
  }
  .sm-heading-fs-93 {
    font-size: 9.3rem;
  }
  .sm-heading-fs-94 {
    font-size: 9.4rem;
  }
  .sm-heading-fs-95 {
    font-size: 9.5rem;
  }
  .sm-heading-fs-96 {
    font-size: 9.6rem;
  }
  .sm-heading-fs-97 {
    font-size: 9.7rem;
  }
  .sm-heading-fs-98 {
    font-size: 9.8rem;
  }
  .sm-heading-fs-99 {
    font-size: 9.9rem;
  }
  .sm-heading-fs-100 {
    font-size: 10rem;
  }
  .sm-heading-fs-101 {
    font-size: 10.1rem;
  }
  .sm-heading-fs-102 {
    font-size: 10.2rem;
  }
  .sm-heading-fs-103 {
    font-size: 10.3rem;
  }
  .sm-heading-fs-104 {
    font-size: 10.4rem;
  }
  .sm-heading-fs-105 {
    font-size: 10.5rem;
  }
  .sm-heading-fs-106 {
    font-size: 10.6rem;
  }
  .sm-heading-fs-107 {
    font-size: 10.7rem;
  }
  .sm-heading-fs-108 {
    font-size: 10.8rem;
  }
  .sm-heading-fs-109 {
    font-size: 10.9rem;
  }
  .sm-heading-fs-110 {
    font-size: 11rem;
  }
  .sm-heading-fs-111 {
    font-size: 11.1rem;
  }
  .sm-heading-fs-112 {
    font-size: 11.2rem;
  }
  .sm-heading-fs-113 {
    font-size: 11.3rem;
  }
  .sm-heading-fs-114 {
    font-size: 11.4rem;
  }
  .sm-heading-fs-115 {
    font-size: 11.5rem;
  }
  .sm-heading-fs-116 {
    font-size: 11.6rem;
  }
  .sm-heading-fs-117 {
    font-size: 11.7rem;
  }
  .sm-heading-fs-118 {
    font-size: 11.8rem;
  }
  .sm-heading-fs-119 {
    font-size: 11.9rem;
  }
  .sm-heading-fs-120 {
    font-size: 12rem;
  }
}
/*Add transition to all heading options*/
[class*=heading-] {
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  [class*=heading-] {
    transition: none;
  }
}
[class*=heading-] a:hover {
  color: #3A4044;
}

/*Heading mixin options*/
/*Heading options*/
.micro-title {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: block;
}

.heading-title, .styled-form .gform_heading .gform_title {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .heading-title, .styled-form .gform_heading .gform_title {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .heading-title, .styled-form .gform_heading .gform_title {
    font-size: 6rem;
  }
}
@media (min-width: 1400px) {
  .heading-title, .styled-form .gform_heading .gform_title {
    font-size: 7.5rem;
  }
}
.heading-title.outline-black, .styled-form .gform_heading .gform_title {
  -webkit-text-stroke: 2px #3A4044;
  color: transparent;
}
.heading-title.outline-white, .styled-form .gform_heading .outline-white.gform_title {
  -webkit-text-stroke: 2px #ffffff;
  color: transparent;
}

.heading-subtitle {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
  overflow-wrap: inherit;
}
@media (max-width: 575.98px) {
  .heading-subtitle {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .heading-subtitle {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .heading-subtitle {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .heading-subtitle {
    font-size: 4rem;
  }
}

.heading-small-subtitle, .gform_fields .gfield--type-section .gsection_title {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .heading-small-subtitle, .gform_fields .gfield--type-section .gsection_title {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .heading-small-subtitle, .gform_fields .gfield--type-section .gsection_title {
    font-size: 2rem;
  }
}

.heading-medium {
  font-weight: 500;
}

.heading-subtitle-light {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 300;
  display: block;
  text-transform: uppercase;
  line-height: 1.1;
  overflow-wrap: inherit;
}
@media (max-width: 575.98px) {
  .heading-subtitle-light {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .heading-subtitle-light {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .heading-subtitle-light {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .heading-subtitle-light {
    font-size: 4rem;
  }
}

@media (min-width: 992px) {
  .lg-heading-fs-8 {
    font-size: 0.8rem;
  }
  .lg-heading-fs-9 {
    font-size: 0.9rem;
  }
  .lg-heading-fs-10 {
    font-size: 1rem;
  }
  .lg-heading-fs-11 {
    font-size: 1.1rem;
  }
  .lg-heading-fs-12 {
    font-size: 1.2rem;
  }
  .lg-heading-fs-13 {
    font-size: 1.3rem;
  }
  .lg-heading-fs-14 {
    font-size: 1.4rem;
  }
  .lg-heading-fs-15 {
    font-size: 1.5rem;
  }
  .lg-heading-fs-16 {
    font-size: 1.6rem;
  }
  .lg-heading-fs-17 {
    font-size: 1.7rem;
  }
  .lg-heading-fs-18 {
    font-size: 1.8rem;
  }
  .lg-heading-fs-19 {
    font-size: 1.9rem;
  }
  .lg-heading-fs-20 {
    font-size: 2rem;
  }
  .lg-heading-fs-21 {
    font-size: 2.1rem;
  }
  .lg-heading-fs-22 {
    font-size: 2.2rem;
  }
  .lg-heading-fs-23 {
    font-size: 2.3rem;
  }
  .lg-heading-fs-24 {
    font-size: 2.4rem;
  }
  .lg-heading-fs-25 {
    font-size: 2.5rem;
  }
  .lg-heading-fs-26 {
    font-size: 2.6rem;
  }
  .lg-heading-fs-27 {
    font-size: 2.7rem;
  }
  .lg-heading-fs-28 {
    font-size: 2.8rem;
  }
  .lg-heading-fs-29 {
    font-size: 2.9rem;
  }
  .lg-heading-fs-30 {
    font-size: 3rem;
  }
  .lg-heading-fs-31 {
    font-size: 3.1rem;
  }
  .lg-heading-fs-32 {
    font-size: 3.2rem;
  }
  .lg-heading-fs-33 {
    font-size: 3.3rem;
  }
  .lg-heading-fs-34 {
    font-size: 3.4rem;
  }
  .lg-heading-fs-35 {
    font-size: 3.5rem;
  }
  .lg-heading-fs-36 {
    font-size: 3.6rem;
  }
  .lg-heading-fs-37 {
    font-size: 3.7rem;
  }
  .lg-heading-fs-38 {
    font-size: 3.8rem;
  }
  .lg-heading-fs-39 {
    font-size: 3.9rem;
  }
  .lg-heading-fs-40 {
    font-size: 4rem;
  }
  .lg-heading-fs-41 {
    font-size: 4.1rem;
  }
  .lg-heading-fs-42 {
    font-size: 4.2rem;
  }
  .lg-heading-fs-43 {
    font-size: 4.3rem;
  }
  .lg-heading-fs-44 {
    font-size: 4.4rem;
  }
  .lg-heading-fs-45 {
    font-size: 4.5rem;
  }
  .lg-heading-fs-46 {
    font-size: 4.6rem;
  }
  .lg-heading-fs-47 {
    font-size: 4.7rem;
  }
  .lg-heading-fs-48 {
    font-size: 4.8rem;
  }
  .lg-heading-fs-49 {
    font-size: 4.9rem;
  }
  .lg-heading-fs-50 {
    font-size: 5rem;
  }
  .lg-heading-fs-51 {
    font-size: 5.1rem;
  }
  .lg-heading-fs-52 {
    font-size: 5.2rem;
  }
  .lg-heading-fs-53 {
    font-size: 5.3rem;
  }
  .lg-heading-fs-54 {
    font-size: 5.4rem;
  }
  .lg-heading-fs-55 {
    font-size: 5.5rem;
  }
  .lg-heading-fs-56 {
    font-size: 5.6rem;
  }
  .lg-heading-fs-57 {
    font-size: 5.7rem;
  }
  .lg-heading-fs-58 {
    font-size: 5.8rem;
  }
  .lg-heading-fs-59 {
    font-size: 5.9rem;
  }
  .lg-heading-fs-60 {
    font-size: 6rem;
  }
  .lg-heading-fs-61 {
    font-size: 6.1rem;
  }
  .lg-heading-fs-62 {
    font-size: 6.2rem;
  }
  .lg-heading-fs-63 {
    font-size: 6.3rem;
  }
  .lg-heading-fs-64 {
    font-size: 6.4rem;
  }
  .lg-heading-fs-65 {
    font-size: 6.5rem;
  }
  .lg-heading-fs-66 {
    font-size: 6.6rem;
  }
  .lg-heading-fs-67 {
    font-size: 6.7rem;
  }
  .lg-heading-fs-68 {
    font-size: 6.8rem;
  }
  .lg-heading-fs-69 {
    font-size: 6.9rem;
  }
  .lg-heading-fs-70 {
    font-size: 7rem;
  }
  .lg-heading-fs-71 {
    font-size: 7.1rem;
  }
  .lg-heading-fs-72 {
    font-size: 7.2rem;
  }
  .lg-heading-fs-73 {
    font-size: 7.3rem;
  }
  .lg-heading-fs-74 {
    font-size: 7.4rem;
  }
  .lg-heading-fs-75 {
    font-size: 7.5rem;
  }
  .lg-heading-fs-76 {
    font-size: 7.6rem;
  }
  .lg-heading-fs-77 {
    font-size: 7.7rem;
  }
  .lg-heading-fs-78 {
    font-size: 7.8rem;
  }
  .lg-heading-fs-79 {
    font-size: 7.9rem;
  }
  .lg-heading-fs-80 {
    font-size: 8rem;
  }
  .lg-heading-fs-81 {
    font-size: 8.1rem;
  }
  .lg-heading-fs-82 {
    font-size: 8.2rem;
  }
  .lg-heading-fs-83 {
    font-size: 8.3rem;
  }
  .lg-heading-fs-84 {
    font-size: 8.4rem;
  }
  .lg-heading-fs-85 {
    font-size: 8.5rem;
  }
  .lg-heading-fs-86 {
    font-size: 8.6rem;
  }
  .lg-heading-fs-87 {
    font-size: 8.7rem;
  }
  .lg-heading-fs-88 {
    font-size: 8.8rem;
  }
  .lg-heading-fs-89 {
    font-size: 8.9rem;
  }
  .lg-heading-fs-90 {
    font-size: 9rem;
  }
  .lg-heading-fs-91 {
    font-size: 9.1rem;
  }
  .lg-heading-fs-92 {
    font-size: 9.2rem;
  }
  .lg-heading-fs-93 {
    font-size: 9.3rem;
  }
  .lg-heading-fs-94 {
    font-size: 9.4rem;
  }
  .lg-heading-fs-95 {
    font-size: 9.5rem;
  }
  .lg-heading-fs-96 {
    font-size: 9.6rem;
  }
  .lg-heading-fs-97 {
    font-size: 9.7rem;
  }
  .lg-heading-fs-98 {
    font-size: 9.8rem;
  }
  .lg-heading-fs-99 {
    font-size: 9.9rem;
  }
  .lg-heading-fs-100 {
    font-size: 10rem;
  }
  .lg-heading-fs-101 {
    font-size: 10.1rem;
  }
  .lg-heading-fs-102 {
    font-size: 10.2rem;
  }
  .lg-heading-fs-103 {
    font-size: 10.3rem;
  }
  .lg-heading-fs-104 {
    font-size: 10.4rem;
  }
  .lg-heading-fs-105 {
    font-size: 10.5rem;
  }
  .lg-heading-fs-106 {
    font-size: 10.6rem;
  }
  .lg-heading-fs-107 {
    font-size: 10.7rem;
  }
  .lg-heading-fs-108 {
    font-size: 10.8rem;
  }
  .lg-heading-fs-109 {
    font-size: 10.9rem;
  }
  .lg-heading-fs-110 {
    font-size: 11rem;
  }
  .lg-heading-fs-111 {
    font-size: 11.1rem;
  }
  .lg-heading-fs-112 {
    font-size: 11.2rem;
  }
  .lg-heading-fs-113 {
    font-size: 11.3rem;
  }
  .lg-heading-fs-114 {
    font-size: 11.4rem;
  }
  .lg-heading-fs-115 {
    font-size: 11.5rem;
  }
  .lg-heading-fs-116 {
    font-size: 11.6rem;
  }
  .lg-heading-fs-117 {
    font-size: 11.7rem;
  }
  .lg-heading-fs-118 {
    font-size: 11.8rem;
  }
  .lg-heading-fs-119 {
    font-size: 11.9rem;
  }
  .lg-heading-fs-120 {
    font-size: 12rem;
  }
}
@media (max-width: 991.98px) {
  .sm-heading-fs-8 {
    font-size: 0.8rem;
  }
  .sm-heading-fs-9 {
    font-size: 0.9rem;
  }
  .sm-heading-fs-10 {
    font-size: 1rem;
  }
  .sm-heading-fs-11 {
    font-size: 1.1rem;
  }
  .sm-heading-fs-12 {
    font-size: 1.2rem;
  }
  .sm-heading-fs-13 {
    font-size: 1.3rem;
  }
  .sm-heading-fs-14 {
    font-size: 1.4rem;
  }
  .sm-heading-fs-15 {
    font-size: 1.5rem;
  }
  .sm-heading-fs-16 {
    font-size: 1.6rem;
  }
  .sm-heading-fs-17 {
    font-size: 1.7rem;
  }
  .sm-heading-fs-18 {
    font-size: 1.8rem;
  }
  .sm-heading-fs-19 {
    font-size: 1.9rem;
  }
  .sm-heading-fs-20 {
    font-size: 2rem;
  }
  .sm-heading-fs-21 {
    font-size: 2.1rem;
  }
  .sm-heading-fs-22 {
    font-size: 2.2rem;
  }
  .sm-heading-fs-23 {
    font-size: 2.3rem;
  }
  .sm-heading-fs-24 {
    font-size: 2.4rem;
  }
  .sm-heading-fs-25 {
    font-size: 2.5rem;
  }
  .sm-heading-fs-26 {
    font-size: 2.6rem;
  }
  .sm-heading-fs-27 {
    font-size: 2.7rem;
  }
  .sm-heading-fs-28 {
    font-size: 2.8rem;
  }
  .sm-heading-fs-29 {
    font-size: 2.9rem;
  }
  .sm-heading-fs-30 {
    font-size: 3rem;
  }
  .sm-heading-fs-31 {
    font-size: 3.1rem;
  }
  .sm-heading-fs-32 {
    font-size: 3.2rem;
  }
  .sm-heading-fs-33 {
    font-size: 3.3rem;
  }
  .sm-heading-fs-34 {
    font-size: 3.4rem;
  }
  .sm-heading-fs-35 {
    font-size: 3.5rem;
  }
  .sm-heading-fs-36 {
    font-size: 3.6rem;
  }
  .sm-heading-fs-37 {
    font-size: 3.7rem;
  }
  .sm-heading-fs-38 {
    font-size: 3.8rem;
  }
  .sm-heading-fs-39 {
    font-size: 3.9rem;
  }
  .sm-heading-fs-40 {
    font-size: 4rem;
  }
  .sm-heading-fs-41 {
    font-size: 4.1rem;
  }
  .sm-heading-fs-42 {
    font-size: 4.2rem;
  }
  .sm-heading-fs-43 {
    font-size: 4.3rem;
  }
  .sm-heading-fs-44 {
    font-size: 4.4rem;
  }
  .sm-heading-fs-45 {
    font-size: 4.5rem;
  }
  .sm-heading-fs-46 {
    font-size: 4.6rem;
  }
  .sm-heading-fs-47 {
    font-size: 4.7rem;
  }
  .sm-heading-fs-48 {
    font-size: 4.8rem;
  }
  .sm-heading-fs-49 {
    font-size: 4.9rem;
  }
  .sm-heading-fs-50 {
    font-size: 5rem;
  }
  .sm-heading-fs-51 {
    font-size: 5.1rem;
  }
  .sm-heading-fs-52 {
    font-size: 5.2rem;
  }
  .sm-heading-fs-53 {
    font-size: 5.3rem;
  }
  .sm-heading-fs-54 {
    font-size: 5.4rem;
  }
  .sm-heading-fs-55 {
    font-size: 5.5rem;
  }
  .sm-heading-fs-56 {
    font-size: 5.6rem;
  }
  .sm-heading-fs-57 {
    font-size: 5.7rem;
  }
  .sm-heading-fs-58 {
    font-size: 5.8rem;
  }
  .sm-heading-fs-59 {
    font-size: 5.9rem;
  }
  .sm-heading-fs-60 {
    font-size: 6rem;
  }
  .sm-heading-fs-61 {
    font-size: 6.1rem;
  }
  .sm-heading-fs-62 {
    font-size: 6.2rem;
  }
  .sm-heading-fs-63 {
    font-size: 6.3rem;
  }
  .sm-heading-fs-64 {
    font-size: 6.4rem;
  }
  .sm-heading-fs-65 {
    font-size: 6.5rem;
  }
  .sm-heading-fs-66 {
    font-size: 6.6rem;
  }
  .sm-heading-fs-67 {
    font-size: 6.7rem;
  }
  .sm-heading-fs-68 {
    font-size: 6.8rem;
  }
  .sm-heading-fs-69 {
    font-size: 6.9rem;
  }
  .sm-heading-fs-70 {
    font-size: 7rem;
  }
  .sm-heading-fs-71 {
    font-size: 7.1rem;
  }
  .sm-heading-fs-72 {
    font-size: 7.2rem;
  }
  .sm-heading-fs-73 {
    font-size: 7.3rem;
  }
  .sm-heading-fs-74 {
    font-size: 7.4rem;
  }
  .sm-heading-fs-75 {
    font-size: 7.5rem;
  }
  .sm-heading-fs-76 {
    font-size: 7.6rem;
  }
  .sm-heading-fs-77 {
    font-size: 7.7rem;
  }
  .sm-heading-fs-78 {
    font-size: 7.8rem;
  }
  .sm-heading-fs-79 {
    font-size: 7.9rem;
  }
  .sm-heading-fs-80 {
    font-size: 8rem;
  }
  .sm-heading-fs-81 {
    font-size: 8.1rem;
  }
  .sm-heading-fs-82 {
    font-size: 8.2rem;
  }
  .sm-heading-fs-83 {
    font-size: 8.3rem;
  }
  .sm-heading-fs-84 {
    font-size: 8.4rem;
  }
  .sm-heading-fs-85 {
    font-size: 8.5rem;
  }
  .sm-heading-fs-86 {
    font-size: 8.6rem;
  }
  .sm-heading-fs-87 {
    font-size: 8.7rem;
  }
  .sm-heading-fs-88 {
    font-size: 8.8rem;
  }
  .sm-heading-fs-89 {
    font-size: 8.9rem;
  }
  .sm-heading-fs-90 {
    font-size: 9rem;
  }
  .sm-heading-fs-91 {
    font-size: 9.1rem;
  }
  .sm-heading-fs-92 {
    font-size: 9.2rem;
  }
  .sm-heading-fs-93 {
    font-size: 9.3rem;
  }
  .sm-heading-fs-94 {
    font-size: 9.4rem;
  }
  .sm-heading-fs-95 {
    font-size: 9.5rem;
  }
  .sm-heading-fs-96 {
    font-size: 9.6rem;
  }
  .sm-heading-fs-97 {
    font-size: 9.7rem;
  }
  .sm-heading-fs-98 {
    font-size: 9.8rem;
  }
  .sm-heading-fs-99 {
    font-size: 9.9rem;
  }
  .sm-heading-fs-100 {
    font-size: 10rem;
  }
  .sm-heading-fs-101 {
    font-size: 10.1rem;
  }
  .sm-heading-fs-102 {
    font-size: 10.2rem;
  }
  .sm-heading-fs-103 {
    font-size: 10.3rem;
  }
  .sm-heading-fs-104 {
    font-size: 10.4rem;
  }
  .sm-heading-fs-105 {
    font-size: 10.5rem;
  }
  .sm-heading-fs-106 {
    font-size: 10.6rem;
  }
  .sm-heading-fs-107 {
    font-size: 10.7rem;
  }
  .sm-heading-fs-108 {
    font-size: 10.8rem;
  }
  .sm-heading-fs-109 {
    font-size: 10.9rem;
  }
  .sm-heading-fs-110 {
    font-size: 11rem;
  }
  .sm-heading-fs-111 {
    font-size: 11.1rem;
  }
  .sm-heading-fs-112 {
    font-size: 11.2rem;
  }
  .sm-heading-fs-113 {
    font-size: 11.3rem;
  }
  .sm-heading-fs-114 {
    font-size: 11.4rem;
  }
  .sm-heading-fs-115 {
    font-size: 11.5rem;
  }
  .sm-heading-fs-116 {
    font-size: 11.6rem;
  }
  .sm-heading-fs-117 {
    font-size: 11.7rem;
  }
  .sm-heading-fs-118 {
    font-size: 11.8rem;
  }
  .sm-heading-fs-119 {
    font-size: 11.9rem;
  }
  .sm-heading-fs-120 {
    font-size: 12rem;
  }
}
/*Add transition to all heading options*/
[class*=heading-] {
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  [class*=heading-] {
    transition: none;
  }
}
[class*=heading-] a:hover {
  color: #3A4044;
}

/*Text mixin options*/
.text-base, .gfield .gfield_required_text,
.gfield .gfield_required_custom {
  font-family: "Metropolis", sans-serif;
}

.text-medium, .gfield.gfield--type-address.gfield_contains_required .gform-field-label--type-sub, .gfield .gfield_label, .gfield .gsection_title {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
}

.text-18-book {
  font-family: "Metropolis", sans-serif;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .text-18-book {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .text-18-book {
    font-size: 2rem;
  }
}

.text-bold {
  font-family: "GothamSSm-Bold", sans-serif;
}

.text-big-base {
  font-family: "Metropolis", sans-serif;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .text-big-base {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .text-big-base {
    font-size: 2rem;
  }
}

.text-8 {
  font-size: 1rem;
  display: block;
}

.text-9 {
  font-size: 1.1rem;
  display: block;
}

.text-10 {
  font-size: 1.2rem;
  display: block;
}

.text-11 {
  font-size: 1.3rem;
  display: block;
}

.text-12 {
  font-size: 1.4rem;
  display: block;
}

.text-13 {
  font-size: 1.5rem;
  display: block;
}

.text-14 {
  font-size: 1.6rem;
  display: block;
}

.text-15 {
  font-size: 1.7rem;
  display: block;
}

.text-16 {
  font-size: 1.8rem;
  display: block;
}

.text-17 {
  font-size: 1.9rem;
  display: block;
}

.text-18 {
  font-size: 2rem;
  display: block;
}

.text-19 {
  font-size: 2.1rem;
  display: block;
}

.text-20 {
  font-size: 2.2rem;
  display: block;
}

.text-21 {
  font-size: 2.3rem;
  display: block;
}

.text-22 {
  font-size: 2.4rem;
  display: block;
}

.text-23 {
  font-size: 2.5rem;
  display: block;
}

.text-24 {
  font-size: 2.6rem;
  display: block;
}

@media (min-width: 992px) {
  .lg-text-8 {
    font-size: 1rem;
    display: block;
  }
  .lg-text-9 {
    font-size: 1.1rem;
    display: block;
  }
  .lg-text-10 {
    font-size: 1.2rem;
    display: block;
  }
  .lg-text-11 {
    font-size: 1.3rem;
    display: block;
  }
  .lg-text-12 {
    font-size: 1.4rem;
    display: block;
  }
  .lg-text-13 {
    font-size: 1.5rem;
    display: block;
  }
  .lg-text-14 {
    font-size: 1.6rem;
    display: block;
  }
  .lg-text-15 {
    font-size: 1.7rem;
    display: block;
  }
  .lg-text-16 {
    font-size: 1.8rem;
    display: block;
  }
  .lg-text-17 {
    font-size: 1.9rem;
    display: block;
  }
  .lg-text-18 {
    font-size: 2rem;
    display: block;
  }
  .lg-text-19 {
    font-size: 2.1rem;
    display: block;
  }
  .lg-text-20 {
    font-size: 2.2rem;
    display: block;
  }
  .lg-text-21 {
    font-size: 2.3rem;
    display: block;
  }
  .lg-text-22 {
    font-size: 2.4rem;
    display: block;
  }
  .lg-text-23 {
    font-size: 2.5rem;
    display: block;
  }
  .lg-text-24 {
    font-size: 2.6rem;
    display: block;
  }
}
@media (max-width: 991.98px) {
  .sm-text-8 {
    font-size: 1rem;
    display: block;
  }
  .sm-text-9 {
    font-size: 1.1rem;
    display: block;
  }
  .sm-text-10 {
    font-size: 1.2rem;
    display: block;
  }
  .sm-text-11 {
    font-size: 1.3rem;
    display: block;
  }
  .sm-text-12 {
    font-size: 1.4rem;
    display: block;
  }
  .sm-text-13 {
    font-size: 1.5rem;
    display: block;
  }
  .sm-text-14 {
    font-size: 1.6rem;
    display: block;
  }
  .sm-text-15 {
    font-size: 1.7rem;
    display: block;
  }
  .sm-text-16 {
    font-size: 1.8rem;
    display: block;
  }
  .sm-text-17 {
    font-size: 1.9rem;
    display: block;
  }
  .sm-text-18 {
    font-size: 2rem;
    display: block;
  }
  .sm-text-19 {
    font-size: 2.1rem;
    display: block;
  }
  .sm-text-20 {
    font-size: 2.2rem;
    display: block;
  }
  .sm-text-21 {
    font-size: 2.3rem;
    display: block;
  }
  .sm-text-22 {
    font-size: 2.4rem;
    display: block;
  }
  .sm-text-23 {
    font-size: 2.5rem;
    display: block;
  }
  .sm-text-24 {
    font-size: 2.6rem;
    display: block;
  }
}
.text-height-16 {
  line-height: 1.6;
}

.text-height-20 {
  line-height: 2;
}

.text-height-14 {
  line-height: 1.3;
}

.text-height-165 {
  line-height: 1.65;
}

.text-12-medium {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  display: block;
  font-size: 1.4rem;
  font-weight: 350;
}

.text-15-medium {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  display: block;
  font-size: 1.7rem;
  font-weight: 350;
}

/*Text style options*/
.letter-spacing-0 {
  letter-spacing: 0rem;
}

.letter-spacing-1 {
  letter-spacing: 0.01rem;
}

.letter-spacing-2 {
  letter-spacing: 0.02rem;
}

.letter-spacing-3 {
  letter-spacing: 0.03rem;
}

.letter-spacing-4 {
  letter-spacing: 0.04rem;
}

.letter-spacing-5 {
  letter-spacing: 0.05rem;
}

.letter-spacing-6 {
  letter-spacing: 0.06rem;
}

.letter-spacing-7 {
  letter-spacing: 0.07rem;
}

.letter-spacing-8 {
  letter-spacing: 0.08rem;
}

.letter-spacing-9 {
  letter-spacing: 0.09rem;
}

.letter-spacing-10 {
  letter-spacing: 0.1rem;
}

.letter-spacing-11 {
  letter-spacing: 0.11rem;
}

.letter-spacing-12 {
  letter-spacing: 0.12rem;
}

.letter-spacing-13 {
  letter-spacing: 0.13rem;
}

.letter-spacing-14 {
  letter-spacing: 0.14rem;
}

.letter-spacing-15 {
  letter-spacing: 0.15rem;
}

.letter-spacing-16 {
  letter-spacing: 0.16rem;
}

.letter-spacing-17 {
  letter-spacing: 0.17rem;
}

.letter-spacing-18 {
  letter-spacing: 0.18rem;
}

.letter-spacing-19 {
  letter-spacing: 0.19rem;
}

.letter-spacing-20 {
  letter-spacing: 0.2rem;
}

.letter-spacing-21 {
  letter-spacing: 0.21rem;
}

.letter-spacing-22 {
  letter-spacing: 0.22rem;
}

.letter-spacing-23 {
  letter-spacing: 0.23rem;
}

.letter-spacing-24 {
  letter-spacing: 0.24rem;
}

.letter-spacing-25 {
  letter-spacing: 0.25rem;
}

.letter-spacing-26 {
  letter-spacing: 0.26rem;
}

.letter-spacing-27 {
  letter-spacing: 0.27rem;
}

.letter-spacing-28 {
  letter-spacing: 0.28rem;
}

.letter-spacing-29 {
  letter-spacing: 0.29rem;
}

.letter-spacing-30 {
  letter-spacing: 0.3rem;
}

.letter-spacing-31 {
  letter-spacing: 0.31rem;
}

.letter-spacing-32 {
  letter-spacing: 0.32rem;
}

.letter-spacing-33 {
  letter-spacing: 0.33rem;
}

.letter-spacing-34 {
  letter-spacing: 0.34rem;
}

.letter-spacing-35 {
  letter-spacing: 0.35rem;
}

.letter-spacing-36 {
  letter-spacing: 0.36rem;
}

.letter-spacing-37 {
  letter-spacing: 0.37rem;
}

.letter-spacing-38 {
  letter-spacing: 0.38rem;
}

.letter-spacing-39 {
  letter-spacing: 0.39rem;
}

.letter-spacing-40 {
  letter-spacing: 0.4rem;
}

.letter-spacing-41 {
  letter-spacing: 0.41rem;
}

.letter-spacing-42 {
  letter-spacing: 0.42rem;
}

.letter-spacing-43 {
  letter-spacing: 0.43rem;
}

.letter-spacing-44 {
  letter-spacing: 0.44rem;
}

.letter-spacing-45 {
  letter-spacing: 0.45rem;
}

.letter-spacing-46 {
  letter-spacing: 0.46rem;
}

.letter-spacing-47 {
  letter-spacing: 0.47rem;
}

.letter-spacing-48 {
  letter-spacing: 0.48rem;
}

.letter-spacing-49 {
  letter-spacing: 0.49rem;
}

.letter-spacing-50 {
  letter-spacing: 0.5rem;
}

.letter-spacing-51 {
  letter-spacing: 0.51rem;
}

.letter-spacing-52 {
  letter-spacing: 0.52rem;
}

.letter-spacing-53 {
  letter-spacing: 0.53rem;
}

.letter-spacing-54 {
  letter-spacing: 0.54rem;
}

.letter-spacing-55 {
  letter-spacing: 0.55rem;
}

.letter-spacing-56 {
  letter-spacing: 0.56rem;
}

.letter-spacing-57 {
  letter-spacing: 0.57rem;
}

.letter-spacing-58 {
  letter-spacing: 0.58rem;
}

.letter-spacing-59 {
  letter-spacing: 0.59rem;
}

.letter-spacing-60 {
  letter-spacing: 0.6rem;
}

.letter-spacing-61 {
  letter-spacing: 0.61rem;
}

.letter-spacing-62 {
  letter-spacing: 0.62rem;
}

.letter-spacing-63 {
  letter-spacing: 0.63rem;
}

.letter-spacing-64 {
  letter-spacing: 0.64rem;
}

.letter-spacing-65 {
  letter-spacing: 0.65rem;
}

.letter-spacing-66 {
  letter-spacing: 0.66rem;
}

.letter-spacing-67 {
  letter-spacing: 0.67rem;
}

.letter-spacing-68 {
  letter-spacing: 0.68rem;
}

.letter-spacing-69 {
  letter-spacing: 0.69rem;
}

.letter-spacing-70 {
  letter-spacing: 0.7rem;
}

.letter-spacing-71 {
  letter-spacing: 0.71rem;
}

.letter-spacing-72 {
  letter-spacing: 0.72rem;
}

.letter-spacing-73 {
  letter-spacing: 0.73rem;
}

.letter-spacing-74 {
  letter-spacing: 0.74rem;
}

.letter-spacing-75 {
  letter-spacing: 0.75rem;
}

.letter-spacing-76 {
  letter-spacing: 0.76rem;
}

.letter-spacing-77 {
  letter-spacing: 0.77rem;
}

.letter-spacing-78 {
  letter-spacing: 0.78rem;
}

.letter-spacing-79 {
  letter-spacing: 0.79rem;
}

.letter-spacing-80 {
  letter-spacing: 0.8rem;
}

.letter-spacing-81 {
  letter-spacing: 0.81rem;
}

.letter-spacing-82 {
  letter-spacing: 0.82rem;
}

.letter-spacing-83 {
  letter-spacing: 0.83rem;
}

.letter-spacing-84 {
  letter-spacing: 0.84rem;
}

.letter-spacing-85 {
  letter-spacing: 0.85rem;
}

.letter-spacing-86 {
  letter-spacing: 0.86rem;
}

.letter-spacing-87 {
  letter-spacing: 0.87rem;
}

.letter-spacing-88 {
  letter-spacing: 0.88rem;
}

.letter-spacing-89 {
  letter-spacing: 0.89rem;
}

.letter-spacing-90 {
  letter-spacing: 0.9rem;
}

.letter-spacing-91 {
  letter-spacing: 0.91rem;
}

.letter-spacing-92 {
  letter-spacing: 0.92rem;
}

.letter-spacing-93 {
  letter-spacing: 0.93rem;
}

.letter-spacing-94 {
  letter-spacing: 0.94rem;
}

.letter-spacing-95 {
  letter-spacing: 0.95rem;
}

.letter-spacing-96 {
  letter-spacing: 0.96rem;
}

.letter-spacing-97 {
  letter-spacing: 0.97rem;
}

.letter-spacing-98 {
  letter-spacing: 0.98rem;
}

.letter-spacing-99 {
  letter-spacing: 0.99rem;
}

.letter-spacing-100 {
  letter-spacing: 1rem;
}

.letter-spacing-101 {
  letter-spacing: 1.01rem;
}

.letter-spacing-102 {
  letter-spacing: 1.02rem;
}

.letter-spacing-103 {
  letter-spacing: 1.03rem;
}

.letter-spacing-104 {
  letter-spacing: 1.04rem;
}

.letter-spacing-105 {
  letter-spacing: 1.05rem;
}

.letter-spacing-106 {
  letter-spacing: 1.06rem;
}

.letter-spacing-107 {
  letter-spacing: 1.07rem;
}

.letter-spacing-108 {
  letter-spacing: 1.08rem;
}

.letter-spacing-109 {
  letter-spacing: 1.09rem;
}

.letter-spacing-110 {
  letter-spacing: 1.1rem;
}

.letter-spacing-111 {
  letter-spacing: 1.11rem;
}

.letter-spacing-112 {
  letter-spacing: 1.12rem;
}

.letter-spacing-113 {
  letter-spacing: 1.13rem;
}

.letter-spacing-114 {
  letter-spacing: 1.14rem;
}

.letter-spacing-115 {
  letter-spacing: 1.15rem;
}

.letter-spacing-116 {
  letter-spacing: 1.16rem;
}

.letter-spacing-117 {
  letter-spacing: 1.17rem;
}

.letter-spacing-118 {
  letter-spacing: 1.18rem;
}

.letter-spacing-119 {
  letter-spacing: 1.19rem;
}

.letter-spacing-120 {
  letter-spacing: 1.2rem;
}

.letter-spacing-121 {
  letter-spacing: 1.21rem;
}

.letter-spacing-122 {
  letter-spacing: 1.22rem;
}

.letter-spacing-123 {
  letter-spacing: 1.23rem;
}

.letter-spacing-124 {
  letter-spacing: 1.24rem;
}

.letter-spacing-125 {
  letter-spacing: 1.25rem;
}

.letter-spacing-126 {
  letter-spacing: 1.26rem;
}

.letter-spacing-127 {
  letter-spacing: 1.27rem;
}

.letter-spacing-128 {
  letter-spacing: 1.28rem;
}

.letter-spacing-129 {
  letter-spacing: 1.29rem;
}

.letter-spacing-130 {
  letter-spacing: 1.3rem;
}

.letter-spacing-131 {
  letter-spacing: 1.31rem;
}

.letter-spacing-132 {
  letter-spacing: 1.32rem;
}

.letter-spacing-133 {
  letter-spacing: 1.33rem;
}

.letter-spacing-134 {
  letter-spacing: 1.34rem;
}

.letter-spacing-135 {
  letter-spacing: 1.35rem;
}

.letter-spacing-136 {
  letter-spacing: 1.36rem;
}

.letter-spacing-137 {
  letter-spacing: 1.37rem;
}

.letter-spacing-138 {
  letter-spacing: 1.38rem;
}

.letter-spacing-139 {
  letter-spacing: 1.39rem;
}

.letter-spacing-140 {
  letter-spacing: 1.4rem;
}

.letter-spacing-141 {
  letter-spacing: 1.41rem;
}

.letter-spacing-142 {
  letter-spacing: 1.42rem;
}

.letter-spacing-143 {
  letter-spacing: 1.43rem;
}

.letter-spacing-144 {
  letter-spacing: 1.44rem;
}

.letter-spacing-145 {
  letter-spacing: 1.45rem;
}

.letter-spacing-146 {
  letter-spacing: 1.46rem;
}

.letter-spacing-147 {
  letter-spacing: 1.47rem;
}

.letter-spacing-148 {
  letter-spacing: 1.48rem;
}

.letter-spacing-149 {
  letter-spacing: 1.49rem;
}

.letter-spacing-150 {
  letter-spacing: 1.5rem;
}

.letter-spacing-151 {
  letter-spacing: 1.51rem;
}

.letter-spacing-152 {
  letter-spacing: 1.52rem;
}

.letter-spacing-153 {
  letter-spacing: 1.53rem;
}

.letter-spacing-154 {
  letter-spacing: 1.54rem;
}

.letter-spacing-155 {
  letter-spacing: 1.55rem;
}

.letter-spacing-156 {
  letter-spacing: 1.56rem;
}

.letter-spacing-157 {
  letter-spacing: 1.57rem;
}

.letter-spacing-158 {
  letter-spacing: 1.58rem;
}

.letter-spacing-159 {
  letter-spacing: 1.59rem;
}

.letter-spacing-160 {
  letter-spacing: 1.6rem;
}

.letter-spacing-161 {
  letter-spacing: 1.61rem;
}

.letter-spacing-162 {
  letter-spacing: 1.62rem;
}

.letter-spacing-163 {
  letter-spacing: 1.63rem;
}

.letter-spacing-164 {
  letter-spacing: 1.64rem;
}

.letter-spacing-165 {
  letter-spacing: 1.65rem;
}

.letter-spacing-166 {
  letter-spacing: 1.66rem;
}

.letter-spacing-167 {
  letter-spacing: 1.67rem;
}

.letter-spacing-168 {
  letter-spacing: 1.68rem;
}

.letter-spacing-169 {
  letter-spacing: 1.69rem;
}

.letter-spacing-170 {
  letter-spacing: 1.7rem;
}

.letter-spacing-171 {
  letter-spacing: 1.71rem;
}

.letter-spacing-172 {
  letter-spacing: 1.72rem;
}

.letter-spacing-173 {
  letter-spacing: 1.73rem;
}

.letter-spacing-174 {
  letter-spacing: 1.74rem;
}

.letter-spacing-175 {
  letter-spacing: 1.75rem;
}

.letter-spacing-176 {
  letter-spacing: 1.76rem;
}

.letter-spacing-177 {
  letter-spacing: 1.77rem;
}

.letter-spacing-178 {
  letter-spacing: 1.78rem;
}

.letter-spacing-179 {
  letter-spacing: 1.79rem;
}

.letter-spacing-180 {
  letter-spacing: 1.8rem;
}

.letter-spacing-181 {
  letter-spacing: 1.81rem;
}

.letter-spacing-182 {
  letter-spacing: 1.82rem;
}

.letter-spacing-183 {
  letter-spacing: 1.83rem;
}

.letter-spacing-184 {
  letter-spacing: 1.84rem;
}

.letter-spacing-185 {
  letter-spacing: 1.85rem;
}

.letter-spacing-186 {
  letter-spacing: 1.86rem;
}

.letter-spacing-187 {
  letter-spacing: 1.87rem;
}

.letter-spacing-188 {
  letter-spacing: 1.88rem;
}

.letter-spacing-189 {
  letter-spacing: 1.89rem;
}

.letter-spacing-190 {
  letter-spacing: 1.9rem;
}

.letter-spacing-191 {
  letter-spacing: 1.91rem;
}

.letter-spacing-192 {
  letter-spacing: 1.92rem;
}

.letter-spacing-193 {
  letter-spacing: 1.93rem;
}

.letter-spacing-194 {
  letter-spacing: 1.94rem;
}

.letter-spacing-195 {
  letter-spacing: 1.95rem;
}

.letter-spacing-196 {
  letter-spacing: 1.96rem;
}

.letter-spacing-197 {
  letter-spacing: 1.97rem;
}

.letter-spacing-198 {
  letter-spacing: 1.98rem;
}

.letter-spacing-199 {
  letter-spacing: 1.99rem;
}

.letter-spacing-200 {
  letter-spacing: 2rem;
}

.letter-spacing-201 {
  letter-spacing: 2.01rem;
}

.letter-spacing-202 {
  letter-spacing: 2.02rem;
}

.letter-spacing-203 {
  letter-spacing: 2.03rem;
}

.letter-spacing-204 {
  letter-spacing: 2.04rem;
}

.letter-spacing-205 {
  letter-spacing: 2.05rem;
}

.letter-spacing-206 {
  letter-spacing: 2.06rem;
}

.letter-spacing-207 {
  letter-spacing: 2.07rem;
}

.letter-spacing-208 {
  letter-spacing: 2.08rem;
}

.letter-spacing-209 {
  letter-spacing: 2.09rem;
}

.letter-spacing-210 {
  letter-spacing: 2.1rem;
}

.letter-spacing-211 {
  letter-spacing: 2.11rem;
}

.letter-spacing-212 {
  letter-spacing: 2.12rem;
}

.letter-spacing-213 {
  letter-spacing: 2.13rem;
}

.letter-spacing-214 {
  letter-spacing: 2.14rem;
}

.letter-spacing-215 {
  letter-spacing: 2.15rem;
}

.letter-spacing-216 {
  letter-spacing: 2.16rem;
}

.letter-spacing-217 {
  letter-spacing: 2.17rem;
}

.letter-spacing-218 {
  letter-spacing: 2.18rem;
}

.letter-spacing-219 {
  letter-spacing: 2.19rem;
}

.letter-spacing-220 {
  letter-spacing: 2.2rem;
}

.letter-spacing-221 {
  letter-spacing: 2.21rem;
}

.letter-spacing-222 {
  letter-spacing: 2.22rem;
}

.letter-spacing-223 {
  letter-spacing: 2.23rem;
}

.letter-spacing-224 {
  letter-spacing: 2.24rem;
}

.letter-spacing-225 {
  letter-spacing: 2.25rem;
}

.letter-spacing-226 {
  letter-spacing: 2.26rem;
}

.letter-spacing-227 {
  letter-spacing: 2.27rem;
}

.letter-spacing-228 {
  letter-spacing: 2.28rem;
}

.letter-spacing-229 {
  letter-spacing: 2.29rem;
}

.letter-spacing-230 {
  letter-spacing: 2.3rem;
}

.letter-spacing-231 {
  letter-spacing: 2.31rem;
}

.letter-spacing-232 {
  letter-spacing: 2.32rem;
}

.letter-spacing-233 {
  letter-spacing: 2.33rem;
}

.letter-spacing-234 {
  letter-spacing: 2.34rem;
}

.letter-spacing-235 {
  letter-spacing: 2.35rem;
}

.letter-spacing-236 {
  letter-spacing: 2.36rem;
}

.letter-spacing-237 {
  letter-spacing: 2.37rem;
}

.letter-spacing-238 {
  letter-spacing: 2.38rem;
}

.letter-spacing-239 {
  letter-spacing: 2.39rem;
}

.letter-spacing-240 {
  letter-spacing: 2.4rem;
}

.letter-spacing-241 {
  letter-spacing: 2.41rem;
}

.letter-spacing-242 {
  letter-spacing: 2.42rem;
}

.letter-spacing-243 {
  letter-spacing: 2.43rem;
}

.letter-spacing-244 {
  letter-spacing: 2.44rem;
}

.letter-spacing-245 {
  letter-spacing: 2.45rem;
}

.letter-spacing-246 {
  letter-spacing: 2.46rem;
}

.letter-spacing-247 {
  letter-spacing: 2.47rem;
}

.letter-spacing-248 {
  letter-spacing: 2.48rem;
}

.letter-spacing-249 {
  letter-spacing: 2.49rem;
}

.letter-spacing-250 {
  letter-spacing: 2.5rem;
}

.letter-spacing-251 {
  letter-spacing: 2.51rem;
}

.letter-spacing-252 {
  letter-spacing: 2.52rem;
}

.letter-spacing-253 {
  letter-spacing: 2.53rem;
}

.letter-spacing-254 {
  letter-spacing: 2.54rem;
}

.letter-spacing-255 {
  letter-spacing: 2.55rem;
}

.letter-spacing-256 {
  letter-spacing: 2.56rem;
}

.letter-spacing-257 {
  letter-spacing: 2.57rem;
}

.letter-spacing-258 {
  letter-spacing: 2.58rem;
}

.letter-spacing-259 {
  letter-spacing: 2.59rem;
}

.letter-spacing-260 {
  letter-spacing: 2.6rem;
}

.letter-spacing-261 {
  letter-spacing: 2.61rem;
}

.letter-spacing-262 {
  letter-spacing: 2.62rem;
}

.letter-spacing-263 {
  letter-spacing: 2.63rem;
}

.letter-spacing-264 {
  letter-spacing: 2.64rem;
}

.letter-spacing-265 {
  letter-spacing: 2.65rem;
}

.letter-spacing-266 {
  letter-spacing: 2.66rem;
}

.letter-spacing-267 {
  letter-spacing: 2.67rem;
}

.letter-spacing-268 {
  letter-spacing: 2.68rem;
}

.letter-spacing-269 {
  letter-spacing: 2.69rem;
}

.letter-spacing-270 {
  letter-spacing: 2.7rem;
}

.letter-spacing-271 {
  letter-spacing: 2.71rem;
}

.letter-spacing-272 {
  letter-spacing: 2.72rem;
}

.letter-spacing-273 {
  letter-spacing: 2.73rem;
}

.letter-spacing-274 {
  letter-spacing: 2.74rem;
}

.letter-spacing-275 {
  letter-spacing: 2.75rem;
}

.letter-spacing-276 {
  letter-spacing: 2.76rem;
}

.letter-spacing-277 {
  letter-spacing: 2.77rem;
}

.letter-spacing-278 {
  letter-spacing: 2.78rem;
}

.letter-spacing-279 {
  letter-spacing: 2.79rem;
}

.letter-spacing-280 {
  letter-spacing: 2.8rem;
}

.letter-spacing-281 {
  letter-spacing: 2.81rem;
}

.letter-spacing-282 {
  letter-spacing: 2.82rem;
}

.letter-spacing-283 {
  letter-spacing: 2.83rem;
}

.letter-spacing-284 {
  letter-spacing: 2.84rem;
}

.letter-spacing-285 {
  letter-spacing: 2.85rem;
}

.letter-spacing-286 {
  letter-spacing: 2.86rem;
}

.letter-spacing-287 {
  letter-spacing: 2.87rem;
}

.letter-spacing-288 {
  letter-spacing: 2.88rem;
}

.letter-spacing-289 {
  letter-spacing: 2.89rem;
}

.letter-spacing-290 {
  letter-spacing: 2.9rem;
}

.letter-spacing-291 {
  letter-spacing: 2.91rem;
}

.letter-spacing-292 {
  letter-spacing: 2.92rem;
}

.letter-spacing-293 {
  letter-spacing: 2.93rem;
}

.letter-spacing-294 {
  letter-spacing: 2.94rem;
}

.letter-spacing-295 {
  letter-spacing: 2.95rem;
}

.letter-spacing-296 {
  letter-spacing: 2.96rem;
}

.letter-spacing-297 {
  letter-spacing: 2.97rem;
}

.letter-spacing-298 {
  letter-spacing: 2.98rem;
}

.letter-spacing-299 {
  letter-spacing: 2.99rem;
}

.letter-spacing-300 {
  letter-spacing: 3rem;
}

.letter-spacing-301 {
  letter-spacing: 3.01rem;
}

.letter-spacing-302 {
  letter-spacing: 3.02rem;
}

.letter-spacing-303 {
  letter-spacing: 3.03rem;
}

.letter-spacing-304 {
  letter-spacing: 3.04rem;
}

.letter-spacing-305 {
  letter-spacing: 3.05rem;
}

.letter-spacing-306 {
  letter-spacing: 3.06rem;
}

.letter-spacing-307 {
  letter-spacing: 3.07rem;
}

.letter-spacing-308 {
  letter-spacing: 3.08rem;
}

.letter-spacing-309 {
  letter-spacing: 3.09rem;
}

.letter-spacing-310 {
  letter-spacing: 3.1rem;
}

.letter-spacing-311 {
  letter-spacing: 3.11rem;
}

.letter-spacing-312 {
  letter-spacing: 3.12rem;
}

.letter-spacing-313 {
  letter-spacing: 3.13rem;
}

.letter-spacing-314 {
  letter-spacing: 3.14rem;
}

.letter-spacing-315 {
  letter-spacing: 3.15rem;
}

.letter-spacing-316 {
  letter-spacing: 3.16rem;
}

.letter-spacing-317 {
  letter-spacing: 3.17rem;
}

.letter-spacing-318 {
  letter-spacing: 3.18rem;
}

.letter-spacing-319 {
  letter-spacing: 3.19rem;
}

.letter-spacing-320 {
  letter-spacing: 3.2rem;
}

.letter-spacing-321 {
  letter-spacing: 3.21rem;
}

.letter-spacing-322 {
  letter-spacing: 3.22rem;
}

.letter-spacing-323 {
  letter-spacing: 3.23rem;
}

.letter-spacing-324 {
  letter-spacing: 3.24rem;
}

.letter-spacing-325 {
  letter-spacing: 3.25rem;
}

.letter-spacing-326 {
  letter-spacing: 3.26rem;
}

.letter-spacing-327 {
  letter-spacing: 3.27rem;
}

.letter-spacing-328 {
  letter-spacing: 3.28rem;
}

.letter-spacing-329 {
  letter-spacing: 3.29rem;
}

.letter-spacing-330 {
  letter-spacing: 3.3rem;
}

.letter-spacing-331 {
  letter-spacing: 3.31rem;
}

.letter-spacing-332 {
  letter-spacing: 3.32rem;
}

.letter-spacing-333 {
  letter-spacing: 3.33rem;
}

.letter-spacing-334 {
  letter-spacing: 3.34rem;
}

.letter-spacing-335 {
  letter-spacing: 3.35rem;
}

.letter-spacing-336 {
  letter-spacing: 3.36rem;
}

.letter-spacing-337 {
  letter-spacing: 3.37rem;
}

.letter-spacing-338 {
  letter-spacing: 3.38rem;
}

.letter-spacing-339 {
  letter-spacing: 3.39rem;
}

.letter-spacing-340 {
  letter-spacing: 3.4rem;
}

.letter-spacing-341 {
  letter-spacing: 3.41rem;
}

.letter-spacing-342 {
  letter-spacing: 3.42rem;
}

.letter-spacing-343 {
  letter-spacing: 3.43rem;
}

.letter-spacing-344 {
  letter-spacing: 3.44rem;
}

.letter-spacing-345 {
  letter-spacing: 3.45rem;
}

.letter-spacing-346 {
  letter-spacing: 3.46rem;
}

.letter-spacing-347 {
  letter-spacing: 3.47rem;
}

.letter-spacing-348 {
  letter-spacing: 3.48rem;
}

.letter-spacing-349 {
  letter-spacing: 3.49rem;
}

.letter-spacing-350 {
  letter-spacing: 3.5rem;
}

.letter-05 {
  letter-spacing: 0.09em !important;
}

.letter-spacing-neg-5 {
  letter-spacing: -0.01rem;
}

/*Text alignment options*/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-after-horizontal-line {
  position: relative;
}
.text-after-horizontal-line:after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  position: absolute;
  margin-left: 23px;
}
@media (min-width: 768px) {
  .text-after-horizontal-line:after {
    bottom: 55%;
    transform: translateY(55%);
  }
}
@media (max-width: 767.98px) {
  .text-after-horizontal-line:after {
    bottom: 20px;
  }
}
.text-after-horizontal-line.line-white:after {
  background-color: #ffffff;
}
.text-after-horizontal-line.line-black:after {
  background-color: #3A4044;
}

.text-bottom-horizontal-line {
  position: relative;
}
.text-bottom-horizontal-line:after {
  background-color: #3A4044;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 40px;
}

/*Reponsive text alignment options*/
@media (max-width: 767.98px) {
  .text-center-xs {
    text-align: center;
  }
}
/*Text transform options*/
.text-uppercase {
  text-transform: uppercase;
}

.remove-underlines a {
  text-decoration: none;
}

/*Fades text 80%*/
.text-fade-70 {
  opacity: 0.7;
}

.text-fade-80 {
  opacity: 0.8;
}

.text-opacity-0 {
  opacity: 0;
}

.text-opacity-10 {
  opacity: 0.1;
}

.text-opacity-20 {
  opacity: 0.2;
}

.text-opacity-30 {
  opacity: 0.3;
}

.text-opacity-40 {
  opacity: 0.4;
}

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

.text-opacity-60 {
  opacity: 0.6;
}

.text-opacity-70 {
  opacity: 0.7;
}

.text-opacity-80 {
  opacity: 0.8;
}

.text-opacity-90 {
  opacity: 0.9;
}

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

/*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: 15px;
}
p:last-child {
  margin-bottom: 0;
}

/*Global anchor styles*/
a {
  color: inherit;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  a {
    transition: none;
  }
}
a:hover {
  text-decoration: none;
  color: #AC441E;
}
a.hover-white:hover {
  color: #ffffff;
}

.color-link-red {
  color: #AC441E;
}
.color-link-red:hover {
  color: #3A4044;
}

.color-link-blue {
  color: #307698;
}
.color-link-blue:hover {
  color: #3A4044;
}

/*General dropcap setup*/
/*Adds underline to anchors within this element*/
.link-underlinea,
.link-underline a {
  text-decoration: underline;
}
.link-underlinea:hover,
.link-underline a:hover {
  color: currentColor;
  text-decoration: none;
}

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

.text-fit {
  width: 100%;
  display: block;
  overflow-wrap: normal;
}

/*Used to style Gutenberg blocks that do not contain classes direclty on elements*/
.cms-styles {
  /*Typography*/
  /*Headings*/
  /*Combined list styles*/
  /*Unordered list*/
  /*Ordered list*/
  /*Images*/
  /*Alignment options*/
}
.cms-styles p {
  font-size: 1.8rem;
}
.cms-styles.font-small p,
.cms-styles.font-small li {
  font-size: 1.4rem;
}
.cms-styles h1 {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  .cms-styles h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .cms-styles h1 {
    font-size: 6rem;
  }
}
@media (min-width: 1400px) {
  .cms-styles h1 {
    font-size: 7.5rem;
  }
}
.cms-styles h2 {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  clear: both;
  margin-bottom: 20px;
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .cms-styles h2 {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .cms-styles h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .cms-styles h2 {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .cms-styles h2 {
    font-size: 4rem;
  }
}
.cms-styles h2:not(.color-white) {
  color: #000;
}
.cms-styles h3 {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .cms-styles h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .cms-styles h3 {
    font-size: 2rem;
  }
}
.cms-styles h3:not(.color-white) {
  color: #000;
}
.cms-styles h4,
.cms-styles h5 {
  clear: both;
  margin-bottom: 20px;
}
.cms-styles .figure,
.cms-styles .card-image {
  margin-bottom: 40px;
}
.cms-styles .wp-block-quote {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-left: 3px solid transparent;
  border-color: #000;
  border-right: none;
  font-size: 4rem;
  padding-top: 0;
  padding-bottom: 0;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .cms-styles .wp-block-quote {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .cms-styles .wp-block-quote {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .cms-styles .wp-block-quote {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .cms-styles .wp-block-quote {
    font-size: 4rem;
  }
}
.cms-styles .wp-block-quote p {
  font-style: 4rem;
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
}
@media (max-width: 575.98px) {
  .cms-styles .wp-block-quote p {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .cms-styles .wp-block-quote p {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .cms-styles .wp-block-quote p {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .cms-styles .wp-block-quote p {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .cms-styles .wp-block-quote p {
    margin-top: -10px;
    margin-bottom: -10px;
  }
}
@media (min-width: 992px) {
  .cms-styles .wp-block-quote {
    padding-left: 20px;
    max-width: 570px;
  }
}
@media (max-width: 991.98px) {
  .cms-styles .wp-block-quote {
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .cms-styles .wp-block-quote.is-style-default {
    margin-left: 0px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cms-styles .wp-block-quote.is-style-default {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .cms-styles .wp-block-quote.is-style-floated-quote {
    float: right;
    margin-right: -240px;
    margin-left: 50px;
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cms-styles .wp-block-quote.is-style-floated-quote {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .cms-styles .alignleft {
    float: left;
    margin-left: -240px;
    margin-right: 50px;
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cms-styles .alignleft {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .cms-styles .alignright {
    float: right;
    margin-right: -240px;
    margin-left: 50px;
    margin-top: 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .cms-styles .alignright {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/*Buttons*/
.btn, .gtranslate_wrapper .gt_selector, .wp-block-button__link {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.4s;
  white-space: normal;
  /*Prmary button*/
  /*Stretches button full width at all breakpoints*/
  /*Stretches button full width on smallest breakpoint only*/
  /*Stretches button full width on smallest breakpoint only*/
}
@media (prefers-reduced-motion) {
  .btn, .gtranslate_wrapper .gt_selector, .wp-block-button__link {
    transition: none;
  }
}
.btn:hover, .gtranslate_wrapper .gt_selector:hover, .wp-block-button__link:hover {
  text-decoration: none;
}
.btn.btn-primary, .gtranslate_wrapper .gt_selector, .wp-block-button__link {
  align-items: center;
  min-height: 40px;
  min-width: 40px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  border: 2px solid #3A4044;
  padding: 12px 18px 9px;
  background-color: transparent;
  text-transform: uppercase;
}
@media screen and (min-width: 993px) and (max-width: 1600px) {
  .btn.btn-primary, .gtranslate_wrapper .gt_selector, .wp-block-button__link {
    padding: 12px 18px 11px;
  }
}
.btn.btn-primary:hover, .gtranslate_wrapper .gt_selector:hover, .wp-block-button__link:hover {
  background-color: rgba(152, 157, 159, 0.1);
  color: #3A4044;
}
.btn.btn-primary.btn-remove-hover:hover, .gtranslate_wrapper .btn-remove-hover.gt_selector:hover, .btn-remove-hover.wp-block-button__link:hover {
  background: #ffffff;
}
@media (min-width: 992px) {
  .btn.btn-primary.btn-small, .gtranslate_wrapper .btn-small.gt_selector, .btn-small.wp-block-button__link {
    padding: 6px 12px;
  }
}
@media (max-width: 991.98px) {
  .btn.btn-primary.btn-small, .gtranslate_wrapper .btn-small.gt_selector, .btn-small.wp-block-button__link {
    font-family: "Metropolis", sans-serif;
    font-size: 1.8rem;
    padding: 9px 15px;
  }
}
@media (max-width: 767.98px) {
  .btn.btn-primary.sm-btn-text-14, .gtranslate_wrapper .sm-btn-text-14.gt_selector, .sm-btn-text-14.wp-block-button__link {
    font-size: 1.4rem;
  }
}
@media (max-width: 991.98px) {
  .btn.btn-primary.btn-position-absolute-bottom-md, .gtranslate_wrapper .btn-position-absolute-bottom-md.gt_selector, .btn-position-absolute-bottom-md.wp-block-button__link {
    position: absolute;
    bottom: 0;
  }
}
.btn.btn-white, .gtranslate_wrapper .btn-white.gt_selector, .btn-white.wp-block-button__link {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn.btn-white:hover, .gtranslate_wrapper .btn-white.gt_selector:hover, .btn-white.wp-block-button__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFF;
}
.btn.btn-red, .gtranslate_wrapper .btn-red.gt_selector, .wp-block-button__link {
  border: 2px solid #AC441E;
  color: #AC441E;
}
.btn.btn-red:hover, .gtranslate_wrapper .btn-red.gt_selector:hover, .wp-block-button__link:hover {
  background-color: rgba(172, 68, 30, 0.1);
  color: #AC441E;
}
.btn.btn-charcoal, .gtranslate_wrapper .btn-charcoal.gt_selector, .btn-charcoal.wp-block-button__link {
  background-color: rgba(58, 64, 68, 0.3);
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn.btn-charcoal:hover, .gtranslate_wrapper .btn-charcoal.gt_selector:hover, .btn-charcoal.wp-block-button__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.btn.btn-black, .gtranslate_wrapper .btn-black.gt_selector, .btn-black.wp-block-button__link {
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid #3A4044;
  color: #3A4044;
}
.btn.btn-black:hover, .gtranslate_wrapper .btn-black.gt_selector:hover, .btn-black.wp-block-button__link:hover {
  background-color: rgba(58, 64, 68, 0.1);
  color: #3A4044;
}
.btn.btn-blue, .gtranslate_wrapper .btn-blue.gt_selector, .btn-blue.wp-block-button__link {
  background-color: transparent;
  border: 2px solid #307698;
  color: #307698;
}
.btn.btn-blue:hover, .gtranslate_wrapper .btn-blue.gt_selector:hover, .btn-blue.wp-block-button__link:hover {
  background-color: #307698;
  color: #FFF;
}
.btn.btn-secondary, .gtranslate_wrapper .btn-secondary.gt_selector, .btn-secondary.wp-block-button__link {
  font-family: "GothamSSm-Bold", sans-serif;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .btn.btn-secondary, .gtranslate_wrapper .btn-secondary.gt_selector, .btn-secondary.wp-block-button__link {
    padding: 9px 13px;
  }
}
@media (max-width: 991.98px) {
  .btn.btn-secondary, .gtranslate_wrapper .btn-secondary.gt_selector, .btn-secondary.wp-block-button__link {
    padding: 9px;
  }
}
@media (max-width: 991.98px) {
  .btn.btn-secondary.btn-hero-mobile, .gtranslate_wrapper .btn-secondary.btn-hero-mobile.gt_selector, .btn-secondary.btn-hero-mobile.wp-block-button__link {
    width: 190px;
    font-size: 1.6rem;
    margin: 0 auto;
  }
}
.btn.btn-video, .gtranslate_wrapper .btn-video.gt_selector, .btn-video.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn.btn-video svg, .gtranslate_wrapper .btn-video.gt_selector svg, .btn-video.wp-block-button__link svg {
  width: 13px;
  height: 17px;
  margin-top: -2.5px;
}
.btn.btn-full, .gtranslate_wrapper .btn-full.gt_selector, .btn-full.wp-block-button__link {
  width: 100%;
}
.btn.btn-arrow-pad, .gtranslate_wrapper .btn-arrow-pad.gt_selector, .btn-arrow-pad.wp-block-button__link {
  padding-right: 40px;
}
@media (max-width: 991.98px) {
  .btn.btn-md-full, .gtranslate_wrapper .btn-md-full.gt_selector, .btn-md-full.wp-block-button__link {
    width: 100%;
  }
  .btn.btn-md-width, .gtranslate_wrapper .btn-md-width.gt_selector, .btn-md-width.wp-block-button__link {
    width: 50%;
  }
}
@media (max-width: 575.98px) {
  .btn.btn-xs-full, .gtranslate_wrapper .btn-xs-full.gt_selector, .btn-xs-full.wp-block-button__link {
    width: 100%;
  }
  .btn.btn-md-width, .gtranslate_wrapper .btn-md-width.gt_selector, .btn-md-width.wp-block-button__link {
    width: 75%;
  }
}
.btn.btn-remove-border, .gtranslate_wrapper .btn-remove-border.gt_selector, .btn-remove-border.wp-block-button__link {
  border: none;
}
@media (max-width: 991.98px) {
  .btn.btn-xs-remove-border, .gtranslate_wrapper .btn-xs-remove-border.gt_selector, .btn-xs-remove-border.wp-block-button__link {
    border: none;
  }
  .btn.btn-lg-remove-pad-left, .gtranslate_wrapper .btn-lg-remove-pad-left.gt_selector, .btn-lg-remove-pad-left.wp-block-button__link {
    padding-left: 0;
    margin-left: 0 !important;
  }
}
.btn:disabled, .gtranslate_wrapper .gt_selector:disabled, .wp-block-button__link:disabled, .btn[disabled], .gtranslate_wrapper [disabled].gt_selector, [disabled].wp-block-button__link {
  cursor: not-allowed;
  opacity: 0.5;
}

/*Adds arrow before or after text*/
.btn-link-arrow {
  position: relative;
  /*Arrow position options*/
  /*Button arrow color options*/
}
.btn-link-arrow:before, .btn-link-arrow:after {
  border: solid;
  border-width: 0 2px 2px 0;
  display: block;
  height: 8px;
  position: absolute;
  top: 50%;
  transition: all 0.4s;
  vertical-align: middle;
  width: 8px;
}
@media (prefers-reduced-motion) {
  .btn-link-arrow:before, .btn-link-arrow:after {
    transition: none;
  }
}
.btn-link-arrow.btn-arrow-before {
  padding-left: 25px;
}
.btn-link-arrow.btn-arrow-before:before {
  content: "";
  left: 0;
  transform: rotate(135deg) translate(-50%, 0);
}
.btn-link-arrow.btn-arrow-before:hover:after {
  transform: rotate(135deg) translate(-50%, 0);
}
.btn-link-arrow.btn-arrow-after {
  padding-right: 25px;
  text-align: right;
}
.btn-link-arrow.btn-arrow-after:after {
  content: "";
  display: block;
  right: 0;
  transform: rotate(-45deg) translate(50%, 0);
}
.btn-link-arrow.btn-arrow-after:hover {
  color: inherit;
}
.btn-link-arrow.btn-arrow-after:hover:after {
  transform: rotate(-45deg) translate(50%, 0);
}
.btn-link-arrow.btn-arrow-white:before, .btn-link-arrow.btn-arrow-white:after {
  border-color: #FFF;
}

@media (min-width: 992px) {
  .btn-filter {
    width: 165px;
  }
}
@media (max-width: 991.98px) {
  .btn-filter {
    width: 200px;
  }
}

.btn-box-light {
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  opacity: 0.3;
}
.btn-box-light:hover {
  opacity: 1;
}
@media (max-width: 991.98px) {
  .btn-box-light {
    width: 40px;
    height: 40px;
  }
}

/*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;
  }
}
@media (max-width: 374.98px) {
  .btn-row:not(.inline-xs) .btn, .btn-row:not(.inline-xs) .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .btn-row:not(.inline-xs) .gt_selector, .btn-row:not(.inline-xs) .wp-block-button__link {
    width: 100%;
  }
}
.btn-row .btn, .btn-row .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .btn-row .gt_selector, .btn-row .wp-block-button__link {
  margin-left: 10px;
  margin-right: 10px;
}
.btn-row .btn.no-margin, .btn-row .gtranslate_wrapper .no-margin.gt_selector, .gtranslate_wrapper .btn-row .no-margin.gt_selector, .btn-row .no-margin.wp-block-button__link {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991.98px) {
  .btn-row.btn-xs-stack .btn, .btn-row.btn-xs-stack .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .btn-row.btn-xs-stack .gt_selector, .btn-row.btn-xs-stack .wp-block-button__link {
    margin-bottom: 10px;
  }
}

[class*=text-center] .btn-row {
  justify-content: center;
}

/*Stacked column of buttons*/
.btn-stacked {
  display: inline-flex;
  flex-direction: column;
}
.btn-stacked .btn:not(:last-child), .btn-stacked .gtranslate_wrapper .gt_selector:not(:last-child), .gtranslate_wrapper .btn-stacked .gt_selector:not(:last-child), .btn-stacked .wp-block-button__link:not(:last-child) {
  margin-bottom: 10px;
}

.btn-link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}
.btn-link:hover {
  color: #AC441E;
}

#dealerSearch input {
  vertical-align: middle;
}
#dealerSearch button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  height: 50px;
  vertical-align: middle;
}

.wp-block-button__link {
  background-color: transparent;
  border-radius: 0;
}
.wp-block-button__link:active, .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:visited {
  color: #AC441E;
}

#dealerZip {
  background-color: #FFF;
}

/*Global combined dropdown/dropup setup*/
.dropdown:not(.dropdown-full) .dropdown-toggle:after,
.dropup:not(.dropdown-full) .dropdown-toggle:after {
  border-bottom: 5px solid #000;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: none;
  content: "";
  display: block;
  height: 0;
  transition: all 0.4s;
  width: 0;
}
@media (prefers-reduced-motion) {
  .dropdown:not(.dropdown-full) .dropdown-toggle:after,
  .dropup:not(.dropdown-full) .dropdown-toggle:after {
    transition: none;
  }
}

/*Global dropdown setup*/
.dropdown.show .dropdown-toggle:after {
  transform: rotate(0);
}
.dropdown:not(.dropdown-full) .dropdown-toggle:after {
  transform: rotate(180deg);
}

/*Global dropup setup*/
.dropup .btn-toggle:after {
  transform: rotate(-180deg);
}

/*Global dropdown toggle setup which adds arrow behind dropdown toggle*/
.dropdown-toggle {
  background: transparent;
  border: none;
  align-items: center;
  display: flex;
  padding: 0 20px;
  position: relative;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .dropdown-toggle {
    transition: none;
  }
}
/*Global dropdown menu setup*/
.dropdown-menu.filter-drop {
  border: 2px solid #333;
}
.dropdown-menu .heading-subtitle.sm-heading-fs-25 {
  text-align: center;
}

.dropdown.select-drop {
  position: relative !important;
}
.dropdown.select-drop .btn, .dropdown.select-drop .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .dropdown.select-drop .gt_selector, .dropdown.select-drop .wp-block-button__link {
  justify-content: start;
}
.dropdown.select-drop .btn::after, .dropdown.select-drop .gtranslate_wrapper .gt_selector::after, .gtranslate_wrapper .dropdown.select-drop .gt_selector::after, .dropdown.select-drop .wp-block-button__link::after {
  border: none !important;
}
.dropdown.select-drop .dropdown-menu {
  padding: 0px;
}
.dropdown.select-drop .dropdown-menu.show {
  width: auto;
  min-width: 100%;
  border: 2px solid #989D9F;
}
.dropdown.select-drop .dropdown-menu .dropdown-item {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.dropdown.select-drop .dropdown-toggle:not(.placeholder) {
  color: #AC441E;
  background-color: #e9ecef;
  border-color: #AC441E;
}

/*Dropdown itemm*/
.dropdown-full-width {
  width: 100%;
}

/*Used to display form fields within columns*/
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/*Form group*/
.form-group {
  display: flex;
  position: relative;
  /*Displays label on top of field*/
  /*Displays label/field inline*/
  /*Smaller margins*/
}
.form-group label.error {
  color: red;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 5px;
}
.form-group .input-errors li {
  color: red;
  font-size: 1.4rem;
}
.form-group:not(.form-group-inline) {
  flex-direction: column;
  margin-bottom: 30px;
}
.form-group.form-group-inline {
  align-items: center;
  display: flex;
  position: relative;
}
.form-group.form-group-inline .form-label {
  flex: 1;
  margin: 10px 25px 0 0;
}
.form-group.form-group-inline .form-control {
  padding: 30px 20px 20px 0;
  width: 100%;
}
.form-group.form-group-sm:not(:last-child) {
  margin-bottom: 10px;
}

/*Global form labels*/
.form-label {
  display: block;
  margin-bottom: 5px;
  /*Color options*/
}
.form-label.label-light {
  color: #FFF;
}
.form-label.label-dark {
  color: #000;
}

/*Global input styles*/
.form-control {
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  line-height: 1;
  transition: all 0.4s;
  /*Input color options*/
}
@media (prefers-reduced-motion) {
  .form-control {
    transition: none;
  }
}
.form-control:not(textarea):not(.control-transparent) {
  height: 50px;
}
.form-control:not(.control-transparent) {
  border: solid 2px transparent;
  padding: 5px 15px;
}
@media (min-width: 992px) {
  .form-control:not(.control-transparent) {
    width: 100%;
  }
}
.form-control::-moz-placeholder {
  color: #3A4044;
}
.form-control::placeholder {
  color: #3A4044;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
}
.form-control:focus-visible {
  outline: 5px auto #AC441E;
}
.form-control:not(textarea) {
  height: 50px;
}
.form-control::-moz-placeholder {
  color: #3A4044;
}
.form-control::placeholder {
  color: #3A4044;
}
.form-control:focus {
  box-shadow: none;
  outline: none;
}
.form-control:focus-visible {
  outline: 5px auto #AC441E;
}
.form-control.control-light {
  background-color: transparent;
  border-color: transparent;
}
.form-control.control-dark {
  border: solid 2px #3A4044;
  padding: 5px 15px;
  background-color: rgba(152, 157, 159, 0.1);
  width: 100%;
}
.form-control.border-black {
  border-color: #3A4044;
}
.form-control.border-red {
  border-color: #AC441E;
}
.form-control.control-transparent {
  background-color: transparent;
  border-color: transparent;
}
.form-check, .gfield .copy_values_option_container, .gfield .gchoice {
  list-style: none;
  margin: 0;
  padding: 0;
  /*Checkbox label*/
  /*Combined styles*/
  /*Checkbox styles*/
  /*Radio styles*/
}
.form-check label, .gfield .copy_values_option_container label, .gfield .gchoice label {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  min-height: 24px;
  padding: 2px 0 2px 40px;
  position: relative;
  text-align: left;
  /*Combined*/
  /*Unchecked*/
}
.form-check label:before, .gfield .copy_values_option_container label:before, .gfield .gchoice label:before, .form-check label:after, .gfield .copy_values_option_container label:after, .gfield .gchoice label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.form-check label:before, .gfield .copy_values_option_container label:before, .gfield .gchoice label:before {
  background: #f5f5f5;
  border: solid 2px #e5e6e7;
  height: 30px;
  left: 0;
  width: 30px;
}
.form-check label a, .gfield .copy_values_option_container label a, .gfield .gchoice label a {
  color: #3A4044;
  display: inline-flex;
}
.form-check input[type=checkbox], .gfield .copy_values_option_container input[type=checkbox], .gfield .gchoice input[type=checkbox],
.form-check input[type=radio],
.gfield .copy_values_option_container input[type=radio],
.gfield .gchoice input[type=radio] {
  opacity: 0;
  position: absolute;
  /*Unchecked*/
  /*Checked*/
  /*Disabled*/
  /*Focused*/
}
.form-check input[type=checkbox] + label:after, .gfield .copy_values_option_container input[type=checkbox] + label:after, .gfield .gchoice input[type=checkbox] + label:after,
.form-check input[type=radio] + label:after,
.gfield .copy_values_option_container input[type=radio] + label:after,
.gfield .gchoice input[type=radio] + label:after {
  opacity: 0;
  visibility: hidden;
}
.form-check input[type=checkbox]:checked + label:before, .gfield .copy_values_option_container input[type=checkbox]:checked + label:before, .gfield .gchoice input[type=checkbox]:checked + label:before,
.form-check input[type=radio]:checked + label:before,
.gfield .copy_values_option_container input[type=radio]:checked + label:before,
.gfield .gchoice input[type=radio]:checked + label:before {
  background: #ffffff;
}
.form-check input[type=checkbox]:checked + label:after, .gfield .copy_values_option_container input[type=checkbox]:checked + label:after, .gfield .gchoice input[type=checkbox]:checked + label:after,
.form-check input[type=radio]:checked + label:after,
.gfield .copy_values_option_container input[type=radio]:checked + label:after,
.gfield .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
  visibility: visible;
}
.form-check input[type=checkbox]:disabled:hover + label, .gfield .copy_values_option_container input[type=checkbox]:disabled:hover + label, .gfield .gchoice input[type=checkbox]:disabled:hover + label,
.form-check input[type=radio]:disabled:hover + label,
.gfield .copy_values_option_container input[type=radio]:disabled:hover + label,
.gfield .gchoice input[type=radio]:disabled:hover + label {
  cursor: not-allowed;
}
.form-check input[type=checkbox]:disabled + label, .gfield .copy_values_option_container input[type=checkbox]:disabled + label, .gfield .gchoice input[type=checkbox]:disabled + label,
.form-check input[type=radio]:disabled + label,
.gfield .copy_values_option_container input[type=radio]:disabled + label,
.gfield .gchoice input[type=radio]:disabled + label {
  opacity: 0.3;
}
.form-check input[type=checkbox]:focus + label:before, .gfield .copy_values_option_container input[type=checkbox]:focus + label:before, .gfield .gchoice input[type=checkbox]:focus + label:before,
.form-check input[type=radio]:focus + label:before,
.gfield .copy_values_option_container input[type=radio]:focus + label:before,
.gfield .gchoice input[type=radio]:focus + label:before {
  outline: 1px dotted rgba(58, 64, 68, 0.3);
}
.form-check input[type=checkbox] + label:after, .gfield .copy_values_option_container input[type=checkbox] + label:after, .gfield .gchoice input[type=checkbox] + label:after {
  background: transparent url("data:image/svg+xml,%3Csvg width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 1L6 12L1 7' stroke='%23AC441E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") center center/contain no-repeat;
  height: 11px;
  left: 7px;
  width: 16px;
}
.form-check input[type=radio] + label:before, .gfield .copy_values_option_container input[type=radio] + label:before, .gfield .gchoice input[type=radio] + label:before, .form-check input[type=radio] + label:after, .gfield .copy_values_option_container input[type=radio] + label:after, .gfield .gchoice input[type=radio] + label:after {
  border-radius: 50%;
}
.form-check input[type=radio] + label:after, .gfield .copy_values_option_container input[type=radio] + label:after, .gfield .gchoice input[type=radio] + label:after {
  background: transparent url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='12' height='12' rx='6' fill='white' stroke='%23AC441E' stroke-width='2'/%3E%3C/svg%3E%0A") center center/contain no-repeat;
  height: 14px;
  left: 8px;
  width: 14px;
}
/*Global textarea*/
textarea.form-control:not(.control-transparent) {
  padding-top: 15px;
}
textarea:focus-visible {
  outline: 5px auto #AC441E;
}

/*Global select*/
select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: rgba(152, 157, 159, 0.1);
  background-image: url("/assets/images/icons/icon-dropdown.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  height: 50px;
  padding: 10px 15px;
  position: relative;
  border: solid 2px #3A4044;
  width: 100%;
}
select .form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("/assets/images/icons/icon-dropdown.svg");
  background-position: right 25px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  height: 50px;
  padding: 10px 15px;
  position: relative;
}
.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
  background-color: #fff;
  background-image: url("/assets/images/icons/icon-dropdown.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  height: 50px;
  padding: 10px 15px;
  position: relative;
}
.form-select:focus, .form-select:focus-visible {
  border-color: #AC441E;
}
.form-select:focus-visible {
  outline: 5px auto #AC441E;
}

input:disabled {
  color: rgba(58, 64, 68, 0.6);
}

.form-full-width {
  width: 100%;
}

@media (max-width: 991.98px) {
  .filter-container {
    display: none;
  }
}
.filter-container.sm-visible {
  display: block;
}
@media (min-width: 992px) {
  .filter-container.height-restrict .dropdown-menu {
    max-height: 355px;
    overflow-y: auto;
  }
}
@media screen and (min-width: 992px) and (max-height: 768px) {
  .filter-container.height-restrict .dropdown-menu {
    max-height: 230px;
  }
}
.filter-container .filter-search-box {
  display: flex;
  align-items: center;
  border: 2px solid #3A4044;
  padding: 0 20px;
  height: 50px;
  background: #fff;
}
.filter-container .filter-search-box .search-icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.filter-container .filter-search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.filter-container .filter-search-box input:hover {
  background: transparent;
}
.filter-container .filter-search-box input::-moz-placeholder {
  color: #3A4044;
  text-transform: uppercase;
}
.filter-container .filter-search-box input::placeholder {
  color: #3A4044;
  text-transform: uppercase;
}

.placeholder-label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.input-cream-bg {
  background-color: rgba(152, 157, 159, 0.1);
}

.js-activate-label-shrink .placeholder-label {
  font-size: 11px;
  top: 13px;
  left: 10px;
  height: 18px;
}
.js-activate-label-shrink input, .js-activate-label-shrink select, .js-activate-label-shrink textarea {
  font-family: "Metropolis", sans-serif !important;
  font-size: 18px !important;
  letter-spacing: 0rem !important;
  padding: 18px 20px 6px 8px !important;
  text-transform: initial !important;
  background-color: #ffffff !important;
}
.js-activate-label-shrink .input-cream-bg {
  background-color: #fff;
}

.form-error label, .form-error input, .form-error span, .form-error textarea {
  color: #AC441E !important;
  background: #ffffff;
}

.form-error-message {
  color: #AC441E;
}

.gform_validation_error .gform_submission_error {
  color: #AC441E !important;
  font-size: 2rem;
  margin-bottom: 20px;
}

.gform_required_legend {
  display: none;
}

.gform_fields {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -15px;
}
.gform_fields .gfield--type-section:not(:first-child) .gsection_title {
  border-top: 2px solid #e5e6e7;
  padding-top: 20px;
  margin-top: 20px;
}
.gform_fields .gfield--type-section .gsection_title {
  margin-bottom: 0;
}

.gfield {
  padding: 0 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .gfield.gfield--width-half {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .gfield.gfield--width-third {
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  .gfield.input-half input,
  .gfield.input-half select,
  .gfield.input-half textarea {
    width: 50%;
  }
}
.gfield.gfield_error .gfield_label,
.gfield.gfield_error .gform-field-label--type-sub {
  color: #AC441E;
}
.gfield.gfield_error input:not([type=radio]):not([type=checkbox]),
.gfield.gfield_error select,
.gfield.gfield_error textarea {
  border-color: #AC441E;
}
.gfield .gsection_title {
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #3A4044;
  margin: 0;
}
.gfield .gfield_label {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #3A4044;
}
.gfield .gform-field-label--type-sub {
  font-size: 1.2rem;
}
.gfield .gfield_required_text,
.gfield .gfield_required_custom {
  text-transform: none;
  font-size: 1.2rem;
}
.gfield .gfield_description {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.gfield.gfield--type-captcha {
  margin-bottom: 0;
}
.gfield.gfield--type-address.gfield_contains_required .gfield_label {
  display: none;
}
.gfield.gfield--type-address.gfield_contains_required .gform-field-label--type-sub {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #3A4044;
}
.gfield.gfield--type-address.gfield_contains_required .gform-field-label--type-sub::after {
  content: "*";
  margin-left: 2px;
}
.gfield input:not([type=radio]):not([type=checkbox]),
.gfield textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  line-height: 1;
  transition: all 0.4s;
  border: solid 2px #e5e6e7;
  padding: 5px 15px;
  background-color: #f5f5f5;
  width: 100%;
}
@media (prefers-reduced-motion) {
  .gfield input:not([type=radio]):not([type=checkbox]),
  .gfield textarea {
    transition: none;
  }
}
.gfield input:not([type=radio]):not([type=checkbox]):not(textarea),
.gfield textarea:not(textarea) {
  height: 50px;
}
.gfield input:not([type=radio]):not([type=checkbox])::-moz-placeholder, .gfield textarea::-moz-placeholder {
  color: #3A4044;
}
.gfield input:not([type=radio]):not([type=checkbox])::placeholder,
.gfield textarea::placeholder {
  color: #3A4044;
}
.gfield input:not([type=radio]):not([type=checkbox]):focus,
.gfield textarea:focus {
  box-shadow: none;
  outline: none;
}
.gfield input:not([type=radio]):not([type=checkbox]):focus-visible,
.gfield textarea:focus-visible {
  outline: 5px auto #3A4044;
  background-color: #ffffff;
}
.gfield select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f5f5f5;
  background-image: url("/assets/images/icons/icon-dropdown.svg");
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px 6px;
  height: 50px;
  padding: 10px 15px;
  position: relative;
  border: solid 2px #e5e6e7;
  width: 100%;
}
.gfield select option.gf_placeholder {
  opacity: 0.7;
}
.gfield select:focus, .gfield select:focus-visible {
  border-color: #AC441E;
}
.gfield select:focus-visible {
  outline: 5px auto #AC441E;
}
.gfield .gchoice {
  margin-bottom: 10px;
}
.gfield .copy_values_option_container {
  margin-bottom: 15px;
}
.gfield .gfield_validation_message {
  color: #AC441E;
  margin-top: 5px;
}

.styled-form.has-title .gform_wrapper {
  position: relative;
}
@media (min-width: 1200px) {
  .styled-form.has-title .gf_page_steps {
    position: absolute;
    top: 10px;
    right: 0;
  }
}
.styled-form form {
  max-width: 870px;
  margin: 0 auto;
}
.styled-form .gform_heading {
  border-bottom: 2px solid #3A4044;
  padding-bottom: 20px;
  text-align: center;
}
.styled-form .gform_heading .gform_title {
  margin: 0 auto;
}
.styled-form .gf_page_steps {
  text-align: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.styled-form .gf_page_steps .gf_step {
  padding: 10px 25px;
  position: relative;
}
.styled-form .gf_page_steps .gf_step:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #e5e6e7;
}
.styled-form .gf_page_steps .gf_step .gf_step_label {
  color: #989D9F;
}
.styled-form .gf_page_steps .gf_step.gf_step_active .gf_step_label {
  color: #AC441E;
}
.styled-form .gf_page_steps .gf_step.gf_step_active:after {
  background-color: #AC441E;
}
.styled-form .gf_page_steps .gf_step.gf_step_completed .gf_step_label:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='10' viewBox='0 0 13 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 1.5L4.625 8.5L1.5 5.31818' stroke='%23989D9F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 5px;
  width: 13px;
  background-size: contain;
  background-repeat: no-repeat;
}
.styled-form .gf_page_steps .gf_step_number {
  display: none;
}
.styled-form .gfield--type-address .ginput_complex {
  margin-inline: -15px;
}
.styled-form .gfield--type-address .ginput_complex > * {
  padding-inline: 15px;
}
@media (min-width: 576px) {
  .styled-form .gfield--type-address .address_line_1,
  .styled-form .gfield--type-address .address_line_2,
  .styled-form .gfield--type-address .address_city {
    width: 50%;
  }
  .styled-form .gfield--type-address .address_state,
  .styled-form .gfield--type-address .address_zip {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .styled-form .gfield--type-address .address_line_2 input {
    width: calc(50% - 15px);
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .styled-form .gfield--type-address .address_state,
  .styled-form .gfield--type-address .address_zip {
    width: 50%;
  }
}
.styled-form .gform_required_legend {
  display: block;
  text-align: right;
}
.styled-form .gform_submission_error {
  display: none;
}

.hotspot-slider .slider-item {
  position: relative;
}
.hotspot-slider .slider-item .hotspot {
  -webkit-appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 20px;
  cursor: pointer;
  border-radius: 50%;
  background-color: transparent;
}
.hotspot-slider .slider-item .hotspot:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.hotspot-slider .slider-item .hotspot .hotspot-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  content: "";
  display: block;
  background-color: #FFF;
  box-shadow: 0px 36px 69px rgba(0, 0, 0, 0.19), 0px 15.0399px 28.8265px rgba(0, 0, 0, 0.136582), 0px 8.04107px 15.4121px rgba(0, 0, 0, 0.11326), 0px 4.50776px 8.63987px rgba(0, 0, 0, 0.095), 0px 2.39404px 4.58857px rgba(0, 0, 0, 0.0767396), 0px 0.996212px 1.90941px rgba(0, 0, 0, 0.0534177);
}

.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(1n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(1n) {
  animation-delay: 0.4s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(2n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(2n) {
  animation-delay: 0.8s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(3n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(3n) {
  animation-delay: 1.2s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(4n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(4n) {
  animation-delay: 1.6s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(5n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(5n) {
  animation-delay: 2s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(6n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(6n) {
  animation-delay: 2.4s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(7n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(7n) {
  animation-delay: 2.8s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(8n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(8n) {
  animation-delay: 3.2s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(9n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(9n) {
  animation-delay: 3.6s;
}
.hotspot-slider .slider-item.slick-current .hotspot:nth-of-type(10n),
.hotspot-slider .swiper-slide-active .hotspot:nth-of-type(10n) {
  animation-delay: 4s;
}
.hotspot-slider .slider-item.slick-current .hotspot,
.hotspot-slider .swiper-slide-active .hotspot {
  animation: pulse-animation 2.5s ease-in-out;
}
.hotspot-slider .slider-item.slick-current .ba-slider-handle:before,
.hotspot-slider .swiper-slide-active .ba-slider-handle:before {
  animation: pulse-animation-dark 2.5s ease-in-out;
}

.tippy-box[data-theme~=showplace] {
  background-color: #FFF;
  border-radius: 0;
  color: #3A4044;
  padding: 50px;
}
.tippy-box[data-theme~=showplace] .tippy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.tippy-box[data-theme~=showplace] .tippy-content .tippy-close {
  position: absolute;
  top: -40px;
  right: -40px;
  padding: 10px;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .tippy-box[data-theme~=showplace] .tippy-content .door-image {
    display: none;
  }
}
.tippy-box[data-theme~=showplace] .tippy-content p {
  margin: 0;
  font-size: 1.5rem;
}
.tippy-box[data-theme~=showplace] .tippy-content a {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  color: #AC441E;
}
.tippy-box[data-theme~=showplace] .tippy-content .list-section:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  .tippy-box[data-theme~=showplace] .tippy-content .btn, .tippy-box[data-theme~=showplace] .tippy-content .wp-block-button__link, .tippy-box[data-theme~=showplace] .tippy-content .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .tippy-box[data-theme~=showplace] .tippy-content .gt_selector {
    display: inline-block;
    margin-bottom: 15px;
  }
}

.sunset-hotspot .list-section {
  color: #737373;
}
.sunset-hotspot .list-section .color-red {
  color: #737373;
}
.sunset-hotspot .sunset-alert:not(:last-of-type) {
  margin-bottom: 15px;
}

.loader {
  display: none;
  margin-left: 20px;
  font-size: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: load5 1.1s infinite ease;
  transform: translateZ(0);
}
.loader.show {
  display: inline-block;
}
@keyframes load5 {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #AC441E, 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2), 2.5em 0em 0 0em rgba(172, 68, 30, 0.2), 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.2), 0em 2.5em 0 0em rgba(172, 68, 30, 0.2), -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.2), -2.6em 0em 0 0em rgba(172, 68, 30, 0.5), -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.7), 1.8em -1.8em 0 0em #AC441E, 2.5em 0em 0 0em rgba(172, 68, 30, 0.2), 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.2), 0em 2.5em 0 0em rgba(172, 68, 30, 0.2), -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.2), -2.6em 0em 0 0em rgba(172, 68, 30, 0.2), -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.5), 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.7), 2.5em 0em 0 0em #AC441E, 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.2), 0em 2.5em 0 0em rgba(172, 68, 30, 0.2), -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.2), -2.6em 0em 0 0em rgba(172, 68, 30, 0.2), -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.2), 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.5), 2.5em 0em 0 0em rgba(172, 68, 30, 0.7), 1.75em 1.75em 0 0em #AC441E, 0em 2.5em 0 0em rgba(172, 68, 30, 0.2), -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.2), -2.6em 0em 0 0em rgba(172, 68, 30, 0.2), -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.2), 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2), 2.5em 0em 0 0em rgba(172, 68, 30, 0.5), 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.7), 0em 2.5em 0 0em #AC441E, -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.2), -2.6em 0em 0 0em rgba(172, 68, 30, 0.2), -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.2), 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2), 2.5em 0em 0 0em rgba(172, 68, 30, 0.2), 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.5), 0em 2.5em 0 0em rgba(172, 68, 30, 0.7), -1.8em 1.8em 0 0em #AC441E, -2.6em 0em 0 0em rgba(172, 68, 30, 0.2), -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.2), 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2), 2.5em 0em 0 0em rgba(172, 68, 30, 0.2), 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.2), 0em 2.5em 0 0em rgba(172, 68, 30, 0.5), -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.7), -2.6em 0em 0 0em #AC441E, -1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(172, 68, 30, 0.2), 1.8em -1.8em 0 0em rgba(172, 68, 30, 0.2), 2.5em 0em 0 0em rgba(172, 68, 30, 0.2), 1.75em 1.75em 0 0em rgba(172, 68, 30, 0.2), 0em 2.5em 0 0em rgba(172, 68, 30, 0.2), -1.8em 1.8em 0 0em rgba(172, 68, 30, 0.5), -2.6em 0em 0 0em rgba(172, 68, 30, 0.7), -1.8em -1.8em 0 0em #AC441E;
  }
}
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;
}
@media (min-width: 992px) {
  .list-unstyled li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .list-unstyled li:not(:last-child) {
    margin-bottom: 0;
  }
}
.list-unstyled.li-child-mb-0 li {
  margin-bottom: 0;
}

/*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: 20px;
}

/*Adds dividers between list items*/
.list-inline-dividers {
  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;
}
.list-inline-dividers li.full-border-height,
.list-inline-dividers .list-item.full-border-height {
  position: relative;
  padding: 5px 28px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .list-inline-dividers li.full-border-height,
  .list-inline-dividers .list-item.full-border-height {
    padding: 5px 14px;
  }
}
@media (max-width: 575.98px) {
  .list-inline-dividers li.full-border-height,
  .list-inline-dividers .list-item.full-border-height {
    padding: 5px 20px;
  }
}
.list-inline-dividers li.full-border-height:first-child,
.list-inline-dividers .list-item.full-border-height:first-child {
  padding-left: 0;
}
.list-inline-dividers li.full-border-height:last-child,
.list-inline-dividers .list-item.full-border-height:last-child {
  padding-right: 0;
}
.list-inline-dividers li.full-border-height:not(:last-child):after,
.list-inline-dividers .list-item.full-border-height:not(:last-child):after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  height: 100%;
  border-right: 2px solid #989D9F;
  opacity: 25%;
  top: 0;
  margin: 0;
}
.list-inline-dividers.hero-list li:not(:last-child):after {
  content: "|";
  opacity: 70%;
  display: inline-block;
  margin: 0 16px;
}
.list-inline-dividers.hero-list li span {
  text-transform: initial;
  font-size: 1.2rem;
  letter-spacing: 0.01rem;
}
.list-inline-dividers.hero-list li span.key {
  font-family: "Metropolis", sans-serif;
  opacity: 0.7;
}
.list-inline-dividers.hero-list li span.value {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 994px) and (max-width: 1100px) {
  .list-inline-dividers.hero-list li:not(:last-child):after {
    margin: 0 9px !important;
  }
}

/*General list with yellow bullets*/
.list-bullets, .cms-styles ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0 0 0 30px;
}
.list-bullets li, .cms-styles ul li {
  padding: 0 0 0 20px;
  position: relative;
}
.list-bullets li:not(:last-child), .cms-styles ul li:not(:last-child) {
  margin-bottom: 15px;
}
.list-bullets li:before, .cms-styles ul li:before {
  background: #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 8px;
}

/*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: 0px;
         column-gap: 0px;
  }
  .list-col-3-lg {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (min-width: 992px) {
  .list-mw-160 li {
    width: 168px;
  }
}

.share {
  padding-left: 0;
}
.share li {
  list-style-type: none;
}

/*Base description list styling*/
.list-description {
  display: flex;
  flex-wrap: wrap;
}
.list-description dt,
.list-description dd {
  font-family: "Metropolis", sans-serif;
  font-weight: 325;
  margin-bottom: 0;
}
@media (max-width: 374.98px) {
  .list-description dt,
  .list-description dd {
    width: 100%;
  }
}
@media (min-width: 375px) and (max-width: 575.98px) {
  .list-description dt {
    width: 35%;
  }
}
@media (min-width: 576px) {
  .list-description dt {
    width: 40%;
  }
}
@media (max-width: 374.98px) {
  .list-description dd {
    margin-bottom: 10px;
  }
}
@media (min-width: 375px) and (max-width: 575.98px) {
  .list-description dd {
    width: 65%;
  }
}
@media (min-width: 576px) {
  .list-description dd {
    width: 60%;
  }
}

.footer-inline-list {
  margin-left: 10px;
  display: flex;
  list-style: none;
  padding: 0;
}
@media (max-width: 991.98px) {
  .footer-inline-list {
    margin-left: 0;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .footer-inline-list .list-item:not(:last-child) {
    padding-right: 5px;
  }
  .footer-inline-list .list-item:not(:last-child)::after {
    padding-left: 5px;
    content: "|";
    display: inline-block;
  }
}

/* Components - specific elements that make up a page */
/*GLobal accordion setup*/
.accordion-default .accordion-item {
  padding-bottom: 30px;
}
.accordion-default .accordion-item:last-child {
  border-bottom: 2px solid #3A4044;
}
.accordion-default .accordion-button {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  transition: 0.3s all ease-in-out;
}
.accordion-default .accordion-button:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='13' viewBox='0 0 22 13' fill='none'%3E%3Cpath d='M21 1.66675L11 11.0001L1 1.66675' stroke='%233A4044' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s all ease-in-out;
}
.accordion-default .accordion-button:not(.collapsed) {
  border-top-color: #AC441E;
  color: #AC441E;
}
.accordion-default .accordion-button:not(.collapsed):after {
  transform: rotate(180deg);
}
.accordion-default .accordion-collapse {
  padding-top: 30px;
}
.accordion-default .accordion-collapse .accordion-body {
  max-width: 800px;
}

.bg-charcoal .accordion-default .accordion-item,
.bg-blue-dark .accordion-default .accordion-item,
.bg-blue .accordion-default .accordion-item {
  border-bottom-color: #ffffff;
}
.bg-charcoal .accordion-default .accordion-button,
.bg-blue-dark .accordion-default .accordion-button,
.bg-blue .accordion-default .accordion-button {
  color: rgba(255, 255, 255, 0.8);
  border-top-color: rgba(255, 255, 255, 0.5);
}
.bg-charcoal .accordion-default .accordion-button:after,
.bg-blue-dark .accordion-default .accordion-button:after,
.bg-blue .accordion-default .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='13' viewBox='0 0 22 13' fill='none'%3E%3Cpath d='M21 1.66675L11 11.0001L1 1.66675' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E");
}
.bg-charcoal .accordion-default .accordion-button:not(.collapsed),
.bg-blue-dark .accordion-default .accordion-button:not(.collapsed),
.bg-blue .accordion-default .accordion-button:not(.collapsed) {
  border-top-color: #ffffff;
  color: #ffffff;
}
.bg-charcoal .accordion-default .accordion-collapse .accordion-body,
.bg-blue-dark .accordion-default .accordion-collapse .accordion-body,
.bg-blue .accordion-default .accordion-collapse .accordion-body {
  color: #ffffff;
}

/*Card with centered content*/
.card-centered-content {
  position: relative;
  z-index: 1;
  /*Breakpoint options*/
}
@media (min-width: 992px) {
  .card-centered-content.card-centered-content-lg {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .card-centered-content.card-centered-content-xl {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  .card-centered-content.card-centered-content-xxl {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
  }
}

/*Used when cards are wrapped with an anchor*/
.card-link {
  background: transparent;
  border: none;
  color: inherit;
  height: 100%;
  text-align: inherit;
  text-decoration: none;
  width: 100%;
}
.card-link:hover {
  color: inherit;
}
/*Explore cards*/
.card-feature {
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-feature .card-header {
  background: transparent;
  color: #FFF;
  position: absolute;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .card-feature .card-header {
    left: 15px;
    right: 15px;
    top: 15px;
  }
}
@media (min-width: 1200px) {
  .card-feature .card-header {
    left: 25px;
    right: 25px;
    top: 25px;
  }
}
.card-feature .card-text {
  color: #FFF;
  position: absolute;
  text-decoration: none;
  z-index: 1;
}
.card-feature .card-arrow {
  align-items: center;
  border: solid 2px transparent;
  display: flex;
  justify-content: center;
}
@media (max-width: 1199.98px) {
  .card-feature .card-arrow {
    height: 60px;
    width: 60px;
  }
}
@media (min-width: 1200px) {
  .card-feature .card-arrow {
    height: 80px;
    width: 80px;
  }
}
.card-feature .card-arrow:after {
  background: url("/assets/images/icons/white-next-arrow.svg") center center/contain no-repeat;
  content: "";
  display: block;
  height: 14px;
  width: 20px;
}
.card-feature .card-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.feature-lg {
  justify-content: flex-end;
}
.feature-lg .card-text {
  background: rgba(17, 47, 61, 0.9);
}
@media (max-width: 1199.98px) {
  .feature-lg .card-text {
    bottom: 15px;
    left: 15px;
    padding: 15px 25% 15px 15px;
    right: 15px;
  }
}
@media (min-width: 1200px) {
  .feature-lg .card-text {
    bottom: 30px;
    left: 30px;
    padding: 30px 30% 30px 30px;
    right: 30px;
  }
}
.feature-lg .card-arrow {
  border-color: #FFF;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .feature-lg:not(:last-child) {
    border-bottom: solid 2px #FFF;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .feature-lg:nth-child(even) {
    border-left: solid 2px #FFF;
  }
  .feature-lg:nth-child(1), .feature-lg:nth-child(2) {
    border-bottom: solid 2px #FFF;
  }
}
@media (min-width: 1200px) {
  .feature-lg:not(:first-child) {
    border-left: solid 2px #FFF;
  }
}
.feature-lg:before {
  background: linear-gradient(0deg, rgba(17, 47, 61, 0.75), rgba(17, 47, 61, 0.75));
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: all 0.4s;
  visibility: visible;
  width: 100%;
  z-index: 1;
}
@media (prefers-reduced-motion) {
  .feature-lg:before {
    transition: none;
  }
}

/*Bio card*/
.card-bio .card-body {
  padding: 5px 0 0;
}
.card-bio p {
  margin-bottom: 0;
}

.bio-link {
  color: #307698;
  display: block;
  text-decoration: underline;
}

.figure-bio {
  background: #307698;
  color: #FFF;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 25px 30px;
}
.figure-bio .figcaption {
  display: flex;
  flex-direction: column;
}
.figure-bio .figcaption:not(cite) {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  display: block;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .figure-bio .figcaption:not(cite) {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .figure-bio .figcaption:not(cite) {
    font-size: 2rem;
  }
}
.figure-bio .figcaption cite {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-style: normal;
  text-transform: uppercase;
}

.card-logo {
  align-items: center;
  background: #f5f5f5;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 991.98px) {
  .card-logo {
    min-height: 200px;
  }
}
@media (min-width: 992px) {
  .card-logo {
    min-height: 350px;
  }
}

.hero-video video {
  max-width: 100%;
  height: auto;
  width: 100%;
}
.hero-video .video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-video .video-pause-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 20px;
  height: 20px;
  color: #FFF;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 20;
}
@media (max-width: 767.98px) {
  .hero-video .video-pause-button {
    right: 20px;
    bottom: 20px;
    width: 15px;
    height: 15px;
  }
}
.hero-video .video-pause-button.is-playing {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' height='800' viewBox='0 0 16 16' width='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white'%3E%3Cpath d='m7 1h-5v14h5z'/%3E%3Cpath d='m14 1h-5v14h5z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-video .video-pause-button.is-paused {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' height='800' viewBox='0 0 16 16' width='800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 16h2l8-8-8-8.00000003-2 .00000003z' fill='white'/%3E%3C/svg%3E");
}
.hero-video .video-pause-button__button {
  background: none;
  border: none;
  width: 100%;
  height: 100%;
}

.wp-block-embed .wp-block-embed__wrapper {
  height: max(40vw, 326px) !important;
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
}
.wp-block-embed .wp-block-embed__wrapper iframe {
  width: 100% !important;
  height: max(40vw, 326px) !important;
}

.issuuembed {
  width: 100% !important;
  height: max(40vw, 326px) !important;
  margin-left: auto;
  margin-right: auto;
}

.before-after {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
.before-after .before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.before-after .after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}

.before-after-thumb img {
  height: 100%;
}
.before-after-thumb .ba-icon {
  z-index: 2;
}
.before-after-thumb .thumb-holder:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: rgba(0, 0, 0, 0.1);
}
.before-after-thumb .before-img {
  position: absolute;
  height: 100%;
  top: 0;
  width: calc(50% + 1px);
  left: 0;
  border-right: 2px solid #f5f5f5;
}

.modal-dialog-full {
  max-width: none;
}
.modal-dialog-full .modal-content {
  width: auto;
}

/*Bio modal*/
@media (max-width: 767.98px) {
  .modal-bio .modal-body {
    padding: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .modal-bio .modal-body {
    padding: 80px;
  }
}
@media (min-width: 992px) {
  .modal-bio .modal-body {
    padding: 100px;
  }
}
.modal-bio .bio {
  position: relative;
  max-height: none;
  overflow: hidden;
  transition: all 0.3;
}
.modal-bio .bio.bio-collapsed {
  max-height: 320px;
}
.modal-bio .bio.bio-collapsed .overlay {
  display: flex;
}
.modal-bio .bio .overlay {
  position: absolute;
  width: 100%;
  height: 192px;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 0.01%, #F5F5F5 59.62%);
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.close-btn {
  transition: all 0.4s;
  background: transparent;
  border: solid 2px #307698;
  color: #307698;
  display: block;
  font-size: 0;
  height: 50px;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 50px;
}
@media (prefers-reduced-motion) {
  .close-btn {
    transition: none;
  }
}
.close-btn:before, .close-btn:after {
  background: #307698;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: all 0.4s;
  width: 18px;
}
@media (prefers-reduced-motion) {
  .close-btn:before, .close-btn:after {
    transition: none;
  }
}
.close-btn:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-btn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.close-btn:hover {
  background: #307698;
}
.close-btn:hover:before, .close-btn:hover:after {
  background: #FFF;
}

.modal-legal .modal-body,
.modal-legal .modal-footer {
  padding: 30px;
}
.modal-legal .modal-footer {
  padding-top: 10px;
}
.modal-legal .modal-footer .btn:not(:hover), .modal-legal .modal-footer .wp-block-button__link:not(:hover), .modal-legal .modal-footer .gtranslate_wrapper .gt_selector:not(:hover), .gtranslate_wrapper .modal-legal .modal-footer .gt_selector:not(:hover) {
  background-color: transparent;
}
.modal-legal .modal-content {
  font-size: 1.4rem;
}

#modalVideo .modal-dialog.modal-xl .modal-content {
  box-shadow: 0px 100px 232px 0px rgba(0, 0, 0, 0.07), 0px 41.778px 96.924px 0px rgba(0, 0, 0, 0.05), 0px 22.336px 51.82px 0px rgba(0, 0, 0, 0.04), 0px 12.522px 29.05px 0px rgba(0, 0, 0, 0.04), 0px 6.65px 15.428px 0px rgba(0, 0, 0, 0.03), 0px 2.767px 6.42px 0px rgba(0, 0, 0, 0.02);
}

/*Global navbar*/
.navbar {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slider {
  display: flex;
}
.slider:not(.slick-initialized) {
  overflow: hidden;
}
.slider:not(.slick-initialized) .slide-item {
  flex: 1 0 100%;
}

.slick-track {
  margin: 0;
}

.slider-stats .slider-item[aria-hidden=true] {
  opacity: 0.5;
}

/*Global slider dots setup*/
.slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  display: inline-flex;
}
.slick-dots li {
  display: inline-block;
  margin: 0 3px;
}
.slick-dots li.slick-active button:before {
  background: #FFF;
}
.slick-dots button {
  align-items: center;
  background: transparent;
  border: none;
  color: transparent;
  cursor: pointer;
  display: flex;
  font-size: 0;
  height: 10px;
  justify-content: center;
  line-height: 0;
  outline: none;
  padding: 0;
  position: relative;
  text-align: center;
  transition: all 0.4s;
  width: 30px;
}
@media (prefers-reduced-motion) {
  .slick-dots button {
    transition: none;
  }
}
.slick-dots button:before {
  background: #000;
  content: "";
  display: block;
  height: 3px;
  width: 100%;
}

.swiper-pagination-bullet {
  background-color: #3A4044 !important;
}

/*Global arrow setup*/
.slick-arrow,
.swiper-arrow {
  background: transparent;
  border: none;
  font-size: 0;
  line-height: 0;
  padding: 0;
  transition: all 0.4s;
  width: 40px;
  height: 40px;
}
@media (prefers-reduced-motion) {
  .slick-arrow,
  .swiper-arrow {
    transition: none;
  }
}
.slick-arrow:focus,
.swiper-arrow:focus {
  outline: none;
}
.slick-arrow:focus-visible,
.swiper-arrow:focus-visible {
  outline: 5px auto -webkit-focus-ring-color;
}

/*Slider control options*/
.slider-controls-light .slick-arrow {
  position: absolute;
  color: #FFF;
  border: 2px solid #FFF;
}
@media (min-width: 992px) {
  .slider-controls-light .slick-arrow {
    top: -80px;
  }
}
@media (max-width: 991.98px) {
  .slider-controls-light .slick-arrow {
    top: -68px;
  }
}
.slider-controls-light .slick-arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .slider-controls-light .slick-arrow.slick-prev {
    right: 69px;
  }
}
@media (max-width: 991.98px) {
  .slider-controls-light .slick-arrow.slick-prev {
    right: 59px;
  }
}
.slider-controls-light .slick-arrow.slick-prev:before {
  background: url("../images/icons/white-prev-arrow.svg") no-repeat center center;
}
.slider-controls-light .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.3;
}
@media (min-width: 992px) {
  .slider-controls-light .slick-arrow.slick-next {
    right: 30px;
  }
}
@media (max-width: 991.98px) {
  .slider-controls-light .slick-arrow.slick-next {
    right: 20px;
  }
}
.slider-controls-light .slick-arrow.slick-next:before {
  background: url("../images/icons/white-next-arrow.svg") no-repeat center center;
}
.slider-controls-light .slick-arrow.slick-next.slick-disabled {
  opacity: 0.3;
}

.gallery-controls-light .slick-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #FFF;
}
@media (min-width: 992px) {
  .gallery-controls-light .slick-arrow {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 991.98px) {
  .gallery-controls-light .slick-arrow {
    width: 40px;
    height: 40px;
  }
}
.gallery-controls-light .slick-arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .gallery-controls-light .slick-arrow.slick-prev {
    left: 30px;
  }
}
@media (max-width: 991.98px) {
  .gallery-controls-light .slick-arrow.slick-prev {
    left: 20px;
  }
}
.gallery-controls-light .slick-arrow.slick-prev:before {
  background: url("../images/icons/slider-prev.svg") no-repeat center center;
}
.gallery-controls-light .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.3;
}
@media (min-width: 992px) {
  .gallery-controls-light .slick-arrow.slick-next {
    right: 30px;
  }
}
@media (max-width: 991.98px) {
  .gallery-controls-light .slick-arrow.slick-next {
    right: 20px;
  }
}
.gallery-controls-light .slick-arrow.slick-next:before {
  background: url("../images/icons/slider-next.svg") no-repeat center center;
}
.gallery-controls-light .slick-arrow.slick-next.slick-disabled {
  opacity: 0.3;
}

.slider-controls-dark .slick-arrow {
  position: absolute;
  border: 2px solid #3A4044;
}
.slider-controls-dark .slick-arrow:hover {
  border: 2px solid #AC441E;
}
.slider-controls-dark .slick-arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.slider-controls-dark .slick-arrow.slick-prev:before {
  background: url("../images/icons/black-prev-arrow-filter.svg") no-repeat center center;
}
.slider-controls-dark .slick-arrow.slick-prev.slick-disabled {
  opacity: 0.3;
}
.slider-controls-dark .slick-arrow.slick-next:before {
  background: url("../images/icons/black-next-arrow.svg") no-repeat center center;
}
.slider-controls-dark .slick-arrow.slick-next.slick-disabled {
  opacity: 0.3;
}
.slider-controls-dark.deactivate-center-slider-controls .slick-prev {
  right: calc(50% - 1px);
  left: auto;
}
.slider-controls-dark.deactivate-center-slider-controls .slick-next {
  left: 50%;
  right: auto;
}
.slider-controls-dark.slick-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-controls-dark.slick-pagination .slick-arrow {
  position: static;
}
.slider-controls-dark.slick-pagination .slick-prev {
  margin-right: 10px;
}
.slider-controls-dark.slick-pagination .slick-next {
  margin-left: 10px;
}
.slider-controls-dark.slick-pagination .page-number {
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "GothamSSm-Bold", sans-serif;
  opacity: 0.75;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 20px;
  border-bottom: 2px solid transparent;
}
.slider-controls-dark.slick-pagination .page-number.active {
  opacity: 1;
  border-bottom-color: #3A4044;
}
.slider-controls-dark.slick-pagination .page-number:hover {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .slider-card.slider-controls-light .slick-arrow {
    top: auto;
    bottom: 30px;
    right: auto;
    left: 50%;
    transform: translateX(calc(-50% - 40px));
  }
}
@media (max-width: 991.98px) {
  .slider-card.slider-controls-light .slick-arrow.slick-next {
    transform: translateX(calc(-50% + 40px));
  }
}

.slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow {
  position: absolute;
}
@media (min-width: 992px) {
  .slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow {
    top: -80px;
  }
}
@media (max-width: 991.98px) {
  .slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow {
    top: -68px;
  }
}
.slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow:before, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow.slick-prev, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow.slick-prev {
    right: 69px;
  }
}
@media (max-width: 991.98px) {
  .slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow.slick-prev, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow.slick-prev {
    right: 59px;
  }
}
@media (min-width: 992px) {
  .slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow.slick-next, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow.slick-next {
    right: 30px;
  }
}
@media (max-width: 991.98px) {
  .slider-stats:not(.controls-bottom).slider-controls-light .slick-arrow.slick-next, .slider-stats:not(.controls-bottom).slider-controls-dark .slick-arrow.slick-next {
    right: 20px;
  }
}

/*Adds 30px gutter between slider items*/
.slider-gutters-30 .slick-track {
  margin-left: -15px;
  margin-right: -15px;
}
.slider-gutters-30 .slider-item {
  padding-left: 15px;
  padding-right: 15px;
}

/*Logo slider*/
.slider-logos {
  position: relative;
}
.slider-logos:before {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 150px;
  z-index: 1;
}
.slider-logos .slick-arrow {
  top: calc(100% + 30px);
}
.slider-logos .slick-prev {
  right: 38px;
}
.slider-logos .slick-next {
  right: 0;
}

.swiper-container {
  overflow: hidden;
  position: relative;
}
.swiper-container .slider-item {
  padding: 0;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.swiper-container .slider-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: auto;
}
.swiper-container > .swiper-wrapper, .swiper-container.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-in-out;
  display: flex;
  min-height: 375px;
}
@media screen and (max-width: 767px) and (min-width: 475px) {
  .swiper-container > .swiper-wrapper, .swiper-container.swiper-free-mode > .swiper-wrapper {
    min-height: 420px;
  }
}
.swiper-container .swiper-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #FFF;
}
@media (min-width: 992px) {
  .swiper-container .swiper-arrow {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 991.98px) {
  .swiper-container .swiper-arrow {
    width: 40px;
    height: 40px;
  }
}
.swiper-container .swiper-arrow:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-container .swiper-arrow.swiper-button-disabled, .swiper-container .swiper-arrow.swiper-disabled {
  opacity: 0.3;
}
.swiper-container .swiper-arrow.swiper-button-disabled:hover, .swiper-container .swiper-arrow.swiper-disabled:hover {
  cursor: default;
}
@media (min-width: 992px) {
  .swiper-container .swiper-arrow.swiper-prev {
    left: 30px;
  }
}
@media (max-width: 991.98px) {
  .swiper-container .swiper-arrow.swiper-prev {
    left: 20px;
  }
}
.swiper-container .swiper-arrow.swiper-prev:before {
  background: url("../images/icons/slider-prev.svg") no-repeat center center;
}
@media (min-width: 992px) {
  .swiper-container .swiper-arrow.swiper-next {
    right: 30px;
  }
}
@media (max-width: 991.98px) {
  .swiper-container .swiper-arrow.swiper-next {
    right: 20px;
  }
}
.swiper-container .swiper-arrow.swiper-next:before {
  background: url("../images/icons/slider-next.svg") no-repeat center center;
}
.swiper-container.controls-dark .swiper-arrow {
  border: 2px solid #3A4044;
}

.home-swiper .slider-item,
.home-swiper-auto .slider-item {
  padding: 0;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.home-swiper .slider-item img,
.home-swiper-auto .slider-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: auto;
}
@media (min-width: 768px) {
  .home-swiper > .swiper-wrapper, .home-swiper.swiper-free-mode > .swiper-wrapper,
  .home-swiper-auto > .swiper-wrapper,
  .home-swiper-auto.swiper-free-mode > .swiper-wrapper {
    min-height: 800px;
  }
}

.gallery-swiper .swiper-wrapper {
  align-items: center;
}
@media (min-width: 768px) {
  .gallery-swiper .swiper-wrapper {
    max-height: 800px;
  }
}
.gallery-swiper .slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0;
}
.gallery-swiper .slider-item img {
  max-width: 100%;
  width: auto;
}
@media (max-width: 991.98px) {
  .gallery-swiper .slider-item img {
    max-height: 420px;
  }
}
.gallery-swiper .slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-swiper .before-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  z-index: 5;
  background-color: #3A4044;
  overflow: hidden;
}
.gallery-swiper .ba-slider {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 10px;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: none;
}
.gallery-swiper .ba-slider .ba-slider-handle {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #f5f5f5;
  position: relative;
  cursor: move;
}
.gallery-swiper .ba-slider .ba-slider-handle:before, .gallery-swiper .ba-slider .ba-slider-handle:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-swiper .ba-slider .ba-slider-handle:after {
  background-image: url("../images/icons/before-after-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 9px;
  background-color: rgba(58, 64, 68, 0.6);
  width: 30px;
  height: 30px;
}
.gallery-swiper .ba-slider .ba-slider-handle::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-color: transparent;
}
.gallery-swiper .ba-label {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 10px;
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
}
.gallery-swiper .ba-label.ba-label-after {
  left: 50%;
}

.home-swiper-auto > .swiper-wrapper, .home-swiper-auto.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .swiper-controls {
    margin-top: 15px;
  }
}
.swiper-controls button {
  -webkit-appearance: none;
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  width: 30px;
  height: 30px;
  display: none;
  background: url("../images/icons/swiper-play.svg") no-repeat center center/cover;
}
@media (max-width: 767.98px) {
  .swiper-controls button {
    width: 20px;
    height: 20px;
  }
}
.swiper-controls button.swiper-pause {
  background-image: url("../images/icons/swiper-pause.svg");
  display: block;
}
.swiper-controls button.swiper-prev {
  background-image: url("../images/icons/swiper-prev.svg");
}
.swiper-controls button.swiper-next {
  background-image: url("../images/icons/swiper-next.svg");
}
.swiper-controls.swiper-paused .swiper-play,
.swiper-controls.swiper-paused .swiper-prev,
.swiper-controls.swiper-paused .swiper-next {
  display: block;
}
.swiper-controls.swiper-paused .swiper-pause {
  display: none;
}

.custom-slider {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
}
.custom-slider .slider-group {
  align-items: center;
  animation: infiniteScrollX 10s linear infinite;
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  min-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .custom-slider .slider-group {
    animation-play-state: paused;
  }
}
.custom-slider .slider-group .slider-item {
  margin-right: 4px;
  padding: 0;
}
.custom-slider .slider-group .slider-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: auto;
}

@keyframes infiniteScrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.door-images-block .swiper {
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 992px) {
  .door-images-block .swiper {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.door-images-block .swiper .swiper-wrapper {
  min-height: 0;
}
.door-images-block .swiper-pagination {
  bottom: 0;
}
.door-images-block .swiper-slide {
  height: auto;
}

.modal-swiper {
  width: 100%;
  max-width: 100%;
}
.modal-swiper > .swiper-wrapper {
  min-height: 0;
}
.modal-swiper .swiper-slide {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.modal-swiper .swiper-slide picture,
.modal-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

/*Layout*/
/*Global site header*/
.site-header {
  background: #FFF;
  position: relative;
  transition: all 0.4s;
  z-index: 20;
  /*GLobal site logo*/
  /*Navigation*/
  /*Adds navigation toggle button on mobile*/
  /*Toggler icons*/
}
@media (prefers-reduced-motion) {
  .site-header {
    transition: none;
  }
}
.site-header.is-fixed {
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1830px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.site-header .site-logo {
  background: url("/assets/images/branding/showplace-cabinetry-logo.svg") center center/contain no-repeat;
  display: block;
  z-index: 10;
}
@media (min-width: 1200px) {
  .site-header .site-logo {
    height: 55px;
    width: 250px;
    margin-top: 5px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .site-logo {
    margin-top: 10px;
  }
}
@media (max-width: 1280px) and (min-width: 1200px) {
  .site-header .site-logo {
    margin-top: 10px;
  }
}
@media (max-width: 1199.98px) {
  .site-header .site-logo {
    width: 200px;
    height: 44px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-header .navbar-expand-lg {
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .site-header .navbar .navbar-collapse {
    height: 100vh;
    min-height: -webkit-fill-available;
    position: relative;
  }
}
.site-header .navbar-toggle {
  background: transparent;
  border: none;
  height: 24px;
  opacity: 1;
  padding: 0;
  pointer-events: all;
  position: relative;
  transition: all 0.4s;
  visibility: visible;
  width: 24px;
  z-index: 100;
  /*Default styles*/
  /*Used when sub toggle is visible*/
}
@media (prefers-reduced-motion) {
  .site-header .navbar-toggle {
    transition: none;
  }
}
@media (min-width: 992px) {
  .site-header .navbar-toggle {
    display: none;
  }
}
.site-header .navbar-toggle:focus {
  outline: none;
}
.site-header .navbar-toggle.collapsed .toggler-icons {
  border-color: #000;
}
.site-header .navbar-toggle.collapsed .toggler-icons:before, .site-header .navbar-toggle.collapsed .toggler-icons:after {
  transform: translate(-50%, -50%);
}
.site-header .navbar-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.site-header .toggler-icons {
  background: transparent;
  border-bottom: 2px solid transparent;
  border-color: transparent;
  border-top: 2px solid transparent;
  color: #000;
  display: block;
  font-size: 0;
  height: 16px;
  margin: 0 auto;
  position: relative;
  transition: all 0.4s;
  width: 24px;
}
@media (prefers-reduced-motion) {
  .site-header .toggler-icons {
    transition: none;
  }
}
.site-header .toggler-icons:before, .site-header .toggler-icons:after {
  background: #000;
  border-radius: 2px;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: all 0.4s;
  width: 100%;
}
@media (prefers-reduced-motion) {
  .site-header .toggler-icons:before, .site-header .toggler-icons:after {
    transition: none;
  }
}
.site-header .toggler-icons:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .toggler-icons:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 992px) {
  .site-header .nav-item {
    position: static;
  }
}
.site-header .nav-item.bg-hover-transparent:hover .nav-link {
  background: transparent;
}
.site-header .nav-item .nav-link {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  color: #3A4044;
  /*Displays as button on desktop only*/
}
@media (min-width: 992px) {
  .site-header .nav-item .nav-link {
    font-size: 1.5rem;
    letter-spacing: 0.03rem;
  }
}
@media (max-width: 991.98px) {
  .site-header .nav-item .nav-link {
    letter-spacing: 0.04rem;
  }
}
@media (max-width: 1600px) and (min-width: 993px) {
  .site-header .nav-item .nav-link {
    font-size: 1.4rem;
  }
}
@media (max-width: 991.98px) {
  .site-header .nav-item .nav-link {
    padding: 15px 20px;
  }
}
@media (min-width: 1600px) {
  .site-header .nav-item .nav-link:not(.btn-lg) {
    padding: 54px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .site-header .nav-item .nav-link:not(.btn-lg) {
    padding: 54px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-header .nav-item .nav-link:not(.btn-lg) {
    font-size: 1.2rem;
    padding: 40px 15px;
  }
}
@media (max-width: 1280px) and (min-width: 993px) {
  .site-header .nav-item .nav-link:not(.btn-lg) {
    padding: 20px 15px;
  }
}
@media (max-width: 991.98px) {
  .site-header .nav-item .nav-link:not(.btn-lg) {
    padding: 15px 20px;
  }
}
@media (min-width: 992px) and (max-width: 991.98px) {
  .site-header .nav-item .nav-link:not(:last-child) {
    margin-right: 15px;
  }
}
@media (min-width: 992px) {
  .site-header .nav-item .nav-link.btn-lg {
    align-items: center;
    background-color: #AC441E;
    border-radius: 4px;
    border: none;
    color: #FFF;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1.3;
    padding: 15px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s;
    white-space: normal;
  }
}
@media (min-width: 992px) and (prefers-reduced-motion) {
  .site-header .nav-item .nav-link.btn-lg {
    transition: none;
  }
}
@media (min-width: 992px) {
  .site-header .nav-item .nav-link.btn-lg:hover {
    background-color: #737373;
    color: #FFF;
  }
}
@media (min-width: 992px) {
  .site-header .nav-item .nav-link.active, .site-header .nav-item .nav-link:hover, .site-header .nav-item .nav-link.nav-shadow {
    background: radial-gradient(65.91% 65.91% at 49.64% 59.09%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(180.56deg, rgba(0, 0, 0, 0.05) 0.48%, rgba(0, 0, 0, 0) 73.25%), #F5F5F5;
  }
  .site-header .nav-item .nav-link.active .border-bottom, .site-header .nav-item .nav-link:hover .border-bottom, .site-header .nav-item .nav-link.nav-shadow .border-bottom {
    position: relative;
  }
  .site-header .nav-item .nav-link.active .border-bottom:after, .site-header .nav-item .nav-link:hover .border-bottom:after, .site-header .nav-item .nav-link.nav-shadow .border-bottom:after {
    content: "" !important;
    position: absolute !important;
    bottom: -7px !important;
    display: block !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }
  .site-header .nav-item .nav-link.active .border-bottom.border-red:after, .site-header .nav-item .nav-link:hover .border-bottom.border-red:after, .site-header .nav-item .nav-link.nav-shadow .border-bottom.border-red:after {
    border-bottom: 2px solid #AC441E !important;
  }
  .site-header .nav-item .nav-link.active .border-bottom.border-blue:after, .site-header .nav-item .nav-link:hover .border-bottom.border-blue:after, .site-header .nav-item .nav-link.nav-shadow .border-bottom.border-blue:after {
    border-bottom: 2px solid #307698 !important;
  }
}
@media (max-width: 1600px) and (min-width: 993px) {
  .site-header .btn.btn-primary, .site-header .wp-block-button__link, .site-header .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .site-header .gt_selector {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 991.98px) {
  .site-header .list-unstyled li:not(:last-child) {
    line-height: 3.5rem;
  }
}

.dropdown {
  position: relative !important;
}
@media (max-width: 1600px) and (min-width: 993px) {
  .dropdown {
    position: static !important;
  }
}
.dropdown.middle-viewport-pos-relative {
  position: relative !important;
}
.dropdown a {
  transition: 0.4s;
}
.dropdown a:hover {
  color: #AC441E;
}

.center-dropdown {
  margin-top: -1px !important;
}
@media (min-width: 1600px) {
  .center-dropdown {
    left: 50% !important;
    right: auto;
    transform: translate(-50%);
  }
}
@media (max-width: 1600px) and (min-width: 1400px) {
  .center-dropdown {
    left: -8% !important;
  }
}
@media (max-width: 1399px) and (min-width: 1279px) {
  .center-dropdown {
    left: -20% !important;
  }
}
@media (max-width: 1200px) and (min-width: 1093px) {
  .center-dropdown {
    left: 8% !important;
  }
}
@media (max-width: 1092px) and (min-width: 993px) {
  .center-dropdown {
    left: 0% !important;
  }
}
@media screen and (min-width: 993px) and (max-width: 1280px) {
  .center-dropdown.middle-viewport-fix {
    left: 50% !important;
    right: auto;
    transform: translate(-50%);
  }
}

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

@media (min-width: 992px) {
  .lg-menu-split {
    padding: 45px 35px;
  }
}
@media (max-width: 991.98px) {
  .lg-menu-split {
    padding: 0px 35px 20px;
  }
}
@media (min-width: 1200px) {
  .lg-menu-split .heading-small-subtitle, .lg-menu-split .gform_fields .gfield--type-section .gsection_title, .gform_fields .gfield--type-section .lg-menu-split .gsection_title {
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .lg-menu-standard {
    padding: 45px 35px;
  }
}
@media (max-width: 991.98px) {
  .lg-menu-standard {
    padding: 0px 35px 20px;
  }
}

.lg-menu-full {
  width: 1070px;
  border-top: 1px solid #fff;
  margin-top: -1px !important;
}
@media (max-width: 1600px) and (min-width: 993px) {
  .lg-menu-full {
    width: 993px;
  }
}

.dropdown-pad {
  padding: 45px 50px;
}
@media (max-width: 1600px) and (min-width: 993px) {
  .dropdown-pad {
    padding: 45px 25px;
  }
}
@media (max-width: 991.98px) {
  .dropdown-pad {
    padding: 20px 20px 45px;
  }
}
.dropdown-pad.sm-pb-0 {
  padding-bottom: 0;
}

@media (max-width: 992px) and (min-width: 465px) {
  .middle-viewport-flex {
    display: flex;
    justify-content: space-between;
  }
  .middle-viewport-flex .sm-mxh-100 {
    width: 30%;
    max-height: initial;
    height: auto !important;
  }
  .middle-viewport-flex .position-absolute-0-bl {
    position: relative;
  }
}

@media (min-width: 1200px) {
  .right-info-nav {
    margin-top: -25px;
  }
}
@media (max-width: 1400px) and (min-width: 1278px) {
  .right-info-nav {
    margin-top: 0px;
  }
}
@media (max-width: 1277px) and (min-width: 993px) {
  .right-info-nav {
    margin-top: -30px;
    margin-left: auto;
  }
}
.right-info-nav .nav-link {
  font-weight: 400 !important;
  font-size: 1.4rem !important;
}

@keyframes slide-in {
  100% {
    transform: translateX(0%);
  }
}
@media (max-width: 991.98px) {
  .lg-menu-full, .center-dropdown {
    animation: fadeInLeft 0.5s ease;
    position: fixed !important;
    left: 0px;
    top: 0;
    right: 0;
    padding: 0;
    z-index: 10000;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    transition: transform 0.5s;
    transform: translateX(100%);
    display: block;
  }
  .lg-menu-full.box-shadow, .center-dropdown.box-shadow {
    box-shadow: none;
  }
  .lg-menu-full.show.dropdown-pad, .center-dropdown.show.dropdown-pad {
    overflow-y: scroll;
  }
  .lg-menu-full.show-mobile-slide, .center-dropdown.show-mobile-slide {
    transform: translateX(0);
  }
}
.lg-menu-full .micro-title, .center-dropdown .micro-title {
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .lg-menu-full .lg-text-15, .center-dropdown .lg-text-15 {
    font-size: 1.5rem;
    line-height: 2;
  }
}
@media (max-width: 991.98px) {
  .lg-menu-full .sm-text-16, .center-dropdown .sm-text-16 {
    font-size: 1.6rem;
    line-height: 1.495;
  }
}
.lg-menu-full .color-last-mobile-a-red li:last-child a, .center-dropdown .color-last-mobile-a-red li:last-child a {
  color: #AC441E;
}

.dropdown:not(.dropdown-full) .dropdown-toggle:after, .dropup:not(.dropdown-full) .dropdown-toggle:after {
  transition: all 0.4s;
  border-bottom: 5px solid #000;
  border: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  height: 7px;
  margin: -6px 0 0 6px;
  transform: rotate(45deg);
  vertical-align: middle;
  width: 7px;
}
@media (prefers-reduced-motion) {
  .dropdown:not(.dropdown-full) .dropdown-toggle:after, .dropup:not(.dropdown-full) .dropdown-toggle:after {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .dropdown:not(.dropdown-full) .dropdown-toggle:after, .dropup:not(.dropdown-full) .dropdown-toggle:after {
    position: absolute;
    top: 55%;
    right: 0;
    transform: translateY(-50%);
    transform: rotate(-45deg);
  }
}

@media (min-width: 992px) {
  .nav-link.text-uppercase.dropdown-toggle.position-relative.has-sub.nav-shadow.show::after, .nav-link.dropdown-toggle.position-relative.show::after {
    transform: rotate(-135deg);
    margin: -2px 0 0 6px;
  }
}

.el-hidden {
  visibility: hidden;
}

.el-visible {
  visibility: visible;
}

@media (min-width: 992px) {
  .mobile-search.show-search {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 99;
    right: 0;
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-search.hide-search {
    display: none !important;
  }
}
.mobile-search form {
  width: 100%;
}
.mobile-search .pos-holder {
  position: relative;
}
@media (min-width: 992px) {
  .mobile-search .pos-holder {
    width: 100%;
  }
}
.mobile-search .pos-holder input {
  background-color: #f5f5f5;
  color: #3A4044;
  width: 100%;
  border: none;
  padding: 12px 37px;
}
.mobile-search .pos-holder input:before {
  background-color: #FFF;
}
.mobile-search .submit-search {
  position: absolute;
  left: 8px;
  top: 18px;
  width: 19px;
  height: 19px;
  border: none;
  background: url("/assets/images/icons/search-icon.svg") no-repeat;
}

@media (min-width: 992px) {
  .show-search {
    max-height: 121px;
  }
}
@media (min-width: 992px) {
  .show-search .mobile-search {
    width: 100%;
    visibility: visible;
    animation-name: fadeIn;
  }
}
@media (min-width: 992px) {
  .show-search .nav-item {
    width: 0px;
    visibility: hidden;
  }
}
@media (min-width: 992px) {
  .show-search .search-close-icon {
    position: absolute;
    background: url("/assets/images/icons/black-close.svg") no-repeat;
    display: block;
    width: 25px;
    height: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.js-close-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .js-search-icon {
    visibility: hidden;
  }
}

@media (max-width: 991.98px) {
  .sm-hide {
    visibility: hidden;
    height: 0px;
  }
}

/*Global site footer*/
.site-footer {
  font-weight: normal;
  font-size: 1.3rem;
  /*Footer mobile toggle button*/
}
@media (min-width: 992px) {
  .site-footer {
    padding: 77px 0px 54px;
  }
}
@media (max-width: 991.98px) {
  .site-footer {
    padding: 30px 0px;
  }
}
.site-footer a {
  text-decoration: none;
}
.site-footer a:hover {
  color: #AC441E;
}
.site-footer .footer-stats {
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  color: #747481;
}
@media (min-width: 992px) {
  .site-footer .footer-stats {
    line-height: 1.35;
  }
}
@media (max-width: 991.98px) {
  .site-footer .footer-stats {
    line-height: 1.45;
  }
}
@media (max-width: 575.98px) {
  .site-footer .footer-stats {
    font-size: 0.9rem;
    margin-bottom: 27px;
    margin-left: -5px;
    margin-right: -5px;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-stats {
    margin-top: -5px;
    margin-left: -8px;
  }
}
@media (max-width: 575.98px) {
  .site-footer .footer-stats li.list-item {
    padding: 0;
  }
  .site-footer .footer-stats li.list-item:not(:last-child) {
    border-bottom: 1px solid rgba(58, 64, 68, 0.2);
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .site-footer .footer-stats li.list-item::after {
    display: none !important;
  }
}
.site-footer .footer-stats span {
  display: block;
  color: #3A4044;
  opacity: 1;
}
@media (max-width: 575.98px) {
  .site-footer .footer-stats span {
    font-size: 1.6rem;
  }
}
@media (min-width: 1400px) {
  .site-footer .footer-menu {
    margin-top: -81px;
    margin-left: 18px;
    margin-right: -20px;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .site-footer .footer-menu {
    margin-left: -10px;
    margin-right: 25px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .site-footer .footer-menu {
    max-width: 670px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-footer .footer-menu {
    margin: 30px 0px;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-menu .collapse {
    display: block;
  }
}
.site-footer .footer-menu .micro-title {
  font-weight: 500;
  font-size: 1.2rem;
}
@media screen and (min-width: 1800px) {
  .site-footer .footer-menu .link-column {
    margin-right: 50px;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1800px) {
  .site-footer .footer-menu .link-column {
    margin-right: 20px;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .site-footer .footer-menu .link-column {
    margin-right: 40px;
  }
}
@media screen and (min-width: 993px) and (max-width: 1400px) {
  .site-footer .footer-menu .link-column {
    margin-right: 35px;
  }
}
.site-footer .footer-menu .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-menu .footer-list li {
  margin-bottom: 11px;
}
@media (max-width: 991.98px) {
  .site-footer .footer-menu .footer-list li {
    border-bottom: solid 2px #e5e6e7;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .site-footer .footer-menu .footer-list li:first-child {
    border-top: 2px solid #e5e6e7;
  }
}
.site-footer .footer-menu .footer-list li:last-child {
  border-bottom: 0px;
}
.site-footer .footer-menu .footer-list a {
  display: block;
  color: #737373;
}
@media (max-width: 991.98px) {
  .site-footer .footer-menu .footer-list a {
    color: #737373;
    padding: 20px 0;
    text-transform: uppercase;
  }
}
.site-footer .footer-menu .footer-list a:hover {
  color: #AC441E;
  text-decoration: none;
}
.site-footer .footer-menu .footer-list.is-lg a {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .site-footer .footer-menu .footer-list.is-lg a {
    color: #737373;
    margin-bottom: 20px;
  }
  .site-footer .footer-menu .footer-list.is-lg a:hover {
    color: #AC441E;
  }
}
@media (max-width: 991.98px) {
  .site-footer .footer-menu .footer-list.is-sm a {
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
.site-footer .footer-toggle {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  display: block;
  justify-content: flex-start;
  text-transform: uppercase;
  padding: 19px 0;
  position: relative;
  text-align: left;
  width: 100%;
  /*Adds arrow behind text*/
}
@media (max-width: 767.98px) {
  .site-footer .footer-toggle.btn, .site-footer .footer-toggle.wp-block-button__link, .site-footer .gtranslate_wrapper .footer-toggle.gt_selector, .gtranslate_wrapper .site-footer .footer-toggle.gt_selector {
    justify-content: flex-start;
    color: #3A4044;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-toggle.btn, .site-footer .footer-toggle.wp-block-button__link, .site-footer .gtranslate_wrapper .footer-toggle.gt_selector, .gtranslate_wrapper .site-footer .footer-toggle.gt_selector {
    display: none;
  }
}
.site-footer .footer-toggle:after {
  border: solid #3A4044;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  height: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: 0.3s;
  vertical-align: middle;
  width: 6px;
}
.site-footer .footer-toggle:not(.collapsed):after {
  transform: translateX(-50%) rotate(-135deg);
}
.site-footer .footer-toggle:focus {
  outline: none;
}
@media (min-width: 992px) {
  .site-footer .col-lg-fix {
    margin-right: 50px;
    margin-left: -35px;
  }
}
@media (max-width: 991.98px) {
  .site-footer .social-container {
    padding: 16px 0px;
  }
}
@media (max-width: 575.98px) {
  .site-footer .social-container {
    border-bottom: 2px solid #e5e6e7;
  }
}
@media (min-width: 992px) {
  .site-footer .social-container ul {
    margin-left: -50px;
    margin-right: 50px;
  }
}
.site-footer .social-container ul li {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .site-footer .social-container img {
    width: 36px;
    height: 35px;
  }
}
@media (max-width: 991.98px) {
  .site-footer .social-container img {
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 375px) {
  .site-footer .contact-col {
    min-width: 305px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-logo {
    margin-bottom: 35px;
    max-width: 250px;
  }
}
@media (max-width: 991.98px) {
  .site-footer .footer-logo {
    margin-bottom: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .site-footer .footer-logo img {
    width: 150px;
  }
}
.site-footer .contact-info {
  font-weight: normal;
  color: #737373;
}
.site-footer .contact-info address {
  margin-bottom: 18px;
}
.site-footer .contact-info address span {
  font-weight: 500;
}

/*Global main content area*/
@media (max-width: 1370px) and (min-width: 1200px) {
  .flex-switch-column {
    flex-direction: column !important;
  }
}
.flex-switch-column .btn, .flex-switch-column .wp-block-button__link, .flex-switch-column .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .flex-switch-column .gt_selector {
  width: -moz-fit-content;
  width: fit-content;
}

.prev {
  z-index: 10;
  position: absolute;
  left: 16px;
  width: 110px;
}
@media (max-width: 991.98px) {
  .prev {
    bottom: 20px;
    left: 15px;
  }
}

.carousel-text {
  max-width: 290px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .carousel-text {
    max-width: 260px;
  }
}

.slider-item .micro-title {
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .slider-item {
    padding-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .slider-item {
    padding-right: 20px;
  }
}
.slider-item .btn, .slider-item .wp-block-button__link, .slider-item .gtranslate_wrapper .gt_selector, .gtranslate_wrapper .slider-item .gt_selector {
  font-family: "GothamSSm-Bold", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0;
}
.slider-item.main-hero-item {
  padding-right: 2px;
}
.slider-item picture.js-show-modal:hover {
  cursor: zoom-in;
}

.color-white a:hover {
  color: #989D9F;
}

@media (min-width: 992px) {
  .hover-show {
    opacity: 0;
    transition: 0.4s;
  }
}
@media (max-width: 991.98px) {
  .hover-show {
    opacity: 1;
  }
}
@media (max-width: 991.98px) and (pointer: fine) {
  .hover-show {
    opacity: 1;
  }
}
@media (max-width: 991.98px) and (hover) {
  .hover-show {
    opacity: 1;
  }
}
.hover-show:focus {
  opacity: 1;
}

.hover-activate {
  transition: 0.4s;
}
.hover-activate:hover .hover-show, .hover-activate:focus .hover-show {
  opacity: 1;
  transition: 0.4s;
}

.hover-zoom picture {
  transition: transform 0.3s ease-in-out;
}
.hover-zoom:hover picture {
  transform: scale(1.05);
}

.nav-pills button {
  color: #737373;
  position: relative;
}
.nav-pills button:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: transparent;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.nav-pills .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: 0.04rem;
}
.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
  color: #AC441E;
}
.nav-pills .nav-link:hover span, .nav-pills .nav-link:focus span {
  border-bottom: 2px solid #AC441E;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #AC441E;
  background-color: transparent;
}

.nav-pills .nav-link.active span, .nav-pills .show > .nav-link span {
  border-bottom: 2px solid #AC441E;
}

@media (max-width: 991.98px) {
  .scroll-across {
    overflow-x: scroll;
  }
}
@media (max-width: 991.98px) {
  .hero-nav {
    width: 900px;
    flex-wrap: nowrap;
  }
}

.nav-border-top-pills .nav-link {
  border-top: 2px solid #3A4044;
  color: #3A4044;
  opacity: 0.5;
  padding-top: 4px !important;
  padding-left: 0px;
  transition: 0.4s;
}
.nav-border-top-pills .nav-link:hover, .nav-border-top-pills .nav-link:focus {
  opacity: 1;
}
.nav-border-top-pills .nav-link.active {
  border-top: 2px solid #AC441E;
  color: #3A4044;
  opacity: 1;
}

.tab-details {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.tab-details.column-1 {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.tab-details .nav-link {
  border-top: 2px solid #3A4044;
  color: #3A4044;
  opacity: 0.75;
  padding-top: 4px !important;
}
.tab-details .nav-link.active {
  border-top: 2px solid #AC441E;
  color: #3A4044;
  opacity: 1;
}
@media (min-width: 1830px) {
  .tab-details li {
    width: 345px;
  }
}
@media (max-width: 1829px) and (min-width: 1200px) {
  .tab-details li {
    width: 47%;
  }
}
@media (max-width: 1199px) {
  .tab-details li {
    width: 46.5%;
  }
}
@media (max-width: 500px) {
  .tab-details li {
    width: 45%;
  }
}
.tab-details .nav-link {
  padding: 0;
  width: 100%;
}

.gallery-controls {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
@media (min-width: 1400px) {
  .gallery-controls {
    position: absolute;
    left: -90px;
  }
}

.prev-arrow {
  background: url("/assets/images/icons/black-prev-arrow.svg") no-repeat;
  display: block;
  width: 28px;
  height: 23px;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .prev-arrow {
    transition: none;
  }
}
.prev-arrow:hover {
  margin-left: -10px;
  width: 33px;
}

.back-link {
  display: flex;
  align-items: center;
  color: #3A4044;
  text-decoration: none;
}
.back-link:before {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: url("/assets/images/icons/black-prev-arrow.svg") no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.back-link:hover {
  color: #AC441E;
}
.back-link:hover:before {
  margin-left: -5px;
  width: 23px;
}

.favorite-icon {
  background: url("/assets/images/icons/fav-empty.svg") no-repeat;
  display: block;
  width: 23px;
  height: 19px;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .favorite-icon {
    transition: none;
  }
}
.favorite-icon.white-icon {
  background: url("/assets/images/icons/fav-white-empty.svg") no-repeat;
}
.favorite-icon:hover {
  background: url("/assets/images/icons/fav-love.svg") no-repeat;
  transition: all 0.4s;
  -webkit-transform: scale(1.1, 1.1);
  -webkit-transition: all 0.3s ease-in-out;
}
@media (prefers-reduced-motion) {
  .favorite-icon:hover {
    transition: none;
  }
}
.favorite-icon.set {
  background: url("/assets/images/icons/fav-love.svg") no-repeat;
}
.favorite-icon.set:hover {
  -webkit-transform: scale(1);
}

@keyframes leaves {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.play-hover {
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .play-hover {
    transition: none;
  }
}
.play-hover:hover {
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .play-hover:hover {
    transition: none;
  }
}
.play-hover:hover img {
  animation: leaves 1s forwards;
}
@media (max-width: 767.98px) {
  .play-hover img {
    max-width: 60px;
  }
}

@media (min-width: 1200px) {
  .stat-card {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .stat-card {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .stat-card {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .stat-card {
    max-width: 450px;
  }
}
@media (max-width: 991.98px) {
  .stat-card {
    border: none;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}
@media (min-width: 1400px) {
  .stat-card.middle-card {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .stat-card.middle-card {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.stat-card .heading-subtitle {
  font-size: 3.5rem;
}

@media (min-width: 1200px) {
  .img-grid {
    padding-left: 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .img-grid {
    margin-top: 30px;
  }
}
@media (max-width: 991.98px) {
  .img-grid {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .img-grid figure {
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    width: 33%;
  }
}
@media (min-width: 375px) and (max-width: 767.98px) {
  .img-grid figure {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.img-grid span {
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 991.98px) {
  .brand-card {
    padding: 25px 25px 40px;
  }
}
@media (min-width: 992px) {
  .brand-card {
    padding: 50px 75px 80px 80px;
  }
}

.logo-card {
  padding-top: 65px;
  padding-bottom: 65px;
  max-height: 300px;
  overflow: hidden;
  display: block;
  height: 100%;
}
@media (max-width: 991.98px) {
  .logo-card {
    padding: 20px;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .page-header {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .page-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 1290px) and (min-width: 1200px) {
  .page-header .heading-title, .page-header .styled-form .gform_heading .gform_title, .styled-form .gform_heading .page-header .gform_title {
    padding-left: 40px;
  }
}
.page-header .title-right {
  position: absolute;
  right: 0px;
  top: 10px;
}
@media (max-width: 1400px) and (min-width: 993px) {
  .page-header .title-right {
    width: 240px;
  }
}
@media (max-width: 991.98px) {
  .page-header .title-right {
    display: none;
  }
}
.page-header .title-left {
  top: 10px;
  left: 0px;
  position: absolute;
}
@media (max-width: 1725px) and (min-width: 993px) {
  .page-header .title-left {
    width: 320px;
  }
}
@media (max-width: 991.98px) {
  .page-header .title-left {
    display: none;
  }
}

@media (min-width: 1200px) {
  .card-content {
    margin-right: -100px;
    padding-left: 100px;
  }
}

.stain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 992px) {
  .stain-grid {
    grid-column-gap: 30px;
    grid-row-gap: 25px;
  }
}
@media (max-width: 991.98px) {
  .stain-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (min-width: 993px) {
  .stain-grid picture img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 993px) {
  .stain-grid picture img {
    width: 100%;
  }
}
@media screen and (min-width: 450px) {
  .stain-grid picture img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media (min-width: 1200px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 1650px) and (min-width: 1440px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1440px) and (min-width: 1220px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1220px) and (min-width: 1020px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1020px) and (min-width: 993px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .stain-grid.grid-8 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(7, 120px);
  }
}
@media (max-width: 1650px) and (min-width: 1440px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(7, 120px);
  }
}
@media (max-width: 1440px) and (min-width: 1220px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(6, 120px);
  }
}
@media (max-width: 1220px) and (min-width: 1020px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1020px) and (min-width: 993px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .stain-grid.grid-7 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (max-width: 1650px) and (min-width: 1460px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 1460px) and (min-width: 1284px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (max-width: 1284px) and (min-width: 1100px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1100px) and (min-width: 993px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 450px) {
  .stain-grid.grid-9 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.centered-thumb {
  width: 150px;
  padding: 15px;
}

.filter-choices {
  color: #3A4044;
}
.filter-choices .cat-heading {
  margin-right: 10px;
  text-decoration: none;
  color: #3A4044;
  text-transform: uppercase;
}
.filter-choices .navbar {
  padding-top: 1px;
  padding-bottom: 1px;
}
@media (min-width: 992px) {
  .filter-choices .navbar {
    margin-top: 0px;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .filter-choices .navbar {
    width: 100%;
  }
}
.filter-choices .navbar .navbar-nav {
  border: 2px solid #3A4044;
}
.filter-choices .navbar .nav-item {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: -1px;
}
.filter-choices .navbar .nav-item:last-child .nav-link {
  border-right: 2px solid transparent;
}
@media (max-width: 991.98px) {
  .filter-choices .navbar .nav-item {
    margin: 0;
  }
}
.filter-choices .navbar .nav-link {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  padding: 13px 14px;
  min-height: 48px;
  color: #3A4044;
  text-transform: uppercase;
  text-align: center;
  border-right: 2px solid #3A4044;
  line-height: 1.5;
}
@media (min-width: 1400px) {
  .filter-choices .navbar .nav-link {
    min-width: 198px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .filter-choices .navbar .nav-link {
    min-width: 159px;
  }
}
@media (max-width: 991.98px) {
  .filter-choices .navbar .nav-link {
    border-right: none;
  }
}
.filter-choices .navbar .nav-link a:hover {
  color: #ffffff;
}
.filter-choices .navbar .nav-link.active {
  background: #3A4044;
  color: #ffffff;
}
.filter-choices .navbar .navbar-collapse {
  min-height: initial !important;
}
@media (max-width: 991.98px) {
  .filter-choices .navbar .navbar-collapse {
    border-top: 1px solid #3A4044;
    margin-top: 15px;
    padding-top: 10px;
  }
}
.filter-choices .navbar-toggler:focus {
  box-shadow: none;
}
.filter-choices .navbar-toggler.collapsed .navbar-toggler-icon {
  background: url("/assets/images/icons/menu-icon.svg") no-repeat center center;
}
.filter-choices .navbar-toggler .navbar-toggler-icon {
  background: url("/assets/images/icons/close-icon.svg") no-repeat center center;
}
.filter-choices .navbar-nav a {
  color: #3A4044;
}
.filter-choices .navbar-nav a:hover {
  background: #3A4044;
  color: #ffffff;
}
.filter-choices .navbar-expand-lg .navbar-nav .nav-link:hover, .filter-choices .navbar-expand-lg .navbar-nav .nav-link:focus {
  background: #3A4044;
  color: #ffffff;
}

.card-pad {
  padding: 50px 50px 55px;
}
@media (max-width: 1600px) and (min-width: 993px) {
  .card-pad {
    padding: 45px 25px;
  }
}
@media (max-width: 991.98px) {
  .card-pad {
    padding: 20px 20px 45px;
  }
}
.card-pad.sm-pb-0 {
  padding-bottom: 0;
}

.wood-thumb-nav .wood-name {
  color: #3A4044;
}
.wood-thumb-nav .active .wood-name {
  color: #AC441E;
  opacity: 1;
}

.wood-toggle:hover,
.stain-toggle.has-image:hover {
  cursor: pointer;
}

.stain-toggle,
.wood-toggle {
  position: relative;
}
.stain-toggle.has-image .sample-tile,
.wood-toggle.has-image .sample-tile {
  position: relative;
}
.stain-toggle.has-image .sample-tile:after,
.wood-toggle.has-image .sample-tile:after {
  display: block;
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 10px;
  right: 10px;
  background: url("/assets/images/icons/photo-icon.svg") no-repeat center center;
}

.stain-toggle .stain-name {
  color: #3A4044;
}
.stain-toggle.active .border-2 {
  border-color: #AC441E;
}
.stain-toggle.active .stain-name {
  color: #AC441E;
}

#gallery-thumbs {
  padding: 30px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #gallery-thumbs {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1200px) {
  #gallery-thumbs {
    padding-right: 5%;
    padding-left: 5%;
  }
}

.thumb-grid {
  display: grid;
  overflow-y: scroll !important;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.thumb-grid::-webkit-scrollbar {
  display: none;
}
@media (max-width: 991.98px) {
  .thumb-grid {
    gap: 5px;
    grid-auto-flow: column;
  }
}
@media (min-width: 992px) {
  .thumb-grid {
    gap: 30px;
    padding: 10px 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .thumb-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1400px) {
  .thumb-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.no-listing-results {
  font-weight: normal;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 575.98px) {
  .no-listing-results {
    font-size: 2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .no-listing-results {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1399.98px) {
  .no-listing-results {
    font-size: 3.25rem;
  }
}
@media (min-width: 1400px) {
  .no-listing-results {
    font-size: 4rem;
  }
}

/* Blocks */
.image-block {
  z-index: 1;
  /*Static*/
  /*Absolute*/
  /*Position breakpoint options*/
  /*Image overlay*/
}
.image-block.image-static {
  display: block;
  position: relative;
}
.image-block.image-static .bg-image {
  height: auto;
  width: 100%;
}
.image-block.image-static .img-unset {
  max-height: 719px;
}
.image-block.image-static .image-overlay {
  z-index: 1;
}
.image-block.image-absolute {
  display: block;
  overflow: hidden;
  padding: 30px 0;
  position: relative;
}
.image-block.image-absolute .bg-image {
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  right: -9999px;
  top: -9999px;
  width: auto;
}
.image-block.image-absolute .image-overlay {
  position: relative;
  z-index: 10;
}
.image-block.image-absolute .image-overlay.overlay-v-center {
  top: 50%;
}
.image-block.image-absolute .image-overlay.overlay-v-center-transform {
  top: 50%;
  transform: translateY(-50%);
}
.image-block.image-absolute .image-overlay.overlay-v-bottom {
  top: 93%;
  transform: translateY(-50%);
}
.image-block.image-absolute .container,
.image-block.image-absolute [class*=container-] {
  position: relative;
}
.image-block .position-absolute {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.image-block .position-absolute .container,
.image-block .position-absolute [class*=container-],
.image-block .position-absolute .row {
  height: 100%;
}
@media (max-width: 575.98px) {
  .image-block .position-absolute-sm {
    background: #3A4044;
    padding: 30px 20px;
  }
}
@media (min-width: 576px) {
  .image-block .position-absolute-sm {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.image-block .position-absolute-sm .container,
.image-block .position-absolute-sm [class*=container-],
.image-block .position-absolute-sm .row {
  height: 100%;
}
@media (max-width: 767.98px) {
  .image-block .position-absolute-md {
    background: #3A4044;
    padding: 30px 20px;
  }
}
@media (min-width: 768px) {
  .image-block .position-absolute-md {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.image-block .position-absolute-md .container,
.image-block .position-absolute-md [class*=container-],
.image-block .position-absolute-md .row {
  height: 100%;
}
@media (max-width: 991.98px) {
  .image-block .position-absolute-lg {
    background: #3A4044;
    padding: 30px 20px;
  }
}
@media (min-width: 992px) {
  .image-block .position-absolute-lg {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.image-block .position-absolute-lg .container,
.image-block .position-absolute-lg [class*=container-],
.image-block .position-absolute-lg .row {
  height: 100%;
}
@media (max-width: 1199.98px) {
  .image-block .position-absolute-xl {
    background: #3A4044;
    padding: 30px 20px;
  }
}
@media (min-width: 1200px) {
  .image-block .position-absolute-xl {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.image-block .position-absolute-xl .container,
.image-block .position-absolute-xl [class*=container-],
.image-block .position-absolute-xl .row {
  height: 100%;
}
.image-block .image-overlay .justify-content-center {
  text-align: center;
}
.image-block .image-overlay .btn-row {
  justify-content: center;
}

.door-images-block .dropdown-menu {
  max-height: 90vh;
  overflow-y: auto;
}

.block-accordion {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style-type: none;
}
.block-accordion .card-feature {
  display: flex;
  align-items: stretch;
  cursor: pointer;
  transition: all 0.4s;
}
@media (prefers-reduced-motion) {
  .block-accordion .card-feature {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .block-accordion .card-feature {
    flex: 1 0 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .block-accordion .card-feature {
    flex: 1 0 50%;
  }
}
@media (min-width: 1200px) {
  .block-accordion .card-feature {
    flex: 1;
    min-height: 60vh;
    max-height: 60vh;
  }
}
.block-accordion .card-feature .card-header {
  opacity: 1;
  visibility: visible;
}
.block-accordion .card-feature .card-text {
  opacity: 0;
  pointer-events: none;
  transition-delay: none;
  transition: none;
}
.block-accordion .card-feature .card-text:hover {
  background: #112F3D;
}
.block-accordion .card-feature.active {
  cursor: default;
}
@media (min-width: 1200px) {
  .block-accordion .card-feature.active {
    flex: 3;
  }
}
.block-accordion .card-feature.active:before {
  opacity: 0;
  visibility: hidden;
}
.block-accordion .card-feature.active .card-header {
  opacity: 0;
  visibility: hidden;
}
.block-accordion .card-feature.active .card-text {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.3s;
  transition: opacity 0.4s, visibility 0.4s;
  visibility: visible;
}

.video-collection .wysiwyg-content a {
  color: #AC441E;
}
@media (min-width: 992px) {
  .video-collection .video-selector {
    border-top: 2px solid #3A4044;
  }
}
.video-collection .video-selector .mobile-toggle {
  margin-bottom: 15px;
  background-color: transparent;
}
.video-collection .video-selector .mobile-toggle:not(.collapsed) {
  border-color: #AC441E;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .video-collection .video-selector .nav {
    padding-top: 15px;
  }
}
@media (max-width: 991.98px) {
  .video-collection .video-selector .video-collapse {
    padding: 15px;
    border: 2px solid #989D9F;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .video-collection .video-selector .nav-item {
    margin: 15px 0;
  }
}
@media (max-width: 991.98px) {
  .video-collection .video-selector .nav-item {
    margin: 8px 0;
  }
}
.video-collection .video-selector .nav-item .nav-link {
  padding: 5px 0;
  color: #3A4044;
}
.video-collection .video-selector .nav-item .nav-link.active {
  color: #AC441E;
}

.guide-layout .content-header {
  font-weight: 350;
}
.guide-layout .content-nav {
  margin-bottom: 50px;
}
.guide-layout .content-nav .nav-link {
  padding: 15px 0;
  letter-spacing: 0.7px;
}
@media (max-width: 991.98px) {
  .guide-layout .content-nav .nav-link {
    padding: 10px 0;
  }
}
.guide-layout .guide-section .accordion {
  padding-bottom: 50px;
}
.guide-layout .guide-section .accordion:last-child {
  border-bottom: 2px solid #3A4044;
}
.guide-layout .guide-section .accordion-button {
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  transition: 0.3s all ease-in-out;
}
.guide-layout .guide-section .accordion-button:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='13' viewBox='0 0 22 13' fill='none'%3E%3Cpath d='M21 1.66675L11 11.0001L1 1.66675' stroke='%233A4044' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s all ease-in-out;
}
.guide-layout .guide-section .accordion-button:not(.collapsed) {
  border-top-color: #AC441E;
  color: #AC441E;
}
.guide-layout .guide-section .accordion-button:not(.collapsed):after {
  transform: rotate(180deg);
}
.guide-layout .guide-section .accordion-collapse {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .guide-layout .guide-section .accordion-collapse.show, .guide-layout .guide-section .accordion-collapse.collapsing {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
  }
}
.guide-layout .guide-section .accordion-collapse .accordion-body {
  grid-column: 1;
  grid-row: 1;
}
.guide-layout .guide-section .accordion-collapse .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.guide-layout .guide-section .accordion-collapse .content:not(:last-child) {
  margin-bottom: 45px;
}
.guide-layout .guide-section .accordion-collapse .content .content-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #3A4044;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: -15px;
}
.guide-layout .guide-section .accordion-collapse .accordion-images {
  grid-column: 2;
  grid-row: 1/span 2;
}
@media (max-width: 767.98px) {
  .guide-layout .guide-section .accordion-collapse .accordion-images {
    margin-top: 30px;
  }
}
.guide-layout .guide-section .accordion-collapse .accordion-images .photo-wrapper:not(:last-child) {
  margin-bottom: 45px;
}
.guide-layout .guide-section .accordion-collapse .accordion-images .content-photo {
  padding: 10px;
  background-color: #AC441E;
}
.guide-layout .guide-section .accordion-collapse .accordion-images .content-number {
  background-color: #3A4044;
  color: #ffffff;
  font-size: 14px;
  padding: 5px;
}
.guide-layout .guide-section .accordion-nav {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .guide-layout .guide-section .accordion-nav {
    padding-top: 25px;
  }
}
.guide-layout .guide-section .accordion-nav button {
  background-color: transparent;
}
.guide-layout .guide-section .accordion-nav button:hover {
  border-color: #3A4044;
  color: #3A4044;
}
.guide-layout .guide-section .accordion-nav .accordion-prev {
  border-color: #737373;
  color: #737373;
}

.door-images-listing {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem 1.5rem;
}
@media (min-width: 375px) and (max-width: 991.98px) {
  .door-images-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .door-images-listing {
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem 3rem;
  }
}
@media (max-width: 575.98px) {
  .door-images-listing .text-14 {
    font-size: 1.4rem;
  }
}
.door-images-listing .door-image-item .door-image-item-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.door-images-listing .door-image-item .door-name {
  transition: color 0.3s ease;
  position: relative;
}
.door-images-listing .door-image-item .door-name:after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 20 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 7L13 1M19 7L13 13M19 7H1' stroke='%23AC441E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 12px;
  transition: all 0.3s ease;
  margin-top: -2px;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .door-images-listing .door-image-item .door-name:after {
    right: -20px;
    width: 15px;
    height: 10px;
  }
}
.door-images-listing .door-image-item a:hover {
  color: #3A4044;
}
.door-images-listing .door-image-item a:hover .door-name {
  color: #AC441E;
}
.door-images-listing .door-image-item a:hover .door-name:after {
  opacity: 1;
}

.process-timeline-block {
  padding: 4.5rem 3rem;
  background: #fff;
  text-align: center;
}
.process-timeline-block__header {
  max-width: 1230px;
  padding: 0 3rem;
  margin: 0 auto 2.5rem;
}
.process-timeline-block__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-left: 4.75%;
}
@media (max-width: 991.98px) {
  .process-timeline-block__steps {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}
.process-timeline-block__step {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: -20%;
  position: relative;
}
@media (max-width: 991.98px) {
  .process-timeline-block__step {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}
.process-timeline-block__step:first-child {
  z-index: 4;
}
@media (min-width: 992px) {
  .process-timeline-block__step:first-child .process-timeline-block__step-media,
  .process-timeline-block__step:first-child .process-timeline-block__step-video,
  .process-timeline-block__step:first-child .process-timeline-block__step-image {
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%);
  }
}
.process-timeline-block__step:nth-child(2) {
  z-index: 3;
}
.process-timeline-block__step:nth-child(3) {
  z-index: 2;
}
.process-timeline-block__step:last-child {
  z-index: 1;
}
@media (min-width: 992px) {
  .process-timeline-block__step:last-child .process-timeline-block__step-media,
  .process-timeline-block__step:last-child .process-timeline-block__step-video,
  .process-timeline-block__step:last-child .process-timeline-block__step-image {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 20% 50%);
  }
}
.process-timeline-block__step:last-child .process-timeline-block__step-media-content,
.process-timeline-block__step:last-child .process-timeline-block__step-content {
  margin-right: 0;
}
.process-timeline-block__step-media {
  width: 100%;
  height: auto;
  aspect-ratio: 480/640;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #3A4044;
}
@media (min-width: 992px) {
  .process-timeline-block__step-media {
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 20% 50%);
  }
}
.process-timeline-block__step-media:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0) 50%, rgba(28, 28, 28, 0.7) 89.78%);
  z-index: 2;
}
.process-timeline-block__step-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .process-timeline-block__step-image {
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 20% 50%);
  }
}
.process-timeline-block__step-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .process-timeline-block__step-video {
    clip-path: polygon(0 0, 80% 0, 100% 50%, 80% 100%, 0 100%, 20% 50%);
  }
}
.process-timeline-block__step-media-content {
  position: absolute;
  bottom: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 5;
  width: 100%;
}
@media (min-width: 992px) {
  .process-timeline-block__step-media-content {
    margin-right: 10%;
  }
}
.process-timeline-block__step-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 20px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  transition: background 0.2s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .process-timeline-block__step-icon {
    width: 60px;
    height: 60px;
    padding: 15px;
  }
}
@media (max-width: 575.98px) {
  .process-timeline-block__step-icon {
    width: 60px;
    height: 60px;
    padding: 15px;
  }
}
.process-timeline-block__step-icon img {
  transition: opacity 0.2s ease-in-out;
}
.process-timeline-block__step-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 39px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='39' height='26' viewBox='0 0 39 26' fill='none'%3E%3Cpath d='M37.25 13L25.25 25M37.25 13L25.25 0.999997M37.25 13H1.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}
.process-timeline-block__step-icon:hover {
  background: #AC441E;
}
.process-timeline-block__step-icon:hover img {
  opacity: 0;
}
.process-timeline-block__step-icon:hover:after {
  opacity: 1;
}
.process-timeline-block__step-title {
  font-size: clamp(1.6rem, 1.8181818182vw, 3rem);
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.process-timeline-block__step-time {
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
}
.process-timeline-block__step-content {
  margin-top: 3.5rem;
  padding: 0 1.5rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .process-timeline-block__step-content {
    margin-right: 10%;
  }
  .process-timeline-block__step-content .collapse {
    display: block !important;
  }
}
.process-timeline-block__step-content .micro-title {
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}
.process-timeline-block__step-content .micro-title .caret-down {
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M9 1L5 5L1 1' stroke='%233A4044' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: transform 0.2s ease-in-out;
  display: inline-block;
  margin-top: 3px;
}
.process-timeline-block__step-content .micro-title.collapsed .caret-down {
  transform: rotate(0deg);
}
.process-timeline-block__sub-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}
.process-timeline-block__sub-step {
  color: #000;
}
.process-timeline-block__sub-step a {
  text-decoration: none;
}

.process-timeline-modal {
  overflow: hidden;
}
.process-timeline-modal .modal-body {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .process-timeline-modal .modal-body {
    overflow: scroll;
  }
}
.process-timeline-modal .row {
  height: 100%;
}
@media (max-width: 1399.98px) {
  .process-timeline-modal .row {
    margin: 0;
  }
}
.process-timeline-modal .nav-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
  position: relative;
}
.process-timeline-modal .nav-header .prev-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .process-timeline-modal .nav-header .prev-arrow {
    display: none;
  }
}
.process-timeline-modal .mobile-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1000;
}
.process-timeline-modal .mobile-modal-close button {
  background: none;
  border: none;
  font-size: 4rem;
  color: #3A4044;
  line-height: 0.75;
  cursor: pointer;
}
@media (min-width: 992px) {
  .process-timeline-modal .mobile-modal-close {
    display: none;
  }
}
.process-timeline-modal__nav {
  padding: 3rem 0 3rem 0;
  background: none;
  border: none;
  height: 100%;
  overflow: scroll;
}
.process-timeline-modal__nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.process-timeline-modal__nav-step {
  margin-bottom: 2.5rem;
}
.process-timeline-modal__nav-step:last-child {
  margin-bottom: 0;
}
.process-timeline-modal__nav-step-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.25rem;
  position: relative;
  width: 100%;
  color: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12px;
  text-transform: uppercase;
}
.process-timeline-modal__nav-step-title .process-timeline-modal__nav-step-name {
  flex: 0 0 auto;
  background: #fff;
  z-index: 1;
}
.process-timeline-modal__nav-step-title:before, .process-timeline-modal__nav-step-title:after {
  content: "";
  display: block;
  height: 2px;
  background: #3A4044;
  opacity: 0.3;
  flex: 1 1 0;
  position: relative;
  z-index: 0;
  transform: translateY(-50%);
}
.process-timeline-modal__nav-sub-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.process-timeline-modal__nav-sub-step {
  margin: 0;
  width: 100%;
}
.process-timeline-modal__nav-sub-step-link {
  display: block;
  width: 100%;
  text-align: center;
  color: #3A4044;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  text-decoration: none;
  background: none;
  transition: background 0.15s, color 0.15s;
}
.process-timeline-modal__nav-sub-step-link.is-active, .process-timeline-modal__nav-sub-step-link:hover {
  background: #AC441E;
  color: #ffffff;
}
.process-timeline-modal__nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 767.98px) {
  .process-timeline-modal__nav-arrows {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
}
.process-timeline-modal__nav-arrows .nav-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .process-timeline-modal__nav-arrows .nav-arrows {
    flex-direction: row;
    gap: 5px;
  }
}
.process-timeline-modal__nav-arrows button {
  display: flex;
  width: 80px;
  height: 80px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background: none;
  border: 2px solid rgba(152, 157, 159, 0.2);
  border-bottom-width: 1px;
  transition: border-color 0.15s;
}
@media (max-width: 1199.98px) {
  .process-timeline-modal__nav-arrows button {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal__nav-arrows button {
    width: 30px;
    height: 30px;
    padding: 10px;
    border-bottom-width: 2px;
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal__nav-arrows button:first-child {
    transform: rotate(-90deg);
  }
}
@media (min-width: 768px) {
  .process-timeline-modal__nav-arrows button:last-child {
    border-bottom-width: 2px;
    border-top-width: 1px;
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal__nav-arrows button:last-child {
    transform: rotate(-90deg);
  }
}
.process-timeline-modal__nav-arrows button:not(.swiper-button-disabled) {
  border-color: #3A4044;
  cursor: pointer;
}
.process-timeline-modal__nav-arrows button:not(.swiper-button-disabled):hover {
  border-color: #AC441E;
}
@media (min-width: 768px) {
  .process-timeline-modal .swiper {
    overflow: visible;
    height: 100vh;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .process-timeline-modal__swiper {
    padding-left: 3rem;
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal__swiper {
    margin-top: 7rem;
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .process-timeline-modal .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 25px 0;
    height: auto !important;
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal .swiper-slide {
    padding: 5% 25px;
    height: 90% !important;
    overflow: visible;
  }
}
.process-timeline-modal__slide-inner {
  width: 100%;
  aspect-ratio: 1170/876;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0px 100px 232px 0px rgba(0, 0, 0, 0.07), 0px 41.778px 96.924px 0px rgba(0, 0, 0, 0.05), 0px 22.336px 51.82px 0px rgba(0, 0, 0, 0.04), 0px 12.522px 29.05px 0px rgba(0, 0, 0, 0.04), 0px 6.65px 15.428px 0px rgba(0, 0, 0, 0.03), 0px 2.767px 6.42px 0px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .process-timeline-modal__slide-inner {
    aspect-ratio: auto;
    height: 100%;
    overflow: scroll;
  }
}
.process-timeline-modal__slide-number {
  position: absolute;
  top: -20px;
  left: 50%;
  z-index: 2;
  background: #AC441E;
  color: #ffffff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 50px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .process-timeline-modal__slide-number {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal__slide-number {
    position: relative;
    top: 10px;
  }
}
.process-timeline-modal__slide-content {
  padding: 8rem clamp(1rem, 6vw, 15rem) 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .process-timeline-modal__slide-content {
    padding: 6rem clamp(1rem, 6vw, 15rem);
  }
}
@media (max-width: 767.98px) {
  .process-timeline-modal__slide-content {
    padding: 3rem;
  }
}
.process-timeline-modal__slide-media-row {
  display: flex;
  gap: 2rem;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
@media (min-width: 768px) {
  .process-timeline-modal__slide-media-row.order-reverse {
    flex-direction: row-reverse;
  }
}
.process-timeline-modal__slide-media-row .process-timeline-modal__slide-media-image,
.process-timeline-modal__slide-media-row .process-timeline-modal__slide-media-video {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}
.process-timeline-modal__slide-media-row .process-timeline-modal__slide-image,
.process-timeline-modal__slide-media-row .process-timeline-modal__slide-video {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background: #000;
}
@media (max-width: 767.98px) {
  .process-timeline-modal__slide-media-row {
    flex-direction: column;
  }
}
.process-timeline-modal__slide-media-video .play-hover {
  max-width: 40%;
}
.process-timeline-modal__slide-media-video .play-hover img {
  max-width: 100%;
}

.process-timeline-modal__nav-toggle {
  display: none;
  position: absolute;
  left: 0;
  top: 1rem;
  z-index: 1020;
  background: none;
  border: 0;
  border-radius: 0;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .process-timeline-modal__nav-toggle {
    display: flex;
  }
}
.process-timeline-modal__nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: #3a4044;
}

.process-timeline-modal__nav-overlay {
  display: none;
}
@media (max-width: 991.98px) {
  .process-timeline-modal__nav-overlay {
    display: block;
    position: fixed;
    z-index: 1010;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(28, 28, 28, 0.3);
    opacity: 1;
    transition: opacity 0.2s;
  }
}
.process-timeline-modal__nav-overlay.is-hidden {
  display: none;
  opacity: 0;
}

.process-timeline-modal__nav-close {
  display: none;
}
@media (max-width: 991.98px) {
  .process-timeline-modal__nav-close {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 4rem;
    color: #3A4044;
    z-index: 1011;
    cursor: pointer;
  }
}

@media (max-width: 991.98px) {
  .process-timeline-modal__nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    z-index: 1020;
    box-shadow: 2px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .process-timeline-modal__nav.is-open {
    transform: translateX(0);
  }
}

@media print {
  .page-template-default:has(.block.guide-layout) .site-footer, .page-template-default:has(.block.guide-layout) .site-header {
    display: none !important;
  }
  .page-template-page-favorites p,
  .block.guide-layout p {
    font-size: 12px;
  }
  .page-template-page-favorites a,
  .block.guide-layout a {
    font-size: 12px;
  }
  .page-template-page-favorites a::after,
  .block.guide-layout a::after {
    content: " (" attr(href) ") ";
    word-wrap: break-word;
    font-size: 12px;
  }
  .page-template-page-favorites .site-header, .page-template-page-favorites .site-footer,
  .block.guide-layout .site-header,
  .block.guide-layout .site-footer {
    display: none !important;
  }
  .page-template-page-favorites .bg-white,
  .block.guide-layout .bg-white {
    background-color: transparent;
  }
  .page-template-page-favorites .print-hide,
  .block.guide-layout .print-hide {
    display: none !important;
  }
  .page-template-page-favorites .print-100,
  .block.guide-layout .print-100 {
    width: 100% !important;
  }
  .page-template-page-favorites .background-blur,
  .block.guide-layout .background-blur {
    display: none;
  }
  .page-template-page-favorites .col-md-6 > div,
  .block.guide-layout .col-md-6 > div {
    position: relative !important;
  }
  .page-template-page-favorites .col-md-6,
  .block.guide-layout .col-md-6 {
    width: 45%;
    float: left;
    margin-bottom: 40px;
  }
  .page-template-page-favorites .col-md-6 .lg-mxh-370,
  .block.guide-layout .col-md-6 .lg-mxh-370 {
    height: 200px;
    display: block;
  }
  .page-template-page-favorites .col-md-6 .lg-mxh-370 .position-absolute-40-b-center, .page-template-page-favorites .col-md-6 .lg-mxh-370 .position-absolute-0-tr,
  .block.guide-layout .col-md-6 .lg-mxh-370 .position-absolute-40-b-center,
  .block.guide-layout .col-md-6 .lg-mxh-370 .position-absolute-0-tr {
    display: none !important;
  }
  .page-template-page-favorites .col-md-6 .lg-mxh-370 picture,
  .block.guide-layout .col-md-6 .lg-mxh-370 picture {
    max-height: 200px !important;
    overflow: hidden;
  }
  .page-template-page-favorites .col-md-6 .lg-mxh-370 .img-1,
  .block.guide-layout .col-md-6 .lg-mxh-370 .img-1 {
    overflow: auto;
    width: 100%;
    height: 200px;
  }
  .page-template-page-favorites .col-md-6 .lg-mxh-370 .img-2,
  .block.guide-layout .col-md-6 .lg-mxh-370 .img-2 {
    overflow: hidden;
    max-width: 100%;
    height: auto;
  }
  .page-template-page-favorites .col-md-6 .lg-mxh-370 .img-absolute,
  .block.guide-layout .col-md-6 .lg-mxh-370 .img-absolute {
    bottom: 0 !important;
    left: 0 !important;
    margin: auto !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 200px !important;
    height: auto !important;
  }
  .page-template-page-favorites .col-md-6 .detail,
  .block.guide-layout .col-md-6 .detail {
    display: block;
    position: relative;
    margin-top: 15px;
  }
  .page-template-page-favorites .d-flex,
  .block.guide-layout .d-flex {
    display: flex !important;
    flex-direction: column;
  }
  .page-template-page-favorites div,
  .block.guide-layout div {
    display: block;
  }
  #modalVideo {
    display: none;
  }
}
/* Child theme */
.color-blue {
  color: #307698;
}

.link-blue {
  color: #307698;
  text-decoration: none;
}

.bg-blue-dark,
.bg-charcoal {
  background-color: #112F3D;
  color: #ffffff;
}

.color-blue-dark {
  color: #112F3D;
}

.active-border-bottom-red:after {
  background-color: #307698;
}

.dropdown.select-drop .dropdown-toggle:not(.placeholder) {
  color: #307698;
  background-color: #FFF;
  border-color: #307698;
}

/*GLobal site logo*/
.site-header .site-logo {
  background: url("/assets/images/branding/showplace-dc-logo.svg") center center/contain no-repeat;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header .site-logo {
    flex-basis: 100%;
    background-position: left center;
  }
}
@media (max-width: 1199.98px) {
  .site-header .site-logo {
    height: 49px;
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .site-header .site-logo {
    height: 62px;
    width: 255px;
  }
}
@media (max-width: 991.98px) {
  .site-header .right-info-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .site-header .right-info-nav {
    margin-top: -10px;
  }
}
.site-header .right-info-nav .btn-link {
  font-size: 1.2rem;
  letter-spacing: 0.03rem;
  font-weight: 500;
  margin-right: 30px;
  text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .site-header .right-info-nav .btn-link {
    margin-top: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 1400px) {
  .site-header .right-info-nav .btn-link {
    font-size: 1.4rem;
    margin-top: 18px;
  }
}
@media (max-width: 991.98px) {
  .site-header .right-info-nav .btn-link {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .site-header #navbarToggle {
    order: 3;
  }
}
@media (max-width: 575.98px) {
  .site-header .appt-cta {
    margin-top: 15px;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .site-header .appt-cta {
    order: 2;
    margin-left: auto;
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .site-header #primaryNav {
    margin-left: 20px;
  }
}

@media (min-width: 992px) {
  .dropdown a {
    white-space: nowrap;
  }
}
.dropdown a:hover {
  color: #307698;
}

@media (max-width: 991.98px) {
  .site-footer .footer-logo {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 1199.98px) {
  .site-footer .footer-logo {
    height: 49px;
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .site-footer .footer-logo {
    height: 62px;
    width: 255px;
  }
}
@media (max-width: 767.98px) {
  .site-footer .footer-logo img {
    width: auto;
  }
}
@media (max-width: 1199.98px) {
  .site-footer .footer-stats {
    font-size: 0.9rem;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-stats {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
}
.site-footer .contact-details {
  font-weight: normal;
  color: #737373;
}
.site-footer a:hover {
  color: #307698;
}
@media (max-width: 991.98px) {
  .site-footer .list-social {
    border-bottom: 1px solid rgba(58, 64, 68, 0.2);
    border-top: 1px solid rgba(58, 64, 68, 0.2);
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }
}

a:hover {
  color: #307698;
}

.tab-details .nav-link.active {
  border-top-color: #307698;
}

.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
  color: #307698;
}
.nav-pills .nav-link:hover span, .nav-pills .nav-link:focus span {
  border-bottom-color: #307698;
}

.project-detail-group .project-detail-link {
  color: #307698;
}

.nav-border-top-pills .nav-link.active {
  border-top-color: #307698;
}

.active-border-red .active .border-2 {
  border-color: #307698;
}

.img-active {
  outline-color: #307698;
}

.stain-toggle.active .border-2 {
  border-color: #307698;
}

.wood-thumb-nav .active .wood-name,
.stain-toggle.active .stain-name {
  color: #307698;
}

.split-content-form p a {
  color: #307698;
}

.desginer-scheduling {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .desginer-scheduling {
    flex-direction: row;
    gap: 20px;
  }
}

.reviews-list .rpi {
  --head-star-color: #E06C00;
  --star-color: #E06C00;
}
.reviews-list .rpi .rpi-based {
  color: #707070 !important;
}
.reviews-list .rpi a:focus {
  outline-color: rgb(0, 95, 204) !important;
  outline-offset: 1px !important;
  outline-width: 1px !important;
  outline-style: auto !important;
}

.accordion-default .accordion-button:not(.collapsed) {
  border-top-color: #307698;
  color: #307698;
}

.overlay-up-down:before {
  background: linear-gradient(0deg, rgba(17, 47, 61, 0.75), rgba(17, 47, 61, 0.75));
}

:root {
  --star-size: 20px;
  --star-color: #D1D3D4;
  --star-background: #307697;
}

.product-rating {
  --percent: calc(var(--rating) / 5 * calc(100% - .2em));
  align-items: center;
  display: flex;
  line-height: 1;
  margin: 5px 0 20px;
}

.review-label {
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: #000;
  margin: 2px 10px 0 0;
}
@media (max-width: 991.98px) {
  .review-label {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .review-label {
    font-size: 2rem;
  }
}

.review-text {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
  color: #737373;
  display: block;
  text-transform: uppercase;
}
.review-text::before {
  font-size: 1.6rem;
  content: "★★★★★";
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  margin-right: 8px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-grid {
  padding-bottom: 1em;
}

.product-summary {
  padding: 1.5em 0;
}

.product-image {
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .product-image {
    max-width: 100px;
  }
}
@media (min-width: 768px) {
  .product-image {
    max-width: 100%;
  }
}

.rplg .rplg-badge-cnt .rplg-badge2 {
  border: none !important;
  box-shadow: none !important;
  font-family: inherit !important;
}
.rplg .rplg-badge-cnt .rplg-badge2-border,
.rplg .rplg-badge-cnt .rplg-badge-logo {
  display: none;
}
.rplg .rplg-badge-cnt .rplg-badge2-btn {
  padding: 0 !important;
}
.rplg .rplg-badge-cnt .rplg-badge2-score {
  margin-left: 0 !important;
}
.rplg .rplg-badge-cnt .rplg-biz-rating.rplg-biz-google .rplg-biz-score {
  color: #000 !important;
}
.rplg .rplg-badge-cnt .rplg-stars svg use {
  fill: var(--star-background) !important;
}

.slider-controls-dark .slick-arrow:hover {
  border: 2px solid #307698;
}

/*Global input styles*/
.form-control {
  /*Input color options*/
}
.form-control::-moz-placeholder {
  color: #3A4044;
}
.form-control::placeholder {
  color: #3A4044;
}
.form-control:focus-visible {
  outline: 5px auto #307698;
}
.form-control::-moz-placeholder {
  color: #3A4044;
}
.form-control::placeholder {
  color: #3A4044;
}
.form-control:focus-visible {
  outline: 5px auto #307698;
}
.form-control.control-dark {
  border: solid 2px #3A4044;
}
.form-control.border-black {
  border-color: #3A4044;
}
.form-control.border-blue {
  border-color: #307698;
}

@media (min-width: 992px) {
  .twentyfive-year-overlay .overlay-up-down:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: url("/assets/images/25year-overlay.svg") no-repeat center center;
    background-size: contain;
    height: 100%;
    z-index: 1;
  }
}
@media (max-width: 767.98px) {
  .twentyfive-year-overlay .twentyfive-year-logo {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .twentyfive-year-overlay .twentyfive-year-logo {
    max-width: 321px;
    width: 20%;
    margin: 0 auto;
  }
}
.twentyfive-year-overlay.image-absolute {
  position: relative;
  padding: 0;
}
.twentyfive-year-overlay.image-absolute .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  max-height: 800px;
  overflow: hidden;
  z-index: 0;
}
.twentyfive-year-overlay.image-absolute .image-overlay {
  padding-top: 90px;
  padding-bottom: 100px;
}
.twentyfive-year-overlay .twentyfive-year-form {
  padding: 30px 45px;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 100px;
  text-align: left;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .twentyfive-year-overlay .twentyfive-year-form {
    padding: 50px 75px;
  }
}
@media (min-width: 1200px) {
  .twentyfive-year-overlay .twentyfive-year-form {
    padding: 100px 150px;
  }
}
.twentyfive-year-overlay .twentyfive-year-form .gform_wrapper {
  margin: 0;
}
.twentyfive-year-overlay .twentyfive-year-form .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
}
.twentyfive-year-overlay .twentyfive-year-form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container input,
.twentyfive-year-overlay .twentyfive-year-form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container select {
  width: 100%;
  padding: 12px;
  border: 1px solid #fff;
  background-color: #FFF;
  color: #000;
}
.twentyfive-year-overlay .twentyfive-year-form .gform_wrapper .gform_footer .gform_button {
  border-color: #FFF;
  color: #FFF;
}
.twentyfive-year-overlay .twentyfive-year-form .gform_wrapper .gform_footer .gform_button:hover {
  border-color: #307698;
}

@media (min-width: 992px) {
  .twentyfive-year-overlay-cta .overlay-up-down:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: url("/assets/images/25year-overlay.svg") no-repeat center center;
    background-size: contain;
    height: 1030px;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .twentyfive-year-overlay-cta .overlay-up-down img {
    min-height: 200px;
  }
}

.twentyfive-year-styled-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 74px;
}
.twentyfive-year-styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}
.twentyfive-year-styled-list li:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23307698'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 8px;
}
.twentyfive-year-styled-list li.is-x:before {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.5 1L1.5 11M1.5 1L11.5 11' stroke='%23AC441E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
