@charset "UTF-8";
/* --------------------------------------------------------------
 >> Declare Fonts
-------------------------------------------------------------- */
@font-face {
  font-family: "BankGothic";
  src: url("../fonts/bank-gothic/font.woff2") format("woff2"), url("../fonts/bank-gothic/font.woff") format("woff");
}
@font-face {
  font-family: "Mudhead-Reg";
  src: url("../fonts/mudhead/Mudhead-Serif.woff2") format("woff2");
}
@font-face {
  font-family: "Mudhead";
  src: url("../fonts/mudhead/Mudhead-Reg.woff2") format("woff2");
}
@font-face {
  font-family: "Mudhead-SemiBold";
  src: url("../fonts/mudhead/Mudhead-Serif-Semibold.woff2") format("woff2");
}
@font-face {
  font-family: "Mudhead-Bold";
  src: url("../fonts/mudhead/Mudhead-Serif-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Reg";
  src: url("../fonts/roboto/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/roboto/Roboto-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Italic";
  src: url("../fonts/roboto/Roboto-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/roboto/Roboto-Bold.woff2") format("woff2");
}
/* --------------------------------------------------------------
 >> 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;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* --------------------------------------------------------------
 >> 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 */
/* --------------------------------------------------------------
 >> UTILITY CLASSES
 Dependencies: _functions.scss, _variables.scss

 # Colors
 # Font Styles
 # Positioning 
 # Padding + Margin
 # Media
 # Overflows
 # Sizing

-------------------------------------------------------------- */
/* # Colors
-------------------------------------------------------------- */
.c-1 {
  color: red;
}

.c-2 {
  color: blue;
}

.c-3 {
  color: green;
}

.c-ui {
  color: #ececec;
}

.c-wt {
  color: #fff;
}

.c-blk {
  color: #000;
}

.bg-c-1 {
  background-color: red;
}

.bg-c-2 {
  background-color: blue;
}

.bg-c-3 {
  background-color: green;
}

.bg-ui {
  background-color: #ececec;
}

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

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

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

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

.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-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: 96px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 992px) {
  .my-xxl {
    margin-block: 192px;
  }
  .my-xl {
    margin-block: 144px;
  }
  .my-lg {
    margin-block: 96px;
  }
  .my-def {
    margin-block: 72px;
  }
  .my-md {
    margin-block: 54px;
  }
  .my-sm {
    margin-block: 42px;
  }
  .my-xs {
    margin-block: 30px;
  }
  .my-xxs {
    margin-block: 24px;
  }
  .mt-xxl {
    -webkit-margin-before: 192px;
            margin-block-start: 192px;
  }
  .mt-xl {
    -webkit-margin-before: 144px;
            margin-block-start: 144px;
  }
  .mt-lg {
    -webkit-margin-before: 96px;
            margin-block-start: 96px;
  }
  .mt-def {
    -webkit-margin-before: 72px;
            margin-block-start: 72px;
  }
  .mt-md {
    -webkit-margin-before: 54px;
            margin-block-start: 54px;
  }
  .mt-sm {
    -webkit-margin-before: 42px;
            margin-block-start: 42px;
  }
  .mt-xs {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
  .mt-xxs {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
  .mb-xxl {
    -webkit-margin-after: 192px;
            margin-block-end: 192px;
  }
  .mb-xl {
    -webkit-margin-after: 144px;
            margin-block-end: 144px;
  }
  .mb-lg {
    -webkit-margin-after: 96px;
            margin-block-end: 96px;
  }
  .mb-def {
    -webkit-margin-after: 72px;
            margin-block-end: 72px;
  }
  .mb-md {
    -webkit-margin-after: 54px;
            margin-block-end: 54px;
  }
  .mb-sm {
    -webkit-margin-after: 42px;
            margin-block-end: 42px;
  }
  .mb-xs {
    -webkit-margin-after: 30px;
            margin-block-end: 30px;
  }
  .mb-xxs {
    -webkit-margin-after: 24px;
            margin-block-end: 24px;
  }
  .mx-xxl {
    margin-inline: 192px;
  }
  .mx-xl {
    margin-inline: 144px;
  }
  .mx-lg {
    margin-inline: 96px;
  }
  .mx-def {
    margin-inline: 72px;
  }
  .mx-md {
    margin-inline: 54px;
  }
  .mx-sm {
    margin-inline: 42px;
  }
  .mx-xs {
    margin-inline: 30px;
  }
  .mx-xxs {
    margin-inline: 24px;
  }
  .ms-xxl {
    -webkit-margin-start: 192px;
            margin-inline-start: 192px;
  }
  .ms-xl {
    -webkit-margin-start: 144px;
            margin-inline-start: 144px;
  }
  .ms-lg {
    -webkit-margin-start: 96px;
            margin-inline-start: 96px;
  }
  .ms-def {
    -webkit-margin-start: 72px;
            margin-inline-start: 72px;
  }
  .ms-md {
    -webkit-margin-start: 54px;
            margin-inline-start: 54px;
  }
  .ms-sm {
    -webkit-margin-start: 42px;
            margin-inline-start: 42px;
  }
  .ms-xs {
    -webkit-margin-start: 30px;
            margin-inline-start: 30px;
  }
  .ms-xxs {
    -webkit-margin-start: 24px;
            margin-inline-start: 24px;
  }
  .me-xxl {
    -webkit-margin-end: 192px;
            margin-inline-end: 192px;
  }
  .me-xl {
    -webkit-margin-end: 144px;
            margin-inline-end: 144px;
  }
  .me-lg {
    -webkit-margin-end: 96px;
            margin-inline-end: 96px;
  }
  .me-def {
    -webkit-margin-end: 72px;
            margin-inline-end: 72px;
  }
  .me-md {
    -webkit-margin-end: 54px;
            margin-inline-end: 54px;
  }
  .me-sm {
    -webkit-margin-end: 42px;
            margin-inline-end: 42px;
  }
  .me-xs {
    -webkit-margin-end: 30px;
            margin-inline-end: 30px;
  }
  .me-xxs {
    -webkit-margin-end: 24px;
            margin-inline-end: 24px;
  }
  .py-xxl {
    padding-block: 192px;
  }
  .py-xl {
    padding-block: 144px;
  }
  .py-lg {
    padding-block: 96px;
  }
  .py-def {
    padding-block: 72px;
  }
  .py-md {
    padding-block: 54px;
  }
  .py-sm {
    padding-block: 42px;
  }
  .py-xs {
    padding-block: 30px;
  }
  .py-xxs {
    padding-block: 24px;
  }
  .pt-xxl {
    -webkit-padding-before: 192px;
            padding-block-start: 192px;
  }
  .pt-xl {
    -webkit-padding-before: 144px;
            padding-block-start: 144px;
  }
  .pt-lg {
    -webkit-padding-before: 96px;
            padding-block-start: 96px;
  }
  .pt-def {
    -webkit-padding-before: 72px;
            padding-block-start: 72px;
  }
  .pt-md {
    -webkit-padding-before: 54px;
            padding-block-start: 54px;
  }
  .pt-sm {
    -webkit-padding-before: 42px;
            padding-block-start: 42px;
  }
  .pt-xs {
    -webkit-padding-before: 30px;
            padding-block-start: 30px;
  }
  .pt-xxs {
    -webkit-padding-before: 24px;
            padding-block-start: 24px;
  }
  .pb-xxl {
    -webkit-padding-after: 192px;
            padding-block-end: 192px;
  }
  .pb-xl {
    -webkit-padding-after: 144px;
            padding-block-end: 144px;
  }
  .pb-lg {
    -webkit-padding-after: 96px;
            padding-block-end: 96px;
  }
  .pb-def {
    -webkit-padding-after: 72px;
            padding-block-end: 72px;
  }
  .pb-md {
    -webkit-padding-after: 54px;
            padding-block-end: 54px;
  }
  .pb-sm {
    -webkit-padding-after: 42px;
            padding-block-end: 42px;
  }
  .pb-xs {
    -webkit-padding-after: 30px;
            padding-block-end: 30px;
  }
  .pb-xxs {
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
  .px-xxl {
    padding-inline: 192px;
  }
  .px-xl {
    padding-inline: 144px;
  }
  .px-lg {
    padding-inline: 96px;
  }
  .px-def {
    padding-inline: 72px;
  }
  .px-md {
    padding-inline: 54px;
  }
  .px-sm {
    padding-inline: 42px;
  }
  .px-xs {
    padding-inline: 30px;
  }
  .px-xxs {
    padding-inline: 24px;
  }
  .ps-xxl {
    -webkit-padding-start: 192px;
            padding-inline-start: 192px;
  }
  .ps-xl {
    -webkit-padding-start: 144px;
            padding-inline-start: 144px;
  }
  .ps-lg {
    -webkit-padding-start: 96px;
            padding-inline-start: 96px;
  }
  .ps-def {
    -webkit-padding-start: 72px;
            padding-inline-start: 72px;
  }
  .ps-md {
    -webkit-padding-start: 54px;
            padding-inline-start: 54px;
  }
  .ps-sm {
    -webkit-padding-start: 42px;
            padding-inline-start: 42px;
  }
  .ps-xs {
    -webkit-padding-start: 30px;
            padding-inline-start: 30px;
  }
  .ps-xxs {
    -webkit-padding-start: 24px;
            padding-inline-start: 24px;
  }
  .pe-xxl {
    -webkit-padding-end: 192px;
            padding-inline-end: 192px;
  }
  .pe-xl {
    -webkit-padding-end: 144px;
            padding-inline-end: 144px;
  }
  .pe-lg {
    -webkit-padding-end: 96px;
            padding-inline-end: 96px;
  }
  .pe-def {
    -webkit-padding-end: 72px;
            padding-inline-end: 72px;
  }
  .pe-md {
    -webkit-padding-end: 54px;
            padding-inline-end: 54px;
  }
  .pe-sm {
    -webkit-padding-end: 42px;
            padding-inline-end: 42px;
  }
  .pe-xs {
    -webkit-padding-end: 30px;
            padding-inline-end: 30px;
  }
  .pe-xxs {
    -webkit-padding-end: 24px;
            padding-inline-end: 24px;
  }
}
/* 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%;
}

@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%;
  }
}
/* --------------------------------------------------------------
* >> THEME MIX-INS
*
* Dependencies: '_variables.scss'
-------------------------------------------------------------- */
/* --------------------------------------------------------------
 >> GLOBALS
 Dependencies: _functions.scss, _variables.scss, _utilities.scss

 # CSS Resets
 # Accessibility
 # Typography
 # Navigation
 # Links
 # Components
 	# Mobile Nav
	# Header
	# Footer
	# Forms
	# 

-------------------------------------------------------------- */
/* # 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 {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

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 {
  margin: 0 0 16px;
}
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, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

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

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

strong {
  font-weight: 800;
}

/* # 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: sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1, .lvl-1 {
  font-size: 2.75rem;
}

h2, .lvl-2 {
  font-size: 2.25rem;
}

h3, .lvl-3 {
  font-size: 1.875rem;
}

h4, .lvl-4 {
  font-size: 1.625rem;
}

h5, .lvl-5 {
  font-size: 1.125rem;
}

h6, .lvl-6 {
  font-size: 1rem;
}

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

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

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

.micro {
  font-size: 18px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.jumbo {
  font-size: 44px;
}

@media all and (min-width: 992px) {
  h1, .lvl-1 {
    font-size: 4rem;
  }
  h2, .lvl-2 {
    font-size: 3.25rem;
  }
  h3, .lvl-3 {
    font-size: 2.625rem;
  }
  h4, .lvl-4 {
    font-size: 1.875rem;
  }
  h5, .lvl-5 {
    font-size: 1.25rem;
  }
  h6, .lvl-6 {
    font-size: 1.125rem;
  }
  .micro {
    font-size: 20px;
  }
  .jumbo {
    font-size: 64px;
  }
}
/* # Navigation
--------------------------------------------------------------*/
nav ul {
  padding: 0;
  list-style: none;
}
nav ul li {
  position: relative;
  padding: 16px;
  margin: 0;
}
nav ul li a:is(:hover, :focus, :active) {
  text-decoration: none;
}

header nav ul li > ul.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 48px;
  width: auto;
  min-width: 12rem;
  padding: 0;
  margin: 0;
  background-color: #fff;
  z-index: inherit;
}
header nav ul li > ul.sub-menu li {
  display: block;
  margin: 0;
  padding: 16px;
}
header nav ul li:hover > ul.sub-menu {
  display: block;
}

/* # 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:is(:hover, :active, :focus) {
  text-decoration: none;
}

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

/* # Components
--------------------------------------------------------------*/
/* # Mobile Navigation */
#mobile-handler {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
}
#mobile-handler .menu-toggle {
  position: relative;
  z-index: 10;
}

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

#mobile-navigation {
  position: fixed;
  top: 0;
  right: -100%;
  width: clamp(33%, 20rem, 70%);
  height: 100vh;
  background-color: #fff;
  -webkit-transition: ease-in-out right 0.3s;
  transition: ease-in-out right 0.3s;
  z-index: 9998;
}
#mobile-navigation .menu-panel {
  width: 100%;
  height: 100vh;
  padding-top: 96px;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li ul.sub-menu {
  display: none;
}
#mobile-navigation.active {
  right: 0;
}

#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 */
.site-header__inner__branding img {
  max-width: 200px;
  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 {
  width: 10px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/chevron-black-down.svg);
  content: "";
}

header.site-header {
  position: fixed;
  width: 100vw;
  height: 64px;
  z-index: 9999;
}
header.site-header .site-header__inner {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
header.site-header.header-scroll {
  background-color: #fff;
  box-shadow: 0px, 0px, 15px, 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px, 0px, 15px, 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px, 0px, 15px, 0px rgba(0, 0, 0, 0.25);
  transition: ease-in-out all 0.3s;
  -webkit-transition: ease-in-out all 0.3s;
  -moz-transition: ease-in-out all 0.3s;
}

/* # Footer */
footer.site-footer a.brand-attr {
  display: inline-block;
}

/* # Forms */
.gform_body ul {
  list-style: none;
  margin: 0;
}
.gform_body ul li :is(input, textarea, select) {
  width: 100%;
}
.gform_body ul li.gform_validation_container {
  visibility: hidden;
  display: none;
}
.gform_body ul li div.ginput_complex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gform_body ul li div.ginput_complex span {
  width: calc(50% - 8px);
}

/* # Trust Factors slider */
.trust-factors__slider .tns-item {
  max-width: 150px;
  height: 60px;
}
.trust-factors__slider .tns-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* # Pagination */
/* # Breadcrumbs */
/* # Accordions */
.accordion {
  display: block;
  width: 100%;
  margin: auto;
  background-color: #ececec;
}
.accordion .accordion__top {
  cursor: pointer;
}
.accordion .accordion__top .plus {
  position: relative;
  width: 1rem;
  height: 1rem;
}
.accordion .accordion__top .plus div {
  position: absolute;
  width: 1rem;
  height: 4px;
  background-color: #000;
}
.accordion .accordion__top .plus div:first-of-type {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion .accordion__top .plus div:last-of-type {
  top: 6px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}
.accordion .accordion__btm {
  background: #fff;
  display: none;
}
.accordion.active .accordion__top .plus div:last-of-type {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.accordion + .accordion {
  margin-top: 16px;
}

/* # Cards + Tiles */
.card--reviews header img {
  width: clamp(60px, 50%, 82px);
}
.card--reviews .inner img {
  width: clamp(80px, 100%, 100px);
  height: clamp(20px, 100%, 80px);
}

/* # Single post progress bar */
.post-progress {
  position: fixed;
  left: 0;
  top: 64px;
  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;
}

/* --------------------------------------------------------------
 >> BEGIN Main Styles
-------------------------------------------------------------- */
picture {
  margin-bottom: 0;
  display: block;
}

.bg--lt-grey {
  background-color: #F0F0F0;
}

.bg--blue {
  background-color: #326C9E;
}
.bg--blue h2 {
  color: #fff;
}

.gradient--blue-navy, .footer-shape, .projects-card--single div.plus, a.header-link-phone div {
  background: -webkit-gradient(linear, left bottom, left top, from(#326C9E), to(#29577F));
  background: linear-gradient(360deg, #326C9E 0%, #29577F 100%);
}

.gradient--blue, .overlay--blue-gradient {
  background: rgb(50, 108, 158);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(50, 108, 158)), to(rgba(50, 108, 158, 0)));
  background: linear-gradient(0deg, rgb(50, 108, 158) 0%, rgba(50, 108, 158, 0) 100%);
}

.overlay--blue {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: rgba(50, 108, 158, 0.6);
  mix-blend-mode: multiply;
}

.overlay--dark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.overlay--blue-gradient {
  opacity: 0.6;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.overlay--black-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
}

.shadow--light, #mobile-handler, section.career .career-single, .projects-card--single, .blog-main, section.core-values, .rec-art__item, .accordion, section.two-col .tc--image picture, .team-cards, section.tab-content .tabbed-image picture, section.services-main .card--service-blocks,
section.services .card--service-blocks, .service-map--code picture, .review--initials, .test-proj-single, .cp-slider-single img, .contact-person picture, .hero--about picture.main {
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  font-family: "Roboto-Reg", Arial, Helvetica, sans-serif;
  color: #292929;
}

.h100, .h-100 {
  height: 100%;
}

header.site-header.header-scroll {
  background-color: rgba(0, 0, 0, 0.5);
}

h1, h2, h3, h4, h5 {
  font-family: "Mudhead", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

a {
  color: #326C9E;
  text-decoration: underline;
  font-weight: 800;
}

.title--36, .blog-main h4 {
  font-size: 1.5625rem;
}
@media only screen and (min-width: 768px) {
  .title--36, .blog-main h4 {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 992px) {
  .title--36, .blog-main h4 {
    font-size: 2.25rem;
  }
}

.title--50, section.career h2, .blog-main h3, section.company-promise .container h3, section.process h2, section.recent-articles h2, section.faq-accordion h3, section.two-col h2, section.team-members h2, section.tab-content h2, section.services-main h2,
section.services h2, section.service-areas h2, section.testimonial-project h3, .hero--blog .feat-info h3 {
  font-size: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .title--50, section.career h2, .blog-main h3, section.company-promise .container h3, section.process h2, section.recent-articles h2, section.faq-accordion h3, section.two-col h2, section.team-members h2, section.tab-content h2, section.services-main h2,
  section.services h2, section.service-areas h2, section.testimonial-project h3, .hero--blog .feat-info h3 {
    font-size: 2.8125rem;
  }
}
@media only screen and (min-width: 992px) {
  .title--50, section.career h2, .blog-main h3, section.company-promise .container h3, section.process h2, section.recent-articles h2, section.faq-accordion h3, section.two-col h2, section.team-members h2, section.tab-content h2, section.services-main h2,
  section.services h2, section.service-areas h2, section.testimonial-project h3, .hero--blog .feat-info h3 {
    font-size: 3.125rem;
  }
}

.title--56, .blog-main h2, .single-jobs .careers-form h3 {
  font-size: 2.8125rem;
}
@media only screen and (min-width: 768px) {
  .title--56, .blog-main h2, .single-jobs .careers-form h3 {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 992px) {
  .title--56, .blog-main h2, .single-jobs .careers-form h3 {
    font-size: 3.5rem;
  }
}

.title--76, .blog-main h1, .hero--basic .hero-info .jumbo {
  font-size: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .title--76, .blog-main h1, .hero--basic .hero-info .jumbo {
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 992px) {
  .title--76, .blog-main h1, .hero--basic .hero-info .jumbo {
    font-size: 4.75rem;
  }
}

.container {
  max-width: 1260px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

.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 {
  display: block;
  text-decoration: none;
}

.txt-shadow {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* # Partials
-------------------------------------------------------------- */
/* Header */
.hero {
  background-color: #fff;
}

.hero--bottom-chev {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-filter: drop-shadow(0px -5px 3px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px -5px 3px rgba(0, 0, 0, 0.25));
  z-index: 10;
}

#hero-form {
  background-color: #fff;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}
#hero-form h3 {
  background: -webkit-gradient(linear, left bottom, left top, from(#326C9E), to(#29577F));
  background: linear-gradient(360deg, #326C9E 0%, #29577F 100%);
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  font-size: 2rem;
  padding-top: 30px;
  padding-bottom: 30px;
}
#hero-form .gform_wrapper {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
#hero-form .btn {
  width: 100%;
}
#hero-form .btn span {
  text-transform: uppercase;
}

.home .hero--main {
  overflow: hidden;
}

#hero-form {
  position: relative;
}
#hero-form::after {
  position: absolute;
  height: 200px;
  width: 100%;
  bottom: -200px;
  left: 0;
  content: "";
  display: block;
  background-color: #fff;
}

.hero--services-single {
  color: #fff;
}
.hero--services-single #hero-form {
  height: auto;
}
.hero--services-single .hero-top {
  position: relative;
}
.hero--services-single .hero-bottom {
  background-color: #fff;
  color: #292929;
  position: relative;
  z-index: 1;
}
.hero--services-single .serv-single-form {
  position: absolute;
  right: 20px;
  top: 0;
  max-width: 420px;
  width: 100%;
}

.hero--about {
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#326C9E), to(#29577F));
  background: linear-gradient(360deg, #326C9E 0%, #29577F 100%);
  position: relative;
  height: auto;
  margin-bottom: 175px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .hero--about {
    height: 700px;
    margin-bottom: 175px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--about {
    height: 700px;
    margin-bottom: 175px;
  }
}
.hero--about .container {
  padding-top: 50px;
  text-align: center;
  width: 100%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  z-index: 11;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .hero--about .container {
    padding-top: 100px;
  }
}
.hero--about h2 {
  text-align: center !important;
  margin-bottom: 60px;
  font-size: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .hero--about h2 {
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero--about h2 {
    font-size: 5rem;
  }
}
.hero--about picture.wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero--about picture.wave img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero--about picture.main {
  height: 350px;
  width: 100%;
  display: block;
  position: relative;
  z-index: 11;
}
@media only screen and (min-width: 768px) {
  .hero--about picture.main {
    height: 450px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--about picture.main {
    height: 450px;
  }
}
.hero--about picture.main img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-intro {
  padding-bottom: 50px;
  text-align: center;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.11);
}
@media only screen and (min-width: 768px) {
  .about-intro {
    text-align: left;
  }
}
.about-intro .container {
  text-align: center;
  width: 100%;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .about-intro .container {
    text-align: left;
  }
}
.about-intro .container h3 {
  text-transform: uppercase;
  color: #326C9E;
}

.hero--blog .container {
  max-width: 1200px;
}
.hero--blog .feat-box {
  position: relative;
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
.hero--blog .feat-box a {
  text-decoration: none;
  color: #fff;
  display: block;
  margin-bottom: 0;
}
.hero--blog .feat-box button {
  background-color: transparent;
  border: 0;
}
.hero--blog .feat-box:hover .overlay--black-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(50, 108, 158, 0)), to(rgba(50, 108, 158, 0.75)));
  background: linear-gradient(180deg, rgba(50, 108, 158, 0) 0%, rgba(50, 108, 158, 0.75) 100%);
}
.hero--blog .feat-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.hero--blog .feat-title p {
  margin-bottom: 0;
  text-transform: uppercase;
}
.hero--blog .feat-title img.bullet {
  position: relative;
  width: 19px;
  height: 18px;
  -o-object-fit: unset;
  object-fit: unset;
  margin-right: 5px;
}
.hero--blog picture.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.hero--blog .feat-info {
  position: relative;
  text-align: left;
  padding: 30px;
  position: relative;
  z-index: 8;
}
.hero--blog .feat-info h3 {
  text-transform: uppercase;
}

.hero--career-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.hero--career-single .rank-math-breadcrumb {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.hero--career-single .rank-math-breadcrumb a {
  color: #fff;
}

.single-jobs .blog-main {
  max-width: 650px;
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 100px;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 0;
}
.single-jobs .entry-meta p {
  text-align: left;
  color: #326C9E !important;
}
.single-jobs .careers-form {
  margin-top: 50px;
}
.single-jobs .careers-form h3 {
  color: #326C9E;
}
.single-jobs .careers-form ul {
  list-style: none;
  padding: 0 !important;
}
.single-jobs .careers-form ul li {
  margin-top: 0 !important;
}
.single-jobs .careers-form .social-ratings {
  display: none !important;
}
.single-jobs .careers-form form {
  padding: 40px !important;
  border: 1px solid #E1E1E0;
}
.single-jobs .careers-form form #input_2_4 {
  padding: 20px;
  height: auto;
}
.single-jobs .careers-form form button {
  width: 100%;
  margin-top: 20px;
}

.gform-body label {
  display: none;
}
.gform-body input,
.gform-body select {
  background-color: #F0F0F0;
  border: 0;
  border-radius: 0;
  text-indent: 15px;
  height: 45px;
  line-height: 45px;
  margin-bottom: 15px;
}

a.header-link-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  a.header-link-phone {
    margin-right: 40px;
  }
}
a.header-link-phone div {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  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;
}
a.header-link-phone div img {
  max-width: 17px;
}
a.header-link-phone span {
  color: #fff;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 1.375rem;
  margin-left: 10px;
}

.transition, .plus, .team-cards .team-cards-info, section.services-main .overlay--blue,
section.services .overlay--blue, a.btn--white-link span::after,
.btn--white-link span::after, a.btn--blue-link span::after,
.btn--blue-link span::after, .btn--red::after, .btn--red::before, .btn--red span, .btn {
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}

.btn {
  padding: 20px 40px 16px;
  text-align: center;
  border: 3px solid transparent;
  background-color: transparent;
  cursor: pointer;
}
.btn span {
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #326C9E;
  font-size: 1.375rem;
}

.btn--red {
  text-align: center;
  border: 0;
  background-color: #E96F5D;
  cursor: pointer;
  overflow: hidden;
  padding-top: 15px;
  padding-left: 55px;
  padding-right: 55px;
  padding-bottom: 11px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.btn--red span {
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.375rem;
  display: inline-block;
  z-index: 10;
  position: relative;
}
.btn--red::before {
  position: absolute;
  top: 20px;
  right: 30px;
  content: "";
  display: block;
  height: 12px;
  width: 6px;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/chevron-right--white.svg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.btn--red::after {
  width: 100%;
  height: 100%;
  background-color: #E24C35;
  display: block;
  content: "";
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
}
.btn--red:hover span {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.btn--red:hover::after {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
.btn--red:hover::before {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

button.btn--ghost-blue,
.btn--ghost-blue {
  border: 3px solid #326C9E;
  background-color: transparent;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
}
button.btn--ghost-blue span,
.btn--ghost-blue span {
  color: #326C9E;
  text-transform: none;
}
button.btn--ghost-blue:hover,
.btn--ghost-blue:hover {
  background-color: #326C9E;
}
button.btn--ghost-blue:hover span,
.btn--ghost-blue:hover span {
  color: #fff;
}

button.btn--ghost-red,
.btn--ghost-red {
  border: 3px solid #E24C35;
  background-color: transparent;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 15px;
  padding-right: 15px;
  text-decoration: none;
}
button.btn--ghost-red span,
.btn--ghost-red span {
  color: #E24C35;
  text-transform: none;
}
button.btn--ghost-red:hover,
.btn--ghost-red:hover {
  background-color: #E24C35;
}
button.btn--ghost-red:hover span,
.btn--ghost-red:hover span {
  color: #fff;
}

.btn--ghost-white {
  border: 3px solid #fff;
  background-color: transparent;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
}
.btn--ghost-white span {
  color: #fff;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  text-transform: none;
  font-size: 1.125rem;
}
.btn--ghost-white:hover {
  background-color: #fff !important;
}
.btn--ghost-white:hover span {
  color: #326C9E;
}

a.btn--blue-link,
.btn--blue-link {
  position: relative;
  text-decoration: none;
  padding: 0;
  border: 0;
  display: inline-block;
}
a.btn--blue-link span,
.btn--blue-link span {
  color: #326C9E;
  font-family: "Mudhead-Reg", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  text-transform: none;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
a.btn--blue-link span::after,
.btn--blue-link span::after {
  width: 10px;
  height: 18px;
  display: block;
  content: "";
  margin-left: 10px;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/clevron-right--blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn--blue-link:hover span::after,
.btn--blue-link:hover span::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

a.btn--white-link,
.btn--white-link {
  position: relative;
  text-decoration: none;
}
a.btn--white-link span,
.btn--white-link span {
  color: #fff;
  font-family: "Mudhead-Reg", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  line-height: 1;
  margin-bottom: 0;
  text-transform: none;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
a.btn--white-link span::after,
.btn--white-link span::after {
  width: 10px;
  height: 18px;
  display: block;
  content: "";
  margin-left: 10px;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/clevron-right--white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn--white-link:hover span::after,
.btn--white-link:hover span::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* 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 */
.hero {
  padding-top: 96px;
  padding-bottom: 48px;
}
.hero .micro {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
}
.hero .rank-math-breadcrumb {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
.hero .rank-math-breadcrumb a {
  color: #fff;
  text-transform: uppercase;
}

.highlights {
  margin-top: 40px;
  margin-bottom: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (min-width: 456px) {
  .highlights {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .highlights {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.highlights .highlights__item {
  margin-bottom: 10px;
  text-align: left;
}
.highlights .highlights__item img {
  width: 20px;
  height: 18px;
  margin-right: 10px;
}
.highlights .highlights__item p, .highlights .highlights__item a {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: #fff;
  margin-bottom: 0;
  text-decoration: none;
  font-size: 0.875rem;
  text-align: left;
}
@media only screen and (min-width: 992px) {
  .highlights .highlights__item p, .highlights .highlights__item a {
    font-size: 1rem;
  }
}

.hero--main {
  color: #fff;
  padding-bottom: 160px;
}
.hero--main .jumbo {
  line-height: 1;
  text-shadow: none;
  font-size: 3.75rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .hero--main .jumbo {
    font-size: 4.375rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero--main .jumbo {
    font-size: 4.75rem;
    text-align: left;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.hero--main p {
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .hero--main p {
    text-align: left;
  }
}
.hero--main .container {
  max-width: 1100px;
}
.hero--main .hero--bg img {
  opacity: 0.6;
}
.hero--main .hero--bg video {
  opacity: 0.6;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}
@media only screen and (min-width: 768px) {
  .video-bg {
    display: block;
  }
}
.video-bg video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.social__item {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.social__item p {
  color: #326C9E;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 0.625rem;
  line-height: 1;
}
.social__item .social__item__icon {
  margin-bottom: 0;
  padding-right: 5px;
}
.social__item .social__item__icon img {
  max-height: 25px;
}
.social__item .social__item__desc img {
  width: 60px;
}

.hero--basic {
  color: #fff;
  padding-bottom: 0;
  border-bottom: 13px solid #E24C35;
}
.hero--basic .hero-info {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .hero--basic .hero-info {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.hero--basic .hero-info .jumbo {
  line-height: 1;
}
.hero--basic .hero-info a {
  text-decoration: none;
  color: #fff;
}
.hero--basic .hero-info p {
  text-transform: uppercase;
  font-family: "Mudhead-Reg", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.375rem;
}
@media only screen and (min-width: 768px) {
  .hero--basic .hero-info p {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 992px) {
  .hero--basic .hero-info p {
    font-size: 2rem;
  }
}

.hero--blue-block {
  position: relative;
  border-bottom: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#326C9E), to(#29577F));
  background: linear-gradient(360deg, #326C9E 0%, #29577F 100%);
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .hero--blue-block {
    padding-bottom: 100px;
  }
}
.hero--blue-block picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero--blue-block picture img {
  -o-object-fit: cover;
  object-fit: cover;
}

#masthead {
  padding-top: 60px;
  padding-bottom: 60px;
}

.site-header__inner__branding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#primary-menu .menu-item-has-children > a::after {
  width: 10px;
  height: 5px;
  margin-left: 5px;
  background-image: url(../img/chevron-white-down.svg);
}

a {
  color: #326C9E;
  text-decoration: underline;
  font-weight: 800;
}

#site-navigation {
  margin-left: 25px;
}
#site-navigation li a {
  font-family: "Mudhead-Reg", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
}
#site-navigation li ul {
  padding: 0;
  margin: 0;
}
#site-navigation li ul li {
  padding: 0;
}
#site-navigation li ul li a {
  color: #326C9E;
  padding: 10px 10px;
  display: block;
  line-height: 1;
}
#site-navigation li ul li:hover {
  background: #F0F0F0;
}
#site-navigation li ul li:hover a {
  color: #E24C35;
}

/* # Homepage */
/* # Contact */
.hero--contact .hero-header {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .hero--contact .hero-header {
    text-align: left;
    margin-left: 0;
  }
}
.contact-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .contact-person {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.contact-person div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.contact-person picture {
  width: 60px;
  height: 60px;
  border: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
}
.contact-person p {
  margin-bottom: 0;
}
.contact-person p.name {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.contact-person p.title {
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

/* # Basic */
/* # PPC */
.page-template-page-ppc .hero-header {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .page-template-page-ppc .hero-header {
    text-align: left;
  }
}
.page-template-page-ppc .ppc-hide {
  display: none !important;
}
.page-template-page-ppc .services-cta {
  display: none;
}
.page-template-page-ppc .learn-more {
  display: none;
}
.page-template-page-ppc .card-serv-desc {
  display: block !important;
}

/* # Flex Content
--------------------------------------------------------------*/
/* # Basic Content */
/* # Columned Content */
/* # Company Promise */
/* # CompanyCam Showcase */
.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.testimonial-project {
  position: relative;
  color: #fff;
}
section.testimonial-project .footer-shape {
  top: -60px;
  height: calc(100% + 60px);
}
section.testimonial-project h2 {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #F0F0F0;
  font-size: 1rem;
}
.row-tp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .row-tp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (min-width: 992px) {
  .row-tp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.container--tp {
  top: 60px;
  position: relative;
  margin-bottom: 60px;
}

.test-proj-single {
  background-color: #fff;
  color: #292929;
  height: auto;
}
@media only screen and (min-width: 992px) {
  .test-proj-single {
    height: 400px;
  }
}

.tp-image {
  position: relative;
  height: 150px;
}
@media only screen and (min-width: 992px) {
  .tp-image {
    height: 100%;
  }
}
.tp-image picture {
  position: relative;
  height: 100%;
  width: 100%;
  margin-bottom: 0;
}
.tp-image picture img {
  -o-object-fit: cover;
  object-fit: cover;
}

.tp-info {
  padding: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .tp-info {
    text-align: left;
  }
}
.tp-info h4 {
  color: #E24C35;
  text-transform: uppercase;
}
.tp-info a {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) {
  .tp-info a {
    margin-left: 0;
  }
}

.review--initials {
  height: 80px;
  width: 80px;
  position: absolute;
  top: -40px;
  right: -40px;
  border-radius: 50%;
  background-color: #326C9E;
  border: 5px solid #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10;
  display: none;
}
@media only screen and (min-width: 992px) {
  .review--initials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.review--initials p.initials {
  line-height: 1;
  color: #fff;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 50px;
  display: inline-block;
  margin-bottom: 0;
}

.card--reviews .review--image {
  width: 96px;
  height: 96px;
  margin-left: 0;
  margin-right: auto;
  position: relative;
}
.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: 96px;
  height: 96px;
  background-color: #ebebeb;
  text-align: center;
  margin-left: 0;
  margin-right: auto;
  overflow: hidden;
  border-radius: 50%;
}
.card--reviews .review--initials p.initials {
  line-height: 96px;
  display: block;
  font-size: 1.875rem;
  margin-bottom: 0;
}

.mfp-content {
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.mfp-content .mfp-close {
  background-color: #fff;
  opacity: 1;
}

.tns-inner {
  font-size: 0;
}

.slider-controls-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 5px;
  margin: 0;
}

.slider-controls {
  width: 40px;
  height: 40px;
  background-color: #326C9E;
  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;
  margin-left: 5px;
  margin-right: 5px;
  align-items: center;
  margin-top: 0;
}
.slider-controls img {
  width: 10px;
}

.project-popup__slider {
  width: 100%;
}
.project-popup__slider .tns-item {
  position: relative;
}
.project-popup__slider picture {
  width: 100%;
  aspect-ratio: 16/9;
  top: 0;
  left: 0;
  display: block;
  position: relative;
}
.project-popup__slider picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.proj-slide-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  position: relative;
  min-height: 52px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.proj-slide-info p.project-name {
  color: #326C9E;
  text-transform: uppercase;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.375rem;
  line-height: 1;
  margin-bottom: 0;
  padding-right: 10px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .proj-slide-info p.project-name {
    font-size: 1.625rem;
    width: auto;
  }
}
@media only screen and (min-width: 992px) {
  .proj-slide-info p.project-name {
    font-size: 2rem;
  }
}
.proj-slide-info p.project-material,
.proj-slide-info p.project-location {
  line-height: 1;
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #A4A4A3;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .proj-slide-info p.project-material,
  .proj-slide-info p.project-location {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 992px) {
  .proj-slide-info p.project-material,
  .proj-slide-info p.project-location {
    font-size: 1rem;
  }
}
.proj-slide-info p.project-material {
  border-left: 2px solid #A4A4A3;
}
.proj-slide-info p.project-location {
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .proj-slide-info p.project-location {
    padding-left: 0;
  }
}
/* # Services Areas Map */
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) {
  section.service-areas .row.map--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
section.service-areas ul {
  -moz-column-count: 1;
  -webkit-column-count: 1;
          column-count: 1;
  list-style-image: url(/wp-content/themes/dominion-theme/inc/img/map-marker-grey.svg);
  padding: 0 0 0 20px;
  margin-top: 0;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  section.service-areas ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
            column-count: 2;
  }
}
section.service-areas ul li + li {
  margin-top: 0;
}
section.service-areas ul li {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
}
section.service-areas ul li::marker {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  section.service-areas ul li {
    font-size: 1rem;
  }
}
section.service-areas ul li a {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #326C9E;
}
@media only screen and (min-width: 768px) {
  section.service-areas ul li a {
    font-size: 1rem;
  }
}
section.service-areas h2 {
  color: #326C9E;
}

.service-map--info {
  padding-bottom: 25px;
}
.service-map--info p {
  margin-bottom: 0;
}

.service-map--code {
  height: 400px;
}
.service-map--code picture {
  margin-bottom: 0;
  height: 100%;
}
.service-map--code iframe {
  height: 100%;
  aspect-ratio: unset;
}

/* # Services */
section.services-main,
section.services {
  background-image: url(/wp-content/themes/dominion-theme/inc/img/services-bg.webp);
  background-size: cover;
  background-position: right;
}
section.services-main .services-info,
section.services .services-info {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.services-main .services-info,
  section.services .services-info {
    text-align: left;
  }
}
section.services-main .services-cta,
section.services .services-cta {
  margin-top: 20px;
  margin-bottom: 20px;
}
section.services-main h2,
section.services h2 {
  color: #326C9E;
  text-transform: none;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.services-main h2,
  section.services h2 {
    text-align: left;
  }
}
section.services-main a.card--block-link,
section.services a.card--block-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
section.services-main .overlay--blue,
section.services .overlay--blue {
  opacity: 1;
}
section.services-main a.card--block-link:hover .overlay--blue,
section.services a.card--block-link:hover .overlay--blue {
  opacity: 0;
}
section.services-main a.card--block-link:hover img,
section.services a.card--block-link:hover img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.7;
}
section.services-main .services-info,
section.services .services-info {
  height: 100%;
}
section.services-main .card-serv-desc,
section.services .card-serv-desc {
  display: none;
}
section.services-main .card-services-info,
section.services .card-services-info {
  text-align: center;
  z-index: 1;
  position: relative;
  color: #fff;
}
section.services-main .card-services-info h3,
section.services .card-services-info h3 {
  font-size: 2rem;
  text-transform: uppercase;
}
section.services-main .card--service-blocks,
section.services .card--service-blocks {
  height: 385px;
  position: relative;
  background-color: #fff;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
section.services-main picture,
section.services picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
section.services-main picture img,
section.services picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
}

/* # Tabbed Content */
section.tab-content {
  background-color: #F0F0F0;
}
section.tab-content h2 {
  color: #326C9E;
  text-transform: uppercase;
  text-align: center;
}
section.tab-content .tab-menu {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 0px solid #292929;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  section.tab-content .tab-menu {
    border-bottom: 1px solid #292929;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  section.tab-content .tab-menu {
    border-bottom: 1px solid #292929;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
section.tab-content .tab-menu li {
  text-align: center;
  cursor: pointer;
  padding: 10px;
  border-bottom: 2px solid transparent;
}
@media only screen and (min-width: 992px) {
  section.tab-content .tab-menu li {
    padding: 20px;
  }
}
section.tab-content .tab-menu li p {
  margin-bottom: 0;
  line-height: 1;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
}
section.tab-content .tab-menu li.active {
  border-bottom: 2px solid #326C9E;
}
section.tab-content .tab-menu li.active p {
  color: #326C9E;
}
section.tab-content .tab-content__wrapper {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
section.tab-content .tabbed-info {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  section.tab-content .tabbed-info {
    text-align: left;
  }
}
section.tab-content .tabbed-info h3 {
  color: #E24C35;
  text-transform: uppercase;
  font-size: 2rem;
}
section.tab-content .tabbed-info p {
  font-size: 0.875rem;
}
section.tab-content .tabbed-image picture {
  height: 250px;
  position: relative;
}
section.tab-content .tabbed-image picture img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* # Team Members */
section.team-members {
  position: relative;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/team-bg.webp);
  background-size: cover;
}
section.team-members h2 {
  text-align: center;
  color: #326C9E;
  margin-bottom: 30px;
}
section.team-members .container {
  max-width: 968px;
}

.team-cards {
  height: 320px;
  background-color: #fff;
  position: relative;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  overflow: hidden;
}
.team-cards picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.team-cards picture img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.team-cards .team-cards-info {
  width: 100%;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  background-color: #E24C35;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
  max-height: 0;
  top: 15px;
}
.team-cards .team-cards-info::before {
  height: 30px;
  width: 100%;
  position: absolute;
  top: -29px;
  left: 0;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/shape-red-roof.svg);
  content: "";
  display: block;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.team-cards .team-cards-info h4 {
  margin-bottom: 0;
  line-height: 1;
  font-size: 1.75rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .team-cards .team-cards-info h4 {
    font-size: 2rem;
  }
}
.team-cards .team-cards-info p {
  margin-bottom: 0;
  line-height: 1;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .team-cards .team-cards-info p {
    font-size: 1rem;
  }
}
.team-cards:hover .team-cards-info {
  max-height: 100px;
  top: 0px;
}

/* # Trust Factors */
.trust-factors__slider .tns-item img {
  max-height: 50px;
}

.hero__badges {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) {
  .hero__badges {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

/* # 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: 28px;
}
@media screen and (min-width: 992px) {
  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(even) {
    -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) {
    -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(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
section.two-col h2 {
  text-transform: none;
  color: #326C9E;
}
section.two-col .row--tc {
  overflow: visible;
  padding-bottom: 40px;
}
section.two-col .tc--info {
  padding-top: 30px;
  padding-bottom: 0px;
  text-align: center;
  padding-right: 0;
  padding-left: 0px;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  section.two-col .tc--info {
    padding-top: 50px;
    padding-bottom: 0;
    text-align: left;
    padding-right: 0;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 992px) {
  section.two-col .tc--info {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 50px;
  }
}
section.two-col .tc--image {
  height: 100%;
  position: relative;
  left: -30px;
  width: calc(100% + 60px);
  aspect-ratio: 16/9;
}
@media only screen and (min-width: 992px) {
  section.two-col .tc--image {
    left: unset;
    width: 100%;
    aspect-ratio: unset;
  }
}
section.two-col .tc--image::before {
  content: "";
  width: 0px;
  height: 0px;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/triangle-red-left.svg);
  position: absolute;
  left: -20px;
  bottom: -20px;
}
@media only screen and (min-width: 768px) {
  section.two-col .tc--image::before {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (min-width: 992px) {
  section.two-col .tc--image::before {
    width: 140px;
    height: 140px;
  }
}
section.two-col .tc--image picture {
  height: 100%;
  width: 100%;
  position: relative;
  margin-top: 0px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  section.two-col .tc--image picture {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 992px) {
  section.two-col .tc--image picture {
    margin-top: -40px;
  }
}

.two-col.default .tc--image::before {
  background-image: url(/wp-content/themes/dominion-theme/inc/img/triangle-red-right.svg);
  right: -20px;
  bottom: -20px;
  left: auto;
}
.two-col.default .tc--info {
  height: 100%;
  padding-top: 30px;
  padding-bottom: 0px;
  text-align: center;
  padding-right: 0;
  padding-left: 0px;
}
@media only screen and (min-width: 768px) {
  .two-col.default .tc--info {
    padding-top: 50px;
    padding-bottom: 0;
    text-align: left;
    padding-right: 0;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 992px) {
  .two-col.default .tc--info {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 0;
    padding-right: 50px;
  }
}

.two-col.bg--blue,
.two-col.bg--lt-grey {
  margin-top: 40px;
}

.two-col.bg--blue {
  color: #fff;
}
.two-col.bg--blue h2 {
  color: #fff;
}

.two-col.bg--none .tc--image picture {
  margin-top: 0;
}
.two-col.bg--none .tc--info {
  padding-top: 30px;
  padding-bottom: 0px;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .two-col.bg--none .tc--info {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
.two-col.bg--none .tc--image::before {
  display: none;
}

.two-col.bg--angled .tc--image picture {
  margin-top: 0;
}
.two-col.bg--angled .tc--info {
  padding-top: 75px;
  padding-bottom: 75px;
  height: 100%;
}
.two-col.bg--angled .tc--image::before {
  display: none;
}

/* # Two Column Fullwidth */
section.two-col-full .two-col-full__wrapper {
  position: relative;
  -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 {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
section.two-col-full .two-col-full__wrapper .two-col-full__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@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 .two-col-full__image {
    position: absolute;
    top: 0;
    width: calc(50% - 16px);
    height: 100%;
  }
  section.two-col-full .two-col-full__wrapper .container {
    padding-block: 128px;
  }
  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.default:nth-of-type(odd) .row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  section.two-col-full .two-col-full__wrapper.default:nth-of-type(odd) .two-col-full__image {
    right: 0;
  }
  section.two-col-full .two-col-full__wrapper.default:nth-of-type(even) .row {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  section.two-col-full .two-col-full__wrapper.default:nth-of-type(even) .two-col-full__image {
    left: 0;
  }
  section.two-col-full .two-col-full__wrapper.reversed:nth-of-type(odd) .row {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  section.two-col-full .two-col-full__wrapper.reversed:nth-of-type(odd) .two-col-full__image {
    left: 0;
  }
  section.two-col-full .two-col-full__wrapper.reversed:nth-of-type(even) .row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  section.two-col-full .two-col-full__wrapper.reversed:nth-of-type(even) .two-col-full__image {
    right: 0;
  }
}

/* # Partials
-------------------------------------------------------------- */
/* #FAQs */
section.faq-accordion {
  background-color: #F0F0F0;
}
section.faq-accordion h3 {
  text-transform: uppercase;
  color: #326C9E;
  margin-bottom: 40px;
}
section.faq-accordion h2 {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #A4A4A3;
  font-size: 1rem;
}

.acc-info {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .acc-info {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.acc-info div {
  width: 100%;
}

.faqs__wrapper {
  margin-top: 0px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .faqs__wrapper {
    margin-top: -50px;
  }
}

.accordion {
  margin-bottom: 30px;
}

.accordion__top {
  background-color: #fff;
}
.accordion__top p {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  width: calc(100% - 20px);
}

.accordion.active .plus img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.facetwp-type-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.facetwp-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: 7px;
  padding-bottom: 7px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: transparent;
}
@media only screen and (min-width: 768px) {
  .facetwp-type-radio .facetwp-radio.checked,
  .facetwp-type-radio .facetwp-radio {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.facetwp-type-radio .facetwp-radio.checked {
  background-color: #ebebeb;
}

.facetwp-counter {
  display: none;
}

.facetwp-radio,
.facetwp-display-value {
  white-space: nowrap;
}

.filter-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}
.filter-wrap .facetwp-facet {
  margin-bottom: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filter-wrap p {
  line-height: 1;
  margin-bottom: 0;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  margin-right: 10px;
  white-space: nowrap;
  margin-bottom: 20px;
}
.filter-wrap .facetwp-radio {
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: #326C9E;
  background: var(--white, #FFF);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.15);
  border: 0.5px solid #A4A4A3;
  background: #F0F0F0;
}
.filter-wrap .facetwp-radio.checked {
  background-color: #326C9E;
  color: #fff;
  border: 0.5px solid #326C9E;
}

.faqs-list .accordion {
  max-width: 760px;
  background-color: #fff;
}
.faqs-list .accordion__btm {
  display: block;
}

/* # Recent Articles */
.rec-art__author-photo {
  width: 150px;
  height: 150px;
}

section.recent-articles {
  background-color: #326C9E;
  color: #fff;
  position: relative;
}
section.recent-articles::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  content: "";
  background-color: #fff;
}

.rec-art-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}
.rec-art-date img {
  width: 19px;
  margin-right: 10px;
}

.rec-art__item {
  height: 450px;
  background-color: #fff;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .rec-art__item {
    margin-bottom: 0px;
  }
}
.rec-art__item a {
  text-decoration: none;
  height: 100%;
  color: #fff;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.rec-art__item .rec-art-info {
  position: relative;
}
.rec-art__item h4 {
  text-transform: uppercase;
  font-size: 2rem;
}
.rec-art__item button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.rec-art__item picture {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.rec-art__item picture img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.rec-art__item:hover picture .overlay--black-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(50, 108, 158, 0)), to(rgba(50, 108, 158, 0.75)));
  background: linear-gradient(180deg, rgba(50, 108, 158, 0) 0%, rgba(50, 108, 158, 0.75) 100%);
}

/* # CTA Banner */
.cta-info {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cta-info {
    text-align: left;
  }
}
.cta-info h2 {
  font-size: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .cta-info h2 {
    font-size: 3.375rem;
  }
}
@media only screen and (min-width: 992px) {
  .cta-info h2 {
    font-size: 3.5rem;
  }
}

.cta-banner {
  color: #fff;
}

.process-clip-shadow {
  -webkit-filter: drop-shadow(0px -5px 3px rgba(0, 0, 0, 0.15));
  filter: drop-shadow(0px -5px 3px rgba(0, 0, 0, 0.15));
  top: -70px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}

.process-clip {
  -webkit-clip-path: polygon(50% 0, 180% 10%, 100% 100%, 0 100%, -90% 10%);
  clip-path: polygon(50% 0, 180% 10%, 100% 100%, 0 100%, -90% 10%);
  background-color: #fff;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .process-clip {
    -webkit-clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
    clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
  }
}
section.process {
  text-align: center;
  position: relative;
}
section.process .container {
  max-width: 1000px;
}
section.process h2 {
  color: #326C9E;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  section.process h2 {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) {
  section.process h2 {
    margin-bottom: 70px;
  }
}

.col-process-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.col-process-wrapper::before {
  position: absolute;
  display: none;
  height: 10px;
  width: 80%;
  top: 55px;
  left: 10%;
  content: "";
  background-color: rgba(225, 225, 224, 0.4);
}
@media only screen and (min-width: 768px) {
  .col-process-wrapper::before {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .col-process-wrapper::before {
    display: none;
  }
}

.process-steps-arrows {
  height: 20px;
  width: calc(100% - 230px);
  position: relative;
  margin: auto;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  left: 12%;
  top: 50px;
}
@media only screen and (min-width: 768px) {
  .process-steps-arrows {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .process-steps-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.process-steps-arrows::before {
  position: absolute;
  display: none;
  height: 10px;
  width: 100%;
  top: 5px;
  left: 0;
  content: "";
  background-color: rgba(225, 225, 224, 0.4);
}
@media only screen and (min-width: 768px) {
  .process-steps-arrows::before {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .process-steps-arrows::before {
    display: block;
  }
}
.process-steps-arrows img {
  height: 20px;
}

.col-process {
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .col-process {
    width: 50%;
  }
}
@media only screen and (min-width: 992px) {
  .col-process {
    width: 25%;
  }
}
.col-process .process--icon {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background-color: #F0F0F0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .col-process .process--icon {
    margin-bottom: 30px;
  }
}
.col-process .process--icon img {
  max-width: 60px;
  max-height: 60px;
}
.col-process .process--info {
  max-width: 214px;
  margin-left: auto;
  margin-right: auto;
}
.col-process .process--info p.steps {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #C2C2C2;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .col-process .process--info p.steps {
    margin-bottom: 16px;
  }
}
.col-process .process--info h4 {
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .col-process .process--info h4 {
    margin-bottom: 16px;
  }
}
.col-process .process--info p {
  font-family: "Roboto-Light", Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
}

section.core-values {
  background-color: #E24C35;
  padding: 20px 0;
}

.core-values-single {
  padding: 0 20px;
}
.core-values-single div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.core-values-single img {
  width: 18px;
  margin-right: 20px;
}
.core-values-single p {
  color: #fff;
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

section.company-promise {
  position: relative;
  background-size: cover;
}
section.company-promise picture.section-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.4;
}
@media only screen and (min-width: 992px) {
  section.company-promise picture.section-bg {
    opacity: 1;
  }
}
section.company-promise picture.section-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
section.company-promise .container {
  max-width: 560px;
  text-align: center;
  position: relative;
}
section.company-promise .container h2 {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  color: #c2c2c2;
  font-size: 1rem;
}
section.company-promise .container h3 {
  color: #326C9E;
  text-transform: uppercase;
}
section.company-promise .container p.name {
  text-transform: uppercase;
  font-size: 1.375rem;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  margin-bottom: 30px;
  display: block;
}
section.company-promise .container img.sig {
  position: absolute;
  width: 300px;
  right: -200px;
  bottom: 0;
}
section.company-promise .cp-slider-wrapper {
  position: relative;
}
section.company-promise .cp__slider {
  padding-top: 50px;
  margin-bottom: 30px;
}
section.company-promise .container-cp-controls {
  max-width: 1260px !important;
  top: 0px;
}
@media only screen and (min-width: 768px) {
  section.company-promise .container-cp-controls {
    top: 0px;
  }
}
@media only screen and (min-width: 992px) {
  section.company-promise .container-cp-controls {
    top: -200px;
  }
}
section.company-promise .cp-slider-controls {
  position: relative;
  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;
}
@media only screen and (min-width: 768px) {
  section.company-promise .cp-slider-controls {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  section.company-promise .cp-slider-controls {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
section.company-promise .cp-slider-controls img {
  width: 60px;
  cursor: pointer;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (min-width: 992px) {
  section.company-promise .cp-slider-controls img {
    margin-left: 0;
    margin-right: 0;
  }
}

/* # Post Templates
-------------------------------------------------------------- */
/* # Blog + Archives */
/* # Single Blog Post */
.hero--blog {
  height: 600px;
  position: relative;
}

.blog-main {
  margin-top: -400px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .blog-main {
    padding: 50px;
    margin-top: -400px;
    margin-bottom: 128px;
  }
}
@media only screen and (min-width: 992px) {
  .blog-main {
    padding: 80px;
    margin-top: -300px;
  }
}
.blog-main h1 {
  text-transform: uppercase;
  text-align: center;
  color: #326C9E;
}
.blog-main h2 {
  text-transform: uppercase;
  color: #E24C35;
}
.blog-main a {
  color: #326C9E;
  text-decoration: underline;
  font-weight: 800;
}
.blog-main h3 {
  text-transform: uppercase;
  color: #858585;
}
.blog-main h4 {
  text-transform: uppercase;
  color: #E24C35;
}
.blog-main .wp-block-image figcaption {
  text-align: right;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.125rem;
  color: #858585;
}
.blog-main .entry-meta {
  text-align: center;
}
.blog-main .entry-meta p {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #858585;
}
.blog-main ul {
  list-style-image: url(/wp-content/themes/dominion-theme/inc/img/bullet-blue.svg);
  padding-left: 20px;
}
.blog-main ul li {
  margin-top: -10px;
  font-size: 0.875rem;
}
.blog-main ul li::marker {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .blog-main ul li {
    font-size: 1rem;
  }
}
.blog-main ul li a {
  font-size: 0.875rem;
  color: #326C9E;
}
@media only screen and (min-width: 768px) {
  .blog-main ul li a {
    font-size: 1rem;
  }
}

/* # Projects Post */
.projects-card--single {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.projects-card--single a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}
.projects-card--single div.plus {
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid #fff;
}
.projects-card--single picture {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
}
.projects-card--single picture img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
}

.filtered-cpt .accordion__top .plus {
  display: none;
}

.filtered-cpt-projects {
  padding-bottom: 50px;
  padding-top: 50px;
}

.mfp-bg {
  z-index: 10042;
}

.mfp-wrap {
  z-index: 10043;
}

/* # Careers Post */
section.career {
  position: relative;
  background-image: url(/wp-content/themes/dominion-theme/inc/img/team-bg.webp);
  background-size: cover;
}
section.career h2 {
  color: #326C9E;
  text-align: center;
  margin-bottom: 30px;
}
section.career a, section.career a:hover {
  display: block;
  text-transform: none;
  color: #fff;
  text-decoration: none;
}
section.career .career-single {
  height: auto;
  padding: 30px;
  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;
  position: relative;
  background-color: #fff;
}
@media only screen and (min-width: 768px) {
  section.career .career-single {
    height: 150px;
  }
}
section.career .career-single h4 {
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1;
  font-size: 1.5625rem;
}
@media only screen and (min-width: 768px) {
  section.career .career-single h4 {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 992px) {
  section.career .career-single h4 {
    font-size: 2rem;
  }
}
section.career .career-single div {
  width: 100%;
}
section.career .career-single button {
  background-color: transparent;
}
section.career picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.career picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
}

#mobile-navigation {
  z-index: 9998;
  width: 100%;
  background-color: #fff;
  padding-left: 30px;
  top: unset;
  bottom: 0;
  height: calc(100% - 120px);
  overflow-x: scroll;
}
@media only screen and (min-width: 768px) {
  #mobile-navigation {
    width: 80%;
  }
}
@media only screen and (min-width: 992px) {
  #mobile-navigation {
    width: 80%;
  }
}
#mobile-navigation .menu-panel {
  padding-top: 30px;
  height: auto;
}
#mobile-navigation a {
  color: #326C9E;
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.375rem;
  text-decoration: none;
}
#mobile-navigation ul li {
  padding: 0;
}
#mobile-navigation ul li a {
  margin-bottom: 0;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
  display: inline-block;
}
#mobile-navigation ul li ul li a {
  text-transform: none;
  font-size: 1.125rem;
  color: #C2C2C2;
}

.site-header__inner__nav {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .site-header__inner__nav {
    display: block !important;
  }
}
.site-header__inner {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
@media only screen and (min-width: 768px) {
  .site-header__inner {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
}
#menu-mobile-menu .menu-item-has-children > a::after {
  background-image: url(../img/chevron-red-down.svg);
  margin-left: 5px;
  width: 15px;
}

.mobile-social {
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.mobile-social a {
  display: block;
  margin-right: 10px;
}
.mobile-social img {
  width: 35px;
}

/* Footer */
#mobile-handler button {
  margin-right: 20px;
}
#mobile-handler button span {
  font-family: "BankGothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}
#mobile-handler a {
  width: 100%;
  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;
  text-decoration: none;
  margin-right: 0 !important;
}
#mobile-handler a::before {
  top: 24px;
}

#mobile-call {
  height: auto;
}

#colophon {
  min-height: 300px;
  position: relative;
  margin-top: -70px;
  color: #fff;
}
#colophon a {
  color: #fff;
}

.footer-shape {
  -webkit-clip-path: polygon(50% 0, 180% 10%, 100% 100%, 0 100%, -90% 10%);
  clip-path: polygon(50% 0, 180% 10%, 100% 100%, 0 100%, -90% 10%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .footer-shape {
    -webkit-clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
    clip-path: polygon(50% 0, 100% 10%, 100% 100%, 0 100%, 0 10%);
  }
}
.footer-shape picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.footer-shape picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-contact-info {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .footer-contact-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer-contact-info::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #326C9E;
  mix-blend-mode: multiply;
  content: "";
  display: block;
  opacity: 0.6;
}

a.footer-contact-link {
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
a.footer-contact-link img {
  height: 20px;
  display: inline-block;
  margin-right: 5px;
}

.footer-copyright {
  z-index: 1;
  position: relative;
  padding-top: 20px;
  padding-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .footer-copyright {
    padding-bottom: 20px;
  }
}
.footer-copyright a, .footer-copyright p {
  margin-bottom: 0;
}

.footer-logo img {
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 225px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer-social img {
  width: 30px;
}

ul.footer-nav {
  padding-bottom: 60px;
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  ul.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
ul.footer-nav li {
  padding: 0 20px;
}
ul.footer-nav li a {
  font-family: "Mudhead-Bold", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 1.375rem;
  display: block;
  margin-bottom: 20px;
  text-decoration: none;
}
ul.footer-nav li ul {
  padding: 0;
  margin: 0;
}
ul.footer-nav li ul li {
  padding: 0 0px;
}
ul.footer-nav li ul li a {
  font-family: unset;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 15px;
}

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

.recent-articles-404,
.services-404 {
  padding-top: 50px;
  padding-bottom: 100px;
}

p.hook-brand-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
p.hook-brand-link img {
  height: 20px;
  margin-left: 6px;
}/*# sourceMappingURL=main.css.map */