@charset "UTF-8";
html {
  font-size: 10px;
}

/*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 768px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1500px;
  }
}
@media (min-width: 1500px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1650px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1500px;
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

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

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

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

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

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

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

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1500px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

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

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

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

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

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

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

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

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

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

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

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

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

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

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

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

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

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

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

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

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

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

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

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

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

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

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

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

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

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

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

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

.m-6 {
  margin: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.m-13 {
  margin: 13rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.m-25 {
  margin: 25rem !important;
}

.m-30 {
  margin: 30rem !important;
}

.m-35 {
  margin: 35rem !important;
}

.m-40 {
  margin: 40rem !important;
}

.m-45 {
  margin: 45rem !important;
}

.m-50 {
  margin: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n2_5 {
  margin: -2.5rem !important;
}

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

.m-n3_5 {
  margin: -3.5rem !important;
}

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

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

.m-n6 {
  margin: -6rem !important;
}

.m-n7 {
  margin: -7rem !important;
}

.m-n8 {
  margin: -8rem !important;
}

.m-n9 {
  margin: -9rem !important;
}

.m-n10 {
  margin: -10rem !important;
}

.m-n13 {
  margin: -13rem !important;
}

.m-n15 {
  margin: -15rem !important;
}

.m-n20 {
  margin: -20rem !important;
}

.m-n25 {
  margin: -25rem !important;
}

.m-n30 {
  margin: -30rem !important;
}

.m-n35 {
  margin: -35rem !important;
}

.m-n40 {
  margin: -40rem !important;
}

.m-n45 {
  margin: -45rem !important;
}

.m-n50 {
  margin: -50rem !important;
}

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

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

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

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

.mx-n2_5 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

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

.mx-n3_5 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

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

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

.mx-n6 {
  margin-right: -6rem !important;
  margin-left: -6rem !important;
}

.mx-n7 {
  margin-right: -7rem !important;
  margin-left: -7rem !important;
}

.mx-n8 {
  margin-right: -8rem !important;
  margin-left: -8rem !important;
}

.mx-n9 {
  margin-right: -9rem !important;
  margin-left: -9rem !important;
}

.mx-n10 {
  margin-right: -10rem !important;
  margin-left: -10rem !important;
}

.mx-n13 {
  margin-right: -13rem !important;
  margin-left: -13rem !important;
}

.mx-n15 {
  margin-right: -15rem !important;
  margin-left: -15rem !important;
}

.mx-n20 {
  margin-right: -20rem !important;
  margin-left: -20rem !important;
}

.mx-n25 {
  margin-right: -25rem !important;
  margin-left: -25rem !important;
}

.mx-n30 {
  margin-right: -30rem !important;
  margin-left: -30rem !important;
}

.mx-n35 {
  margin-right: -35rem !important;
  margin-left: -35rem !important;
}

.mx-n40 {
  margin-right: -40rem !important;
  margin-left: -40rem !important;
}

.mx-n45 {
  margin-right: -45rem !important;
  margin-left: -45rem !important;
}

.mx-n50 {
  margin-right: -50rem !important;
  margin-left: -50rem !important;
}

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

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

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

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

.my-n2_5 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

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

.my-n3_5 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

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

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

.my-n6 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my-n7 {
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.my-n8 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.my-n9 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.my-n10 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.my-n13 {
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.my-n15 {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.my-n20 {
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}

.my-n25 {
  margin-top: -25rem !important;
  margin-bottom: -25rem !important;
}

.my-n30 {
  margin-top: -30rem !important;
  margin-bottom: -30rem !important;
}

.my-n35 {
  margin-top: -35rem !important;
  margin-bottom: -35rem !important;
}

.my-n40 {
  margin-top: -40rem !important;
  margin-bottom: -40rem !important;
}

.my-n45 {
  margin-top: -45rem !important;
  margin-bottom: -45rem !important;
}

.my-n50 {
  margin-top: -50rem !important;
  margin-bottom: -50rem !important;
}

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

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

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

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

.mt-n2_5 {
  margin-top: -2.5rem !important;
}

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

.mt-n3_5 {
  margin-top: -3.5rem !important;
}

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

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

.mt-n6 {
  margin-top: -6rem !important;
}

.mt-n7 {
  margin-top: -7rem !important;
}

.mt-n8 {
  margin-top: -8rem !important;
}

.mt-n9 {
  margin-top: -9rem !important;
}

.mt-n10 {
  margin-top: -10rem !important;
}

.mt-n13 {
  margin-top: -13rem !important;
}

.mt-n15 {
  margin-top: -15rem !important;
}

.mt-n20 {
  margin-top: -20rem !important;
}

.mt-n25 {
  margin-top: -25rem !important;
}

.mt-n30 {
  margin-top: -30rem !important;
}

.mt-n35 {
  margin-top: -35rem !important;
}

.mt-n40 {
  margin-top: -40rem !important;
}

.mt-n45 {
  margin-top: -45rem !important;
}

.mt-n50 {
  margin-top: -50rem !important;
}

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

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

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

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

.me-n2_5 {
  margin-right: -2.5rem !important;
}

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

.me-n3_5 {
  margin-right: -3.5rem !important;
}

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

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

.me-n6 {
  margin-right: -6rem !important;
}

.me-n7 {
  margin-right: -7rem !important;
}

.me-n8 {
  margin-right: -8rem !important;
}

.me-n9 {
  margin-right: -9rem !important;
}

.me-n10 {
  margin-right: -10rem !important;
}

.me-n13 {
  margin-right: -13rem !important;
}

.me-n15 {
  margin-right: -15rem !important;
}

.me-n20 {
  margin-right: -20rem !important;
}

.me-n25 {
  margin-right: -25rem !important;
}

.me-n30 {
  margin-right: -30rem !important;
}

.me-n35 {
  margin-right: -35rem !important;
}

.me-n40 {
  margin-right: -40rem !important;
}

.me-n45 {
  margin-right: -45rem !important;
}

.me-n50 {
  margin-right: -50rem !important;
}

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

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

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

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

.mb-n2_5 {
  margin-bottom: -2.5rem !important;
}

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

.mb-n3_5 {
  margin-bottom: -3.5rem !important;
}

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

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

.mb-n6 {
  margin-bottom: -6rem !important;
}

.mb-n7 {
  margin-bottom: -7rem !important;
}

.mb-n8 {
  margin-bottom: -8rem !important;
}

.mb-n9 {
  margin-bottom: -9rem !important;
}

.mb-n10 {
  margin-bottom: -10rem !important;
}

.mb-n13 {
  margin-bottom: -13rem !important;
}

.mb-n15 {
  margin-bottom: -15rem !important;
}

.mb-n20 {
  margin-bottom: -20rem !important;
}

.mb-n25 {
  margin-bottom: -25rem !important;
}

.mb-n30 {
  margin-bottom: -30rem !important;
}

.mb-n35 {
  margin-bottom: -35rem !important;
}

.mb-n40 {
  margin-bottom: -40rem !important;
}

.mb-n45 {
  margin-bottom: -45rem !important;
}

.mb-n50 {
  margin-bottom: -50rem !important;
}

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

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

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

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

.ms-n2_5 {
  margin-left: -2.5rem !important;
}

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

.ms-n3_5 {
  margin-left: -3.5rem !important;
}

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

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

.ms-n6 {
  margin-left: -6rem !important;
}

.ms-n7 {
  margin-left: -7rem !important;
}

.ms-n8 {
  margin-left: -8rem !important;
}

.ms-n9 {
  margin-left: -9rem !important;
}

.ms-n10 {
  margin-left: -10rem !important;
}

.ms-n13 {
  margin-left: -13rem !important;
}

.ms-n15 {
  margin-left: -15rem !important;
}

.ms-n20 {
  margin-left: -20rem !important;
}

.ms-n25 {
  margin-left: -25rem !important;
}

.ms-n30 {
  margin-left: -30rem !important;
}

.ms-n35 {
  margin-left: -35rem !important;
}

.ms-n40 {
  margin-left: -40rem !important;
}

.ms-n45 {
  margin-left: -45rem !important;
}

.ms-n50 {
  margin-left: -50rem !important;
}

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

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

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

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

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

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

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

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

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

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

.p-6 {
  padding: 6rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.p-8 {
  padding: 8rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.p-13 {
  padding: 13rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.p-25 {
  padding: 25rem !important;
}

.p-30 {
  padding: 30rem !important;
}

.p-35 {
  padding: 35rem !important;
}

.p-40 {
  padding: 40rem !important;
}

.p-45 {
  padding: 45rem !important;
}

.p-50 {
  padding: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ps-50 {
  padding-left: 50rem !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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-0_5 {
    margin: 0.5rem !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-1_5 {
    margin: 1.5rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-2_5 {
    margin: 2.5rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-3_5 {
    margin: 3.5rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-13 {
    margin: 13rem !important;
  }
  .m-sm-15 {
    margin: 15rem !important;
  }
  .m-sm-20 {
    margin: 20rem !important;
  }
  .m-sm-25 {
    margin: 25rem !important;
  }
  .m-sm-30 {
    margin: 30rem !important;
  }
  .m-sm-35 {
    margin: 35rem !important;
  }
  .m-sm-40 {
    margin: 40rem !important;
  }
  .m-sm-45 {
    margin: 45rem !important;
  }
  .m-sm-50 {
    margin: 50rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-sm-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sm-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-sm-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-sm-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-sm-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-sm-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-sm-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-sm-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-sm-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sm-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-sm-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-sm-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-sm-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-sm-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-sm-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-sm-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-13 {
    margin-top: 13rem !important;
  }
  .mt-sm-15 {
    margin-top: 15rem !important;
  }
  .mt-sm-20 {
    margin-top: 20rem !important;
  }
  .mt-sm-25 {
    margin-top: 25rem !important;
  }
  .mt-sm-30 {
    margin-top: 30rem !important;
  }
  .mt-sm-35 {
    margin-top: 35rem !important;
  }
  .mt-sm-40 {
    margin-top: 40rem !important;
  }
  .mt-sm-45 {
    margin-top: 45rem !important;
  }
  .mt-sm-50 {
    margin-top: 50rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 1rem !important;
  }
  .me-sm-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-sm-2 {
    margin-right: 2rem !important;
  }
  .me-sm-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-sm-3 {
    margin-right: 3rem !important;
  }
  .me-sm-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-sm-4 {
    margin-right: 4rem !important;
  }
  .me-sm-5 {
    margin-right: 5rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 7rem !important;
  }
  .me-sm-8 {
    margin-right: 8rem !important;
  }
  .me-sm-9 {
    margin-right: 9rem !important;
  }
  .me-sm-10 {
    margin-right: 10rem !important;
  }
  .me-sm-13 {
    margin-right: 13rem !important;
  }
  .me-sm-15 {
    margin-right: 15rem !important;
  }
  .me-sm-20 {
    margin-right: 20rem !important;
  }
  .me-sm-25 {
    margin-right: 25rem !important;
  }
  .me-sm-30 {
    margin-right: 30rem !important;
  }
  .me-sm-35 {
    margin-right: 35rem !important;
  }
  .me-sm-40 {
    margin-right: 40rem !important;
  }
  .me-sm-45 {
    margin-right: 45rem !important;
  }
  .me-sm-50 {
    margin-right: 50rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }
  .mb-sm-25 {
    margin-bottom: 25rem !important;
  }
  .mb-sm-30 {
    margin-bottom: 30rem !important;
  }
  .mb-sm-35 {
    margin-bottom: 35rem !important;
  }
  .mb-sm-40 {
    margin-bottom: 40rem !important;
  }
  .mb-sm-45 {
    margin-bottom: 45rem !important;
  }
  .mb-sm-50 {
    margin-bottom: 50rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 1rem !important;
  }
  .ms-sm-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 2rem !important;
  }
  .ms-sm-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 3rem !important;
  }
  .ms-sm-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 4rem !important;
  }
  .ms-sm-5 {
    margin-left: 5rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 7rem !important;
  }
  .ms-sm-8 {
    margin-left: 8rem !important;
  }
  .ms-sm-9 {
    margin-left: 9rem !important;
  }
  .ms-sm-10 {
    margin-left: 10rem !important;
  }
  .ms-sm-13 {
    margin-left: 13rem !important;
  }
  .ms-sm-15 {
    margin-left: 15rem !important;
  }
  .ms-sm-20 {
    margin-left: 20rem !important;
  }
  .ms-sm-25 {
    margin-left: 25rem !important;
  }
  .ms-sm-30 {
    margin-left: 30rem !important;
  }
  .ms-sm-35 {
    margin-left: 35rem !important;
  }
  .ms-sm-40 {
    margin-left: 40rem !important;
  }
  .ms-sm-45 {
    margin-left: 45rem !important;
  }
  .ms-sm-50 {
    margin-left: 50rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n0_5 {
    margin: -0.5rem !important;
  }
  .m-sm-n1 {
    margin: -1rem !important;
  }
  .m-sm-n1_5 {
    margin: -1.5rem !important;
  }
  .m-sm-n2 {
    margin: -2rem !important;
  }
  .m-sm-n2_5 {
    margin: -2.5rem !important;
  }
  .m-sm-n3 {
    margin: -3rem !important;
  }
  .m-sm-n3_5 {
    margin: -3.5rem !important;
  }
  .m-sm-n4 {
    margin: -4rem !important;
  }
  .m-sm-n5 {
    margin: -5rem !important;
  }
  .m-sm-n6 {
    margin: -6rem !important;
  }
  .m-sm-n7 {
    margin: -7rem !important;
  }
  .m-sm-n8 {
    margin: -8rem !important;
  }
  .m-sm-n9 {
    margin: -9rem !important;
  }
  .m-sm-n10 {
    margin: -10rem !important;
  }
  .m-sm-n13 {
    margin: -13rem !important;
  }
  .m-sm-n15 {
    margin: -15rem !important;
  }
  .m-sm-n20 {
    margin: -20rem !important;
  }
  .m-sm-n25 {
    margin: -25rem !important;
  }
  .m-sm-n30 {
    margin: -30rem !important;
  }
  .m-sm-n35 {
    margin: -35rem !important;
  }
  .m-sm-n40 {
    margin: -40rem !important;
  }
  .m-sm-n45 {
    margin: -45rem !important;
  }
  .m-sm-n50 {
    margin: -50rem !important;
  }
  .mx-sm-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-sm-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-sm-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-sm-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-sm-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-sm-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-sm-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-sm-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-sm-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-sm-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-sm-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-sm-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-sm-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-sm-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-sm-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-sm-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-sm-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-sm-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-sm-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-sm-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-sm-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-sm-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-sm-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-sm-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-sm-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-sm-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-sm-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-sm-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-sm-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-sm-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-sm-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-sm-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-sm-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-sm-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-sm-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-sm-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-sm-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n1 {
    margin-top: -1rem !important;
  }
  .mt-sm-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n2 {
    margin-top: -2rem !important;
  }
  .mt-sm-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -3rem !important;
  }
  .mt-sm-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-sm-n4 {
    margin-top: -4rem !important;
  }
  .mt-sm-n5 {
    margin-top: -5rem !important;
  }
  .mt-sm-n6 {
    margin-top: -6rem !important;
  }
  .mt-sm-n7 {
    margin-top: -7rem !important;
  }
  .mt-sm-n8 {
    margin-top: -8rem !important;
  }
  .mt-sm-n9 {
    margin-top: -9rem !important;
  }
  .mt-sm-n10 {
    margin-top: -10rem !important;
  }
  .mt-sm-n13 {
    margin-top: -13rem !important;
  }
  .mt-sm-n15 {
    margin-top: -15rem !important;
  }
  .mt-sm-n20 {
    margin-top: -20rem !important;
  }
  .mt-sm-n25 {
    margin-top: -25rem !important;
  }
  .mt-sm-n30 {
    margin-top: -30rem !important;
  }
  .mt-sm-n35 {
    margin-top: -35rem !important;
  }
  .mt-sm-n40 {
    margin-top: -40rem !important;
  }
  .mt-sm-n45 {
    margin-top: -45rem !important;
  }
  .mt-sm-n50 {
    margin-top: -50rem !important;
  }
  .me-sm-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n1 {
    margin-right: -1rem !important;
  }
  .me-sm-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n2 {
    margin-right: -2rem !important;
  }
  .me-sm-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -3rem !important;
  }
  .me-sm-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-sm-n4 {
    margin-right: -4rem !important;
  }
  .me-sm-n5 {
    margin-right: -5rem !important;
  }
  .me-sm-n6 {
    margin-right: -6rem !important;
  }
  .me-sm-n7 {
    margin-right: -7rem !important;
  }
  .me-sm-n8 {
    margin-right: -8rem !important;
  }
  .me-sm-n9 {
    margin-right: -9rem !important;
  }
  .me-sm-n10 {
    margin-right: -10rem !important;
  }
  .me-sm-n13 {
    margin-right: -13rem !important;
  }
  .me-sm-n15 {
    margin-right: -15rem !important;
  }
  .me-sm-n20 {
    margin-right: -20rem !important;
  }
  .me-sm-n25 {
    margin-right: -25rem !important;
  }
  .me-sm-n30 {
    margin-right: -30rem !important;
  }
  .me-sm-n35 {
    margin-right: -35rem !important;
  }
  .me-sm-n40 {
    margin-right: -40rem !important;
  }
  .me-sm-n45 {
    margin-right: -45rem !important;
  }
  .me-sm-n50 {
    margin-right: -50rem !important;
  }
  .mb-sm-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-sm-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-sm-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-sm-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-sm-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-sm-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-sm-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-sm-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-sm-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-sm-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-sm-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-sm-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-sm-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-sm-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n1 {
    margin-left: -1rem !important;
  }
  .ms-sm-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n2 {
    margin-left: -2rem !important;
  }
  .ms-sm-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -3rem !important;
  }
  .ms-sm-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-sm-n4 {
    margin-left: -4rem !important;
  }
  .ms-sm-n5 {
    margin-left: -5rem !important;
  }
  .ms-sm-n6 {
    margin-left: -6rem !important;
  }
  .ms-sm-n7 {
    margin-left: -7rem !important;
  }
  .ms-sm-n8 {
    margin-left: -8rem !important;
  }
  .ms-sm-n9 {
    margin-left: -9rem !important;
  }
  .ms-sm-n10 {
    margin-left: -10rem !important;
  }
  .ms-sm-n13 {
    margin-left: -13rem !important;
  }
  .ms-sm-n15 {
    margin-left: -15rem !important;
  }
  .ms-sm-n20 {
    margin-left: -20rem !important;
  }
  .ms-sm-n25 {
    margin-left: -25rem !important;
  }
  .ms-sm-n30 {
    margin-left: -30rem !important;
  }
  .ms-sm-n35 {
    margin-left: -35rem !important;
  }
  .ms-sm-n40 {
    margin-left: -40rem !important;
  }
  .ms-sm-n45 {
    margin-left: -45rem !important;
  }
  .ms-sm-n50 {
    margin-left: -50rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0_5 {
    padding: 0.5rem !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-1_5 {
    padding: 1.5rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-2_5 {
    padding: 2.5rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-3_5 {
    padding: 3.5rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .p-sm-13 {
    padding: 13rem !important;
  }
  .p-sm-15 {
    padding: 15rem !important;
  }
  .p-sm-20 {
    padding: 20rem !important;
  }
  .p-sm-25 {
    padding: 25rem !important;
  }
  .p-sm-30 {
    padding: 30rem !important;
  }
  .p-sm-35 {
    padding: 35rem !important;
  }
  .p-sm-40 {
    padding: 40rem !important;
  }
  .p-sm-45 {
    padding: 45rem !important;
  }
  .p-sm-50 {
    padding: 50rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sm-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-sm-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sm-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-sm-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-sm-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-sm-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-sm-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-sm-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-sm-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-sm-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sm-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-sm-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-sm-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-sm-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-sm-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-sm-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-sm-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pt-sm-13 {
    padding-top: 13rem !important;
  }
  .pt-sm-15 {
    padding-top: 15rem !important;
  }
  .pt-sm-20 {
    padding-top: 20rem !important;
  }
  .pt-sm-25 {
    padding-top: 25rem !important;
  }
  .pt-sm-30 {
    padding-top: 30rem !important;
  }
  .pt-sm-35 {
    padding-top: 35rem !important;
  }
  .pt-sm-40 {
    padding-top: 40rem !important;
  }
  .pt-sm-45 {
    padding-top: 45rem !important;
  }
  .pt-sm-50 {
    padding-top: 50rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 1rem !important;
  }
  .pe-sm-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 2rem !important;
  }
  .pe-sm-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 3rem !important;
  }
  .pe-sm-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 4rem !important;
  }
  .pe-sm-5 {
    padding-right: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 7rem !important;
  }
  .pe-sm-8 {
    padding-right: 8rem !important;
  }
  .pe-sm-9 {
    padding-right: 9rem !important;
  }
  .pe-sm-10 {
    padding-right: 10rem !important;
  }
  .pe-sm-13 {
    padding-right: 13rem !important;
  }
  .pe-sm-15 {
    padding-right: 15rem !important;
  }
  .pe-sm-20 {
    padding-right: 20rem !important;
  }
  .pe-sm-25 {
    padding-right: 25rem !important;
  }
  .pe-sm-30 {
    padding-right: 30rem !important;
  }
  .pe-sm-35 {
    padding-right: 35rem !important;
  }
  .pe-sm-40 {
    padding-right: 40rem !important;
  }
  .pe-sm-45 {
    padding-right: 45rem !important;
  }
  .pe-sm-50 {
    padding-right: 50rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }
  .pb-sm-25 {
    padding-bottom: 25rem !important;
  }
  .pb-sm-30 {
    padding-bottom: 30rem !important;
  }
  .pb-sm-35 {
    padding-bottom: 35rem !important;
  }
  .pb-sm-40 {
    padding-bottom: 40rem !important;
  }
  .pb-sm-45 {
    padding-bottom: 45rem !important;
  }
  .pb-sm-50 {
    padding-bottom: 50rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 1rem !important;
  }
  .ps-sm-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 2rem !important;
  }
  .ps-sm-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 3rem !important;
  }
  .ps-sm-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 4rem !important;
  }
  .ps-sm-5 {
    padding-left: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 7rem !important;
  }
  .ps-sm-8 {
    padding-left: 8rem !important;
  }
  .ps-sm-9 {
    padding-left: 9rem !important;
  }
  .ps-sm-10 {
    padding-left: 10rem !important;
  }
  .ps-sm-13 {
    padding-left: 13rem !important;
  }
  .ps-sm-15 {
    padding-left: 15rem !important;
  }
  .ps-sm-20 {
    padding-left: 20rem !important;
  }
  .ps-sm-25 {
    padding-left: 25rem !important;
  }
  .ps-sm-30 {
    padding-left: 30rem !important;
  }
  .ps-sm-35 {
    padding-left: 35rem !important;
  }
  .ps-sm-40 {
    padding-left: 40rem !important;
  }
  .ps-sm-45 {
    padding-left: 45rem !important;
  }
  .ps-sm-50 {
    padding-left: 50rem !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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-0_5 {
    margin: 0.5rem !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-1_5 {
    margin: 1.5rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-2_5 {
    margin: 2.5rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-3_5 {
    margin: 3.5rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-13 {
    margin: 13rem !important;
  }
  .m-md-15 {
    margin: 15rem !important;
  }
  .m-md-20 {
    margin: 20rem !important;
  }
  .m-md-25 {
    margin: 25rem !important;
  }
  .m-md-30 {
    margin: 30rem !important;
  }
  .m-md-35 {
    margin: 35rem !important;
  }
  .m-md-40 {
    margin: 40rem !important;
  }
  .m-md-45 {
    margin: 45rem !important;
  }
  .m-md-50 {
    margin: 50rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-md-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-md-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-md-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-md-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-md-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-md-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-md-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-md-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-md-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-md-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-md-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-md-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-md-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-md-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-md-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-md-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-13 {
    margin-top: 13rem !important;
  }
  .mt-md-15 {
    margin-top: 15rem !important;
  }
  .mt-md-20 {
    margin-top: 20rem !important;
  }
  .mt-md-25 {
    margin-top: 25rem !important;
  }
  .mt-md-30 {
    margin-top: 30rem !important;
  }
  .mt-md-35 {
    margin-top: 35rem !important;
  }
  .mt-md-40 {
    margin-top: 40rem !important;
  }
  .mt-md-45 {
    margin-top: 45rem !important;
  }
  .mt-md-50 {
    margin-top: 50rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 1rem !important;
  }
  .me-md-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-md-2 {
    margin-right: 2rem !important;
  }
  .me-md-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-md-3 {
    margin-right: 3rem !important;
  }
  .me-md-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-md-4 {
    margin-right: 4rem !important;
  }
  .me-md-5 {
    margin-right: 5rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 7rem !important;
  }
  .me-md-8 {
    margin-right: 8rem !important;
  }
  .me-md-9 {
    margin-right: 9rem !important;
  }
  .me-md-10 {
    margin-right: 10rem !important;
  }
  .me-md-13 {
    margin-right: 13rem !important;
  }
  .me-md-15 {
    margin-right: 15rem !important;
  }
  .me-md-20 {
    margin-right: 20rem !important;
  }
  .me-md-25 {
    margin-right: 25rem !important;
  }
  .me-md-30 {
    margin-right: 30rem !important;
  }
  .me-md-35 {
    margin-right: 35rem !important;
  }
  .me-md-40 {
    margin-right: 40rem !important;
  }
  .me-md-45 {
    margin-right: 45rem !important;
  }
  .me-md-50 {
    margin-right: 50rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-13 {
    margin-bottom: 13rem !important;
  }
  .mb-md-15 {
    margin-bottom: 15rem !important;
  }
  .mb-md-20 {
    margin-bottom: 20rem !important;
  }
  .mb-md-25 {
    margin-bottom: 25rem !important;
  }
  .mb-md-30 {
    margin-bottom: 30rem !important;
  }
  .mb-md-35 {
    margin-bottom: 35rem !important;
  }
  .mb-md-40 {
    margin-bottom: 40rem !important;
  }
  .mb-md-45 {
    margin-bottom: 45rem !important;
  }
  .mb-md-50 {
    margin-bottom: 50rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 1rem !important;
  }
  .ms-md-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-md-2 {
    margin-left: 2rem !important;
  }
  .ms-md-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-md-3 {
    margin-left: 3rem !important;
  }
  .ms-md-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-md-4 {
    margin-left: 4rem !important;
  }
  .ms-md-5 {
    margin-left: 5rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 7rem !important;
  }
  .ms-md-8 {
    margin-left: 8rem !important;
  }
  .ms-md-9 {
    margin-left: 9rem !important;
  }
  .ms-md-10 {
    margin-left: 10rem !important;
  }
  .ms-md-13 {
    margin-left: 13rem !important;
  }
  .ms-md-15 {
    margin-left: 15rem !important;
  }
  .ms-md-20 {
    margin-left: 20rem !important;
  }
  .ms-md-25 {
    margin-left: 25rem !important;
  }
  .ms-md-30 {
    margin-left: 30rem !important;
  }
  .ms-md-35 {
    margin-left: 35rem !important;
  }
  .ms-md-40 {
    margin-left: 40rem !important;
  }
  .ms-md-45 {
    margin-left: 45rem !important;
  }
  .ms-md-50 {
    margin-left: 50rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n0_5 {
    margin: -0.5rem !important;
  }
  .m-md-n1 {
    margin: -1rem !important;
  }
  .m-md-n1_5 {
    margin: -1.5rem !important;
  }
  .m-md-n2 {
    margin: -2rem !important;
  }
  .m-md-n2_5 {
    margin: -2.5rem !important;
  }
  .m-md-n3 {
    margin: -3rem !important;
  }
  .m-md-n3_5 {
    margin: -3.5rem !important;
  }
  .m-md-n4 {
    margin: -4rem !important;
  }
  .m-md-n5 {
    margin: -5rem !important;
  }
  .m-md-n6 {
    margin: -6rem !important;
  }
  .m-md-n7 {
    margin: -7rem !important;
  }
  .m-md-n8 {
    margin: -8rem !important;
  }
  .m-md-n9 {
    margin: -9rem !important;
  }
  .m-md-n10 {
    margin: -10rem !important;
  }
  .m-md-n13 {
    margin: -13rem !important;
  }
  .m-md-n15 {
    margin: -15rem !important;
  }
  .m-md-n20 {
    margin: -20rem !important;
  }
  .m-md-n25 {
    margin: -25rem !important;
  }
  .m-md-n30 {
    margin: -30rem !important;
  }
  .m-md-n35 {
    margin: -35rem !important;
  }
  .m-md-n40 {
    margin: -40rem !important;
  }
  .m-md-n45 {
    margin: -45rem !important;
  }
  .m-md-n50 {
    margin: -50rem !important;
  }
  .mx-md-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-md-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-md-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-md-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-md-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-md-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-md-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-md-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-md-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-md-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-md-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-md-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-md-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-md-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-md-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-md-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-md-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-md-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-md-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-md-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-md-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-md-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-md-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-md-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-md-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-md-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-md-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-md-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-md-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-md-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-md-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-md-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-md-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-md-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-md-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-md-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-md-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-md-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n1 {
    margin-top: -1rem !important;
  }
  .mt-md-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n2 {
    margin-top: -2rem !important;
  }
  .mt-md-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -3rem !important;
  }
  .mt-md-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-md-n4 {
    margin-top: -4rem !important;
  }
  .mt-md-n5 {
    margin-top: -5rem !important;
  }
  .mt-md-n6 {
    margin-top: -6rem !important;
  }
  .mt-md-n7 {
    margin-top: -7rem !important;
  }
  .mt-md-n8 {
    margin-top: -8rem !important;
  }
  .mt-md-n9 {
    margin-top: -9rem !important;
  }
  .mt-md-n10 {
    margin-top: -10rem !important;
  }
  .mt-md-n13 {
    margin-top: -13rem !important;
  }
  .mt-md-n15 {
    margin-top: -15rem !important;
  }
  .mt-md-n20 {
    margin-top: -20rem !important;
  }
  .mt-md-n25 {
    margin-top: -25rem !important;
  }
  .mt-md-n30 {
    margin-top: -30rem !important;
  }
  .mt-md-n35 {
    margin-top: -35rem !important;
  }
  .mt-md-n40 {
    margin-top: -40rem !important;
  }
  .mt-md-n45 {
    margin-top: -45rem !important;
  }
  .mt-md-n50 {
    margin-top: -50rem !important;
  }
  .me-md-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-md-n1 {
    margin-right: -1rem !important;
  }
  .me-md-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-md-n2 {
    margin-right: -2rem !important;
  }
  .me-md-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-md-n3 {
    margin-right: -3rem !important;
  }
  .me-md-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-md-n4 {
    margin-right: -4rem !important;
  }
  .me-md-n5 {
    margin-right: -5rem !important;
  }
  .me-md-n6 {
    margin-right: -6rem !important;
  }
  .me-md-n7 {
    margin-right: -7rem !important;
  }
  .me-md-n8 {
    margin-right: -8rem !important;
  }
  .me-md-n9 {
    margin-right: -9rem !important;
  }
  .me-md-n10 {
    margin-right: -10rem !important;
  }
  .me-md-n13 {
    margin-right: -13rem !important;
  }
  .me-md-n15 {
    margin-right: -15rem !important;
  }
  .me-md-n20 {
    margin-right: -20rem !important;
  }
  .me-md-n25 {
    margin-right: -25rem !important;
  }
  .me-md-n30 {
    margin-right: -30rem !important;
  }
  .me-md-n35 {
    margin-right: -35rem !important;
  }
  .me-md-n40 {
    margin-right: -40rem !important;
  }
  .me-md-n45 {
    margin-right: -45rem !important;
  }
  .me-md-n50 {
    margin-right: -50rem !important;
  }
  .mb-md-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-md-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-md-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-md-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-md-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-md-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-md-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-md-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-md-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-md-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-md-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-md-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-md-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-md-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n1 {
    margin-left: -1rem !important;
  }
  .ms-md-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n2 {
    margin-left: -2rem !important;
  }
  .ms-md-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -3rem !important;
  }
  .ms-md-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-md-n4 {
    margin-left: -4rem !important;
  }
  .ms-md-n5 {
    margin-left: -5rem !important;
  }
  .ms-md-n6 {
    margin-left: -6rem !important;
  }
  .ms-md-n7 {
    margin-left: -7rem !important;
  }
  .ms-md-n8 {
    margin-left: -8rem !important;
  }
  .ms-md-n9 {
    margin-left: -9rem !important;
  }
  .ms-md-n10 {
    margin-left: -10rem !important;
  }
  .ms-md-n13 {
    margin-left: -13rem !important;
  }
  .ms-md-n15 {
    margin-left: -15rem !important;
  }
  .ms-md-n20 {
    margin-left: -20rem !important;
  }
  .ms-md-n25 {
    margin-left: -25rem !important;
  }
  .ms-md-n30 {
    margin-left: -30rem !important;
  }
  .ms-md-n35 {
    margin-left: -35rem !important;
  }
  .ms-md-n40 {
    margin-left: -40rem !important;
  }
  .ms-md-n45 {
    margin-left: -45rem !important;
  }
  .ms-md-n50 {
    margin-left: -50rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-0_5 {
    padding: 0.5rem !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-1_5 {
    padding: 1.5rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-2_5 {
    padding: 2.5rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-3_5 {
    padding: 3.5rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .p-md-13 {
    padding: 13rem !important;
  }
  .p-md-15 {
    padding: 15rem !important;
  }
  .p-md-20 {
    padding: 20rem !important;
  }
  .p-md-25 {
    padding: 25rem !important;
  }
  .p-md-30 {
    padding: 30rem !important;
  }
  .p-md-35 {
    padding: 35rem !important;
  }
  .p-md-40 {
    padding: 40rem !important;
  }
  .p-md-45 {
    padding: 45rem !important;
  }
  .p-md-50 {
    padding: 50rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-md-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-md-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-md-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-md-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-md-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-md-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-md-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-md-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-md-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-md-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-md-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-md-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-md-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-md-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-md-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-md-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-md-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pt-md-13 {
    padding-top: 13rem !important;
  }
  .pt-md-15 {
    padding-top: 15rem !important;
  }
  .pt-md-20 {
    padding-top: 20rem !important;
  }
  .pt-md-25 {
    padding-top: 25rem !important;
  }
  .pt-md-30 {
    padding-top: 30rem !important;
  }
  .pt-md-35 {
    padding-top: 35rem !important;
  }
  .pt-md-40 {
    padding-top: 40rem !important;
  }
  .pt-md-45 {
    padding-top: 45rem !important;
  }
  .pt-md-50 {
    padding-top: 50rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 1rem !important;
  }
  .pe-md-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-md-2 {
    padding-right: 2rem !important;
  }
  .pe-md-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-md-3 {
    padding-right: 3rem !important;
  }
  .pe-md-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-md-4 {
    padding-right: 4rem !important;
  }
  .pe-md-5 {
    padding-right: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 7rem !important;
  }
  .pe-md-8 {
    padding-right: 8rem !important;
  }
  .pe-md-9 {
    padding-right: 9rem !important;
  }
  .pe-md-10 {
    padding-right: 10rem !important;
  }
  .pe-md-13 {
    padding-right: 13rem !important;
  }
  .pe-md-15 {
    padding-right: 15rem !important;
  }
  .pe-md-20 {
    padding-right: 20rem !important;
  }
  .pe-md-25 {
    padding-right: 25rem !important;
  }
  .pe-md-30 {
    padding-right: 30rem !important;
  }
  .pe-md-35 {
    padding-right: 35rem !important;
  }
  .pe-md-40 {
    padding-right: 40rem !important;
  }
  .pe-md-45 {
    padding-right: 45rem !important;
  }
  .pe-md-50 {
    padding-right: 50rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .pb-md-13 {
    padding-bottom: 13rem !important;
  }
  .pb-md-15 {
    padding-bottom: 15rem !important;
  }
  .pb-md-20 {
    padding-bottom: 20rem !important;
  }
  .pb-md-25 {
    padding-bottom: 25rem !important;
  }
  .pb-md-30 {
    padding-bottom: 30rem !important;
  }
  .pb-md-35 {
    padding-bottom: 35rem !important;
  }
  .pb-md-40 {
    padding-bottom: 40rem !important;
  }
  .pb-md-45 {
    padding-bottom: 45rem !important;
  }
  .pb-md-50 {
    padding-bottom: 50rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 1rem !important;
  }
  .ps-md-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-md-2 {
    padding-left: 2rem !important;
  }
  .ps-md-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-md-3 {
    padding-left: 3rem !important;
  }
  .ps-md-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-md-4 {
    padding-left: 4rem !important;
  }
  .ps-md-5 {
    padding-left: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 7rem !important;
  }
  .ps-md-8 {
    padding-left: 8rem !important;
  }
  .ps-md-9 {
    padding-left: 9rem !important;
  }
  .ps-md-10 {
    padding-left: 10rem !important;
  }
  .ps-md-13 {
    padding-left: 13rem !important;
  }
  .ps-md-15 {
    padding-left: 15rem !important;
  }
  .ps-md-20 {
    padding-left: 20rem !important;
  }
  .ps-md-25 {
    padding-left: 25rem !important;
  }
  .ps-md-30 {
    padding-left: 30rem !important;
  }
  .ps-md-35 {
    padding-left: 35rem !important;
  }
  .ps-md-40 {
    padding-left: 40rem !important;
  }
  .ps-md-45 {
    padding-left: 45rem !important;
  }
  .ps-md-50 {
    padding-left: 50rem !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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-0_5 {
    margin: 0.5rem !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-1_5 {
    margin: 1.5rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-2_5 {
    margin: 2.5rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-3_5 {
    margin: 3.5rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-13 {
    margin: 13rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .m-lg-20 {
    margin: 20rem !important;
  }
  .m-lg-25 {
    margin: 25rem !important;
  }
  .m-lg-30 {
    margin: 30rem !important;
  }
  .m-lg-35 {
    margin: 35rem !important;
  }
  .m-lg-40 {
    margin: 40rem !important;
  }
  .m-lg-45 {
    margin: 45rem !important;
  }
  .m-lg-50 {
    margin: 50rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-lg-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-lg-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-lg-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-lg-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-lg-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-lg-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-lg-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-lg-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-lg-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-lg-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-lg-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-lg-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-lg-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-lg-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-lg-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-lg-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-13 {
    margin-top: 13rem !important;
  }
  .mt-lg-15 {
    margin-top: 15rem !important;
  }
  .mt-lg-20 {
    margin-top: 20rem !important;
  }
  .mt-lg-25 {
    margin-top: 25rem !important;
  }
  .mt-lg-30 {
    margin-top: 30rem !important;
  }
  .mt-lg-35 {
    margin-top: 35rem !important;
  }
  .mt-lg-40 {
    margin-top: 40rem !important;
  }
  .mt-lg-45 {
    margin-top: 45rem !important;
  }
  .mt-lg-50 {
    margin-top: 50rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 1rem !important;
  }
  .me-lg-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-lg-2 {
    margin-right: 2rem !important;
  }
  .me-lg-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-lg-3 {
    margin-right: 3rem !important;
  }
  .me-lg-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-lg-4 {
    margin-right: 4rem !important;
  }
  .me-lg-5 {
    margin-right: 5rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 7rem !important;
  }
  .me-lg-8 {
    margin-right: 8rem !important;
  }
  .me-lg-9 {
    margin-right: 9rem !important;
  }
  .me-lg-10 {
    margin-right: 10rem !important;
  }
  .me-lg-13 {
    margin-right: 13rem !important;
  }
  .me-lg-15 {
    margin-right: 15rem !important;
  }
  .me-lg-20 {
    margin-right: 20rem !important;
  }
  .me-lg-25 {
    margin-right: 25rem !important;
  }
  .me-lg-30 {
    margin-right: 30rem !important;
  }
  .me-lg-35 {
    margin-right: 35rem !important;
  }
  .me-lg-40 {
    margin-right: 40rem !important;
  }
  .me-lg-45 {
    margin-right: 45rem !important;
  }
  .me-lg-50 {
    margin-right: 50rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }
  .mb-lg-25 {
    margin-bottom: 25rem !important;
  }
  .mb-lg-30 {
    margin-bottom: 30rem !important;
  }
  .mb-lg-35 {
    margin-bottom: 35rem !important;
  }
  .mb-lg-40 {
    margin-bottom: 40rem !important;
  }
  .mb-lg-45 {
    margin-bottom: 45rem !important;
  }
  .mb-lg-50 {
    margin-bottom: 50rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 1rem !important;
  }
  .ms-lg-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 2rem !important;
  }
  .ms-lg-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 3rem !important;
  }
  .ms-lg-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 4rem !important;
  }
  .ms-lg-5 {
    margin-left: 5rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 7rem !important;
  }
  .ms-lg-8 {
    margin-left: 8rem !important;
  }
  .ms-lg-9 {
    margin-left: 9rem !important;
  }
  .ms-lg-10 {
    margin-left: 10rem !important;
  }
  .ms-lg-13 {
    margin-left: 13rem !important;
  }
  .ms-lg-15 {
    margin-left: 15rem !important;
  }
  .ms-lg-20 {
    margin-left: 20rem !important;
  }
  .ms-lg-25 {
    margin-left: 25rem !important;
  }
  .ms-lg-30 {
    margin-left: 30rem !important;
  }
  .ms-lg-35 {
    margin-left: 35rem !important;
  }
  .ms-lg-40 {
    margin-left: 40rem !important;
  }
  .ms-lg-45 {
    margin-left: 45rem !important;
  }
  .ms-lg-50 {
    margin-left: 50rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n0_5 {
    margin: -0.5rem !important;
  }
  .m-lg-n1 {
    margin: -1rem !important;
  }
  .m-lg-n1_5 {
    margin: -1.5rem !important;
  }
  .m-lg-n2 {
    margin: -2rem !important;
  }
  .m-lg-n2_5 {
    margin: -2.5rem !important;
  }
  .m-lg-n3 {
    margin: -3rem !important;
  }
  .m-lg-n3_5 {
    margin: -3.5rem !important;
  }
  .m-lg-n4 {
    margin: -4rem !important;
  }
  .m-lg-n5 {
    margin: -5rem !important;
  }
  .m-lg-n6 {
    margin: -6rem !important;
  }
  .m-lg-n7 {
    margin: -7rem !important;
  }
  .m-lg-n8 {
    margin: -8rem !important;
  }
  .m-lg-n9 {
    margin: -9rem !important;
  }
  .m-lg-n10 {
    margin: -10rem !important;
  }
  .m-lg-n13 {
    margin: -13rem !important;
  }
  .m-lg-n15 {
    margin: -15rem !important;
  }
  .m-lg-n20 {
    margin: -20rem !important;
  }
  .m-lg-n25 {
    margin: -25rem !important;
  }
  .m-lg-n30 {
    margin: -30rem !important;
  }
  .m-lg-n35 {
    margin: -35rem !important;
  }
  .m-lg-n40 {
    margin: -40rem !important;
  }
  .m-lg-n45 {
    margin: -45rem !important;
  }
  .m-lg-n50 {
    margin: -50rem !important;
  }
  .mx-lg-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-lg-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-lg-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-lg-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-lg-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-lg-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-lg-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-lg-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-lg-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-lg-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-lg-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-lg-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-lg-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-lg-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-lg-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-lg-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-lg-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-lg-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-lg-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-lg-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-lg-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-lg-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-lg-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-lg-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-lg-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-lg-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-lg-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-lg-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-lg-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-lg-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-lg-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-lg-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-lg-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-lg-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-lg-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-lg-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-lg-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n1 {
    margin-top: -1rem !important;
  }
  .mt-lg-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n2 {
    margin-top: -2rem !important;
  }
  .mt-lg-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -3rem !important;
  }
  .mt-lg-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-lg-n4 {
    margin-top: -4rem !important;
  }
  .mt-lg-n5 {
    margin-top: -5rem !important;
  }
  .mt-lg-n6 {
    margin-top: -6rem !important;
  }
  .mt-lg-n7 {
    margin-top: -7rem !important;
  }
  .mt-lg-n8 {
    margin-top: -8rem !important;
  }
  .mt-lg-n9 {
    margin-top: -9rem !important;
  }
  .mt-lg-n10 {
    margin-top: -10rem !important;
  }
  .mt-lg-n13 {
    margin-top: -13rem !important;
  }
  .mt-lg-n15 {
    margin-top: -15rem !important;
  }
  .mt-lg-n20 {
    margin-top: -20rem !important;
  }
  .mt-lg-n25 {
    margin-top: -25rem !important;
  }
  .mt-lg-n30 {
    margin-top: -30rem !important;
  }
  .mt-lg-n35 {
    margin-top: -35rem !important;
  }
  .mt-lg-n40 {
    margin-top: -40rem !important;
  }
  .mt-lg-n45 {
    margin-top: -45rem !important;
  }
  .mt-lg-n50 {
    margin-top: -50rem !important;
  }
  .me-lg-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n1 {
    margin-right: -1rem !important;
  }
  .me-lg-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n2 {
    margin-right: -2rem !important;
  }
  .me-lg-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -3rem !important;
  }
  .me-lg-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-lg-n4 {
    margin-right: -4rem !important;
  }
  .me-lg-n5 {
    margin-right: -5rem !important;
  }
  .me-lg-n6 {
    margin-right: -6rem !important;
  }
  .me-lg-n7 {
    margin-right: -7rem !important;
  }
  .me-lg-n8 {
    margin-right: -8rem !important;
  }
  .me-lg-n9 {
    margin-right: -9rem !important;
  }
  .me-lg-n10 {
    margin-right: -10rem !important;
  }
  .me-lg-n13 {
    margin-right: -13rem !important;
  }
  .me-lg-n15 {
    margin-right: -15rem !important;
  }
  .me-lg-n20 {
    margin-right: -20rem !important;
  }
  .me-lg-n25 {
    margin-right: -25rem !important;
  }
  .me-lg-n30 {
    margin-right: -30rem !important;
  }
  .me-lg-n35 {
    margin-right: -35rem !important;
  }
  .me-lg-n40 {
    margin-right: -40rem !important;
  }
  .me-lg-n45 {
    margin-right: -45rem !important;
  }
  .me-lg-n50 {
    margin-right: -50rem !important;
  }
  .mb-lg-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-lg-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-lg-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-lg-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-lg-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-lg-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-lg-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-lg-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-lg-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-lg-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-lg-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-lg-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-lg-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n1 {
    margin-left: -1rem !important;
  }
  .ms-lg-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n2 {
    margin-left: -2rem !important;
  }
  .ms-lg-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -3rem !important;
  }
  .ms-lg-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-lg-n4 {
    margin-left: -4rem !important;
  }
  .ms-lg-n5 {
    margin-left: -5rem !important;
  }
  .ms-lg-n6 {
    margin-left: -6rem !important;
  }
  .ms-lg-n7 {
    margin-left: -7rem !important;
  }
  .ms-lg-n8 {
    margin-left: -8rem !important;
  }
  .ms-lg-n9 {
    margin-left: -9rem !important;
  }
  .ms-lg-n10 {
    margin-left: -10rem !important;
  }
  .ms-lg-n13 {
    margin-left: -13rem !important;
  }
  .ms-lg-n15 {
    margin-left: -15rem !important;
  }
  .ms-lg-n20 {
    margin-left: -20rem !important;
  }
  .ms-lg-n25 {
    margin-left: -25rem !important;
  }
  .ms-lg-n30 {
    margin-left: -30rem !important;
  }
  .ms-lg-n35 {
    margin-left: -35rem !important;
  }
  .ms-lg-n40 {
    margin-left: -40rem !important;
  }
  .ms-lg-n45 {
    margin-left: -45rem !important;
  }
  .ms-lg-n50 {
    margin-left: -50rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-0_5 {
    padding: 0.5rem !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-1_5 {
    padding: 1.5rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-2_5 {
    padding: 2.5rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-3_5 {
    padding: 3.5rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .p-lg-13 {
    padding: 13rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .p-lg-20 {
    padding: 20rem !important;
  }
  .p-lg-25 {
    padding: 25rem !important;
  }
  .p-lg-30 {
    padding: 30rem !important;
  }
  .p-lg-35 {
    padding: 35rem !important;
  }
  .p-lg-40 {
    padding: 40rem !important;
  }
  .p-lg-45 {
    padding: 45rem !important;
  }
  .p-lg-50 {
    padding: 50rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-lg-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-lg-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-lg-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-lg-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-lg-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-lg-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-lg-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-lg-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-lg-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-lg-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-lg-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-lg-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-lg-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-lg-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-lg-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-lg-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-lg-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pt-lg-13 {
    padding-top: 13rem !important;
  }
  .pt-lg-15 {
    padding-top: 15rem !important;
  }
  .pt-lg-20 {
    padding-top: 20rem !important;
  }
  .pt-lg-25 {
    padding-top: 25rem !important;
  }
  .pt-lg-30 {
    padding-top: 30rem !important;
  }
  .pt-lg-35 {
    padding-top: 35rem !important;
  }
  .pt-lg-40 {
    padding-top: 40rem !important;
  }
  .pt-lg-45 {
    padding-top: 45rem !important;
  }
  .pt-lg-50 {
    padding-top: 50rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 1rem !important;
  }
  .pe-lg-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 2rem !important;
  }
  .pe-lg-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 3rem !important;
  }
  .pe-lg-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 4rem !important;
  }
  .pe-lg-5 {
    padding-right: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 7rem !important;
  }
  .pe-lg-8 {
    padding-right: 8rem !important;
  }
  .pe-lg-9 {
    padding-right: 9rem !important;
  }
  .pe-lg-10 {
    padding-right: 10rem !important;
  }
  .pe-lg-13 {
    padding-right: 13rem !important;
  }
  .pe-lg-15 {
    padding-right: 15rem !important;
  }
  .pe-lg-20 {
    padding-right: 20rem !important;
  }
  .pe-lg-25 {
    padding-right: 25rem !important;
  }
  .pe-lg-30 {
    padding-right: 30rem !important;
  }
  .pe-lg-35 {
    padding-right: 35rem !important;
  }
  .pe-lg-40 {
    padding-right: 40rem !important;
  }
  .pe-lg-45 {
    padding-right: 45rem !important;
  }
  .pe-lg-50 {
    padding-right: 50rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }
  .pb-lg-25 {
    padding-bottom: 25rem !important;
  }
  .pb-lg-30 {
    padding-bottom: 30rem !important;
  }
  .pb-lg-35 {
    padding-bottom: 35rem !important;
  }
  .pb-lg-40 {
    padding-bottom: 40rem !important;
  }
  .pb-lg-45 {
    padding-bottom: 45rem !important;
  }
  .pb-lg-50 {
    padding-bottom: 50rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 1rem !important;
  }
  .ps-lg-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 2rem !important;
  }
  .ps-lg-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 3rem !important;
  }
  .ps-lg-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 4rem !important;
  }
  .ps-lg-5 {
    padding-left: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 7rem !important;
  }
  .ps-lg-8 {
    padding-left: 8rem !important;
  }
  .ps-lg-9 {
    padding-left: 9rem !important;
  }
  .ps-lg-10 {
    padding-left: 10rem !important;
  }
  .ps-lg-13 {
    padding-left: 13rem !important;
  }
  .ps-lg-15 {
    padding-left: 15rem !important;
  }
  .ps-lg-20 {
    padding-left: 20rem !important;
  }
  .ps-lg-25 {
    padding-left: 25rem !important;
  }
  .ps-lg-30 {
    padding-left: 30rem !important;
  }
  .ps-lg-35 {
    padding-left: 35rem !important;
  }
  .ps-lg-40 {
    padding-left: 40rem !important;
  }
  .ps-lg-45 {
    padding-left: 45rem !important;
  }
  .ps-lg-50 {
    padding-left: 50rem !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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-13 {
    margin: 13rem !important;
  }
  .m-xl-15 {
    margin: 15rem !important;
  }
  .m-xl-20 {
    margin: 20rem !important;
  }
  .m-xl-25 {
    margin: 25rem !important;
  }
  .m-xl-30 {
    margin: 30rem !important;
  }
  .m-xl-35 {
    margin: 35rem !important;
  }
  .m-xl-40 {
    margin: 40rem !important;
  }
  .m-xl-45 {
    margin: 45rem !important;
  }
  .m-xl-50 {
    margin: 50rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-13 {
    margin-top: 13rem !important;
  }
  .mt-xl-15 {
    margin-top: 15rem !important;
  }
  .mt-xl-20 {
    margin-top: 20rem !important;
  }
  .mt-xl-25 {
    margin-top: 25rem !important;
  }
  .mt-xl-30 {
    margin-top: 30rem !important;
  }
  .mt-xl-35 {
    margin-top: 35rem !important;
  }
  .mt-xl-40 {
    margin-top: 40rem !important;
  }
  .mt-xl-45 {
    margin-top: 45rem !important;
  }
  .mt-xl-50 {
    margin-top: 50rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 1rem !important;
  }
  .me-xl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xl-2 {
    margin-right: 2rem !important;
  }
  .me-xl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xl-3 {
    margin-right: 3rem !important;
  }
  .me-xl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xl-4 {
    margin-right: 4rem !important;
  }
  .me-xl-5 {
    margin-right: 5rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 7rem !important;
  }
  .me-xl-8 {
    margin-right: 8rem !important;
  }
  .me-xl-9 {
    margin-right: 9rem !important;
  }
  .me-xl-10 {
    margin-right: 10rem !important;
  }
  .me-xl-13 {
    margin-right: 13rem !important;
  }
  .me-xl-15 {
    margin-right: 15rem !important;
  }
  .me-xl-20 {
    margin-right: 20rem !important;
  }
  .me-xl-25 {
    margin-right: 25rem !important;
  }
  .me-xl-30 {
    margin-right: 30rem !important;
  }
  .me-xl-35 {
    margin-right: 35rem !important;
  }
  .me-xl-40 {
    margin-right: 40rem !important;
  }
  .me-xl-45 {
    margin-right: 45rem !important;
  }
  .me-xl-50 {
    margin-right: 50rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 1rem !important;
  }
  .ms-xl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 2rem !important;
  }
  .ms-xl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 3rem !important;
  }
  .ms-xl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 4rem !important;
  }
  .ms-xl-5 {
    margin-left: 5rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 7rem !important;
  }
  .ms-xl-8 {
    margin-left: 8rem !important;
  }
  .ms-xl-9 {
    margin-left: 9rem !important;
  }
  .ms-xl-10 {
    margin-left: 10rem !important;
  }
  .ms-xl-13 {
    margin-left: 13rem !important;
  }
  .ms-xl-15 {
    margin-left: 15rem !important;
  }
  .ms-xl-20 {
    margin-left: 20rem !important;
  }
  .ms-xl-25 {
    margin-left: 25rem !important;
  }
  .ms-xl-30 {
    margin-left: 30rem !important;
  }
  .ms-xl-35 {
    margin-left: 35rem !important;
  }
  .ms-xl-40 {
    margin-left: 40rem !important;
  }
  .ms-xl-45 {
    margin-left: 45rem !important;
  }
  .ms-xl-50 {
    margin-left: 50rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xl-n1 {
    margin: -1rem !important;
  }
  .m-xl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xl-n2 {
    margin: -2rem !important;
  }
  .m-xl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xl-n3 {
    margin: -3rem !important;
  }
  .m-xl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xl-n4 {
    margin: -4rem !important;
  }
  .m-xl-n5 {
    margin: -5rem !important;
  }
  .m-xl-n6 {
    margin: -6rem !important;
  }
  .m-xl-n7 {
    margin: -7rem !important;
  }
  .m-xl-n8 {
    margin: -8rem !important;
  }
  .m-xl-n9 {
    margin: -9rem !important;
  }
  .m-xl-n10 {
    margin: -10rem !important;
  }
  .m-xl-n13 {
    margin: -13rem !important;
  }
  .m-xl-n15 {
    margin: -15rem !important;
  }
  .m-xl-n20 {
    margin: -20rem !important;
  }
  .m-xl-n25 {
    margin: -25rem !important;
  }
  .m-xl-n30 {
    margin: -30rem !important;
  }
  .m-xl-n35 {
    margin: -35rem !important;
  }
  .m-xl-n40 {
    margin: -40rem !important;
  }
  .m-xl-n45 {
    margin: -45rem !important;
  }
  .m-xl-n50 {
    margin: -50rem !important;
  }
  .mx-xl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xl-n50 {
    margin-top: -50rem !important;
  }
  .me-xl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n1 {
    margin-right: -1rem !important;
  }
  .me-xl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n2 {
    margin-right: -2rem !important;
  }
  .me-xl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -3rem !important;
  }
  .me-xl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xl-n4 {
    margin-right: -4rem !important;
  }
  .me-xl-n5 {
    margin-right: -5rem !important;
  }
  .me-xl-n6 {
    margin-right: -6rem !important;
  }
  .me-xl-n7 {
    margin-right: -7rem !important;
  }
  .me-xl-n8 {
    margin-right: -8rem !important;
  }
  .me-xl-n9 {
    margin-right: -9rem !important;
  }
  .me-xl-n10 {
    margin-right: -10rem !important;
  }
  .me-xl-n13 {
    margin-right: -13rem !important;
  }
  .me-xl-n15 {
    margin-right: -15rem !important;
  }
  .me-xl-n20 {
    margin-right: -20rem !important;
  }
  .me-xl-n25 {
    margin-right: -25rem !important;
  }
  .me-xl-n30 {
    margin-right: -30rem !important;
  }
  .me-xl-n35 {
    margin-right: -35rem !important;
  }
  .me-xl-n40 {
    margin-right: -40rem !important;
  }
  .me-xl-n45 {
    margin-right: -45rem !important;
  }
  .me-xl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xl-n50 {
    margin-left: -50rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .p-xl-13 {
    padding: 13rem !important;
  }
  .p-xl-15 {
    padding: 15rem !important;
  }
  .p-xl-20 {
    padding: 20rem !important;
  }
  .p-xl-25 {
    padding: 25rem !important;
  }
  .p-xl-30 {
    padding: 30rem !important;
  }
  .p-xl-35 {
    padding: 35rem !important;
  }
  .p-xl-40 {
    padding: 40rem !important;
  }
  .p-xl-45 {
    padding: 45rem !important;
  }
  .p-xl-50 {
    padding: 50rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pt-xl-13 {
    padding-top: 13rem !important;
  }
  .pt-xl-15 {
    padding-top: 15rem !important;
  }
  .pt-xl-20 {
    padding-top: 20rem !important;
  }
  .pt-xl-25 {
    padding-top: 25rem !important;
  }
  .pt-xl-30 {
    padding-top: 30rem !important;
  }
  .pt-xl-35 {
    padding-top: 35rem !important;
  }
  .pt-xl-40 {
    padding-top: 40rem !important;
  }
  .pt-xl-45 {
    padding-top: 45rem !important;
  }
  .pt-xl-50 {
    padding-top: 50rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 1rem !important;
  }
  .pe-xl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 2rem !important;
  }
  .pe-xl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 3rem !important;
  }
  .pe-xl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 4rem !important;
  }
  .pe-xl-5 {
    padding-right: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 7rem !important;
  }
  .pe-xl-8 {
    padding-right: 8rem !important;
  }
  .pe-xl-9 {
    padding-right: 9rem !important;
  }
  .pe-xl-10 {
    padding-right: 10rem !important;
  }
  .pe-xl-13 {
    padding-right: 13rem !important;
  }
  .pe-xl-15 {
    padding-right: 15rem !important;
  }
  .pe-xl-20 {
    padding-right: 20rem !important;
  }
  .pe-xl-25 {
    padding-right: 25rem !important;
  }
  .pe-xl-30 {
    padding-right: 30rem !important;
  }
  .pe-xl-35 {
    padding-right: 35rem !important;
  }
  .pe-xl-40 {
    padding-right: 40rem !important;
  }
  .pe-xl-45 {
    padding-right: 45rem !important;
  }
  .pe-xl-50 {
    padding-right: 50rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 1rem !important;
  }
  .ps-xl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 2rem !important;
  }
  .ps-xl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 3rem !important;
  }
  .ps-xl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 4rem !important;
  }
  .ps-xl-5 {
    padding-left: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 7rem !important;
  }
  .ps-xl-8 {
    padding-left: 8rem !important;
  }
  .ps-xl-9 {
    padding-left: 9rem !important;
  }
  .ps-xl-10 {
    padding-left: 10rem !important;
  }
  .ps-xl-13 {
    padding-left: 13rem !important;
  }
  .ps-xl-15 {
    padding-left: 15rem !important;
  }
  .ps-xl-20 {
    padding-left: 20rem !important;
  }
  .ps-xl-25 {
    padding-left: 25rem !important;
  }
  .ps-xl-30 {
    padding-left: 30rem !important;
  }
  .ps-xl-35 {
    padding-left: 35rem !important;
  }
  .ps-xl-40 {
    padding-left: 40rem !important;
  }
  .ps-xl-45 {
    padding-left: 45rem !important;
  }
  .ps-xl-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 1500px) {
  .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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-13 {
    margin: 13rem !important;
  }
  .m-xxl-15 {
    margin: 15rem !important;
  }
  .m-xxl-20 {
    margin: 20rem !important;
  }
  .m-xxl-25 {
    margin: 25rem !important;
  }
  .m-xxl-30 {
    margin: 30rem !important;
  }
  .m-xxl-35 {
    margin: 35rem !important;
  }
  .m-xxl-40 {
    margin: 40rem !important;
  }
  .m-xxl-45 {
    margin: 45rem !important;
  }
  .m-xxl-50 {
    margin: 50rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xxl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xxl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xxl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xxl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xxl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xxl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xxl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xxl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xxl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xxl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xxl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xxl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xxl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xxl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxl-25 {
    margin-top: 25rem !important;
  }
  .mt-xxl-30 {
    margin-top: 30rem !important;
  }
  .mt-xxl-35 {
    margin-top: 35rem !important;
  }
  .mt-xxl-40 {
    margin-top: 40rem !important;
  }
  .mt-xxl-45 {
    margin-top: 45rem !important;
  }
  .mt-xxl-50 {
    margin-top: 50rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxl-13 {
    margin-right: 13rem !important;
  }
  .me-xxl-15 {
    margin-right: 15rem !important;
  }
  .me-xxl-20 {
    margin-right: 20rem !important;
  }
  .me-xxl-25 {
    margin-right: 25rem !important;
  }
  .me-xxl-30 {
    margin-right: 30rem !important;
  }
  .me-xxl-35 {
    margin-right: 35rem !important;
  }
  .me-xxl-40 {
    margin-right: 40rem !important;
  }
  .me-xxl-45 {
    margin-right: 45rem !important;
  }
  .me-xxl-50 {
    margin-right: 50rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxl-13 {
    margin-left: 13rem !important;
  }
  .ms-xxl-15 {
    margin-left: 15rem !important;
  }
  .ms-xxl-20 {
    margin-left: 20rem !important;
  }
  .ms-xxl-25 {
    margin-left: 25rem !important;
  }
  .ms-xxl-30 {
    margin-left: 30rem !important;
  }
  .ms-xxl-35 {
    margin-left: 35rem !important;
  }
  .ms-xxl-40 {
    margin-left: 40rem !important;
  }
  .ms-xxl-45 {
    margin-left: 45rem !important;
  }
  .ms-xxl-50 {
    margin-left: 50rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xxl-n1 {
    margin: -1rem !important;
  }
  .m-xxl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xxl-n2 {
    margin: -2rem !important;
  }
  .m-xxl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xxl-n3 {
    margin: -3rem !important;
  }
  .m-xxl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xxl-n4 {
    margin: -4rem !important;
  }
  .m-xxl-n5 {
    margin: -5rem !important;
  }
  .m-xxl-n6 {
    margin: -6rem !important;
  }
  .m-xxl-n7 {
    margin: -7rem !important;
  }
  .m-xxl-n8 {
    margin: -8rem !important;
  }
  .m-xxl-n9 {
    margin: -9rem !important;
  }
  .m-xxl-n10 {
    margin: -10rem !important;
  }
  .m-xxl-n13 {
    margin: -13rem !important;
  }
  .m-xxl-n15 {
    margin: -15rem !important;
  }
  .m-xxl-n20 {
    margin: -20rem !important;
  }
  .m-xxl-n25 {
    margin: -25rem !important;
  }
  .m-xxl-n30 {
    margin: -30rem !important;
  }
  .m-xxl-n35 {
    margin: -35rem !important;
  }
  .m-xxl-n40 {
    margin: -40rem !important;
  }
  .m-xxl-n45 {
    margin: -45rem !important;
  }
  .m-xxl-n50 {
    margin: -50rem !important;
  }
  .mx-xxl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xxl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xxl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xxl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xxl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xxl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xxl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xxl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xxl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xxl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xxl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xxl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xxl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xxl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xxl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xxl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xxl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xxl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xxl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xxl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xxl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xxl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xxl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xxl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xxl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xxl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xxl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xxl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xxl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xxl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xxl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xxl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xxl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xxl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xxl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xxl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xxl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xxl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xxl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xxl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xxl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xxl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xxl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xxl-n50 {
    margin-top: -50rem !important;
  }
  .me-xxl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n1 {
    margin-right: -1rem !important;
  }
  .me-xxl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n2 {
    margin-right: -2rem !important;
  }
  .me-xxl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -3rem !important;
  }
  .me-xxl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xxl-n4 {
    margin-right: -4rem !important;
  }
  .me-xxl-n5 {
    margin-right: -5rem !important;
  }
  .me-xxl-n6 {
    margin-right: -6rem !important;
  }
  .me-xxl-n7 {
    margin-right: -7rem !important;
  }
  .me-xxl-n8 {
    margin-right: -8rem !important;
  }
  .me-xxl-n9 {
    margin-right: -9rem !important;
  }
  .me-xxl-n10 {
    margin-right: -10rem !important;
  }
  .me-xxl-n13 {
    margin-right: -13rem !important;
  }
  .me-xxl-n15 {
    margin-right: -15rem !important;
  }
  .me-xxl-n20 {
    margin-right: -20rem !important;
  }
  .me-xxl-n25 {
    margin-right: -25rem !important;
  }
  .me-xxl-n30 {
    margin-right: -30rem !important;
  }
  .me-xxl-n35 {
    margin-right: -35rem !important;
  }
  .me-xxl-n40 {
    margin-right: -40rem !important;
  }
  .me-xxl-n45 {
    margin-right: -45rem !important;
  }
  .me-xxl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xxl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xxl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xxl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xxl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xxl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xxl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xxl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xxl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xxl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xxl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xxl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xxl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xxl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xxl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xxl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xxl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xxl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xxl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xxl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xxl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xxl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xxl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xxl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xxl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xxl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xxl-n50 {
    margin-left: -50rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .p-xxl-13 {
    padding: 13rem !important;
  }
  .p-xxl-15 {
    padding: 15rem !important;
  }
  .p-xxl-20 {
    padding: 20rem !important;
  }
  .p-xxl-25 {
    padding: 25rem !important;
  }
  .p-xxl-30 {
    padding: 30rem !important;
  }
  .p-xxl-35 {
    padding: 35rem !important;
  }
  .p-xxl-40 {
    padding: 40rem !important;
  }
  .p-xxl-45 {
    padding: 45rem !important;
  }
  .p-xxl-50 {
    padding: 50rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xxl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xxl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xxl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xxl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xxl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xxl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xxl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xxl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xxl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xxl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xxl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xxl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xxl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xxl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxl-25 {
    padding-top: 25rem !important;
  }
  .pt-xxl-30 {
    padding-top: 30rem !important;
  }
  .pt-xxl-35 {
    padding-top: 35rem !important;
  }
  .pt-xxl-40 {
    padding-top: 40rem !important;
  }
  .pt-xxl-45 {
    padding-top: 45rem !important;
  }
  .pt-xxl-50 {
    padding-top: 50rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxl-10 {
    padding-right: 10rem !important;
  }
  .pe-xxl-13 {
    padding-right: 13rem !important;
  }
  .pe-xxl-15 {
    padding-right: 15rem !important;
  }
  .pe-xxl-20 {
    padding-right: 20rem !important;
  }
  .pe-xxl-25 {
    padding-right: 25rem !important;
  }
  .pe-xxl-30 {
    padding-right: 30rem !important;
  }
  .pe-xxl-35 {
    padding-right: 35rem !important;
  }
  .pe-xxl-40 {
    padding-right: 40rem !important;
  }
  .pe-xxl-45 {
    padding-right: 45rem !important;
  }
  .pe-xxl-50 {
    padding-right: 50rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxl-10 {
    padding-left: 10rem !important;
  }
  .ps-xxl-13 {
    padding-left: 13rem !important;
  }
  .ps-xxl-15 {
    padding-left: 15rem !important;
  }
  .ps-xxl-20 {
    padding-left: 20rem !important;
  }
  .ps-xxl-25 {
    padding-left: 25rem !important;
  }
  .ps-xxl-30 {
    padding-left: 30rem !important;
  }
  .ps-xxl-35 {
    padding-left: 35rem !important;
  }
  .ps-xxl-40 {
    padding-left: 40rem !important;
  }
  .ps-xxl-45 {
    padding-left: 45rem !important;
  }
  .ps-xxl-50 {
    padding-left: 50rem !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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/**
 * https://type-scale.com/
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 575.98px) {
  html {
    font-size: 9px;
  }
}

html,
body,
div,
header,
nav,
ul,
li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bold;
}

* {
  font-size: 1em;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 0.83em;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: unset;
}
a:hover, a:visited {
  color: unset;
}

button {
  background: transparent;
  border: none;
}

a:active,
p:active,
h1:active,
h2:active,
h3:active,
h4:active,
h5:active,
h6:active,
li:active,
select:active,
button:active,
video:active,
input:active,
textarea:active,
div:active,
picture:active,
img:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus-within,
p:focus-within,
h1:focus-within,
h2:focus-within,
h3:focus-within,
h4:focus-within,
h5:focus-within,
h6:focus-within,
li:focus-within,
select:focus-within,
button:focus-within,
video:focus-within,
input:focus-within,
textarea:focus-within,
div:focus-within,
picture:focus-within,
img:focus-within {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus,
p:focus,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
li:focus,
select:focus,
button:focus,
video:focus,
input:focus,
textarea:focus,
div:focus,
picture:focus,
img:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:visited,
p:visited,
h1:visited,
h2:visited,
h3:visited,
h4:visited,
h5:visited,
h6:visited,
li:visited,
select:visited,
button:visited,
video:visited,
input:visited,
textarea:visited,
div:visited,
picture:visited,
img:visited {
  color: inherit;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  white-space: normal !important;
  clip: auto !important;
  clip-path: none !important;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
}

html,
body,
div,
header,
nav,
ul,
li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bold;
}

* {
  font-size: 1rem;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 0.83em;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: unset;
  text-decoration: none;
}
a:hover, a:visited {
  color: unset;
}

button {
  background: transparent;
  border: none;
}

a:active,
p:active,
h1:active,
h2:active,
h3:active,
h4:active,
h5:active,
h6:active,
li:active,
select:active,
button:active,
video:active,
input:active,
textarea:active,
div:active,
picture:active,
img:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus-within,
p:focus-within,
h1:focus-within,
h2:focus-within,
h3:focus-within,
h4:focus-within,
h5:focus-within,
h6:focus-within,
li:focus-within,
select:focus-within,
button:focus-within,
video:focus-within,
input:focus-within,
textarea:focus-within,
div:focus-within,
picture:focus-within,
img:focus-within {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus,
p:focus,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
li:focus,
select:focus,
button:focus,
video:focus,
input:focus,
textarea:focus,
div:focus,
picture:focus,
img:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:visited,
p:visited,
h1:visited,
h2:visited,
h3:visited,
h4:visited,
h5:visited,
h6:visited,
li:visited,
select:visited,
button:visited,
video:visited,
input:visited,
textarea:visited,
div:visited,
picture:visited,
img:visited {
  color: inherit;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  white-space: normal !important;
  clip: auto !important;
  clip-path: none !important;
}

/*
 Guida ai border radius
  Sono definiti 3 tipologie di border radius. Small, Medium, Large.
  Andrebbero usati in questà modalità:
   - Small : Per elementi piccoli, inline, che occupano 1 o 2 colonne tipo bottoni, badge ecc
   - Medium : Per gli elementi che occupano un po di
     spazio 3, 4, 5, 6 colonne tipo card, accordion, dropdown menu. modali piccoli
   - Large : Per gli elementi larghi 12 colonne
 */
/*
Timings must been set in seconds
*/
:root {
  --smx-base-transition-fast: ease-in-out 0.3s;
  --smx-base-transition-normal: ease-in-out 0.5s;
  --smx-base-transition-slow: ease-in-out 1s;
  --smx-mobile-breakpoint-down: md;
  --smx-mobile-breakpoint-up: lg;
  --smx-timing-fast: 0.3;
  --smx-timing-normal: 0.5;
  --smx-timing-slow: 1;
  --smx-breakpoint-xs: 0;
  --smx-breakpoint-sm: 576px;
  --smx-breakpoint-md: 768px;
  --smx-breakpoint-lg: 992px;
  --smx-breakpoint-xl: 1200px;
  --smx-breakpoint-xxl: 1500px;
}

html {
  font-size: 10px;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 100%;
  border: 0;
  vertical-align: baseline;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 575.98px) {
  html {
    font-size: 9px;
  }
}

html,
body,
div,
header,
nav,
ul,
li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bold;
}

* {
  font-size: 1em;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 0.83em;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: unset;
}
a:hover, a:visited {
  color: unset;
}

button {
  background: transparent;
  border: none;
}

a:active,
p:active,
h1:active,
h2:active,
h3:active,
h4:active,
h5:active,
h6:active,
li:active,
select:active,
button:active,
video:active,
input:active,
textarea:active,
div:active,
picture:active,
img:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus-within,
p:focus-within,
h1:focus-within,
h2:focus-within,
h3:focus-within,
h4:focus-within,
h5:focus-within,
h6:focus-within,
li:focus-within,
select:focus-within,
button:focus-within,
video:focus-within,
input:focus-within,
textarea:focus-within,
div:focus-within,
picture:focus-within,
img:focus-within {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:focus,
p:focus,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
li:focus,
select:focus,
button:focus,
video:focus,
input:focus,
textarea:focus,
div:focus,
picture:focus,
img:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a:visited,
p:visited,
h1:visited,
h2:visited,
h3:visited,
h4:visited,
h5:visited,
h6:visited,
li:visited,
select:visited,
button:visited,
video:visited,
input:visited,
textarea:visited,
div:visited,
picture:visited,
img:visited {
  color: inherit;
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  white-space: normal !important;
  clip: auto !important;
  clip-path: none !important;
}

.has-primary-color {
  color: #007cbe !important;
}

.has-primary-background-color {
  background-color: #007cbe !important;
}

.primary {
  color: #007cbe;
}
.primary:visited {
  color: #007cbe;
}

.primary-darken {
  color: rgb(0, 90.7157894737, 139);
}

.bkg-primary {
  background-color: #007cbe;
}

.bkg-primary-darken {
  background-color: rgb(0, 90.7157894737, 139);
}

.fill-primary {
  fill: #007cbe;
}

.border-primary {
  border-color: #007cbe;
}

.has-secondary-color {
  color: #4e4e4e !important;
}

.has-secondary-background-color {
  background-color: #4e4e4e !important;
}

.secondary {
  color: #4e4e4e;
}
.secondary:visited {
  color: #4e4e4e;
}

.secondary-darken {
  color: rgb(52.5, 52.5, 52.5);
}

.bkg-secondary {
  background-color: #4e4e4e;
}

.bkg-secondary-darken {
  background-color: rgb(52.5, 52.5, 52.5);
}

.fill-secondary {
  fill: #4e4e4e;
}

.border-secondary {
  border-color: #4e4e4e;
}

.has-white-color {
  color: #fff !important;
}

.has-white-background-color {
  background-color: #fff !important;
}

.white {
  color: #fff;
}
.white:visited {
  color: #fff;
}

.white-darken {
  color: rgb(229.5, 229.5, 229.5);
}

.bkg-white {
  background-color: #fff;
}

.bkg-white-darken {
  background-color: rgb(229.5, 229.5, 229.5);
}

.fill-white {
  fill: #fff;
}

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

.has-black-color {
  color: #000 !important;
}

.has-black-background-color {
  background-color: #000 !important;
}

.black {
  color: #000;
}
.black:visited {
  color: #000;
}

.black-darken {
  color: hsl(0, 0%, -10%);
}

.bkg-black {
  background-color: #000;
}

.bkg-black-darken {
  background-color: hsl(0, 0%, -10%);
}

.fill-black {
  fill: #000;
}

.border-black {
  border-color: #000;
}

.has-light-grey-color {
  color: #b5b5b5 !important;
}

.has-light-grey-background-color {
  background-color: #b5b5b5 !important;
}

.light-grey {
  color: #b5b5b5;
}
.light-grey:visited {
  color: #b5b5b5;
}

.light-grey-darken {
  color: rgb(155.5, 155.5, 155.5);
}

.bkg-light-grey {
  background-color: #b5b5b5;
}

.bkg-light-grey-darken {
  background-color: rgb(155.5, 155.5, 155.5);
}

.fill-light-grey {
  fill: #b5b5b5;
}

.border-light-grey {
  border-color: #b5b5b5;
}

.has-dark-grey-color {
  color: #4e4e4e !important;
}

.has-dark-grey-background-color {
  background-color: #4e4e4e !important;
}

.dark-grey {
  color: #4e4e4e;
}
.dark-grey:visited {
  color: #4e4e4e;
}

.dark-grey-darken {
  color: rgb(52.5, 52.5, 52.5);
}

.bkg-dark-grey {
  background-color: #4e4e4e;
}

.bkg-dark-grey-darken {
  background-color: rgb(52.5, 52.5, 52.5);
}

.fill-dark-grey {
  fill: #4e4e4e;
}

.border-dark-grey {
  border-color: #4e4e4e;
}

.has-black-grey-color {
  color: #242424 !important;
}

.has-black-grey-background-color {
  background-color: #242424 !important;
}

.black-grey {
  color: #242424;
}
.black-grey:visited {
  color: #242424;
}

.black-grey-darken {
  color: rgb(10.5, 10.5, 10.5);
}

.bkg-black-grey {
  background-color: #242424;
}

.bkg-black-grey-darken {
  background-color: rgb(10.5, 10.5, 10.5);
}

.fill-black-grey {
  fill: #242424;
}

.border-black-grey {
  border-color: #242424;
}

.has-back-grey-color {
  color: #2f2f2f !important;
}

.has-back-grey-background-color {
  background-color: #2f2f2f !important;
}

.back-grey {
  color: #2f2f2f;
}
.back-grey:visited {
  color: #2f2f2f;
}

.back-grey-darken {
  color: rgb(21.5, 21.5, 21.5);
}

.bkg-back-grey {
  background-color: #2f2f2f;
}

.bkg-back-grey-darken {
  background-color: rgb(21.5, 21.5, 21.5);
}

.fill-back-grey {
  fill: #2f2f2f;
}

.border-back-grey {
  border-color: #2f2f2f;
}

h1, .heading-1, .has-heading-1-font-size {
  font-family: neue-haas-grotesk-display, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 3rem;
  line-height: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  h1, .heading-1, .has-heading-1-font-size {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  h1, .heading-1, .has-heading-1-font-size {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  h1, .heading-1, .has-heading-1-font-size {
    font-size: 4.3rem;
  }
}
@media (min-width: 576px) {
  h1, .heading-1, .has-heading-1-font-size {
    line-height: 3.7rem;
  }
}
@media (min-width: 768px) {
  h1, .heading-1, .has-heading-1-font-size {
    line-height: 4.2rem;
  }
}
@media (min-width: 1500px) {
  h1, .heading-1, .has-heading-1-font-size {
    line-height: 4.5rem;
  }
}
h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-display, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 3rem;
  line-height: 3.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    font-size: 4.3rem;
  }
}
@media (min-width: 576px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    line-height: 3.7rem;
  }
}
@media (min-width: 768px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    line-height: 4.2rem;
  }
}
@media (min-width: 1500px) {
  h1.atk-breadcrumbs *, .heading-1.atk-breadcrumbs *, .has-heading-1-font-size.atk-breadcrumbs * {
    line-height: 4.5rem;
  }
}

h2, .heading-2, .has-heading-2-font-size {
  font-family: neue-haas-grotesk-display, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 2.3rem;
  line-height: 2.3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h2, .heading-2, .has-heading-2-font-size {
    font-size: 2.5rem;
  }
}
@media (min-width: 1500px) {
  h2, .heading-2, .has-heading-2-font-size {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  h2, .heading-2, .has-heading-2-font-size {
    line-height: 2.5rem;
  }
}
@media (min-width: 1500px) {
  h2, .heading-2, .has-heading-2-font-size {
    line-height: 3rem;
  }
}
h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-display, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 2.3rem;
  line-height: 2.3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    font-size: 2.5rem;
  }
}
@media (min-width: 1500px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    line-height: 2.5rem;
  }
}
@media (min-width: 1500px) {
  h2.atk-breadcrumbs *, .heading-2.atk-breadcrumbs *, .has-heading-2-font-size.atk-breadcrumbs * {
    line-height: 3rem;
  }
}

h3, .heading-3, .has-heading-3-font-size {
  font-family: neue-haas-grotesk-display, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 2.1rem;
  line-height: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h3, .heading-3, .has-heading-3-font-size {
    font-size: 2.2rem;
  }
}
@media (min-width: 1500px) {
  h3, .heading-3, .has-heading-3-font-size {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  h3, .heading-3, .has-heading-3-font-size {
    line-height: 2.3rem;
  }
}
@media (min-width: 1500px) {
  h3, .heading-3, .has-heading-3-font-size {
    line-height: 2.6rem;
  }
}
h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-display, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 2.1rem;
  line-height: 2.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    font-size: 2.2rem;
  }
}
@media (min-width: 1500px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    line-height: 2.3rem;
  }
}
@media (min-width: 1500px) {
  h3.atk-breadcrumbs *, .heading-3.atk-breadcrumbs *, .has-heading-3-font-size.atk-breadcrumbs * {
    line-height: 2.6rem;
  }
}

h4, .heading-4, .has-heading-4-font-size {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 1.9rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h4, .heading-4, .has-heading-4-font-size {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  h4, .heading-4, .has-heading-4-font-size {
    font-size: 2.1rem;
  }
}
@media (min-width: 768px) {
  h4, .heading-4, .has-heading-4-font-size {
    line-height: 1.9rem;
  }
}
@media (min-width: 1500px) {
  h4, .heading-4, .has-heading-4-font-size {
    line-height: 2rem;
  }
}
h4.atk-breadcrumbs *, .heading-4.atk-breadcrumbs *, .has-heading-4-font-size.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 1.9rem;
  line-height: 1.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  h4.atk-breadcrumbs *, .heading-4.atk-breadcrumbs *, .has-heading-4-font-size.atk-breadcrumbs * {
    font-size: 2rem;
  }
}
@media (min-width: 1500px) {
  h4.atk-breadcrumbs *, .heading-4.atk-breadcrumbs *, .has-heading-4-font-size.atk-breadcrumbs * {
    font-size: 2.1rem;
  }
}
@media (min-width: 768px) {
  h4.atk-breadcrumbs *, .heading-4.atk-breadcrumbs *, .has-heading-4-font-size.atk-breadcrumbs * {
    line-height: 1.9rem;
  }
}
@media (min-width: 1500px) {
  h4.atk-breadcrumbs *, .heading-4.atk-breadcrumbs *, .has-heading-4-font-size.atk-breadcrumbs * {
    line-height: 2rem;
  }
}

p, div, ul, body, .text-1, label, input,
textarea, button,
.button,
.smx-button, .has-text-1-font-size {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.25em;
  font-weight: 400;
}
@media (min-width: 768px) {
  p, div, ul, body, .text-1, label, input,
  textarea, button,
  .button,
  .smx-button, .has-text-1-font-size {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  p, div, ul, body, .text-1, label, input,
  textarea, button,
  .button,
  .smx-button, .has-text-1-font-size {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  p, div, ul, body, .text-1, label, input,
  textarea, button,
  .button,
  .smx-button, .has-text-1-font-size {
    line-height: 1.25em;
  }
}
@media (min-width: 992px) {
  p, div, ul, body, .text-1, label, input,
  textarea, button,
  .button,
  .smx-button, .has-text-1-font-size {
    line-height: 1.25em;
  }
}
p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, label.atk-breadcrumbs *, input.atk-breadcrumbs *,
textarea.atk-breadcrumbs *, button.atk-breadcrumbs *,
.atk-breadcrumbs.button *,
.atk-breadcrumbs.smx-button *, .has-text-1-font-size.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.25em;
  font-weight: 400;
}
@media (min-width: 768px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, label.atk-breadcrumbs *, input.atk-breadcrumbs *,
  textarea.atk-breadcrumbs *, button.atk-breadcrumbs *,
  .atk-breadcrumbs.button *,
  .atk-breadcrumbs.smx-button *, .has-text-1-font-size.atk-breadcrumbs * {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, label.atk-breadcrumbs *, input.atk-breadcrumbs *,
  textarea.atk-breadcrumbs *, button.atk-breadcrumbs *,
  .atk-breadcrumbs.button *,
  .atk-breadcrumbs.smx-button *, .has-text-1-font-size.atk-breadcrumbs * {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, label.atk-breadcrumbs *, input.atk-breadcrumbs *,
  textarea.atk-breadcrumbs *, button.atk-breadcrumbs *,
  .atk-breadcrumbs.button *,
  .atk-breadcrumbs.smx-button *, .has-text-1-font-size.atk-breadcrumbs * {
    line-height: 1.25em;
  }
}
@media (min-width: 992px) {
  p.atk-breadcrumbs *, div.atk-breadcrumbs *, ul.atk-breadcrumbs *, body.atk-breadcrumbs *, .text-1.atk-breadcrumbs *, label.atk-breadcrumbs *, input.atk-breadcrumbs *,
  textarea.atk-breadcrumbs *, button.atk-breadcrumbs *,
  .atk-breadcrumbs.button *,
  .atk-breadcrumbs.smx-button *, .has-text-1-font-size.atk-breadcrumbs * {
    line-height: 1.25em;
  }
}

.text-2, .text-2 > p, .text-2 > ul, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-2, .text-2 > p, .text-2 > ul, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .text-2, .text-2 > p, .text-2 > ul, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .text-2, .text-2 > p, .text-2 > ul, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    line-height: 1.2em;
  }
}
@media (min-width: 992px) {
  .text-2, .text-2 > p, .text-2 > ul, .wpcf7 .wpcf7-response-output, .has-text-2-font-size {
    line-height: 1.2em;
  }
}
.text-2.atk-breadcrumbs *, .text-2 > p.atk-breadcrumbs *, .text-2 > ul.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-2.atk-breadcrumbs *, .text-2 > p.atk-breadcrumbs *, .text-2 > ul.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .text-2.atk-breadcrumbs *, .text-2 > p.atk-breadcrumbs *, .text-2 > ul.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .text-2.atk-breadcrumbs *, .text-2 > p.atk-breadcrumbs *, .text-2 > ul.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    line-height: 1.2em;
  }
}
@media (min-width: 992px) {
  .text-2.atk-breadcrumbs *, .text-2 > p.atk-breadcrumbs *, .text-2 > ul.atk-breadcrumbs *, .wpcf7 .atk-breadcrumbs.wpcf7-response-output *, .has-text-2-font-size.atk-breadcrumbs * {
    line-height: 1.2em;
  }
}

strong, b {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
}
strong.atk-breadcrumbs *, b.atk-breadcrumbs * {
  font-family: neue-haas-grotesk-text, "Neue Haas Grotesk", "Helvetica Neue", helvetica, arial, system-ui, sans-serif;
}

body,
.editor-styles-wrapper {
  --wp--preset--font-size--heading-1: 3rem;
  --wp--preset--font-size--heading-2: 2.3rem;
  --wp--preset--font-size--heading-2: 2.1rem;
  --wp--preset--font-size--heading-4: 1.9rem;
  --wp--preset--font-size--text-1: 1.65rem;
  --wp--preset--font-size--text-2: 1.45rem;
}
@media (min-width: 576px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-1: 3.5rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-1: 4rem;
  }
}
@media (min-width: 1500px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-1: 4.3rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-2: 2.5rem;
  }
}
@media (min-width: 1500px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-2: 3rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-2: 2.2rem;
  }
}
@media (min-width: 1500px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-2: 2.5rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-4: 2rem;
  }
}
@media (min-width: 1500px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--heading-4: 2.1rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-1: 1.9rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-1: 2rem;
  }
}
@media (min-width: 768px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-2: 1.6rem;
  }
}
@media (min-width: 992px) {
  body,
  .editor-styles-wrapper {
    --wp--preset--font-size--text-2: 1.6rem;
  }
}

.text-align-center,
.is-content-justification-center {
  text-align: center;
}
.text-align-center > *,
.is-content-justification-center > * {
  text-align: center;
}

.text-align-left,
.is-content-justification-left {
  text-align: left;
}
.text-align-left > *,
.is-content-justification-left > * {
  text-align: left;
}

.text-align-right,
.is-content-justification-right {
  text-align: right;
}
.text-align-right > *,
.is-content-justification-right > * {
  text-align: right;
}

.text-align-xs-left,
.is-content-justification-xs-left {
  text-align: left;
}
.text-align-xs-left > *,
.is-content-justification-xs-left > * {
  text-align: left;
}

.text-align-xs-right,
.is-content-justification-xs-right {
  text-align: right;
}
.text-align-xs-right > *,
.is-content-justification-xs-right > * {
  text-align: right;
}

.text-align-xs-center,
.is-content-justification-xs-center {
  text-align: center;
}
.text-align-xs-center > *,
.is-content-justification-xs-center > * {
  text-align: center;
}

@media (min-width: 576px) {
  .text-align-sm-left,
  .is-content-justification-sm-left {
    text-align: left;
  }
  .text-align-sm-left > *,
  .is-content-justification-sm-left > * {
    text-align: left;
  }
  .text-align-sm-right,
  .is-content-justification-sm-right {
    text-align: right;
  }
  .text-align-sm-right > *,
  .is-content-justification-sm-right > * {
    text-align: right;
  }
  .text-align-sm-center,
  .is-content-justification-sm-center {
    text-align: center;
  }
  .text-align-sm-center > *,
  .is-content-justification-sm-center > * {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .text-align-md-left,
  .is-content-justification-md-left {
    text-align: left;
  }
  .text-align-md-left > *,
  .is-content-justification-md-left > * {
    text-align: left;
  }
  .text-align-md-right,
  .is-content-justification-md-right {
    text-align: right;
  }
  .text-align-md-right > *,
  .is-content-justification-md-right > * {
    text-align: right;
  }
  .text-align-md-center,
  .is-content-justification-md-center {
    text-align: center;
  }
  .text-align-md-center > *,
  .is-content-justification-md-center > * {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .text-align-lg-left,
  .is-content-justification-lg-left {
    text-align: left;
  }
  .text-align-lg-left > *,
  .is-content-justification-lg-left > * {
    text-align: left;
  }
  .text-align-lg-right,
  .is-content-justification-lg-right {
    text-align: right;
  }
  .text-align-lg-right > *,
  .is-content-justification-lg-right > * {
    text-align: right;
  }
  .text-align-lg-center,
  .is-content-justification-lg-center {
    text-align: center;
  }
  .text-align-lg-center > *,
  .is-content-justification-lg-center > * {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .text-align-xl-left,
  .is-content-justification-xl-left {
    text-align: left;
  }
  .text-align-xl-left > *,
  .is-content-justification-xl-left > * {
    text-align: left;
  }
  .text-align-xl-right,
  .is-content-justification-xl-right {
    text-align: right;
  }
  .text-align-xl-right > *,
  .is-content-justification-xl-right > * {
    text-align: right;
  }
  .text-align-xl-center,
  .is-content-justification-xl-center {
    text-align: center;
  }
  .text-align-xl-center > *,
  .is-content-justification-xl-center > * {
    text-align: center;
  }
}
@media (min-width: 1500px) {
  .text-align-xxl-left,
  .is-content-justification-xxl-left {
    text-align: left;
  }
  .text-align-xxl-left > *,
  .is-content-justification-xxl-left > * {
    text-align: left;
  }
  .text-align-xxl-right,
  .is-content-justification-xxl-right {
    text-align: right;
  }
  .text-align-xxl-right > *,
  .is-content-justification-xxl-right > * {
    text-align: right;
  }
  .text-align-xxl-center,
  .is-content-justification-xxl-center {
    text-align: center;
  }
  .text-align-xxl-center > *,
  .is-content-justification-xxl-center > * {
    text-align: center;
  }
}
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.underline {
  text-decoration: underline;
}

.light {
  font-weight: 300;
  letter-spacing: -0.035rem;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.dark {
  font-weight: 800;
  letter-spacing: 0.035rem;
}

ul.list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}
ul.list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #4e4e4e;
  border-radius: 50%;
  content: "";
}
@media (max-width: 767.98px) {
  ul.list li::before {
    top: 0.4em;
  }
}
@media (max-width: 575.98px) {
  ul.list li::before {
    top: 0.5em;
  }
}

ul.list-small li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.8rem;
}
ul.list-small li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/dot.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.list-small.negative li::before {
  background-image: url("../images/dot-white.svg");
}
@media (max-width: 767.98px) {
  ul.list-small li::before {
    top: 0.4em;
  }
}
@media (max-width: 575.98px) {
  ul.list-small li::before {
    top: 0.6em;
  }
}

ul.list-dot {
  margin: 3rem 0;
}
ul.list-dot li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 3.5rem;
}
ul.list-dot li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Ccircle cx='6' cy='6' r='2.5' fill='%23007cbe'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  ul.list-dot li::before {
    top: 0.4em;
  }
}
@media (max-width: 575.98px) {
  ul.list-dot li {
    padding-left: 2.5rem;
  }
  ul.list-dot li::before {
    top: 0.5em;
    width: 1.6rem;
    height: 1.6rem;
  }
}

ol {
  list-style: decimal;
}
ol li {
  margin-left: 2rem;
  padding: 0.4rem 0;
}

section p {
  margin-bottom: 2rem;
}
section p:has(+ ul) {
  margin-bottom: 0;
}
section ul:not(.splide__pagination, .splide__list) {
  margin-bottom: 2rem;
}
section ul:not(.splide__pagination, .splide__list) li {
  position: relative;
  padding-left: 0.7em;
}
section ul:not(.splide__pagination, .splide__list) li::before {
  position: absolute;
  top: 0.4em;
  left: 0;
  display: inline-block;
  width: 0.3em;
  height: 0.3em;
  background-color: #007cbe;
  border-radius: 50%;
  content: "";
}
section.has-background:not(.has-light-grey-background-color) ul li::before {
  background-color: white;
}

p:not(:last-child) {
  margin-bottom: 1rem;
}

p:has(+ ol),
p:has(+ ul.list-dot) {
  margin-bottom: 0;
}

.as-full-right {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-right: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-left {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-left: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-xs-right {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-right: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-xs-left {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-left: calc(var(--smx-container-margin-negative) - 1rem);
}

@media (min-width: 576px) {
  .as-full-sm-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-sm-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 768px) {
  .as-full-md-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-md-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 992px) {
  .as-full-lg-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-lg-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1200px) {
  .as-full-xl-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-xl-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1500px) {
  .as-full-xxl-right {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-xxl-left {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
.px-0 .as-full-right {
  width: calc(100% + var(--smx-container-margin) + 0);
  margin-right: calc(var(--smx-container-margin-negative) - 0);
}
.px-0 .as-full-left {
  width: calc(100% + var(--smx-container-margin) + 0);
  margin-left: calc(var(--smx-container-margin-negative) - 0);
}

body {
  --smx--grid--gutter: 2rem;
  --vh: 1vh;
  --smx-breakpoint-xs: 0;
  --smx-breakpoint-sm: 576px;
  --smx-breakpoint-md: 768px;
  --smx-breakpoint-lg: 992px;
  --smx-breakpoint-xl: 1200px;
  --smx-breakpoint-xxl: 1500px;
}
@media (min-width: 576px) {
  body {
    --smx-container-width: 768px;
    --wp--style--global--content-size: 768px;
    --wp--style--global--wide-size: 768px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 768px) {
  body {
    --smx-container-width: 992px;
    --wp--style--global--content-size: 992px;
    --wp--style--global--wide-size: 992px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 992px) {
  body {
    --smx-container-width: 1200px;
    --wp--style--global--content-size: 1200px;
    --wp--style--global--wide-size: 1200px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 1200px) {
  body {
    --smx-container-width: 1500px;
    --wp--style--global--content-size: 1500px;
    --wp--style--global--wide-size: 1500px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}
@media (min-width: 1500px) {
  body {
    --smx-container-width: 1650px;
    --wp--style--global--content-size: 1650px;
    --wp--style--global--wide-size: 1650px;
    --smx--column--width: calc((var(--smx-container-width) / 12) - 2rem);
    --smx--column--with--gutter--width: calc((var(--smx-container-width) - 2rem) / 12);
  }
}

.container-margin-left {
  margin-left: calc(var(--smx-container-margin) + 2rem / 2);
}

.container-padding-left {
  padding-left: calc(var(--smx-container-margin) + 2rem / 2);
}

.container-margin-right {
  margin-right: calc(var(--smx-container-margin) + 2rem / 2);
}

.container-padding-right {
  padding-right: calc(var(--smx-container-margin) + 2rem / 2);
}

.pl-column-width-1 {
  padding-left: calc(var(--smx--column--width) * 1 + 2rem);
}

.pr-column-width-1 {
  padding-right: calc(var(--smx--column--width) * 1 + 2rem);
}

.min-w-col-1 {
  min-width: calc(var(--smx--column--with--gutter--width) * 1);
}

.ml-n-col-1 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
}

.pl-column-width-2 {
  padding-left: calc(var(--smx--column--width) * 2 + 2rem);
}

.pr-column-width-2 {
  padding-right: calc(var(--smx--column--width) * 2 + 2rem);
}

.min-w-col-2 {
  min-width: calc(var(--smx--column--with--gutter--width) * 2);
}

.ml-n-col-2 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
}

.pl-column-width-3 {
  padding-left: calc(var(--smx--column--width) * 3 + 2rem);
}

.pr-column-width-3 {
  padding-right: calc(var(--smx--column--width) * 3 + 2rem);
}

.min-w-col-3 {
  min-width: calc(var(--smx--column--with--gutter--width) * 3);
}

.ml-n-col-3 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
}

.pl-column-width-4 {
  padding-left: calc(var(--smx--column--width) * 4 + 2rem);
}

.pr-column-width-4 {
  padding-right: calc(var(--smx--column--width) * 4 + 2rem);
}

.min-w-col-4 {
  min-width: calc(var(--smx--column--with--gutter--width) * 4);
}

.ml-n-col-4 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
}

.pl-column-width-5 {
  padding-left: calc(var(--smx--column--width) * 5 + 2rem);
}

.pr-column-width-5 {
  padding-right: calc(var(--smx--column--width) * 5 + 2rem);
}

.min-w-col-5 {
  min-width: calc(var(--smx--column--with--gutter--width) * 5);
}

.ml-n-col-5 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
}

.pl-column-width-6 {
  padding-left: calc(var(--smx--column--width) * 6 + 2rem);
}

.pr-column-width-6 {
  padding-right: calc(var(--smx--column--width) * 6 + 2rem);
}

.min-w-col-6 {
  min-width: calc(var(--smx--column--with--gutter--width) * 6);
}

.ml-n-col-6 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
}

.pl-column-width-7 {
  padding-left: calc(var(--smx--column--width) * 7 + 2rem);
}

.pr-column-width-7 {
  padding-right: calc(var(--smx--column--width) * 7 + 2rem);
}

.min-w-col-7 {
  min-width: calc(var(--smx--column--with--gutter--width) * 7);
}

.ml-n-col-7 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
}

.pl-column-width-8 {
  padding-left: calc(var(--smx--column--width) * 8 + 2rem);
}

.pr-column-width-8 {
  padding-right: calc(var(--smx--column--width) * 8 + 2rem);
}

.min-w-col-8 {
  min-width: calc(var(--smx--column--with--gutter--width) * 8);
}

.ml-n-col-8 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
}

.pl-column-width-9 {
  padding-left: calc(var(--smx--column--width) * 9 + 2rem);
}

.pr-column-width-9 {
  padding-right: calc(var(--smx--column--width) * 9 + 2rem);
}

.min-w-col-9 {
  min-width: calc(var(--smx--column--with--gutter--width) * 9);
}

.ml-n-col-9 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
}

.pl-column-width-10 {
  padding-left: calc(var(--smx--column--width) * 10 + 2rem);
}

.pr-column-width-10 {
  padding-right: calc(var(--smx--column--width) * 10 + 2rem);
}

.min-w-col-10 {
  min-width: calc(var(--smx--column--with--gutter--width) * 10);
}

.ml-n-col-10 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
}

.pl-column-width-11 {
  padding-left: calc(var(--smx--column--width) * 11 + 2rem);
}

.pr-column-width-11 {
  padding-right: calc(var(--smx--column--width) * 11 + 2rem);
}

.min-w-col-11 {
  min-width: calc(var(--smx--column--with--gutter--width) * 11);
}

.ml-n-col-11 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
}

.pl-column-width-12 {
  padding-left: calc(var(--smx--column--width) * 12 + 2rem);
}

.pr-column-width-12 {
  padding-right: calc(var(--smx--column--width) * 12 + 2rem);
}

.min-w-col-12 {
  min-width: calc(var(--smx--column--with--gutter--width) * 12);
}

.ml-n-col-12 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
}

.pl-column-width-xs-1 {
  padding-left: calc(var(--smx--column--width) * 1 + 2rem);
}

.pr-column-width-xs-1 {
  padding-right: calc(var(--smx--column--width) * 1 + 2rem);
}

.min-w-col-xs-1 {
  min-width: calc(var(--smx--column--with--gutter--width) * 1);
}

.ml-xs-n-col-1 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
}

.pl-column-width-xs-2 {
  padding-left: calc(var(--smx--column--width) * 2 + 2rem);
}

.pr-column-width-xs-2 {
  padding-right: calc(var(--smx--column--width) * 2 + 2rem);
}

.min-w-col-xs-2 {
  min-width: calc(var(--smx--column--with--gutter--width) * 2);
}

.ml-xs-n-col-2 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
}

.pl-column-width-xs-3 {
  padding-left: calc(var(--smx--column--width) * 3 + 2rem);
}

.pr-column-width-xs-3 {
  padding-right: calc(var(--smx--column--width) * 3 + 2rem);
}

.min-w-col-xs-3 {
  min-width: calc(var(--smx--column--with--gutter--width) * 3);
}

.ml-xs-n-col-3 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
}

.pl-column-width-xs-4 {
  padding-left: calc(var(--smx--column--width) * 4 + 2rem);
}

.pr-column-width-xs-4 {
  padding-right: calc(var(--smx--column--width) * 4 + 2rem);
}

.min-w-col-xs-4 {
  min-width: calc(var(--smx--column--with--gutter--width) * 4);
}

.ml-xs-n-col-4 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
}

.pl-column-width-xs-5 {
  padding-left: calc(var(--smx--column--width) * 5 + 2rem);
}

.pr-column-width-xs-5 {
  padding-right: calc(var(--smx--column--width) * 5 + 2rem);
}

.min-w-col-xs-5 {
  min-width: calc(var(--smx--column--with--gutter--width) * 5);
}

.ml-xs-n-col-5 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
}

.pl-column-width-xs-6 {
  padding-left: calc(var(--smx--column--width) * 6 + 2rem);
}

.pr-column-width-xs-6 {
  padding-right: calc(var(--smx--column--width) * 6 + 2rem);
}

.min-w-col-xs-6 {
  min-width: calc(var(--smx--column--with--gutter--width) * 6);
}

.ml-xs-n-col-6 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
}

.pl-column-width-xs-7 {
  padding-left: calc(var(--smx--column--width) * 7 + 2rem);
}

.pr-column-width-xs-7 {
  padding-right: calc(var(--smx--column--width) * 7 + 2rem);
}

.min-w-col-xs-7 {
  min-width: calc(var(--smx--column--with--gutter--width) * 7);
}

.ml-xs-n-col-7 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
}

.pl-column-width-xs-8 {
  padding-left: calc(var(--smx--column--width) * 8 + 2rem);
}

.pr-column-width-xs-8 {
  padding-right: calc(var(--smx--column--width) * 8 + 2rem);
}

.min-w-col-xs-8 {
  min-width: calc(var(--smx--column--with--gutter--width) * 8);
}

.ml-xs-n-col-8 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
}

.pl-column-width-xs-9 {
  padding-left: calc(var(--smx--column--width) * 9 + 2rem);
}

.pr-column-width-xs-9 {
  padding-right: calc(var(--smx--column--width) * 9 + 2rem);
}

.min-w-col-xs-9 {
  min-width: calc(var(--smx--column--with--gutter--width) * 9);
}

.ml-xs-n-col-9 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
}

.pl-column-width-xs-10 {
  padding-left: calc(var(--smx--column--width) * 10 + 2rem);
}

.pr-column-width-xs-10 {
  padding-right: calc(var(--smx--column--width) * 10 + 2rem);
}

.min-w-col-xs-10 {
  min-width: calc(var(--smx--column--with--gutter--width) * 10);
}

.ml-xs-n-col-10 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
}

.pl-column-width-xs-11 {
  padding-left: calc(var(--smx--column--width) * 11 + 2rem);
}

.pr-column-width-xs-11 {
  padding-right: calc(var(--smx--column--width) * 11 + 2rem);
}

.min-w-col-xs-11 {
  min-width: calc(var(--smx--column--with--gutter--width) * 11);
}

.ml-xs-n-col-11 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
}

.pl-column-width-xs-12 {
  padding-left: calc(var(--smx--column--width) * 12 + 2rem);
}

.pr-column-width-xs-12 {
  padding-right: calc(var(--smx--column--width) * 12 + 2rem);
}

.min-w-col-xs-12 {
  min-width: calc(var(--smx--column--with--gutter--width) * 12);
}

.ml-xs-n-col-12 {
  margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
}

.as-full-right-xs {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-right: calc(var(--smx-container-margin-negative) - 1rem);
}

.as-full-left-xs {
  width: calc(100% + var(--smx-container-margin) + 1rem);
  margin-left: calc(var(--smx-container-margin-negative) - 1rem);
}

@media (min-width: 576px) {
  .pl-column-width-sm-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-sm-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-sm-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-sm-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-sm-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-sm-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-sm-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-sm-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-sm-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-sm-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-sm-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-sm-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-sm-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-sm-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-sm-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-sm-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-sm-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-sm-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-sm-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-sm-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-sm-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-sm-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-sm-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-sm-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-sm-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-sm-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-sm-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-sm-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-sm-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-sm-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-sm-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-sm-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-sm-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-sm-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-sm-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-sm-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-sm-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-sm-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-sm-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-sm-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-sm-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-sm-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-sm-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-sm-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-sm-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-sm-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-sm-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-sm-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-sm {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-sm {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 768px) {
  .pl-column-width-md-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-md-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-md-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-md-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-md-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-md-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-md-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-md-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-md-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-md-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-md-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-md-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-md-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-md-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-md-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-md-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-md-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-md-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-md-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-md-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-md-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-md-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-md-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-md-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-md-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-md-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-md-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-md-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-md-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-md-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-md-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-md-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-md-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-md-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-md-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-md-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-md-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-md-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-md-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-md-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-md-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-md-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-md-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-md-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-md-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-md-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-md-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-md-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-md {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-md {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 992px) {
  .pl-column-width-lg-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-lg-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-lg-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-lg-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-lg-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-lg-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-lg-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-lg-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-lg-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-lg-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-lg-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-lg-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-lg-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-lg-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-lg-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-lg-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-lg-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-lg-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-lg-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-lg-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-lg-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-lg-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-lg-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-lg-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-lg-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-lg-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-lg-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-lg-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-lg-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-lg-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-lg-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-lg-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-lg-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-lg-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-lg-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-lg-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-lg-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-lg-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-lg-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-lg-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-lg-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-lg-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-lg-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-lg-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-lg-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-lg-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-lg-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-lg-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-lg {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-lg {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1200px) {
  .pl-column-width-xl-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-xl-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-xl-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-xl-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-xl-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-xl-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-xl-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-xl-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-xl-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-xl-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-xl-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-xl-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-xl-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-xl-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-xl-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-xl-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-xl-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-xl-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-xl-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-xl-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-xl-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-xl-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-xl-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-xl-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-xl-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-xl-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-xl-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-xl-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-xl-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-xl-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-xl-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-xl-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-xl-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-xl-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-xl-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-xl-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-xl-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-xl-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-xl-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-xl-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-xl-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-xl-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-xl-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-xl-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-xl-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-xl-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-xl-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-xl-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-xl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-xl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
@media (min-width: 1500px) {
  .pl-column-width-xxl-1 {
    padding-left: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .pr-column-width-xxl-1 {
    padding-right: calc(var(--smx--column--width) * 1 + 2rem);
  }
  .min-w-col-xxl-1 {
    min-width: calc(var(--smx--column--with--gutter--width) * 1);
  }
  .ml-xxl-n-col-1 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 1 * -1);
  }
  .pl-column-width-xxl-2 {
    padding-left: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .pr-column-width-xxl-2 {
    padding-right: calc(var(--smx--column--width) * 2 + 2rem);
  }
  .min-w-col-xxl-2 {
    min-width: calc(var(--smx--column--with--gutter--width) * 2);
  }
  .ml-xxl-n-col-2 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 2 * -1);
  }
  .pl-column-width-xxl-3 {
    padding-left: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .pr-column-width-xxl-3 {
    padding-right: calc(var(--smx--column--width) * 3 + 2rem);
  }
  .min-w-col-xxl-3 {
    min-width: calc(var(--smx--column--with--gutter--width) * 3);
  }
  .ml-xxl-n-col-3 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 3 * -1);
  }
  .pl-column-width-xxl-4 {
    padding-left: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .pr-column-width-xxl-4 {
    padding-right: calc(var(--smx--column--width) * 4 + 2rem);
  }
  .min-w-col-xxl-4 {
    min-width: calc(var(--smx--column--with--gutter--width) * 4);
  }
  .ml-xxl-n-col-4 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 4 * -1);
  }
  .pl-column-width-xxl-5 {
    padding-left: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .pr-column-width-xxl-5 {
    padding-right: calc(var(--smx--column--width) * 5 + 2rem);
  }
  .min-w-col-xxl-5 {
    min-width: calc(var(--smx--column--with--gutter--width) * 5);
  }
  .ml-xxl-n-col-5 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 5 * -1);
  }
  .pl-column-width-xxl-6 {
    padding-left: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .pr-column-width-xxl-6 {
    padding-right: calc(var(--smx--column--width) * 6 + 2rem);
  }
  .min-w-col-xxl-6 {
    min-width: calc(var(--smx--column--with--gutter--width) * 6);
  }
  .ml-xxl-n-col-6 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 6 * -1);
  }
  .pl-column-width-xxl-7 {
    padding-left: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .pr-column-width-xxl-7 {
    padding-right: calc(var(--smx--column--width) * 7 + 2rem);
  }
  .min-w-col-xxl-7 {
    min-width: calc(var(--smx--column--with--gutter--width) * 7);
  }
  .ml-xxl-n-col-7 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 7 * -1);
  }
  .pl-column-width-xxl-8 {
    padding-left: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .pr-column-width-xxl-8 {
    padding-right: calc(var(--smx--column--width) * 8 + 2rem);
  }
  .min-w-col-xxl-8 {
    min-width: calc(var(--smx--column--with--gutter--width) * 8);
  }
  .ml-xxl-n-col-8 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 8 * -1);
  }
  .pl-column-width-xxl-9 {
    padding-left: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .pr-column-width-xxl-9 {
    padding-right: calc(var(--smx--column--width) * 9 + 2rem);
  }
  .min-w-col-xxl-9 {
    min-width: calc(var(--smx--column--with--gutter--width) * 9);
  }
  .ml-xxl-n-col-9 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 9 * -1);
  }
  .pl-column-width-xxl-10 {
    padding-left: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .pr-column-width-xxl-10 {
    padding-right: calc(var(--smx--column--width) * 10 + 2rem);
  }
  .min-w-col-xxl-10 {
    min-width: calc(var(--smx--column--with--gutter--width) * 10);
  }
  .ml-xxl-n-col-10 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 10 * -1);
  }
  .pl-column-width-xxl-11 {
    padding-left: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .pr-column-width-xxl-11 {
    padding-right: calc(var(--smx--column--width) * 11 + 2rem);
  }
  .min-w-col-xxl-11 {
    min-width: calc(var(--smx--column--with--gutter--width) * 11);
  }
  .ml-xxl-n-col-11 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 11 * -1);
  }
  .pl-column-width-xxl-12 {
    padding-left: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .pr-column-width-xxl-12 {
    padding-right: calc(var(--smx--column--width) * 12 + 2rem);
  }
  .min-w-col-xxl-12 {
    min-width: calc(var(--smx--column--with--gutter--width) * 12);
  }
  .ml-xxl-n-col-12 {
    margin-left: calc(var(--smx--column--with--gutter--width) * 12 * -1);
  }
  .as-full-right-xxl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-right: calc(var(--smx-container-margin-negative) - 1rem);
  }
  .as-full-left-xxl {
    width: calc(100% + var(--smx-container-margin) + 1rem);
    margin-left: calc(var(--smx-container-margin-negative) - 1rem);
  }
}
.pt-0 {
  padding-top: 0;
}

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

.pt-xs-0 {
  padding-top: 0;
}

.mt-xs-0 {
  margin-top: 0;
}

@media (min-width: 576px) {
  .pt-sm-0 {
    padding-top: 0;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .pt-md-0 {
    padding-top: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .pt-lg-0 {
    padding-top: 0;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .pt-xl-0 {
    padding-top: 0;
  }
  .mt-xl-0 {
    margin-top: 0;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-0 {
    padding-top: 0;
  }
  .mt-xxl-0 {
    margin-top: 0;
  }
}
.pb-0 {
  padding-bottom: 0;
}

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

.pb-xs-0 {
  padding-bottom: 0;
}

.mb-xs-0 {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .pb-md-0 {
    padding-bottom: 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .pb-xl-0 {
    padding-bottom: 0;
  }
  .mb-xl-0 {
    margin-bottom: 0;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-0 {
    padding-bottom: 0;
  }
  .mb-xxl-0 {
    margin-bottom: 0;
  }
}
.pl-0 {
  padding-left: 0;
}

.ml-0 {
  margin-left: 0;
}

.pl-xs-0 {
  padding-left: 0;
}

.ml-xs-0 {
  margin-left: 0;
}

@media (min-width: 576px) {
  .pl-sm-0 {
    padding-left: 0;
  }
  .ml-sm-0 {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .pl-md-0 {
    padding-left: 0;
  }
  .ml-md-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .pl-lg-0 {
    padding-left: 0;
  }
  .ml-lg-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .pl-xl-0 {
    padding-left: 0;
  }
  .ml-xl-0 {
    margin-left: 0;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-0 {
    padding-left: 0;
  }
  .ml-xxl-0 {
    margin-left: 0;
  }
}
.pr-0 {
  padding-right: 0;
}

.mr-0 {
  margin-right: 0;
}

.pr-xs-0 {
  padding-right: 0;
}

.mr-xs-0 {
  margin-right: 0;
}

@media (min-width: 576px) {
  .pr-sm-0 {
    padding-right: 0;
  }
  .mr-sm-0 {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .pr-md-0 {
    padding-right: 0;
  }
  .mr-md-0 {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .pr-lg-0 {
    padding-right: 0;
  }
  .mr-lg-0 {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .pr-xl-0 {
    padding-right: 0;
  }
  .mr-xl-0 {
    margin-right: 0;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-0 {
    padding-right: 0;
  }
  .mr-xxl-0 {
    margin-right: 0;
  }
}
.pt-0_5 {
  padding-top: 0.5rem;
}

.mt-0_5 {
  margin-top: 0.5rem;
}

.pt-xs-0_5 {
  padding-top: 0.5rem;
}

.mt-xs-0_5 {
  margin-top: 0.5rem;
}

@media (min-width: 576px) {
  .pt-sm-0_5 {
    padding-top: 0.5rem;
  }
  .mt-sm-0_5 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .pt-md-0_5 {
    padding-top: 0.5rem;
  }
  .mt-md-0_5 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pt-lg-0_5 {
    padding-top: 0.5rem;
  }
  .mt-lg-0_5 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pt-xl-0_5 {
    padding-top: 0.5rem;
  }
  .mt-xl-0_5 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-0_5 {
    padding-top: 0.5rem;
  }
  .mt-xxl-0_5 {
    margin-top: 0.5rem;
  }
}
.pb-0_5 {
  padding-bottom: 0.5rem;
}

.mb-0_5 {
  margin-bottom: 0.5rem;
}

.pb-xs-0_5 {
  padding-bottom: 0.5rem;
}

.mb-xs-0_5 {
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .pb-sm-0_5 {
    padding-bottom: 0.5rem;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .pb-md-0_5 {
    padding-bottom: 0.5rem;
  }
  .mb-md-0_5 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-0_5 {
    padding-bottom: 0.5rem;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pb-xl-0_5 {
    padding-bottom: 0.5rem;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-0_5 {
    padding-bottom: 0.5rem;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.5rem;
  }
}
.pl-0_5 {
  padding-left: 0.5rem;
}

.ml-0_5 {
  margin-left: 0.5rem;
}

.pl-xs-0_5 {
  padding-left: 0.5rem;
}

.ml-xs-0_5 {
  margin-left: 0.5rem;
}

@media (min-width: 576px) {
  .pl-sm-0_5 {
    padding-left: 0.5rem;
  }
  .ml-sm-0_5 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 768px) {
  .pl-md-0_5 {
    padding-left: 0.5rem;
  }
  .ml-md-0_5 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-0_5 {
    padding-left: 0.5rem;
  }
  .ml-lg-0_5 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pl-xl-0_5 {
    padding-left: 0.5rem;
  }
  .ml-xl-0_5 {
    margin-left: 0.5rem;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-0_5 {
    padding-left: 0.5rem;
  }
  .ml-xxl-0_5 {
    margin-left: 0.5rem;
  }
}
.pr-0_5 {
  padding-right: 0.5rem;
}

.mr-0_5 {
  margin-right: 0.5rem;
}

.pr-xs-0_5 {
  padding-right: 0.5rem;
}

.mr-xs-0_5 {
  margin-right: 0.5rem;
}

@media (min-width: 576px) {
  .pr-sm-0_5 {
    padding-right: 0.5rem;
  }
  .mr-sm-0_5 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 768px) {
  .pr-md-0_5 {
    padding-right: 0.5rem;
  }
  .mr-md-0_5 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-0_5 {
    padding-right: 0.5rem;
  }
  .mr-lg-0_5 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .pr-xl-0_5 {
    padding-right: 0.5rem;
  }
  .mr-xl-0_5 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-0_5 {
    padding-right: 0.5rem;
  }
  .mr-xxl-0_5 {
    margin-right: 0.5rem;
  }
}
.pt-1 {
  padding-top: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.pt-xs-1 {
  padding-top: 1rem;
}

.mt-xs-1 {
  margin-top: 1rem;
}

@media (min-width: 576px) {
  .pt-sm-1 {
    padding-top: 1rem;
  }
  .mt-sm-1 {
    margin-top: 1rem;
  }
}
@media (min-width: 768px) {
  .pt-md-1 {
    padding-top: 1rem;
  }
  .mt-md-1 {
    margin-top: 1rem;
  }
}
@media (min-width: 992px) {
  .pt-lg-1 {
    padding-top: 1rem;
  }
  .mt-lg-1 {
    margin-top: 1rem;
  }
}
@media (min-width: 1200px) {
  .pt-xl-1 {
    padding-top: 1rem;
  }
  .mt-xl-1 {
    margin-top: 1rem;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-1 {
    padding-top: 1rem;
  }
  .mt-xxl-1 {
    margin-top: 1rem;
  }
}
.pb-1 {
  padding-bottom: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.pb-xs-1 {
  padding-bottom: 1rem;
}

.mb-xs-1 {
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  .pb-sm-1 {
    padding-bottom: 1rem;
  }
  .mb-sm-1 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .pb-md-1 {
    padding-bottom: 1rem;
  }
  .mb-md-1 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-1 {
    padding-bottom: 1rem;
  }
  .mb-lg-1 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .pb-xl-1 {
    padding-bottom: 1rem;
  }
  .mb-xl-1 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-1 {
    padding-bottom: 1rem;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem;
  }
}
.pl-1 {
  padding-left: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.pl-xs-1 {
  padding-left: 1rem;
}

.ml-xs-1 {
  margin-left: 1rem;
}

@media (min-width: 576px) {
  .pl-sm-1 {
    padding-left: 1rem;
  }
  .ml-sm-1 {
    margin-left: 1rem;
  }
}
@media (min-width: 768px) {
  .pl-md-1 {
    padding-left: 1rem;
  }
  .ml-md-1 {
    margin-left: 1rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-1 {
    padding-left: 1rem;
  }
  .ml-lg-1 {
    margin-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .pl-xl-1 {
    padding-left: 1rem;
  }
  .ml-xl-1 {
    margin-left: 1rem;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-1 {
    padding-left: 1rem;
  }
  .ml-xxl-1 {
    margin-left: 1rem;
  }
}
.pr-1 {
  padding-right: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.pr-xs-1 {
  padding-right: 1rem;
}

.mr-xs-1 {
  margin-right: 1rem;
}

@media (min-width: 576px) {
  .pr-sm-1 {
    padding-right: 1rem;
  }
  .mr-sm-1 {
    margin-right: 1rem;
  }
}
@media (min-width: 768px) {
  .pr-md-1 {
    padding-right: 1rem;
  }
  .mr-md-1 {
    margin-right: 1rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-1 {
    padding-right: 1rem;
  }
  .mr-lg-1 {
    margin-right: 1rem;
  }
}
@media (min-width: 1200px) {
  .pr-xl-1 {
    padding-right: 1rem;
  }
  .mr-xl-1 {
    margin-right: 1rem;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-1 {
    padding-right: 1rem;
  }
  .mr-xxl-1 {
    margin-right: 1rem;
  }
}
.pt-2 {
  padding-top: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.pt-xs-2 {
  padding-top: 2rem;
}

.mt-xs-2 {
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .pt-sm-2 {
    padding-top: 2rem;
  }
  .mt-sm-2 {
    margin-top: 2rem;
  }
}
@media (min-width: 768px) {
  .pt-md-2 {
    padding-top: 2rem;
  }
  .mt-md-2 {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .pt-lg-2 {
    padding-top: 2rem;
  }
  .mt-lg-2 {
    margin-top: 2rem;
  }
}
@media (min-width: 1200px) {
  .pt-xl-2 {
    padding-top: 2rem;
  }
  .mt-xl-2 {
    margin-top: 2rem;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-2 {
    padding-top: 2rem;
  }
  .mt-xxl-2 {
    margin-top: 2rem;
  }
}
.pb-2 {
  padding-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.pb-xs-2 {
  padding-bottom: 2rem;
}

.mb-xs-2 {
  margin-bottom: 2rem;
}

@media (min-width: 576px) {
  .pb-sm-2 {
    padding-bottom: 2rem;
  }
  .mb-sm-2 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .pb-md-2 {
    padding-bottom: 2rem;
  }
  .mb-md-2 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-2 {
    padding-bottom: 2rem;
  }
  .mb-lg-2 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .pb-xl-2 {
    padding-bottom: 2rem;
  }
  .mb-xl-2 {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-2 {
    padding-bottom: 2rem;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem;
  }
}
.pl-2 {
  padding-left: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.pl-xs-2 {
  padding-left: 2rem;
}

.ml-xs-2 {
  margin-left: 2rem;
}

@media (min-width: 576px) {
  .pl-sm-2 {
    padding-left: 2rem;
  }
  .ml-sm-2 {
    margin-left: 2rem;
  }
}
@media (min-width: 768px) {
  .pl-md-2 {
    padding-left: 2rem;
  }
  .ml-md-2 {
    margin-left: 2rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-2 {
    padding-left: 2rem;
  }
  .ml-lg-2 {
    margin-left: 2rem;
  }
}
@media (min-width: 1200px) {
  .pl-xl-2 {
    padding-left: 2rem;
  }
  .ml-xl-2 {
    margin-left: 2rem;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-2 {
    padding-left: 2rem;
  }
  .ml-xxl-2 {
    margin-left: 2rem;
  }
}
.pr-2 {
  padding-right: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.pr-xs-2 {
  padding-right: 2rem;
}

.mr-xs-2 {
  margin-right: 2rem;
}

@media (min-width: 576px) {
  .pr-sm-2 {
    padding-right: 2rem;
  }
  .mr-sm-2 {
    margin-right: 2rem;
  }
}
@media (min-width: 768px) {
  .pr-md-2 {
    padding-right: 2rem;
  }
  .mr-md-2 {
    margin-right: 2rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-2 {
    padding-right: 2rem;
  }
  .mr-lg-2 {
    margin-right: 2rem;
  }
}
@media (min-width: 1200px) {
  .pr-xl-2 {
    padding-right: 2rem;
  }
  .mr-xl-2 {
    margin-right: 2rem;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-2 {
    padding-right: 2rem;
  }
  .mr-xxl-2 {
    margin-right: 2rem;
  }
}
.pt-3 {
  padding-top: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.pt-xs-3 {
  padding-top: 3rem;
}

.mt-xs-3 {
  margin-top: 3rem;
}

@media (min-width: 576px) {
  .pt-sm-3 {
    padding-top: 3rem;
  }
  .mt-sm-3 {
    margin-top: 3rem;
  }
}
@media (min-width: 768px) {
  .pt-md-3 {
    padding-top: 3rem;
  }
  .mt-md-3 {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .pt-lg-3 {
    padding-top: 3rem;
  }
  .mt-lg-3 {
    margin-top: 3rem;
  }
}
@media (min-width: 1200px) {
  .pt-xl-3 {
    padding-top: 3rem;
  }
  .mt-xl-3 {
    margin-top: 3rem;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-3 {
    padding-top: 3rem;
  }
  .mt-xxl-3 {
    margin-top: 3rem;
  }
}
.pb-3 {
  padding-bottom: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.pb-xs-3 {
  padding-bottom: 3rem;
}

.mb-xs-3 {
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .pb-sm-3 {
    padding-bottom: 3rem;
  }
  .mb-sm-3 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .pb-md-3 {
    padding-bottom: 3rem;
  }
  .mb-md-3 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-3 {
    padding-bottom: 3rem;
  }
  .mb-lg-3 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1200px) {
  .pb-xl-3 {
    padding-bottom: 3rem;
  }
  .mb-xl-3 {
    margin-bottom: 3rem;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-3 {
    padding-bottom: 3rem;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem;
  }
}
.pl-3 {
  padding-left: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.pl-xs-3 {
  padding-left: 3rem;
}

.ml-xs-3 {
  margin-left: 3rem;
}

@media (min-width: 576px) {
  .pl-sm-3 {
    padding-left: 3rem;
  }
  .ml-sm-3 {
    margin-left: 3rem;
  }
}
@media (min-width: 768px) {
  .pl-md-3 {
    padding-left: 3rem;
  }
  .ml-md-3 {
    margin-left: 3rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-3 {
    padding-left: 3rem;
  }
  .ml-lg-3 {
    margin-left: 3rem;
  }
}
@media (min-width: 1200px) {
  .pl-xl-3 {
    padding-left: 3rem;
  }
  .ml-xl-3 {
    margin-left: 3rem;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-3 {
    padding-left: 3rem;
  }
  .ml-xxl-3 {
    margin-left: 3rem;
  }
}
.pr-3 {
  padding-right: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.pr-xs-3 {
  padding-right: 3rem;
}

.mr-xs-3 {
  margin-right: 3rem;
}

@media (min-width: 576px) {
  .pr-sm-3 {
    padding-right: 3rem;
  }
  .mr-sm-3 {
    margin-right: 3rem;
  }
}
@media (min-width: 768px) {
  .pr-md-3 {
    padding-right: 3rem;
  }
  .mr-md-3 {
    margin-right: 3rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-3 {
    padding-right: 3rem;
  }
  .mr-lg-3 {
    margin-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .pr-xl-3 {
    padding-right: 3rem;
  }
  .mr-xl-3 {
    margin-right: 3rem;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-3 {
    padding-right: 3rem;
  }
  .mr-xxl-3 {
    margin-right: 3rem;
  }
}
.pt-4 {
  padding-top: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.pt-xs-4 {
  padding-top: 4rem;
}

.mt-xs-4 {
  margin-top: 4rem;
}

@media (min-width: 576px) {
  .pt-sm-4 {
    padding-top: 4rem;
  }
  .mt-sm-4 {
    margin-top: 4rem;
  }
}
@media (min-width: 768px) {
  .pt-md-4 {
    padding-top: 4rem;
  }
  .mt-md-4 {
    margin-top: 4rem;
  }
}
@media (min-width: 992px) {
  .pt-lg-4 {
    padding-top: 4rem;
  }
  .mt-lg-4 {
    margin-top: 4rem;
  }
}
@media (min-width: 1200px) {
  .pt-xl-4 {
    padding-top: 4rem;
  }
  .mt-xl-4 {
    margin-top: 4rem;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-4 {
    padding-top: 4rem;
  }
  .mt-xxl-4 {
    margin-top: 4rem;
  }
}
.pb-4 {
  padding-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.pb-xs-4 {
  padding-bottom: 4rem;
}

.mb-xs-4 {
  margin-bottom: 4rem;
}

@media (min-width: 576px) {
  .pb-sm-4 {
    padding-bottom: 4rem;
  }
  .mb-sm-4 {
    margin-bottom: 4rem;
  }
}
@media (min-width: 768px) {
  .pb-md-4 {
    padding-bottom: 4rem;
  }
  .mb-md-4 {
    margin-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-4 {
    padding-bottom: 4rem;
  }
  .mb-lg-4 {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1200px) {
  .pb-xl-4 {
    padding-bottom: 4rem;
  }
  .mb-xl-4 {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-4 {
    padding-bottom: 4rem;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem;
  }
}
.pl-4 {
  padding-left: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.pl-xs-4 {
  padding-left: 4rem;
}

.ml-xs-4 {
  margin-left: 4rem;
}

@media (min-width: 576px) {
  .pl-sm-4 {
    padding-left: 4rem;
  }
  .ml-sm-4 {
    margin-left: 4rem;
  }
}
@media (min-width: 768px) {
  .pl-md-4 {
    padding-left: 4rem;
  }
  .ml-md-4 {
    margin-left: 4rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-4 {
    padding-left: 4rem;
  }
  .ml-lg-4 {
    margin-left: 4rem;
  }
}
@media (min-width: 1200px) {
  .pl-xl-4 {
    padding-left: 4rem;
  }
  .ml-xl-4 {
    margin-left: 4rem;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-4 {
    padding-left: 4rem;
  }
  .ml-xxl-4 {
    margin-left: 4rem;
  }
}
.pr-4 {
  padding-right: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.pr-xs-4 {
  padding-right: 4rem;
}

.mr-xs-4 {
  margin-right: 4rem;
}

@media (min-width: 576px) {
  .pr-sm-4 {
    padding-right: 4rem;
  }
  .mr-sm-4 {
    margin-right: 4rem;
  }
}
@media (min-width: 768px) {
  .pr-md-4 {
    padding-right: 4rem;
  }
  .mr-md-4 {
    margin-right: 4rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-4 {
    padding-right: 4rem;
  }
  .mr-lg-4 {
    margin-right: 4rem;
  }
}
@media (min-width: 1200px) {
  .pr-xl-4 {
    padding-right: 4rem;
  }
  .mr-xl-4 {
    margin-right: 4rem;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-4 {
    padding-right: 4rem;
  }
  .mr-xxl-4 {
    margin-right: 4rem;
  }
}
.pt-5 {
  padding-top: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.pt-xs-5 {
  padding-top: 5rem;
}

.mt-xs-5 {
  margin-top: 5rem;
}

@media (min-width: 576px) {
  .pt-sm-5 {
    padding-top: 5rem;
  }
  .mt-sm-5 {
    margin-top: 5rem;
  }
}
@media (min-width: 768px) {
  .pt-md-5 {
    padding-top: 5rem;
  }
  .mt-md-5 {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .pt-lg-5 {
    padding-top: 5rem;
  }
  .mt-lg-5 {
    margin-top: 5rem;
  }
}
@media (min-width: 1200px) {
  .pt-xl-5 {
    padding-top: 5rem;
  }
  .mt-xl-5 {
    margin-top: 5rem;
  }
}
@media (min-width: 1500px) {
  .pt-xxl-5 {
    padding-top: 5rem;
  }
  .mt-xxl-5 {
    margin-top: 5rem;
  }
}
.pb-5 {
  padding-bottom: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.pb-xs-5 {
  padding-bottom: 5rem;
}

.mb-xs-5 {
  margin-bottom: 5rem;
}

@media (min-width: 576px) {
  .pb-sm-5 {
    padding-bottom: 5rem;
  }
  .mb-sm-5 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 768px) {
  .pb-md-5 {
    padding-bottom: 5rem;
  }
  .mb-md-5 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .pb-lg-5 {
    padding-bottom: 5rem;
  }
  .mb-lg-5 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .pb-xl-5 {
    padding-bottom: 5rem;
  }
  .mb-xl-5 {
    margin-bottom: 5rem;
  }
}
@media (min-width: 1500px) {
  .pb-xxl-5 {
    padding-bottom: 5rem;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem;
  }
}
.pl-5 {
  padding-left: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.pl-xs-5 {
  padding-left: 5rem;
}

.ml-xs-5 {
  margin-left: 5rem;
}

@media (min-width: 576px) {
  .pl-sm-5 {
    padding-left: 5rem;
  }
  .ml-sm-5 {
    margin-left: 5rem;
  }
}
@media (min-width: 768px) {
  .pl-md-5 {
    padding-left: 5rem;
  }
  .ml-md-5 {
    margin-left: 5rem;
  }
}
@media (min-width: 992px) {
  .pl-lg-5 {
    padding-left: 5rem;
  }
  .ml-lg-5 {
    margin-left: 5rem;
  }
}
@media (min-width: 1200px) {
  .pl-xl-5 {
    padding-left: 5rem;
  }
  .ml-xl-5 {
    margin-left: 5rem;
  }
}
@media (min-width: 1500px) {
  .pl-xxl-5 {
    padding-left: 5rem;
  }
  .ml-xxl-5 {
    margin-left: 5rem;
  }
}
.pr-5 {
  padding-right: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.pr-xs-5 {
  padding-right: 5rem;
}

.mr-xs-5 {
  margin-right: 5rem;
}

@media (min-width: 576px) {
  .pr-sm-5 {
    padding-right: 5rem;
  }
  .mr-sm-5 {
    margin-right: 5rem;
  }
}
@media (min-width: 768px) {
  .pr-md-5 {
    padding-right: 5rem;
  }
  .mr-md-5 {
    margin-right: 5rem;
  }
}
@media (min-width: 992px) {
  .pr-lg-5 {
    padding-right: 5rem;
  }
  .mr-lg-5 {
    margin-right: 5rem;
  }
}
@media (min-width: 1200px) {
  .pr-xl-5 {
    padding-right: 5rem;
  }
  .mr-xl-5 {
    margin-right: 5rem;
  }
}
@media (min-width: 1500px) {
  .pr-xxl-5 {
    padding-right: 5rem;
  }
  .mr-xxl-5 {
    margin-right: 5rem;
  }
}
.w-6 {
  width: calc(0.6 * 10%);
}

.w-10 {
  width: calc(1 * 10%);
}

.w-15 {
  width: calc(1.5 * 10%);
}

.w-20 {
  width: calc(2 * 10%);
}

.w-25 {
  width: calc(2.5 * 10%);
}

.w-30 {
  width: calc(3 * 10%);
}

.w-35 {
  width: calc(3.5 * 10%);
}

.w-40 {
  width: calc(4 * 10%);
}

.w-45 {
  width: calc(4.5 * 10%);
}

.w-50 {
  width: calc(5 * 10%);
}

.w-55 {
  width: calc(5.5 * 10%);
}

.w-60 {
  width: calc(6 * 10%);
}

.w-65 {
  width: calc(6.5 * 10%);
}

.w-70 {
  width: calc(7 * 10%);
}

.w-75 {
  width: calc(7.5 * 10%);
}

.w-80 {
  width: calc(8 * 10%);
}

.w-85 {
  width: calc(8.5 * 10%);
}

.w-90 {
  width: calc(9 * 10%);
}

.w-95 {
  width: calc(9.5 * 10%);
}

.w-100 {
  width: calc(10 * 10%);
}

@media screen and (min-width: 576px) {
  .w-sm-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .w-sm-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .w-md-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .w-lg-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-100 {
    width: calc(10 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-6 {
    width: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-10 {
    width: calc(1 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-15 {
    width: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-20 {
    width: calc(2 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-25 {
    width: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-30 {
    width: calc(3 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-35 {
    width: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-40 {
    width: calc(4 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-45 {
    width: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-50 {
    width: calc(5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-55 {
    width: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-60 {
    width: calc(6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-65 {
    width: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-70 {
    width: calc(7 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-75 {
    width: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-80 {
    width: calc(8 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-85 {
    width: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-90 {
    width: calc(9 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-95 {
    width: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-100 {
    width: calc(10 * 10%);
  }
}

.h-6 {
  height: calc(0.6 * 10%);
}

.h-10 {
  height: calc(1 * 10%);
}

.h-15 {
  height: calc(1.5 * 10%);
}

.h-20 {
  height: calc(2 * 10%);
}

.h-25 {
  height: calc(2.5 * 10%);
}

.h-30 {
  height: calc(3 * 10%);
}

.h-35 {
  height: calc(3.5 * 10%);
}

.h-40 {
  height: calc(4 * 10%);
}

.h-45 {
  height: calc(4.5 * 10%);
}

.h-50 {
  height: calc(5 * 10%);
}

.h-55 {
  height: calc(5.5 * 10%);
}

.h-60 {
  height: calc(6 * 10%);
}

.h-65 {
  height: calc(6.5 * 10%);
}

.h-70 {
  height: calc(7 * 10%);
}

.h-75 {
  height: calc(7.5 * 10%);
}

.h-80 {
  height: calc(8 * 10%);
}

.h-85 {
  height: calc(8.5 * 10%);
}

.h-90 {
  height: calc(9 * 10%);
}

.h-95 {
  height: calc(9.5 * 10%);
}

.h-100 {
  height: calc(10 * 10%);
}

@media screen and (min-width: 576px) {
  .h-sm-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 576px) {
  .h-sm-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 768px) {
  .h-md-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 992px) {
  .h-lg-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-100 {
    height: calc(10 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-6 {
    height: calc(0.6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-10 {
    height: calc(1 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-15 {
    height: calc(1.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-20 {
    height: calc(2 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-25 {
    height: calc(2.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-30 {
    height: calc(3 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-35 {
    height: calc(3.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-40 {
    height: calc(4 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-45 {
    height: calc(4.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-50 {
    height: calc(5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-55 {
    height: calc(5.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-60 {
    height: calc(6 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-65 {
    height: calc(6.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-70 {
    height: calc(7 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-75 {
    height: calc(7.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-80 {
    height: calc(8 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-85 {
    height: calc(8.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-90 {
    height: calc(9 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-95 {
    height: calc(9.5 * 10%);
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-100 {
    height: calc(10 * 10%);
  }
}

.rw-6 {
  width: calc(0.6 * 10rem);
}

.rw-10 {
  width: calc(1 * 10rem);
}

.rw-15 {
  width: calc(1.5 * 10rem);
}

.rw-20 {
  width: calc(2 * 10rem);
}

.rw-25 {
  width: calc(2.5 * 10rem);
}

.rw-30 {
  width: calc(3 * 10rem);
}

.rw-35 {
  width: calc(3.5 * 10rem);
}

.rw-40 {
  width: calc(4 * 10rem);
}

.rw-45 {
  width: calc(4.5 * 10rem);
}

.rw-50 {
  width: calc(5 * 10rem);
}

.rw-55 {
  width: calc(5.5 * 10rem);
}

.rw-60 {
  width: calc(6 * 10rem);
}

.rw-65 {
  width: calc(6.5 * 10rem);
}

.rw-70 {
  width: calc(7 * 10rem);
}

.rw-75 {
  width: calc(7.5 * 10rem);
}

.rw-80 {
  width: calc(8 * 10rem);
}

.rw-85 {
  width: calc(8.5 * 10rem);
}

.rw-90 {
  width: calc(9 * 10rem);
}

.rw-95 {
  width: calc(9.5 * 10rem);
}

.rw-100 {
  width: calc(10 * 10rem);
}

@media screen and (min-width: 576px) {
  .rw-sm-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rw-sm-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rw-md-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rw-lg-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rw-xl-100 {
    width: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-6 {
    width: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-10 {
    width: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-15 {
    width: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-20 {
    width: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-25 {
    width: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-30 {
    width: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-35 {
    width: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-40 {
    width: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-45 {
    width: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-50 {
    width: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-55 {
    width: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-60 {
    width: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-65 {
    width: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-70 {
    width: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-75 {
    width: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-80 {
    width: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-85 {
    width: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-90 {
    width: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-95 {
    width: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rw-xxl-100 {
    width: calc(10 * 10rem);
  }
}

.rh-6 {
  height: calc(0.6 * 10rem);
}

.rh-10 {
  height: calc(1 * 10rem);
}

.rh-15 {
  height: calc(1.5 * 10rem);
}

.rh-20 {
  height: calc(2 * 10rem);
}

.rh-25 {
  height: calc(2.5 * 10rem);
}

.rh-30 {
  height: calc(3 * 10rem);
}

.rh-35 {
  height: calc(3.5 * 10rem);
}

.rh-40 {
  height: calc(4 * 10rem);
}

.rh-45 {
  height: calc(4.5 * 10rem);
}

.rh-50 {
  height: calc(5 * 10rem);
}

.rh-55 {
  height: calc(5.5 * 10rem);
}

.rh-60 {
  height: calc(6 * 10rem);
}

.rh-65 {
  height: calc(6.5 * 10rem);
}

.rh-70 {
  height: calc(7 * 10rem);
}

.rh-75 {
  height: calc(7.5 * 10rem);
}

.rh-80 {
  height: calc(8 * 10rem);
}

.rh-85 {
  height: calc(8.5 * 10rem);
}

.rh-90 {
  height: calc(9 * 10rem);
}

.rh-95 {
  height: calc(9.5 * 10rem);
}

.rh-100 {
  height: calc(10 * 10rem);
}

@media screen and (min-width: 576px) {
  .rh-sm-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 576px) {
  .rh-sm-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 768px) {
  .rh-md-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 992px) {
  .rh-lg-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1200px) {
  .rh-xl-100 {
    height: calc(10 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-6 {
    height: calc(0.6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-10 {
    height: calc(1 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-15 {
    height: calc(1.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-20 {
    height: calc(2 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-25 {
    height: calc(2.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-30 {
    height: calc(3 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-35 {
    height: calc(3.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-40 {
    height: calc(4 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-45 {
    height: calc(4.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-50 {
    height: calc(5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-55 {
    height: calc(5.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-60 {
    height: calc(6 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-65 {
    height: calc(6.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-70 {
    height: calc(7 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-75 {
    height: calc(7.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-80 {
    height: calc(8 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-85 {
    height: calc(8.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-90 {
    height: calc(9 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-95 {
    height: calc(9.5 * 10rem);
  }
}

@media screen and (min-width: 1500px) {
  .rh-xxl-100 {
    height: calc(10 * 10rem);
  }
}

.vh-6 {
  height: calc(0.6 * 10vh);
}

.vh-10 {
  height: calc(1 * 10vh);
}

.vh-15 {
  height: calc(1.5 * 10vh);
}

.vh-20 {
  height: calc(2 * 10vh);
}

.vh-25 {
  height: calc(2.5 * 10vh);
}

.vh-30 {
  height: calc(3 * 10vh);
}

.vh-35 {
  height: calc(3.5 * 10vh);
}

.vh-40 {
  height: calc(4 * 10vh);
}

.vh-45 {
  height: calc(4.5 * 10vh);
}

.vh-50 {
  height: calc(5 * 10vh);
}

.vh-55 {
  height: calc(5.5 * 10vh);
}

.vh-60 {
  height: calc(6 * 10vh);
}

.vh-65 {
  height: calc(6.5 * 10vh);
}

.vh-70 {
  height: calc(7 * 10vh);
}

.vh-75 {
  height: calc(7.5 * 10vh);
}

.vh-80 {
  height: calc(8 * 10vh);
}

.vh-85 {
  height: calc(8.5 * 10vh);
}

.vh-90 {
  height: calc(9 * 10vh);
}

.vh-95 {
  height: calc(9.5 * 10vh);
}

.vh-100 {
  height: calc(10 * 10vh);
}

@media screen and (min-width: 576px) {
  .vh-sm-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 576px) {
  .vh-sm-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 768px) {
  .vh-md-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 992px) {
  .vh-lg-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 1200px) {
  .vh-xl-100 {
    height: calc(10 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-6 {
    height: calc(0.6 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-10 {
    height: calc(1 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-15 {
    height: calc(1.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-20 {
    height: calc(2 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-25 {
    height: calc(2.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-30 {
    height: calc(3 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-35 {
    height: calc(3.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-40 {
    height: calc(4 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-45 {
    height: calc(4.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-50 {
    height: calc(5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-55 {
    height: calc(5.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-60 {
    height: calc(6 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-65 {
    height: calc(6.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-70 {
    height: calc(7 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-75 {
    height: calc(7.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-80 {
    height: calc(8 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-85 {
    height: calc(8.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-90 {
    height: calc(9 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-95 {
    height: calc(9.5 * 10vh);
  }
}

@media screen and (min-width: 1500px) {
  .vh-xxl-100 {
    height: calc(10 * 10vh);
  }
}

.ar-1-1 {
  aspect-ratio: 1/1;
}

.ar-1-2 {
  aspect-ratio: 1/2;
}

.ar-1-3 {
  aspect-ratio: 1/3;
}

.ar-1-4 {
  aspect-ratio: 1/4;
}

.ar-2-1 {
  aspect-ratio: 2/1;
}

.ar-3-1 {
  aspect-ratio: 3/1;
}

.ar-4-1 {
  aspect-ratio: 4/1;
}

.ar-2-3 {
  aspect-ratio: 2/3;
}

.ar-3-4 {
  aspect-ratio: 3/4;
}

.ar-4-5 {
  aspect-ratio: 4/5;
}

.ar-5-6 {
  aspect-ratio: 5/6;
}

.ar-3-2 {
  aspect-ratio: 3/2;
}

.ar-4-3 {
  aspect-ratio: 4/3;
}

.ar-5-4 {
  aspect-ratio: 5/4;
}

.ar-6-5 {
  aspect-ratio: 6/5;
}

.ar-16-9 {
  aspect-ratio: 16/9;
}

.ar-9-16 {
  aspect-ratio: 9-/16;
}

@media screen and (min-width: 576px) {
  .ar-sm-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 576px) {
  .ar-sm-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 768px) {
  .ar-md-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 992px) {
  .ar-lg-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 1200px) {
  .ar-xl-9-16 {
    aspect-ratio: 9-/16;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-1 {
    aspect-ratio: 1/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-2 {
    aspect-ratio: 1/2;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-3 {
    aspect-ratio: 1/3;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-1-4 {
    aspect-ratio: 1/4;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-2-1 {
    aspect-ratio: 2/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-3-1 {
    aspect-ratio: 3/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-4-1 {
    aspect-ratio: 4/1;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-2-3 {
    aspect-ratio: 2/3;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-3-4 {
    aspect-ratio: 3/4;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-4-5 {
    aspect-ratio: 4/5;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-5-6 {
    aspect-ratio: 5/6;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-3-2 {
    aspect-ratio: 3/2;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-4-3 {
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-5-4 {
    aspect-ratio: 5/4;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-6-5 {
    aspect-ratio: 6/5;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-16-9 {
    aspect-ratio: 16/9;
  }
}

@media screen and (min-width: 1500px) {
  .ar-xxl-9-16 {
    aspect-ratio: 9-/16;
  }
}

.w-auto {
  width: auto;
}

.h-auto {
  width: auto;
}

@media screen and (min-width: 576px) {
  .w-sm-auto {
    width: auto;
  }
}

@media screen and (min-width: 576px) {
  .h-sm-auto {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .w-md-auto {
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .h-md-auto {
    width: auto;
  }
}

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

@media screen and (min-width: 992px) {
  .h-lg-auto {
    width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .w-xl-auto {
    width: auto;
  }
}

@media screen and (min-width: 1200px) {
  .h-xl-auto {
    width: auto;
  }
}

@media screen and (min-width: 1500px) {
  .w-xxl-auto {
    width: auto;
  }
}

@media screen and (min-width: 1500px) {
  .h-xxl-auto {
    width: auto;
  }
}

body {
  --wp--preset--spacing--size-1: 1rem;
  --wp--preset--spacing--size-2: 2rem;
  --wp--preset--spacing--size-3: 3rem;
  --wp--preset--spacing--size-4: 5rem;
  --wp--preset--spacing--size-5: 6rem;
}
@media (min-width: 768px) {
  body {
    --wp--preset--spacing--size-1: 1.5rem;
    --wp--preset--spacing--size-2: 3rem;
    --wp--preset--spacing--size-3: 4.5rem;
    --wp--preset--spacing--size-4: 7.5rem;
    --wp--preset--spacing--size-5: 9rem;
  }
}
@media (min-width: 992px) {
  body {
    --wp--preset--spacing--size-1: 3rem;
    --wp--preset--spacing--size-2: 5rem;
    --wp--preset--spacing--size-3: 7rem;
    --wp--preset--spacing--size-4: 10rem;
    --wp--preset--spacing--size-5: 13rem;
  }
}

.border-box {
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

.bg-img > figure,
.cover,
video {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.bg-img {
  display: block;
}

.wp-block-video video {
  height: 100%;
}

.no-scroll {
  overflow-y: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.no-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.circle {
  border-radius: 50%;
}

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

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

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

.z-index-n10 {
  z-index: -10;
}

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

.z-index-n20 {
  z-index: -20;
}

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

.z-index-n30 {
  z-index: -30;
}

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

.z-index-n40 {
  z-index: -40;
}

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

.z-index-n50 {
  z-index: -50;
}

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

.z-index-n60 {
  z-index: -60;
}

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

.z-index-n70 {
  z-index: -70;
}

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

.z-index-n80 {
  z-index: -80;
}

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

.z-index-n90 {
  z-index: -90;
}

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

.z-index-n100 {
  z-index: -100;
}

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

.z-index-n1000 {
  z-index: -1000;
}

@media screen and (min-width: 576px) {
  .z-index-sm-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 576px) {
  .z-index-sm-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-n1000 {
    z-index: -1000;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-1 {
    z-index: 1;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n1 {
    z-index: -1;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-10 {
    z-index: 10;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n10 {
    z-index: -10;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-20 {
    z-index: 20;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n20 {
    z-index: -20;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-30 {
    z-index: 30;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n30 {
    z-index: -30;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-40 {
    z-index: 40;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n40 {
    z-index: -40;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-50 {
    z-index: 50;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n50 {
    z-index: -50;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-60 {
    z-index: 60;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n60 {
    z-index: -60;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-70 {
    z-index: 70;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n70 {
    z-index: -70;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-80 {
    z-index: 80;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n80 {
    z-index: -80;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-90 {
    z-index: 90;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n90 {
    z-index: -90;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-100 {
    z-index: 100;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n100 {
    z-index: -100;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-1000 {
    z-index: 1000;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-n1000 {
    z-index: -1000;
  }
}

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

@media screen and (min-width: 576px) {
  .z-index-sm-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 768px) {
  .z-index-md-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 992px) {
  .z-index-lg-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 1200px) {
  .z-index-xl-auto {
    z-index: auto;
  }
}

@media screen and (min-width: 1500px) {
  .z-index-xxl-auto {
    z-index: auto;
  }
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.wp-block-separator {
  border-top-width: 4px;
  opacity: 1;
}
.wp-block-separator.is-style-default {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-width: 0.5px;
}

.square {
  aspect-ratio: 1/1;
}

.rectangle {
  aspect-ratio: 3/2.2;
}

.wp-block-cover {
  padding: 0;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-x-clip {
  overflow-x: clip !important;
}

.overflow-visible {
  overflow: visible !important;
}

.smx-breadcrumbs.has-primary-color * {
  color: #007cbe;
}
.smx-breadcrumbs.has-primary-darken-color * {
  color: rgb(0, 90.7157894737, 139);
}
.smx-breadcrumbs.has-secondary-color * {
  color: #4e4e4e;
}
.smx-breadcrumbs.has-secondary-darken-color * {
  color: rgb(52.5, 52.5, 52.5);
}
.smx-breadcrumbs.has-white-color * {
  color: #fff;
}
.smx-breadcrumbs.has-white-darken-color * {
  color: rgb(229.5, 229.5, 229.5);
}
.smx-breadcrumbs.has-black-color * {
  color: #000;
}
.smx-breadcrumbs.has-black-darken-color * {
  color: hsl(0, 0%, -10%);
}
.smx-breadcrumbs.has-light-grey-color * {
  color: #b5b5b5;
}
.smx-breadcrumbs.has-light-grey-darken-color * {
  color: rgb(155.5, 155.5, 155.5);
}
.smx-breadcrumbs.has-dark-grey-color * {
  color: #4e4e4e;
}
.smx-breadcrumbs.has-dark-grey-darken-color * {
  color: rgb(52.5, 52.5, 52.5);
}
.smx-breadcrumbs.has-black-grey-color * {
  color: #242424;
}
.smx-breadcrumbs.has-black-grey-darken-color * {
  color: rgb(10.5, 10.5, 10.5);
}
.smx-breadcrumbs.has-back-grey-color * {
  color: #2f2f2f;
}
.smx-breadcrumbs.has-back-grey-darken-color * {
  color: rgb(21.5, 21.5, 21.5);
}

.after-line {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
}
.after-line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7rem;
  height: 4px;
  background-color: #007cbe;
  content: "";
}

.scroll-down {
  position: relative;
}
.scroll-down::after {
  position: absolute;
  top: calc(100vh - 13rem);
  left: calc(50% - 1px);
  z-index: 100;
  width: 2px;
  height: 13rem;
  background-color: white;
  -webkit-animation: scroll-down 1.7s ease-in-out infinite both alternate;
  animation: scroll-down 1.7s ease-in-out infinite both alternate;
  content: "";
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.radius-0 {
  border-radius: 0;
}

.radius-top-left-0 {
  border-top-left-radius: 0;
}

.radius-xs-top-left-0 {
  border-top-left-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-0 {
    border-top-left-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-0 {
    border-top-left-radius: 0;
  }
}
.radius-top-right-0 {
  border-top-right-radius: 0;
}

.radius-xs-top-right-0 {
  border-top-right-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-0 {
    border-top-right-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-0 {
    border-top-right-radius: 0;
  }
}
.radius-bottom-left-0 {
  border-bottom-left-radius: 0;
}

.radius-xs-bottom-left-0 {
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-0 {
    border-bottom-left-radius: 0;
  }
}
.radius-bottom-right-0 {
  border-bottom-right-radius: 0;
}

.radius-xs-bottom-right-0 {
  border-bottom-right-radius: 0;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-0 {
    border-bottom-right-radius: 0;
  }
}
.radius-1 {
  border-radius: 1rem;
}

.radius-top-left-1 {
  border-top-left-radius: 1rem;
}

.radius-xs-top-left-1 {
  border-top-left-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-1 {
    border-top-left-radius: 1rem;
  }
}
.radius-top-right-1 {
  border-top-right-radius: 1rem;
}

.radius-xs-top-right-1 {
  border-top-right-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-1 {
    border-top-right-radius: 1rem;
  }
}
.radius-bottom-left-1 {
  border-bottom-left-radius: 1rem;
}

.radius-xs-bottom-left-1 {
  border-bottom-left-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-1 {
    border-bottom-left-radius: 1rem;
  }
}
.radius-bottom-right-1 {
  border-bottom-right-radius: 1rem;
}

.radius-xs-bottom-right-1 {
  border-bottom-right-radius: 1rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-1 {
    border-bottom-right-radius: 1rem;
  }
}
.radius-2 {
  border-radius: 2rem;
}

.radius-top-left-2 {
  border-top-left-radius: 2rem;
}

.radius-xs-top-left-2 {
  border-top-left-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-2 {
    border-top-left-radius: 2rem;
  }
}
.radius-top-right-2 {
  border-top-right-radius: 2rem;
}

.radius-xs-top-right-2 {
  border-top-right-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-2 {
    border-top-right-radius: 2rem;
  }
}
.radius-bottom-left-2 {
  border-bottom-left-radius: 2rem;
}

.radius-xs-bottom-left-2 {
  border-bottom-left-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-2 {
    border-bottom-left-radius: 2rem;
  }
}
.radius-bottom-right-2 {
  border-bottom-right-radius: 2rem;
}

.radius-xs-bottom-right-2 {
  border-bottom-right-radius: 2rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-2 {
    border-bottom-right-radius: 2rem;
  }
}
.radius-3 {
  border-radius: 3rem;
}

.radius-top-left-3 {
  border-top-left-radius: 3rem;
}

.radius-xs-top-left-3 {
  border-top-left-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-3 {
    border-top-left-radius: 3rem;
  }
}
.radius-top-right-3 {
  border-top-right-radius: 3rem;
}

.radius-xs-top-right-3 {
  border-top-right-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-3 {
    border-top-right-radius: 3rem;
  }
}
.radius-bottom-left-3 {
  border-bottom-left-radius: 3rem;
}

.radius-xs-bottom-left-3 {
  border-bottom-left-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-3 {
    border-bottom-left-radius: 3rem;
  }
}
.radius-bottom-right-3 {
  border-bottom-right-radius: 3rem;
}

.radius-xs-bottom-right-3 {
  border-bottom-right-radius: 3rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-3 {
    border-bottom-right-radius: 3rem;
  }
}
.radius-4 {
  border-radius: 4rem;
}

.radius-top-left-4 {
  border-top-left-radius: 4rem;
}

.radius-xs-top-left-4 {
  border-top-left-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-left-4 {
    border-top-left-radius: 4rem;
  }
}
.radius-top-right-4 {
  border-top-right-radius: 4rem;
}

.radius-xs-top-right-4 {
  border-top-right-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-top-right-4 {
    border-top-right-radius: 4rem;
  }
}
.radius-bottom-left-4 {
  border-bottom-left-radius: 4rem;
}

.radius-xs-bottom-left-4 {
  border-bottom-left-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-left-4 {
    border-bottom-left-radius: 4rem;
  }
}
.radius-bottom-right-4 {
  border-bottom-right-radius: 4rem;
}

.radius-xs-bottom-right-4 {
  border-bottom-right-radius: 4rem;
}

@media (min-width: 576px) {
  .radius-sm-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 768px) {
  .radius-md-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 992px) {
  .radius-lg-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 1200px) {
  .radius-xl-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
@media (min-width: 1500px) {
  .radius-xxl-bottom-right-4 {
    border-bottom-right-radius: 4rem;
  }
}
.box-shadow {
  -webkit-box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 20px 5px rgba(0, 0, 0, 0.1);
}
.box-shadow:active, .box-shadow:focus, .box-shadow:focus-within {
  -webkit-box-shadow: 0 3px 25px 5px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 3px 25px 5px rgba(0, 0, 0, 0.1) !important;
}

.box-shadow-bottom {
  -webkit-box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px 5px rgba(0, 0, 0, 0.1);
}
.box-shadow-bottom:active, .box-shadow-bottom:focus, .box-shadow-bottom:focus-within {
  -webkit-box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.1) !important;
}

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

.v-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.o-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.-v-center {
  position: absolute;
  top: -50%;
}

.bottom-shadow::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: black;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
}
.bottom-shadow.hover-shadow:hover::before {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.top-shadow::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.9)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
}
.top-shadow.hover-shadow:hover::before {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}

.shadow::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: black;
  opacity: 0.5;
  content: "";
}

.shadow-hover::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: black;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  opacity: 0.5;
  content: "";
}
.shadow-hover:hover::before {
  opacity: 0;
}

.blend-normal {
  background-blend-mode: normal;
  mix-blend-mode: normal;
}

.blend-multiply {
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
}

.blend-screen {
  background-blend-mode: screen;
  mix-blend-mode: screen;
}

.blend-overlay {
  background-blend-mode: overlay;
  mix-blend-mode: overlay;
}

.blend-darken {
  background-blend-mode: darken;
  mix-blend-mode: darken;
}

.blend-lighten {
  background-blend-mode: lighten;
  mix-blend-mode: lighten;
}

.blend-dodge {
  background-blend-mode: color-dodge;
  mix-blend-mode: color-dodge;
}

.blend-burn {
  background-blend-mode: color-burn;
  mix-blend-mode: color-burn;
}

.blend-hue {
  background-blend-mode: hue;
  mix-blend-mode: hue;
}

.blend-sat {
  background-blend-mode: saturation;
  mix-blend-mode: saturation;
}

.blend-color {
  background-blend-mode: color;
  mix-blend-mode: color;
}

.blend-lum {
  background-blend-mode: luminosity;
  mix-blend-mode: luminosity;
}

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

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.wp-block-cover__image-background {
  z-index: 0; /* altrimenti nasconde i contenuti ... */
}

.smx-footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 1.2em;
}
@media screen and (min-width: 992px) {
  .smx-footer-menu ul {
    max-height: 16rem;
  }
}
.smx-footer-menu ul > li a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.smx-footer-menu ul > li a:focus, .smx-footer-menu ul > li a:hover {
  padding-left: 2px;
  scale: 1.025;
}

.border-0 {
  border-width: 0;
  border-style: solid;
}

.border-t-0 {
  border-top-width: 0;
  border-style: solid;
}

.border-xs-t-0 {
  border-top-width: 0;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-t-0 {
    border-top-width: 0;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-t-0 {
    border-top-width: 0;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-t-0 {
    border-top-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-t-0 {
    border-top-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-t-0 {
    border-top-width: 0;
    border-style: solid;
  }
}
.border-b-0 {
  border-bottom-width: 0;
  border-style: solid;
}

.border-xs-b-0 {
  border-bottom-width: 0;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-b-0 {
    border-bottom-width: 0;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-b-0 {
    border-bottom-width: 0;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-b-0 {
    border-bottom-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-b-0 {
    border-bottom-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-b-0 {
    border-bottom-width: 0;
    border-style: solid;
  }
}
.border-l-0 {
  border-left-width: 0;
  border-style: solid;
}

.border-xs-l-0 {
  border-left-width: 0;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-l-0 {
    border-left-width: 0;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-l-0 {
    border-left-width: 0;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-l-0 {
    border-left-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-l-0 {
    border-left-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-l-0 {
    border-left-width: 0;
    border-style: solid;
  }
}
.border-r-0 {
  border-right-width: 0;
  border-style: solid;
}

.border-xs-r-0 {
  border-right-width: 0;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-r-0 {
    border-right-width: 0;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-r-0 {
    border-right-width: 0;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-r-0 {
    border-right-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-r-0 {
    border-right-width: 0;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-r-0 {
    border-right-width: 0;
    border-style: solid;
  }
}
.border-xs-0 {
  border-width: 0;
}

@media (min-width: 576px) {
  .border-sm-0 {
    border-width: 0;
  }
}
@media (min-width: 768px) {
  .border-md-0 {
    border-width: 0;
  }
}
@media (min-width: 992px) {
  .border-lg-0 {
    border-width: 0;
  }
}
@media (min-width: 1200px) {
  .border-xl-0 {
    border-width: 0;
  }
}
@media (min-width: 1500px) {
  .border-xxl-0 {
    border-width: 0;
  }
}
.border-sm {
  border-width: 0.1rem;
  border-style: solid;
}

.border-t-sm {
  border-top-width: 0.1rem;
  border-style: solid;
}

.border-xs-t-sm {
  border-top-width: 0.1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-t-sm {
    border-top-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-t-sm {
    border-top-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-t-sm {
    border-top-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-t-sm {
    border-top-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-t-sm {
    border-top-width: 0.1rem;
    border-style: solid;
  }
}
.border-b-sm {
  border-bottom-width: 0.1rem;
  border-style: solid;
}

.border-xs-b-sm {
  border-bottom-width: 0.1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-b-sm {
    border-bottom-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-b-sm {
    border-bottom-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-b-sm {
    border-bottom-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-b-sm {
    border-bottom-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-b-sm {
    border-bottom-width: 0.1rem;
    border-style: solid;
  }
}
.border-l-sm {
  border-left-width: 0.1rem;
  border-style: solid;
}

.border-xs-l-sm {
  border-left-width: 0.1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-l-sm {
    border-left-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-l-sm {
    border-left-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-l-sm {
    border-left-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-l-sm {
    border-left-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-l-sm {
    border-left-width: 0.1rem;
    border-style: solid;
  }
}
.border-r-sm {
  border-right-width: 0.1rem;
  border-style: solid;
}

.border-xs-r-sm {
  border-right-width: 0.1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-r-sm {
    border-right-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-r-sm {
    border-right-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-r-sm {
    border-right-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-r-sm {
    border-right-width: 0.1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-r-sm {
    border-right-width: 0.1rem;
    border-style: solid;
  }
}
.border-xs-sm {
  border-width: 0.1rem;
}

@media (min-width: 576px) {
  .border-sm-sm {
    border-width: 0.1rem;
  }
}
@media (min-width: 768px) {
  .border-md-sm {
    border-width: 0.1rem;
  }
}
@media (min-width: 992px) {
  .border-lg-sm {
    border-width: 0.1rem;
  }
}
@media (min-width: 1200px) {
  .border-xl-sm {
    border-width: 0.1rem;
  }
}
@media (min-width: 1500px) {
  .border-xxl-sm {
    border-width: 0.1rem;
  }
}
.border-md {
  border-width: 0.25rem;
  border-style: solid;
}

.border-t-md {
  border-top-width: 0.25rem;
  border-style: solid;
}

.border-xs-t-md {
  border-top-width: 0.25rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-t-md {
    border-top-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-t-md {
    border-top-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-t-md {
    border-top-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-t-md {
    border-top-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-t-md {
    border-top-width: 0.25rem;
    border-style: solid;
  }
}
.border-b-md {
  border-bottom-width: 0.25rem;
  border-style: solid;
}

.border-xs-b-md {
  border-bottom-width: 0.25rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-b-md {
    border-bottom-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-b-md {
    border-bottom-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-b-md {
    border-bottom-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-b-md {
    border-bottom-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-b-md {
    border-bottom-width: 0.25rem;
    border-style: solid;
  }
}
.border-l-md {
  border-left-width: 0.25rem;
  border-style: solid;
}

.border-xs-l-md {
  border-left-width: 0.25rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-l-md {
    border-left-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-l-md {
    border-left-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-l-md {
    border-left-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-l-md {
    border-left-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-l-md {
    border-left-width: 0.25rem;
    border-style: solid;
  }
}
.border-r-md {
  border-right-width: 0.25rem;
  border-style: solid;
}

.border-xs-r-md {
  border-right-width: 0.25rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-r-md {
    border-right-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-r-md {
    border-right-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-r-md {
    border-right-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-r-md {
    border-right-width: 0.25rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-r-md {
    border-right-width: 0.25rem;
    border-style: solid;
  }
}
.border-xs-md {
  border-width: 0.25rem;
}

@media (min-width: 576px) {
  .border-sm-md {
    border-width: 0.25rem;
  }
}
@media (min-width: 768px) {
  .border-md-md {
    border-width: 0.25rem;
  }
}
@media (min-width: 992px) {
  .border-lg-md {
    border-width: 0.25rem;
  }
}
@media (min-width: 1200px) {
  .border-xl-md {
    border-width: 0.25rem;
  }
}
@media (min-width: 1500px) {
  .border-xxl-md {
    border-width: 0.25rem;
  }
}
.border-lg {
  border-width: 0.5rem;
  border-style: solid;
}

.border-t-lg {
  border-top-width: 0.5rem;
  border-style: solid;
}

.border-xs-t-lg {
  border-top-width: 0.5rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-t-lg {
    border-top-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-t-lg {
    border-top-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-t-lg {
    border-top-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-t-lg {
    border-top-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-t-lg {
    border-top-width: 0.5rem;
    border-style: solid;
  }
}
.border-b-lg {
  border-bottom-width: 0.5rem;
  border-style: solid;
}

.border-xs-b-lg {
  border-bottom-width: 0.5rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-b-lg {
    border-bottom-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-b-lg {
    border-bottom-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-b-lg {
    border-bottom-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-b-lg {
    border-bottom-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-b-lg {
    border-bottom-width: 0.5rem;
    border-style: solid;
  }
}
.border-l-lg {
  border-left-width: 0.5rem;
  border-style: solid;
}

.border-xs-l-lg {
  border-left-width: 0.5rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-l-lg {
    border-left-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-l-lg {
    border-left-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-l-lg {
    border-left-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-l-lg {
    border-left-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-l-lg {
    border-left-width: 0.5rem;
    border-style: solid;
  }
}
.border-r-lg {
  border-right-width: 0.5rem;
  border-style: solid;
}

.border-xs-r-lg {
  border-right-width: 0.5rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-r-lg {
    border-right-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-r-lg {
    border-right-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-r-lg {
    border-right-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-r-lg {
    border-right-width: 0.5rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-r-lg {
    border-right-width: 0.5rem;
    border-style: solid;
  }
}
.border-xs-lg {
  border-width: 0.5rem;
}

@media (min-width: 576px) {
  .border-sm-lg {
    border-width: 0.5rem;
  }
}
@media (min-width: 768px) {
  .border-md-lg {
    border-width: 0.5rem;
  }
}
@media (min-width: 992px) {
  .border-lg-lg {
    border-width: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .border-xl-lg {
    border-width: 0.5rem;
  }
}
@media (min-width: 1500px) {
  .border-xxl-lg {
    border-width: 0.5rem;
  }
}
.border-xl {
  border-width: 1rem;
  border-style: solid;
}

.border-t-xl {
  border-top-width: 1rem;
  border-style: solid;
}

.border-xs-t-xl {
  border-top-width: 1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-t-xl {
    border-top-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-t-xl {
    border-top-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-t-xl {
    border-top-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-t-xl {
    border-top-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-t-xl {
    border-top-width: 1rem;
    border-style: solid;
  }
}
.border-b-xl {
  border-bottom-width: 1rem;
  border-style: solid;
}

.border-xs-b-xl {
  border-bottom-width: 1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-b-xl {
    border-bottom-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-b-xl {
    border-bottom-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-b-xl {
    border-bottom-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-b-xl {
    border-bottom-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-b-xl {
    border-bottom-width: 1rem;
    border-style: solid;
  }
}
.border-l-xl {
  border-left-width: 1rem;
  border-style: solid;
}

.border-xs-l-xl {
  border-left-width: 1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-l-xl {
    border-left-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-l-xl {
    border-left-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-l-xl {
    border-left-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-l-xl {
    border-left-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-l-xl {
    border-left-width: 1rem;
    border-style: solid;
  }
}
.border-r-xl {
  border-right-width: 1rem;
  border-style: solid;
}

.border-xs-r-xl {
  border-right-width: 1rem;
  border-style: solid;
}

@media (min-width: 576px) {
  .border-sm-r-xl {
    border-right-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 768px) {
  .border-md-r-xl {
    border-right-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 992px) {
  .border-lg-r-xl {
    border-right-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1200px) {
  .border-xl-r-xl {
    border-right-width: 1rem;
    border-style: solid;
  }
}
@media (min-width: 1500px) {
  .border-xxl-r-xl {
    border-right-width: 1rem;
    border-style: solid;
  }
}
.border-xs-xl {
  border-width: 1rem;
}

@media (min-width: 576px) {
  .border-sm-xl {
    border-width: 1rem;
  }
}
@media (min-width: 768px) {
  .border-md-xl {
    border-width: 1rem;
  }
}
@media (min-width: 992px) {
  .border-lg-xl {
    border-width: 1rem;
  }
}
@media (min-width: 1200px) {
  .border-xl-xl {
    border-width: 1rem;
  }
}
@media (min-width: 1500px) {
  .border-xxl-xl {
    border-width: 1rem;
  }
}
.smx-blue-box-right,
.smx-blue-box-left {
  position: relative;
}
.smx-blue-box-right > *,
.smx-blue-box-left > * {
  position: relative;
  z-index: 2;
}

.smx-blue-box-right::before,
.smx-blue-box-left::before {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 20%;
  height: 100%;
  background-color: #007cbe;
  content: "";
}

.smx-blue-box-left::before {
  left: 0;
}

.smx-blue-box-right::before {
  right: 0;
}

.rank-math-breadcrumb a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.smx-layout_auto-grid {
  display: grid;
  grid-auto-flow: row;
  gap: 1rem;
  place-items: stretch;
}
@media screen and (min-width: 576px) {
  .smx-layout_auto-grid {
    grid-template-columns: repeat(2, calc((100% - 1rem) / 2));
  }
}
@media screen and (min-width: 1200px) {
  .smx-layout_auto-grid {
    grid-template-columns: repeat(3, calc((100% - 2rem) / 3));
  }
}
@media screen and (min-width: 768px) {
  .smx-layout_auto-grid.smx-col-md-6 {
    grid-template-columns: repeat(2, calc((100% - 1rem) / 2));
  }
}
@media screen and (min-width: 1200px) {
  .smx-layout_auto-grid.smx-col-md-6 {
    grid-template-columns: repeat(2, calc((100% - 1rem) / 2));
  }
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.single-gallery-wrapper,
.block-post-carousel {
  margin-bottom: 5rem;
}
.single-gallery-wrapper .smx-navigation,
.block-post-carousel .smx-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 0 0.5rem;
  -webkit-transform: translateY(-10%);
  transform: translateY(-10%);
}
.single-gallery-wrapper .smx-navigation button,
.block-post-carousel .smx-navigation button {
  margin: 0;
  overflow: hidden;
}
.single-gallery-wrapper .smx-navigation button svg,
.block-post-carousel .smx-navigation button svg {
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}
.single-gallery-wrapper .smx-navigation button svg *,
.block-post-carousel .smx-navigation button svg * {
  fill: #fff;
}
.single-gallery-wrapper .smx-navigation button.prev svg,
.block-post-carousel .smx-navigation button.prev svg {
  -webkit-transform: rotate(180deg) translateX(1rem);
  transform: rotate(180deg) translateX(1rem);
}
.single-gallery-wrapper .smx-pagination,
.block-post-carousel .smx-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  -webkit-transform: translateY(3rem);
  transform: translateY(3rem);
}
.single-gallery-wrapper .smx-pagination li,
.block-post-carousel .smx-pagination li {
  padding: 0;
}
.single-gallery-wrapper .smx-pagination li::before,
.block-post-carousel .smx-pagination li::before {
  content: none;
}
.single-gallery-wrapper .smx-pagination li button,
.block-post-carousel .smx-pagination li button {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 0.2rem;
}
.single-gallery-wrapper .smx-pagination li button::before,
.block-post-carousel .smx-pagination li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  background-color: #c1c1c1;
  border-radius: 50%;
  content: "";
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.single-gallery-wrapper .smx-pagination li button.is-active::before,
.block-post-carousel .smx-pagination li button.is-active::before {
  background-color: #6c6c6c;
}
.single-gallery-wrapper.services-carousel .smx-navigation,
.block-post-carousel.services-carousel .smx-navigation {
  top: auto !important;
  bottom: 6rem;
}
@media (min-width: 768px) {
  .single-gallery-wrapper.services-carousel .smx-navigation,
  .block-post-carousel.services-carousel .smx-navigation {
    bottom: 8rem;
  }
}
.single-gallery-wrapper.services-carousel .smx-navigation button svg *,
.block-post-carousel.services-carousel .smx-navigation button svg * {
  fill: #b9b9b9;
}
.single-gallery-wrapper.services-carousel .content,
.block-post-carousel.services-carousel .content {
  padding-bottom: 2rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(5rem);
  transform: translateY(5rem);
}
.single-gallery-wrapper.services-carousel .splide__slide.is-active .content,
.block-post-carousel.services-carousel .splide__slide.is-active .content {
  -webkit-animation: fade-in-up 0.9s 0.25s ease-in-out forwards;
  animation: fade-in-up 0.9s 0.25s ease-in-out forwards;
  pointer-events: auto;
}
@media (min-width: 992px) {
  .single-gallery-wrapper.services-carousel .smx-navigation,
  .block-post-carousel.services-carousel .smx-navigation {
    top: 54rem;
  }
}

@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(7rem);
    transform: translateY(7rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(7rem);
    transform: translateY(7rem);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.single-gallery-wrapper .splide__list {
  height: auto;
}
.single-gallery-wrapper .splide__list > .splide__slide img {
  display: block;
  width: 100%;
  height: auto !important;
  -o-object-position: center;
  object-position: center;
}

#usati-thumb-slider li {
  overflow-y: clip;
}

figure.wp-block-splide-carousel {
  overflow: revert;
}

.wp-block-splide-carousel .splide__arrow,
.splide__arrow {
  background-color: transparent;
}

.wp-block-splide-carousel__container {
  max-width: calc(100% - 2rem);
  margin: 0 auto;
}

.wp-block-splide-carousel .splide__arrows--ltr .splide__arrow--prev {
  left: -3.2rem;
}

.wp-block-splide-carousel .splide__arrows--ltr .splide__arrow--next {
  right: -3.2rem;
}

.splide__container {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.splide__list {
  display: flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  position: absolute;
  right: 0;
  bottom: 0.5em;
  left: 0;
  z-index: 1;
  display: flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 1em;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  pointer-events: auto;
  list-style-type: none;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-flex-negative: 0;
  list-style-type: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-radius: 50%;
  -webkit-animation: splide-loading 1s linear infinite;
  animation: splide-loading 1s linear infinite;
  border-left-color: transparent;
  contain: strict;
}

.splide__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  margin: 0 !important;
  opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  opacity: 0.7;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
  fill: #000;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination__page {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  opacity: 0.7;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  opacity: 0.9;
  cursor: pointer;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  right: auto;
  left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  top: 0;
  right: 0.5em;
  bottom: 0;
  left: auto;
  display: flexbox;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1em 0;
}

.transition-slow {
  -webkit-transition: ease-in-out all 1s;
  transition: ease-in-out all 1s;
}

.transition-normal {
  -webkit-transition: ease-in-out all 0.5s;
  transition: ease-in-out all 0.5s;
}

.transition-fast {
  -webkit-transition: ease-in-out all 0.25s;
  transition: ease-in-out all 0.25s;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-2-15 11:14:33
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }
}
.slide-top {
  -webkit-animation: slide-top 1s ease-in infinite backwards;
  animation: slide-top 1s ease-in infinite backwards;
}

/* ----------------------------------------------
 * Generated by Animista on 2022-3-2 12:12:38
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-in-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slide-in-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2022-3-2 14:33:26
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.in-view.slide-in-top {
  -webkit-animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-top-start {
  -webkit-animation: slide-in-top 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-top 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-top {
  opacity: 0;
}

.is-style-button-primary,
.button-primary {
  padding: 1rem 1.35rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #007cbe;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 0.1rem;
}
.is-style-button-primary::after,
.button-primary::after {
  --size: 1.35rem;
  display: inline-block;
  width: var(--size);
  height: var(--size);
  margin-left: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.83334 9.99992H18.1667M18.1667 9.99992L10 1.83325M18.1667 9.99992L10 18.1666' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
  -webkit-transform-origin: left;
  transform-origin: left;
}
.is-style-button-primary:hover, .is-style-button-primary:focus,
.button-primary:hover,
.button-primary:focus {
  color: #fff;
  background-color: rgb(0, 90.7157894737, 139);
}
.is-style-button-primary:hover::after, .is-style-button-primary:focus::after,
.button-primary:hover::after,
.button-primary:focus::after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.is-style-button-secondary,
.button-secondary,
#main-nav .menu-primary-container .first-level > li > a.button-secondary {
  position: relative;
  font-weight: 800;
  color: inherit;
  text-decoration: none;
  -webkit-transition: 75ms ease-out;
  transition: 75ms ease-out;
}
.is-style-button-secondary::before,
.button-secondary::before,
#main-nav .menu-primary-container .first-level > li > a.button-secondary::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.1rem;
  background-color: #007cbe;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  -webkit-transform-origin: left;
  transform-origin: left;
}
.is-style-button-secondary::after,
.button-secondary::after,
#main-nav .menu-primary-container .first-level > li > a.button-secondary::after {
  --size: 1.35rem;
  display: inline-block;
  width: var(--size);
  height: var(--size);
  margin-left: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 18L18 2M18 2H2M18 2V18' stroke='%23007CBE' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  -webkit-transform-origin: center;
  transform-origin: center;
}
.is-style-button-secondary:hover, .is-style-button-secondary:focus,
.button-secondary:hover,
.button-secondary:focus,
#main-nav .menu-primary-container .first-level > li > a.button-secondary:hover,
#main-nav .menu-primary-container .first-level > li > a.button-secondary:focus {
  border-bottom-width: 0.75rem;
}
.is-style-button-secondary:hover::before, .is-style-button-secondary:focus::before,
.button-secondary:hover::before,
.button-secondary:focus::before,
#main-nav .menu-primary-container .first-level > li > a.button-secondary:hover::before,
#main-nav .menu-primary-container .first-level > li > a.button-secondary:focus::before {
  width: 100%;
}
.is-style-button-secondary:hover::after, .is-style-button-secondary:focus::after,
.button-secondary:hover::after,
.button-secondary:focus::after,
#main-nav .menu-primary-container .first-level > li > a.button-secondary:hover::after,
#main-nav .menu-primary-container .first-level > li > a.button-secondary:focus::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is-style-button-tertiary,
.button-tertiary,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-tertiary {
  position: relative;
  font-weight: 300;
  color: inherit;
  text-align: center;
  text-decoration: none;
  opacity: 0.85;
}
.is-style-button-tertiary::after,
.button-tertiary::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-tertiary::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.1rem;
  background-color: #007cbe;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  content: "";
  -webkit-transform-origin: left;
  transform-origin: left;
}
.is-style-button-tertiary:hover, .is-style-button-tertiary:focus,
.button-tertiary:hover,
.button-tertiary:focus,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-tertiary:hover,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-tertiary:focus {
  font-weight: 500;
  opacity: 1;
}
.is-style-button-tertiary:hover::after, .is-style-button-tertiary:focus::after,
.button-tertiary:hover::after,
.button-tertiary:focus::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-tertiary:hover::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-tertiary:focus::after {
  width: 100%;
}
.is-style-button-tertiary.button-color-primary::after,
.button-tertiary.button-color-primary::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-primary.button-tertiary::after {
  background-color: #007cbe;
}
.is-style-button-tertiary.button-color-primary-darken::after,
.button-tertiary.button-color-primary-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-primary-darken.button-tertiary::after {
  background-color: rgb(0, 90.7157894737, 139);
}
.is-style-button-tertiary.button-color-secondary::after,
.button-tertiary.button-color-secondary::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-secondary.button-tertiary::after {
  background-color: #4e4e4e;
}
.is-style-button-tertiary.button-color-secondary-darken::after,
.button-tertiary.button-color-secondary-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-secondary-darken.button-tertiary::after {
  background-color: rgb(52.5, 52.5, 52.5);
}
.is-style-button-tertiary.button-color-white::after,
.button-tertiary.button-color-white::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-white.button-tertiary::after {
  background-color: #fff;
}
.is-style-button-tertiary.button-color-white-darken::after,
.button-tertiary.button-color-white-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-white-darken.button-tertiary::after {
  background-color: rgb(229.5, 229.5, 229.5);
}
.is-style-button-tertiary.button-color-black::after,
.button-tertiary.button-color-black::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-black.button-tertiary::after {
  background-color: #000;
}
.is-style-button-tertiary.button-color-black-darken::after,
.button-tertiary.button-color-black-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-black-darken.button-tertiary::after {
  background-color: hsl(0, 0%, -10%);
}
.is-style-button-tertiary.button-color-light-grey::after,
.button-tertiary.button-color-light-grey::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-light-grey.button-tertiary::after {
  background-color: #b5b5b5;
}
.is-style-button-tertiary.button-color-light-grey-darken::after,
.button-tertiary.button-color-light-grey-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-light-grey-darken.button-tertiary::after {
  background-color: rgb(155.5, 155.5, 155.5);
}
.is-style-button-tertiary.button-color-dark-grey::after,
.button-tertiary.button-color-dark-grey::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-dark-grey.button-tertiary::after {
  background-color: #4e4e4e;
}
.is-style-button-tertiary.button-color-dark-grey-darken::after,
.button-tertiary.button-color-dark-grey-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-dark-grey-darken.button-tertiary::after {
  background-color: rgb(52.5, 52.5, 52.5);
}
.is-style-button-tertiary.button-color-black-grey::after,
.button-tertiary.button-color-black-grey::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-black-grey.button-tertiary::after {
  background-color: #242424;
}
.is-style-button-tertiary.button-color-black-grey-darken::after,
.button-tertiary.button-color-black-grey-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-black-grey-darken.button-tertiary::after {
  background-color: rgb(10.5, 10.5, 10.5);
}
.is-style-button-tertiary.button-color-back-grey::after,
.button-tertiary.button-color-back-grey::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-back-grey.button-tertiary::after {
  background-color: #2f2f2f;
}
.is-style-button-tertiary.button-color-back-grey-darken::after,
.button-tertiary.button-color-back-grey-darken::after,
#main-nav .menu-primary-container .first-level > li .sub-menu a.button-color-back-grey-darken.button-tertiary::after {
  background-color: rgb(21.5, 21.5, 21.5);
}

button,
.button,
.smx-button {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
button.button-color-primary,
.button.button-color-primary,
.smx-button.button-color-primary {
  color: #007cbe;
}
button.button-color-primary-darken,
.button.button-color-primary-darken,
.smx-button.button-color-primary-darken {
  color: rgb(0, 90.7157894737, 139);
}
button.button-color-secondary,
.button.button-color-secondary,
.smx-button.button-color-secondary {
  color: #4e4e4e;
}
button.button-color-secondary-darken,
.button.button-color-secondary-darken,
.smx-button.button-color-secondary-darken {
  color: rgb(52.5, 52.5, 52.5);
}
button.button-color-white,
.button.button-color-white,
.smx-button.button-color-white {
  color: #fff;
}
button.button-color-white-darken,
.button.button-color-white-darken,
.smx-button.button-color-white-darken {
  color: rgb(229.5, 229.5, 229.5);
}
button.button-color-black,
.button.button-color-black,
.smx-button.button-color-black {
  color: #000;
}
button.button-color-black-darken,
.button.button-color-black-darken,
.smx-button.button-color-black-darken {
  color: hsl(0, 0%, -10%);
}
button.button-color-light-grey,
.button.button-color-light-grey,
.smx-button.button-color-light-grey {
  color: #b5b5b5;
}
button.button-color-light-grey-darken,
.button.button-color-light-grey-darken,
.smx-button.button-color-light-grey-darken {
  color: rgb(155.5, 155.5, 155.5);
}
button.button-color-dark-grey,
.button.button-color-dark-grey,
.smx-button.button-color-dark-grey {
  color: #4e4e4e;
}
button.button-color-dark-grey-darken,
.button.button-color-dark-grey-darken,
.smx-button.button-color-dark-grey-darken {
  color: rgb(52.5, 52.5, 52.5);
}
button.button-color-black-grey,
.button.button-color-black-grey,
.smx-button.button-color-black-grey {
  color: #242424;
}
button.button-color-black-grey-darken,
.button.button-color-black-grey-darken,
.smx-button.button-color-black-grey-darken {
  color: rgb(10.5, 10.5, 10.5);
}
button.button-color-back-grey,
.button.button-color-back-grey,
.smx-button.button-color-back-grey {
  color: #2f2f2f;
}
button.button-color-back-grey-darken,
.button.button-color-back-grey-darken,
.smx-button.button-color-back-grey-darken {
  color: rgb(21.5, 21.5, 21.5);
}

button,
.button:not(.no-link),
a,
input[type=submit] {
  /*
  &:hover:not(.magic-hover) {
  	cursor: pointer;
  }
  */
}
button:hover,
.button:not(.no-link):hover,
a:hover,
input[type=submit]:hover {
  cursor: pointer;
}

.submit-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
}
.submit-wrapper .button {
  margin-top: 0;
  text-align: left;
}
.submit-wrapper svg {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  z-index: 10;
  width: 1.1rem;
  height: 1.1rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.is-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.is-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wp-block-buttons-is-layout-flex,
.is-layout-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

input,
textarea {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1.1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  background-color: transparent;
  border: 0.15rem solid white;
  border-radius: 0.05rem !important;
  -webkit-transition: background-color 0.2s ease-in-out, border-style 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, border-style 0.2s ease-in-out;
}
input:focus-visible,
textarea:focus-visible {
  background-color: rgba(255, 255, 255, 0.05);
  border-style: double;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input[type=radio], input[type=checkbox],
textarea[type=radio],
textarea[type=checkbox] {
  position: relative;
  top: 0.4rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0;
  margin-right: 0.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid;
  border-radius: 0.05rem;
}
input[type=radio]:checked, input[type=checkbox]:checked,
textarea[type=radio]:checked,
textarea[type=checkbox]:checked {
  background-color: #000;
}
input[type=radio]:hover, input[type=checkbox]:hover,
textarea[type=radio]:hover,
textarea[type=checkbox]:hover {
  cursor: pointer;
}
input[type=radio],
textarea[type=radio] {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

.smx-submit,
button[role=submit],
input[type=submit] {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  padding: 0 4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 5rem;
  color: #fff !important;
  text-align: center;
  background-color: #242424 !important;
  border: none;
  border-radius: 0.05rem;
  cursor: pointer;
}
.smx-submit:hover, .smx-submit:focus-visible,
button[role=submit]:hover,
button[role=submit]:focus-visible,
input[type=submit]:hover,
input[type=submit]:focus-visible {
  background-color: #000 !important;
}
.smx-submit:hover > span.icon svg, .smx-submit:focus-visible > span.icon svg,
button[role=submit]:hover > span.icon svg,
button[role=submit]:focus-visible > span.icon svg,
input[type=submit]:hover > span.icon svg,
input[type=submit]:focus-visible > span.icon svg {
  --size: 1.8rem;
  width: var(--size);
  height: var(--size);
  margin-left: 0.5rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.smx-submit:disabled:hover,
button[role=submit]:disabled:hover,
input[type=submit]:disabled:hover {
  cursor: not-allowed;
}

textarea {
  height: 20rem;
}

.submit-wrapper {
  width: 100%;
}

.negative input:not([type=submit]),
.negative textarea {
  background-color: #b5b5b5;
}
.negative input:not([type=submit])[type=checkbox], .negative input:not([type=submit])[type=radio],
.negative textarea[type=checkbox],
.negative textarea[type=radio] {
  border: none;
}

.wpcf7 {
  --invalid: rgb(225 60 54);
  --valid: rgb(91 181 91);
}
.wpcf7 .screen-reader-response {
  display: none !important;
}
.wpcf7 .response-wrapper {
  display: none;
}
.wpcf7 .wpcf7-response-output {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1rem;
}
.wpcf7 .failed .response-wrapper,
.wpcf7 .invalid .response-wrapper,
.wpcf7 .aborted .response-wrapper {
  display: block !important;
  width: 100%;
}
.wpcf7 .failed .response-wrapper .wpcf7-response-output,
.wpcf7 .invalid .response-wrapper .wpcf7-response-output,
.wpcf7 .aborted .response-wrapper .wpcf7-response-output {
  color: var(--invalid);
  border: 1px solid var(--invalid);
}
.wpcf7 .sent .response-wrapper {
  display: block !important;
  width: 100%;
}
.wpcf7 .sent .response-wrapper .wpcf7-response-output {
  color: var(--valid);
  border: 1px solid var(--valid);
}
.wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: block;
  width: 10rem;
  margin: 0;
  font-size: 1.2rem;
  line-height: 0.9em;
  color: var(--invalid);
  text-align: right;
}
.wpcf7 [aria-invalid=true] {
  border-color: var(--invalid) !important;
}

.bgk-primay .wpcf7,
.has-primary-background-color .wpcf7 {
  --valid: rgb(30 239 112);
  --invalid: rgb(150 12 12);
}

label {
  display: block;
  margin-top: 0.7rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.smx-legal-text + span {
  font-size: 90%;
  line-height: 1.125;
  letter-spacing: -0.03rem;
  opacity: 0.8;
}

.smx-legal-text + span a {
  color: inherit;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

.wpcf7-form .smx-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row wrap;
  flex-direction: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.wpcf7-form .smx-form-group > label {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.elem {
  opacity: 1;
}

.smx-icon-number-wrapper .wp-block-image {
  max-width: 10rem;
  margin: 0 auto;
}

.scrolldown-wrapper {
  width: 4px;
  height: 7rem;
  overflow: hidden;
}

.smx-subpages .smx-subpages-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem 4rem 1rem;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  --height: 100%; /* modificata inline su smx-subpages.php */
}
.smx-subpages .smx-subpages-card::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: var(--height);
  background-color: #4e4e4e;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  content: "";
}
.smx-subpages .smx-subpages-card a {
  display: block;
  text-decoration: none;
}
.smx-subpages .smx-subpages-card a > figure {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.smx-subpages .smx-subpages-card a:hover > h3 {
  text-decoration: underline;
}
.smx-subpages .smx-subpages-card a:hover > figure {
  -webkit-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
}

.used-archive-hero .zoom {
  -webkit-animation: scale-up-center 10s cubic-bezier(0.39, 0.575, 0.565, 1) infinite alternate both;
  animation: scale-up-center 10s cubic-bezier(0.39, 0.575, 0.565, 1) infinite alternate both;
}

.used-archive-entry .text {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
@media (max-width: 767.98px) {
  .used-archive-entry .text {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

.used-archive-filters .filters {
  border-top: 4px solid #007cbe;
}
.used-archive-filters .filters .term {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.used-archive-posts .distance {
  margin-top: 15.5rem;
}
.used-archive-posts .distance .single {
  padding-top: 13rem;
}
.used-archive-posts .distance .single::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #4e4e4e;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  content: "";
}
.used-archive-posts .distance .single .link,
.used-archive-posts .distance .single .text,
.used-archive-posts .distance .single .link h3 {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.used-archive-posts .distance .single .term {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.used-archive-posts .distance .single:hover {
  cursor: pointer;
}
.used-archive-posts .distance .single:hover::before {
  background-color: #007cbe;
  -webkit-transform: translateY(-3rem);
  transform: translateY(-3rem);
}
.used-archive-posts .distance .single:hover .link,
.used-archive-posts .distance .single:hover .text {
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
}
.used-archive-posts .distance .single:hover .term {
  color: #007cbe;
  background: white;
}
.used-archive-posts .distance .single .image-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 8rem);
  height: 22rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.used-archive-posts .distance .single .image-wrapper img {
  width: 100%;
  height: 100%;
}
.used-archive-posts .distance .single .image-wrapper .sold-status {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.7rem;
  font-weight: 700;
  color: white;
  background: #c30505;
}
.used-archive-posts .distance .single.sold {
  opacity: 0.4;
}

.container.container-used {
  max-width: !important;
}
@media (min-width: 576px) {
  .container.container-used {
    max-width: 540px !important;
  }
}
@media (min-width: 768px) {
  .container.container-used {
    max-width: 720px !important;
  }
}
@media (min-width: 992px) {
  .container.container-used {
    max-width: 960px !important;
  }
}
@media (min-width: 1200px) {
  .container.container-used {
    max-width: 1140px !important;
  }
}
@media (min-width: 1500px) {
  .container.container-used {
    max-width: 1320px !important;
  }
}

.single-content-wrapper iframe {
  width: 100%;
}

@media (max-width: 767.98px) {
  .single-usati .single-gallery-wrapper .slide.big {
    height: 40rem;
  }
}
@media (min-width: 992px) {
  .single-usati .single-gallery-wrapper .slide.big {
    height: 70rem;
  }
}
.head {
  margin-bottom: 1rem;
}

body {
  padding-left: 11rem;
}
@media (max-width: 767.98px) {
  body {
    padding-top: 9rem;
    padding-left: 0;
  }
}

#main-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}
#main-header .istitutional {
  width: 11rem;
}
#main-header .istitutional .site-branding .logo {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  #main-header .istitutional {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 9rem);
    height: 9rem !important;
    padding: 1rem 1.5rem;
    border-right: 1px solid white;
  }
  #main-header .istitutional .site-branding a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #main-header .istitutional .site-branding a .logo {
    display: block;
    height: 7rem;
  }
  #main-header .istitutional .site-branding a .logo figure {
    height: 100%;
  }
  #main-header .istitutional .site-branding a .logo figure img {
    height: 100%;
  }
  #main-header .istitutional .contacts {
    display: none;
  }
  #main-header .istitutional .lang {
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
    transform: none;
  }
  #main-header .istitutional .lang a {
    border: none;
  }
}
#main-header .contacts {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  text-align: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#main-header .contacts a {
  display: block;
  margin-top: 2rem;
  text-align: center;
}
#main-header .contacts a img {
  display: inline-block;
  width: 3rem;
  height: auto;
  max-height: 3.5rem;
}
#main-header .lang {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  display: block;
  border-top: 1px solid #b5b5b5;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#main-header .lang #lang-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  list-style-type: none;
}
#main-header .lang #lang-nav ul li {
  text-transform: uppercase;
}
#main-header .lang #lang-nav ul li > span {
  font-weight: 400;
  color: #242424;
}
#main-header .lang #lang-nav ul li a {
  font-weight: 800;
  color: #b5b5b5;
}
#lang-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
#lang-overlay nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#lang-overlay nav ul li a {
  display: block;
  padding: 0.5rem 0;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
#lang-overlay:target {
  opacity: 1;
  pointer-events: auto;
}

#site-footer a {
  text-decoration: none;
}

#site-footer a:hover,
#site-footer a:focus {
  text-decoration: underline;
}

#footer-nav {
  padding-right: 4rem;
}
#footer-nav ul li {
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
#footer-nav ul li a {
  color: white;
}
#footer-nav ul .not-clickable > a:hover {
  cursor: default;
  pointer-events: none;
}
#footer-nav ul .menu-item-has-children ul {
  padding-left: 1rem;
}
#footer-nav ul .menu-item-has-children ul li {
  border-top: none;
}

.primary-menu-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.primary-menu-wrapper #primary-nav-toggler {
  position: absolute;
  top: 0;
  right: 10rem;
  z-index: 1003;
  width: 10rem;
  height: 10rem;
  margin: 0;
  padding: 2rem;
  background: #4e4e4e;
  border: none;
  cursor: pointer;
}
.primary-menu-wrapper #primary-nav-toggler .line {
  display: block;
  float: right;
  height: 4px;
  background: #fff;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}
.primary-menu-wrapper #primary-nav-toggler .line-one {
  width: 100%;
  margin-bottom: 1rem;
}
.primary-menu-wrapper #primary-nav-toggler .line-two {
  width: 70%;
}
.primary-menu-wrapper #primary-nav-toggler[aria-expanded=true] .line-one {
  -webkit-transform: rotate(45deg) translate(-0.3rem, -1.6rem);
  transform: rotate(45deg) translate(-0.3rem, -1.6rem);
  -webkit-transform-origin: left;
  transform-origin: left;
}
.primary-menu-wrapper #primary-nav-toggler[aria-expanded=true] .line-two {
  width: 100%;
  -webkit-transform: rotate(-45deg) translate(-0.3rem, 1.6rem);
  transform: rotate(-45deg) translate(-0.3rem, 1.6rem);
  -webkit-transform-origin: left;
  transform-origin: left;
}
@media (max-width: 767.98px) {
  .primary-menu-wrapper #primary-nav-toggler {
    right: 0;
    width: 9rem;
    height: 9rem;
    padding: 2rem;
  }
  .primary-menu-wrapper #primary-nav-toggler[aria-expanded=true] .line-one {
    -webkit-transform: rotate(45deg) translate(2px, -13px);
    transform: rotate(45deg) translate(2px, -13px);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  .primary-menu-wrapper #primary-nav-toggler[aria-expanded=true] .line-two {
    width: 100%;
    -webkit-transform: rotate(-45deg) translate(0, 14px);
    transform: rotate(-45deg) translate(0, 14px);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}

#main-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  width: calc(100% - 11rem);
  height: 100vh;
  padding: 13rem;
  overflow-y: auto;
  background: #2f2f2f;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  opacity: 0;
  pointer-events: none;
}
#main-nav .menu-primary-container .first-level {
  width: 100%;
}
#main-nav .menu-primary-container .first-level > li {
  width: 33.3%;
  min-height: 20rem;
  margin-bottom: 4rem;
  padding-left: 1rem;
  border-left: 4px solid #007cbe;
}
#main-nav .menu-primary-container .first-level > li > a {
  color: white;
  text-decoration: none;
}
#main-nav .menu-primary-container .first-level > li .sub-menu {
  margin-top: 2rem;
}
#main-nav .menu-primary-container .first-level > li .sub-menu li:not(:last-child) {
  margin-bottom: 1rem;
}
#main-nav .menu-primary-container .first-level > li .sub-menu a {
  color: white;
}
@media (max-width: 991.98px) {
  #main-nav {
    padding: 10rem 6rem;
  }
  #main-nav .menu-primary-container .first-level > li {
    width: 33.3333333333%;
  }
}
@media (max-width: 767.98px) {
  #main-nav {
    width: 100%;
    padding: 8rem;
  }
  #main-nav .menu-primary-container .first-level > li {
    width: 50%;
    min-height: 3rem;
  }
}
@media (max-width: 575.98px) {
  #main-nav .menu-primary-container .first-level > li {
    width: 100%;
  }
}
#main-nav.open {
  opacity: 1;
  pointer-events: auto;
}

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

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

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

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: 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-inline-grid {
  display: inline-grid !important;
}

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

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

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

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

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

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

.shadow {
  -webkit-box-shadow: var(--bs-box-shadow) !important;
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  -webkit-box-shadow: var(--bs-box-shadow-sm) !important;
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  -webkit-box-shadow: var(--bs-box-shadow-lg) !important;
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.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 {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !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;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.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 {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

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

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

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

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

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

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

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

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

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

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

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

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

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

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

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

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

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

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

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

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

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

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

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

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

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

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

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

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

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

.m-6 {
  margin: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.m-13 {
  margin: 13rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.m-25 {
  margin: 25rem !important;
}

.m-30 {
  margin: 30rem !important;
}

.m-35 {
  margin: 35rem !important;
}

.m-40 {
  margin: 40rem !important;
}

.m-45 {
  margin: 45rem !important;
}

.m-50 {
  margin: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n2_5 {
  margin: -2.5rem !important;
}

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

.m-n3_5 {
  margin: -3.5rem !important;
}

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

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

.m-n6 {
  margin: -6rem !important;
}

.m-n7 {
  margin: -7rem !important;
}

.m-n8 {
  margin: -8rem !important;
}

.m-n9 {
  margin: -9rem !important;
}

.m-n10 {
  margin: -10rem !important;
}

.m-n13 {
  margin: -13rem !important;
}

.m-n15 {
  margin: -15rem !important;
}

.m-n20 {
  margin: -20rem !important;
}

.m-n25 {
  margin: -25rem !important;
}

.m-n30 {
  margin: -30rem !important;
}

.m-n35 {
  margin: -35rem !important;
}

.m-n40 {
  margin: -40rem !important;
}

.m-n45 {
  margin: -45rem !important;
}

.m-n50 {
  margin: -50rem !important;
}

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

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

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

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

.mx-n2_5 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

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

.mx-n3_5 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

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

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

.mx-n6 {
  margin-right: -6rem !important;
  margin-left: -6rem !important;
}

.mx-n7 {
  margin-right: -7rem !important;
  margin-left: -7rem !important;
}

.mx-n8 {
  margin-right: -8rem !important;
  margin-left: -8rem !important;
}

.mx-n9 {
  margin-right: -9rem !important;
  margin-left: -9rem !important;
}

.mx-n10 {
  margin-right: -10rem !important;
  margin-left: -10rem !important;
}

.mx-n13 {
  margin-right: -13rem !important;
  margin-left: -13rem !important;
}

.mx-n15 {
  margin-right: -15rem !important;
  margin-left: -15rem !important;
}

.mx-n20 {
  margin-right: -20rem !important;
  margin-left: -20rem !important;
}

.mx-n25 {
  margin-right: -25rem !important;
  margin-left: -25rem !important;
}

.mx-n30 {
  margin-right: -30rem !important;
  margin-left: -30rem !important;
}

.mx-n35 {
  margin-right: -35rem !important;
  margin-left: -35rem !important;
}

.mx-n40 {
  margin-right: -40rem !important;
  margin-left: -40rem !important;
}

.mx-n45 {
  margin-right: -45rem !important;
  margin-left: -45rem !important;
}

.mx-n50 {
  margin-right: -50rem !important;
  margin-left: -50rem !important;
}

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

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

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

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

.my-n2_5 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

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

.my-n3_5 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

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

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

.my-n6 {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my-n7 {
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.my-n8 {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.my-n9 {
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.my-n10 {
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.my-n13 {
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.my-n15 {
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.my-n20 {
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}

.my-n25 {
  margin-top: -25rem !important;
  margin-bottom: -25rem !important;
}

.my-n30 {
  margin-top: -30rem !important;
  margin-bottom: -30rem !important;
}

.my-n35 {
  margin-top: -35rem !important;
  margin-bottom: -35rem !important;
}

.my-n40 {
  margin-top: -40rem !important;
  margin-bottom: -40rem !important;
}

.my-n45 {
  margin-top: -45rem !important;
  margin-bottom: -45rem !important;
}

.my-n50 {
  margin-top: -50rem !important;
  margin-bottom: -50rem !important;
}

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

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

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

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

.mt-n2_5 {
  margin-top: -2.5rem !important;
}

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

.mt-n3_5 {
  margin-top: -3.5rem !important;
}

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

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

.mt-n6 {
  margin-top: -6rem !important;
}

.mt-n7 {
  margin-top: -7rem !important;
}

.mt-n8 {
  margin-top: -8rem !important;
}

.mt-n9 {
  margin-top: -9rem !important;
}

.mt-n10 {
  margin-top: -10rem !important;
}

.mt-n13 {
  margin-top: -13rem !important;
}

.mt-n15 {
  margin-top: -15rem !important;
}

.mt-n20 {
  margin-top: -20rem !important;
}

.mt-n25 {
  margin-top: -25rem !important;
}

.mt-n30 {
  margin-top: -30rem !important;
}

.mt-n35 {
  margin-top: -35rem !important;
}

.mt-n40 {
  margin-top: -40rem !important;
}

.mt-n45 {
  margin-top: -45rem !important;
}

.mt-n50 {
  margin-top: -50rem !important;
}

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

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

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

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

.me-n2_5 {
  margin-right: -2.5rem !important;
}

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

.me-n3_5 {
  margin-right: -3.5rem !important;
}

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

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

.me-n6 {
  margin-right: -6rem !important;
}

.me-n7 {
  margin-right: -7rem !important;
}

.me-n8 {
  margin-right: -8rem !important;
}

.me-n9 {
  margin-right: -9rem !important;
}

.me-n10 {
  margin-right: -10rem !important;
}

.me-n13 {
  margin-right: -13rem !important;
}

.me-n15 {
  margin-right: -15rem !important;
}

.me-n20 {
  margin-right: -20rem !important;
}

.me-n25 {
  margin-right: -25rem !important;
}

.me-n30 {
  margin-right: -30rem !important;
}

.me-n35 {
  margin-right: -35rem !important;
}

.me-n40 {
  margin-right: -40rem !important;
}

.me-n45 {
  margin-right: -45rem !important;
}

.me-n50 {
  margin-right: -50rem !important;
}

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

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

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

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

.mb-n2_5 {
  margin-bottom: -2.5rem !important;
}

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

.mb-n3_5 {
  margin-bottom: -3.5rem !important;
}

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

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

.mb-n6 {
  margin-bottom: -6rem !important;
}

.mb-n7 {
  margin-bottom: -7rem !important;
}

.mb-n8 {
  margin-bottom: -8rem !important;
}

.mb-n9 {
  margin-bottom: -9rem !important;
}

.mb-n10 {
  margin-bottom: -10rem !important;
}

.mb-n13 {
  margin-bottom: -13rem !important;
}

.mb-n15 {
  margin-bottom: -15rem !important;
}

.mb-n20 {
  margin-bottom: -20rem !important;
}

.mb-n25 {
  margin-bottom: -25rem !important;
}

.mb-n30 {
  margin-bottom: -30rem !important;
}

.mb-n35 {
  margin-bottom: -35rem !important;
}

.mb-n40 {
  margin-bottom: -40rem !important;
}

.mb-n45 {
  margin-bottom: -45rem !important;
}

.mb-n50 {
  margin-bottom: -50rem !important;
}

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

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

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

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

.ms-n2_5 {
  margin-left: -2.5rem !important;
}

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

.ms-n3_5 {
  margin-left: -3.5rem !important;
}

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

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

.ms-n6 {
  margin-left: -6rem !important;
}

.ms-n7 {
  margin-left: -7rem !important;
}

.ms-n8 {
  margin-left: -8rem !important;
}

.ms-n9 {
  margin-left: -9rem !important;
}

.ms-n10 {
  margin-left: -10rem !important;
}

.ms-n13 {
  margin-left: -13rem !important;
}

.ms-n15 {
  margin-left: -15rem !important;
}

.ms-n20 {
  margin-left: -20rem !important;
}

.ms-n25 {
  margin-left: -25rem !important;
}

.ms-n30 {
  margin-left: -30rem !important;
}

.ms-n35 {
  margin-left: -35rem !important;
}

.ms-n40 {
  margin-left: -40rem !important;
}

.ms-n45 {
  margin-left: -45rem !important;
}

.ms-n50 {
  margin-left: -50rem !important;
}

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

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

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

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

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

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

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

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

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

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

.p-6 {
  padding: 6rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.p-8 {
  padding: 8rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.p-13 {
  padding: 13rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.p-25 {
  padding: 25rem !important;
}

.p-30 {
  padding: 30rem !important;
}

.p-35 {
  padding: 35rem !important;
}

.p-40 {
  padding: 40rem !important;
}

.p-45 {
  padding: 45rem !important;
}

.p-50 {
  padding: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pe-10 {
  padding-right: 10rem !important;
}

.pe-13 {
  padding-right: 13rem !important;
}

.pe-15 {
  padding-right: 15rem !important;
}

.pe-20 {
  padding-right: 20rem !important;
}

.pe-25 {
  padding-right: 25rem !important;
}

.pe-30 {
  padding-right: 30rem !important;
}

.pe-35 {
  padding-right: 35rem !important;
}

.pe-40 {
  padding-right: 40rem !important;
}

.pe-45 {
  padding-right: 45rem !important;
}

.pe-50 {
  padding-right: 50rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-0_5 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-1_5 {
  padding-bottom: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-2_5 {
  padding-bottom: 2.5rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-3_5 {
  padding-bottom: 3.5rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pb-13 {
  padding-bottom: 13rem !important;
}

.pb-15 {
  padding-bottom: 15rem !important;
}

.pb-20 {
  padding-bottom: 20rem !important;
}

.pb-25 {
  padding-bottom: 25rem !important;
}

.pb-30 {
  padding-bottom: 30rem !important;
}

.pb-35 {
  padding-bottom: 35rem !important;
}

.pb-40 {
  padding-bottom: 40rem !important;
}

.pb-45 {
  padding-bottom: 45rem !important;
}

.pb-50 {
  padding-bottom: 50rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-0_5 {
  padding-left: 0.5rem !important;
}

.ps-1 {
  padding-left: 1rem !important;
}

.ps-1_5 {
  padding-left: 1.5rem !important;
}

.ps-2 {
  padding-left: 2rem !important;
}

.ps-2_5 {
  padding-left: 2.5rem !important;
}

.ps-3 {
  padding-left: 3rem !important;
}

.ps-3_5 {
  padding-left: 3.5rem !important;
}

.ps-4 {
  padding-left: 4rem !important;
}

.ps-5 {
  padding-left: 5rem !important;
}

.ps-6 {
  padding-left: 6rem !important;
}

.ps-7 {
  padding-left: 7rem !important;
}

.ps-8 {
  padding-left: 8rem !important;
}

.ps-9 {
  padding-left: 9rem !important;
}

.ps-10 {
  padding-left: 10rem !important;
}

.ps-13 {
  padding-left: 13rem !important;
}

.ps-15 {
  padding-left: 15rem !important;
}

.ps-20 {
  padding-left: 20rem !important;
}

.ps-25 {
  padding-left: 25rem !important;
}

.ps-30 {
  padding-left: 30rem !important;
}

.ps-35 {
  padding-left: 35rem !important;
}

.ps-40 {
  padding-left: 40rem !important;
}

.ps-45 {
  padding-left: 45rem !important;
}

.ps-50 {
  padding-left: 50rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-0_5 {
  gap: 0.5rem !important;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-1_5 {
  gap: 1.5rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.gap-2_5 {
  gap: 2.5rem !important;
}

.gap-3 {
  gap: 3rem !important;
}

.gap-3_5 {
  gap: 3.5rem !important;
}

.gap-4 {
  gap: 4rem !important;
}

.gap-5 {
  gap: 5rem !important;
}

.gap-6 {
  gap: 6rem !important;
}

.gap-7 {
  gap: 7rem !important;
}

.gap-8 {
  gap: 8rem !important;
}

.gap-9 {
  gap: 9rem !important;
}

.gap-10 {
  gap: 10rem !important;
}

.gap-13 {
  gap: 13rem !important;
}

.gap-15 {
  gap: 15rem !important;
}

.gap-20 {
  gap: 20rem !important;
}

.gap-25 {
  gap: 25rem !important;
}

.gap-30 {
  gap: 30rem !important;
}

.gap-35 {
  gap: 35rem !important;
}

.gap-40 {
  gap: 40rem !important;
}

.gap-45 {
  gap: 45rem !important;
}

.gap-50 {
  gap: 50rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-0_5 {
  row-gap: 0.5rem !important;
}

.row-gap-1 {
  row-gap: 1rem !important;
}

.row-gap-1_5 {
  row-gap: 1.5rem !important;
}

.row-gap-2 {
  row-gap: 2rem !important;
}

.row-gap-2_5 {
  row-gap: 2.5rem !important;
}

.row-gap-3 {
  row-gap: 3rem !important;
}

.row-gap-3_5 {
  row-gap: 3.5rem !important;
}

.row-gap-4 {
  row-gap: 4rem !important;
}

.row-gap-5 {
  row-gap: 5rem !important;
}

.row-gap-6 {
  row-gap: 6rem !important;
}

.row-gap-7 {
  row-gap: 7rem !important;
}

.row-gap-8 {
  row-gap: 8rem !important;
}

.row-gap-9 {
  row-gap: 9rem !important;
}

.row-gap-10 {
  row-gap: 10rem !important;
}

.row-gap-13 {
  row-gap: 13rem !important;
}

.row-gap-15 {
  row-gap: 15rem !important;
}

.row-gap-20 {
  row-gap: 20rem !important;
}

.row-gap-25 {
  row-gap: 25rem !important;
}

.row-gap-30 {
  row-gap: 30rem !important;
}

.row-gap-35 {
  row-gap: 35rem !important;
}

.row-gap-40 {
  row-gap: 40rem !important;
}

.row-gap-45 {
  row-gap: 45rem !important;
}

.row-gap-50 {
  row-gap: 50rem !important;
}

.column-gap-0 {
  -webkit-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}

.column-gap-0_5 {
  -webkit-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

.column-gap-1 {
  -webkit-column-gap: 1rem !important;
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-1_5 {
  -webkit-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.column-gap-2 {
  -webkit-column-gap: 2rem !important;
  -moz-column-gap: 2rem !important;
  column-gap: 2rem !important;
}

.column-gap-2_5 {
  -webkit-column-gap: 2.5rem !important;
  -moz-column-gap: 2.5rem !important;
  column-gap: 2.5rem !important;
}

.column-gap-3 {
  -webkit-column-gap: 3rem !important;
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.column-gap-3_5 {
  -webkit-column-gap: 3.5rem !important;
  -moz-column-gap: 3.5rem !important;
  column-gap: 3.5rem !important;
}

.column-gap-4 {
  -webkit-column-gap: 4rem !important;
  -moz-column-gap: 4rem !important;
  column-gap: 4rem !important;
}

.column-gap-5 {
  -webkit-column-gap: 5rem !important;
  -moz-column-gap: 5rem !important;
  column-gap: 5rem !important;
}

.column-gap-6 {
  -webkit-column-gap: 6rem !important;
  -moz-column-gap: 6rem !important;
  column-gap: 6rem !important;
}

.column-gap-7 {
  -webkit-column-gap: 7rem !important;
  -moz-column-gap: 7rem !important;
  column-gap: 7rem !important;
}

.column-gap-8 {
  -webkit-column-gap: 8rem !important;
  -moz-column-gap: 8rem !important;
  column-gap: 8rem !important;
}

.column-gap-9 {
  -webkit-column-gap: 9rem !important;
  -moz-column-gap: 9rem !important;
  column-gap: 9rem !important;
}

.column-gap-10 {
  -webkit-column-gap: 10rem !important;
  -moz-column-gap: 10rem !important;
  column-gap: 10rem !important;
}

.column-gap-13 {
  -webkit-column-gap: 13rem !important;
  -moz-column-gap: 13rem !important;
  column-gap: 13rem !important;
}

.column-gap-15 {
  -webkit-column-gap: 15rem !important;
  -moz-column-gap: 15rem !important;
  column-gap: 15rem !important;
}

.column-gap-20 {
  -webkit-column-gap: 20rem !important;
  -moz-column-gap: 20rem !important;
  column-gap: 20rem !important;
}

.column-gap-25 {
  -webkit-column-gap: 25rem !important;
  -moz-column-gap: 25rem !important;
  column-gap: 25rem !important;
}

.column-gap-30 {
  -webkit-column-gap: 30rem !important;
  -moz-column-gap: 30rem !important;
  column-gap: 30rem !important;
}

.column-gap-35 {
  -webkit-column-gap: 35rem !important;
  -moz-column-gap: 35rem !important;
  column-gap: 35rem !important;
}

.column-gap-40 {
  -webkit-column-gap: 40rem !important;
  -moz-column-gap: 40rem !important;
  column-gap: 40rem !important;
}

.column-gap-45 {
  -webkit-column-gap: 45rem !important;
  -moz-column-gap: 45rem !important;
  column-gap: 45rem !important;
}

.column-gap-50 {
  -webkit-column-gap: 50rem !important;
  -moz-column-gap: 50rem !important;
  column-gap: 50rem !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-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !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 {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-0_5 {
    margin: 0.5rem !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-1_5 {
    margin: 1.5rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-2_5 {
    margin: 2.5rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-3_5 {
    margin: 3.5rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-13 {
    margin: 13rem !important;
  }
  .m-sm-15 {
    margin: 15rem !important;
  }
  .m-sm-20 {
    margin: 20rem !important;
  }
  .m-sm-25 {
    margin: 25rem !important;
  }
  .m-sm-30 {
    margin: 30rem !important;
  }
  .m-sm-35 {
    margin: 35rem !important;
  }
  .m-sm-40 {
    margin: 40rem !important;
  }
  .m-sm-45 {
    margin: 45rem !important;
  }
  .m-sm-50 {
    margin: 50rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-sm-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sm-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-sm-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-sm-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-sm-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-sm-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-sm-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-sm-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-sm-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sm-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-sm-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-sm-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-sm-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-sm-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-sm-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-sm-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-13 {
    margin-top: 13rem !important;
  }
  .mt-sm-15 {
    margin-top: 15rem !important;
  }
  .mt-sm-20 {
    margin-top: 20rem !important;
  }
  .mt-sm-25 {
    margin-top: 25rem !important;
  }
  .mt-sm-30 {
    margin-top: 30rem !important;
  }
  .mt-sm-35 {
    margin-top: 35rem !important;
  }
  .mt-sm-40 {
    margin-top: 40rem !important;
  }
  .mt-sm-45 {
    margin-top: 45rem !important;
  }
  .mt-sm-50 {
    margin-top: 50rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 1rem !important;
  }
  .me-sm-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-sm-2 {
    margin-right: 2rem !important;
  }
  .me-sm-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-sm-3 {
    margin-right: 3rem !important;
  }
  .me-sm-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-sm-4 {
    margin-right: 4rem !important;
  }
  .me-sm-5 {
    margin-right: 5rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 7rem !important;
  }
  .me-sm-8 {
    margin-right: 8rem !important;
  }
  .me-sm-9 {
    margin-right: 9rem !important;
  }
  .me-sm-10 {
    margin-right: 10rem !important;
  }
  .me-sm-13 {
    margin-right: 13rem !important;
  }
  .me-sm-15 {
    margin-right: 15rem !important;
  }
  .me-sm-20 {
    margin-right: 20rem !important;
  }
  .me-sm-25 {
    margin-right: 25rem !important;
  }
  .me-sm-30 {
    margin-right: 30rem !important;
  }
  .me-sm-35 {
    margin-right: 35rem !important;
  }
  .me-sm-40 {
    margin-right: 40rem !important;
  }
  .me-sm-45 {
    margin-right: 45rem !important;
  }
  .me-sm-50 {
    margin-right: 50rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }
  .mb-sm-25 {
    margin-bottom: 25rem !important;
  }
  .mb-sm-30 {
    margin-bottom: 30rem !important;
  }
  .mb-sm-35 {
    margin-bottom: 35rem !important;
  }
  .mb-sm-40 {
    margin-bottom: 40rem !important;
  }
  .mb-sm-45 {
    margin-bottom: 45rem !important;
  }
  .mb-sm-50 {
    margin-bottom: 50rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 1rem !important;
  }
  .ms-sm-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 2rem !important;
  }
  .ms-sm-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 3rem !important;
  }
  .ms-sm-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 4rem !important;
  }
  .ms-sm-5 {
    margin-left: 5rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 7rem !important;
  }
  .ms-sm-8 {
    margin-left: 8rem !important;
  }
  .ms-sm-9 {
    margin-left: 9rem !important;
  }
  .ms-sm-10 {
    margin-left: 10rem !important;
  }
  .ms-sm-13 {
    margin-left: 13rem !important;
  }
  .ms-sm-15 {
    margin-left: 15rem !important;
  }
  .ms-sm-20 {
    margin-left: 20rem !important;
  }
  .ms-sm-25 {
    margin-left: 25rem !important;
  }
  .ms-sm-30 {
    margin-left: 30rem !important;
  }
  .ms-sm-35 {
    margin-left: 35rem !important;
  }
  .ms-sm-40 {
    margin-left: 40rem !important;
  }
  .ms-sm-45 {
    margin-left: 45rem !important;
  }
  .ms-sm-50 {
    margin-left: 50rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .m-sm-n0_5 {
    margin: -0.5rem !important;
  }
  .m-sm-n1 {
    margin: -1rem !important;
  }
  .m-sm-n1_5 {
    margin: -1.5rem !important;
  }
  .m-sm-n2 {
    margin: -2rem !important;
  }
  .m-sm-n2_5 {
    margin: -2.5rem !important;
  }
  .m-sm-n3 {
    margin: -3rem !important;
  }
  .m-sm-n3_5 {
    margin: -3.5rem !important;
  }
  .m-sm-n4 {
    margin: -4rem !important;
  }
  .m-sm-n5 {
    margin: -5rem !important;
  }
  .m-sm-n6 {
    margin: -6rem !important;
  }
  .m-sm-n7 {
    margin: -7rem !important;
  }
  .m-sm-n8 {
    margin: -8rem !important;
  }
  .m-sm-n9 {
    margin: -9rem !important;
  }
  .m-sm-n10 {
    margin: -10rem !important;
  }
  .m-sm-n13 {
    margin: -13rem !important;
  }
  .m-sm-n15 {
    margin: -15rem !important;
  }
  .m-sm-n20 {
    margin: -20rem !important;
  }
  .m-sm-n25 {
    margin: -25rem !important;
  }
  .m-sm-n30 {
    margin: -30rem !important;
  }
  .m-sm-n35 {
    margin: -35rem !important;
  }
  .m-sm-n40 {
    margin: -40rem !important;
  }
  .m-sm-n45 {
    margin: -45rem !important;
  }
  .m-sm-n50 {
    margin: -50rem !important;
  }
  .mx-sm-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-sm-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-sm-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-sm-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-sm-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-sm-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-sm-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-sm-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-sm-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-sm-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-sm-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-sm-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-sm-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-sm-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-sm-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-sm-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-sm-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-sm-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-sm-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-sm-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-sm-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-sm-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-sm-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-sm-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-sm-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-sm-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-sm-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-sm-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-sm-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-sm-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-sm-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-sm-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-sm-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-sm-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-sm-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-sm-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-sm-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-sm-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-sm-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-sm-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-sm-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-sm-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-sm-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-sm-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-sm-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-sm-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-sm-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-sm-n1 {
    margin-top: -1rem !important;
  }
  .mt-sm-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-sm-n2 {
    margin-top: -2rem !important;
  }
  .mt-sm-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-sm-n3 {
    margin-top: -3rem !important;
  }
  .mt-sm-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-sm-n4 {
    margin-top: -4rem !important;
  }
  .mt-sm-n5 {
    margin-top: -5rem !important;
  }
  .mt-sm-n6 {
    margin-top: -6rem !important;
  }
  .mt-sm-n7 {
    margin-top: -7rem !important;
  }
  .mt-sm-n8 {
    margin-top: -8rem !important;
  }
  .mt-sm-n9 {
    margin-top: -9rem !important;
  }
  .mt-sm-n10 {
    margin-top: -10rem !important;
  }
  .mt-sm-n13 {
    margin-top: -13rem !important;
  }
  .mt-sm-n15 {
    margin-top: -15rem !important;
  }
  .mt-sm-n20 {
    margin-top: -20rem !important;
  }
  .mt-sm-n25 {
    margin-top: -25rem !important;
  }
  .mt-sm-n30 {
    margin-top: -30rem !important;
  }
  .mt-sm-n35 {
    margin-top: -35rem !important;
  }
  .mt-sm-n40 {
    margin-top: -40rem !important;
  }
  .mt-sm-n45 {
    margin-top: -45rem !important;
  }
  .mt-sm-n50 {
    margin-top: -50rem !important;
  }
  .me-sm-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-sm-n1 {
    margin-right: -1rem !important;
  }
  .me-sm-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-sm-n2 {
    margin-right: -2rem !important;
  }
  .me-sm-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-sm-n3 {
    margin-right: -3rem !important;
  }
  .me-sm-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-sm-n4 {
    margin-right: -4rem !important;
  }
  .me-sm-n5 {
    margin-right: -5rem !important;
  }
  .me-sm-n6 {
    margin-right: -6rem !important;
  }
  .me-sm-n7 {
    margin-right: -7rem !important;
  }
  .me-sm-n8 {
    margin-right: -8rem !important;
  }
  .me-sm-n9 {
    margin-right: -9rem !important;
  }
  .me-sm-n10 {
    margin-right: -10rem !important;
  }
  .me-sm-n13 {
    margin-right: -13rem !important;
  }
  .me-sm-n15 {
    margin-right: -15rem !important;
  }
  .me-sm-n20 {
    margin-right: -20rem !important;
  }
  .me-sm-n25 {
    margin-right: -25rem !important;
  }
  .me-sm-n30 {
    margin-right: -30rem !important;
  }
  .me-sm-n35 {
    margin-right: -35rem !important;
  }
  .me-sm-n40 {
    margin-right: -40rem !important;
  }
  .me-sm-n45 {
    margin-right: -45rem !important;
  }
  .me-sm-n50 {
    margin-right: -50rem !important;
  }
  .mb-sm-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-sm-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-sm-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-sm-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-sm-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-sm-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-sm-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-sm-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-sm-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-sm-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-sm-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-sm-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-sm-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-sm-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-sm-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-sm-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-sm-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-sm-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-sm-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-sm-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-sm-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-sm-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-sm-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-sm-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-sm-n1 {
    margin-left: -1rem !important;
  }
  .ms-sm-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-sm-n2 {
    margin-left: -2rem !important;
  }
  .ms-sm-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-sm-n3 {
    margin-left: -3rem !important;
  }
  .ms-sm-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-sm-n4 {
    margin-left: -4rem !important;
  }
  .ms-sm-n5 {
    margin-left: -5rem !important;
  }
  .ms-sm-n6 {
    margin-left: -6rem !important;
  }
  .ms-sm-n7 {
    margin-left: -7rem !important;
  }
  .ms-sm-n8 {
    margin-left: -8rem !important;
  }
  .ms-sm-n9 {
    margin-left: -9rem !important;
  }
  .ms-sm-n10 {
    margin-left: -10rem !important;
  }
  .ms-sm-n13 {
    margin-left: -13rem !important;
  }
  .ms-sm-n15 {
    margin-left: -15rem !important;
  }
  .ms-sm-n20 {
    margin-left: -20rem !important;
  }
  .ms-sm-n25 {
    margin-left: -25rem !important;
  }
  .ms-sm-n30 {
    margin-left: -30rem !important;
  }
  .ms-sm-n35 {
    margin-left: -35rem !important;
  }
  .ms-sm-n40 {
    margin-left: -40rem !important;
  }
  .ms-sm-n45 {
    margin-left: -45rem !important;
  }
  .ms-sm-n50 {
    margin-left: -50rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0_5 {
    padding: 0.5rem !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-1_5 {
    padding: 1.5rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-2_5 {
    padding: 2.5rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-3_5 {
    padding: 3.5rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .p-sm-13 {
    padding: 13rem !important;
  }
  .p-sm-15 {
    padding: 15rem !important;
  }
  .p-sm-20 {
    padding: 20rem !important;
  }
  .p-sm-25 {
    padding: 25rem !important;
  }
  .p-sm-30 {
    padding: 30rem !important;
  }
  .p-sm-35 {
    padding: 35rem !important;
  }
  .p-sm-40 {
    padding: 40rem !important;
  }
  .p-sm-45 {
    padding: 45rem !important;
  }
  .p-sm-50 {
    padding: 50rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sm-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-sm-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sm-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-sm-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-sm-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-sm-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-sm-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-sm-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-sm-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-sm-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sm-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-sm-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-sm-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-sm-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-sm-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-sm-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-sm-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pt-sm-13 {
    padding-top: 13rem !important;
  }
  .pt-sm-15 {
    padding-top: 15rem !important;
  }
  .pt-sm-20 {
    padding-top: 20rem !important;
  }
  .pt-sm-25 {
    padding-top: 25rem !important;
  }
  .pt-sm-30 {
    padding-top: 30rem !important;
  }
  .pt-sm-35 {
    padding-top: 35rem !important;
  }
  .pt-sm-40 {
    padding-top: 40rem !important;
  }
  .pt-sm-45 {
    padding-top: 45rem !important;
  }
  .pt-sm-50 {
    padding-top: 50rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 1rem !important;
  }
  .pe-sm-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 2rem !important;
  }
  .pe-sm-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 3rem !important;
  }
  .pe-sm-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 4rem !important;
  }
  .pe-sm-5 {
    padding-right: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 7rem !important;
  }
  .pe-sm-8 {
    padding-right: 8rem !important;
  }
  .pe-sm-9 {
    padding-right: 9rem !important;
  }
  .pe-sm-10 {
    padding-right: 10rem !important;
  }
  .pe-sm-13 {
    padding-right: 13rem !important;
  }
  .pe-sm-15 {
    padding-right: 15rem !important;
  }
  .pe-sm-20 {
    padding-right: 20rem !important;
  }
  .pe-sm-25 {
    padding-right: 25rem !important;
  }
  .pe-sm-30 {
    padding-right: 30rem !important;
  }
  .pe-sm-35 {
    padding-right: 35rem !important;
  }
  .pe-sm-40 {
    padding-right: 40rem !important;
  }
  .pe-sm-45 {
    padding-right: 45rem !important;
  }
  .pe-sm-50 {
    padding-right: 50rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }
  .pb-sm-25 {
    padding-bottom: 25rem !important;
  }
  .pb-sm-30 {
    padding-bottom: 30rem !important;
  }
  .pb-sm-35 {
    padding-bottom: 35rem !important;
  }
  .pb-sm-40 {
    padding-bottom: 40rem !important;
  }
  .pb-sm-45 {
    padding-bottom: 45rem !important;
  }
  .pb-sm-50 {
    padding-bottom: 50rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 1rem !important;
  }
  .ps-sm-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 2rem !important;
  }
  .ps-sm-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 3rem !important;
  }
  .ps-sm-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 4rem !important;
  }
  .ps-sm-5 {
    padding-left: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 7rem !important;
  }
  .ps-sm-8 {
    padding-left: 8rem !important;
  }
  .ps-sm-9 {
    padding-left: 9rem !important;
  }
  .ps-sm-10 {
    padding-left: 10rem !important;
  }
  .ps-sm-13 {
    padding-left: 13rem !important;
  }
  .ps-sm-15 {
    padding-left: 15rem !important;
  }
  .ps-sm-20 {
    padding-left: 20rem !important;
  }
  .ps-sm-25 {
    padding-left: 25rem !important;
  }
  .ps-sm-30 {
    padding-left: 30rem !important;
  }
  .ps-sm-35 {
    padding-left: 35rem !important;
  }
  .ps-sm-40 {
    padding-left: 40rem !important;
  }
  .ps-sm-45 {
    padding-left: 45rem !important;
  }
  .ps-sm-50 {
    padding-left: 50rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-0_5 {
    gap: 0.5rem !important;
  }
  .gap-sm-1 {
    gap: 1rem !important;
  }
  .gap-sm-1_5 {
    gap: 1.5rem !important;
  }
  .gap-sm-2 {
    gap: 2rem !important;
  }
  .gap-sm-2_5 {
    gap: 2.5rem !important;
  }
  .gap-sm-3 {
    gap: 3rem !important;
  }
  .gap-sm-3_5 {
    gap: 3.5rem !important;
  }
  .gap-sm-4 {
    gap: 4rem !important;
  }
  .gap-sm-5 {
    gap: 5rem !important;
  }
  .gap-sm-6 {
    gap: 6rem !important;
  }
  .gap-sm-7 {
    gap: 7rem !important;
  }
  .gap-sm-8 {
    gap: 8rem !important;
  }
  .gap-sm-9 {
    gap: 9rem !important;
  }
  .gap-sm-10 {
    gap: 10rem !important;
  }
  .gap-sm-13 {
    gap: 13rem !important;
  }
  .gap-sm-15 {
    gap: 15rem !important;
  }
  .gap-sm-20 {
    gap: 20rem !important;
  }
  .gap-sm-25 {
    gap: 25rem !important;
  }
  .gap-sm-30 {
    gap: 30rem !important;
  }
  .gap-sm-35 {
    gap: 35rem !important;
  }
  .gap-sm-40 {
    gap: 40rem !important;
  }
  .gap-sm-45 {
    gap: 45rem !important;
  }
  .gap-sm-50 {
    gap: 50rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-1 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 3rem !important;
  }
  .row-gap-sm-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 4rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 5rem !important;
  }
  .row-gap-sm-6 {
    row-gap: 6rem !important;
  }
  .row-gap-sm-7 {
    row-gap: 7rem !important;
  }
  .row-gap-sm-8 {
    row-gap: 8rem !important;
  }
  .row-gap-sm-9 {
    row-gap: 9rem !important;
  }
  .row-gap-sm-10 {
    row-gap: 10rem !important;
  }
  .row-gap-sm-13 {
    row-gap: 13rem !important;
  }
  .row-gap-sm-15 {
    row-gap: 15rem !important;
  }
  .row-gap-sm-20 {
    row-gap: 20rem !important;
  }
  .row-gap-sm-25 {
    row-gap: 25rem !important;
  }
  .row-gap-sm-30 {
    row-gap: 30rem !important;
  }
  .row-gap-sm-35 {
    row-gap: 35rem !important;
  }
  .row-gap-sm-40 {
    row-gap: 40rem !important;
  }
  .row-gap-sm-45 {
    row-gap: 45rem !important;
  }
  .row-gap-sm-50 {
    row-gap: 50rem !important;
  }
  .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-sm-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-sm-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-sm-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-sm-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-sm-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-sm-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-sm-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-sm-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-sm-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-sm-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-sm-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-sm-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-sm-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-sm-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-sm-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-sm-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-sm-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-sm-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-sm-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-sm-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-sm-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !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;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-0_5 {
    margin: 0.5rem !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-1_5 {
    margin: 1.5rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-2_5 {
    margin: 2.5rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-3_5 {
    margin: 3.5rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-13 {
    margin: 13rem !important;
  }
  .m-md-15 {
    margin: 15rem !important;
  }
  .m-md-20 {
    margin: 20rem !important;
  }
  .m-md-25 {
    margin: 25rem !important;
  }
  .m-md-30 {
    margin: 30rem !important;
  }
  .m-md-35 {
    margin: 35rem !important;
  }
  .m-md-40 {
    margin: 40rem !important;
  }
  .m-md-45 {
    margin: 45rem !important;
  }
  .m-md-50 {
    margin: 50rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-md-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-md-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-md-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-md-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-md-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-md-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-md-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-md-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-md-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-md-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-md-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-md-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-md-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-md-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-md-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-md-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-13 {
    margin-top: 13rem !important;
  }
  .mt-md-15 {
    margin-top: 15rem !important;
  }
  .mt-md-20 {
    margin-top: 20rem !important;
  }
  .mt-md-25 {
    margin-top: 25rem !important;
  }
  .mt-md-30 {
    margin-top: 30rem !important;
  }
  .mt-md-35 {
    margin-top: 35rem !important;
  }
  .mt-md-40 {
    margin-top: 40rem !important;
  }
  .mt-md-45 {
    margin-top: 45rem !important;
  }
  .mt-md-50 {
    margin-top: 50rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 1rem !important;
  }
  .me-md-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-md-2 {
    margin-right: 2rem !important;
  }
  .me-md-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-md-3 {
    margin-right: 3rem !important;
  }
  .me-md-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-md-4 {
    margin-right: 4rem !important;
  }
  .me-md-5 {
    margin-right: 5rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 7rem !important;
  }
  .me-md-8 {
    margin-right: 8rem !important;
  }
  .me-md-9 {
    margin-right: 9rem !important;
  }
  .me-md-10 {
    margin-right: 10rem !important;
  }
  .me-md-13 {
    margin-right: 13rem !important;
  }
  .me-md-15 {
    margin-right: 15rem !important;
  }
  .me-md-20 {
    margin-right: 20rem !important;
  }
  .me-md-25 {
    margin-right: 25rem !important;
  }
  .me-md-30 {
    margin-right: 30rem !important;
  }
  .me-md-35 {
    margin-right: 35rem !important;
  }
  .me-md-40 {
    margin-right: 40rem !important;
  }
  .me-md-45 {
    margin-right: 45rem !important;
  }
  .me-md-50 {
    margin-right: 50rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-13 {
    margin-bottom: 13rem !important;
  }
  .mb-md-15 {
    margin-bottom: 15rem !important;
  }
  .mb-md-20 {
    margin-bottom: 20rem !important;
  }
  .mb-md-25 {
    margin-bottom: 25rem !important;
  }
  .mb-md-30 {
    margin-bottom: 30rem !important;
  }
  .mb-md-35 {
    margin-bottom: 35rem !important;
  }
  .mb-md-40 {
    margin-bottom: 40rem !important;
  }
  .mb-md-45 {
    margin-bottom: 45rem !important;
  }
  .mb-md-50 {
    margin-bottom: 50rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 1rem !important;
  }
  .ms-md-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-md-2 {
    margin-left: 2rem !important;
  }
  .ms-md-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-md-3 {
    margin-left: 3rem !important;
  }
  .ms-md-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-md-4 {
    margin-left: 4rem !important;
  }
  .ms-md-5 {
    margin-left: 5rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 7rem !important;
  }
  .ms-md-8 {
    margin-left: 8rem !important;
  }
  .ms-md-9 {
    margin-left: 9rem !important;
  }
  .ms-md-10 {
    margin-left: 10rem !important;
  }
  .ms-md-13 {
    margin-left: 13rem !important;
  }
  .ms-md-15 {
    margin-left: 15rem !important;
  }
  .ms-md-20 {
    margin-left: 20rem !important;
  }
  .ms-md-25 {
    margin-left: 25rem !important;
  }
  .ms-md-30 {
    margin-left: 30rem !important;
  }
  .ms-md-35 {
    margin-left: 35rem !important;
  }
  .ms-md-40 {
    margin-left: 40rem !important;
  }
  .ms-md-45 {
    margin-left: 45rem !important;
  }
  .ms-md-50 {
    margin-left: 50rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .m-md-n0_5 {
    margin: -0.5rem !important;
  }
  .m-md-n1 {
    margin: -1rem !important;
  }
  .m-md-n1_5 {
    margin: -1.5rem !important;
  }
  .m-md-n2 {
    margin: -2rem !important;
  }
  .m-md-n2_5 {
    margin: -2.5rem !important;
  }
  .m-md-n3 {
    margin: -3rem !important;
  }
  .m-md-n3_5 {
    margin: -3.5rem !important;
  }
  .m-md-n4 {
    margin: -4rem !important;
  }
  .m-md-n5 {
    margin: -5rem !important;
  }
  .m-md-n6 {
    margin: -6rem !important;
  }
  .m-md-n7 {
    margin: -7rem !important;
  }
  .m-md-n8 {
    margin: -8rem !important;
  }
  .m-md-n9 {
    margin: -9rem !important;
  }
  .m-md-n10 {
    margin: -10rem !important;
  }
  .m-md-n13 {
    margin: -13rem !important;
  }
  .m-md-n15 {
    margin: -15rem !important;
  }
  .m-md-n20 {
    margin: -20rem !important;
  }
  .m-md-n25 {
    margin: -25rem !important;
  }
  .m-md-n30 {
    margin: -30rem !important;
  }
  .m-md-n35 {
    margin: -35rem !important;
  }
  .m-md-n40 {
    margin: -40rem !important;
  }
  .m-md-n45 {
    margin: -45rem !important;
  }
  .m-md-n50 {
    margin: -50rem !important;
  }
  .mx-md-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-md-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-md-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-md-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-md-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-md-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-md-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-md-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-md-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-md-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-md-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-md-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-md-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-md-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-md-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-md-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-md-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-md-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-md-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-md-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-md-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-md-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-md-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-md-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-md-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-md-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-md-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-md-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-md-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-md-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-md-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-md-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-md-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-md-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-md-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-md-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-md-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-md-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-md-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-md-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-md-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-md-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-md-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-md-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-md-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-md-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-md-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-md-n1 {
    margin-top: -1rem !important;
  }
  .mt-md-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-md-n2 {
    margin-top: -2rem !important;
  }
  .mt-md-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-md-n3 {
    margin-top: -3rem !important;
  }
  .mt-md-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-md-n4 {
    margin-top: -4rem !important;
  }
  .mt-md-n5 {
    margin-top: -5rem !important;
  }
  .mt-md-n6 {
    margin-top: -6rem !important;
  }
  .mt-md-n7 {
    margin-top: -7rem !important;
  }
  .mt-md-n8 {
    margin-top: -8rem !important;
  }
  .mt-md-n9 {
    margin-top: -9rem !important;
  }
  .mt-md-n10 {
    margin-top: -10rem !important;
  }
  .mt-md-n13 {
    margin-top: -13rem !important;
  }
  .mt-md-n15 {
    margin-top: -15rem !important;
  }
  .mt-md-n20 {
    margin-top: -20rem !important;
  }
  .mt-md-n25 {
    margin-top: -25rem !important;
  }
  .mt-md-n30 {
    margin-top: -30rem !important;
  }
  .mt-md-n35 {
    margin-top: -35rem !important;
  }
  .mt-md-n40 {
    margin-top: -40rem !important;
  }
  .mt-md-n45 {
    margin-top: -45rem !important;
  }
  .mt-md-n50 {
    margin-top: -50rem !important;
  }
  .me-md-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-md-n1 {
    margin-right: -1rem !important;
  }
  .me-md-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-md-n2 {
    margin-right: -2rem !important;
  }
  .me-md-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-md-n3 {
    margin-right: -3rem !important;
  }
  .me-md-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-md-n4 {
    margin-right: -4rem !important;
  }
  .me-md-n5 {
    margin-right: -5rem !important;
  }
  .me-md-n6 {
    margin-right: -6rem !important;
  }
  .me-md-n7 {
    margin-right: -7rem !important;
  }
  .me-md-n8 {
    margin-right: -8rem !important;
  }
  .me-md-n9 {
    margin-right: -9rem !important;
  }
  .me-md-n10 {
    margin-right: -10rem !important;
  }
  .me-md-n13 {
    margin-right: -13rem !important;
  }
  .me-md-n15 {
    margin-right: -15rem !important;
  }
  .me-md-n20 {
    margin-right: -20rem !important;
  }
  .me-md-n25 {
    margin-right: -25rem !important;
  }
  .me-md-n30 {
    margin-right: -30rem !important;
  }
  .me-md-n35 {
    margin-right: -35rem !important;
  }
  .me-md-n40 {
    margin-right: -40rem !important;
  }
  .me-md-n45 {
    margin-right: -45rem !important;
  }
  .me-md-n50 {
    margin-right: -50rem !important;
  }
  .mb-md-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-md-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-md-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-md-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-md-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-md-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-md-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-md-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-md-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-md-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-md-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-md-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-md-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-md-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-md-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-md-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-md-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-md-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-md-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-md-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-md-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-md-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-md-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-md-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-md-n1 {
    margin-left: -1rem !important;
  }
  .ms-md-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-md-n2 {
    margin-left: -2rem !important;
  }
  .ms-md-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-md-n3 {
    margin-left: -3rem !important;
  }
  .ms-md-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-md-n4 {
    margin-left: -4rem !important;
  }
  .ms-md-n5 {
    margin-left: -5rem !important;
  }
  .ms-md-n6 {
    margin-left: -6rem !important;
  }
  .ms-md-n7 {
    margin-left: -7rem !important;
  }
  .ms-md-n8 {
    margin-left: -8rem !important;
  }
  .ms-md-n9 {
    margin-left: -9rem !important;
  }
  .ms-md-n10 {
    margin-left: -10rem !important;
  }
  .ms-md-n13 {
    margin-left: -13rem !important;
  }
  .ms-md-n15 {
    margin-left: -15rem !important;
  }
  .ms-md-n20 {
    margin-left: -20rem !important;
  }
  .ms-md-n25 {
    margin-left: -25rem !important;
  }
  .ms-md-n30 {
    margin-left: -30rem !important;
  }
  .ms-md-n35 {
    margin-left: -35rem !important;
  }
  .ms-md-n40 {
    margin-left: -40rem !important;
  }
  .ms-md-n45 {
    margin-left: -45rem !important;
  }
  .ms-md-n50 {
    margin-left: -50rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-0_5 {
    padding: 0.5rem !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-1_5 {
    padding: 1.5rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-2_5 {
    padding: 2.5rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-3_5 {
    padding: 3.5rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .p-md-13 {
    padding: 13rem !important;
  }
  .p-md-15 {
    padding: 15rem !important;
  }
  .p-md-20 {
    padding: 20rem !important;
  }
  .p-md-25 {
    padding: 25rem !important;
  }
  .p-md-30 {
    padding: 30rem !important;
  }
  .p-md-35 {
    padding: 35rem !important;
  }
  .p-md-40 {
    padding: 40rem !important;
  }
  .p-md-45 {
    padding: 45rem !important;
  }
  .p-md-50 {
    padding: 50rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-md-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-md-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-md-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-md-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-md-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-md-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-md-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-md-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-md-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-md-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-md-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-md-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-md-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-md-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-md-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-md-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-md-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pt-md-13 {
    padding-top: 13rem !important;
  }
  .pt-md-15 {
    padding-top: 15rem !important;
  }
  .pt-md-20 {
    padding-top: 20rem !important;
  }
  .pt-md-25 {
    padding-top: 25rem !important;
  }
  .pt-md-30 {
    padding-top: 30rem !important;
  }
  .pt-md-35 {
    padding-top: 35rem !important;
  }
  .pt-md-40 {
    padding-top: 40rem !important;
  }
  .pt-md-45 {
    padding-top: 45rem !important;
  }
  .pt-md-50 {
    padding-top: 50rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 1rem !important;
  }
  .pe-md-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-md-2 {
    padding-right: 2rem !important;
  }
  .pe-md-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-md-3 {
    padding-right: 3rem !important;
  }
  .pe-md-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-md-4 {
    padding-right: 4rem !important;
  }
  .pe-md-5 {
    padding-right: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 7rem !important;
  }
  .pe-md-8 {
    padding-right: 8rem !important;
  }
  .pe-md-9 {
    padding-right: 9rem !important;
  }
  .pe-md-10 {
    padding-right: 10rem !important;
  }
  .pe-md-13 {
    padding-right: 13rem !important;
  }
  .pe-md-15 {
    padding-right: 15rem !important;
  }
  .pe-md-20 {
    padding-right: 20rem !important;
  }
  .pe-md-25 {
    padding-right: 25rem !important;
  }
  .pe-md-30 {
    padding-right: 30rem !important;
  }
  .pe-md-35 {
    padding-right: 35rem !important;
  }
  .pe-md-40 {
    padding-right: 40rem !important;
  }
  .pe-md-45 {
    padding-right: 45rem !important;
  }
  .pe-md-50 {
    padding-right: 50rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .pb-md-13 {
    padding-bottom: 13rem !important;
  }
  .pb-md-15 {
    padding-bottom: 15rem !important;
  }
  .pb-md-20 {
    padding-bottom: 20rem !important;
  }
  .pb-md-25 {
    padding-bottom: 25rem !important;
  }
  .pb-md-30 {
    padding-bottom: 30rem !important;
  }
  .pb-md-35 {
    padding-bottom: 35rem !important;
  }
  .pb-md-40 {
    padding-bottom: 40rem !important;
  }
  .pb-md-45 {
    padding-bottom: 45rem !important;
  }
  .pb-md-50 {
    padding-bottom: 50rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 1rem !important;
  }
  .ps-md-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-md-2 {
    padding-left: 2rem !important;
  }
  .ps-md-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-md-3 {
    padding-left: 3rem !important;
  }
  .ps-md-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-md-4 {
    padding-left: 4rem !important;
  }
  .ps-md-5 {
    padding-left: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 7rem !important;
  }
  .ps-md-8 {
    padding-left: 8rem !important;
  }
  .ps-md-9 {
    padding-left: 9rem !important;
  }
  .ps-md-10 {
    padding-left: 10rem !important;
  }
  .ps-md-13 {
    padding-left: 13rem !important;
  }
  .ps-md-15 {
    padding-left: 15rem !important;
  }
  .ps-md-20 {
    padding-left: 20rem !important;
  }
  .ps-md-25 {
    padding-left: 25rem !important;
  }
  .ps-md-30 {
    padding-left: 30rem !important;
  }
  .ps-md-35 {
    padding-left: 35rem !important;
  }
  .ps-md-40 {
    padding-left: 40rem !important;
  }
  .ps-md-45 {
    padding-left: 45rem !important;
  }
  .ps-md-50 {
    padding-left: 50rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-0_5 {
    gap: 0.5rem !important;
  }
  .gap-md-1 {
    gap: 1rem !important;
  }
  .gap-md-1_5 {
    gap: 1.5rem !important;
  }
  .gap-md-2 {
    gap: 2rem !important;
  }
  .gap-md-2_5 {
    gap: 2.5rem !important;
  }
  .gap-md-3 {
    gap: 3rem !important;
  }
  .gap-md-3_5 {
    gap: 3.5rem !important;
  }
  .gap-md-4 {
    gap: 4rem !important;
  }
  .gap-md-5 {
    gap: 5rem !important;
  }
  .gap-md-6 {
    gap: 6rem !important;
  }
  .gap-md-7 {
    gap: 7rem !important;
  }
  .gap-md-8 {
    gap: 8rem !important;
  }
  .gap-md-9 {
    gap: 9rem !important;
  }
  .gap-md-10 {
    gap: 10rem !important;
  }
  .gap-md-13 {
    gap: 13rem !important;
  }
  .gap-md-15 {
    gap: 15rem !important;
  }
  .gap-md-20 {
    gap: 20rem !important;
  }
  .gap-md-25 {
    gap: 25rem !important;
  }
  .gap-md-30 {
    gap: 30rem !important;
  }
  .gap-md-35 {
    gap: 35rem !important;
  }
  .gap-md-40 {
    gap: 40rem !important;
  }
  .gap-md-45 {
    gap: 45rem !important;
  }
  .gap-md-50 {
    gap: 50rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-1 {
    row-gap: 1rem !important;
  }
  .row-gap-md-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-2 {
    row-gap: 2rem !important;
  }
  .row-gap-md-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 3rem !important;
  }
  .row-gap-md-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-md-4 {
    row-gap: 4rem !important;
  }
  .row-gap-md-5 {
    row-gap: 5rem !important;
  }
  .row-gap-md-6 {
    row-gap: 6rem !important;
  }
  .row-gap-md-7 {
    row-gap: 7rem !important;
  }
  .row-gap-md-8 {
    row-gap: 8rem !important;
  }
  .row-gap-md-9 {
    row-gap: 9rem !important;
  }
  .row-gap-md-10 {
    row-gap: 10rem !important;
  }
  .row-gap-md-13 {
    row-gap: 13rem !important;
  }
  .row-gap-md-15 {
    row-gap: 15rem !important;
  }
  .row-gap-md-20 {
    row-gap: 20rem !important;
  }
  .row-gap-md-25 {
    row-gap: 25rem !important;
  }
  .row-gap-md-30 {
    row-gap: 30rem !important;
  }
  .row-gap-md-35 {
    row-gap: 35rem !important;
  }
  .row-gap-md-40 {
    row-gap: 40rem !important;
  }
  .row-gap-md-45 {
    row-gap: 45rem !important;
  }
  .row-gap-md-50 {
    row-gap: 50rem !important;
  }
  .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-md-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-md-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-md-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-md-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-md-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-md-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-md-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-md-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-md-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-md-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-md-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-md-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-md-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-md-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-md-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-md-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-md-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-md-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-md-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-md-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-md-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-md-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-md-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !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;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-0_5 {
    margin: 0.5rem !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-1_5 {
    margin: 1.5rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-2_5 {
    margin: 2.5rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-3_5 {
    margin: 3.5rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-13 {
    margin: 13rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .m-lg-20 {
    margin: 20rem !important;
  }
  .m-lg-25 {
    margin: 25rem !important;
  }
  .m-lg-30 {
    margin: 30rem !important;
  }
  .m-lg-35 {
    margin: 35rem !important;
  }
  .m-lg-40 {
    margin: 40rem !important;
  }
  .m-lg-45 {
    margin: 45rem !important;
  }
  .m-lg-50 {
    margin: 50rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-lg-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-lg-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-lg-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-lg-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-lg-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-lg-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-lg-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-lg-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-lg-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-lg-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-lg-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-lg-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-lg-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-lg-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-lg-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-lg-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-13 {
    margin-top: 13rem !important;
  }
  .mt-lg-15 {
    margin-top: 15rem !important;
  }
  .mt-lg-20 {
    margin-top: 20rem !important;
  }
  .mt-lg-25 {
    margin-top: 25rem !important;
  }
  .mt-lg-30 {
    margin-top: 30rem !important;
  }
  .mt-lg-35 {
    margin-top: 35rem !important;
  }
  .mt-lg-40 {
    margin-top: 40rem !important;
  }
  .mt-lg-45 {
    margin-top: 45rem !important;
  }
  .mt-lg-50 {
    margin-top: 50rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 1rem !important;
  }
  .me-lg-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-lg-2 {
    margin-right: 2rem !important;
  }
  .me-lg-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-lg-3 {
    margin-right: 3rem !important;
  }
  .me-lg-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-lg-4 {
    margin-right: 4rem !important;
  }
  .me-lg-5 {
    margin-right: 5rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 7rem !important;
  }
  .me-lg-8 {
    margin-right: 8rem !important;
  }
  .me-lg-9 {
    margin-right: 9rem !important;
  }
  .me-lg-10 {
    margin-right: 10rem !important;
  }
  .me-lg-13 {
    margin-right: 13rem !important;
  }
  .me-lg-15 {
    margin-right: 15rem !important;
  }
  .me-lg-20 {
    margin-right: 20rem !important;
  }
  .me-lg-25 {
    margin-right: 25rem !important;
  }
  .me-lg-30 {
    margin-right: 30rem !important;
  }
  .me-lg-35 {
    margin-right: 35rem !important;
  }
  .me-lg-40 {
    margin-right: 40rem !important;
  }
  .me-lg-45 {
    margin-right: 45rem !important;
  }
  .me-lg-50 {
    margin-right: 50rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }
  .mb-lg-25 {
    margin-bottom: 25rem !important;
  }
  .mb-lg-30 {
    margin-bottom: 30rem !important;
  }
  .mb-lg-35 {
    margin-bottom: 35rem !important;
  }
  .mb-lg-40 {
    margin-bottom: 40rem !important;
  }
  .mb-lg-45 {
    margin-bottom: 45rem !important;
  }
  .mb-lg-50 {
    margin-bottom: 50rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 1rem !important;
  }
  .ms-lg-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 2rem !important;
  }
  .ms-lg-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 3rem !important;
  }
  .ms-lg-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 4rem !important;
  }
  .ms-lg-5 {
    margin-left: 5rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 7rem !important;
  }
  .ms-lg-8 {
    margin-left: 8rem !important;
  }
  .ms-lg-9 {
    margin-left: 9rem !important;
  }
  .ms-lg-10 {
    margin-left: 10rem !important;
  }
  .ms-lg-13 {
    margin-left: 13rem !important;
  }
  .ms-lg-15 {
    margin-left: 15rem !important;
  }
  .ms-lg-20 {
    margin-left: 20rem !important;
  }
  .ms-lg-25 {
    margin-left: 25rem !important;
  }
  .ms-lg-30 {
    margin-left: 30rem !important;
  }
  .ms-lg-35 {
    margin-left: 35rem !important;
  }
  .ms-lg-40 {
    margin-left: 40rem !important;
  }
  .ms-lg-45 {
    margin-left: 45rem !important;
  }
  .ms-lg-50 {
    margin-left: 50rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .m-lg-n0_5 {
    margin: -0.5rem !important;
  }
  .m-lg-n1 {
    margin: -1rem !important;
  }
  .m-lg-n1_5 {
    margin: -1.5rem !important;
  }
  .m-lg-n2 {
    margin: -2rem !important;
  }
  .m-lg-n2_5 {
    margin: -2.5rem !important;
  }
  .m-lg-n3 {
    margin: -3rem !important;
  }
  .m-lg-n3_5 {
    margin: -3.5rem !important;
  }
  .m-lg-n4 {
    margin: -4rem !important;
  }
  .m-lg-n5 {
    margin: -5rem !important;
  }
  .m-lg-n6 {
    margin: -6rem !important;
  }
  .m-lg-n7 {
    margin: -7rem !important;
  }
  .m-lg-n8 {
    margin: -8rem !important;
  }
  .m-lg-n9 {
    margin: -9rem !important;
  }
  .m-lg-n10 {
    margin: -10rem !important;
  }
  .m-lg-n13 {
    margin: -13rem !important;
  }
  .m-lg-n15 {
    margin: -15rem !important;
  }
  .m-lg-n20 {
    margin: -20rem !important;
  }
  .m-lg-n25 {
    margin: -25rem !important;
  }
  .m-lg-n30 {
    margin: -30rem !important;
  }
  .m-lg-n35 {
    margin: -35rem !important;
  }
  .m-lg-n40 {
    margin: -40rem !important;
  }
  .m-lg-n45 {
    margin: -45rem !important;
  }
  .m-lg-n50 {
    margin: -50rem !important;
  }
  .mx-lg-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-lg-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-lg-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-lg-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-lg-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-lg-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-lg-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-lg-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-lg-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-lg-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-lg-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-lg-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-lg-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-lg-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-lg-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-lg-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-lg-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-lg-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-lg-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-lg-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-lg-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-lg-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-lg-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-lg-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-lg-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-lg-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-lg-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-lg-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-lg-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-lg-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-lg-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-lg-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-lg-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-lg-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-lg-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-lg-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-lg-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-lg-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-lg-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-lg-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-lg-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-lg-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-lg-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-lg-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-lg-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-lg-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-lg-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-lg-n1 {
    margin-top: -1rem !important;
  }
  .mt-lg-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-lg-n2 {
    margin-top: -2rem !important;
  }
  .mt-lg-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-lg-n3 {
    margin-top: -3rem !important;
  }
  .mt-lg-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-lg-n4 {
    margin-top: -4rem !important;
  }
  .mt-lg-n5 {
    margin-top: -5rem !important;
  }
  .mt-lg-n6 {
    margin-top: -6rem !important;
  }
  .mt-lg-n7 {
    margin-top: -7rem !important;
  }
  .mt-lg-n8 {
    margin-top: -8rem !important;
  }
  .mt-lg-n9 {
    margin-top: -9rem !important;
  }
  .mt-lg-n10 {
    margin-top: -10rem !important;
  }
  .mt-lg-n13 {
    margin-top: -13rem !important;
  }
  .mt-lg-n15 {
    margin-top: -15rem !important;
  }
  .mt-lg-n20 {
    margin-top: -20rem !important;
  }
  .mt-lg-n25 {
    margin-top: -25rem !important;
  }
  .mt-lg-n30 {
    margin-top: -30rem !important;
  }
  .mt-lg-n35 {
    margin-top: -35rem !important;
  }
  .mt-lg-n40 {
    margin-top: -40rem !important;
  }
  .mt-lg-n45 {
    margin-top: -45rem !important;
  }
  .mt-lg-n50 {
    margin-top: -50rem !important;
  }
  .me-lg-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-lg-n1 {
    margin-right: -1rem !important;
  }
  .me-lg-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-lg-n2 {
    margin-right: -2rem !important;
  }
  .me-lg-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-lg-n3 {
    margin-right: -3rem !important;
  }
  .me-lg-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-lg-n4 {
    margin-right: -4rem !important;
  }
  .me-lg-n5 {
    margin-right: -5rem !important;
  }
  .me-lg-n6 {
    margin-right: -6rem !important;
  }
  .me-lg-n7 {
    margin-right: -7rem !important;
  }
  .me-lg-n8 {
    margin-right: -8rem !important;
  }
  .me-lg-n9 {
    margin-right: -9rem !important;
  }
  .me-lg-n10 {
    margin-right: -10rem !important;
  }
  .me-lg-n13 {
    margin-right: -13rem !important;
  }
  .me-lg-n15 {
    margin-right: -15rem !important;
  }
  .me-lg-n20 {
    margin-right: -20rem !important;
  }
  .me-lg-n25 {
    margin-right: -25rem !important;
  }
  .me-lg-n30 {
    margin-right: -30rem !important;
  }
  .me-lg-n35 {
    margin-right: -35rem !important;
  }
  .me-lg-n40 {
    margin-right: -40rem !important;
  }
  .me-lg-n45 {
    margin-right: -45rem !important;
  }
  .me-lg-n50 {
    margin-right: -50rem !important;
  }
  .mb-lg-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-lg-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-lg-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-lg-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-lg-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-lg-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-lg-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-lg-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-lg-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-lg-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-lg-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-lg-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-lg-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-lg-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-lg-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-lg-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-lg-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-lg-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-lg-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-lg-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-lg-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-lg-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-lg-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-lg-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-lg-n1 {
    margin-left: -1rem !important;
  }
  .ms-lg-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-lg-n2 {
    margin-left: -2rem !important;
  }
  .ms-lg-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-lg-n3 {
    margin-left: -3rem !important;
  }
  .ms-lg-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-lg-n4 {
    margin-left: -4rem !important;
  }
  .ms-lg-n5 {
    margin-left: -5rem !important;
  }
  .ms-lg-n6 {
    margin-left: -6rem !important;
  }
  .ms-lg-n7 {
    margin-left: -7rem !important;
  }
  .ms-lg-n8 {
    margin-left: -8rem !important;
  }
  .ms-lg-n9 {
    margin-left: -9rem !important;
  }
  .ms-lg-n10 {
    margin-left: -10rem !important;
  }
  .ms-lg-n13 {
    margin-left: -13rem !important;
  }
  .ms-lg-n15 {
    margin-left: -15rem !important;
  }
  .ms-lg-n20 {
    margin-left: -20rem !important;
  }
  .ms-lg-n25 {
    margin-left: -25rem !important;
  }
  .ms-lg-n30 {
    margin-left: -30rem !important;
  }
  .ms-lg-n35 {
    margin-left: -35rem !important;
  }
  .ms-lg-n40 {
    margin-left: -40rem !important;
  }
  .ms-lg-n45 {
    margin-left: -45rem !important;
  }
  .ms-lg-n50 {
    margin-left: -50rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-0_5 {
    padding: 0.5rem !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-1_5 {
    padding: 1.5rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-2_5 {
    padding: 2.5rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-3_5 {
    padding: 3.5rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .p-lg-13 {
    padding: 13rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .p-lg-20 {
    padding: 20rem !important;
  }
  .p-lg-25 {
    padding: 25rem !important;
  }
  .p-lg-30 {
    padding: 30rem !important;
  }
  .p-lg-35 {
    padding: 35rem !important;
  }
  .p-lg-40 {
    padding: 40rem !important;
  }
  .p-lg-45 {
    padding: 45rem !important;
  }
  .p-lg-50 {
    padding: 50rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-lg-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-lg-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-lg-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-lg-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-lg-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-lg-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-lg-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-lg-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-lg-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-lg-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-lg-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-lg-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-lg-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-lg-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-lg-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-lg-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-lg-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pt-lg-13 {
    padding-top: 13rem !important;
  }
  .pt-lg-15 {
    padding-top: 15rem !important;
  }
  .pt-lg-20 {
    padding-top: 20rem !important;
  }
  .pt-lg-25 {
    padding-top: 25rem !important;
  }
  .pt-lg-30 {
    padding-top: 30rem !important;
  }
  .pt-lg-35 {
    padding-top: 35rem !important;
  }
  .pt-lg-40 {
    padding-top: 40rem !important;
  }
  .pt-lg-45 {
    padding-top: 45rem !important;
  }
  .pt-lg-50 {
    padding-top: 50rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 1rem !important;
  }
  .pe-lg-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 2rem !important;
  }
  .pe-lg-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 3rem !important;
  }
  .pe-lg-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 4rem !important;
  }
  .pe-lg-5 {
    padding-right: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 7rem !important;
  }
  .pe-lg-8 {
    padding-right: 8rem !important;
  }
  .pe-lg-9 {
    padding-right: 9rem !important;
  }
  .pe-lg-10 {
    padding-right: 10rem !important;
  }
  .pe-lg-13 {
    padding-right: 13rem !important;
  }
  .pe-lg-15 {
    padding-right: 15rem !important;
  }
  .pe-lg-20 {
    padding-right: 20rem !important;
  }
  .pe-lg-25 {
    padding-right: 25rem !important;
  }
  .pe-lg-30 {
    padding-right: 30rem !important;
  }
  .pe-lg-35 {
    padding-right: 35rem !important;
  }
  .pe-lg-40 {
    padding-right: 40rem !important;
  }
  .pe-lg-45 {
    padding-right: 45rem !important;
  }
  .pe-lg-50 {
    padding-right: 50rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }
  .pb-lg-25 {
    padding-bottom: 25rem !important;
  }
  .pb-lg-30 {
    padding-bottom: 30rem !important;
  }
  .pb-lg-35 {
    padding-bottom: 35rem !important;
  }
  .pb-lg-40 {
    padding-bottom: 40rem !important;
  }
  .pb-lg-45 {
    padding-bottom: 45rem !important;
  }
  .pb-lg-50 {
    padding-bottom: 50rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 1rem !important;
  }
  .ps-lg-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 2rem !important;
  }
  .ps-lg-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 3rem !important;
  }
  .ps-lg-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 4rem !important;
  }
  .ps-lg-5 {
    padding-left: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 7rem !important;
  }
  .ps-lg-8 {
    padding-left: 8rem !important;
  }
  .ps-lg-9 {
    padding-left: 9rem !important;
  }
  .ps-lg-10 {
    padding-left: 10rem !important;
  }
  .ps-lg-13 {
    padding-left: 13rem !important;
  }
  .ps-lg-15 {
    padding-left: 15rem !important;
  }
  .ps-lg-20 {
    padding-left: 20rem !important;
  }
  .ps-lg-25 {
    padding-left: 25rem !important;
  }
  .ps-lg-30 {
    padding-left: 30rem !important;
  }
  .ps-lg-35 {
    padding-left: 35rem !important;
  }
  .ps-lg-40 {
    padding-left: 40rem !important;
  }
  .ps-lg-45 {
    padding-left: 45rem !important;
  }
  .ps-lg-50 {
    padding-left: 50rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-0_5 {
    gap: 0.5rem !important;
  }
  .gap-lg-1 {
    gap: 1rem !important;
  }
  .gap-lg-1_5 {
    gap: 1.5rem !important;
  }
  .gap-lg-2 {
    gap: 2rem !important;
  }
  .gap-lg-2_5 {
    gap: 2.5rem !important;
  }
  .gap-lg-3 {
    gap: 3rem !important;
  }
  .gap-lg-3_5 {
    gap: 3.5rem !important;
  }
  .gap-lg-4 {
    gap: 4rem !important;
  }
  .gap-lg-5 {
    gap: 5rem !important;
  }
  .gap-lg-6 {
    gap: 6rem !important;
  }
  .gap-lg-7 {
    gap: 7rem !important;
  }
  .gap-lg-8 {
    gap: 8rem !important;
  }
  .gap-lg-9 {
    gap: 9rem !important;
  }
  .gap-lg-10 {
    gap: 10rem !important;
  }
  .gap-lg-13 {
    gap: 13rem !important;
  }
  .gap-lg-15 {
    gap: 15rem !important;
  }
  .gap-lg-20 {
    gap: 20rem !important;
  }
  .gap-lg-25 {
    gap: 25rem !important;
  }
  .gap-lg-30 {
    gap: 30rem !important;
  }
  .gap-lg-35 {
    gap: 35rem !important;
  }
  .gap-lg-40 {
    gap: 40rem !important;
  }
  .gap-lg-45 {
    gap: 45rem !important;
  }
  .gap-lg-50 {
    gap: 50rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-1 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 3rem !important;
  }
  .row-gap-lg-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 4rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 5rem !important;
  }
  .row-gap-lg-6 {
    row-gap: 6rem !important;
  }
  .row-gap-lg-7 {
    row-gap: 7rem !important;
  }
  .row-gap-lg-8 {
    row-gap: 8rem !important;
  }
  .row-gap-lg-9 {
    row-gap: 9rem !important;
  }
  .row-gap-lg-10 {
    row-gap: 10rem !important;
  }
  .row-gap-lg-13 {
    row-gap: 13rem !important;
  }
  .row-gap-lg-15 {
    row-gap: 15rem !important;
  }
  .row-gap-lg-20 {
    row-gap: 20rem !important;
  }
  .row-gap-lg-25 {
    row-gap: 25rem !important;
  }
  .row-gap-lg-30 {
    row-gap: 30rem !important;
  }
  .row-gap-lg-35 {
    row-gap: 35rem !important;
  }
  .row-gap-lg-40 {
    row-gap: 40rem !important;
  }
  .row-gap-lg-45 {
    row-gap: 45rem !important;
  }
  .row-gap-lg-50 {
    row-gap: 50rem !important;
  }
  .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-lg-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-lg-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-lg-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-lg-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-lg-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-lg-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-lg-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-lg-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-lg-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-lg-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-lg-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-lg-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-lg-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-lg-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-lg-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-lg-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-lg-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-lg-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-lg-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-lg-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-lg-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !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;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-13 {
    margin: 13rem !important;
  }
  .m-xl-15 {
    margin: 15rem !important;
  }
  .m-xl-20 {
    margin: 20rem !important;
  }
  .m-xl-25 {
    margin: 25rem !important;
  }
  .m-xl-30 {
    margin: 30rem !important;
  }
  .m-xl-35 {
    margin: 35rem !important;
  }
  .m-xl-40 {
    margin: 40rem !important;
  }
  .m-xl-45 {
    margin: 45rem !important;
  }
  .m-xl-50 {
    margin: 50rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-13 {
    margin-top: 13rem !important;
  }
  .mt-xl-15 {
    margin-top: 15rem !important;
  }
  .mt-xl-20 {
    margin-top: 20rem !important;
  }
  .mt-xl-25 {
    margin-top: 25rem !important;
  }
  .mt-xl-30 {
    margin-top: 30rem !important;
  }
  .mt-xl-35 {
    margin-top: 35rem !important;
  }
  .mt-xl-40 {
    margin-top: 40rem !important;
  }
  .mt-xl-45 {
    margin-top: 45rem !important;
  }
  .mt-xl-50 {
    margin-top: 50rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 1rem !important;
  }
  .me-xl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xl-2 {
    margin-right: 2rem !important;
  }
  .me-xl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xl-3 {
    margin-right: 3rem !important;
  }
  .me-xl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xl-4 {
    margin-right: 4rem !important;
  }
  .me-xl-5 {
    margin-right: 5rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 7rem !important;
  }
  .me-xl-8 {
    margin-right: 8rem !important;
  }
  .me-xl-9 {
    margin-right: 9rem !important;
  }
  .me-xl-10 {
    margin-right: 10rem !important;
  }
  .me-xl-13 {
    margin-right: 13rem !important;
  }
  .me-xl-15 {
    margin-right: 15rem !important;
  }
  .me-xl-20 {
    margin-right: 20rem !important;
  }
  .me-xl-25 {
    margin-right: 25rem !important;
  }
  .me-xl-30 {
    margin-right: 30rem !important;
  }
  .me-xl-35 {
    margin-right: 35rem !important;
  }
  .me-xl-40 {
    margin-right: 40rem !important;
  }
  .me-xl-45 {
    margin-right: 45rem !important;
  }
  .me-xl-50 {
    margin-right: 50rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 1rem !important;
  }
  .ms-xl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 2rem !important;
  }
  .ms-xl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 3rem !important;
  }
  .ms-xl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 4rem !important;
  }
  .ms-xl-5 {
    margin-left: 5rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 7rem !important;
  }
  .ms-xl-8 {
    margin-left: 8rem !important;
  }
  .ms-xl-9 {
    margin-left: 9rem !important;
  }
  .ms-xl-10 {
    margin-left: 10rem !important;
  }
  .ms-xl-13 {
    margin-left: 13rem !important;
  }
  .ms-xl-15 {
    margin-left: 15rem !important;
  }
  .ms-xl-20 {
    margin-left: 20rem !important;
  }
  .ms-xl-25 {
    margin-left: 25rem !important;
  }
  .ms-xl-30 {
    margin-left: 30rem !important;
  }
  .ms-xl-35 {
    margin-left: 35rem !important;
  }
  .ms-xl-40 {
    margin-left: 40rem !important;
  }
  .ms-xl-45 {
    margin-left: 45rem !important;
  }
  .ms-xl-50 {
    margin-left: 50rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .m-xl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xl-n1 {
    margin: -1rem !important;
  }
  .m-xl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xl-n2 {
    margin: -2rem !important;
  }
  .m-xl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xl-n3 {
    margin: -3rem !important;
  }
  .m-xl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xl-n4 {
    margin: -4rem !important;
  }
  .m-xl-n5 {
    margin: -5rem !important;
  }
  .m-xl-n6 {
    margin: -6rem !important;
  }
  .m-xl-n7 {
    margin: -7rem !important;
  }
  .m-xl-n8 {
    margin: -8rem !important;
  }
  .m-xl-n9 {
    margin: -9rem !important;
  }
  .m-xl-n10 {
    margin: -10rem !important;
  }
  .m-xl-n13 {
    margin: -13rem !important;
  }
  .m-xl-n15 {
    margin: -15rem !important;
  }
  .m-xl-n20 {
    margin: -20rem !important;
  }
  .m-xl-n25 {
    margin: -25rem !important;
  }
  .m-xl-n30 {
    margin: -30rem !important;
  }
  .m-xl-n35 {
    margin: -35rem !important;
  }
  .m-xl-n40 {
    margin: -40rem !important;
  }
  .m-xl-n45 {
    margin: -45rem !important;
  }
  .m-xl-n50 {
    margin: -50rem !important;
  }
  .mx-xl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xl-n50 {
    margin-top: -50rem !important;
  }
  .me-xl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xl-n1 {
    margin-right: -1rem !important;
  }
  .me-xl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xl-n2 {
    margin-right: -2rem !important;
  }
  .me-xl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xl-n3 {
    margin-right: -3rem !important;
  }
  .me-xl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xl-n4 {
    margin-right: -4rem !important;
  }
  .me-xl-n5 {
    margin-right: -5rem !important;
  }
  .me-xl-n6 {
    margin-right: -6rem !important;
  }
  .me-xl-n7 {
    margin-right: -7rem !important;
  }
  .me-xl-n8 {
    margin-right: -8rem !important;
  }
  .me-xl-n9 {
    margin-right: -9rem !important;
  }
  .me-xl-n10 {
    margin-right: -10rem !important;
  }
  .me-xl-n13 {
    margin-right: -13rem !important;
  }
  .me-xl-n15 {
    margin-right: -15rem !important;
  }
  .me-xl-n20 {
    margin-right: -20rem !important;
  }
  .me-xl-n25 {
    margin-right: -25rem !important;
  }
  .me-xl-n30 {
    margin-right: -30rem !important;
  }
  .me-xl-n35 {
    margin-right: -35rem !important;
  }
  .me-xl-n40 {
    margin-right: -40rem !important;
  }
  .me-xl-n45 {
    margin-right: -45rem !important;
  }
  .me-xl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xl-n50 {
    margin-left: -50rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .p-xl-13 {
    padding: 13rem !important;
  }
  .p-xl-15 {
    padding: 15rem !important;
  }
  .p-xl-20 {
    padding: 20rem !important;
  }
  .p-xl-25 {
    padding: 25rem !important;
  }
  .p-xl-30 {
    padding: 30rem !important;
  }
  .p-xl-35 {
    padding: 35rem !important;
  }
  .p-xl-40 {
    padding: 40rem !important;
  }
  .p-xl-45 {
    padding: 45rem !important;
  }
  .p-xl-50 {
    padding: 50rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pt-xl-13 {
    padding-top: 13rem !important;
  }
  .pt-xl-15 {
    padding-top: 15rem !important;
  }
  .pt-xl-20 {
    padding-top: 20rem !important;
  }
  .pt-xl-25 {
    padding-top: 25rem !important;
  }
  .pt-xl-30 {
    padding-top: 30rem !important;
  }
  .pt-xl-35 {
    padding-top: 35rem !important;
  }
  .pt-xl-40 {
    padding-top: 40rem !important;
  }
  .pt-xl-45 {
    padding-top: 45rem !important;
  }
  .pt-xl-50 {
    padding-top: 50rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 1rem !important;
  }
  .pe-xl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 2rem !important;
  }
  .pe-xl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 3rem !important;
  }
  .pe-xl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 4rem !important;
  }
  .pe-xl-5 {
    padding-right: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 7rem !important;
  }
  .pe-xl-8 {
    padding-right: 8rem !important;
  }
  .pe-xl-9 {
    padding-right: 9rem !important;
  }
  .pe-xl-10 {
    padding-right: 10rem !important;
  }
  .pe-xl-13 {
    padding-right: 13rem !important;
  }
  .pe-xl-15 {
    padding-right: 15rem !important;
  }
  .pe-xl-20 {
    padding-right: 20rem !important;
  }
  .pe-xl-25 {
    padding-right: 25rem !important;
  }
  .pe-xl-30 {
    padding-right: 30rem !important;
  }
  .pe-xl-35 {
    padding-right: 35rem !important;
  }
  .pe-xl-40 {
    padding-right: 40rem !important;
  }
  .pe-xl-45 {
    padding-right: 45rem !important;
  }
  .pe-xl-50 {
    padding-right: 50rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 1rem !important;
  }
  .ps-xl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 2rem !important;
  }
  .ps-xl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 3rem !important;
  }
  .ps-xl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 4rem !important;
  }
  .ps-xl-5 {
    padding-left: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 7rem !important;
  }
  .ps-xl-8 {
    padding-left: 8rem !important;
  }
  .ps-xl-9 {
    padding-left: 9rem !important;
  }
  .ps-xl-10 {
    padding-left: 10rem !important;
  }
  .ps-xl-13 {
    padding-left: 13rem !important;
  }
  .ps-xl-15 {
    padding-left: 15rem !important;
  }
  .ps-xl-20 {
    padding-left: 20rem !important;
  }
  .ps-xl-25 {
    padding-left: 25rem !important;
  }
  .ps-xl-30 {
    padding-left: 30rem !important;
  }
  .ps-xl-35 {
    padding-left: 35rem !important;
  }
  .ps-xl-40 {
    padding-left: 40rem !important;
  }
  .ps-xl-45 {
    padding-left: 45rem !important;
  }
  .ps-xl-50 {
    padding-left: 50rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-0_5 {
    gap: 0.5rem !important;
  }
  .gap-xl-1 {
    gap: 1rem !important;
  }
  .gap-xl-1_5 {
    gap: 1.5rem !important;
  }
  .gap-xl-2 {
    gap: 2rem !important;
  }
  .gap-xl-2_5 {
    gap: 2.5rem !important;
  }
  .gap-xl-3 {
    gap: 3rem !important;
  }
  .gap-xl-3_5 {
    gap: 3.5rem !important;
  }
  .gap-xl-4 {
    gap: 4rem !important;
  }
  .gap-xl-5 {
    gap: 5rem !important;
  }
  .gap-xl-6 {
    gap: 6rem !important;
  }
  .gap-xl-7 {
    gap: 7rem !important;
  }
  .gap-xl-8 {
    gap: 8rem !important;
  }
  .gap-xl-9 {
    gap: 9rem !important;
  }
  .gap-xl-10 {
    gap: 10rem !important;
  }
  .gap-xl-13 {
    gap: 13rem !important;
  }
  .gap-xl-15 {
    gap: 15rem !important;
  }
  .gap-xl-20 {
    gap: 20rem !important;
  }
  .gap-xl-25 {
    gap: 25rem !important;
  }
  .gap-xl-30 {
    gap: 30rem !important;
  }
  .gap-xl-35 {
    gap: 35rem !important;
  }
  .gap-xl-40 {
    gap: 40rem !important;
  }
  .gap-xl-45 {
    gap: 45rem !important;
  }
  .gap-xl-50 {
    gap: 50rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-1 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 3rem !important;
  }
  .row-gap-xl-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 4rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 5rem !important;
  }
  .row-gap-xl-6 {
    row-gap: 6rem !important;
  }
  .row-gap-xl-7 {
    row-gap: 7rem !important;
  }
  .row-gap-xl-8 {
    row-gap: 8rem !important;
  }
  .row-gap-xl-9 {
    row-gap: 9rem !important;
  }
  .row-gap-xl-10 {
    row-gap: 10rem !important;
  }
  .row-gap-xl-13 {
    row-gap: 13rem !important;
  }
  .row-gap-xl-15 {
    row-gap: 15rem !important;
  }
  .row-gap-xl-20 {
    row-gap: 20rem !important;
  }
  .row-gap-xl-25 {
    row-gap: 25rem !important;
  }
  .row-gap-xl-30 {
    row-gap: 30rem !important;
  }
  .row-gap-xl-35 {
    row-gap: 35rem !important;
  }
  .row-gap-xl-40 {
    row-gap: 40rem !important;
  }
  .row-gap-xl-45 {
    row-gap: 45rem !important;
  }
  .row-gap-xl-50 {
    row-gap: 50rem !important;
  }
  .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xl-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xl-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-xl-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-xl-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-xl-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-xl-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-xl-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-xl-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-xl-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-xl-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-xl-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-xl-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-xl-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-xl-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-xl-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-xl-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-xl-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-xl-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-xl-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-xl-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-xl-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !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: 1500px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-13 {
    margin: 13rem !important;
  }
  .m-xxl-15 {
    margin: 15rem !important;
  }
  .m-xxl-20 {
    margin: 20rem !important;
  }
  .m-xxl-25 {
    margin: 25rem !important;
  }
  .m-xxl-30 {
    margin: 30rem !important;
  }
  .m-xxl-35 {
    margin: 35rem !important;
  }
  .m-xxl-40 {
    margin: 40rem !important;
  }
  .m-xxl-45 {
    margin: 45rem !important;
  }
  .m-xxl-50 {
    margin: 50rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xxl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xxl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xxl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xxl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xxl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xxl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xxl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xxl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xxl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xxl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xxl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xxl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xxl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xxl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxl-25 {
    margin-top: 25rem !important;
  }
  .mt-xxl-30 {
    margin-top: 30rem !important;
  }
  .mt-xxl-35 {
    margin-top: 35rem !important;
  }
  .mt-xxl-40 {
    margin-top: 40rem !important;
  }
  .mt-xxl-45 {
    margin-top: 45rem !important;
  }
  .mt-xxl-50 {
    margin-top: 50rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxl-13 {
    margin-right: 13rem !important;
  }
  .me-xxl-15 {
    margin-right: 15rem !important;
  }
  .me-xxl-20 {
    margin-right: 20rem !important;
  }
  .me-xxl-25 {
    margin-right: 25rem !important;
  }
  .me-xxl-30 {
    margin-right: 30rem !important;
  }
  .me-xxl-35 {
    margin-right: 35rem !important;
  }
  .me-xxl-40 {
    margin-right: 40rem !important;
  }
  .me-xxl-45 {
    margin-right: 45rem !important;
  }
  .me-xxl-50 {
    margin-right: 50rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxl-13 {
    margin-left: 13rem !important;
  }
  .ms-xxl-15 {
    margin-left: 15rem !important;
  }
  .ms-xxl-20 {
    margin-left: 20rem !important;
  }
  .ms-xxl-25 {
    margin-left: 25rem !important;
  }
  .ms-xxl-30 {
    margin-left: 30rem !important;
  }
  .ms-xxl-35 {
    margin-left: 35rem !important;
  }
  .ms-xxl-40 {
    margin-left: 40rem !important;
  }
  .ms-xxl-45 {
    margin-left: 45rem !important;
  }
  .ms-xxl-50 {
    margin-left: 50rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .m-xxl-n0_5 {
    margin: -0.5rem !important;
  }
  .m-xxl-n1 {
    margin: -1rem !important;
  }
  .m-xxl-n1_5 {
    margin: -1.5rem !important;
  }
  .m-xxl-n2 {
    margin: -2rem !important;
  }
  .m-xxl-n2_5 {
    margin: -2.5rem !important;
  }
  .m-xxl-n3 {
    margin: -3rem !important;
  }
  .m-xxl-n3_5 {
    margin: -3.5rem !important;
  }
  .m-xxl-n4 {
    margin: -4rem !important;
  }
  .m-xxl-n5 {
    margin: -5rem !important;
  }
  .m-xxl-n6 {
    margin: -6rem !important;
  }
  .m-xxl-n7 {
    margin: -7rem !important;
  }
  .m-xxl-n8 {
    margin: -8rem !important;
  }
  .m-xxl-n9 {
    margin: -9rem !important;
  }
  .m-xxl-n10 {
    margin: -10rem !important;
  }
  .m-xxl-n13 {
    margin: -13rem !important;
  }
  .m-xxl-n15 {
    margin: -15rem !important;
  }
  .m-xxl-n20 {
    margin: -20rem !important;
  }
  .m-xxl-n25 {
    margin: -25rem !important;
  }
  .m-xxl-n30 {
    margin: -30rem !important;
  }
  .m-xxl-n35 {
    margin: -35rem !important;
  }
  .m-xxl-n40 {
    margin: -40rem !important;
  }
  .m-xxl-n45 {
    margin: -45rem !important;
  }
  .m-xxl-n50 {
    margin: -50rem !important;
  }
  .mx-xxl-n0_5 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }
  .mx-xxl-n1 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .mx-xxl-n1_5 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }
  .mx-xxl-n2 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }
  .mx-xxl-n2_5 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }
  .mx-xxl-n3 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }
  .mx-xxl-n3_5 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }
  .mx-xxl-n4 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }
  .mx-xxl-n5 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }
  .mx-xxl-n6 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }
  .mx-xxl-n7 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
  }
  .mx-xxl-n8 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }
  .mx-xxl-n9 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
  }
  .mx-xxl-n10 {
    margin-right: -10rem !important;
    margin-left: -10rem !important;
  }
  .mx-xxl-n13 {
    margin-right: -13rem !important;
    margin-left: -13rem !important;
  }
  .mx-xxl-n15 {
    margin-right: -15rem !important;
    margin-left: -15rem !important;
  }
  .mx-xxl-n20 {
    margin-right: -20rem !important;
    margin-left: -20rem !important;
  }
  .mx-xxl-n25 {
    margin-right: -25rem !important;
    margin-left: -25rem !important;
  }
  .mx-xxl-n30 {
    margin-right: -30rem !important;
    margin-left: -30rem !important;
  }
  .mx-xxl-n35 {
    margin-right: -35rem !important;
    margin-left: -35rem !important;
  }
  .mx-xxl-n40 {
    margin-right: -40rem !important;
    margin-left: -40rem !important;
  }
  .mx-xxl-n45 {
    margin-right: -45rem !important;
    margin-left: -45rem !important;
  }
  .mx-xxl-n50 {
    margin-right: -50rem !important;
    margin-left: -50rem !important;
  }
  .my-xxl-n0_5 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }
  .my-xxl-n1 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }
  .my-xxl-n1_5 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }
  .my-xxl-n2 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }
  .my-xxl-n2_5 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }
  .my-xxl-n3 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }
  .my-xxl-n3_5 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }
  .my-xxl-n4 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }
  .my-xxl-n5 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }
  .my-xxl-n6 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }
  .my-xxl-n7 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }
  .my-xxl-n8 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }
  .my-xxl-n9 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }
  .my-xxl-n10 {
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }
  .my-xxl-n13 {
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }
  .my-xxl-n15 {
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }
  .my-xxl-n20 {
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }
  .my-xxl-n25 {
    margin-top: -25rem !important;
    margin-bottom: -25rem !important;
  }
  .my-xxl-n30 {
    margin-top: -30rem !important;
    margin-bottom: -30rem !important;
  }
  .my-xxl-n35 {
    margin-top: -35rem !important;
    margin-bottom: -35rem !important;
  }
  .my-xxl-n40 {
    margin-top: -40rem !important;
    margin-bottom: -40rem !important;
  }
  .my-xxl-n45 {
    margin-top: -45rem !important;
    margin-bottom: -45rem !important;
  }
  .my-xxl-n50 {
    margin-top: -50rem !important;
    margin-bottom: -50rem !important;
  }
  .mt-xxl-n0_5 {
    margin-top: -0.5rem !important;
  }
  .mt-xxl-n1 {
    margin-top: -1rem !important;
  }
  .mt-xxl-n1_5 {
    margin-top: -1.5rem !important;
  }
  .mt-xxl-n2 {
    margin-top: -2rem !important;
  }
  .mt-xxl-n2_5 {
    margin-top: -2.5rem !important;
  }
  .mt-xxl-n3 {
    margin-top: -3rem !important;
  }
  .mt-xxl-n3_5 {
    margin-top: -3.5rem !important;
  }
  .mt-xxl-n4 {
    margin-top: -4rem !important;
  }
  .mt-xxl-n5 {
    margin-top: -5rem !important;
  }
  .mt-xxl-n6 {
    margin-top: -6rem !important;
  }
  .mt-xxl-n7 {
    margin-top: -7rem !important;
  }
  .mt-xxl-n8 {
    margin-top: -8rem !important;
  }
  .mt-xxl-n9 {
    margin-top: -9rem !important;
  }
  .mt-xxl-n10 {
    margin-top: -10rem !important;
  }
  .mt-xxl-n13 {
    margin-top: -13rem !important;
  }
  .mt-xxl-n15 {
    margin-top: -15rem !important;
  }
  .mt-xxl-n20 {
    margin-top: -20rem !important;
  }
  .mt-xxl-n25 {
    margin-top: -25rem !important;
  }
  .mt-xxl-n30 {
    margin-top: -30rem !important;
  }
  .mt-xxl-n35 {
    margin-top: -35rem !important;
  }
  .mt-xxl-n40 {
    margin-top: -40rem !important;
  }
  .mt-xxl-n45 {
    margin-top: -45rem !important;
  }
  .mt-xxl-n50 {
    margin-top: -50rem !important;
  }
  .me-xxl-n0_5 {
    margin-right: -0.5rem !important;
  }
  .me-xxl-n1 {
    margin-right: -1rem !important;
  }
  .me-xxl-n1_5 {
    margin-right: -1.5rem !important;
  }
  .me-xxl-n2 {
    margin-right: -2rem !important;
  }
  .me-xxl-n2_5 {
    margin-right: -2.5rem !important;
  }
  .me-xxl-n3 {
    margin-right: -3rem !important;
  }
  .me-xxl-n3_5 {
    margin-right: -3.5rem !important;
  }
  .me-xxl-n4 {
    margin-right: -4rem !important;
  }
  .me-xxl-n5 {
    margin-right: -5rem !important;
  }
  .me-xxl-n6 {
    margin-right: -6rem !important;
  }
  .me-xxl-n7 {
    margin-right: -7rem !important;
  }
  .me-xxl-n8 {
    margin-right: -8rem !important;
  }
  .me-xxl-n9 {
    margin-right: -9rem !important;
  }
  .me-xxl-n10 {
    margin-right: -10rem !important;
  }
  .me-xxl-n13 {
    margin-right: -13rem !important;
  }
  .me-xxl-n15 {
    margin-right: -15rem !important;
  }
  .me-xxl-n20 {
    margin-right: -20rem !important;
  }
  .me-xxl-n25 {
    margin-right: -25rem !important;
  }
  .me-xxl-n30 {
    margin-right: -30rem !important;
  }
  .me-xxl-n35 {
    margin-right: -35rem !important;
  }
  .me-xxl-n40 {
    margin-right: -40rem !important;
  }
  .me-xxl-n45 {
    margin-right: -45rem !important;
  }
  .me-xxl-n50 {
    margin-right: -50rem !important;
  }
  .mb-xxl-n0_5 {
    margin-bottom: -0.5rem !important;
  }
  .mb-xxl-n1 {
    margin-bottom: -1rem !important;
  }
  .mb-xxl-n1_5 {
    margin-bottom: -1.5rem !important;
  }
  .mb-xxl-n2 {
    margin-bottom: -2rem !important;
  }
  .mb-xxl-n2_5 {
    margin-bottom: -2.5rem !important;
  }
  .mb-xxl-n3 {
    margin-bottom: -3rem !important;
  }
  .mb-xxl-n3_5 {
    margin-bottom: -3.5rem !important;
  }
  .mb-xxl-n4 {
    margin-bottom: -4rem !important;
  }
  .mb-xxl-n5 {
    margin-bottom: -5rem !important;
  }
  .mb-xxl-n6 {
    margin-bottom: -6rem !important;
  }
  .mb-xxl-n7 {
    margin-bottom: -7rem !important;
  }
  .mb-xxl-n8 {
    margin-bottom: -8rem !important;
  }
  .mb-xxl-n9 {
    margin-bottom: -9rem !important;
  }
  .mb-xxl-n10 {
    margin-bottom: -10rem !important;
  }
  .mb-xxl-n13 {
    margin-bottom: -13rem !important;
  }
  .mb-xxl-n15 {
    margin-bottom: -15rem !important;
  }
  .mb-xxl-n20 {
    margin-bottom: -20rem !important;
  }
  .mb-xxl-n25 {
    margin-bottom: -25rem !important;
  }
  .mb-xxl-n30 {
    margin-bottom: -30rem !important;
  }
  .mb-xxl-n35 {
    margin-bottom: -35rem !important;
  }
  .mb-xxl-n40 {
    margin-bottom: -40rem !important;
  }
  .mb-xxl-n45 {
    margin-bottom: -45rem !important;
  }
  .mb-xxl-n50 {
    margin-bottom: -50rem !important;
  }
  .ms-xxl-n0_5 {
    margin-left: -0.5rem !important;
  }
  .ms-xxl-n1 {
    margin-left: -1rem !important;
  }
  .ms-xxl-n1_5 {
    margin-left: -1.5rem !important;
  }
  .ms-xxl-n2 {
    margin-left: -2rem !important;
  }
  .ms-xxl-n2_5 {
    margin-left: -2.5rem !important;
  }
  .ms-xxl-n3 {
    margin-left: -3rem !important;
  }
  .ms-xxl-n3_5 {
    margin-left: -3.5rem !important;
  }
  .ms-xxl-n4 {
    margin-left: -4rem !important;
  }
  .ms-xxl-n5 {
    margin-left: -5rem !important;
  }
  .ms-xxl-n6 {
    margin-left: -6rem !important;
  }
  .ms-xxl-n7 {
    margin-left: -7rem !important;
  }
  .ms-xxl-n8 {
    margin-left: -8rem !important;
  }
  .ms-xxl-n9 {
    margin-left: -9rem !important;
  }
  .ms-xxl-n10 {
    margin-left: -10rem !important;
  }
  .ms-xxl-n13 {
    margin-left: -13rem !important;
  }
  .ms-xxl-n15 {
    margin-left: -15rem !important;
  }
  .ms-xxl-n20 {
    margin-left: -20rem !important;
  }
  .ms-xxl-n25 {
    margin-left: -25rem !important;
  }
  .ms-xxl-n30 {
    margin-left: -30rem !important;
  }
  .ms-xxl-n35 {
    margin-left: -35rem !important;
  }
  .ms-xxl-n40 {
    margin-left: -40rem !important;
  }
  .ms-xxl-n45 {
    margin-left: -45rem !important;
  }
  .ms-xxl-n50 {
    margin-left: -50rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .p-xxl-13 {
    padding: 13rem !important;
  }
  .p-xxl-15 {
    padding: 15rem !important;
  }
  .p-xxl-20 {
    padding: 20rem !important;
  }
  .p-xxl-25 {
    padding: 25rem !important;
  }
  .p-xxl-30 {
    padding: 30rem !important;
  }
  .p-xxl-35 {
    padding: 35rem !important;
  }
  .p-xxl-40 {
    padding: 40rem !important;
  }
  .p-xxl-45 {
    padding: 45rem !important;
  }
  .p-xxl-50 {
    padding: 50rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xxl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xxl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xxl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xxl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xxl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xxl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xxl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xxl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xxl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xxl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xxl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xxl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xxl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xxl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxl-25 {
    padding-top: 25rem !important;
  }
  .pt-xxl-30 {
    padding-top: 30rem !important;
  }
  .pt-xxl-35 {
    padding-top: 35rem !important;
  }
  .pt-xxl-40 {
    padding-top: 40rem !important;
  }
  .pt-xxl-45 {
    padding-top: 45rem !important;
  }
  .pt-xxl-50 {
    padding-top: 50rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxl-10 {
    padding-right: 10rem !important;
  }
  .pe-xxl-13 {
    padding-right: 13rem !important;
  }
  .pe-xxl-15 {
    padding-right: 15rem !important;
  }
  .pe-xxl-20 {
    padding-right: 20rem !important;
  }
  .pe-xxl-25 {
    padding-right: 25rem !important;
  }
  .pe-xxl-30 {
    padding-right: 30rem !important;
  }
  .pe-xxl-35 {
    padding-right: 35rem !important;
  }
  .pe-xxl-40 {
    padding-right: 40rem !important;
  }
  .pe-xxl-45 {
    padding-right: 45rem !important;
  }
  .pe-xxl-50 {
    padding-right: 50rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxl-10 {
    padding-left: 10rem !important;
  }
  .ps-xxl-13 {
    padding-left: 13rem !important;
  }
  .ps-xxl-15 {
    padding-left: 15rem !important;
  }
  .ps-xxl-20 {
    padding-left: 20rem !important;
  }
  .ps-xxl-25 {
    padding-left: 25rem !important;
  }
  .ps-xxl-30 {
    padding-left: 30rem !important;
  }
  .ps-xxl-35 {
    padding-left: 35rem !important;
  }
  .ps-xxl-40 {
    padding-left: 40rem !important;
  }
  .ps-xxl-45 {
    padding-left: 45rem !important;
  }
  .ps-xxl-50 {
    padding-left: 50rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-0_5 {
    gap: 0.5rem !important;
  }
  .gap-xxl-1 {
    gap: 1rem !important;
  }
  .gap-xxl-1_5 {
    gap: 1.5rem !important;
  }
  .gap-xxl-2 {
    gap: 2rem !important;
  }
  .gap-xxl-2_5 {
    gap: 2.5rem !important;
  }
  .gap-xxl-3 {
    gap: 3rem !important;
  }
  .gap-xxl-3_5 {
    gap: 3.5rem !important;
  }
  .gap-xxl-4 {
    gap: 4rem !important;
  }
  .gap-xxl-5 {
    gap: 5rem !important;
  }
  .gap-xxl-6 {
    gap: 6rem !important;
  }
  .gap-xxl-7 {
    gap: 7rem !important;
  }
  .gap-xxl-8 {
    gap: 8rem !important;
  }
  .gap-xxl-9 {
    gap: 9rem !important;
  }
  .gap-xxl-10 {
    gap: 10rem !important;
  }
  .gap-xxl-13 {
    gap: 13rem !important;
  }
  .gap-xxl-15 {
    gap: 15rem !important;
  }
  .gap-xxl-20 {
    gap: 20rem !important;
  }
  .gap-xxl-25 {
    gap: 25rem !important;
  }
  .gap-xxl-30 {
    gap: 30rem !important;
  }
  .gap-xxl-35 {
    gap: 35rem !important;
  }
  .gap-xxl-40 {
    gap: 40rem !important;
  }
  .gap-xxl-45 {
    gap: 45rem !important;
  }
  .gap-xxl-50 {
    gap: 50rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-0_5 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-1 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-1_5 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-2_5 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 3rem !important;
  }
  .row-gap-xxl-3_5 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 4rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 5rem !important;
  }
  .row-gap-xxl-6 {
    row-gap: 6rem !important;
  }
  .row-gap-xxl-7 {
    row-gap: 7rem !important;
  }
  .row-gap-xxl-8 {
    row-gap: 8rem !important;
  }
  .row-gap-xxl-9 {
    row-gap: 9rem !important;
  }
  .row-gap-xxl-10 {
    row-gap: 10rem !important;
  }
  .row-gap-xxl-13 {
    row-gap: 13rem !important;
  }
  .row-gap-xxl-15 {
    row-gap: 15rem !important;
  }
  .row-gap-xxl-20 {
    row-gap: 20rem !important;
  }
  .row-gap-xxl-25 {
    row-gap: 25rem !important;
  }
  .row-gap-xxl-30 {
    row-gap: 30rem !important;
  }
  .row-gap-xxl-35 {
    row-gap: 35rem !important;
  }
  .row-gap-xxl-40 {
    row-gap: 40rem !important;
  }
  .row-gap-xxl-45 {
    row-gap: 45rem !important;
  }
  .row-gap-xxl-50 {
    row-gap: 50rem !important;
  }
  .column-gap-xxl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }
  .column-gap-xxl-0_5 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-1 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }
  .column-gap-xxl-1_5 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-2 {
    -webkit-column-gap: 2rem !important;
    -moz-column-gap: 2rem !important;
    column-gap: 2rem !important;
  }
  .column-gap-xxl-2_5 {
    -webkit-column-gap: 2.5rem !important;
    -moz-column-gap: 2.5rem !important;
    column-gap: 2.5rem !important;
  }
  .column-gap-xxl-3 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }
  .column-gap-xxl-3_5 {
    -webkit-column-gap: 3.5rem !important;
    -moz-column-gap: 3.5rem !important;
    column-gap: 3.5rem !important;
  }
  .column-gap-xxl-4 {
    -webkit-column-gap: 4rem !important;
    -moz-column-gap: 4rem !important;
    column-gap: 4rem !important;
  }
  .column-gap-xxl-5 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }
  .column-gap-xxl-6 {
    -webkit-column-gap: 6rem !important;
    -moz-column-gap: 6rem !important;
    column-gap: 6rem !important;
  }
  .column-gap-xxl-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }
  .column-gap-xxl-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }
  .column-gap-xxl-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }
  .column-gap-xxl-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }
  .column-gap-xxl-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }
  .column-gap-xxl-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }
  .column-gap-xxl-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }
  .column-gap-xxl-25 {
    -webkit-column-gap: 25rem !important;
    -moz-column-gap: 25rem !important;
    column-gap: 25rem !important;
  }
  .column-gap-xxl-30 {
    -webkit-column-gap: 30rem !important;
    -moz-column-gap: 30rem !important;
    column-gap: 30rem !important;
  }
  .column-gap-xxl-35 {
    -webkit-column-gap: 35rem !important;
    -moz-column-gap: 35rem !important;
    column-gap: 35rem !important;
  }
  .column-gap-xxl-40 {
    -webkit-column-gap: 40rem !important;
    -moz-column-gap: 40rem !important;
    column-gap: 40rem !important;
  }
  .column-gap-xxl-45 {
    -webkit-column-gap: 45rem !important;
    -moz-column-gap: 45rem !important;
    column-gap: 45rem !important;
  }
  .column-gap-xxl-50 {
    -webkit-column-gap: 50rem !important;
    -moz-column-gap: 50rem !important;
    column-gap: 50rem !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: 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-inline-grid {
    display: inline-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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
body {
  color: #fff;
  background-color: #2f2f2f;
}

/*# sourceMappingURL=smx-theme.css.map */