@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@400;500;600;700&display=swap");
.has-black-color {
  color: #191919;
}

.has-black-background-color {
  background-color: #191919;
}

.bg-color--black {
  background-color: #191919;
}

.has-grey-color {
  color: #efefef;
}

.has-grey-background-color {
  background-color: #efefef;
}

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

.has-light-grey-color {
  color: #f8f8f8;
}

.has-light-grey-background-color {
  background-color: #f8f8f8;
}

.bg-color--light-grey {
  background-color: #f8f8f8;
}

.has-blue-color {
  color: #2076ff;
}

.has-blue-background-color {
  background-color: #2076ff;
}

.bg-color--blue {
  background-color: #2076ff;
}

.has-red-color {
  color: #D11118;
}

.has-red-background-color {
  background-color: #D11118;
}

.bg-color--red {
  background-color: #D11118;
}

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

.has-white-background-color {
  background-color: #ffffff;
}

.bg-color--white {
  background-color: #ffffff;
}

/*!
 * Bootstrap Grid v5.0.0-beta2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container, .alignfull .wp-block-group__inner-container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.5rem);
  padding-left: var(--bs-gutter-x, 1.5rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container, .alignfull .wp-block-group__inner-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .alignfull .wp-block-group__inner-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .alignfull .wp-block-group__inner-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .alignfull .wp-block-group__inner-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, .alignfull .wp-block-group__inner-container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  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.3333333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -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.3333333333%;
  }
  .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.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .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.3333333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .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.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

.d-flex {
  display: -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;
      -ms-grid-row-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;
      -ms-grid-row-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;
      -ms-grid-row-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-1 {
  margin: 0.25rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 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: -ms-grid !important;
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -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;
        -ms-grid-row-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;
        -ms-grid-row-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;
        -ms-grid-row-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-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -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;
        -ms-grid-row-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;
        -ms-grid-row-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;
        -ms-grid-row-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-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -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;
        -ms-grid-row-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;
        -ms-grid-row-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;
        -ms-grid-row-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-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -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;
        -ms-grid-row-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;
        -ms-grid-row-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;
        -ms-grid-row-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-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: -ms-grid !important;
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -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;
        -ms-grid-row-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;
        -ms-grid-row-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;
        -ms-grid-row-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-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media 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: -ms-grid !important;
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -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;
  }
}
html {
  font-size: 62.5%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html, body {
  margin: 0;
  padding: 0;
  min-height: -webkit-fill-available;
}
@media (max-width: 991.98px) {
  html, body {
    overflow-x: hidden;
  }
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::-moz-selection {
  background: silver;
  color: black;
}

::-moz-selection,
::selection {
  background: silver;
  color: black;
}

img::-moz-selection {
  background: transparent;
}

img::-moz-selection,
img::selection {
  background: transparent;
}

em,
i,
q,
dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

big {
  font-size: 120%;
}

small {
  font-size: 75%;
}

ins {
  text-decoration: underline;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr,
acronym {
  cursor: help;
}

audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

img, video, object, svg, iframe {
  max-width: 100%;
  border: none;
}

img {
  height: auto;
}

svg {
  max-height: 100%;
}

figure {
  max-width: 100%;
  margin: 0;
}

hr {
  background-color: silver;
  border: 0;
  height: 1px;
  margin: 0 0 3.2rem;
}

a[href^="tel:"] {
  border: 0;
}

ul,
ol {
  margin: 0 0 3.2rem 2.2rem;
  padding: 0;
}
ul li,
ol li {
  line-height: 1.2;
  padding: 0;
}
ul li > ul,
ul li > ol,
ol li > ul,
ol li > ol {
  margin-bottom: 0;
  margin-left: 2rem;
}

::marker {
  color: #cccccc;
}

dt,
dd {
  line-height: 1.5;
}

dt {
  font-weight: bold;
}
dt + dd {
  margin-top: 0.8rem;
}

dt + dd {
  margin-top: 0.8rem;
}

dd + dt {
  margin-top: 1.6rem;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1.6rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 3.2rem;
  border-collapse: collapse;
  background-color: transparent;
}
table td, table th {
  padding: 1rem 1.5rem;
  vertical-align: top;
  border-top: 1px solid silver;
}
table th {
  vertical-align: bottom;
  text-align: left;
}

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

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

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.break-link {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5rem;
}

.aligncenter,
.entry-content > img:not([class]) {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
  text-align: center;
}

@media (max-width: 575.98px) {
  .alignleft,
  .alignright {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.2rem;
    text-align: center;
  }
}

.alignnone {
  margin-bottom: 3.2rem;
  text-align: center;
}

.fluid-width-video-wrapper {
  margin-bottom: 3.2rem;
}

figure {
  margin: 0;
}
figure img {
  display: block;
}

h1.center, h2.center, h3.center, h4.center, h5.center, p.center {
  text-align: center;
}

iframe,
.embedly-card,
.instagram-media,
.twitter-tweet,
twitterwidget {
  margin: 0 auto;
  display: block;
}
iframe + div,
.embedly-card + div,
.instagram-media + div,
.twitter-tweet + div,
twitterwidget + div {
  margin-top: -3rem;
  text-align: center;
}

p > iframe {
  margin: 0 auto;
}

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

.instagram-media {
  margin: 0 auto 3rem !important;
}
.instagram-media:before {
  display: none !important;
}

/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
.list-style-none {
  margin: 0 0 3.2rem;
  list-style: none;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* WordPress Gallery
------------------------------------------ */
.gallery {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.gallery:after {
  display: table;
  content: "";
  clear: both;
}

.gallery-item {
  margin: 0;
  float: left;
  padding: 1.5rem;
}

.gallery-item img {
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  float: none;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6667%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

@media (max-width: 575.98px) {
  div[class*=gallery-columns-] .gallery-item {
    width: 80%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-block-image {
  margin-bottom: 3.2rem;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-block-image figcaption,
.wp-caption {
  margin-bottom: 1.5rem;
  max-width: 100%;
  text-align: center;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
# Posts Navigation
--------------------------------------------------------------*/
.posts-navigation {
  margin: 5rem 0 2.5rem;
  position: relative;
  border-top: 1px solid #cccccc;
  width: 100%;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav-links a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
  padding: 2rem 0;
  text-transform: capitalize;
}
.nav-links .nav-previous,
.nav-links .nav-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.nav-links .nav-previous:before, .nav-links .nav-previous:after,
.nav-links .nav-next:before,
.nav-links .nav-next:after {
  position: absolute;
  color: #b3b3b3;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav-links .nav-previous {
  padding-left: 2.2rem;
}
.nav-links .nav-previous:before {
  content: "←";
  left: 0;
}
.nav-links .nav-next {
  padding-right: 2.2rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.nav-links .nav-next:before {
  content: "→";
  right: 0;
}

img.alignleft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  margin-right: auto;
}
img.aligncenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
img.alignright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 0;
}

/*--------------------------------------------------------------
# wpex_pagination
--------------------------------------------------------------*/
ul.page-numbers {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.4rem 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  ul.page-numbers {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
ul.page-numbers li {
  display: block;
  margin: 0 0.4rem 0.4rem 0;
  text-align: center;
}
ul.page-numbers li a,
ul.page-numbers li span {
  line-height: 1.6em;
  display: block;
  padding: 0;
  height: 3.6rem;
  width: 3.6rem;
  line-height: 3.6rem;
  font-size: 1.6rem;
  text-decoration: none;
  background: #f8f8f8;
  color: #474747;
}
ul.page-numbers li a.current,
ul.page-numbers li span.current {
  background: #191919;
  color: white;
}
ul.page-numbers li a {
  cursor: pointer;
  color: #191919;
}
ul.page-numbers li a.current, ul.page-numbers li a:hover {
  color: #474747;
  background: #f7f7f7;
  text-decoration: none;
}
ul.page-numbers li a span {
  padding: 0;
}

/*--------------------------------------------------------------
# Cover block fix
--------------------------------------------------------------*/
.wp-block-cover {
  height: auto;
}

/*--------------------------------------------------------------
# Code block
--------------------------------------------------------------*/
.wp-block-code {
  border: 1px solid #cccccc;
  padding: 2.4rem;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: white;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #444;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.has-orange-to-yellow-gradient-background {
  background: linear-gradient(135deg, #FF7218 0%, #FFC200 100%);
}

.has-cyan-to-dark-blue-gradient-background {
  background: linear-gradient(135deg, #00EAC3 0%, #1F9DD4 100%);
}

.has-black-color {
  color: black;
}

.has-inline-color.has-black-color {
  color: black;
}

.has-black-background-color,
.has-black-background-color.has-background-dim {
  background-color: black;
}

.wp-block-button .has-black-background-color {
  background: black;
}
.wp-block-button .has-black-background-color:hover, .wp-block-button .has-black-background-color:focus {
  background: black;
}
.wp-block-button .has-black-color {
  color: black;
}
.wp-block-button .has-black-color:hover, .wp-block-button .has-black-color:focus {
  color: black;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-blue-color {
  color: navy;
}

.has-inline-color.has-blue-color {
  color: navy;
}

.has-blue-background-color,
.has-blue-background-color.has-background-dim {
  background-color: navy;
}

.wp-block-button .has-blue-background-color {
  background: navy;
}
.wp-block-button .has-blue-background-color:hover, .wp-block-button .has-blue-background-color:focus {
  background: navy;
}
.wp-block-button .has-blue-color {
  color: navy;
}
.wp-block-button .has-blue-color:hover, .wp-block-button .has-blue-color:focus {
  color: navy;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-green-color {
  color: green;
}

.has-inline-color.has-green-color {
  color: green;
}

.has-green-background-color,
.has-green-background-color.has-background-dim {
  background-color: green;
}

.wp-block-button .has-green-background-color {
  background: green;
}
.wp-block-button .has-green-background-color:hover, .wp-block-button .has-green-background-color:focus {
  background: green;
}
.wp-block-button .has-green-color {
  color: green;
}
.wp-block-button .has-green-color:hover, .wp-block-button .has-green-color:focus {
  color: green;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-red-color {
  color: firebrick;
}

.has-inline-color.has-red-color {
  color: firebrick;
}

.has-red-background-color,
.has-red-background-color.has-background-dim {
  background-color: firebrick;
}

.wp-block-button .has-red-background-color {
  background: firebrick;
}
.wp-block-button .has-red-background-color:hover, .wp-block-button .has-red-background-color:focus {
  background: firebrick;
}
.wp-block-button .has-red-color {
  color: firebrick;
}
.wp-block-button .has-red-color:hover, .wp-block-button .has-red-color:focus {
  color: firebrick;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-white-color {
  color: white;
}

.has-inline-color.has-white-color {
  color: white;
}

.has-white-background-color,
.has-white-background-color.has-background-dim {
  background-color: white;
}

.wp-block-button .has-white-background-color {
  background: white;
}
.wp-block-button .has-white-background-color:hover, .wp-block-button .has-white-background-color:focus {
  background: white;
}
.wp-block-button .has-white-color {
  color: white;
}
.wp-block-button .has-white-color:hover, .wp-block-button .has-white-color:focus {
  color: white;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

@font-face {
  font-family: "ClashDisplay Bold";
  src: url("./fonts/ClashDisplay-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "ClashDisplay Medium";
  src: url("./fonts/ClashDisplay-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
@font-face {
  font-family: "ClashDisplay Semibold";
  src: url("./fonts/ClashDisplay-Semibold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}
body {
  color: #284831;
  font-size: 1.8rem;
}

a {
  color: #191919;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.25s ease;
  transition: text-decoration-color 0.25s ease;
}
a:hover, a:focus {
  color: #284831;
  text-decoration-color: #474747;
}

a p, a div, a span {
  color: initial;
}

p {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  line-height: 1.5;
  margin: 0 0 3.2rem;
}

li {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #284831;
  line-height: 1.2;
  margin: 1.6rem 0;
  padding: 0;
  min-height: 0vw;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1,
.h1 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 58px;
  line-height: 1;
}
@media (min-width: 320px) {
  h1,
  .h1 {
    font-size: calc(
        58px + 14 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  h1,
  .h1 {
    font-size: 72px;
  }
}

h2,
.h2 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 42px;
  line-height: 1;
}
@media (min-width: 320px) {
  h2,
  .h2 {
    font-size: calc(
        42px + 18 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  h2,
  .h2 {
    font-size: 60px;
  }
}

.heading-line:after {
  content: "";
  display: block;
  width: 8rem;
  height: 4px;
  background-color: #2076ff;
  margin-bottom: 3.5rem;
  margin-top: 1.5rem;
}

.heading-line-hidden:after {
  display: none !important;
}

h3,
.h3 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 36px;
}
@media (min-width: 320px) {
  h3,
  .h3 {
    font-size: calc(
        36px + 12 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  h3,
  .h3 {
    font-size: 48px;
  }
}

h4,
.h4 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 30px;
}
@media (min-width: 320px) {
  h4,
  .h4 {
    font-size: calc(
        30px + 6 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  h4,
  .h4 {
    font-size: 36px;
  }
}

h5 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 24px;
}
@media (min-width: 320px) {
  h5 {
    font-size: calc(
        24px + 6 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  h5 {
    font-size: 30px;
  }
}

h6 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 20px;
}
@media (min-width: 320px) {
  h6 {
    font-size: calc(
        20px + 4 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  h6 {
    font-size: 24px;
  }
}

.post-content li a:not(.button),
.post-content li a:not(.wp-element-button), .post-content p a:not(.button),
.post-content p a:not(.wp-element-button),
.entry-content li a:not(.button),
.entry-content li a:not(.wp-element-button),
.entry-content p a:not(.button),
.entry-content p a:not(.wp-element-button) {
  text-decoration: underline;
}
.post-content li a:not(.button):hover,
.post-content li a:not(.wp-element-button):hover, .post-content p a:not(.button):hover,
.post-content p a:not(.wp-element-button):hover,
.entry-content li a:not(.button):hover,
.entry-content li a:not(.wp-element-button):hover,
.entry-content p a:not(.button):hover,
.entry-content p a:not(.wp-element-button):hover {
  color: #2076ff;
}
.post-content ul,
.post-content ol,
.entry-content ul,
.entry-content ol {
  color: inherit;
}
.post-content ul,
.entry-content ul {
  padding-left: 0;
  margin: 0 0 3.2rem 1.7rem;
}
.post-content ol,
.entry-content ol {
  margin: 0 0 3.2rem 1.2rem;
}
.post-content li,
.entry-content li {
  line-height: 1.5;
  padding-bottom: 1.2rem;
  padding-left: 1rem;
}
.post-content ::marker,
.entry-content ::marker {
  color: #2076ff;
}
.post-content ol,
.entry-content ol {
  counter-reset: item;
}
.post-content ol > li,
.entry-content ol > li {
  margin: 0;
  text-indent: -2rem;
  list-style-type: none;
  counter-increment: item;
}
.post-content ol > li:before,
.entry-content ol > li:before {
  color: #2076ff;
  width: 1rem;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (min-width: 992px) {
  .page-template .main-navigation .menu-item a, .site-header .main-navigation .menu-item a {
    color: white;
  }
  .page-template .header-logo svg rect, .site-header .header-logo svg rect,
  .page-template .header-logo svg path,
  .site-header .header-logo svg path,
  .page-template .header-logo svg polygon,
  .site-header .header-logo svg polygon {
    fill: white !important;
  }
  .page-template .header-logo svg path.red-path, .site-header .header-logo svg path.red-path {
    fill: white !important;
  }
  .page-template .main-navigation ul > li > a, .site-header .main-navigation ul > li > a {
    color: white;
  }
  .page-template .main-navigation ul > a, .site-header .main-navigation ul > a {
    color: white;
  }
}
@media (min-width: 992px) {
  .page-template .utility-navigation .login-link span, .site-header .utility-navigation .login-link span,
  .page-template .utility-navigation .login-link a,
  .site-header .utility-navigation .login-link a {
    color: white !important;
  }
  .page-template .utility-navigation .login-link span:hover, .site-header .utility-navigation .login-link span:hover,
  .page-template .utility-navigation .login-link a:hover,
  .site-header .utility-navigation .login-link a:hover {
    color: white !important;
  }
}
.page-template .search-button, .site-header .search-button {
  color: white;
}
.page-template .search-button svg, .site-header .search-button svg {
  fill: white;
}
.page-template .search-button:hover svg, .site-header .search-button:hover svg {
  fill: white;
}

.site-header.menu-opened .utility-navigation .login-link a {
  color: #191919 !important;
}
.site-header.menu-opened .utility-navigation .login-link a:hover {
  color: #191919 !important;
}
.site-header.menu-opened .header-logo svg rect,
.site-header.menu-opened .header-logo svg path,
.site-header.menu-opened .header-logo svg polygon {
  fill: #191919 !important;
}
.site-header.menu-opened .header-logo svg path.red-path {
  fill: #D11118 !important;
}
.site-header.menu-opened .main-navigation ul > li > a {
  color: #191919;
}
.site-header.menu-opened .main-navigation ul li.has-mega-menu > a {
  color: #191919;
}
.site-header.menu-opened .main-navigation ul > a {
  color: #191919;
}
.site-header.menu-opened .search-button {
  color: #191919;
}
.site-header.menu-opened .search-button svg {
  fill: #191919;
}
.site-header.menu-opened .search-button:hover svg {
  fill: white;
}

.site-header {
  padding: 2rem 0;
  padding-top: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: white;
}
@media (min-width: 992px) {
  .site-header {
    background: transparent;
    position: absolute;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .site-header {
    padding: 2.4rem 0;
    padding-top: 1.5rem;
  }
}
.site-header::before {
  content: "";
  height: 0.8rem;
  width: 100vw;
  position: absolute;
  top: 100%;
  left: 0;
}
.site-header.menu-opened {
  background: white;
}

.utility-navigation {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 0;
  padding-top: 0;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .utility-navigation {
    padding: 1.5rem 0;
    padding-bottom: 1.5rem;
    padding-top: 0;
  }
}
.utility-navigation .login-link {
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.utility-navigation .login-link a {
  font-size: 14px;
  padding: 1.5rem 0.5rem 1.5rem 1.5rem;
}
@media (min-width: 992px) {
  .utility-navigation .login-link a {
    padding: 1.5rem 0.5rem 1.5rem 1.5rem;
  }
}

.header-inner {
  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;
  position: relative;
  zoom: 1;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
#checkbox_toggle {
  display: none;
}

.hamburger {
  margin-right: 0;
  margin-left: auto;
}

#checkbox_toggle + label {
  padding: 0.75rem 3.2rem 1.05rem 0;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  border: 0.9rem solid transparent;
  border-width: 0.9rem 0.2rem;
  margin: 0 0 0 1.2rem;
  -webkit-transform: none;
          transform: none;
}
#checkbox_toggle + label:focus {
  outline: 1px solid transparent;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5);
}
@media (min-width: 992px) {
  #checkbox_toggle + label {
    display: none;
  }
}

.line {
  cursor: pointer;
  border-radius: 0.3rem;
  height: 0.3rem;
  width: 3.2rem;
  background: #191919;
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
}
.line--1 {
  -webkit-transform: translateY(-0.75rem);
          transform: translateY(-0.75rem);
}
.line--3 {
  -webkit-transform: translateY(0.75rem);
          transform: translateY(0.75rem);
}

#checkbox_toggle:checked ~ .main-navigation {
  min-height: 100vh;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.22, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.22, 1);
}
#checkbox_toggle:checked ~ .hamburger .line--1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#checkbox_toggle:checked ~ .hamburger .line--2 {
  opacity: 0;
}
#checkbox_toggle:checked ~ .hamburger .line--3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#checkbox_toggle:checked ~ .overlay-navigation {
  right: 0;
}
#checkbox_toggle:checked ~ .hamburger .line--1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#checkbox_toggle:checked ~ .hamburger .line--2 {
  opacity: 0;
}
#checkbox_toggle:checked ~ .hamburger .line--3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.bug-tracker-sticky {
  position: fixed;
  right: 0;
  z-index: 500;
  background: white;
  padding: 0.5rem;
  bottom: 0;
  font-weight: 700;
  font-size: 10px;
  -webkit-box-shadow: -4px 2px 53px -24px rgba(0, 0, 0, 0.75);
          box-shadow: -4px 2px 53px -24px rgba(0, 0, 0, 0.75);
  border: 2px solid #d9e3ee;
  color: salmon;
}
@media (min-width: 992px) {
  .bug-tracker-sticky {
    bottom: 7rem;
    padding: 1rem;
  }
}
@media (min-width: 320px) {
  .bug-tracker-sticky {
    font-size: calc(
        10px + 6 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .bug-tracker-sticky {
    font-size: 16px;
  }
}
.bug-tracker-sticky:hover {
  color: darkgrey;
}

.notice-bar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #2076ff;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: white;
}
.notice-bar .notice-bar-inner {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .notice-bar .notice-bar-inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
}
@media (min-width: 992px) {
  .notice-bar .notice-bar-inner.notice_content_alignment_centered {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
    margin-left: 16.6666666667%;
    text-align: center;
  }
}
.notice-bar p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: white;
}
.notice-bar a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}
.notice-bar a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.notice-bar p:last-child() {
  margin-bottom: 0;
}

.overlay-navigation {
  translate: 0.3s linear;
  width: 100%;
  padding-bottom: 5rem;
  -webkit-box-shadow: -3px 8px 7px -1px rgba(0, 0, 0, 0.15);
          box-shadow: -3px 8px 7px -1px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991.98px) {
  .overlay-navigation {
    width: 100vw;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    right: calc(-100vw - 15px);
    position: fixed;
    top: 11rem;
    background: #fff;
    z-index: 10002;
    -webkit-transition: all 0.25s cubic-bezier(0.5, 1, 0.22, 1);
    transition: all 0.25s cubic-bezier(0.5, 1, 0.22, 1);
  }
}
.overlay-navigation .search-form .search-field {
  height: 5.6rem;
  border-color: #e6e9eb !important;
  background-color: #e6e9eb !important;
}
.overlay-navigation .search-form .search-submit {
  position: absolute;
  right: 2.5rem;
  top: 1.3rem;
  border-radius: 50%;
  background-color: #2076ff;
  width: 3.8rem;
  height: 3.8rem;
  font-size: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(./img/search-icon.svg);
  background-size: 50% 50%;
}
@media (max-width: 991.98px) {
  .overlay-navigation .search-form {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 992px) {
  .overlay-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0;
    -webkit-box-shadow: 0 0 0 transparent;
            box-shadow: 0 0 0 transparent;
  }
  .overlay-navigation .search-form {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .menu-opened .overlay-navigation {
    height: calc(100vh - 9rem);
  }
  .menu-opened .overlay-navigation .main-navigation {
    overflow-y: scroll;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*

For orientation:
header.site-header > div.max-container > div.header-inner >
div.overlay-navigation > nav.main-navigation > ul#primary-menu

*/
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .main-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.main-navigation ul > li {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-navigation ul > li:focus, .main-navigation ul > li:hover {
  text-decoration: none;
}
.main-navigation ul > li > a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  .main-navigation ul > li > a {
    padding: 0 1.5rem;
  }
}
.main-navigation ul > li > a:focus, .main-navigation ul > li > a:hover {
  text-decoration: none;
}
@media (min-width: 1200px) {
  .main-navigation ul > li.has-mega-menu {
    margin-right: 0.8rem;
  }
}
.main-navigation ul > li.has-mega-menu > a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  display: block;
  text-decoration: none;
  letter-spacing: 0.02rem;
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
@media (min-width: 992px) {
  .main-navigation ul > li.has-mega-menu > a {
    padding: 2.2rem 1.5rem;
  }
}
.main-navigation ul > li.has-mega-menu > a:focus, .main-navigation ul > li.has-mega-menu > a:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .main-navigation ul > li.has-mega-menu > a {
    margin: 0;
    pointer-events: auto;
    padding-right: 2rem;
  }
}
.main-navigation ul > li.has-mega-menu > a:before {
  background-color: #fff;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .main-navigation ul > li.has-mega-menu > a:before {
    display: none;
  }
}
.main-navigation ul > li.has-mega-menu > a:after {
  content: "";
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  display: block;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-0.6rem) rotate(45deg);
          transform: translateY(-0.6rem) rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: all 0.18s ease;
  transition: all 0.18s ease;
  height: 1.2rem;
  width: 1.2rem;
}
@media (min-width: 992px) {
  .main-navigation ul > li.has-mega-menu > a:after {
    content: "";
    border-style: solid;
    border-width: 0 0 0.2rem 0.2rem;
    display: block;
    position: absolute;
    right: 0.4rem;
    top: 55%;
    -webkit-transform: translateY(-0.8rem) rotate(-45deg);
            transform: translateY(-0.8rem) rotate(-45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.18s ease;
    transition: all 0.18s ease;
    height: 0.8rem;
    width: 0.8rem;
  }
}
.main-navigation ul > li.has-mega-menu > a.opened-link:after {
  -webkit-transform: translateY(-0.8rem) rotate(135deg);
          transform: translateY(-0.8rem) rotate(135deg);
  top: 55%;
}
@media (min-width: 992px) {
  .main-navigation ul > li.has-mega-menu > a.opened-link:after {
    -webkit-transform: translateY(-0.4rem) rotate(135deg);
            transform: translateY(-0.4rem) rotate(135deg);
  }
}
.main-navigation ul > li.has-mega-menu > a.opened-link:before {
  display: none;
}

.has-mega-menu ul {
  list-style: none;
}
.has-mega-menu > .sub-menu {
  display: none;
  background: white;
}
@media (min-width: 992px) {
  .has-mega-menu > .sub-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1.8rem);
    z-index: 2;
    border-radius: 0;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .has-mega-menu > .sub-menu {
    top: calc(100% + 2.4rem);
    left: 0;
    right: 0;
  }
}
@media (min-width: 992px) {
  .has-mega-menu > .sub-menu:before {
    content: "";
    background-color: #fff;
    display: none;
    position: absolute;
    border-top: 1px solid #f1f4f6;
    left: 50%;
    top: 0;
    height: 100%;
    width: 100vw;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
    -webkit-box-shadow: 0 1.6rem 1.6rem -1.6rem rgba(0, 0, 0, 0.3);
            box-shadow: 0 1.6rem 1.6rem -1.6rem rgba(0, 0, 0, 0.3);
  }
}

.has-mega-menu > .sub-menu.open-mega-menu {
  display: block;
}
@media (min-width: 992px) {
  .has-mega-menu > .sub-menu.open-mega-menu {
    -webkit-box-shadow: 0 1.6rem 1.6rem -1.6rem rgba(0, 0, 0, 0.3);
            box-shadow: 0 1.6rem 1.6rem -1.6rem rgba(0, 0, 0, 0.3);
  }
}
.has-mega-menu > .sub-menu.open-mega-menu li {
  line-height: 1.6 !important;
}
@media (min-width: 992px) {
  .has-mega-menu > .sub-menu.open-mega-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-top: 1px solid #ccc;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100vw;
    margin-left: -15px;
    padding-left: 15px;
  }
  .has-mega-menu > .sub-menu.open-mega-menu .sub-menu {
    display: block;
  }
  .has-mega-menu > .sub-menu.open-mega-menu .sub-menu a {
    display: block;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .has-mega-menu > .sub-menu.open-mega-menu .sub-menu a:hover {
    color: #2076ff;
  }
}
@media (min-width: 1270px) {
  .has-mega-menu > .sub-menu.open-mega-menu {
    margin-left: calc((100vw - 1240px) / -2);
    padding-left: calc((100vw - 1240px) / 2);
  }
}
.has-mega-menu > .sub-menu.open-mega-menu > li:not(.menu-item-has-children) > a {
  display: block;
}
.has-mega-menu > .sub-menu.open-mega-menu a {
  text-decoration: none;
}
.has-mega-menu > .sub-menu.open-mega-menu .sub-menu {
  margin: 0;
  padding: 0;
}

.main-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 991.98px) {
  .main-navigation a {
    display: block;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #cccccc;
    padding: 2rem 0 !important;
  }
  .main-navigation .sub-menu.open-mega-menu {
    padding-bottom: 1.3rem;
  }
  .main-navigation .sub-menu.open-mega-menu a {
    padding-left: 1.5rem !important;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: auto;
  }
  .main-navigation .sub-menu.open-mega-menu .mega-menu-heading {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #cccccc;
  }
  .main-navigation .sub-menu.open-mega-menu .mega-menu-heading > a {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-display: auto;
    padding-left: 0rem !important;
    text-transform: none;
    letter-spacing: 0 !important;
  }
}

.mega-menu-heading {
  margin-right: 3rem !important;
}
@media (min-width: 992px) {
  .mega-menu-heading {
    padding-top: 5rem;
    padding-bottom: 5rem;
    width: 25%;
  }
}
@media (max-width: 991.98px) {
  .mega-menu-heading a {
    border-bottom: none !important;
    padding: 0.7rem 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .mega-menu-heading a {
    padding: 0 !important;
  }
}
.mega-menu-heading > a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  pointer-events: none;
}
.mega-menu-heading > a p {
  padding-top: 1.5rem;
  border-top: 1px solid #2076ff;
  text-transform: none !important;
  font-size: 14px;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: none;
}
@media (min-width: 992px) {
  .mega-menu-heading > a p {
    display: block;
  }
}

.menu-button a {
  background: #2076ff;
  height: 4.8rem !important;
  padding: 1rem 2.3rem !important;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: white !important;
  border-bottom: none !important;
  margin-left: 2rem;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@media (max-width: 991.98px) {
  .menu-button {
    width: 100%;
    margin-top: 3rem !important;
  }
}

.page-template-default .main-navigation .menu-item:not(.menu-button) a {
  color: black !important;
}

.page-template-default .site-header {
  position: initial;
  background-color: white;
}

.page-template-default .header-logo svg path {
  fill: #284831 !important;
}

.entry-content > [class^=wp-block-],
.entry-content > .gform_wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .entry-content > [class^=wp-block-],
  .entry-content > .gform_wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .entry-content > [class^=wp-block-],
  .entry-content > .gform_wrapper {
    margin-top: 6vh;
    margin-bottom: 6vh;
  }
}
.entry-content > [class^=wp-block-]:first-child,
.entry-content > .gform_wrapper:first-child {
  margin-top: 0;
}
.entry-content > .wp-block-quote {
  margin-top: 30px;
  margin-bottom: 30px;
}

.alignfull {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: calc(-50vw + 50%);
}
.has-background .wp-block-group__inner-container {
  padding: 1em;
}
@media (min-width: 768px) {
  .has-background .wp-block-group__inner-container {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}
@media (min-width: 1200px) {
  .has-background .wp-block-group__inner-container {
    padding-top: 12vh;
    padding-bottom: 12vh;
  }
}

.wp-block-columns.alignfull {
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}
@media (min-width: 768px) {
  .wp-block-columns.alignfull {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns.alignfull {
    padding-top: 12vh;
    padding-bottom: 12vh;
  }
}

@media (max-width: 575.98px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 8% 0;
  }
}
@media (max-width: 575.98px) {
  .wp-block-media-text.alignfull .wp-block-media-text__content {
    padding: 8% 15px;
  }
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__background {
  z-index: 0 !important;
}
@media (max-width: 991.98px) {
  .wp-block-cover .wp-block-cover__inner-container,
  .wp-block-cover .wp-block-cover__background {
    padding: 0;
  }
}

.wp-block-cover .wp-block-cover__image-background {
  z-index: -1 !important;
}

.wp-block-image figcaption,
.wp-caption {
  font-size: 14px !important;
  text-align: left !important;
  font-style: italic;
}

@media (max-width: 991.98px) {
  .wp-block-embed__wrapper iframe {
    height: 250px;
  }
}

.wp-block-quote {
  border: none;
  border-left: 2px solid #84DD63;
  border-left-color: #84DD63 !important;
  padding-bottom: 0.5rem !important;
  padding-right: 3rem !important;
  color: #1D492F !important;
}
.wp-block-quote cite {
  color: #1D492F !important;
}
.wp-block-quote p {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 22px;
  font-style: italic;
}
@media (min-width: 320px) {
  .wp-block-quote p {
    font-size: calc(
        22px + 6 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .wp-block-quote p {
    font-size: 28px;
  }
}

footer {
  background-color: #284831;
  color: white;
}

.site-footer {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  padding-top: 4rem;
  border-bottom: 1px solid white;
  padding-bottom: 5rem;
}
@media (min-width: 576px) {
  .site-footer {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .site-footer {
    padding-top: 5rem;
  }
}
.site-footer a {
  color: white;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
.site-footer .row {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.site-footer-secondary {
  background-color: #284831;
  color: white;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  padding-bottom: 3rem;
  font-size: 14px;
}

.footer-connect {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-connect {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
}
.footer-connect .footer-connect-inner {
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .footer-connect .footer-connect-inner {
    padding-bottom: 2rem;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer-logo svg {
  margin-bottom: 2.4rem;
}

.footer-nav {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .footer-nav {
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
}
@media (min-width: 768px) {
  .footer-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer-nav .menu > li {
  padding-right: 3rem;
}
.footer-nav .menu > li > a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 22px;
}
.footer-nav .menu a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  display: block;
  margin-bottom: 1.6rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .footer-nav .menu a {
    margin-bottom: 2.4rem;
  }
}
.footer-nav .menu .sub-menu {
  margin-bottom: 1.6rem;
}
.footer-nav .menu .sub-menu li {
  margin-bottom: 1.2rem;
}
.footer-nav .menu .sub-menu li a {
  text-transform: none;
  opacity: 0.8;
  margin-bottom: 0;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 90%;
}
.footer-nav ul {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
.footer-nav ul li {
  text-decoration: none;
}
.footer-nav ul a:hover {
  opacity: 1;
  color: #DBE2D8;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 3.2rem;
  padding: 1.6rem 0 3.2rem;
  font-size: 90%;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-socials a {
  margin-left: 1.5rem;
}

.site-footer-secondary .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.site-footer-secondary .row .footer-bottom__copy {
  padding-top: 3rem;
}
.site-footer-secondary .row .footer-bottom__copy a {
  color: white;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .site-footer-secondary .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .site-footer-secondary .row .footer-bottom__copy {
    width: auto;
    padding-top: 0;
  }
}

@media (min-width: 768px) {
  .footer-utility-nav {
    width: auto;
  }
}
.footer-utility-nav ul {
  margin-bottom: 0;
  list-style-type: none;
  margin-left: 0;
}
@media (min-width: 768px) {
  .footer-utility-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-utility-nav ul li {
  padding-left: 0;
  margin-right: 1.5rem;
  text-decoration: none;
}
.footer-utility-nav ul li a {
  color: white;
  opacity: 0.8;
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .footer-utility-nav ul li a {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.footer-utility-nav ul li a:hover {
  color: #DBE2D8;
  text-decoration: none;
  opacity: 1;
}

@media (min-width: 1024px) {
  #footer-menu {
    display: block;
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3; /* Standard syntax */
    -webkit-column-gap: 20px; /* Chrome, Safari, Opera */
    -moz-column-gap: 20px; /* Firefox */
    column-gap: 20px; /* Standard syntax */
    list-style-type: none; /* Optional: removes the bullet points from the list */
    padding: 0; /* Optional: removes the padding on the list */
  }
  #footer-menu li {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid-column; /* Avoids breaking list items across columns */
    /* Additional styles for your list items */
  }
}
.wp-block-pullquote {
  padding: 3.2rem 0;
}
.wp-block-pullquote.has-background blockquote {
  border: 0;
}
.wp-block-pullquote.has-background blockquote p {
  margin-bottom: 2.4rem;
}
.wp-block-pullquote.has-background blockquote cite {
  font-size: 1.8rem;
  font-style: italic;
}
.wp-block-pullquote.alignfull {
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}
.wp-block-pullquote p {
  line-height: 1.33;
  font-size: 3.2rem;
}

blockquote {
  color: inherit;
  font-size: 1em;
  margin: 3.2rem 0;
}
blockquote.wp-block-quote {
  border-left: 0.3rem solid #cccccc;
  margin: 3.2rem 0;
  padding: 0 0 0 3.2rem;
}
blockquote.wp-block-quote.is-style-large {
  padding: 1.6rem 3.2rem 1.6rem 4rem;
  margin-bottom: 3.2rem;
}
blockquote.wp-block-quote.is-style-large cite {
  text-align: left;
  font-size: 1.6rem;
  font-style: italic;
}
.wp-block-pullquote blockquote {
  margin: 0;
  border: 0.3rem solid #cccccc;
  border-width: 0.3rem 0 0.3rem 0;
  padding: 3.2rem 0;
}
@media (max-width: 767.98px) {
  .wp-block-pullquote blockquote {
    max-width: 100% !important;
  }
}
@media (min-width: 992px) {
  .wp-block-pullquote blockquote {
    padding: 4.8rem 0;
  }
}
@media (min-width: 1200px) {
  .wp-block-pullquote blockquote {
    padding: 6.4rem 0;
  }
}
@media (min-width: 1200px) {
  blockquote p {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }
}
blockquote p:last-of-type {
  margin-bottom: 1.2rem;
}
blockquote cite {
  display: block;
  font-size: 1.6rem;
  margin: 1.6rem 0 0 0;
  opacity: 0.75;
}

.search-button {
  display: none;
  color: #ffffff;
  font: 0/0 a;
  padding: 0;
  margin-right: 0;
  margin-left: auto;
  width: 4.2rem;
  height: 3.6rem;
  border-radius: 1.8rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .search-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.search-button svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: #ffffff;
  margin-left: -5px;
}
.search-button:focus {
  border: none;
  outline: none;
}
.search-button:hover {
  background-color: #D11118;
}
.search-button:hover svg {
  fill: #fff;
}

.search-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.75);
  padding: 0;
  z-index: 21;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 6.3rem;
}
@media (max-width: 575.98px) {
  .search-overlay-inner .container, .search-overlay-inner .alignfull .wp-block-group__inner-container, .alignfull .search-overlay-inner .wp-block-group__inner-container {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .search-overlay-inner {
    height: 10rem;
  }
}
@media (min-width: 1200px) {
  .search-overlay-inner {
    height: 11rem;
  }
}
.search-overlay-inner .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
@media (min-width: 992px) {
  .search-overlay-inner .search-form {
    margin: 0 auto;
  }
}
.search-overlay-inner .search-form label {
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-overlay-inner .search-form label input {
  width: 95% !important;
  border: none !important;
  border-bottom: 1px solid rgb(164, 164, 164) !important;
}
.search-overlay-inner .search-form label input:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-bottom: 1px solid #191919;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-form label {
  margin-top: 0;
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-form label input {
  width: calc(100% - 8px);
  padding: 2px 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: white;
  height: 4.8rem;
}
.search-form label input:focus {
  background: white;
}
@media (min-width: 992px) {
  .search-form label input {
    font-size: 2.4rem;
    height: 5.6rem;
    width: calc(100% - 16px);
    padding: 2px 15px;
  }
}
@media (min-width: 992px) {
  .search-form .search-submit {
    background-color: #D11118;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1.8rem;
    font-family: "ClashDisplay Semibold", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-display: auto;
    color: white;
    cursor: pointer;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    text-decoration: none;
    height: 5.4rem;
    margin: 0;
    padding: 0 3.6rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 2px;
    outline: 0.1rem solid transparent;
    height: 5.6rem !important;
    padding: 0.8rem 3.2rem !important;
    border: none !important;
  }
}

#mobile-search {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  #mobile-search {
    display: none;
  }
}

button,
.button,
.wp-block-button a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.8rem;
  background-color: #2076ff;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  color: white;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  margin: 0;
  padding: 1.5rem 3.6rem;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0.1rem solid transparent;
}
button:hover, button:focus,
.button:hover,
.button:focus,
.wp-block-button a:hover,
.wp-block-button a:focus {
  color: #284831;
  outline: none;
  text-decoration: none;
}
button:focus,
.button:focus,
.wp-block-button a:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5);
}

.related-posts {
  background-color: #f1f4f6;
  padding: 4.8rem 0;
}
@media (min-width: 992px) {
  .related-posts {
    padding: 8rem 0;
  }
}

.excerpt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4rem;
}
@media (min-width: 1200px) {
  .excerpt {
    margin-bottom: 5.6rem;
  }
}
.excerpt__image {
  background: #191919;
  display: block;
  height: 16rem;
  margin-bottom: 1.6rem;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}
@media (min-width: 992px) {
  .excerpt__image {
    height: 18rem;
  }
}
@media (min-width: 1200px) {
  .excerpt__image {
    height: 24rem;
  }
}
@media (min-width: 1400px) {
  .excerpt__image {
    height: 25.6rem;
  }
}
.excerpt__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.excerpt__image:after {
  content: "";
  display: block;
  height: 12rem;
  margin-bottom: -1px;
  margin-top: -10.4rem;
  position: relative;
  z-index: 10;
  -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;
  background: url(./img/card-angle.svg) no-repeat;
  background-size: cover;
}
.excerpt__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: white;
  padding: 3rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.excerpt__text a {
  width: 100%;
}
.excerpt__text .excerpt-category,
.excerpt__text .excerpt-date,
.excerpt__text .excerpt-author {
  text-decoration: none;
  display: block;
  font-size: 90%;
}
.excerpt__text .button {
  margin-top: auto;
  min-width: 20rem;
}

.excerpt-category {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 14px !important;
  color: #D11118;
  text-transform: uppercase;
}
.excerpt-category:hover {
  text-decoration: none;
  color: #fd7e14;
}

.excerpt-date {
  margin-top: auto;
}
.excerpt-date:before {
  content: "";
  display: block;
  width: 5rem;
  height: 3px;
  background-color: #fd7e14;
  margin-bottom: 1.2rem;
}

.card-button {
  margin-top: auto;
  margin-bottom: 0;
}

.excerpt-title {
  margin-top: 1rem;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  font-size: 24px;
  width: 100%;
}
.excerpt-title a {
  padding-bottom: 4rem;
  width: 100%;
  display: block;
}

.search-result {
  margin-bottom: 4.8rem;
}
.search-result a {
  display: block;
  text-decoration: none;
}
.search-result a:hover .excerpt-title, .search-result a:focus .excerpt-title {
  text-decoration: underline;
  text-decoration-color: inherit;
}
.search-result .read-more {
  display: none;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
  text-align: left;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.blocker {
  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;
}

.modal:focus {
  outline: none;
}

.social-icon,
.footer-social a {
  border: 1px solid;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  width: 36px;
  line-height: 1;
  margin-right: 4px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media (min-width: 992px) {
  .social-icon,
  .footer-social a {
    margin-right: 0;
  }
}
.social-icon .icon,
.footer-social a .icon {
  fill: currentColor;
  height: 18px;
  width: 18px;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
}
.social-icon:hover, .social-icon:focus,
.footer-social a:hover,
.footer-social a:focus {
  border-color: inherit;
}
.social-icon:hover .icon, .social-icon:focus .icon,
.footer-social a:hover .icon,
.footer-social a:focus .icon {
  fill: currentColor;
}

.footer-social a {
  background: white;
  color: #191919;
}

form fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
form legend {
  padding-left: 0;
  padding-right: 0;
}
form .gfield_label {
  margin-bottom: 0 !important;
}
form label {
  display: block;
  margin-top: 1.5rem;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  font-size: inherit;
  line-height: 1.8;
}
form label span {
  color: #D11118;
  display: inline-block;
  margin-left: 0.2rem;
}
form label input {
  margin-bottom: 0 !important;
}
form label.inline {
  display: inline-block;
  margin-right: 0.8rem;
}
form .gfield_required {
  margin-left: 0 !important;
}
form input[type=date],
form input[type=datetime],
form input[type=datetime-local],
form input[type=email],
form input[type=month],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=time],
form input[type=url],
form input[type=week],
form select:not([class^=ui-datepicker]),
form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 100%;
  height: 5rem;
  padding: 1.2rem 1.2rem;
  margin: 0;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-transition: border 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, border 0.25s ease;
  transition: box-shadow 0.25s ease, border 0.25s ease, -webkit-box-shadow 0.25s ease;
}
form input[type=date]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=email]:focus,
form input[type=month]:focus,
form input[type=number]:focus,
form input[type=password]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=text]:focus,
form input[type=time]:focus,
form input[type=url]:focus,
form input[type=week]:focus,
form select:not([class^=ui-datepicker]):focus,
form textarea:focus {
  background: white;
  outline: none;
  border: 0.1rem solid #999999;
  -webkit-box-shadow: none;
          box-shadow: none;
}
form input[type=date][aria-invalid=true],
form input[type=datetime][aria-invalid=true],
form input[type=datetime-local][aria-invalid=true],
form input[type=email][aria-invalid=true],
form input[type=month][aria-invalid=true],
form input[type=number][aria-invalid=true],
form input[type=password][aria-invalid=true],
form input[type=search][aria-invalid=true],
form input[type=tel][aria-invalid=true],
form input[type=text][aria-invalid=true],
form input[type=time][aria-invalid=true],
form input[type=url][aria-invalid=true],
form input[type=week][aria-invalid=true],
form select:not([class^=ui-datepicker])[aria-invalid=true],
form textarea[aria-invalid=true] {
  background: white;
  border-color: #D11118;
}
form input[type=date]::-webkit-input-placeholder, form input[type=datetime]::-webkit-input-placeholder, form input[type=datetime-local]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form input[type=month]::-webkit-input-placeholder, form input[type=number]::-webkit-input-placeholder, form input[type=password]::-webkit-input-placeholder, form input[type=search]::-webkit-input-placeholder, form input[type=tel]::-webkit-input-placeholder, form input[type=text]::-webkit-input-placeholder, form input[type=time]::-webkit-input-placeholder, form input[type=url]::-webkit-input-placeholder, form input[type=week]::-webkit-input-placeholder, form select:not([class^=ui-datepicker])::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: silver;
  padding-left: 1rem;
}
form input[type=date]::-moz-placeholder, form input[type=datetime]::-moz-placeholder, form input[type=datetime-local]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=month]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=text]::-moz-placeholder, form input[type=time]::-moz-placeholder, form input[type=url]::-moz-placeholder, form input[type=week]::-moz-placeholder, form select:not([class^=ui-datepicker])::-moz-placeholder, form textarea::-moz-placeholder {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: silver;
  padding-left: 1rem;
}
form input[type=date]:-ms-input-placeholder, form input[type=datetime]:-ms-input-placeholder, form input[type=datetime-local]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form input[type=month]:-ms-input-placeholder, form input[type=number]:-ms-input-placeholder, form input[type=password]:-ms-input-placeholder, form input[type=search]:-ms-input-placeholder, form input[type=tel]:-ms-input-placeholder, form input[type=text]:-ms-input-placeholder, form input[type=time]:-ms-input-placeholder, form input[type=url]:-ms-input-placeholder, form input[type=week]:-ms-input-placeholder, form select:not([class^=ui-datepicker]):-ms-input-placeholder, form textarea:-ms-input-placeholder {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: silver;
  padding-left: 1rem;
}
form input[type=date]::-ms-input-placeholder, form input[type=datetime]::-ms-input-placeholder, form input[type=datetime-local]::-ms-input-placeholder, form input[type=email]::-ms-input-placeholder, form input[type=month]::-ms-input-placeholder, form input[type=number]::-ms-input-placeholder, form input[type=password]::-ms-input-placeholder, form input[type=search]::-ms-input-placeholder, form input[type=tel]::-ms-input-placeholder, form input[type=text]::-ms-input-placeholder, form input[type=time]::-ms-input-placeholder, form input[type=url]::-ms-input-placeholder, form input[type=week]::-ms-input-placeholder, form select:not([class^=ui-datepicker])::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: silver;
  padding-left: 1rem;
}
form input[type=date]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=email]::placeholder,
form input[type=month]::placeholder,
form input[type=number]::placeholder,
form input[type=password]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=text]::placeholder,
form input[type=time]::placeholder,
form input[type=url]::placeholder,
form input[type=week]::placeholder,
form select:not([class^=ui-datepicker])::placeholder,
form textarea::placeholder {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: silver;
  padding-left: 1rem;
}
form input[type=date].input--large,
form input[type=datetime].input--large,
form input[type=datetime-local].input--large,
form input[type=email].input--large,
form input[type=month].input--large,
form input[type=number].input--large,
form input[type=password].input--large,
form input[type=search].input--large,
form input[type=tel].input--large,
form input[type=text].input--large,
form input[type=time].input--large,
form input[type=url].input--large,
form input[type=week].input--large,
form select:not([class^=ui-datepicker]).input--large,
form textarea.input--large {
  padding: 0.8rem 2rem;
  height: auto;
}
form input[type=submit] {
  border: none !important;
}
form input[type=file] {
  line-height: 3.8rem;
}
form textarea {
  display: block;
  padding: 1rem 1.2rem;
  width: 100%;
  height: auto;
  max-width: 100%;
  resize: vertical;
  min-height: 15rem;
}
form select:not([class^=ui-datepicker]):not([multiple]) {
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 100%;
  height: 4.2rem;
  padding: 0.24rem 4rem 0.24rem 1.2rem;
  margin: 0;
  border: 1px solid #cccccc;
  border-radius: 0;
  position: relative;
  background-color: white;
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 2rem) 1em, calc(100% - 1.4rem) 1em;
  background-size: 0.6rem 0.6rem, 0.6rem 0.6rem;
  background-repeat: no-repeat;
}
form select:not([class^=ui-datepicker]):not([multiple]):hover, form select:not([class^=ui-datepicker]):not([multiple]):focus {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 2rem) 1em, calc(100% - 1.4rem) 1em;
  background-size: 0.6rem 0.6rem, 0.6rem 0.6rem;
  background-repeat: no-repeat;
}
form select[multiple=multiple] {
  padding: 1rem 1.2rem;
  min-height: 9rem;
  background: white;
}
form input[type=radio],
form input[type=checkbox] {
  display: inline-block;
}
form input[type=radio] + label,
form input[type=checkbox] + label {
  display: inline-block;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  margin: 0 0 0 0.8rem;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
}
form input[type=checkbox] + label {
  margin: 0 0 0 0.5rem;
}
form input[type=checkbox] {
  position: relative;
  margin: 0;
  background-color: white;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 0 0 0 white;
          box-shadow: inset 0 0 0 0 white;
  font: inherit;
  height: 1.6rem;
  outline: none;
  width: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  -webkit-transition: background-color 0.5s, -webkit-box-shadow 0.1s;
  transition: background-color 0.5s, -webkit-box-shadow 0.1s;
  transition: background-color 0.5s, box-shadow 0.1s;
  transition: background-color 0.5s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
}
form input[type=checkbox]:checked {
  background-color: #191919;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5), inset 0 0 0 0.2rem white;
          box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5), inset 0 0 0 0.2rem white;
  -webkit-transition: background-color 0.5s, -webkit-box-shadow 0.1s;
  transition: background-color 0.5s, -webkit-box-shadow 0.1s;
  transition: background-color 0.5s, box-shadow 0.1s;
  transition: background-color 0.5s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
}
form input[type=radio] {
  position: relative;
  margin: 0;
  vertical-align: middle;
  background-color: white;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 0 0 0 white;
          box-shadow: inset 0 0 0 0 white;
  font: inherit;
  height: 1.6rem;
  width: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cccccc;
  -webkit-transition: background-color 0.5s, -webkit-box-shadow 0.1s;
  transition: background-color 0.5s, -webkit-box-shadow 0.1s;
  transition: background-color 0.5s, box-shadow 0.1s;
  transition: background-color 0.5s, box-shadow 0.1s, -webkit-box-shadow 0.1s;
}
form input[type=radio]:focus {
  outline: none;
}
form input[type=radio]:checked {
  background-color: #191919;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5), inset 0 0 0 0.2rem white;
          box-shadow: 0 0 0 0.25rem rgba(204, 204, 204, 0.5), inset 0 0 0 0.2rem white;
}
form .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.4rem;
}
form .search-form input {
  margin: 0;
}
form .entry-content > .gform_wrapper {
  background: #f8f8f8;
  padding: 3rem 2.5rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
@media (min-width: 576px) {
  form .entry-content > .gform_wrapper {
    margin-left: 0;
    margin-right: 0;
    padding: 3rem;
  }
}
form .gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
}
form .gform_description {
  font-size: 1.8rem;
  display: block;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
form .gform_body {
  margin-bottom: 3rem;
}
form .gform_body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
form .gform_body > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
form .gform_body > ul > li:not(.gform_hidden):not(.hidden_label) {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  form .gform_body > ul > li:not(.gform_hidden):not(.hidden_label) {
    margin-bottom: 3rem;
  }
}
form .gfield_error [aria-required=true] {
  background: white;
  border-color: #D11118;
}
form .ginput_complex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
form .ginput_complex span {
  padding-right: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
form .ginput_complex span:last-of-type {
  padding-right: 0;
}
form .ginput_complex span.ginput_full {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
form .ginput_complex span.ginput_left, form .ginput_complex span.ginput_right {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 576px) {
  form .ginput_complex span.ginput_left, form .ginput_complex span.ginput_right {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
form .ginput_complex span label {
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  font-size: 1.4rem;
  padding-bottom: 0.8rem;
}
form .gform_footer {
  position: relative;
  margin-top: 0 !important;
}
form .gform_footer img {
  position: absolute;
  right: 0;
  top: 50%;
}
@media (min-width: 576px) {
  form .gform_footer img {
    -webkit-transform: translateX(calc(100% + 0.5rem)) translateY(-50%);
            transform: translateX(calc(100% + 0.5rem)) translateY(-50%);
  }
}
form .gfield .clear-multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
form .gfield_time_hour,
form .gfield_time_minute {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-right: 1.2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.2rem;
          flex: 0 0 6.2rem;
  max-width: 6.2rem;
}
form .gfield_time_hour label,
form .gfield_time_minute label {
  font-size: 1.4rem;
  font-weight: normal;
}
form .gfield_time_hour i {
  position: absolute;
  right: 0;
  top: 2.1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  font-style: normal;
  width: 1.2rem;
  line-height: 1;
  font-size: 1.6rem;
  text-align: center;
}
form .validation_error {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  border: none;
  font-size: 1.6rem;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  background: none;
  padding: 1.5rem 2rem;
  margin: 0 0 1rem;
  background: #D11118;
  color: white;
}
form .validation_message {
  border: none !important;
  color: #D11118 !important;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  background: none !important;
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 0 !important;
  margin-top: 0 !important;
}
form .gfield {
  width: 100%;
}
form .gfield.half {
  width: 50%;
  padding-right: 0.5rem;
}
form .gfield.half:last-of-type {
  padding-right: 0;
}
form .ui-datepicker,
form .ui-datepicker table,
form .ui-datepicker tr,
form .ui-datepicker td,
form .ui-datepicker th {
  margin: 0;
  padding: 0;
  border: none;
  border-spacing: 0;
}
form .ui-datepicker {
  background: #ededed;
  background: #f8f8f8;
  display: none;
  cursor: default;
  position: absolute;
  text-transform: uppercase;
  z-index: 9999 !important;
  border-radius: 0;
  outline: 1px solid #222;
}
form .ui-datepicker table {
  font-size: 1.4rem;
  margin: 0;
}
form .ui-datepicker .ui-datepicker-header {
  border: none;
  background: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #191919;
  color: white;
  font-weight: normal;
}
form .ui-datepicker .ui-datepicker-header .ui-state-hover {
  background: #222;
  background: #191919;
  border-color: transparent;
  cursor: pointer;
  border-radius: 0;
}
form .ui-datepicker .ui-datepicker-prev,
form .ui-datepicker .ui-datepicker-next {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-decoration: none;
  height: 3.6rem;
}
form .ui-datepicker .ui-datepicker-prev span,
form .ui-datepicker .ui-datepicker-next span {
  font: 0/0 a;
  display: block;
  height: 3.6rem;
  position: relative;
}
form .ui-datepicker .ui-datepicker-prev span:before,
form .ui-datepicker .ui-datepicker-next span:before {
  font-family: sans-serif;
  content: "←";
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 3rem;
  line-height: 3.6rem;
  display: block;
  text-align: center;
}
form .ui-datepicker .ui-datepicker-next {
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
}
form .ui-datepicker .ui-datepicker-next span:before {
  content: "→";
}
form .ui-datepicker .ui-datepicker-month {
  margin-right: 0.2rem;
}
form .ui-datepicker .ui-datepicker-month,
form .ui-datepicker .ui-datepicker-year {
  height: 2.6rem;
}
form .ui-datepicker thead {
  background: #222;
  background: #191919;
  color: white;
}
form .ui-datepicker th {
  color: #fff;
  font-weight: normal;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
form .ui-datepicker td {
  background: #ededed;
  background: #f8f8f8;
  border: none;
  padding: 0;
  text-align: center;
}
form .ui-datepicker td .ui-state-default {
  display: block;
  width: 4rem;
  line-height: 3.8rem;
  outline: none;
  color: #191919;
  text-decoration: none;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
form .ui-datepicker td .ui-state-active,
form .ui-datepicker td .ui-state-hover {
  background: #222;
  background: #191919;
  color: #fff;
}
form .ui-datepicker td.ui-state-disabled,
form .ui-datepicker td.ui-state-disabled .ui-state-default {
  opacity: 1;
  color: #999;
}

.gform_validation_errors {
  display: none !important;
}

.gform_title {
  font-size: 32px;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
.gform_title:after {
  display: none !important;
}

.gform_required_legend {
  display: none;
}

.one-line-form {
  padding: 0.7rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-radius: 50px;
}
@media (min-width: 992px) {
  .one-line-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.one-line-form.gform_confirmation_wrapper {
  background: none;
  padding: 0;
}
.one-line-form .gform-body {
  width: auto;
  height: 6rem;
  width: 100% !important;
  margin-bottom: 1.5rem;
  -webkit-box-flex: unset !important;
      -ms-flex: unset !important;
          flex: unset !important;
}
@media (min-width: 992px) {
  .one-line-form .gform-body {
    margin-bottom: 0;
    width: 58% !important;
  }
}
.one-line-form .gform-body input {
  height: 6rem;
  margin-left: 0 !important;
  border-radius: 5px;
  padding-left: 2.5rem;
  margin-left: 1rem;
  border: none;
  padding-left: 0.5rem;
}
.one-line-form .gform-body input:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.one-line-form .gform_footer {
  height: 6rem;
  width: 100% !important;
  -webkit-box-flex: unset !important;
      -ms-flex: unset !important;
          flex: unset !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .one-line-form .gform_footer {
    width: 40% !important;
  }
}
.one-line-form .gform_footer input {
  height: 6.2rem;
  margin-bottom: 0 !important;
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
  width: 100% !important;
  border-radius: 5px;
  padding: 0;
  background-color: #2076ff;
  border: 2px solid #2076ff !important;
}
.one-line-form .gform_footer:hover {
  -webkit-box-flex: unset !important;
      -ms-flex: unset !important;
          flex: unset !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
.one-line-form .gform_footer:hover span {
  background-color: transparent !important;
}
.one-line-form .gfield_validation_message {
  background: none !important;
  border: none !important;
  color: salmon !important;
  margin-top: 0.8rem !important;
  min-width: 25rem !important;
}
.one-line-form .gfield_error [aria-invalid=true] {
  border: none !important;
}
.one-line-form .hidden_label .gfield_label {
  display: none;
}

.hero-block-offset {
  margin-top: -10rem !important;
  position: relative !important;
  z-index: 1 !important;
}

.wp-block-latest-posts__post-title {
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  font-size: 18px;
  color: #191919;
}

.blog .hero,
.archive .hero,
.category .hero,
.post .hero {
  text-align: center;
  padding: 4rem 0;
}
.blog .hero :last-child,
.archive .hero :last-child,
.category .hero :last-child,
.post .hero :last-child {
  margin-bottom: 0;
}

.excerpt {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 576px) {
  .excerpt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .excerpt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
}

.blog-page-hero .read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-page-hero .read-more a {
  padding-bottom: 0.5rem;
  font-family: "ClashDisplay Bold", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-display: auto;
  text-transform: uppercase;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  border-bottom: 2px solid #0095d9 !important;
}
.blog-page-hero .read-more a:hover {
  text-decoration: none;
}

.blog-page-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f1f4f6;
}

.blog-categories {
  border-top: 1px solid #cdcdcd;
}
.blog-categories .facetwp-facet-categories {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
}
.blog-categories .facetwp-facet-categories .facetwp-counter {
  display: none;
}
.blog-categories .facetwp-facet-categories .facetwp-radio {
  padding: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 0;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: #696969 !important;
  background: white !important;
  border-bottom: 2px solid white !important;
  font-size: 14px;
}
@media (min-width: 320px) {
  .blog-categories .facetwp-facet-categories .facetwp-radio {
    font-size: calc(
        14px + 2 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .blog-categories .facetwp-facet-categories .facetwp-radio {
    font-size: 16px;
  }
}
.blog-categories .facetwp-facet-categories .facetwp-radio .facetwp-display-value {
  font-size: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
@media (min-width: 320px) {
  .blog-categories .facetwp-facet-categories .facetwp-radio .facetwp-display-value {
    font-size: calc(
        14px + 2 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .blog-categories .facetwp-facet-categories .facetwp-radio .facetwp-display-value {
    font-size: 16px;
  }
}
.blog-categories .facetwp-facet-categories .facetwp-radio.checked {
  color: #191919 !important;
  background: white !important;
  border-bottom: 2px solid #0095d9 !important;
}

.facetwp-template {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.facetwp-facet-pagination {
  margin-bottom: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

.facetwp-pager {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.facetwp-pager a {
  font-family: "ClashDisplay Bold", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-display: auto;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #ffffff;
  color: #191919;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  outline: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.facetwp-pager a:focus, .facetwp-pager a:hover {
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.facetwp-pager a.active {
  background: #191919;
  color: #ffffff;
}
.facetwp-pager a.next {
  font-size: 0;
  background-position: center center;
  background-size: cover;
  background-image: url(./img/black-white-arrow.svg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.facetwp-pager a.next:focus, .facetwp-pager a.next:hover {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.facetwp-pager a.prev {
  font-size: 0;
  background-position: center center;
  background-size: cover;
  background-image: url(./img/black-white-arrow.svg);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.facetwp-pager a.prev:focus, .facetwp-pager a.prev:hover {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.pill {
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 12px;
  background: #2076ff;
  color: #1D492F;
  margin-left: 0;
  margin-right: auto;
  margin-right: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 18px;
}
@media (min-width: 320px) {
  .pill {
    font-size: calc(
        18px + 2 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .pill {
    font-size: 20px;
  }
}

.page .hero {
  text-align: center;
  padding: 4rem 0;
}
.page .hero :last-child {
  margin-bottom: 0;
}

.radius-wrapper {
  border-radius: 10px;
}

.line-above:before {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background-color: #2076ff;
  margin-bottom: 1.5rem;
  margin-top: 4rem;
}

.content-with-title {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-wrapper {
  background-color: white;
}

.slick-list,
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slide > div {
  height: 100%;
  padding-right: 1.5rem;
}
@media (min-width: 992px) {
  .slick-slide > div {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .slick-slide > div .inner-slide {
    height: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 1rem 0;
  padding-top: 3rem;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #2076ff;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: #191919;
}

.wp-block-yoast-faq-block {
  max-width: 88rem;
  margin: 2.4rem auto;
}

.rank-math-list-item {
  background: #fcfcfc;
  padding: 3rem;
  border-radius: 15px;
  color: black;
  margin-bottom: 2rem;
  overflow: hidden;
}

.rank-math-question {
  display: block;
  position: relative;
  line-height: 1.3;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  padding: 2rem;
  padding-left: 0;
  padding-right: 7rem;
  padding-bottom: 1.2rem;
  cursor: pointer;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  margin-bottom: 0 !important;
}
@media (min-width: 320px) {
  .rank-math-question {
    font-size: calc(
        20px + -1 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .rank-math-question {
    font-size: 19px;
  }
}
.rank-math-question:nth-child(1) {
  padding-top: 1rem;
}
.rank-math-question:before {
  content: "";
}
.rank-math-question:after {
  content: "";
  background: url("img/chevron-blue-arrow.svg") no-repeat center center;
  background-size: 3.2rem;
  height: 3.2rem;
  width: 3.2rem;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.fcp-opened .rank-math-question {
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  background: #fcfcfc;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.fcp-opened .rank-math-question:after {
  margin-top: 3px !important;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.rank-math-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
}
.rank-math-answer p {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 16px;
  margin-bottom: 2rem;
}
.rank-math-answer a {
  text-decoration: underline;
}
.rank-math-answer a:hover {
  text-decoration-color: #191919;
}

.fcp-opened .rank-math-answer {
  max-height: 9999px;
  margin: 0;
  margin-bottom: 0 !important;
  padding: 2rem;
  padding-left: 0;
  padding-bottom: 0 !important;
  padding-top: 2rem !important;
}
@media (min-width: 992px) {
  .fcp-opened .rank-math-answer {
    padding-right: 10rem;
  }
}

.rank-math-breadcrumb {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 14px;
}
.rank-math-breadcrumb a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
.rank-math-breadcrumb span {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

.standard-content-wrapper {
  padding-top: 3rem !important;
}
.standard-content-wrapper > p:last-child {
  padding-bottom: 3rem !important;
}
@media (min-width: 992px) {
  .standard-content-wrapper > p:last-child {
    padding-bottom: 7rem !important;
  }
}
@media (min-width: 992px) {
  .standard-content-wrapper .standard-side-menu {
    padding-bottom: 7rem !important;
  }
}
@media (min-width: 992px) {
  .standard-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 7rem !important;
  }
}
.standard-content-wrapper .standard-side-menu {
  padding-right: 6rem;
}
.standard-content-wrapper .standard-side-menu .standard-menu-inner {
  position: sticky;
  top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.standard-content-wrapper .standard-side-menu h6 {
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  text-transform: uppercase;
  font-size: 16px;
}
.standard-content-wrapper .standard-side-menu a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-weight: 600;
  color: #191919;
  font-size: 15px;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
.standard-content-wrapper .standard-side-menu a.active {
  color: #D11118;
}
.standard-content-wrapper .standard-side-menu a:hover {
  text-decoration: none;
  color: #D11118;
}
@media (min-width: 992px) {
  .standard-content-wrapper .standard-side-menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .standard-content-wrapper .standard-side-menu {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
}
.standard-content-wrapper .standard-page-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .standard-content-wrapper .standard-page-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .standard-content-wrapper .standard-page-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
}
@media (min-width: 1200px) {
  .standard-content-wrapper .standard-page-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
}

.standard-page-content .wp-block-embed__wrapper iframe {
  height: 250px;
}
@media (min-width: 992px) {
  .standard-page-content .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 700px;
  }
}

.page-content-404 {
  padding-bottom: 5rem;
}
.page-content-404 .search-form {
  width: 100%;
}
.page-content-404 .search-form input[type=submit] {
  background: #D11118;
  width: 30%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  color: white;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
.page-content-404 h1 {
  margin-top: 3rem;
  font-size: 10rem;
}
@media (min-width: 992px) {
  .page-content-404 {
    padding-bottom: 10rem;
  }
  .page-content-404 .search-form {
    width: 50%;
  }
  .page-content-404 h1 {
    margin-top: 5rem;
    font-size: 15rem;
  }
}

@media (min-width: 992px) {
  .custom-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.custom-cards article {
  margin: 10px;
}
.custom-cards article img {
  height: 7rem;
  width: auto;
}
.custom-cards article a {
  padding: 2rem;
  display: block;
  border-radius: 15px;
  text-decoration: none;
  background: #84DD63;
  color: #1D492F;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.custom-cards article a:hover {
  background: white;
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.custom-cards article h4 {
  color: #1D492F;
}
@media (min-width: 992px) {
  .custom-cards article:nth-child(even) {
    margin-top: 4rem;
  }
  .custom-cards article:nth-child(odd) {
    margin-bottom: 4rem;
  }
}

.modal {
  padding: 0 !important;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  max-width: 600px;
}
.modal iframe {
  width: 600px !important;
  height: 195px !important;
}
@media (min-width: 768px) {
  .modal {
    max-width: 600px;
  }
  .modal iframe {
    width: 600px !important;
    height: 350px !important;
  }
}
@media (min-width: 992px) {
  .modal {
    max-width: 900px;
  }
  .modal iframe {
    width: 900px !important;
    height: 510px !important;
  }
}
@media (min-width: 1200px) {
  .modal {
    max-width: 900px;
  }
  .modal iframe {
    width: 960px !important;
    height: 510px !important;
  }
}

.custom-lightbox-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom-lightbox-list .lightbox-card {
  width: 100%;
  display: block;
  margin: 15px;
  border-radius: 15px;
  text-decoration: none;
  background: #84DD63;
  color: white;
  height: 25rem;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media (min-width: 992px) {
  .custom-lightbox-list .lightbox-card {
    width: 29%;
  }
}
.custom-lightbox-list .lightbox-card .card-overlay-duotone {
  display: block;
  height: 100%;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 2rem;
  text-decoration: none;
  background-color: rgba(32, 118, 255, 0.3);
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}
.custom-lightbox-list .lightbox-card img {
  border-radius: 15px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-lightbox-list .lightbox-card h4 {
  text-decoration: none;
  color: white;
  font-size: 28px;
  margin-bottom: 0;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}
@media (min-width: 992px) {
  .custom-lightbox-list .lightbox-card {
    margin-bottom: 4rem;
    margin-top: -1rem;
  }
  .custom-lightbox-list .lightbox-card:nth-child(3n-1) {
    margin-bottom: -2rem;
    margin-top: 2rem;
  }
}
.custom-lightbox-list .lightbox-card:hover {
  background-size: 110% 110%;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.custom-lightbox-list .lightbox-card:hover .card-overlay-duotone {
  text-decoration: none;
  background-color: rgba(97, 115, 90, 0.5);
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.custom-lightbox-list .lightbox-card:hover h4 {
  margin-bottom: 0.5rem;
  text-decoration: none;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
}

.message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.message .message-image {
  height: 5rem;
  width: 5rem;
  border-radius: 100%;
  margin: 10px;
}
@media (min-width: 992px) {
  .message .message-image {
    height: 10rem;
    width: 10rem;
  }
}
.message .message-text {
  margin: 10px;
  padding: 4rem;
  border-radius: 20px;
  background: #fcfcfc;
  border-radius: 20px;
  border-bottom-left-radius: 0px;
}
@media (min-width: 992px) {
  .message .message-text {
    margin-right: 30rem;
  }
}
.message .message-text p {
  margin-bottom: 0;
  font-size: 16px;
}
@media (min-width: 992px) {
  .message .message-text p {
    font-size: 22px;
  }
}
.message:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.message:nth-child(even) .message-text {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 0px;
  background: #84DD63;
  color: #fcfcfc;
}
@media (min-width: 992px) {
  .message:nth-child(even) .message-text {
    margin-left: 30rem;
    margin-right: 10px;
  }
}

.custom-messages {
  padding: 0rem;
}
@media (min-width: 992px) {
  .custom-messages {
    padding: 4rem;
  }
}

.custom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.custom-list article {
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .custom-list article {
    width: 49%;
  }
}
.custom-list article a,
.custom-list article > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  color: #1D492F;
  padding: 2rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 7px;
}
.custom-list article a img,
.custom-list article > div img {
  width: auto;
  height: 4rem;
  margin-right: 2rem;
}
.custom-list article a h4,
.custom-list article > div h4 {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  color: #1D492F;
  font-size: 18px;
}
.custom-list article a:after,
.custom-list article > div:after {
  content: "";
  background: url("img/chevron-blue-arrow.svg") no-repeat center center;
  background-size: 3.2rem;
  height: 3.2rem;
  width: 3.2rem;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  margin: 0 auto;
  padding: 5px 0;
  background-color: #e1a6ad;
}

.marquee .marquee_text {
  display: inline-block;
  /* padding-left: 100%; */
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
  /* animation: marquee_flip 26s linear infinite;  For left to right */
}

.marquee .marquee_text ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  text-transform: uppercase;
  list-style-position: inside;
  list-style-type: none;
}

.marquee .marquee_text ul.marquee-content-primary {
  padding-left: 0px;
}

.marquee .marquee_text ul > li {
  padding-inline: 7px;
}

.marquee-content-secondary {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: var(--marquee-padding);
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(var(--marquee-padding-negative), 0, 0);
    transform: translate3d(var(--marquee-padding-negative), 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(var(--marquee-padding-negative), 0, 0);
    transform: translate3d(var(--marquee-padding-negative), 0, 0);
  }
}
#search .search-form {
  background: #f1f4f6;
  width: 100% !important;
}
@media (min-width: 992px) {
  #search .search-form {
    width: 60% !important;
  }
}
#search .search-form input {
  background: #f1f4f6;
  height: 5rem;
  border-color: #f1f4f6;
  padding-left: 2rem;
}
#search .search-form input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#search .search-form input[type=submit] {
  background: #D11118;
  width: 30%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
#search .search-form label {
  width: 70%;
}

.search .hero {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: white;
}
@media (min-width: 992px) {
  .search .hero {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.search .hero :last-child {
  margin-bottom: 0;
}
.search .hero .search-submit {
  background-color: #D11118;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.8rem;
  font-family: "ClashDisplay Semibold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  color: white;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-decoration: none;
  height: 5rem;
  margin: 0;
  padding: 0 3.6rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 2px;
  outline: 0.1rem solid transparent;
  height: 5.6rem !important;
  padding: 0.8rem 3.2rem !important;
  border: none !important;
}
.search .entry-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .search .entry-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.featured-image {
  margin-bottom: 3rem;
}

.post-category {
  position: relative;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 320px) {
  .post-category {
    font-size: calc(
        12px + 4 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .post-category {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .post-category {
    margin: 0 auto 3rem;
  }
}

.post-entry-title {
  text-align: center;
  font-size: 2.5rem;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 2.5rem;
}
@media (min-width: 320px) {
  .post-entry-title {
    font-size: calc(
        32px + 16 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .post-entry-title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .post-entry-title {
    line-height: 1.1;
    margin: 0 0 3rem;
  }
}

.post .blogpost-sidebar {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .post .blogpost-sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 29.1666666667%;
    margin-left: 10.8333333333%;
  }
}
.post .entry-content {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .post .entry-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 60%;
  }
}

.sticky-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: sticky;
  top: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1rem;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}
@media (min-width: 992px) {
  .sticky-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.single-blog-content {
  padding-top: 3rem;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .single-blog-content {
    padding-top: 6rem;
  }
}
.single-blog-content .post-author {
  border-top: 1px solid #cccccc;
  margin: 5.6rem 0 0;
  padding: 4rem 0;
}
@media (min-width: 576px) {
  .single-blog-content .post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 576px) {
  .single-blog-content .post-author__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 9.6rem;
            flex: 0 0 9.6rem;
  }
}
@media (min-width: 768px) {
  .single-blog-content .post-author__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.8rem;
            flex: 0 0 12.8rem;
  }
}
@media (min-width: 1200px) {
  .single-blog-content .post-author__pic {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15.2rem;
            flex: 0 0 15.2rem;
  }
}
.single-blog-content .post-author__pic img {
  width: 7.2rem;
  height: 7.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .single-blog-content .post-author__pic img {
    width: 9.6rem;
    height: 9.6rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .single-blog-content .post-author__pic img {
    width: 11.2rem;
    height: 11.2rem;
  }
}
@media (min-width: 768px) {
  .single-blog-content .post-author .post-author__info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.single-blog-content .display-name {
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  color: #191919;
  font-size: 125%;
  margin-bottom: 0.8rem;
}

.hero {
  background: #f1f4f6;
}

.hero-with-title {
  padding-bottom: 0 !important;
}
@media (min-width: 992px) {
  .hero-with-title {
    padding-bottom: 0 !important;
    padding-top: 10rem !important;
  }
}
.hero-with-title h1 {
  text-align: left;
  font-size: 48px;
}
@media (min-width: 320px) {
  .hero-with-title h1 {
    font-size: calc(
        48px + 24 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .hero-with-title h1 {
    font-size: 72px;
  }
}
.hero-with-title:after {
  content: "";
  display: block;
  height: 4rem;
  margin-top: 3rem;
  width: 100vw;
  margin-bottom: -1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -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;
  background: url(./img/hero-wave.svg) no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .hero-with-title:after {
    height: 15rem;
    margin-top: 7rem;
  }
}

.single-blog-hero {
  background-size: cover;
  background-image: url(./img/ifda-right-left-media-map-pattern.png);
  background-position: center left;
  padding-bottom: 0 !important;
  padding-top: 10rem !important;
}
.single-blog-hero .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .single-blog-hero .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.single-blog-hero:after {
  height: 4rem;
  margin-top: 3rem;
  content: "";
  display: block;
  width: 100vw;
  margin-bottom: -1px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -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;
  background: url(./img/hero-wave.svg) no-repeat;
  background-size: cover;
}
@media (min-width: 992px) {
  .single-blog-hero:after {
    height: 15rem;
    margin-top: 4rem;
  }
}
.single-blog-hero .pill {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .single-blog-hero .pill {
    margin-bottom: 2.5rem;
  }
}
.single-blog-hero .pill:hover {
  text-decoration: none;
  color: white;
  background: #fd7e14;
}

.container-max-width {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero-content,
.post-hero-image {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .post-hero-content,
  .post-hero-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}

.post-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .post-hero-content {
    padding-top: none;
    padding-right: 7rem;
  }
}
.post-hero-content .post-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.post-hero-content h1 {
  text-align: left;
  font-size: 48px;
}
@media (min-width: 320px) {
  .post-hero-content h1 {
    font-size: calc(
        48px + 24 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .post-hero-content h1 {
    font-size: 72px;
  }
}
.post-hero-content .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 992px) {
  .post-hero-content .post-meta {
    margin-top: 2.4rem;
  }
}
.post-hero-content .post-meta .post-author {
  margin-top: 0;
  padding-top: 0;
  border: none;
  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;
}
.post-hero-content .post-meta .post-author__info {
  text-align: left;
  font-size: 1.6rem;
  font-size: clamp-calc(480px, 1600px, 14px, 18px);
}
.post-hero-content .post-meta .post-author__pic {
  width: 5.2rem;
  height: 5.2rem;
  margin-right: 1.5rem;
}
@media (min-width: 992px) {
  .post-hero-content .post-meta .post-author__pic {
    width: 7.2rem;
    height: 7.2rem;
  }
}
.post-hero-content .post-meta .post-author__pic img {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .post-hero-content .post-meta .post-author__pic img {
    width: 7.2rem;
    height: 7.2rem;
  }
}
.post-hero-content .post-meta .post-author__pic .avatar {
  border-radius: 4.8rem;
}
.post-hero-content .post-meta .display-name {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
  color: #191919;
}
@media (min-width: 320px) {
  .post-hero-content .post-meta .display-name {
    font-size: calc(
        18px + 2 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .post-hero-content .post-meta .display-name {
    font-size: 20px;
  }
}
.post-hero-content .post-meta .date {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  display: initial;
  font-size: 14px;
  line-height: 1;
}
@media (min-width: 320px) {
  .post-hero-content .post-meta .date {
    font-size: calc(
        14px + 2 * (100vw - 320px) / 1120
      );
  }
}
@media (min-width: 1440px) {
  .post-hero-content .post-meta .date {
    font-size: 16px;
  }
}

.share-post {
  margin-bottom: 4.5rem;
}
.share-post span {
  margin-bottom: 1rem;
  display: block;
  font-family: "ClashDisplay Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}

.download-resource {
  margin-bottom: 5.5rem;
}
.download-resource img {
  border-radius: 7px;
}
.download-resource .button {
  margin-top: 1.5rem;
  width: 100%;
}
.download-resource span {
  font-size: 12px;
  text-align: left;
  font-style: italic;
}

.sidebar-newsletter {
  position: sticky;
  top: 2rem;
  margin-bottom: 3rem;
}
.sidebar-newsletter .gform-body {
  margin-bottom: 0;
}

.theme-page section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.theme-page .background-image {
  height: 10rem;
  width: 10rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.theme-page .image {
  height: 20rem;
  width: auto;
}
.theme-page .theme-unrelated {
  padding-top: 3rem;
}
.theme-page .theme-unrelated h2 {
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: lowercase;
}

/*
* Styles for Grid of Logos Blocks
*/
.logos {
  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-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.logo-wrapper {
  -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) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 3rem;
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
  height: 12rem;
  width: auto;
}
.logo-wrapper .logo {
  height: auto;
  background: white;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo-wrapper .logo img {
  width: 75%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .logo-wrapper .logo {
    height: auto;
    border: 1px solid grey;
    min-height: 12rem;
  }
}