/* --------------------------------------------------------------
 >> Import all partials
-------------------------------------------------------------- */
/*!
 * Bootstrap Grid v5.1.3 (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)
 */
:root {
  --bs-blue:#0d6efd;
  --bs-indigo:#6610f2;
  --bs-purple:#6f42c1;
  --bs-pink:#d63384;
  --bs-red:#dc3545;
  --bs-orange:#fd7e14;
  --bs-yellow:#ffc107;
  --bs-green:#198754;
  --bs-teal:#20c997;
  --bs-cyan:#0dcaf0;
  --bs-white:#fff;
  --bs-gray:#6c757d;
  --bs-gray-dark:#343a40;
  --bs-gray-100:#f8f9fa;
  --bs-gray-200:#e9ecef;
  --bs-gray-300:#dee2e6;
  --bs-gray-400:#ced4da;
  --bs-gray-500:#adb5bd;
  --bs-gray-600:#6c757d;
  --bs-gray-700:#495057;
  --bs-gray-800:#343a40;
  --bs-gray-900:#212529;
  --bs-primary:#0d6efd;
  --bs-secondary:#6c757d;
  --bs-success:#198754;
  --bs-info:#0dcaf0;
  --bs-warning:#ffc107;
  --bs-danger:#dc3545;
  --bs-light:#f8f9fa;
  --bs-dark:#212529;
  --bs-primary-rgb:13,110,253;
  --bs-secondary-rgb:108,117,125;
  --bs-success-rgb:25,135,84;
  --bs-info-rgb:13,202,240;
  --bs-warning-rgb:255,193,7;
  --bs-danger-rgb:220,53,69;
  --bs-light-rgb:248,249,250;
  --bs-dark-rgb:33,37,41;
  --bs-white-rgb:255,255,255;
  --bs-black-rgb:0,0,0;
  --bs-body-color-rgb:33,37,41;
  --bs-body-bg-rgb:255,255,255;
  --bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family:var(--bs-font-sans-serif);
  --bs-body-font-size:1rem;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.5;
  --bs-body-color:#212529;
  --bs-body-bg:#fff;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x:1.5rem;
  --bs-gutter-y:0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

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

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

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

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

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

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.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.33333333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-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: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-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: 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;
  }
}

.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  transition: all 0s;
}

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.twentytwenty-handle:before, .twentytwenty-handle:after {
  content: " ";
  display: block;
  width: 3px;
  background: white;
  height: 9999px;
  position: absolute;
  left: 50%;
  margin-left: -1.5px;
  z-index: 30;
  -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-before-label, .twentytwenty-after-label, .twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.twentytwenty-before-label, .twentytwenty-after-label {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-before-label:before, .twentytwenty-after-label:before {
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  margin-top: -19px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}

.twentytwenty-left-arrow, .twentytwenty-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.twentytwenty-container img {
  position: absolute;
  top: 0;
  display: block;
}

.twentytwenty-container.active .twentytwenty-overlay, .twentytwenty-container.active :hover.twentytwenty-overlay {
  background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label, .twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-before-label:before {
  content: "Before";
  left: 10px;
}

.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-after-label:before {
  content: "After";
  right: 10px;
}

.twentytwenty-overlay {
  -webkit-transition-property: background;
  transition-property: background;
  background: rgba(0, 0, 0, 0);
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  border-radius: 1000px;
  -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
}

.twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 22px;
  -webkit-box-shadow: 0 3px 0 white, 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0 0 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-handle:after {
  top: 50%;
  margin-top: 22px;
  -webkit-box-shadow: 0 -3px 0 white, 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0 0 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

#before_after {
  width: 100%;
  margin: 0 auto;
} /* --------------------------------------------------------------
 >> THEME FUNCTIONS
 Dependencies: none
-------------------------------------------------------------- */
/* --------------------------------------------------------------
 >> THEME VARIABLES
 Dependencies: _functions.scss
-------------------------------------------------------------- */
/* Breakpoints */
/* Units + Spacing */
/* 128px */
/* 96px */
/* 64px */
/* 48px */
/* 36px */
/* 28px */
/* 20px */
/* 16px */
/* These variables are used to setup the height of our fixed header */
/* We compensate for header overlap by using this variable for top padding/margin */
/* Setup font families here and adjust font weights as needed */
/* Set up custom variables for brand colors */
/* --------------------------------------------------------------
* >> THEME MIX-INS
*
* Dependencies: '_variables.scss'
-------------------------------------------------------------- */
/* --------------------------------------------------------------
 >> UTILITY CLASSES
 Dependencies: _functions.scss, _variables.scss

 # Fonts
 # Colors
 # Font Styles
 # Positioning 
 # Padding + Margin
 # Media
 # Overflows
 # Sizing
 # Border Radius
 # Box/Filter Shadow

-------------------------------------------------------------- */
/* # Fonts
-------------------------------------------------------------- */
/* exo-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Exo";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/exo-v20-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/exo-v20-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/exo-v20-latin-regular.woff2") format("woff2"), url("../fonts/exo-v20-latin-regular.woff") format("woff"), url("../fonts/exo-v20-latin-regular.ttf") format("truetype"), url("../fonts/exo-v20-latin-regular.svg#Exo") format("svg"); /* Legacy iOS */
}
/* exo-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Exo";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/exo-v20-latin-700.eot"); /* IE9 Compat Modes */
  src: url("../fonts/exo-v20-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/exo-v20-latin-700.woff2") format("woff2"), url("../fonts/exo-v20-latin-700.woff") format("woff"), url("../fonts/exo-v20-latin-700.ttf") format("truetype"), url("../fonts/exo-v20-latin-700.svg#Exo") format("svg"); /* Legacy iOS */
}
/* sofia-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/sofia-sans-v16-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/sofia-sans-v16-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/sofia-sans-v16-latin-regular.woff2") format("woff2"), url("../fonts/sofia-sans-v16-latin-regular.woff") format("woff"), url("../fonts/sofia-sans-v16-latin-regular.ttf") format("truetype"), url("../fonts/sofia-sans-v16-latin-regular.svg#SofiaSans") format("svg"); /* Legacy iOS */
}
/* sofia-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/sofia-sans-v16-latin-700.eot"); /* IE9 Compat Modes */
  src: url("../fonts/sofia-sans-v16-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/sofia-sans-v16-latin-700.woff2") format("woff2"), url("../fonts/sofia-sans-v16-latin-700.woff") format("woff"), url("../fonts/sofia-sans-v16-latin-700.ttf") format("truetype"), url("../fonts/sofia-sans-v16-latin-700.svg#SofiaSans") format("svg"); /* Legacy iOS */
}
/* sofia-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Sofia Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/sofia-sans-v16-latin-800.eot"); /* IE9 Compat Modes */
  src: url("../fonts/sofia-sans-v16-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/sofia-sans-v16-latin-800.woff2") format("woff2"), url("../fonts/sofia-sans-v16-latin-800.woff") format("woff"), url("../fonts/sofia-sans-v16-latin-800.ttf") format("truetype"), url("../fonts/sofia-sans-v16-latin-800.svg#SofiaSans") format("svg"); /* Legacy iOS */
}
/* # Colors
-------------------------------------------------------------- */
.c-1 {
  color: #AB111C;
}

.c-2 {
  color: #8D121A;
}

.c-3 {
  color: #5C5D5F;
}

.c-wt {
  color: #ffffff;
}

.c-ui {
  color: #9C9C9C;
}

.c-ui-light {
  color: #F0F0F0;
}

.c-ui-dark {
  color: #434343;
}

.c-blk {
  color: #000000;
}

.bg-c-1 {
  background-color: #AB111C;
}

.bg-c-2 {
  background-color: #8D121A;
}

.bg-c-3 {
  background-color: #5C5D5F;
}

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

.bg-ui {
  background-color: #9C9C9C;
}

.bg-ui-light {
  background-color: #F0F0F0;
}

.bg-ui-dark {
  background-color: #434343;
}

.bg-blk {
  background-color: #000000;
}

.bg-gra-gray {
  background: -o-linear-gradient(180deg, #ffffff 0%, #F0F0F0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$ui-light-gray", endColorstr="$white", GradientType=0 );
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#F0F0F0));
  background: linear-gradient(180deg, #ffffff 0%, #F0F0F0 100%);
}

.bg-gra-red {
  background: -o-linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$brand-darkred", endColorstr="$brand-red", GradientType=0 );
  background: linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
}

.bg-gra-black {
  background: -o-linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $black, $alpha: 1)", endColorstr="rgba($color: $black, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.bg-gra-black-v {
  background: -o-linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $black, $alpha: 1)", endColorstr="rgba($color: $black, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.bg-gra-white-v {
  background: -o-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $white, $alpha: 1)", endColorstr="rgba($color: $white, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
}

.black-overlay {
  position: relative;
}

.black-overlay::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 1;
}

.c-wt,
.c-wt p,
.c-wt a,
.c-wt h1,
.c-wt h2,
.c-wt h3,
.c-wt h4,
.c-wt h5,
.c-wt h6 {
  color: #ffffff;
}

.c-1,
.c-1 p,
.c-1 a,
.c-1 h1,
.c-1 h2,
.c-1 h3,
.c-1 h4,
.c-1 h5,
.c-1 h6 {
  color: #AB111C;
}

.c-blk,
.c-blk p,
.c-blk a,
.c-blk h1,
.c-blk h2,
.c-blk h3,
.c-blk h4,
.c-blk h5,
.c-blk h6 {
  color: #000000;
}

/* # Font Styles
-------------------------------------------------------------- */
.tt-up {
  text-transform: uppercase;
}

.tt-ca {
  text-transform: capitalize;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.fs-i {
  font-style: italic;
}

.fs-r {
  font-style: normal;
}

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

.ta-c {
  text-align: center;
}

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

@media screen and (min-width: 576px) {
  .ta-sm-l {
    text-align: left;
  }
  .ta-sm-c {
    text-align: center;
  }
  .ta-sm-r {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .ta-md-l {
    text-align: left;
  }
  .ta-md-c {
    text-align: center;
  }
  .ta-md-r {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .ta-lg-l {
    text-align: left;
  }
  .ta-lg-c {
    text-align: center;
  }
  .ta-lg-r {
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .ta-xl-l {
    text-align: left;
  }
  .ta-xl-c {
    text-align: center;
  }
  .ta-xl-r {
    text-align: right;
  }
}
@media screen and (min-width: 1400px) {
  .ta-xxl-l {
    text-align: left;
  }
  .ta-xxl-c {
    text-align: center;
  }
  .ta-xxl-r {
    text-align: right;
  }
}
/* # Positioning 
-------------------------------------------------------------- */
.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.pos-fix {
  position: fixed;
}

.pos-stk {
  position: sticky;
}

.x-l {
  left: 0;
}

.x-c {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.x-r {
  right: 0;
}

.y-l {
  left: 0;
}

.y-c {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.y-r {
  right: 0;
}

.xy-tl {
  top: 0;
  left: 0;
}

.xy-tr {
  top: 0;
  right: 0;
}

.xy-tc {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.xy-c {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.xy-bl {
  bottom: 0;
  left: 0;
}

.xy-br {
  bottom: 0;
  right: 0;
}

.xy-bc {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

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

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

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

.z-9 {
  z-index: 10;
}

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

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

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

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

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

/* # Padding + Margin
-------------------------------------------------------------- */
.my-xxl {
  margin-block: 128px;
}

.my-xl {
  margin-block: 85.3333333333px;
}

.my-lg {
  margin-block: 64px;
}

.my-def {
  margin-block: 42.6666666667px;
}

.my-md {
  margin-block: 32px;
}

.my-sm {
  margin-block: 25.3333333333px;
}

.my-xs {
  margin-block: 16px;
}

.my-xxs {
  margin-block: 10.6666666667px;
}

.mt-xxl {
  -webkit-margin-before: 128px;
          margin-block-start: 128px;
}

.mt-xl {
  -webkit-margin-before: 85.3333333333px;
          margin-block-start: 85.3333333333px;
}

.mt-lg {
  -webkit-margin-before: 64px;
          margin-block-start: 64px;
}

.mt-def {
  -webkit-margin-before: 42.6666666667px;
          margin-block-start: 42.6666666667px;
}

.mt-md {
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
}

.mt-sm {
  -webkit-margin-before: 25.3333333333px;
          margin-block-start: 25.3333333333px;
}

.mt-xs {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}

.mt-xxs {
  -webkit-margin-before: 10.6666666667px;
          margin-block-start: 10.6666666667px;
}

.mb-xxl {
  -webkit-margin-after: 128px;
          margin-block-end: 128px;
}

.mb-xl {
  -webkit-margin-after: 85.3333333333px;
          margin-block-end: 85.3333333333px;
}

.mb-lg {
  -webkit-margin-after: 64px;
          margin-block-end: 64px;
}

.mb-def {
  -webkit-margin-after: 42.6666666667px;
          margin-block-end: 42.6666666667px;
}

.mb-md {
  -webkit-margin-after: 32px;
          margin-block-end: 32px;
}

.mb-sm {
  -webkit-margin-after: 25.3333333333px;
          margin-block-end: 25.3333333333px;
}

.mb-xs {
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
}

.mb-xxs {
  -webkit-margin-after: 10.6666666667px;
          margin-block-end: 10.6666666667px;
}

.mx-xxl {
  margin-inline: 128px;
}

.mx-xl {
  margin-inline: 85.3333333333px;
}

.mx-lg {
  margin-inline: 64px;
}

.mx-def {
  margin-inline: 42.6666666667px;
}

.mx-md {
  margin-inline: 32px;
}

.mx-sm {
  margin-inline: 25.3333333333px;
}

.mx-xs {
  margin-inline: 16px;
}

.mx-xxs {
  margin-inline: 10.6666666667px;
}

.ms-xxl {
  -webkit-margin-start: 128px;
          margin-inline-start: 128px;
}

.ms-xl {
  -webkit-margin-start: 85.3333333333px;
          margin-inline-start: 85.3333333333px;
}

.ms-lg {
  -webkit-margin-start: 64px;
          margin-inline-start: 64px;
}

.ms-def {
  -webkit-margin-start: 42.6666666667px;
          margin-inline-start: 42.6666666667px;
}

.ms-md {
  -webkit-margin-start: 32px;
          margin-inline-start: 32px;
}

.ms-sm {
  -webkit-margin-start: 25.3333333333px;
          margin-inline-start: 25.3333333333px;
}

.ms-xs {
  -webkit-margin-start: 16px;
          margin-inline-start: 16px;
}

.ms-xxs {
  -webkit-margin-start: 10.6666666667px;
          margin-inline-start: 10.6666666667px;
}

.me-xxl {
  -webkit-margin-end: 128px;
          margin-inline-end: 128px;
}

.me-xl {
  -webkit-margin-end: 85.3333333333px;
          margin-inline-end: 85.3333333333px;
}

.me-lg {
  -webkit-margin-end: 64px;
          margin-inline-end: 64px;
}

.me-def {
  -webkit-margin-end: 42.6666666667px;
          margin-inline-end: 42.6666666667px;
}

.me-md {
  -webkit-margin-end: 32px;
          margin-inline-end: 32px;
}

.me-sm {
  -webkit-margin-end: 25.3333333333px;
          margin-inline-end: 25.3333333333px;
}

.me-xs {
  -webkit-margin-end: 16px;
          margin-inline-end: 16px;
}

.me-xxs {
  -webkit-margin-end: 10.6666666667px;
          margin-inline-end: 10.6666666667px;
}

.py-xxl {
  padding-block: 128px;
}

.py-xl {
  padding-block: 85.3333333333px;
}

.py-lg {
  padding-block: 64px;
}

.py-def {
  padding-block: 42.6666666667px;
}

.py-md {
  padding-block: 32px;
}

.py-sm {
  padding-block: 25.3333333333px;
}

.py-xs {
  padding-block: 16px;
}

.py-xxs {
  padding-block: 10.6666666667px;
}

.pt-xxl {
  -webkit-padding-before: 128px;
          padding-block-start: 128px;
}

.pt-xl {
  -webkit-padding-before: 85.3333333333px;
          padding-block-start: 85.3333333333px;
}

.pt-lg {
  -webkit-padding-before: 64px;
          padding-block-start: 64px;
}

.pt-def {
  -webkit-padding-before: 42.6666666667px;
          padding-block-start: 42.6666666667px;
}

.pt-md {
  -webkit-padding-before: 32px;
          padding-block-start: 32px;
}

.pt-sm {
  -webkit-padding-before: 25.3333333333px;
          padding-block-start: 25.3333333333px;
}

.pt-xs {
  -webkit-padding-before: 16px;
          padding-block-start: 16px;
}

.pt-xxs {
  -webkit-padding-before: 10.6666666667px;
          padding-block-start: 10.6666666667px;
}

.pb-xxl {
  -webkit-padding-after: 128px;
          padding-block-end: 128px;
}

.pb-xl {
  -webkit-padding-after: 85.3333333333px;
          padding-block-end: 85.3333333333px;
}

.pb-lg {
  -webkit-padding-after: 64px;
          padding-block-end: 64px;
}

.pb-def {
  -webkit-padding-after: 42.6666666667px;
          padding-block-end: 42.6666666667px;
}

.pb-md {
  -webkit-padding-after: 32px;
          padding-block-end: 32px;
}

.pb-sm {
  -webkit-padding-after: 25.3333333333px;
          padding-block-end: 25.3333333333px;
}

.pb-xs {
  -webkit-padding-after: 16px;
          padding-block-end: 16px;
}

.pb-xxs {
  -webkit-padding-after: 10.6666666667px;
          padding-block-end: 10.6666666667px;
}

.px-xxl {
  padding-inline: 128px;
}

.px-xl {
  padding-inline: 85.3333333333px;
}

.px-lg {
  padding-inline: 64px;
}

.px-def {
  padding-inline: 42.6666666667px;
}

.px-md {
  padding-inline: 32px;
}

.px-sm {
  padding-inline: 25.3333333333px;
}

.px-xs {
  padding-inline: 16px;
}

.px-xxs {
  padding-inline: 10.6666666667px;
}

.ps-xxl {
  -webkit-padding-start: 128px;
          padding-inline-start: 128px;
}

.ps-xl {
  -webkit-padding-start: 85.3333333333px;
          padding-inline-start: 85.3333333333px;
}

.ps-lg {
  -webkit-padding-start: 64px;
          padding-inline-start: 64px;
}

.ps-def {
  -webkit-padding-start: 42.6666666667px;
          padding-inline-start: 42.6666666667px;
}

.ps-md {
  -webkit-padding-start: 32px;
          padding-inline-start: 32px;
}

.ps-sm {
  -webkit-padding-start: 25.3333333333px;
          padding-inline-start: 25.3333333333px;
}

.ps-xs {
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
}

.ps-xxs {
  -webkit-padding-start: 10.6666666667px;
          padding-inline-start: 10.6666666667px;
}

.pe-xxl {
  -webkit-padding-end: 128px;
          padding-inline-end: 128px;
}

.pe-xl {
  -webkit-padding-end: 85.3333333333px;
          padding-inline-end: 85.3333333333px;
}

.pe-lg {
  -webkit-padding-end: 64px;
          padding-inline-end: 64px;
}

.pe-def {
  -webkit-padding-end: 42.6666666667px;
          padding-inline-end: 42.6666666667px;
}

.pe-md {
  -webkit-padding-end: 32px;
          padding-inline-end: 32px;
}

.pe-sm {
  -webkit-padding-end: 25.3333333333px;
          padding-inline-end: 25.3333333333px;
}

.pe-xs {
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
}

.pe-xxs {
  -webkit-padding-end: 10.6666666667px;
          padding-inline-end: 10.6666666667px;
}

@media only screen and (min-width: 992px) {
  .my-xxl {
    margin-block: 192px;
  }
  .my-xl {
    margin-block: 128px;
  }
  .my-lg {
    margin-block: 96px;
  }
  .my-def {
    margin-block: 64px;
  }
  .my-md {
    margin-block: 48px;
  }
  .my-sm {
    margin-block: 38px;
  }
  .my-xs {
    margin-block: 24px;
  }
  .my-xxs {
    margin-block: 16px;
  }
  .mt-xxl {
    -webkit-margin-before: 192px;
            margin-block-start: 192px;
  }
  .mt-xl {
    -webkit-margin-before: 128px;
            margin-block-start: 128px;
  }
  .mt-lg {
    -webkit-margin-before: 96px;
            margin-block-start: 96px;
  }
  .mt-def {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
  }
  .mt-md {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
  }
  .mt-sm {
    -webkit-margin-before: 38px;
            margin-block-start: 38px;
  }
  .mt-xs {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
  .mt-xxs {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
  .mb-xxl {
    -webkit-margin-after: 192px;
            margin-block-end: 192px;
  }
  .mb-xl {
    -webkit-margin-after: 128px;
            margin-block-end: 128px;
  }
  .mb-lg {
    -webkit-margin-after: 96px;
            margin-block-end: 96px;
  }
  .mb-def {
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
  }
  .mb-md {
    -webkit-margin-after: 48px;
            margin-block-end: 48px;
  }
  .mb-sm {
    -webkit-margin-after: 38px;
            margin-block-end: 38px;
  }
  .mb-xs {
    -webkit-margin-after: 24px;
            margin-block-end: 24px;
  }
  .mb-xxs {
    -webkit-margin-after: 16px;
            margin-block-end: 16px;
  }
  .mx-xxl {
    margin-inline: 192px;
  }
  .mx-xl {
    margin-inline: 128px;
  }
  .mx-lg {
    margin-inline: 96px;
  }
  .mx-def {
    margin-inline: 64px;
  }
  .mx-md {
    margin-inline: 48px;
  }
  .mx-sm {
    margin-inline: 38px;
  }
  .mx-xs {
    margin-inline: 24px;
  }
  .mx-xxs {
    margin-inline: 16px;
  }
  .ms-xxl {
    -webkit-margin-start: 192px;
            margin-inline-start: 192px;
  }
  .ms-xl {
    -webkit-margin-start: 128px;
            margin-inline-start: 128px;
  }
  .ms-lg {
    -webkit-margin-start: 96px;
            margin-inline-start: 96px;
  }
  .ms-def {
    -webkit-margin-start: 64px;
            margin-inline-start: 64px;
  }
  .ms-md {
    -webkit-margin-start: 48px;
            margin-inline-start: 48px;
  }
  .ms-sm {
    -webkit-margin-start: 38px;
            margin-inline-start: 38px;
  }
  .ms-xs {
    -webkit-margin-start: 24px;
            margin-inline-start: 24px;
  }
  .ms-xxs {
    -webkit-margin-start: 16px;
            margin-inline-start: 16px;
  }
  .me-xxl {
    -webkit-margin-end: 192px;
            margin-inline-end: 192px;
  }
  .me-xl {
    -webkit-margin-end: 128px;
            margin-inline-end: 128px;
  }
  .me-lg {
    -webkit-margin-end: 96px;
            margin-inline-end: 96px;
  }
  .me-def {
    -webkit-margin-end: 64px;
            margin-inline-end: 64px;
  }
  .me-md {
    -webkit-margin-end: 48px;
            margin-inline-end: 48px;
  }
  .me-sm {
    -webkit-margin-end: 38px;
            margin-inline-end: 38px;
  }
  .me-xs {
    -webkit-margin-end: 24px;
            margin-inline-end: 24px;
  }
  .me-xxs {
    -webkit-margin-end: 16px;
            margin-inline-end: 16px;
  }
  .py-xxl {
    padding-block: 192px;
  }
  .py-xl {
    padding-block: 128px;
  }
  .py-lg {
    padding-block: 96px;
  }
  .py-def {
    padding-block: 64px;
  }
  .py-md {
    padding-block: 48px;
  }
  .py-sm {
    padding-block: 38px;
  }
  .py-xs {
    padding-block: 24px;
  }
  .py-xxs {
    padding-block: 16px;
  }
  .pt-xxl {
    -webkit-padding-before: 192px;
            padding-block-start: 192px;
  }
  .pt-xl {
    -webkit-padding-before: 128px;
            padding-block-start: 128px;
  }
  .pt-lg {
    -webkit-padding-before: 96px;
            padding-block-start: 96px;
  }
  .pt-def {
    -webkit-padding-before: 64px;
            padding-block-start: 64px;
  }
  .pt-md {
    -webkit-padding-before: 48px;
            padding-block-start: 48px;
  }
  .pt-sm {
    -webkit-padding-before: 38px;
            padding-block-start: 38px;
  }
  .pt-xs {
    -webkit-padding-before: 24px;
            padding-block-start: 24px;
  }
  .pt-xxs {
    -webkit-padding-before: 16px;
            padding-block-start: 16px;
  }
  .pb-xxl {
    -webkit-padding-after: 192px;
            padding-block-end: 192px;
  }
  .pb-xl {
    -webkit-padding-after: 128px;
            padding-block-end: 128px;
  }
  .pb-lg {
    -webkit-padding-after: 96px;
            padding-block-end: 96px;
  }
  .pb-def {
    -webkit-padding-after: 64px;
            padding-block-end: 64px;
  }
  .pb-md {
    -webkit-padding-after: 48px;
            padding-block-end: 48px;
  }
  .pb-sm {
    -webkit-padding-after: 38px;
            padding-block-end: 38px;
  }
  .pb-xs {
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
  .pb-xxs {
    -webkit-padding-after: 16px;
            padding-block-end: 16px;
  }
  .px-xxl {
    padding-inline: 192px;
  }
  .px-xl {
    padding-inline: 128px;
  }
  .px-lg {
    padding-inline: 96px;
  }
  .px-def {
    padding-inline: 64px;
  }
  .px-md {
    padding-inline: 48px;
  }
  .px-sm {
    padding-inline: 38px;
  }
  .px-xs {
    padding-inline: 24px;
  }
  .px-xxs {
    padding-inline: 16px;
  }
  .ps-xxl {
    -webkit-padding-start: 192px;
            padding-inline-start: 192px;
  }
  .ps-xl {
    -webkit-padding-start: 128px;
            padding-inline-start: 128px;
  }
  .ps-lg {
    -webkit-padding-start: 96px;
            padding-inline-start: 96px;
  }
  .ps-def {
    -webkit-padding-start: 64px;
            padding-inline-start: 64px;
  }
  .ps-md {
    -webkit-padding-start: 48px;
            padding-inline-start: 48px;
  }
  .ps-sm {
    -webkit-padding-start: 38px;
            padding-inline-start: 38px;
  }
  .ps-xs {
    -webkit-padding-start: 24px;
            padding-inline-start: 24px;
  }
  .ps-xxs {
    -webkit-padding-start: 16px;
            padding-inline-start: 16px;
  }
  .pe-xxl {
    -webkit-padding-end: 192px;
            padding-inline-end: 192px;
  }
  .pe-xl {
    -webkit-padding-end: 128px;
            padding-inline-end: 128px;
  }
  .pe-lg {
    -webkit-padding-end: 96px;
            padding-inline-end: 96px;
  }
  .pe-def {
    -webkit-padding-end: 64px;
            padding-inline-end: 64px;
  }
  .pe-md {
    -webkit-padding-end: 48px;
            padding-inline-end: 48px;
  }
  .pe-sm {
    -webkit-padding-end: 38px;
            padding-inline-end: 38px;
  }
  .pe-xs {
    -webkit-padding-end: 24px;
            padding-inline-end: 24px;
  }
  .pe-xxs {
    -webkit-padding-end: 16px;
            padding-inline-end: 16px;
  }
}
.end {
  margin-bottom: 0;
}

@media all and (max-width: 991px) {
  .pt-xxl {
    padding-top: 85px;
  }
  .pb-xxl {
    padding-bottom: 85px;
  }
  .py-xxl {
    padding-top: 85px;
    padding-bottom: 85px;
  }
}
/* Media 
-------------------------------------------------------------- */
.obj-cov {
  -o-object-fit: cover;
     object-fit: cover;
}

.obj-cont {
  -o-object-fit: contain;
     object-fit: contain;
}

.obj-pos-tl {
  -o-object-position: top left;
     object-position: top left;
}

.obj-pos-tc {
  -o-object-position: top center;
     object-position: top center;
}

.obj-pos-tr {
  -o-object-position: top right;
     object-position: top right;
}

.obj-pos-cl {
  -o-object-position: center left;
     object-position: center left;
}

.obj-pos-cc {
  -o-object-position: center center;
     object-position: center center;
}

.obj-pos-cr {
  -o-object-position: center right;
     object-position: center right;
}

.obj-pos-bl {
  -o-object-position: bottom left;
     object-position: bottom left;
}

.obj-pos-bc {
  -o-object-position: bottom center;
     object-position: bottom center;
}

.obj-pos-br {
  -o-object-position: bottom right;
     object-position: bottom right;
}

.ratio-16-9 {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.ratio-3-2 {
  width: 100%;
  height: auto;
  aspect-ratio: 3.333/2;
}

.ratio-4-3 {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

.ratio-3-4 {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}

.ratio-1-1 {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

/* Overflows
-------------------------------------------------------------- */
.o-hid {
  overflow: hidden;
}

.o-x-hid {
  overflow-x: hidden;
}

.o-y-hid {
  overflow-y: hidden;
}

.o-scroll {
  overflow: scroll;
}

.o-x-scroll {
  overflow-x: scroll;
}

.o-y-scroll {
  overflow-y: scroll;
}

/* Sizing
-------------------------------------------------------------- */
.w-auto {
  width: auto;
}

.w-100 {
  width: 100%;
}

.w-90 {
  width: 90%;
}

.w-80 {
  width: 80%;
}

.w-70 {
  width: 70%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.w-30 {
  width: 30%;
}

.w-20 {
  width: 20%;
}

.w-10 {
  width: 10%;
}

.h-auto {
  height: auto;
}

.h-100 {
  height: 100%;
}

.h-90 {
  height: 90%;
}

.h-80 {
  height: 80%;
}

.h-70 {
  height: 70%;
}

.h-60 {
  height: 60%;
}

.h-50 {
  height: 50%;
}

.h-40 {
  height: 40%;
}

.h-30 {
  height: 30%;
}

.h-20 {
  height: 20%;
}

.h-10 {
  height: 10%;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 576px) {
  .w-sm-auto {
    width: auto;
  }
  .w-sm-100 {
    width: 100%;
  }
  .w-sm-90 {
    width: 90%;
  }
  .w-sm-80 {
    width: 80%;
  }
  .w-sm-70 {
    width: 70%;
  }
  .w-sm-60 {
    width: 60%;
  }
  .w-sm-50 {
    width: 50%;
  }
  .w-sm-40 {
    width: 40%;
  }
  .w-sm-30 {
    width: 30%;
  }
  .w-sm-20 {
    width: 20%;
  }
  .w-sm-10 {
    width: 10%;
  }
  .h-sm-auto {
    height: auto;
  }
  .h-sm-100 {
    height: 100%;
  }
  .h-sm-90 {
    height: 90%;
  }
  .h-sm-80 {
    height: 80%;
  }
  .h-sm-70 {
    height: 70%;
  }
  .h-sm-60 {
    height: 60%;
  }
  .h-sm-50 {
    height: 50%;
  }
  .h-sm-40 {
    height: 40%;
  }
  .h-sm-30 {
    height: 30%;
  }
  .h-sm-20 {
    height: 20%;
  }
  .h-sm-10 {
    height: 10%;
  }
}
@media screen and (min-width: 768px) {
  .w-md-auto {
    width: auto;
  }
  .w-md-100 {
    width: 100%;
  }
  .w-md-90 {
    width: 90%;
  }
  .w-md-80 {
    width: 80%;
  }
  .w-md-70 {
    width: 70%;
  }
  .w-md-60 {
    width: 60%;
  }
  .w-md-50 {
    width: 50%;
  }
  .w-md-40 {
    width: 40%;
  }
  .w-md-30 {
    width: 30%;
  }
  .w-md-20 {
    width: 20%;
  }
  .w-md-10 {
    width: 10%;
  }
  .h-md-auto {
    height: auto;
  }
  .h-md-100 {
    height: 100%;
  }
  .h-md-90 {
    height: 90%;
  }
  .h-md-80 {
    height: 80%;
  }
  .h-md-70 {
    height: 70%;
  }
  .h-md-60 {
    height: 60%;
  }
  .h-md-50 {
    height: 50%;
  }
  .h-md-40 {
    height: 40%;
  }
  .h-md-30 {
    height: 30%;
  }
  .h-md-20 {
    height: 20%;
  }
  .h-md-10 {
    height: 10%;
  }
}
@media screen and (min-width: 992px) {
  .w-lg-auto {
    width: auto;
  }
  .w-lg-100 {
    width: 100%;
  }
  .w-lg-90 {
    width: 90%;
  }
  .w-lg-80 {
    width: 80%;
  }
  .w-lg-70 {
    width: 70%;
  }
  .w-lg-60 {
    width: 60%;
  }
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-40 {
    width: 40%;
  }
  .w-lg-30 {
    width: 30%;
  }
  .w-lg-20 {
    width: 20%;
  }
  .w-lg-10 {
    width: 10%;
  }
  .h-lg-auto {
    height: auto;
  }
  .h-lg-100 {
    height: 100%;
  }
  .h-lg-90 {
    height: 90%;
  }
  .h-lg-80 {
    height: 80%;
  }
  .h-lg-70 {
    height: 70%;
  }
  .h-lg-60 {
    height: 60%;
  }
  .h-lg-50 {
    height: 50%;
  }
  .h-lg-40 {
    height: 40%;
  }
  .h-lg-30 {
    height: 30%;
  }
  .h-lg-20 {
    height: 20%;
  }
  .h-lg-10 {
    height: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .w-xl-auto {
    width: auto;
  }
  .w-xl-100 {
    width: 100%;
  }
  .w-xl-90 {
    width: 90%;
  }
  .w-xl-80 {
    width: 80%;
  }
  .w-xl-70 {
    width: 70%;
  }
  .w-xl-60 {
    width: 60%;
  }
  .w-xl-50 {
    width: 50%;
  }
  .w-xl-40 {
    width: 40%;
  }
  .w-xl-30 {
    width: 30%;
  }
  .w-xl-20 {
    width: 20%;
  }
  .w-xl-10 {
    width: 10%;
  }
  .h-xl-auto {
    height: auto;
  }
  .h-xl-100 {
    height: 100%;
  }
  .h-xl-90 {
    height: 90%;
  }
  .h-xl-80 {
    height: 80%;
  }
  .h-xl-70 {
    height: 70%;
  }
  .h-xl-60 {
    height: 60%;
  }
  .h-xl-50 {
    height: 50%;
  }
  .h-xl-40 {
    height: 40%;
  }
  .h-xl-30 {
    height: 30%;
  }
  .h-xl-20 {
    height: 20%;
  }
  .h-xl-10 {
    height: 10%;
  }
}
@media screen and (min-width: 1400px) {
  .w-xxl-auto {
    width: auto;
  }
  .w-xxl-100 {
    width: 100%;
  }
  .w-xxl-90 {
    width: 90%;
  }
  .w-xxl-80 {
    width: 80%;
  }
  .w-xxl-70 {
    width: 70%;
  }
  .w-xxl-60 {
    width: 60%;
  }
  .w-xxl-50 {
    width: 50%;
  }
  .w-xxl-40 {
    width: 40%;
  }
  .w-xxl-30 {
    width: 30%;
  }
  .w-xxl-20 {
    width: 20%;
  }
  .w-xxl-10 {
    width: 10%;
  }
  .h-xxl-auto {
    height: auto;
  }
  .h-xxl-100 {
    height: 100%;
  }
  .h-xxl-90 {
    height: 90%;
  }
  .h-xxl-80 {
    height: 80%;
  }
  .h-xxl-70 {
    height: 70%;
  }
  .h-xxl-60 {
    height: 60%;
  }
  .h-xxl-50 {
    height: 50%;
  }
  .h-xxl-40 {
    height: 40%;
  }
  .h-xxl-30 {
    height: 30%;
  }
  .h-xxl-20 {
    height: 20%;
  }
  .h-xxl-10 {
    height: 10%;
  }
}
/* # Border Radius */
.br-100,
.radius-full {
  border-radius: 100%;
}

.br-7 {
  border-radius: 7px;
}

.br-15 {
  border-radius: 15px;
}

/* # Box/Filter Shadow */
.b-x-1-2-4-015 {
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
}

.b-x-0-2-5-01 {
  -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
}

.b-x-0-3-4-01 {
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}

.b-x-0-4-4-01 {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.b-x-0-4-8-01 {
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.b-x-0-4-9-016 {
  -webkit-box-shadow: 0 4px 9px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 9px rgba(0, 0, 0, 0.16);
}

.b-x-0-4-10-02 {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.b-x-0-4-10-014 {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}

.b-x-0-m-4-9-012 {
  -webkit-box-shadow: 0 -4px 9px rgba(0, 0, 0, 0.12);
          box-shadow: 0 -4px 9px rgba(0, 0, 0, 0.12);
}

.b-x-0-12-10-0035 {
  -webkit-box-shadow: 0 12px 10px rgba(0, 0, 0, 0.035);
          box-shadow: 0 12px 10px rgba(0, 0, 0, 0.035);
}

.b-x-0-0-13-01 {
  -webkit-box-shadow: 0 0px 13px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 13px rgba(0, 0, 0, 0.1);
}

.f-d-x-0-m-4-4-01 {
  -webkit-filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
}

.f-d-s-0-4-4-01 {
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.1));
}

.f-d-s-card {
  -webkit-filter: drop-shadow(0px 12px 10px rgba(0, 0, 0, 0.035)) drop-shadow(0px 6px 5px rgba(0, 0, 0, 0.028)) drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.019));
          filter: drop-shadow(0px 12px 10px rgba(0, 0, 0, 0.035)) drop-shadow(0px 6px 5px rgba(0, 0, 0, 0.028)) drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.019));
}

/* --------------------------------------------------------------
 >> GLOBALS
 Dependencies: _functions.scss, _variables.scss, _utilities.scss

 # CSS Resets
 # Accessibility
 # Typography
 # Navigation
 # Links
 # Patterns
 # Highlights
 # Components
 	# Mobile Nav
	# Header
	# Footer
	# Forms
	# Pagination
	# Accordions
	# Cards + Tiles
	# Single post progress bar
	# Tiny slider custom control
	# Filter Label

-------------------------------------------------------------- */
/* # CSS Resets
--------------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  color: #434343;
  font-family: "Sofia Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  opacity: 1;
}

section, .container, .container-fluid {
  position: relative;
}

.container, .container-fluid {
  z-index: 10;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

input, button, textarea, select {
  font: inherit;
}

p, .site-main ul li,
.site-main ol li {
  line-height: 1.625;
}

p, a, h1, h2, h3, h4, h5, h6 {
  color: #434343;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

ul[class], ol[class] {
  padding: 0;
}

ul[class] {
  list-style: none;
}

strong {
  font-weight: 700;
}

/* # Accessibility
--------------------------------------------------------------*/
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  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;
  -webkit-clip-path: none;
          clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

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

/* # Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Exo", sans-serif;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1, .lvl-1 {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.37;
}

h2, .lvl-2 {
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.33;
}

h3, .lvl-3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.33;
}

h4, .lvl-4 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.16;
}

h5, .lvl-5, .micro {
  font-family: "Sofia Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

h6, .lvl-6 {
  font-family: "Sofia Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
}

.l1 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
}

.l2 {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.19;
  text-transform: uppercase;
}

p[class], ul[class] li, ol[class] li {
  font-size: 1rem;
}

p {
  line-height: 1.625;
  margin-bottom: 16px;
}

li + li {
  margin-top: 8px;
}

.micro {
  margin-bottom: 12px;
}

.jumbo {
  font-size: 2.125rem;
  font-weight: 700;
}

.header-style-2 .section-header .lvl-2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: none;
}

@media all and (min-width: 992px) {
  h1, .lvl-1 {
    font-size: 2.625rem;
  }
  h2, .lvl-2 {
    font-size: 2.25rem;
  }
  h3, .lvl-3 {
    font-size: 2rem;
  }
  h4, .lvl-4 {
    font-size: 1.25rem;
  }
  h5, .lvl-5, .micro {
    font-size: 1.125rem;
  }
  h6, .lvl-6 {
    font-size: 1.125rem;
  }
  .jumbo {
    font-size: 2.625rem;
  }
  .header-style-2 .section-header .lvl-2 {
    font-size: 2rem;
  }
}
@media all and (min-width: 1200px) {
  h1, .lvl-1 {
    font-size: 3.375rem;
  }
  h2, .lvl-2 {
    font-size: 3rem;
  }
  h3, .lvl-3 {
    font-size: 2.25rem;
  }
  h4, .lvl-4 {
    font-size: 1.5rem;
  }
  h5, .lvl-5, .micro {
    font-size: 1.25rem;
  }
  .jumbo {
    font-size: 3.375rem;
  }
  .header-style-2 .section-header .lvl-2 {
    font-size: 2.25rem;
  }
}
.editor-content p:last-child {
  margin-bottom: 0;
}

/* # Navigation
--------------------------------------------------------------*/
nav ul {
  padding: 0;
  list-style: none;
}
nav ul li {
  position: relative;
  margin: 0;
}
nav ul li a:is(:hover, :focus, :active) {
  text-decoration: none;
}

/* # Links
--------------------------------------------------------------*/
a {
  position: relative;
  text-decoration: none;
}
a:is(:hover, :active, :focus) {
  text-decoration: underline;
  transition: ease-in-out all 0.3s;
  -webkit-transition: ease-in-out all 0.3s;
  -moz-transition: ease-in-out all 0.3s;
}

.btn {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.22;
  padding: 13px 76px 13px 28px;
  position: relative;
  border-radius: 7px;
  text-transform: uppercase;
  background-color: #AB111C;
  display: inline-block;
  vertical-align: top;
  border: 0;
  text-align: center;
}
.btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  background-color: #8D121A;
  border-radius: 0 7px 7px 0;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  background-image: url("../img/richies-arrow-icon--white.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.btn:is(:hover, :active, :focus) {
  text-decoration: none;
  background-color: #8D121A;
}
.btn.btn-secondary {
  padding-top: 11px;
  padding-bottom: 11px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}
.btn.btn-secondary::before {
  border-left: 2px solid #ffffff;
  background-color: transparent;
}
.btn.btn-secondary:is(:hover, :active, :focus) {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn.btn-link {
  color: #AB111C;
  font-size: 1rem;
  font-weight: 400;
  padding: 0;
  background-color: transparent;
  padding-right: 10px;
}
.btn.btn-link::before {
  display: none;
}
.btn.btn-link::after {
  top: 50%;
  margin-top: -5px;
  width: 6px;
  height: 9px;
  background-image: url("../img/icons/richies-btn-arrow-icon--red.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.btn.btn-link:is(:hover, :active, :focus) {
  color: #434343;
}
.btn.btn-link:is(:hover, :active, :focus)::after {
  background-image: url("../img/icons/richies-btn-arrow-icon--gray.svg");
}
.btn.white-btn-link {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  padding: 0;
  background-color: transparent;
  padding-right: 10px;
  vertical-align: middle;
}
.btn.white-btn-link::before {
  display: none;
}
.btn.white-btn-link::after {
  top: 50%;
  margin-top: -5px;
  width: 6px;
  height: 9px;
  background-image: url("../img/icons/richies-btn-arrow-icon--white.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.btn.white-btn-link:is(:hover, :active, :focus) {
  color: #9C9C9C;
}
.btn.white-btn-link:is(:hover, :active, :focus)::after {
  background-image: url("../img/icons/richies-btn-arrow-icon--ui-gray.svg");
}

.btn-primary-wrap {
  display: inline-block;
  vertical-align: top;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}
.btn-primary-wrap::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #AB111C;
  border-radius: 7px;
}
.btn-primary-wrap::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #8D121A;
  border-radius: 7px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.btn-primary-wrap:is(:hover, :active, :focus)::after {
  width: 100%;
}
.btn-primary-wrap .btn {
  background-color: transparent;
  position: relative;
  z-index: 1;
  margin: 0 !important;
}

.ghost:is(:hover, :active, :focus) {
  text-decoration: none;
}

.multiple-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}

/* # Patterns
--------------------------------------------------------------*/
.bottom-pattern {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 62px;
}
.bottom-pattern::before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  height: 30px;
  background: -o-linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$brand-darkred", endColorstr="$brand-red", GradientType=0 );
  background: linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  -webkit-transform: rotate(2deg) scale(1.01);
          transform: rotate(2deg) scale(1.01);
}
.bottom-pattern::after {
  content: "";
  display: block;
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 25px;
  background: #F0F0F0;
  -webkit-filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
  -webkit-transform: rotate(2deg) scale(1.01);
          transform: rotate(2deg) scale(1.01);
  z-index: 1;
}

.top-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 62px;
  z-index: 1;
}
.top-pattern::before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  height: 20px;
  background: -o-linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$brand-darkred", endColorstr="$brand-red", GradientType=0 );
  background: linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  -webkit-transform: rotate(-2deg) scale(1.01);
          transform: rotate(-2deg) scale(1.01);
  -webkit-filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 -4px 4px rgba(0, 0, 0, 0.1));
}
.top-pattern::after {
  content: "";
  display: block;
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  height: 25px;
  background: #F0F0F0;
  -webkit-transform: rotate(-2deg) scale(1.01);
          transform: rotate(-2deg) scale(1.01);
  -webkit-filter: drop-shadow(0 -4px 0 rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0 -4px 0 rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.inner-wrap {
  -webkit-clip-path: polygon(0 60px, 100% 18px, 100% 100%, 0% 100%);
          clip-path: polygon(0 60px, 100% 18px, 100% 100%, 0% 100%);
}

@media all and (min-width: 992px) {
  .bottom-pattern {
    bottom: -60px;
    height: 132px;
  }
  .bottom-pattern::before {
    top: 34px;
    height: 60px;
  }
  .bottom-pattern::after {
    top: 60px;
    height: 47px;
  }
  .top-pattern {
    height: 132px;
  }
  .top-pattern::before {
    top: 34px;
    height: 67px;
  }
  .top-pattern::after {
    top: 57px;
    height: 47px;
  }
  .inner-wrap {
    -webkit-clip-path: polygon(0 90px, 100% 28px, 100% 100%, 0% 100%);
            clip-path: polygon(0 90px, 100% 28px, 100% 100%, 0% 100%);
  }
}
@media all and (min-width: 2200px) {
  .bottom-pattern::before, .bottom-pattern::after {
    -webkit-transform: rotate(1deg) scale(1.01);
            transform: rotate(1deg) scale(1.01);
  }
  .top-pattern::before, .top-pattern::after {
    -webkit-transform: rotate(-1deg) scale(1.01);
            transform: rotate(-1deg) scale(1.01);
  }
}
@media all and (min-width: 4000px) {
  .bottom-pattern::before, .bottom-pattern::after,
  .top-pattern::before,
  .top-pattern::after {
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
/* # Highlights
--------------------------------------------------------------*/
.highlights .highlights__item + .highlights__item {
  margin-top: 28px;
}
.highlights .highlights__item :is(img, svg) {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100%;
}

@media all and (min-width: 992px) {
  .highlights .highlights__item + .highlights__item {
    margin-top: 20px;
  }
}
/* # Components
--------------------------------------------------------------*/
/* # Mobile Navigation */
#mobile-handler {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 11px 20px;
}
#mobile-handler .menu-toggle {
  position: relative;
  z-index: 10;
  padding: 12px 15px;
  font-weight: 400;
  font-size: 1rem;
}
#mobile-handler .menu-toggle::before, #mobile-handler .menu-toggle::after {
  display: none;
}
#mobile-handler .menu-toggle .close {
  display: none;
}
#mobile-handler .menu-toggle.toggle .open {
  display: none;
}
#mobile-handler .menu-toggle.toggle .close {
  display: block;
}

#mobile-call {
  position: fixed;
  bottom: -65px;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 9999;
}
#mobile-call.on-scroll {
  bottom: 0;
  -webkit-transition: ease-in-out all 0.3s;
  transition: ease-in-out all 0.3s;
}

#mobile-navigation {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  background-color: #ffffff;
  z-index: 9998;
}
#mobile-navigation .menu-panel {
  width: 100%;
  padding-bottom: 66px;
}
#mobile-navigation .menu-panel ul.menu-panel__nav {
  padding: 22px 0;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li {
  padding: 10px 10px;
  display: block;
  position: relative;
  text-align: center;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li a {
  padding: 8px 0;
  color: #AB111C;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li ul.sub-menu {
  display: none;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li ul.sub-menu li {
  padding: 4px 0;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li ul.sub-menu li a {
  padding: 0;
  color: #434343;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
}

#mobile-navigation .menu-panel ul li ul.sub-menu a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

#primary-menu .menu-item-has-children a::after {
  display: inline-block;
  content: "";
}

/* # Header */
main.site-main {
  padding-top: 100px;
}

.site-header__ppc .site-header__inner__branding img {
  max-width: 158px;
  margin: 0 auto;
}

.site-header__inner__branding {
  padding: 12px 38px 20px;
}
.site-header__inner__branding img {
  max-width: 158px;
  width: 100%;
}

#menu-mobile-menu .menu-item-has-children > a,
#primary-menu .menu-item-has-children > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#menu-mobile-menu .menu-item-has-children > a span,
#primary-menu .menu-item-has-children > a span {
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/chevron-black-down.svg");
}
#menu-mobile-menu .menu-item-has-children > a::after,
#primary-menu .menu-item-has-children > a::after {
  content: "";
  width: 12px;
  height: 7px;
  margin-left: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../img/icons/richies-down-arrow-icon.svg");
}

header.site-header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 9999;
}
header.site-header #primary-menu > li {
  padding: 34px 0;
}
header.site-header #primary-menu > li a {
  color: #000000;
  line-height: 1.2;
  text-transform: uppercase;
}
header.site-header #primary-menu > li .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 92px;
  width: auto;
  min-width: 200px;
  padding: 0;
  margin: 0;
  background: -o-linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$brand-darkred", endColorstr="$brand-red", GradientType=0 );
  background: linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  z-index: inherit;
}
header.site-header #primary-menu > li .sub-menu li {
  padding: 10px 18px;
}
header.site-header #primary-menu > li .sub-menu li a {
  color: #ffffff;
}
header.site-header #primary-menu > li .sub-menu li a:is(:hover, :focus, :active) {
  font-weight: 800;
}
header.site-header #primary-menu > li:hover .sub-menu {
  display: block;
}
header.site-header.header-scroll {
  background-color: #ffffff;
  -webkit-box-shadow: 0px, 0px, 15px, 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px, 0px, 15px, 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: ease-in-out all 0.3s;
  transition: ease-in-out all 0.3s;
}

@media all and (min-width: 992px) {
  main.site-main {
    padding-top: 131px;
  }
  header.site-header {
    height: 131px;
  }
  header.site-header .site-header__inner {
    padding-right: 20px;
  }
  header.site-header .site-header__inner .site-header__left {
    gap: 25px;
  }
  header.site-header #primary-menu {
    gap: 20px;
  }
}
@media all and (min-width: 1200px) {
  header.site-header .site-header__inner {
    padding-right: 38px;
  }
  header.site-header .site-header__inner .site-header__left {
    gap: 50px;
  }
  header.site-header #primary-menu {
    gap: 40px;
  }
}
@media all and (max-width: 991px) {
  .site-header__inner__branding {
    background-color: transparent;
    padding: 20px;
  }
  .site-header__inner__branding img {
    max-width: 100%;
    height: 60px;
  }
}
/* # Footer */
footer.site-footer {
  position: relative;
  padding-bottom: 66px;
}
footer.site-footer .site-footer__top {
  padding: 79px 0 45px;
}
footer.site-footer .footer-logo {
  margin-bottom: 45px;
}
footer.site-footer .site-footer__info {
  padding-bottom: 22px;
}
footer.site-footer .site-footer__info > div:not(:last-child) {
  margin-bottom: 23px;
}
footer.site-footer .site-footer__info .icon {
  width: 35px;
  height: 35px;
}
footer.site-footer .footer-nav {
  padding-top: 33px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
footer.site-footer .footer-nav li .sub-menu {
  padding-top: 20px;
}
footer.site-footer .footer-nav li .sub-menu li {
  margin-bottom: 8px;
}
footer.site-footer .footer-nav li .sub-menu li a {
  color: #434343;
  line-height: 1.75;
}
footer.site-footer .footer-nav > li > a {
  color: #AB111C;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}
footer.site-footer .footer-social span {
  font-size: 1.25rem;
}
footer.site-footer a.brand-attr {
  display: inline-block;
}

.site-footer__copyright {
  padding: 9px 0;
}

.social-links {
  gap: 8px;
}
.social-links a {
  width: 34px;
  height: 34px;
}

@media all and (min-width: 992px) {
  footer.site-footer {
    padding-bottom: 0;
  }
  footer.site-footer .site-footer__top {
    padding: 78px 0 50px;
  }
  footer.site-footer .footer-logo {
    margin-bottom: 56px;
  }
  footer.site-footer .site-footer__info {
    padding-bottom: 0;
  }
  footer.site-footer .site-footer__info > div:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media all and (max-width: 767px) {
  footer.site-footer .site-footer__info > div {
    margin-bottom: 23px;
  }
  footer.site-footer .site-footer__info .text {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
  footer.site-footer .site-footer__info .text p {
    line-height: 2.1875;
  }
}
/* # Forms */
::-webkit-input-placeholder { /* Edge */
  opacity: 1;
  color: #5C5D5F;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  opacity: 1;
  color: #5C5D5F;
}

::-moz-placeholder {
  opacity: 1;
  color: #5C5D5F;
}

::-ms-input-placeholder {
  opacity: 1;
  color: #5C5D5F;
}

::placeholder {
  opacity: 1;
  color: #5C5D5F;
}

.form-wrapper h3 {
  margin-bottom: 1.25rem;
}
.form-wrapper h3:empty {
  display: none;
}
.form-wrapper .gform_legacy_markup_wrapper {
  margin: 0;
}
.form-wrapper .gform_legacy_markup_wrapper.gform_validation_error .gform_body li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
  width: 100%;
  padding: 0 10px;
  margin: 0 0 20px;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gfield_error {
  background-color: transparent;
  border: 0;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield.gfield_error.gfield_contains_required .gfield_description.gfield_validation_message {
  text-transform: none;
  font-weight: 400;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield .validation_message {
  font-weight: 400;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container {
  width: 100%;
  margin: 0;
  position: relative;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container input,
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container .gform-grid-col {
  margin: 0;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container select,
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container textarea {
  color: #5C5D5F;
  font-size: 1rem;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 400;
  padding: 11px 16px;
  border: 0;
  outline: none;
  height: 48px;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: top;
  border-radius: 7px;
  background-color: #F0F0F0;
  -webkit-appearance: none;
  width: 100%;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container select {
  background-image: url("../img/icons/richies-down-arrow-icon.svg");
  background-repeat: no-repeat;
  background-position: center right 10px;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container textarea {
  height: 116px;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container.ginput_container_name span {
  margin: 0;
  padding: 0;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield div.ginput_container.ginput_container_name label {
  display: none;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield .ginput_container_fileupload {
  overflow: hidden;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield .ginput_container_fileupload input {
  width: 100%;
  background-color: #ffffff;
  padding: 11px 16px;
  border-radius: 7px;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield .ginput_container_fileupload::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: -0.5625rem;
  background-image: url("../img/Icon-feather-upload-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield .ginput_container_fileupload .gform_fileupload_rules {
  position: absolute;
}
.form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield .gfield_description {
  padding: 0.3125rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Exo", sans-serif;
  text-transform: uppercase;
}
.form-wrapper .gform_legacy_markup_wrapper .gform_footer {
  text-align: center;
  margin: 0;
  padding: 0;
}
.form-wrapper .gform_legacy_markup_wrapper .gform_footer .btn {
  cursor: pointer;
  display: block;
  width: 100%;
  padding-left: 28px;
  padding-right: 28px;
}
.form-wrapper .gform_legacy_markup_wrapper .gform_footer .btn::before, .form-wrapper .gform_legacy_markup_wrapper .gform_footer .btn::after {
  display: none;
}

@media all and (min-width: 768px) {
  .form-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield.w-50 {
    width: 50%;
  }
}
/* # Pagination */
.pagination .page-numbers,
.pagination .facetwp-page,
.facetwp-facet-pagination .page-numbers,
.facetwp-facet-pagination .facetwp-page {
  width: 25px;
  height: 30px;
  padding: 4px 2px;
  margin: 0;
  border-radius: 2px;
  text-align: center;
  background-color: transparent;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next,
.pagination .facetwp-page.prev,
.pagination .facetwp-page.next,
.facetwp-facet-pagination .page-numbers.prev,
.facetwp-facet-pagination .page-numbers.next,
.facetwp-facet-pagination .facetwp-page.prev,
.facetwp-facet-pagination .facetwp-page.next {
  width: 30px;
  height: 25px;
  font-size: 0;
  background-image: url("../img/icons/richies-down-arrow-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pagination .page-numbers.next,
.pagination .facetwp-page.next,
.facetwp-facet-pagination .page-numbers.next,
.facetwp-facet-pagination .facetwp-page.next {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pagination .page-numbers.current, .pagination .page-numbers:hover, .pagination .page-numbers.active,
.pagination .facetwp-page.current,
.pagination .facetwp-page:hover,
.pagination .facetwp-page.active,
.facetwp-facet-pagination .page-numbers.current,
.facetwp-facet-pagination .page-numbers:hover,
.facetwp-facet-pagination .page-numbers.active,
.facetwp-facet-pagination .facetwp-page.current,
.facetwp-facet-pagination .facetwp-page:hover,
.facetwp-facet-pagination .facetwp-page.active {
  color: #ffffff;
  background-color: #AB111C;
}
.pagination .facetwp-pager,
.facetwp-facet-pagination .facetwp-pager {
  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;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.loadmore-btn .facetwp-facet-load_more {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 0;
}
.loadmore-btn .facetwp-facet-load_more .facetwp-load-more {
  cursor: pointer;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.22;
  padding: 13px 28px;
  position: relative;
  border-radius: 7px;
  text-transform: uppercase;
  background-color: #AB111C;
  display: inline-block;
  vertical-align: top;
  border: 0;
}

@media all and (min-width: 1200px) {
  .pagination .facetwp-pager,
  .facetwp-facet-pagination .facetwp-pager {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/* # Breadcrumbs */
/* # Accordions */
.accordion .accordion__top {
  cursor: pointer;
  padding: 17px 50px 16px 14px;
  position: relative;
}
.accordion .accordion__top .plus {
  position: absolute;
  right: 13px;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url("../img/icons/richies-down-arrow-icon--red.svg") no-repeat center;
}
.accordion .accordion__btm {
  padding: 18px 15px 0px;
  display: none;
}
.accordion .accordion__btm p:last-child {
  margin-bottom: 0;
}
.accordion.active .accordion__top .plus {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion + .accordion {
  margin-top: 34px;
}

@media all and (min-width: 992px) {
  .accordion .accordion__top {
    padding: 20px 50px 20px 23px;
  }
  .accordion .accordion__top .plus {
    right: 30px;
  }
  .accordion .accordion__btm {
    padding: 26px 30px 23px;
  }
  .accordion + .accordion {
    margin-top: 21px;
  }
}
/* # Cards + Tiles */
.card--reviews header img {
  width: clamp(60px, 50%, 82px);
  display: block;
  margin: 0 auto;
}
.card--reviews .inner img {
  width: clamp(80px, 100%, 100px);
  height: clamp(20px, 100%, 80px);
}
.card--team {
  padding: 20px;
}
.card--team header picture {
  height: 100px;
  width: 100px;
  border: 5px solid #AB111C;
}

@media all and (min-width: 768px) {
  .card--team {
    padding: 20px;
  }
  .card--team header picture {
    height: 100px;
    width: 100px;
  }
}
@media all and (min-width: 992px) {
  .card--team {
    padding: 30px;
  }
  .card--team header picture {
    height: 130px;
    width: 130px;
  }
}
@media all and (min-width: 1200px) {
  .card--team {
    padding: 42px;
  }
  .card--team header picture {
    height: 168px;
    width: 168px;
  }
}
@media all and (max-width: 380px) {
  .card--team header picture {
    height: 120px;
    width: 120px;
  }
}
/* # Single post progress bar */
.post-progress {
  position: fixed;
  left: 0;
  top: 131px;
  width: 100%;
  height: 0.375rem;
  background: 0 0;
}
.post-progress .post-progress__bar {
  height: 0.375rem;
  background-color: var(--dark);
  width: 0%;
}

.admin-bar .post-progress__bar {
  margin-top: 32px;
}

/* # Tiny slider custom control */
.custom-slider-control {
  width: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.custom-slider-control > div {
  width: 29px;
  height: 29px;
  background-image: url("../img/richies-arrow-icon--white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 100%;
  cursor: pointer;
}
.custom-slider-control > div.prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.custom-slider-control > div:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* # Filter Label */
.filter-top {
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  row-gap: 10px;
  margin: 0 0 40px;
}
.filter-top span.lvl-4 {
  font-size: 1.5rem;
}
.filter-top .facetwp-facet {
  margin: 0;
}
.filter-top .facetwp-type-radio .facetwp-radio,
.filter-top .facetwp-type-radio .facetwp-radio.checked {
  color: #AB111C;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 10px 20px;
  margin: 10px 7px;
  border-radius: 7px;
  background-color: #F0F0F0;
  line-height: 1.16;
  border: 0;
}
.filter-top .facetwp-type-radio .facetwp-radio.checked,
.filter-top .facetwp-type-radio .facetwp-radio.checked.checked {
  color: #ffffff;
  background-color: #AB111C;
}

.filter-bottom .facetwp-facet {
  margin: 50px 0 0;
}

@media all and (min-width: 768px) {
  .filter-top .facetwp-type-radio .facetwp-radio,
  .filter-top .facetwp-type-radio .facetwp-radio.checked {
    font-size: 1.25rem;
    padding: 13px 30px;
    margin: 12px 12.5px;
  }
}
@media all and (min-width: 1200px) {
  .filter-top {
    margin: 0 0 70px;
  }
  .filter-top .facetwp-type-radio .facetwp-radio,
  .filter-top .facetwp-type-radio .facetwp-radio.checked {
    font-size: 1.5rem;
  }
  .filter-bottom .facetwp-facet {
    margin: 80px 0 0;
  }
}
/* --------------------------------------------------------------
 >> BEGIN Main Styles
-------------------------------------------------------------- */
.container {
  max-width: 1360px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

.bg--image {
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}
.bg--image img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg--image-abs {
  top: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
}
.bg--image-abs img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.card--block-link,
.card--block-link:hover,
.card--block-link:active,
.card--block-link:focus {
  display: block;
  text-decoration: none;
}

/* # Partials
-------------------------------------------------------------- */
/* Header */
.topbar {
  padding: 10px 0;
}
.topbar span,
.topbar a {
  line-height: 1.2;
}

/* # Hero defaults
--------------------------------------------------------------*/
.hero {
  padding-top: 80px;
  z-index: 12;
}
.hero .black-overlay::before {
  opacity: 0.1;
}
.hero .black-overlay::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -o-linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $black, $alpha: 1)", endColorstr="rgba($color: $black, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left top, right top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.42;
}
.hero .hero-white-overlay {
  height: 170px;
}
.hero .hero-white-overlay::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $white, $alpha: 1)", endColorstr="rgba($color: $white, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
  z-index: 1;
}
.hero .hero-right {
  padding: 0 16px 40px;
}
.hero .hero-form-top {
  margin-bottom: 27px;
}
.hero .hero-form-top span {
  display: inline-block;
  vertical-align: top;
  padding: 11px 15px 9px 13px;
  border-radius: 7px 7px 0 7px;
  white-space: nowrap;
  margin: -25px 0 27px;
}
.hero .hero-form-top span img {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.hero .social-ratings .social__item {
  position: relative;
}
.hero .social-ratings .social__item + .social__item {
  margin-left: 12px;
  padding-left: 12px;
}
.hero .social-ratings .social__item + .social__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background-color: #9C9C9C;
  margin-top: -8px;
  opacity: 0.3;
}
.hero .social-ratings .social__item .social__item-icon svg * {
  fill: #9C9C9C;
}
.hero .social-ratings .social__item .social__item-desc .social__item-rating-icon {
  margin-bottom: 4px;
}
.hero .social-ratings .social__item .social__item-desc .social__item-rating-icon svg * {
  fill: #9C9C9C;
}
.hero .social-ratings .social__item .social__item-desc p {
  color: #9C9C9C;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}
.hero .form-col .bg-c-3 .social-ratings .social__item + .social__item::before {
  background-color: #ffffff;
}
.hero .form-col .bg-c-3 .social-ratings .social__item .social__item-icon svg * {
  fill: #ffffff;
}
.hero .form-col .bg-c-3 .social-ratings .social__item .social__item-desc .social__item-rating-icon svg * {
  fill: #ffffff;
}
.hero .form-col .bg-c-3 .social-ratings .social__item .social__item-desc p {
  color: #ffffff;
}
.hero .form-col .bg-c-3 .gform_legacy_markup_wrapper .validation_message,
.hero .form-col .bg-c-3 .gform_legacy_markup_wrapper div.validation_error,
.hero .form-col .bg-c-3 .gform_legacy_markup_wrapper ol.validation_list {
  color: #ffffff;
}
.hero .form-col .bg-c-3 .gform_legacy_markup_wrapper div.validation_error {
  border-color: #ffffff;
}
.hero .form-col .bg-c-3 .gform_legacy_markup_wrapper .gform_validation_errors > h2 {
  color: #ffffff;
}
.hero .form-col .bg-c-3 .gfield_label {
  color: #ffffff;
}
.hero--main .hero-content, .hero--lp .hero-content, .hero--contact .hero-content {
  padding-bottom: 43px;
}
.hero--main h2, .hero--lp h2, .hero--contact h2 {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.hero--main .form-col, .hero--lp .form-col, .hero--contact .form-col {
  margin-bottom: -110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero--main .form-col .hero-right, .hero--lp .form-col .hero-right, .hero--contact .form-col .hero-right {
  width: 100%;
}
.hero--basic {
  padding: 70px 0 80px;
}
.hero--basic .black-overlay::before {
  opacity: 0.5;
}
.hero--basic.with_bgcolour {
  background-color: #5C5D5F;
  background-image: url("../img/banner-background-pattern.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}
.hero--blog {
  padding: 60px 0;
  background-color: rgba(171, 17, 28, 0.8);
}
.hero--blog picture {
  mix-blend-mode: multiply;
}
.hero--blog-detail {
  padding: 40px 0 205px;
}
.hero--thankyou, .hero--404 {
  margin-bottom: 100px;
}
.hero--thankyou .bg--image-abs::before, .hero--404 .bg--image-abs::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $white, $alpha: 1)", endColorstr="rgba($color: $white, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, white));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 90%);
  z-index: 1;
}
.hero--thankyou .row, .hero--404 .row {
  height: 200px;
}
.hero--thankyou .hero-content, .hero--404 .hero-content {
  padding: 40px 30px 24px 30px;
  margin-bottom: -100px;
}
.hero--inner {
  padding: 120px 0 0;
}
.hero--inner .content-col .hero-content {
  padding-bottom: 0;
}
.hero--inner .form-col {
  display: block;
  padding-top: 68px;
  margin-bottom: 0;
}
.hero--contact .contact-info__item .icon {
  width: 35px;
  height: 35px;
}
.hero--contact .hero__badges {
  padding-top: 36px;
}
.hero--service, .hero--careers {
  padding-top: 120px;
}
.hero--service .hero-white-overlay, .hero--careers .hero-white-overlay {
  height: 170px;
}
.hero--service .form-col, .hero--careers .form-col {
  padding-top: 68px;
}
.hero--service .hero__badges, .hero--careers .hero__badges {
  padding-top: 20px;
}

.hero__badges {
  padding-top: 140px;
}

@media all and (min-width: 768px) {
  .hero--thankyou .hero-content, .hero--404 .hero-content {
    padding: 40px 50px 24px 50px;
  }
  .hero--thankyou .row, .hero--404 .row {
    height: 250px;
  }
}
@media all and (min-width: 992px) {
  .hero {
    padding-top: 116px;
  }
  .hero .hero-white-overlay {
    height: 523px;
  }
  .hero--main .hero-content, .hero--lp .hero-content, .hero--contact .hero-content {
    padding-bottom: 100px;
  }
  .hero--main .hero-content .editor-content,
  .hero--main .hero-content .highlights,
  .hero--main .hero-content .contact-info, .hero--lp .hero-content .editor-content,
  .hero--lp .hero-content .highlights,
  .hero--lp .hero-content .contact-info, .hero--contact .hero-content .editor-content,
  .hero--contact .hero-content .highlights,
  .hero--contact .hero-content .contact-info {
    max-width: 563px;
  }
  .hero--basic {
    padding: 70px 0 95px;
  }
  .hero--service, .hero--careers {
    padding-top: 150px;
  }
  .hero--service .form-col, .hero--careers .form-col {
    padding-top: 80px;
  }
  .hero--service .hero-white-overlay, .hero--careers .hero-white-overlay {
    height: 220px;
  }
  .hero--service .hero-content .editor-content,
  .hero--service .hero-content .highlights, .hero--careers .hero-content .editor-content,
  .hero--careers .hero-content .highlights {
    max-width: 563px;
  }
  .hero--service .hero-content .hero__badges, .hero--careers .hero-content .hero__badges {
    padding-top: 63px;
  }
  .hero--inner {
    padding: 150px 0 0;
  }
  .hero--inner .content-col {
    padding-top: 100px;
  }
  .hero--inner .form-col {
    padding-top: 0;
  }
  .hero--blog {
    padding: 70px 0;
  }
  .hero--blog-detail {
    padding: 54px 0 217px;
  }
  .hero__badges {
    padding-top: 50px;
  }
}
@media all and (min-width: 1200px) {
  .hero .hero-right {
    padding: 40px 30px;
  }
  .hero .hero-form-top {
    margin-bottom: 32px;
  }
  .hero .hero-form-top span {
    padding: 11px 32px 9px 13px;
    margin: 0 0 0 -90px;
    white-space: nowrap;
  }
  .hero--main .form-col, .hero--lp .form-col {
    padding-top: 138px;
  }
  .hero--thankyou .hero-content, .hero--404 .hero-content {
    padding: 44px 100px 28px 100px;
  }
  .hero--blog-detail {
    padding: 94px 0 204px;
  }
}
@media all and (min-width: 1366px) {
  .hero .social-ratings .social__item + .social__item {
    margin-left: 28px;
    padding-left: 28px;
  }
}
@media all and (min-width: 1400px) {
  .hero--service, .hero--careers {
    padding-top: 288px;
  }
  .hero--service .hero-white-overlay, .hero--careers .hero-white-overlay {
    height: 367px;
  }
  .hero--inner {
    padding: 214px 0 0;
  }
  .hero--inner .content-col {
    padding-top: 156px;
  }
  .hero--thankyou .row, .hero--404 .row {
    height: 300px;
  }
  .hero--blog {
    padding: 90px 0 70px;
  }
}
@media all and (min-width: 1581px) {
  .hero--thankyou .row, .hero--404 .row {
    height: 523px;
  }
}
@media all and (max-width: 991px) {
  .hero--inner .contact-info__item .text {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
  }
}
@media all and (max-width: 767px) {
  .hero--thankyou .hero-content h2, .hero--hero--404 .hero-content h2 {
    font-size: 30px;
  }
}
@media all and (max-width: 370px) {
  .hero .hero-form-top span {
    font-size: 1rem;
  }
}
/* Gravity Forms */
h2.gform_submission_error {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: red;
}

.validation_message,
.gfield_validation_message {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 10px;
  color: red;
}

.inline-form-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper {
    max-width: 100%;
  }
}
.inline-form-wrapper h3 {
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper h3 {
    display: inline-block;
    font-size: 1.25rem;
    text-align: left;
  }
}
.inline-form-wrapper label {
  display: none;
}
.inline-form-wrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ebebeb;
  padding: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form {
    padding: 10px;
  }
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.inline-form-wrapper form .gform_body {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form .gform_body {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
}
.inline-form-wrapper form .gform_footer {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form .gform_footer {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: auto;
  }
}
.inline-form-wrapper form button {
  width: 100%;
  border: 0;
  border-radius: 0;
  height: 64px !important;
  white-space: nowrap;
  background-color: #fff;
}
.inline-form-wrapper form button span {
  white-space: nowrap;
}
.inline-form-wrapper form ul.gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form ul.gform_fields {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.inline-form-wrapper form ul.gform_fields li:not(.gform_hidden) {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
  margin-right: 0;
  margin-top: 0;
  width: 100%;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form ul.gform_fields li:not(.gform_hidden) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 10px;
    margin-bottom: 0;
  }
}
.inline-form-wrapper form ul.gform_fields select,
.inline-form-wrapper form ul.gform_fields input {
  height: 62px;
  background-color: #F6F6F6;
  border: 0.1px solid #dbdbdb;
  text-indent: 10px;
  color: #969696;
  font-size: 1.25rem;
  width: 100%;
}
.inline-form-wrapper form ul.gform_fields select::-webkit-input-placeholder, .inline-form-wrapper form ul.gform_fields input::-webkit-input-placeholder {
  color: #969696;
}
.inline-form-wrapper form ul.gform_fields select::-moz-placeholder, .inline-form-wrapper form ul.gform_fields input::-moz-placeholder {
  color: #969696;
}
.inline-form-wrapper form ul.gform_fields select:-ms-input-placeholder, .inline-form-wrapper form ul.gform_fields input:-ms-input-placeholder {
  color: #969696;
}
.inline-form-wrapper form ul.gform_fields select::-ms-input-placeholder, .inline-form-wrapper form ul.gform_fields input::-ms-input-placeholder {
  color: #969696;
}
.inline-form-wrapper form ul.gform_fields select::placeholder,
.inline-form-wrapper form ul.gform_fields input::placeholder {
  color: #969696;
}

/* # Hero defaults */
/* # Homepage */
/* # Contact */
/* # Basic */
/* # PPC */
/* # Flex Content
--------------------------------------------------------------*/
/* # Basic Content */
.basic-content picture {
  margin-bottom: 30px;
}
.basic-content .section-header {
  padding: 15px 30px;
}
.basic-content .section-header h2 {
  margin-bottom: 0;
}
.basic-content .header-style-2 {
  margin-bottom: 30px;
}
.basic-content .cta-link {
  margin-top: 30px;
}

@media all and (min-width: 768px) {
  .basic-content picture {
    margin-bottom: 46px;
  }
  .basic-content .section-header {
    padding: 18px 81px;
  }
  .basic-content .header-style-2 {
    margin-bottom: 34px;
  }
  .basic-content .cta-link {
    margin-top: 34px;
  }
}
/* # Columned Content */
/* # Company Promise */
section.company-promise > .container > .row > div {
  border-left: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
}
section.company-promise .img-wrap picture {
  height: 342px;
  border-radius: 7px;
}
section.company-promise .img-wrap .name-box {
  padding: 11px 19px 15px;
  left: 0;
  right: 0;
  bottom: -35px;
  width: 225px;
  margin: 0 auto;
}
section.company-promise .img-wrap .name-box img {
  right: -10px;
  bottom: -10px;
}

@media all and (min-width: 768px) {
  section.company-promise .img-wrap picture {
    height: auto;
    border-radius: 0 15px 15px 15px;
  }
  section.company-promise .img-wrap .name-box {
    left: -10px;
    right: inherit;
    bottom: 30px;
    width: auto;
  }
}
@media all and (min-width: 992px) {
  section.company-promise .content-box {
    padding-left: 14px;
  }
  section.company-promise .img-wrap .name-box {
    left: -35px;
  }
}
@media all and (max-width: 767px) {
  section.company-promise .content-box {
    padding: 70px 0 0;
  }
}
/* # CompanyCam Showcase */
section.companycam > .container {
  border-left: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
}

.cc-placement-only {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cc-placement-only img {
  margin-left: auto;
  margin-right: auto;
}

/* # Iframe */
/* # Lightbox */
/* # Link List */
/* # Reviews */
section.reviews {
  overflow: hidden;
}
section.reviews .content-box {
  padding-top: 30px;
}
section.reviews .content-box .header-info {
  padding-top: 7px;
  margin-bottom: 30px;
}

.reviews__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews__slider-wrap {
  border-radius: 15px 15px 0 15px;
  padding: 28px 22px;
  max-width: 550px;
  margin: 0 auto 25px;
  position: relative;
}
.reviews__slider-wrap .custom-slider-control {
  position: absolute;
  right: -105px;
  top: 117px;
}

.card--reviews .review--image {
  width: 54px;
  height: 54px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border: 3px solid #AB111C;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}
.card--reviews .review--image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.card--reviews .review--initials {
  width: 54px;
  height: 54px;
  background-color: #ebebeb;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #AB111C;
  margin-bottom: 12px;
}
.card--reviews .review--initials p.initials {
  line-height: 48px;
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0;
}
.card--reviews .rating-icon {
  margin-top: 4px;
}
.card--reviews.word .social-icon img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media all and (min-width: 992px) {
  section.reviews .content-box .header-info {
    margin-bottom: 39px;
  }
  section.reviews .img-wrap {
    padding-left: 115px;
  }
  .reviews__slider-wrap {
    max-width: 490px;
    padding: 28px 31px;
    margin: -100px 100px 0 0;
  }
  .reviews__slider-wrap::before {
    content: "";
    display: block;
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 37px;
    height: 37px;
    background-color: #AB111C;
    z-index: -1;
    border-radius: 100%;
  }
}
@media all and (max-width: 991px) {
  section.reviews {
    padding-top: 0;
  }
  section.reviews .container {
    padding-left: 0;
    padding-right: 0;
  }
  section.reviews .row {
    margin-left: 0;
    margin-right: 0;
  }
  section.reviews .row > * {
    padding-left: 0;
    padding-right: 0;
  }
  section.reviews .content-col .img-wrap picture {
    height: 313px;
  }
  section.reviews .content-box {
    padding: 40px 20px 0;
  }
  section.reviews .slider-col {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  .card--reviews header {
    text-align: center;
    margin-bottom: 20px;
  }
  .card--reviews header > div,
  .card--reviews header > picture {
    display: inline-block;
    vertical-align: middle;
  }
  .card--reviews header .review--initials,
  .card--reviews header .review--image {
    width: 69px;
    height: 69px;
    margin: 0 13px 0 0;
  }
  .card--reviews header .review--initials p.initials,
  .card--reviews header .review--image p.initials {
    font-size: 1.75rem;
    line-height: 64px;
  }
  .card--reviews header .social-icon img {
    height: 21px;
    width: auto;
  }
  .card--reviews header .rating-icon img {
    height: 12px;
    width: auto;
  }
  .card--reviews main h4 {
    margin-top: 20px;
  }
}
/* # Services Areas Map */
.service-map--info {
  padding-top: 32px;
}
.service-map--info .service--cities ul {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 10px;
  max-width: 385px;
}
.service-map--info .service--cities ul li {
  width: calc(50% - 9px);
  font-size: 1.25rem;
  position: relative;
  padding: 0 0 0 39px;
  margin: 0;
}
.service-map--info .service--cities ul li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  background-image: url("../img/icons/richies-red-checkmark-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.service-map--info .service--cities ul li a:is(:hover, :focus, :active) {
  color: #AB111C;
  text-decoration: none;
}

.service-map--code picture {
  height: 242px;
  border-radius: 7px;
}
.service-map--code picture iframe {
  height: 100%;
  vertical-align: top;
}

@media all and (min-width: 768px) {
  section.service-areas .withborder .service-map--code {
    position: relative;
  }
  section.service-areas .withborder .service-map--code::before {
    content: "";
    display: block;
    position: absolute;
    width: 149px;
    height: 94px;
    background-color: #AB111C;
  }
  section.service-areas .row.map--right.withborder .service-map--code {
    padding-right: 30px;
  }
  section.service-areas .row.map--right.withborder .service-map--code::before {
    right: 0;
    top: -30px;
    border-radius: 10px 0 10px 10px;
  }
  section.service-areas .row.map--right.withborder .service-map--code picture {
    border-radius: 15px 0 15px 15px;
  }
  section.service-areas .row.map--right.withoutborder .service-map--code picture {
    border-radius: 15px;
  }
  section.service-areas .row.map--left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  section.service-areas .row.map--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media all and (min-width: 768px) {
  section.service-areas .row.map--left.withborder .service-map--code {
    padding-left: 30px;
  }
  section.service-areas .row.map--left.withborder .service-map--code::before {
    left: 0;
    top: -30px;
    border-radius: 0 10px 10px 10px;
  }
  section.service-areas .row.map--left.withborder .service-map--code picture {
    border-radius: 0 15px 15px 15px;
  }
}
@media all and (min-width: 768px) {
  section.service-areas .row.map--left.withoutborder .service-map--code picture {
    border-radius: 15px;
  }
}
@media all and (min-width: 768px) {
  .service-map--info {
    padding-top: 0;
  }
}
@media all and (min-width: 768px) {
  .service-map--code picture {
    height: 356px;
  }
}
@media all and (min-width: 1200px) {
  section.service-areas .row.map--right .service-map--info {
    padding-right: 20px;
  }
  section.service-areas .row.map--left .service-map--info {
    padding-left: 20px;
  }
}
@media all and (max-width: 767px) {
  section.service-areas .row .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
/* # Services */
section.services .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 38px;
}
section.services .container .row {
  row-gap: 40px;
}
section.services.layout2 .container {
  max-width: 1021px;
}

.card--service-blocks {
  height: 100%;
}
.card--service-blocks picture {
  height: 177px;
}
.card--service-blocks .card-body {
  border-top: 11px solid #5C5D5F;
  padding: 22px 10px;
}
.card--service-blocks .card-body p {
  margin-bottom: 8px;
}

@media all and (max-width: 991px) {
  section.services .container {
    row-gap: 33px;
  }
  section.services .container .row {
    row-gap: 33px;
  }
  .card--service-blocks .card-body .lvl-4 {
    font-size: 1.5rem;
  }
}
/* # Tabbed Content */
section.tab-content {
  z-index: 0;
  margin-bottom: -60px;
}
section.tab-content .section-header h2,
section.tab-content .section-header .lvl-2 {
  margin-bottom: 24px;
}
section.tab-content .section-header p {
  color: #434343;
}
section.tab-content .content-box {
  padding: 0 0 50px 0;
}
section.tab-content .tab-wrapper .tab-menu {
  max-width: 100%;
  width: 100%;
}
section.tab-content .tab-wrapper .tab-menu > li {
  margin: 0;
}
section.tab-content .tab-wrapper .tab-menu > li + li {
  border-top: 1px solid #5C5D5F;
}
section.tab-content .tab-wrapper .tab-menu > li:first-child .tab-title-box {
  border-radius: 0 15px 0 0;
}
section.tab-content .tab-wrapper .tab-menu > li:last-child .tab-title-box {
  border-radius: 0 0 15px 0;
}
section.tab-content .tab-wrapper .tab-menu > li .tab-title-box {
  padding: 18px 16px;
  width: 100% !important;
  border-right: 26px solid #9C9C9C;
  cursor: pointer;
}
section.tab-content .tab-wrapper .tab-menu > li .tab-title-box::before {
  content: "";
  display: block;
  position: absolute;
  right: -26px;
  top: 0;
  bottom: 0;
  width: 26px;
  background: url("../img/icons/richies-arrow-right-icon--white.svg") no-repeat center;
}
section.tab-content .tab-wrapper .tab-menu > li .tab-title-box .icon {
  width: 54px;
  height: 54px;
  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;
}
section.tab-content .tab-wrapper .tab-menu > li .tab-title-box .icon img {
  width: 30px;
}
section.tab-content .tab-wrapper .tab-menu > li .content {
  display: none;
  left: calc(100% + 23px);
  top: 0;
  width: 327px;
  padding: 20px 26px;
}
section.tab-content .tab-wrapper .tab-menu > li .content p:last-child {
  margin-bottom: 0;
}
section.tab-content .tab-wrapper .tab-menu > li.active .tab-title-box {
  border-color: #AB111C;
}
section.tab-content .tab-wrapper .tab-menu > li.active .content {
  display: block;
}
section.tab-content .video-part {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 49vw;
  max-width: 100%;
  -webkit-mask-image: url("../img/RR-text-shape.svg");
          mask-image: url("../img/RR-text-shape.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
section.tab-content .video-part > img {
  opacity: 0;
  visibility: hidden;
}
section.tab-content .video-part video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media all and (min-width: 992px) {
  section.tab-content .tab-wrapper .tab-menu {
    max-width: 215px;
  }
  section.tab-content .content-box {
    padding: 0 18px 0 0;
  }
}
@media all and (min-width: 1581px) {
  section.tab-content .video-part {
    max-width: 771px;
    width: 100%;
  }
}
@media all and (max-width: 991px) {
  section.tab-content .tab-wrapper .tab-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  section.tab-content .tab-wrapper .tab-menu > li {
    margin: 0 0 20px;
  }
  section.tab-content .tab-wrapper .tab-menu > li:last-child {
    margin: 0;
  }
  section.tab-content .tab-wrapper .tab-menu > li + li {
    border: 0;
  }
  section.tab-content .tab-wrapper .tab-menu > li .tab-title-box {
    border-right: 0;
    border-bottom: 26px solid #9C9C9C;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    border-radius: 15px !important;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  }
  section.tab-content .tab-wrapper .tab-menu > li .tab-title-box::before {
    left: 0;
    right: 0;
    bottom: -22px;
    top: inherit;
    margin: 0 auto;
    height: 18px;
    width: 18px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  section.tab-content .tab-wrapper .tab-menu > li.active .tab-title-box::before {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  section.tab-content .tab-wrapper .tab-menu > li .content {
    left: 0;
    right: 0;
    position: relative;
    top: 0;
    width: 100%;
    padding: 20px 26px 5px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    background-color: transparent;
  }
  section.tab-content .video-part {
    position: relative;
    width: 100%;
    margin: 60px 0;
    right: 0;
  }
}
/* # Team Members */
.team-members .container {
  row-gap: 24px;
}
.team-members .team-photos .row {
  row-gap: 30px;
}

@media all and (min-width: 992px) {
  .team-members .container {
    row-gap: 45px;
  }
  .team-members .team-photos .row {
    row-gap: 35px;
  }
}
@media all and (max-width: 380px) {
  .team-members .team-photos .row .row {
    row-gap: 30px;
  }
  .team-members .team-photos .row > div {
    width: 100%;
  }
}
/* # Trust Factors */
.trust-factors__slider .tns-item {
  max-width: 130px;
  height: 43px;
}
.trust-factors__slider .tns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.trust-factors p:empty {
  display: none;
}

@media all and (min-width: 768px) {
  .trust-factors__slider .tns-item {
    max-width: 259px;
    height: 52px;
  }
}
/* # Two Column */
section.two-col .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
section.two-col .row + .row {
  padding-top: 60px;
}
section.two-col .img-col .img-wrap {
  margin-bottom: 32px;
}
section.two-col .img-col picture {
  height: 242px;
}
section.two-col.withborder .img-wrap picture {
  border-radius: 7px;
}
section.two-col.withoutborder .row .img-wrap {
  padding: 0 !important;
}
section.two-col.withoutborder .row picture {
  border-radius: 7px !important;
}
@media screen and (min-width: 768px) {
  section.two-col .row + .row {
    padding-top: 80px;
  }
  section.two-col .content-col {
    width: 45%;
  }
  section.two-col .img-col {
    width: 55%;
  }
  section.two-col .img-col .img-wrap {
    margin-bottom: 0;
  }
  section.two-col .img-col picture {
    height: 356px;
  }
  section.two-col.withborder .img-wrap {
    position: relative;
  }
  section.two-col.withborder .img-wrap::before {
    content: "";
    display: block;
    position: absolute;
    width: 92px;
    height: 58px;
    left: 0;
    top: -30px;
    background-color: #AB111C;
  }
  section.two-col.withoutborder .row picture {
    border-radius: 15px !important;
  }
  section.two-col.default .row:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.two-col.default .row:nth-of-type(odd) .img-wrap {
    padding-right: 30px;
  }
  section.two-col.default .row:nth-of-type(odd) .img-wrap::before {
    border-radius: 7px 0 7px 7px;
    left: inherit;
    right: 0;
  }
  section.two-col.default .row:nth-of-type(odd) .img-wrap picture {
    border-radius: 40px 0 40px 40px;
  }
  section.two-col.default .row:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.two-col.default .row:nth-of-type(even) .img-wrap {
    padding-right: 0;
    padding-left: 30px;
  }
  section.two-col.default .row:nth-of-type(even) .img-wrap::before {
    border-radius: 0 7px 7px 7px;
    left: 0;
    right: inherit;
  }
  section.two-col.default .row:nth-of-type(even) .img-wrap picture {
    border-radius: 0 40px 40px 40px;
  }
  section.two-col.reversed .row:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.two-col.reversed .row:nth-of-type(odd) .img-wrap {
    padding-left: 30px;
  }
  section.two-col.reversed .row:nth-of-type(odd) .img-wrap::before {
    border-radius: 0 7px 7px 7px;
  }
  section.two-col.reversed .row:nth-of-type(odd) .img-wrap picture {
    border-radius: 0 40px 40px 40px;
  }
  section.two-col.reversed .row:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.two-col.reversed .row:nth-of-type(even) .img-wrap {
    padding-right: 30px;
    padding-left: 0;
  }
  section.two-col.reversed .row:nth-of-type(even) .img-wrap::before {
    border-radius: 7px 0 7px 7px;
    left: inherit;
    right: 0;
  }
  section.two-col.reversed .row:nth-of-type(even) .img-wrap picture {
    border-radius: 40px 0 40px 40px;
  }
}
@media screen and (min-width: 1200px) {
  section.two-col.default .row:nth-of-type(odd) .content-box {
    padding-right: 20px;
  }
  section.two-col.default .row:nth-of-type(even) .content-box {
    padding-left: 20px;
    padding-right: 0;
  }
  section.two-col.reversed .row:nth-of-type(odd) .content-box {
    padding-left: 20px;
  }
  section.two-col.reversed .row:nth-of-type(even) .content-box {
    padding-right: 20px;
    padding-left: 0;
  }
}

/* # Two Column Fullwidth */
section.two-col-full .two-col-full__wrapper .row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
section.two-col-full .two-col-full__wrapper .two-col-full__image {
  height: auto;
  margin: 0;
}
section.two-col-full .two-col-full__wrapper.lightbg {
  background-color: #F0F0F0;
  -webkit-box-shadow: 0 0px 13px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 13px rgba(0, 0, 0, 0.1);
}
section.two-col-full .two-col-full__wrapper.withbg {
  background-color: #5C5D5F;
  -webkit-box-shadow: 0 0px 13px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 13px rgba(0, 0, 0, 0.1);
}
section.two-col-full .two-col-full__wrapper.withbg h2, section.two-col-full .two-col-full__wrapper.withbg h3, section.two-col-full .two-col-full__wrapper.withbg h4, section.two-col-full .two-col-full__wrapper.withbg p {
  color: #ffffff;
}
@media screen and (min-width: 992px) {
  section.two-col-full .two-col-full__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.two-col-full .two-col-full__wrapper .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.two-col-full .two-col-full__wrapper .two-col-full__image {
    height: calc(100% + 90px);
    margin: -45px 0;
  }
  section.two-col-full .two-col-full__wrapper .content-box {
    max-width: 563px;
    padding: 64px 0;
  }
  section.two-col-full .two-col-full__wrapper + .two-col-full__wrapper {
    margin-top: 90px;
  }
  section.two-col-full .two-col-full__wrapper.default:nth-of-type(odd) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.two-col-full .two-col-full__wrapper.reversed:nth-of-type(even) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media all and (max-width: 991px) {
  section.two-col-full .container {
    padding-left: 0;
    padding-right: 0;
  }
  section.two-col-full .container .row {
    margin-left: 0;
    margin-right: 0;
  }
  section.two-col-full .container .row > * {
    padding-left: 0;
    padding-right: 0;
  }
  section.two-col-full .two-col-full__image picture {
    height: 500px;
    border-radius: 0;
  }
  section.two-col-full .content-box {
    padding: 50px 20px;
  }
}
@media all and (max-width: 767px) {
  section.two-col-full .two-col-full__image picture {
    height: 313px;
  }
}

/* # Projects After/Before */
section.projects.without-bgcolour {
  color: #AB111C;
  background-color: #F0F0F0;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  z-index: 11;
}
section.projects.without-bgcolour h2,
section.projects.without-bgcolour .lvl-2,
section.projects.without-bgcolour h4 {
  color: #AB111C;
}
section.projects.without-bgcolour p {
  color: #9C9C9C;
}
section.projects.without-bgcolour svg * {
  fill: #9C9C9C;
}
section.projects.with-bgcolour {
  color: #ffffff;
  background: -o-linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$brand-darkred", endColorstr="$brand-red", GradientType=0 );
  background: linear-gradient(156deg, #AB111C 0%, #8D121A 100%);
}
section.projects.with-bgcolour h2,
section.projects.with-bgcolour .lvl-2,
section.projects.with-bgcolour h4,
section.projects.with-bgcolour p {
  color: #ffffff;
}
section.projects.with-bgcolour svg * {
  fill: #ffffff;
}
section.projects .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
section.projects header h2,
section.projects header .lvl-2 {
  margin-bottom: 0;
}
section.projects .icon {
  height: 19px;
}
section.projects .twentytwenty-handle {
  width: 73px;
  height: 73px;
  background-image: url("../img/twentytwenty-center-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  border: 0;
  margin-left: -35px;
  margin-top: -33px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
section.projects .twentytwenty-handle > span {
  display: none;
}
section.projects .twentytwenty-handle::before, section.projects .twentytwenty-handle::after {
  width: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-left: -7px;
}
section.projects .twentytwenty-wrapper .twentytwenty-container img {
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.before_after_mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
.before_after_mob picture {
  height: 196px;
}
.before_after_mob picture label {
  left: -14px;
  top: 20px;
  border-radius: 7px 7px 0 7px;
  padding: 11px 14px 9px;
}

@media all and (min-width: 768px) {
  section.projects .twentytwenty-wrapper .twentytwenty-container img {
    height: 400px;
  }
}
@media all and (min-width: 992px) {
  section.projects .twentytwenty-wrapper .twentytwenty-container img {
    height: 450px;
  }
}
@media all and (min-width: 1400px) {
  section.projects .twentytwenty-wrapper .twentytwenty-container img {
    height: 485px;
  }
}
@media all and (max-width: 767px) {
  section.projects .container {
    row-gap: 30px;
  }
  section.projects .project-info {
    margin-bottom: 26px;
  }
  section.projects .project-info h4 {
    font-size: 1.5rem;
  }
}
/* # Auto Column */
section.auto-column .container {
  row-gap: 20px;
  max-width: 1050px;
}
section.auto-column .container .row > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
section.auto-column .container .row + .row {
  row-gap: 50px;
}
section.auto-column .auto-column-box picture {
  height: 170px;
}
section.auto-column .auto-column-box .text {
  bottom: -20px;
  left: 10px;
  right: 10px;
}
section.auto-column .auto-column-box .text h4 {
  padding: 9px 14px;
}

@media all and (min-width: 575px) {
  section.auto-column .container .row > .col {
    width: 33.33%;
  }
  section.auto-column .auto-column-box picture {
    height: 216px;
  }
}
@media all and (min-width: 992px) {
  section.auto-column .container {
    row-gap: 30px;
  }
  section.auto-column .container .row > .col {
    width: 20%;
  }
}
@media all and (max-width: 767px) {
  section.auto-column .auto-column-box .text h4 {
    font-size: 16px;
  }
}
/* # Process */
section.process {
  overflow: hidden;
}
section.process .inner-wrap {
  background-image: url("../img/process-background-pattern.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}
section.process .container {
  max-width: 1200px;
  row-gap: 34px;
}
section.process .process-step {
  margin-left: -5px;
  margin-right: -5px;
}
section.process .process-step > .col {
  padding-left: 5px;
  padding-right: 5px;
}
section.process .col .process-box {
  padding: 46px 19px 38px;
  position: relative;
}
section.process .col .process-box::before {
  content: "";
  display: block;
  position: absolute;
  right: -27px;
  top: 50%;
  margin-top: -27px;
  width: 45px;
  height: 45px;
  background: url("../img/icons/richies-process-arrow-icon.svg") no-repeat center;
  z-index: 1;
}
section.process .col .process-box .icon {
  width: 90px;
  height: 90px;
}
section.process .col .process-box .text {
  padding-top: 13px;
}
section.process .col:last-child .process-box::before {
  display: none;
}

@media all and (max-width: 767px) {
  section.process .container {
    row-gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  section.process .container .row {
    margin-left: 0;
    margin-right: 0;
  }
  section.process .container .row > * {
    padding-left: 0;
    padding-right: 0;
  }
  section.process .section-header {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.process .process-step {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 80px;
  }
  section.process .process-step > .col {
    width: 233px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-right: 11px;
  }
}
/* # Partials
-------------------------------------------------------------- */
/* #FAQs */
section.faq-accordion .content-box > div {
  padding-left: 44px;
}
section.faq-accordion .content-box .header-style-2 {
  position: relative;
  padding-top: 13px;
}
section.faq-accordion .content-box .header-style-2::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 88px;
  height: 55px;
  border-radius: 0 10px 10px 10px;
  background-color: #F0F0F0;
  z-index: -1;
}

.facetwp-type-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.facetwp-type-radio .facetwp-radio.checked,
.facetwp-type-radio .facetwp-radio {
  margin-left: 10px;
  margin-right: 10px;
  background-image: none;
  border: 1px solid #000;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: transparent;
}
.facetwp-type-radio .facetwp-radio.checked {
  background-color: #ebebeb;
}

.facetwp-counter {
  display: none;
}

@media all and (max-width: 991px) {
  section.faq-accordion .content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
  section.faq-accordion .content-box > div {
    padding-left: 20px;
  }
}
/* # Recent Articles */
.rec-art__author-photo {
  width: 150px;
  height: 150px;
}

.rec-art__item {
  margin-bottom: 27px;
}
.rec-art__item a {
  display: block;
}
.rec-art__item picture {
  height: 450px;
}
.rec-art__item picture.black-overlay::before {
  background: -o-linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="rgba($color: $black, $alpha: 1)", endColorstr="rgba($color: $black, $alpha: 0)", GradientType=0 );
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
}
.rec-art__item .info {
  right: 0;
  padding: 36px 26px;
  z-index: 1;
}
.rec-art__item .info h4 {
  font-size: 1.5rem;
}

.recent-articles header,
.recent-articles-single header {
  text-transform: uppercase;
}
.recent-articles .flex-column,
.recent-articles-single .flex-column {
  row-gap: 20px;
}

@media all and (min-width: 768px) {
  .rec-art__item {
    margin-bottom: 0;
  }
  .rec-art__item picture {
    height: 512px;
  }
}
@media all and (min-width: 992px) {
  .recent-articles .flex-column,
  .recent-articles-single .flex-column {
    row-gap: 30px;
  }
}
/* # CTA Banner */
section.cta-banner .row {
  min-height: 478px;
}
section.cta-banner .cta-banner-box {
  padding: 38px 36px 48px;
  margin-bottom: -43px;
  border-radius: 25px 25px 25px 0px;
}

@media all and (min-width: 768px) {
  section.cta-banner .row {
    min-height: 400px;
  }
  section.cta-banner .cta-banner-box {
    padding: 38px 56px 45px;
    margin-bottom: -34px;
  }
}
@media all and (min-width: 1400px) {
  section.cta-banner .row {
    min-height: 513px;
  }
}
/* # CTA Call Out */
section.cta_callout .bg--image-abs {
  mix-blend-mode: multiply;
}
section.cta_callout h2 {
  margin-bottom: 0;
}
section.cta_callout .row .row {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 30px;
}

/* # Post Templates
-------------------------------------------------------------- */
/* # Blog + Archives */
.blog__inner__meta {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
.blog__inner__meta .left {
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
}
.blog__inner__meta .left picture {
  width: 63px;
  height: 63px;
  border: 4px solid #ffffff;
}

section.posts .row.facetwp-template {
  row-gap: 30px;
}
section.posts.without-filter .facetwp-type-radio,
section.posts.without-filter .facetwp-facet-load_more {
  display: none;
}
section.posts .custom-pagination {
  width: 100%;
}
section.posts .row .row {
  row-gap: 30px;
}
section.posts .row .row .rec-art__item {
  margin-bottom: 0;
}

/* # Single Blog Post */
section.blog-content {
  margin-top: -155px;
  padding: 0 0 60px;
}
section.blog-content .blog-content-inner {
  position: relative;
}
section.blog-content .blog-post-img {
  margin-bottom: 50px;
}
section.blog-content .blog-post-img picture {
  height: auto;
}
section.blog-content .heateor_sss_sharing_container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}
section.blog-content .heateor_sss_sharing_container .heateor_sss_sharing_ul {
  margin: 0 !important;
  text-align: center;
}
section.blog-content .heateor_sss_sharing_container .heateor_sss_sharing_ul a {
  float: none;
  height: 35px;
  margin: 0 8px;
  border-radius: 100%;
}
section.blog-content .heateor_sss_sharing_container .heateor_sss_sharing_ul a span {
  float: none !important;
  vertical-align: top !important;
}
section.blog-content .content-area {
  position: relative;
  max-width: 645px;
  width: 100%;
  padding-bottom: 60px;
}
section.blog-content .content-area h2, section.blog-content .content-area h3, section.blog-content .content-area h4, section.blog-content .content-area h5, section.blog-content .content-area h6 {
  color: #AB111C;
  margin-bottom: 20px;
}
section.blog-content .content-area p, section.blog-content .content-area ul, section.blog-content .content-area ol {
  margin-bottom: 20px;
}
section.blog-content .content-area a {
  color: #AB111C;
  text-decoration: underline;
}
section.blog-content .content-area ul {
  padding-left: 0;
  list-style-type: none;
}
section.blog-content .content-area ul li {
  padding-left: 30px;
  background-image: url("../img/icons/richies-red-checkmark-icon.svg");
  background-repeat: no-repeat;
  background-position: top left;
}
section.blog-content .content-area img {
  border-radius: 7px;
  -webkit-filter: drop-shadow(0px 12px 10px rgba(0, 0, 0, 0.035)) drop-shadow(0px 6px 5px rgba(0, 0, 0, 0.028)) drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.019));
          filter: drop-shadow(0px 12px 10px rgba(0, 0, 0, 0.035)) drop-shadow(0px 6px 5px rgba(0, 0, 0, 0.028)) drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.019));
  margin-top: 40px;
  margin-bottom: 40px;
}

.blog-meta {
  max-width: 257px;
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
}
.blog-meta picture {
  width: 63px;
  height: 63px;
  border: 4px solid #ffffff;
}

@media all and (min-width: 768px) {
  section.blog-content .blog-post-img picture {
    height: 397px;
  }
}
@media all and (min-width: 992px) {
  section.blog-content .heateor_sss_sharing_container {
    right: -65px;
    top: 199px;
    bottom: inherit;
    left: inherit;
  }
  section.blog-content .heateor_sss_sharing_container .heateor_sss_sharing_ul a {
    display: block !important;
    margin: 0 0 11px;
  }
  section.blog-content .content-area {
    position: static;
    padding-bottom: 0;
  }
}
@media all and (min-width: 1200px) {
  section.blog-content {
    margin-top: -155px;
    padding: 0 0 80px;
  }
  section.blog-content .blog-post-img {
    margin-bottom: 78px;
  }
  section.blog-content .content-area h2, section.blog-content .content-area h3, section.blog-content .content-area h4, section.blog-content .content-area h5, section.blog-content .content-area h6 {
    margin-bottom: 26px;
  }
  section.blog-content .content-area p, section.blog-content .content-area ul, section.blog-content .content-area ol {
    margin-bottom: 26px;
  }
  section.blog-content .content-area img {
    margin-top: 53px;
    margin-bottom: 53px;
  }
}
/* # Reviews Page */
.cus-rev-wrap .filtered-cpt .row {
  row-gap: 30px;
}
.cus-rev-wrap .reviews__slider__item {
  padding: 25px;
  border-radius: 15px 15px 0px 15px;
  height: 100%;
}

@media all and (min-width: 992px) {
  .cus-rev-wrap .filtered-cpt .row {
    row-gap: 42px;
  }
  .cus-rev-wrap .reviews__slider__item {
    padding: 38px 50px 38px 35px;
  }
}
/* # FAQ Page */
.faq-wrap .filtered-cpt .row {
  row-gap: 42px;
}

/* # Projects Post */
/* # Careers Post */
/* Footer */
.post-edit-link {
  position: fixed;
  bottom: 100px;
  right: 0;
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  background-color: #222;
  z-index: 99999;
  text-transform: uppercase;
  border-left: 5px solid #000;
  opacity: 0.2;
  font-size: 0.75rem;
}
.post-edit-link:hover {
  opacity: 1;
}/*# sourceMappingURL=main.css.map */