/* --------------------------------------------------------------
 >> 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;
  }
}
/* --------------------------------------------------------------
 >> THEME FUNCTIONS
 Dependencies: none
-------------------------------------------------------------- */
/* --------------------------------------------------------------
 >> THEME VARIABLES
 Dependencies: _functions.scss
-------------------------------------------------------------- */
/* Font */
@font-face {
  font-display: swap;
  font-family: "Gantari";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/gantari/gantari-v4-latin-regular.woff2") format("woff2"), url("../fonts/gantari/gantari-v4-latin-regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Gantari";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/gantari/gantari-v4-latin-500.woff2") format("woff2"), url("../fonts/gantari/gantari-v4-latin-500.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Gantari";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/gantari/gantari-v4-latin-600.woff2") format("woff2"), url("../fonts/gantari/gantari-v4-latin-600.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Gantari";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/gantari/gantari-v4-latin-700.woff2") format("woff2"), url("../fonts/gantari/gantari-v4-latin-700.ttf") format("truetype");
}
/* 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: #00487c;
}

.c-2 {
  color: #f15d23;
}

.c-3 {
  color: #00acbd;
}

.c-ui {
  color: #f3f7fa;
}

.c-wt {
  color: #fff;
}

.c-blk {
  color: #000;
}

.dg {
  color: #666;
}

.c-wt :is(p,
a:not(.btn),
p:not(.btn),
span:not(.btn),
h1,
.lvl-1,
h2,
.lvl-2,
h3,
.lvl-3,
h4,
.lvl-4,
h5,
.lvl-5,
h6,
.lvl-6,
h2.gform_submission_error,
.gfield_validation_message,
.gform-field-label,
.gfield_description) {
  color: #fff;
}

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

.fs-8 {
  font-size: 0.5rem !important;
}

.fs-12 {
  font-size: 0.6875rem;
}
@media screen and (min-width: 1200px) {
  .fs-12 {
    font-size: 0.75rem;
  }
}

.fs-16 {
  font-size: 1rem !important;
}

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

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

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

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

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

.bg-c-3 {
  background-color: #00acbd;
}

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

.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;
  }
}
/* # Gap
-------------------------------------------------------------- */
.gap-64 {
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .gap-64 {
    gap: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .gap-64 {
    gap: 64px;
  }
}

.gap-48 {
  gap: 36px;
}
@media only screen and (min-width: 992px) {
  .gap-48 {
    gap: 48px;
  }
}

.gap-36 {
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .gap-36 {
    gap: 36px;
  }
}

.gap-30 {
  gap: 30px;
}

.gap-24 {
  gap: 24px;
}

.gap-16 {
  gap: 16px;
}

.gap-8 {
  gap: 8px;
}

.gap-5 {
  gap: 5px;
}

.row-gap-64 {
  row-gap: 40px;
}
@media only screen and (min-width: 768px) {
  .row-gap-64 {
    row-gap: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .row-gap-64 {
    row-gap: 64px;
  }
}

.row-gap-48 {
  row-gap: 32px;
}
@media only screen and (min-width: 992px) {
  .row-gap-48 {
    row-gap: 48px;
  }
}

.row-gap-36 {
  row-gap: 25px;
}
@media only screen and (min-width: 992px) {
  .row-gap-36 {
    row-gap: 36px;
  }
}

.row-gap-30 {
  row-gap: 20px;
}
@media only screen and (min-width: 992px) {
  .row-gap-30 {
    row-gap: 30px;
  }
}

.row-gap-24 {
  row-gap: 24px;
}

.row-gap-16 {
  row-gap: 16px;
}

.row-gap-8 {
  row-gap: 8px;
}

.col-gap-64 {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (min-width: 768px) {
  .col-gap-64 {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .col-gap-64 {
    -webkit-column-gap: 64px;
       -moz-column-gap: 64px;
            column-gap: 64px;
  }
}

.col-gap-48 {
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media only screen and (min-width: 992px) {
  .col-gap-48 {
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
  }
}

.col-gap-36 {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
@media only screen and (min-width: 992px) {
  .col-gap-36 {
    row-gap: 36px;
  }
}

.col-gap-30 {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.col-gap-24 {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.col-gap-16 {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.col-gap-8 {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

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

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.pos-fix {
  position: fixed;
}

.pos-stk {
  position: sticky;
}

.pos-stc {
  position: static;
}

.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--1 {
  z-index: -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (min-width: 992px) {
  .my-xxl {
    margin-block: 192px;
  }
  .my-xl {
    margin-block: 128px;
  }
  .my-lg {
    margin-block: 96px;
  }
  .my-def {
    margin-block: 64px;
  }
  .my-md {
    margin-block: 48px;
  }
  .my-sm {
    margin-block: 38px;
  }
  .my-xs {
    margin-block: 24px;
  }
  .my-xxs {
    margin-block: 16px;
  }
  .mt-xxl {
    -webkit-margin-before: 192px;
            margin-block-start: 192px;
  }
  .mt-xl {
    -webkit-margin-before: 128px;
            margin-block-start: 128px;
  }
  .mt-lg {
    -webkit-margin-before: 96px;
            margin-block-start: 96px;
  }
  .mt-def {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
  }
  .mt-md {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
  }
  .mt-sm {
    -webkit-margin-before: 38px;
            margin-block-start: 38px;
  }
  .mt-xs {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
  .mt-xxs {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
  .mb-xxl {
    -webkit-margin-after: 192px;
            margin-block-end: 192px;
  }
  .mb-xl {
    -webkit-margin-after: 128px;
            margin-block-end: 128px;
  }
  .mb-lg {
    -webkit-margin-after: 96px;
            margin-block-end: 96px;
  }
  .mb-def {
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
  }
  .mb-md {
    -webkit-margin-after: 48px;
            margin-block-end: 48px;
  }
  .mb-sm {
    -webkit-margin-after: 38px;
            margin-block-end: 38px;
  }
  .mb-xs {
    -webkit-margin-after: 24px;
            margin-block-end: 24px;
  }
  .mb-xxs {
    -webkit-margin-after: 16px;
            margin-block-end: 16px;
  }
  .mx-xxl {
    margin-inline: 192px;
  }
  .mx-xl {
    margin-inline: 128px;
  }
  .mx-lg {
    margin-inline: 96px;
  }
  .mx-def {
    margin-inline: 64px;
  }
  .mx-md {
    margin-inline: 48px;
  }
  .mx-sm {
    margin-inline: 38px;
  }
  .mx-xs {
    margin-inline: 24px;
  }
  .mx-xxs {
    margin-inline: 16px;
  }
  .ms-xxl {
    -webkit-margin-start: 192px;
            margin-inline-start: 192px;
  }
  .ms-xl {
    -webkit-margin-start: 128px;
            margin-inline-start: 128px;
  }
  .ms-lg {
    -webkit-margin-start: 96px;
            margin-inline-start: 96px;
  }
  .ms-def {
    -webkit-margin-start: 64px;
            margin-inline-start: 64px;
  }
  .ms-md {
    -webkit-margin-start: 48px;
            margin-inline-start: 48px;
  }
  .ms-sm {
    -webkit-margin-start: 38px;
            margin-inline-start: 38px;
  }
  .ms-xs {
    -webkit-margin-start: 24px;
            margin-inline-start: 24px;
  }
  .ms-xxs {
    -webkit-margin-start: 16px;
            margin-inline-start: 16px;
  }
  .me-xxl {
    -webkit-margin-end: 192px;
            margin-inline-end: 192px;
  }
  .me-xl {
    -webkit-margin-end: 128px;
            margin-inline-end: 128px;
  }
  .me-lg {
    -webkit-margin-end: 96px;
            margin-inline-end: 96px;
  }
  .me-def {
    -webkit-margin-end: 64px;
            margin-inline-end: 64px;
  }
  .me-md {
    -webkit-margin-end: 48px;
            margin-inline-end: 48px;
  }
  .me-sm {
    -webkit-margin-end: 38px;
            margin-inline-end: 38px;
  }
  .me-xs {
    -webkit-margin-end: 24px;
            margin-inline-end: 24px;
  }
  .me-xxs {
    -webkit-margin-end: 16px;
            margin-inline-end: 16px;
  }
  .py-xxl {
    padding-block: 192px;
  }
  .py-xl {
    padding-block: 128px;
  }
  .py-lg {
    padding-block: 96px;
  }
  .py-def {
    padding-block: 64px;
  }
  .py-md {
    padding-block: 48px;
  }
  .py-sm {
    padding-block: 38px;
  }
  .py-xs {
    padding-block: 24px;
  }
  .py-xxs {
    padding-block: 16px;
  }
  .pt-xxl {
    -webkit-padding-before: 192px;
            padding-block-start: 192px;
  }
  .pt-xl {
    -webkit-padding-before: 128px;
            padding-block-start: 128px;
  }
  .pt-lg {
    -webkit-padding-before: 96px;
            padding-block-start: 96px;
  }
  .pt-def {
    -webkit-padding-before: 64px;
            padding-block-start: 64px;
  }
  .pt-md {
    -webkit-padding-before: 48px;
            padding-block-start: 48px;
  }
  .pt-sm {
    -webkit-padding-before: 38px;
            padding-block-start: 38px;
  }
  .pt-xs {
    -webkit-padding-before: 24px;
            padding-block-start: 24px;
  }
  .pt-xxs {
    -webkit-padding-before: 16px;
            padding-block-start: 16px;
  }
  .pb-xxl {
    -webkit-padding-after: 192px;
            padding-block-end: 192px;
  }
  .pb-xl {
    -webkit-padding-after: 128px;
            padding-block-end: 128px;
  }
  .pb-lg {
    -webkit-padding-after: 96px;
            padding-block-end: 96px;
  }
  .pb-def {
    -webkit-padding-after: 64px;
            padding-block-end: 64px;
  }
  .pb-md {
    -webkit-padding-after: 48px;
            padding-block-end: 48px;
  }
  .pb-sm {
    -webkit-padding-after: 38px;
            padding-block-end: 38px;
  }
  .pb-xs {
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
  .pb-xxs {
    -webkit-padding-after: 16px;
            padding-block-end: 16px;
  }
  .px-xxl {
    padding-inline: 192px;
  }
  .px-xl {
    padding-inline: 128px;
  }
  .px-lg {
    padding-inline: 96px;
  }
  .px-def {
    padding-inline: 64px;
  }
  .px-md {
    padding-inline: 48px;
  }
  .px-sm {
    padding-inline: 38px;
  }
  .px-xs {
    padding-inline: 24px;
  }
  .px-xxs {
    padding-inline: 16px;
  }
  .ps-xxl {
    -webkit-padding-start: 192px;
            padding-inline-start: 192px;
  }
  .ps-xl {
    -webkit-padding-start: 128px;
            padding-inline-start: 128px;
  }
  .ps-lg {
    -webkit-padding-start: 96px;
            padding-inline-start: 96px;
  }
  .ps-def {
    -webkit-padding-start: 64px;
            padding-inline-start: 64px;
  }
  .ps-md {
    -webkit-padding-start: 48px;
            padding-inline-start: 48px;
  }
  .ps-sm {
    -webkit-padding-start: 38px;
            padding-inline-start: 38px;
  }
  .ps-xs {
    -webkit-padding-start: 24px;
            padding-inline-start: 24px;
  }
  .ps-xxs {
    -webkit-padding-start: 16px;
            padding-inline-start: 16px;
  }
  .pe-xxl {
    -webkit-padding-end: 192px;
            padding-inline-end: 192px;
  }
  .pe-xl {
    -webkit-padding-end: 128px;
            padding-inline-end: 128px;
  }
  .pe-lg {
    -webkit-padding-end: 96px;
            padding-inline-end: 96px;
  }
  .pe-def {
    -webkit-padding-end: 64px;
            padding-inline-end: 64px;
  }
  .pe-md {
    -webkit-padding-end: 48px;
            padding-inline-end: 48px;
  }
  .pe-sm {
    -webkit-padding-end: 38px;
            padding-inline-end: 38px;
  }
  .pe-xs {
    -webkit-padding-end: 24px;
            padding-inline-end: 24px;
  }
  .pe-xxs {
    -webkit-padding-end: 16px;
            padding-inline-end: 16px;
  }
}
@media all and (max-width: 1199px) {
  .pt-xxl {
    padding-top: 128px;
  }
  .pb-xxl {
    padding-bottom: 128px;
  }
  .py-xxl {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .mt-xxl {
    margin-top: 128px;
  }
  .mb-xxl {
    margin-bottom: 128px;
  }
  .my-xxl {
    margin-top: 128px;
    margin-bottom: 128px;
  }
}
@media all and (max-width: 991px) {
  .pt-xxl {
    padding-top: 85px;
  }
  .pb-xxl {
    padding-bottom: 85px;
  }
  .py-xxl {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .mt-xxl {
    margin-top: 85px;
  }
  .mb-xxl {
    margin-bottom: 85px;
  }
  .my-xxl {
    margin-top: 85px;
    margin-bottom: 85px;
  }
  .pt-xl,
  .pt-lg {
    padding-top: 60px;
  }
  .pt-def {
    padding-top: 50px;
  }
  .pb-xl,
  .pb-lg {
    padding-bottom: 60px;
  }
  .pb-def {
    padding-bottom: 50px;
  }
  .py-xl,
  .py-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .py-def {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .mt-xl {
    margin-top: 60px;
  }
  .mb-xl {
    margin-bottom: 60px;
  }
  .my-xl {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .mx-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mx-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .mx-px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .m-width-550 {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  .pt-xxl,
  .pt-xl,
  .pt-lg {
    padding-top: 50px;
  }
  .pt-def {
    padding-top: 40px;
  }
  .pb-xxl,
  .pb-xl,
  .pb-lg {
    padding-bottom: 50px;
  }
  .pb-def {
    padding-bottom: 40px;
  }
  .py-xxl,
  .py-xl,
  .py-lg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .py-def {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mt-xxl,
  .mt-xl {
    margin-top: 50px;
  }
  .mb-xxl,
  .mb-xl {
    margin-bottom: 50px;
  }
  .my-xxl,
  .my-xl {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .mob-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mob-px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .mob-mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .m-w-550 {
    max-width: 550px;
    margin: 0 auto;
  }
}
/* 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
 # Hero
 # Links
 # Components
 	# Mobile Nav
	# Header
	# Footer
  # Hero Components
	# Forms
	# Facet
  # Global Components
  # Cards
  # Page Options
  # PB Layouts
  # Misc

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

#page {
  overflow-x: hidden;
}

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

html,
body {
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  font-family: "Gantari";
  -webkit-tap-highlight-color: transparent;
  font-weight: 400;
}
@media only screen and (min-width: 992px) {
  body {
    font-size: 1.125rem;
  }
}

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

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

section,
.container,
.container-fluid {
  z-index: 10;
}
section .row,
.container .row,
.container-fluid .row {
  margin-left: -15px;
  margin-right: -15px;
}
section .row > div,
.container .row > div,
.container-fluid .row > div {
  padding-left: 15px;
  padding-right: 15px;
}

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

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

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

iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}
input:is(:hover, :focus, :focus-visible, :focus-within),
button:is(:hover, :focus, :focus-visible, :focus-within),
textarea:is(:hover, :focus, :focus-visible, :focus-within),
select:is(:hover, :focus, :focus-visible, :focus-within) {
  border: none;
  outline: none;
}

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);
  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;
  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: "Gantari";
  font-weight: 700;
  line-height: 1;
}

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

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

h3,
.lvl-3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4,
.lvl-4 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.23;
}

h5,
.lvl-5 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

p {
  line-height: 1.3;
  -webkit-margin-after: 16px;
          margin-block-end: 16px;
}
p:last-of-type {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

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

.micro {
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: capitalize;
  font-weight: 600;
  color: #00487c;
}
@media all and (min-width: 992px) {
  .micro {
    font-size: 1.5rem;
  }
}
.micro.blk {
  color: #000 !important;
}
.micro.wt {
  color: #fff !important;
}
.micro.dg {
  color: #666 !important;
}

.jumbo {
  font-size: 44px;
}

.tiny {
  font-size: 0.75rem;
}

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

header nav ul li > ul.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: auto;
  min-width: 12rem;
  padding: 0;
  margin: 0;
  background-color: #fff;
  z-index: inherit;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}
header nav ul li > ul.sub-menu li {
  display: block;
  margin: 0;
  padding: 16px;
}
header nav ul li:hover > ul.sub-menu {
  display: block;
}

/* # Hero
--------------------------------------------------------------*/
.site-main {
  margin-top: 100px;
}
@media only screen and (min-width: 992px) {
  .site-main {
    margin-top: 181px;
  }
}

.hero--main .hero-inner-wrapper {
  background: #00487c;
}
@media only screen and (min-width: 768px) {
  .hero--main .hero-inner-wrapper {
    background: inherit;
  }
}
@media only screen and (min-width: 992px) {
  .hero--main .hero-inner-wrapper {
    margin-bottom: 50px;
  }
}
.hero--main .hero-inner-wrapper video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.hero--main .hero-inner-wrapper .overlay {
  position: static;
  height: 100%;
}
.hero--main .hero-inner-wrapper .overlay::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 49, 85, 0.25)), to(#003155));
  background: linear-gradient(180deg, rgba(0, 49, 85, 0.25) 0%, #003155 100%);
}
.hero--main .hero-inner-wrapper .image-shape:before {
  background: linear-gradient(300deg, #f15d23 0%, rgba(241, 93, 35, 0) 100%);
}
.hero--main .hero-inner-wrapper .image-shape:after {
  background: linear-gradient(300deg, #f15d23 0%, rgba(241, 93, 35, 0.5) 100%);
}
.hero--main .hero-inner-wrapper .image-shape picture::after,
.hero--main .hero-inner-wrapper .image-shape .video::after {
  background: url(../img/shade-img-red.svg) no-repeat;
}
.hero--main .hero-inner-wrapper .hero-banner-image.bg--image-abs {
  position: relative;
  min-height: 230px;
  width: calc(100% - 15px);
}
@media only screen and (min-width: 380px) {
  .hero--main .hero-inner-wrapper .hero-banner-image.bg--image-abs {
    min-height: 415px;
  }
}
@media only screen and (min-width: 768px) {
  .hero--main .hero-inner-wrapper .hero-banner-image.bg--image-abs {
    position: absolute;
    min-height: inherit;
    width: 100%;
  }
}
.hero--main .hero-inner-wrapper .hero-content {
  padding: 50px 0 50px;
}
@media only screen and (min-width: 768px) {
  .hero--main .hero-inner-wrapper .hero-content {
    padding: 195px 0 195px;
  }
}
.hero--main .hero-inner-wrapper .hero-content .hero-header .jumbo {
  font-size: clamp(2.6875rem, 1.1188rem + 6.4356vw, 6.75rem);
  text-wrap: balance;
}
.hero--main .hero-inner-wrapper .contact-info-wrap .contact-info-item {
  margin-bottom: -50px;
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper, .hero--ppc .hero-main-wrapper {
    padding: 40px 0;
  }
}
.hero--secondary .hero-main-wrapper:before, .hero--ppc .hero-main-wrapper:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper:before, .hero--ppc .hero-main-wrapper:before {
    height: calc(100% - 30px);
  }
}
.hero--secondary .hero-main-wrapper .container, .hero--ppc .hero-main-wrapper .container {
  position: static;
}
.hero--secondary .hero-main-wrapper .hero-content, .hero--ppc .hero-main-wrapper .hero-content {
  padding: 50px 0 50px;
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper .hero-content, .hero--ppc .hero-main-wrapper .hero-content {
    padding: 64px 0;
  }
}
.hero--secondary .hero-main-wrapper .hero-content .review-wrapper, .hero--ppc .hero-main-wrapper .hero-content .review-wrapper {
  max-width: 530px;
}
.hero--secondary .hero-main-wrapper .secodary-hero-img, .hero--ppc .hero-main-wrapper .secodary-hero-img {
  width: 100%;
  left: inherit;
  right: 0;
  position: relative;
  min-height: 350px;
}
@media only screen and (min-width: 768px) {
  .hero--secondary .hero-main-wrapper .secodary-hero-img, .hero--ppc .hero-main-wrapper .secodary-hero-img {
    min-height: 415px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper .secodary-hero-img, .hero--ppc .hero-main-wrapper .secodary-hero-img {
    position: absolute;
    width: 50%;
    min-height: inherit;
  }
}
.hero--secondary .hero-main-wrapper .hero-form-column, .hero--ppc .hero-main-wrapper .hero-form-column {
  margin-left: auto;
  z-index: 3;
  max-width: 550px;
  margin-top: -100px;
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper .hero-form-column, .hero--ppc .hero-main-wrapper .hero-form-column {
    max-width: 400px;
    margin-top: inherit;
  }
}
.hero--secondary .hero-main-wrapper .image-shape:before, .hero--ppc .hero-main-wrapper .image-shape:before {
  height: 55px;
}
@media only screen and (min-width: 768px) {
  .hero--secondary .hero-main-wrapper .image-shape:before, .hero--ppc .hero-main-wrapper .image-shape:before {
    height: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper .image-shape:before, .hero--ppc .hero-main-wrapper .image-shape:before {
    height: 90px;
  }
}
.hero--secondary .hero-main-wrapper .image-shape::after, .hero--ppc .hero-main-wrapper .image-shape::after {
  height: calc(100% - 55px);
  width: 55px;
}
@media only screen and (min-width: 768px) {
  .hero--secondary .hero-main-wrapper .image-shape::after, .hero--ppc .hero-main-wrapper .image-shape::after {
    height: calc(100% - 80px);
    width: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper .image-shape::after, .hero--ppc .hero-main-wrapper .image-shape::after {
    height: calc(100% - 90px);
    width: 90px;
  }
}
.hero--secondary .hero-main-wrapper .image-shape picture::after, .hero--ppc .hero-main-wrapper .image-shape picture::after {
  height: 55px;
  width: 55px;
  background-size: 100%;
  top: calc(100% - 110px);
}
@media only screen and (min-width: 768px) {
  .hero--secondary .hero-main-wrapper .image-shape picture::after, .hero--ppc .hero-main-wrapper .image-shape picture::after {
    height: 80px;
    width: 80px;
    background-size: 100%;
    top: calc(100% - 160px);
  }
}
@media only screen and (min-width: 992px) {
  .hero--secondary .hero-main-wrapper .image-shape picture::after, .hero--ppc .hero-main-wrapper .image-shape picture::after {
    height: 90px;
    width: 90px;
    background-size: 100%;
    top: calc(100% - 180px);
  }
}
.hero--secondary.bg-light .hero-main-wrapper::before, .hero--ppc.bg-light .hero-main-wrapper::before {
  background: #f3f7fa;
}
.hero--secondary.bg-light .hero-main-wrapper .image-shape:before, .hero--ppc.bg-light .hero-main-wrapper .image-shape:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.05%, #f15d23), color-stop(89.56%, rgba(241, 93, 35, 0.62)));
  background: linear-gradient(90deg, #f15d23 -0.05%, rgba(241, 93, 35, 0.62) 89.56%);
}
.hero--secondary.bg-light .hero-main-wrapper .image-shape::after, .hero--ppc.bg-light .hero-main-wrapper .image-shape::after {
  background: linear-gradient(334deg, #f15d23 -0.05%, rgba(241, 93, 35, 0) 89.56%);
}
.hero--secondary.bg-light .hero-main-wrapper .image-shape picture::after, .hero--ppc.bg-light .hero-main-wrapper .image-shape picture::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background: url(../img/shade-img-red.svg) no-repeat;
}
.hero--secondary.bg-dark .hero-main-wrapper::before, .hero--ppc.bg-dark .hero-main-wrapper::before {
  background: #00487c;
}
.hero--secondary.bg-dark .hero-main-wrapper .hero-content .review-wrapper, .hero--ppc.bg-dark .hero-main-wrapper .hero-content .review-wrapper {
  background: #003f6d;
}
.hero--secondary.bg-dark .hero-main-wrapper .image-shape:before, .hero--ppc.bg-dark .hero-main-wrapper .image-shape:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.01%, rgba(0, 172, 189, 0.85)), color-stop(80%, rgba(0, 172, 189, 0)));
  background: linear-gradient(90deg, rgba(0, 172, 189, 0.85) 0.01%, rgba(0, 172, 189, 0) 80%);
}
.hero--secondary.bg-dark .hero-main-wrapper .image-shape::after, .hero--ppc.bg-dark .hero-main-wrapper .image-shape::after {
  background: linear-gradient(304deg, rgba(0, 172, 189, 0.85) 0.01%, rgba(0, 172, 189, 0) 80%);
}
.hero--secondary.bg-dark .hero-main-wrapper .image-shape picture::after, .hero--ppc.bg-dark .hero-main-wrapper .image-shape picture::after {
  background: url(../img/shade-img-blue.svg) no-repeat;
}
.hero--secondary.bg-dark .hero-main-wrapper .highlights .highlights__item img, .hero--ppc.bg-dark .hero-main-wrapper .highlights .highlights__item img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.hero--basic.with-pattern .image-shape {
  overflow: hidden;
}
.hero--basic.with-pattern .image-shape::before {
  background: linear-gradient(281deg, rgba(0, 172, 189, 0.85) 0%, rgba(0, 172, 189, 0) 72.7%);
}
.hero--basic.with-pattern .image-shape .image-shape-inner::after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background: url(../img/shade-img-blue.svg) no-repeat;
}
@media only screen and (min-width: 992px) {
  .hero--blog .hero-main-wrapper {
    padding: 40px 0 50px;
  }
}
.hero--blog .hero-main-wrapper:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #00487c;
}
@media only screen and (min-width: 992px) {
  .hero--blog .hero-main-wrapper:before {
    height: calc(100% - 30px);
  }
}
.hero--blog .hero-main-wrapper .blog-hero-img {
  width: 100%;
  left: inherit;
  right: 0;
  border-radius: 0 0 0 55px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  min-height: 350px;
}
@media only screen and (min-width: 768px) {
  .hero--blog .hero-main-wrapper .blog-hero-img {
    min-height: 400px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--blog .hero-main-wrapper .blog-hero-img {
    position: absolute;
    min-height: inherit;
    width: 50%;
    border-radius: 0 0 0 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero--blog .hero-main-wrapper .blog-hero-img {
    width: calc(50% - 68px);
  }
}
.hero--blog .hero-main-wrapper .container {
  position: static;
}
.hero--blog .hero-main-wrapper .container .hero-content {
  padding: 50px 0;
}
@media only screen and (min-width: 1200px) {
  .hero--blog .hero-main-wrapper .container .hero-content {
    padding: 64px 0;
  }
}
.hero--blog .hero-main-wrapper .container .hero-form-column {
  margin-left: auto;
  z-index: 2;
}
.hero--blog-detail {
  padding-bottom: 0;
}
.hero--blog-detail picture.overlay:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 49, 85, 0.75)), to(rgba(0, 49, 85, 0.56)));
  background: linear-gradient(180deg, rgba(0, 49, 85, 0.75) 0%, rgba(0, 49, 85, 0.56) 100%);
}
.hero--blog-detail .hero-inner-blog {
  background: #00487c;
  padding: 64px 0 170px;
}
@media only screen and (min-width: 768px) {
  .hero--blog-detail .hero-inner-blog {
    padding: 96px 0 170px;
  }
}
@media only screen and (min-width: 992px) {
  .hero--blog-detail .hero-inner-blog {
    padding: 120px 0 230px;
  }
}
.hero--blog-detail .hero-inner-blog .hero-content .blog-inner-meta p {
  color: #fff;
  font-weight: 600;
  position: relative;
  background: #00487c;
  border-radius: 50px;
  padding: 8px 18px;
  text-transform: capitalize;
}
.hero--contact .hero-main-wrapper {
  background: #00487c;
  padding: 90px 0 250px;
}
@media only screen and (min-width: 992px) {
  .hero--contact .hero-main-wrapper {
    padding: 110px 0 350px;
  }
}
.hero--contact .hero-main-wrapper picture.overlay {
  border-radius: 0 0 20px 20px;
  overflow: hiddens;
}
.hero--contact .hero-main-wrapper picture.overlay:before {
  background: -webkit-gradient(linear, right top, left top, from(rgba(2, 108, 166, 0.6)), to(rgba(0, 47, 108, 0.75)));
  background: linear-gradient(270deg, rgba(2, 108, 166, 0.6) 0%, rgba(0, 47, 108, 0.75) 100%);
  border-radius: 0 0 20px 20px;
  overflow: hiddens;
}
.hero--contact .hero-form-wrapper {
  position: relative;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper {
  margin-top: -200px;
  background: #fff;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .hero-form-column {
  max-width: 100%;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  border-radius: inherit;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .hero-form-column .form-wrapper {
  padding: 36px 36px;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  border-radius: inherit;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .hero-form-column .form-wrapper .gform-body {
  margin-top: 0;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main {
  background: #f3f7fa;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box {
  padding: 36px 36px;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-info__item .info-inner {
  gap: 16px;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-info__item .info-inner .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #00acbd;
  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-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-info__item .info-inner .icon img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-info__item .info-inner .contact-detail p {
  color: #00487c;
  font-size: 0.75rem;
  font-weight: 500;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-info__item .info-inner .contact-detail a {
  color: #000;
  font-weight: 600;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-info__item + .contact-info__item {
  padding-top: 36px;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .contact-social-title .lvl-6 {
  color: #666;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .footer-social {
  gap: 20px;
}
.hero--contact .hero-form-wrapper .contact-form-wrapper .contact-info-main .contact-info-box .footer-social a img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

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

a:hover,
button:hover {
  cursor: pointer;
}

.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Gantari";
  text-transform: capitalize;
  line-height: 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-decoration: none !important;
}
@media only screen and (min-width: 992px) {
  .btn {
    font-size: 1.125rem;
  }
}
.btn:is(:hover, :active, :focus) {
  text-decoration: none;
}
.btn--primary {
  padding: 11px 16px;
  border-radius: 5px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #f15d23;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.btn--primary::after {
  content: "";
  height: 10px;
  width: 10px;
  background: url(../img/arrow-white-right.svg) no-repeat;
  display: block;
  background-size: 10px;
  margin-top: 2px;
}
.btn--primary:is(:hover, :active, :focus) {
  background: #960e15;
}
.btn--secondary {
  padding: 7px 16px;
  border: 2px solid #960e15;
  border-radius: 5px;
  color: #960e15;
}
.btn--secondary:is(:hover, :active, :focus) {
  border-color: #f15d23;
  background: #f15d23;
  color: #fff;
}
.btn--secondary-white {
  padding: 7px 16px;
  border: 2px solid #fff;
  border-radius: 5px;
  color: #fff;
}
.btn--secondary-white:is(:hover, :active, :focus) {
  background: #fff;
  color: #960e15;
}
.btn--secondary-white:is(:hover, :active, :focus) span {
  color: #960e15;
}
.btn--link-dark {
  color: #960e15;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn--link-dark:after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background: url(../img/arrow-right_red.svg) no-repeat center;
  margin-left: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  margin-top: 3px;
}
.btn--link-dark:is(:hover, :active, :focus) {
  color: #00487c;
}
.btn--link-dark:is(:hover, :active, :focus):after {
  background: url(../img/arrow-right-blue.svg) no-repeat center;
  margin-left: 8px;
}
.btn--link-light {
  color: #fff;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn--link-light:after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background: url(../img/arrow-white-right.svg) no-repeat center;
  margin-left: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  margin-top: 3px;
}
.btn--link-light:is(:hover, :active, :focus) {
  color: #f3f7fa;
}
.btn--link-light:is(:hover, :active, :focus):after {
  background: url(../img/arrow-right-ui.svg) no-repeat center;
  margin-left: 8px;
}
.btn--prev {
  color: #960e15;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.btn--prev:after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  background: url(../img/arrow-right_red.svg) no-repeat center;
  margin-right: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  margin-top: 3px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn--prev:is(:hover, :active, :focus) {
  color: #00487c;
}
.btn--prev:is(:hover, :active, :focus):after {
  background: url(../img/arrow-right-blue.svg) no-repeat center;
}
.btn--phone {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  text-align: left !important;
  padding: 0;
}
.btn--phone .icon {
  height: 34px;
  width: 34px;
  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;
  background: #00acbd;
  border-radius: 50%;
  outline: 2.5px solid rgba(0, 172, 189, 0.5);
}
.btn--phone .icon img {
  height: 18px;
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn span {
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.shadow-small {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.shadow-medium {
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.shadow-large {
  -webkit-box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.25);
}

/* # Components
--------------------------------------------------------------*/
/* --- Mobile Navigation --- */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  opacity: 0;
  z-index: -10;
  -webkit-transition: ease opacity 0.15s;
  transition: ease opacity 0.15s;
}
body.menu-active {
  overflow-y: hidden;
}
body.menu-active::before {
  pointer-events: none;
  opacity: 1;
  z-index: 999;
}

.mobile-header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 992px) {
  .mobile-header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mobile-header .menu-toggle {
  color: #fff;
  font-family: "Gantari";
  font-size: 0;
  line-height: 1;
  position: relative;
  z-index: 10;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  text-transform: capitalize;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  background: #f15d23;
  border-radius: 50%;
}
.mobile-header .menu-toggle .menu-open {
  display: none;
}
.mobile-header .menu-toggle p {
  font-family: "Gantari";
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.39px;
  text-transform: capitalize;
  color: #00487c;
}
.mobile-header .menu-toggle .hamburger {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mobile-header .menu-toggle .hamburger .hamburger__line {
  width: 18px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
}
.mobile-header .menu-toggle .hamburger .hamburger__line.middle {
  margin: 4px 0;
}
.mobile-header .menu-toggle.toggle .menu-close {
  display: none;
}
.mobile-header .menu-toggle.toggle .menu-open {
  display: block;
}
.mobile-header .menu-toggle.toggle .top {
  -webkit-transform: rotate(-45deg) translate(-4px, 4px);
          transform: rotate(-45deg) translate(-4px, 4px);
}
.mobile-header .menu-toggle.toggle .middle {
  opacity: 0;
}
.mobile-header .menu-toggle.toggle .bottom {
  -webkit-transform: rotate(45deg) translate(-4px, -5px);
          transform: rotate(45deg) translate(-4px, -5px);
}
.mobile-header .menu-toggle:is(:hover, :focus, :active) {
  text-decoration: none;
  outline: none;
}

#mobile-handler,
#mobile-call {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  z-index: 999;
  min-height: 90px;
}
#mobile-handler .menu-toggle,
#mobile-call .menu-toggle {
  position: relative;
  z-index: 10;
}
#mobile-handler .mobile-contact-btn-group .mobile-contact-btn,
#mobile-call .mobile-contact-btn-group .mobile-contact-btn {
  -webkit-box-flex: calc(33% - 10px);
      -ms-flex: calc(33% - 10px);
          flex: calc(33% - 10px);
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
#mobile-handler .mobile-contact-btn-group .mobile-contact-btn .mob-btn,
#mobile-call .mobile-contact-btn-group .mobile-contact-btn .mob-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #666;
  row-gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  letter-spacing: 0.16px;
}
#mobile-handler .mobile-contact-btn-group .mobile-contact-btn .mob-btn span img,
#mobile-call .mobile-contact-btn-group .mobile-contact-btn .mob-btn span img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
#mobile-handler .mobile-contact-btn-group .mobile-contact-btn.phone,
#mobile-call .mobile-contact-btn-group .mobile-contact-btn.phone {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -20px;
}
#mobile-handler .mobile-contact-btn-group .mobile-contact-btn.phone .mob-call-btn,
#mobile-call .mobile-contact-btn-group .mobile-contact-btn.phone .mob-call-btn {
  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;
  font-size: 0px;
  background: #f15d23;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  margin-left: auto;
  margin-right: auto;
  border: 4px solid #fff;
}
#mobile-handler .mobile-contact-btn-group .mobile-contact-btn.phone .mob-call-btn img,
#mobile-call .mobile-contact-btn-group .mobile-contact-btn.phone .mob-call-btn img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
#mobile-navigation {
  position: fixed;
  left: 0;
  right: 0;
  overflow: scroll;
  overflow-y: scroll;
  top: -100%;
  width: calc(100% - 50px);
  margin: 0 auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #f3f7fa;
  -webkit-transition: ease-in-out all 0.5s;
  transition: ease-in-out all 0.5s;
  z-index: 99;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0 0 12px 12px;
}
#mobile-navigation .menu-panel {
  width: 100%;
  padding-top: 100px;
}
#mobile-navigation .menu-panel .menu-panel__nav {
  max-height: 500px;
  overflow-y: auto;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0;
}
#mobile-navigation .menu-panel ul.menu-panel__nav li ul.sub-menu {
  display: none;
}
#mobile-navigation.active {
  top: 0;
}

/* --- Header --- */
.site-header__inner__branding img {
  max-width: 227px;
  empty-cells: show;
  height: 56px;
  width: 100%;
  margin: 0 auto;
}

#menu-mobile-menu,
#primary-menu-left,
#primary-menu-right {
  margin: 0;
  gap: 30px;
}
@media only screen and (min-width: 1200px) {
  #menu-mobile-menu,
  #primary-menu-left,
  #primary-menu-right {
    gap: 60px;
  }
}
#menu-mobile-menu li,
#primary-menu-left li,
#primary-menu-right li {
  padding: 0;
}
#menu-mobile-menu li a,
#primary-menu-left li a,
#primary-menu-right li a {
  display: inline-block;
  color: #003f6d;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  font-family: "Gantari";
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 13px 0 13px 0;
}
@media only screen and (min-width: 1200px) {
  #menu-mobile-menu li a,
  #primary-menu-left li a,
  #primary-menu-right li a {
    font-size: 1.125rem;
  }
}
#menu-mobile-menu li a:after,
#primary-menu-left li a:after,
#primary-menu-right li a:after {
  -webkit-filter: brightness(0) saturate(100%) invert(17%) sepia(40%) saturate(3263%) hue-rotate(183deg) brightness(100%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(17%) sepia(40%) saturate(3263%) hue-rotate(183deg) brightness(100%) contrast(106%);
}
#menu-mobile-menu li a:hover,
#primary-menu-left li a:hover,
#primary-menu-right li a:hover {
  color: #f15d23;
}
#menu-mobile-menu li.current-menu-item a, #menu-mobile-menu li.current-menu-parent a,
#primary-menu-left li.current-menu-item a,
#primary-menu-left li.current-menu-parent a,
#primary-menu-right li.current-menu-item a,
#primary-menu-right li.current-menu-parent a {
  color: #f15d23;
}
#menu-mobile-menu li.current-menu-item a::after, #menu-mobile-menu li.current-menu-parent a::after,
#primary-menu-left li.current-menu-item a::after,
#primary-menu-left li.current-menu-parent a::after,
#primary-menu-right li.current-menu-item a::after,
#primary-menu-right li.current-menu-parent a::after {
  -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(40%) saturate(2384%) hue-rotate(348deg) brightness(98%) contrast(94%);
          filter: brightness(0) saturate(100%) invert(42%) sepia(40%) saturate(2384%) hue-rotate(348deg) brightness(98%) contrast(94%);
}
#menu-mobile-menu li .sub-menu,
#primary-menu-left li .sub-menu,
#primary-menu-right li .sub-menu {
  background-color: transparent;
}
@media all and (min-width: 768px) {
  #menu-mobile-menu li .sub-menu,
  #primary-menu-left li .sub-menu,
  #primary-menu-right li .sub-menu {
    background-color: #fff;
  }
}
#menu-mobile-menu li .sub-menu li,
#primary-menu-left li .sub-menu li,
#primary-menu-right li .sub-menu li {
  display: block;
  padding: 0;
}
#menu-mobile-menu li .sub-menu li a,
#primary-menu-left li .sub-menu li a,
#primary-menu-right li .sub-menu li a {
  color: #00487c;
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
  padding: 18px 12px;
  background-color: #fff;
  display: block;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
@media only screen and (min-width: 1200px) {
  #menu-mobile-menu li .sub-menu li a,
  #primary-menu-left li .sub-menu li a,
  #primary-menu-right li .sub-menu li a {
    font-size: 1.125rem;
  }
}
#menu-mobile-menu li .sub-menu li a:hover,
#primary-menu-left li .sub-menu li a:hover,
#primary-menu-right li .sub-menu li a:hover {
  background: #f3f7fa;
  color: #f15d23;
}
#menu-mobile-menu li .sub-menu li.current-menu-item a,
#primary-menu-left li .sub-menu li.current-menu-item a,
#primary-menu-right li .sub-menu li.current-menu-item a {
  background: #f3f7fa;
  color: #f15d23;
}
#menu-mobile-menu .menu-item-has-children > a,
#primary-menu-left .menu-item-has-children > a,
#primary-menu-right .menu-item-has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
#menu-mobile-menu .menu-item-has-children > a span,
#primary-menu-left .menu-item-has-children > a span,
#primary-menu-right .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-left .menu-item-has-children > a::after,
#primary-menu-right .menu-item-has-children > a::after {
  content: "";
  width: 10px;
  height: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/chevron-black-down.svg);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
#menu-mobile-menu .menu-item-has-children > a:hover span, #menu-mobile-menu .menu-item-has-children > a:hover::after,
#primary-menu-left .menu-item-has-children > a:hover span,
#primary-menu-left .menu-item-has-children > a:hover::after,
#primary-menu-right .menu-item-has-children > a:hover span,
#primary-menu-right .menu-item-has-children > a:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
@media only screen and (min-width: 992px) {
  #menu-mobile-menu .menu-item-has-children > a:hover span, #menu-mobile-menu .menu-item-has-children > a:hover::after,
  #primary-menu-left .menu-item-has-children > a:hover span,
  #primary-menu-left .menu-item-has-children > a:hover::after,
  #primary-menu-right .menu-item-has-children > a:hover span,
  #primary-menu-right .menu-item-has-children > a:hover::after {
    -webkit-filter: brightness(0) saturate(100%) invert(42%) sepia(40%) saturate(2384%) hue-rotate(348deg) brightness(98%) contrast(94%);
            filter: brightness(0) saturate(100%) invert(42%) sepia(40%) saturate(2384%) hue-rotate(348deg) brightness(98%) contrast(94%);
  }
}

#menu-mobile-menu {
  padding: 24px 24px;
}
#menu-mobile-menu li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 126, 178, 0.25);
}
#menu-mobile-menu li a {
  font-family: "Gantari";
  padding: 0;
  font-weight: 600;
  font-size: 1.375rem;
  color: #00487c;
  text-transform: capitalize;
  letter-spacing: 0.55px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#menu-mobile-menu li a:after {
  rotate: 0deg;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  -webkit-filter: brightness(0) saturate(100%) invert(17%) sepia(64%) saturate(2448%) hue-rotate(187deg) brightness(96%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(17%) sepia(64%) saturate(2448%) hue-rotate(187deg) brightness(96%) contrast(101%);
}
#menu-mobile-menu li a:is(:active, :hover) {
  color: #00487c;
}
#menu-mobile-menu li a:is(:active, :hover):after {
  -webkit-filter: brightness(0) saturate(100%) invert(17%) sepia(64%) saturate(2448%) hue-rotate(187deg) brightness(96%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(17%) sepia(64%) saturate(2448%) hue-rotate(187deg) brightness(96%) contrast(101%);
}
#menu-mobile-menu li a.toggled:after {
  rotate: -180deg;
}
#menu-mobile-menu li.current-menu-item a, #menu-mobile-menu li.current-menu-parent a {
  color: #00487c;
}
#menu-mobile-menu li.current-menu-item a:after, #menu-mobile-menu li.current-menu-parent a:after {
  -webkit-filter: brightness(0) saturate(100%) invert(17%) sepia(64%) saturate(2448%) hue-rotate(187deg) brightness(96%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(17%) sepia(64%) saturate(2448%) hue-rotate(187deg) brightness(96%) contrast(101%);
}
#menu-mobile-menu li .sub-menu {
  margin-top: 16px;
  background: transparent;
}
#menu-mobile-menu li .sub-menu li {
  border: none;
  padding: 0 0 0 12px !important;
  background: transparent;
}
#menu-mobile-menu li .sub-menu li a {
  background-color: transparent;
  color: #000;
  font-size: 1rem;
  font-family: "Gantari";
  display: inline;
  padding: 10px 0;
  text-transform: capitalize;
  font-weight: 400;
}
#menu-mobile-menu li .sub-menu li a:is(:hover, :active) {
  color: #000;
  background: transparent;
}
#menu-mobile-menu li .sub-menu li.current-menu-item a, #menu-mobile-menu li .sub-menu li.current-menu-parent a {
  background: none;
  color: #000;
}
#menu-mobile-menu li .sub-menu li:before {
  display: none;
}
#menu-mobile-menu li .sub-menu li + li {
  padding-top: 10px !important;
}
#menu-mobile-menu li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#menu-mobile-menu li:last-child {
  padding-bottom: 0;
}

header.site-header {
  position: fixed;
  width: 100vw;
  height: auto;
  z-index: 999;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
header.site-header .site-header-main {
  background: #fff;
  -webkit-filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}
header.site-header .site-header-main .site-header__inner {
  width: 100%;
  max-width: 1350px;
  height: 100%;
  padding: 22px 15px;
  margin: 0 auto;
}
header.site-header .site-header_navbar {
  width: 100%;
  max-width: 1350px;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
header.site-header.header-scroll {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  transition: ease-in-out all 0.3s;
  -webkit-transition: ease-in-out all 0.3s;
  -moz-transition: ease-in-out all 0.3s;
}
@media only screen and (min-width: 992px) {
  header.site-header.header-scroll .site-header__inner__branding img {
    /* filter: drop-shadow(0 2px 6px rgba(0,0,0,.15)); */
  }
}

header.site-header {
  background-color: #f3f7fa;
}

/* --- Footer --- */
.footer-logo {
  max-width: 243px;
}

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

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

.footer-copy {
  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;
}
.footer-copy img.hook-brand {
  height: 25px;
  width: 25px;
}

footer.site-footer {
  min-height: 300px;
  position: relative;
  z-index: 11;
  padding-bottom: 90px;
}
@media only screen and (min-width: 992px) {
  footer.site-footer {
    padding-bottom: 0;
  }
}
footer.site-footer a.brand-attr {
  display: inline-block;
}
footer.site-footer .footer-main {
  padding: 64px 0;
  background: #003f6d;
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  background: #003155;
  border-radius: 6px;
  padding: 16px 24px;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 500;
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #f3f7fa;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  font-weight: 600;
}
@media only screen and (min-width: 576px) {
  footer.site-footer .footer-main .footer-top .contact--info-block .contact-info a {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 992px) {
  footer.site-footer .footer-main .footer-top .contact--info-block .contact-info a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info a:is(:hover, :focus, :active) {
  color: #f15d23;
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f3f7fa;
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info img {
  height: 10px;
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 992px) {
  footer.site-footer .footer-main .footer-top .contact--info-block .contact-info.address {
    max-width: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  footer.site-footer .footer-main .footer-top .contact--info-block .contact-info.address {
    max-width: 370px;
  }
}
@media only screen and (min-width: 1300px) {
  footer.site-footer .footer-main .footer-top .contact--info-block .contact-info.address {
    max-width: 470px;
  }
}
@media only screen and (min-width: 1340px) {
  footer.site-footer .footer-main .footer-top .contact--info-block .contact-info.address {
    max-width: 500px;
  }
}
footer.site-footer .footer-main .footer-top .contact--info-block .contact-info + .contact-info {
  margin-top: 16px;
}
footer.site-footer .footer-main .footer-nav {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 1200px) {
  footer.site-footer .footer-main .footer-nav {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
footer.site-footer .footer-main .footer-nav > li {
  line-height: normal;
  position: relative;
  padding: 0;
}
footer.site-footer .footer-main .footer-nav > li a {
  font-family: "Gantari";
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 0.15px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media only screen and (min-width: 1200px) {
  footer.site-footer .footer-main .footer-nav > li a {
    font-size: 1.375rem;
  }
}
footer.site-footer .footer-main .footer-nav > li a:hover {
  color: #f15d23 !important;
}
footer.site-footer .footer-main .footer-nav > li.menu-item-object-custom > a {
  color: #fff;
}
footer.site-footer .footer-main .footer-nav > li.menu-item-object-custom > a:hover {
  color: #f15d23;
}
footer.site-footer .footer-main .footer-nav > li .sub-menu {
  padding-top: 30px;
}
footer.site-footer .footer-main .footer-nav > li .sub-menu li {
  line-height: normal;
  padding: 0;
}
footer.site-footer .footer-main .footer-nav > li .sub-menu li a {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #f3f7fa;
  text-transform: capitalize;
}
footer.site-footer .footer-main .footer-nav > li .sub-menu li a:hover {
  color: #f15d23;
}
footer.site-footer .footer-main .footer-nav > li .sub-menu li + li {
  margin-top: 24px;
}
footer.site-footer .footer-main .footer-nav > li:last-child {
  padding-right: 0;
}
footer.site-footer .footer-main .footer-nav > li:last-child:after {
  display: none;
}
footer.site-footer .footer-copyright {
  padding: 0 0 40px;
  background: #003f6d;
}
@media only screen and (min-width: 992px) {
  footer.site-footer .footer-copyright {
    padding: 0 0 10px;
  }
}
footer.site-footer .footer-copyright .copyright-row .copyright p {
  display: inline;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  margin-left: 10px;
  font-weight: 500;
}
footer.site-footer .footer-copyright .copyright-row .copyright p a {
  padding: 0 10px;
}
footer.site-footer .footer-copyright .copyright-row .copyright p a:first-child {
  margin-left: 0;
  padding-left: 0;
}
footer.site-footer .footer-copyright .copyright-row .copyright p:first-child {
  margin-left: 0;
  padding-left: 0;
}
footer.site-footer .footer-copyright .copyright-row .copyright p:last-child a {
  padding: 0;
}
footer.site-footer .footer-copyright .copyright-row .copyright a {
  color: #fff;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-decoration: underline;
  font-weight: 500;
}
footer.site-footer .footer-copyright .copyright-row .copyright a:hover {
  color: #f15d23;
}
footer.site-footer .footer-copyright .copyright-row .brand .brand-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #fff;
}
footer.site-footer .footer-copyright .copyright-row .brand img.hook-brand {
  height: 25px;
  width: 25px;
}
footer.site-footer .footer-copyright .footer-social {
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) {
  footer.site-footer .footer-copyright .footer-social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
footer.site-footer .footer-copyright .footer-social a img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
footer.site-footer .footer-copyright .footer-social a:hover img {
  opacity: 0.7;
}
footer.site-footer.site-footer-ppc {
  padding-bottom: 48px;
  min-height: inherit;
}
@media only screen and (min-width: 992px) {
  footer.site-footer.site-footer-ppc {
    padding-bottom: 0;
  }
}
footer.site-footer.site-footer-ppc .footer-top .footer-logo-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer.site-footer.site-footer-ppc .footer-top .footer-logo-wrapper .contact--info-block .contact-info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* --- Hero Components --- */
.contact-info-wrap {
  margin: 0;
}
.contact-info-wrap .contact-info-item .contact-info-box {
  height: 100%;
}
.contact-info-wrap .contact-info-item .contact-info-box a,
.contact-info-wrap .contact-info-item .contact-info-box button {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(59.28%, #fff), to(#ebf0f0));
  background: linear-gradient(180deg, #fff 59.28%, #ebf0f0 100%);
  border: 3px solid #00acbd;
  padding: 24px 24px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-info-wrap .contact-info-item .contact-info-box a .icon,
.contact-info-wrap .contact-info-item .contact-info-box button .icon {
  height: 48px;
  width: 48px;
  border: 3px solid #00acbd;
  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%;
}
.contact-info-wrap .contact-info-item .contact-info-box a .icon img,
.contact-info-wrap .contact-info-item .contact-info-box button .icon img {
  height: 24px;
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-info-wrap .contact-info-item .contact-info-box a .contact-info-content span,
.contact-info-wrap .contact-info-item .contact-info-box button .contact-info-content span {
  line-height: 1;
  font-size: 1.125rem;
  letter-spacing: 0.26px;
  text-align: start;
}
.contact-info-wrap .contact-info-item .contact-info-box a .contact-info-content span.lvl-4,
.contact-info-wrap .contact-info-item .contact-info-box button .contact-info-content span.lvl-4 {
  font-size: 1.1875rem;
}
@media only screen and (min-width: 1200px) {
  .contact-info-wrap .contact-info-item .contact-info-box a .contact-info-content span.lvl-4,
  .contact-info-wrap .contact-info-item .contact-info-box button .contact-info-content span.lvl-4 {
    font-size: 1.625rem;
  }
}
.contact-info-wrap .contact-info-item:nth-child(2) .contact-info-box a {
  border-color: #f15d23;
}
.contact-info-wrap .contact-info-item:nth-child(2) .contact-info-box a .icon {
  border-color: #f15d23;
}
.contact-info-wrap .contact-info-item:nth-child(3) .contact-info-box a {
  border-color: #960e15;
}
.contact-info-wrap .contact-info-item:nth-child(3) .contact-info-box a .icon {
  border-color: #960e15;
}

.tns-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 36px;
}
.tns-nav button {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  padding: 0;
  background: #e5e5e5;
}
.tns-nav button.tns-nav-active {
  background: #f15d23;
}

.highlights {
  margin: 0;
}
.highlights .highlights__item {
  gap: 10px;
  font-weight: 600;
}
.highlights .highlights__item img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.coupon-wrapper {
  max-width: 270px;
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  background: #f3f7fa;
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 470px) {
  .coupon-wrapper {
    max-width: 348px;
  }
}
.coupon-wrapper .coupon__item {
  padding: 16px 16px;
  border-radius: 8px;
  border: 2px dashed #00acbd;
}

.rating-stars {
  fill: #fff;
}

/* --- Forms --- */
h2.gform_submission_error {
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-top: 10px;
  color: red;
}

.validation_message,
.gfield_validation_message {
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 10px;
  margin-top: 5px;
  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;
}
@media only screen and (min-width: 992px) {
  .inline-form-wrapper form {
    padding: 10px;
  }
}
.inline-form-wrapper form {
  -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 {
    -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-form-column {
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  max-width: 400px;
  margin: 0 auto;
  background: #f3f7fa;
  border-radius: 8px;
  position: relative;
}
.hero-form-column .form-wrapper {
  padding: 24px 24px 24px 24px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}
.hero-form-column .form-wrapper h3 {
  text-align: center;
  text-transform: capitalize;
}
.hero-form-column .social-ratings {
  gap: 30px;
  padding: 16px 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}
@media only screen and (min-width: 576px) {
  .hero-form-column .social-ratings {
    gap: 30px;
  }
}
.hero-form-column .social-ratings .social__item {
  gap: 5px;
}
@media only screen and (min-width: 576px) {
  .hero-form-column .social-ratings .social__item {
    gap: 10px;
  }
}
.hero-form-column .social-ratings .social__item img {
  height: 20px;
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 576px) {
  .hero-form-column .social-ratings .social__item img {
    height: 30px;
    width: auto;
  }
}
.hero-form-column .social-ratings .social__item .social__item__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.hero-form-column .social-ratings .social__item .social__item__desc .rating-stars {
  width: 60px;
  -webkit-filter: brightness(0) saturate(100%) invert(92%) sepia(17%) saturate(5379%) hue-rotate(342deg) brightness(91%) contrast(117%);
          filter: brightness(0) saturate(100%) invert(92%) sepia(17%) saturate(5379%) hue-rotate(342deg) brightness(91%) contrast(117%);
}
.hero-form-column .social-ratings .social__item .social__item__desc p {
  font-size: 0.6875rem;
  line-height: normal;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
}

.gform_wrapper {
  margin: 36px 0 0;
}
.gform_wrapper form .gf_page_steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}
@media screen and (min-width: 380px) {
  .gform_wrapper form .gf_page_steps {
    gap: 8px;
  }
}
.gform_wrapper form .gf_page_steps .gf_step {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  gap: 8px;
  text-align: center;
}
.gform_wrapper form .gf_page_steps .gf_step .gf_step_number {
  display: none;
}
.gform_wrapper form .gf_page_steps .gf_step .gf_step_label {
  color: rgba(0, 72, 124, 0.25);
  font-weight: 500;
  height: 100%;
  border-radius: 50px;
  background: #f3f7fa;
  /* width: 30px; */
  /* height: 30px; */
  min-width: 80px;
  font-size: 0.625rem;
  padding: 5px 7px;
}
@media only screen and (min-width: 380px) {
  .gform_wrapper form .gf_page_steps .gf_step .gf_step_label {
    font-size: 0.75rem;
  }
}
@media only screen and (min-width: 576px) {
  .gform_wrapper form .gf_page_steps .gf_step .gf_step_label {
    min-width: 109px;
  }
}
.gform_wrapper form .gf_page_steps .gf_step.gf_step_active::before {
  opacity: 1;
}
.gform_wrapper form .gf_page_steps .gf_step.gf_step_active .gf_step_label {
  background: #00acbd;
  color: #00487c;
}
.gform_wrapper form .gf_page_steps .gf_step.gf_step_completed .gf_step_label {
  background: #00acbd;
  color: #00487c;
}
.gform_wrapper form .gform_body {
  margin-top: 15px;
}
.gform_wrapper form .gform_body .ginput_container_select {
  position: relative;
}
.gform_wrapper form .gform_body .ginput_container_select::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 9px;
  height: 9px;
  background-image: url("../img/chevron-black-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: brightness(0) saturate(100%) invert(34%) sepia(5%) saturate(226%) hue-rotate(181deg) brightness(90%) contrast(85%);
          filter: brightness(0) saturate(100%) invert(34%) sepia(5%) saturate(226%) hue-rotate(181deg) brightness(90%) contrast(85%);
}
.gform_wrapper form .gform_body .gform_fields {
  list-style: none;
  margin: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  padding: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield_required,
.gform_wrapper form .gform_body .gform_fields .gform_hidden {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-small {
  max-width: 176px;
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-20 {
  -webkit-box-flex: calc(19% - 8px);
      -ms-flex: calc(19% - 8px);
          flex: calc(19% - 8px);
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-35 {
  -webkit-box-flex: calc(49% - 8px);
      -ms-flex: calc(49% - 8px);
          flex: calc(49% - 8px);
}
@media screen and (min-width: 576px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.w-35 {
    -webkit-box-flex: calc(34% - 8px);
        -ms-flex: calc(34% - 8px);
            flex: calc(34% - 8px);
    max-width: 34%;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-30 {
  -webkit-box-flex: calc(44% - 8px);
      -ms-flex: calc(44% - 8px);
          flex: calc(44% - 8px);
}
@media screen and (min-width: 992px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.w-30 {
    -webkit-box-flex: calc(29% - 8px);
        -ms-flex: calc(29% - 8px);
            flex: calc(29% - 8px);
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-40 {
  -webkit-box-flex: calc(44% - 8px);
      -ms-flex: calc(44% - 8px);
          flex: calc(44% - 8px);
}
@media screen and (min-width: 992px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.w-40 {
    -webkit-box-flex: calc(39% - 8px);
        -ms-flex: calc(39% - 8px);
            flex: calc(39% - 8px);
    max-width: 39%;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-50 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
@media screen and (min-width: 576px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.w-50 {
    -webkit-box-flex: calc(50% - 12px);
        -ms-flex: calc(50% - 12px);
            flex: calc(50% - 12px);
    max-width: 50%;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-65 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
@media screen and (min-width: 576px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.w-65 {
    -webkit-box-flex: calc(64% - 8px);
        -ms-flex: calc(64% - 8px);
            flex: calc(64% - 8px);
    max-width: 64%;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-70 {
  -webkit-box-flex: calc(69% - 8px);
      -ms-flex: calc(69% - 8px);
          flex: calc(69% - 8px);
  max-width: 69%;
}
.gform_wrapper form .gform_body .gform_fields .gfield.w-80 {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}
@media screen and (min-width: 576px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.w-80 {
    -webkit-box-flex: calc(79% - 12px);
        -ms-flex: calc(79% - 12px);
            flex: calc(79% - 12px);
    max-width: 79%;
  }
}
@media screen and (max-width: 991px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.mob-w-55 {
    -webkit-box-flex: calc(54% - 8px);
        -ms-flex: calc(54% - 8px);
            flex: calc(54% - 8px);
  }
}
@media screen and (max-width: 991px) {
  .gform_wrapper form .gform_body .gform_fields .gfield.mob-w-100 {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  line-height: 1;
  display: inline-block;
}
.gform_wrapper form .gform_body .gform_fields .gfield h3.gsection_title {
  text-align: center;
}
.gform_wrapper form .gform_body .gform_fields .gfield select,
.gform_wrapper form .gform_body .gform_fields .gfield textarea,
.gform_wrapper form .gform_body .gform_fields .gfield input {
  color: #666;
  background-color: #f3f7fa;
  border: none;
  border-bottom: none;
  padding: 10px;
  width: 100%;
  height: 36px;
  font-size: 0.75rem;
  font-family: "Gantari";
  font-weight: 400;
  line-height: 1;
  display: block;
  border-radius: 3px;
}
.gform_wrapper form .gform_body .gform_fields .gfield select:is(:hover, :focus, :active),
.gform_wrapper form .gform_body .gform_fields .gfield textarea:is(:hover, :focus, :active),
.gform_wrapper form .gform_body .gform_fields .gfield input:is(:hover, :focus, :active) {
  outline: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield select {
  padding-right: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.gform_wrapper form .gform_body .gform_fields .gfield select option {
  color: #696969;
}
.gform_wrapper form .gform_body .gform_fields .gfield textarea {
  height: 88px;
  resize: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .gfield_label_before_complex {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding-left: 32px;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container input[type=checkbox] {
  opacity: 0;
  width: 16px;
  height: 16px;
  border-radius: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 3px;
  cursor: pointer;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container input[type=checkbox]:checked + .gform-field-label::after {
  opacity: 1;
  visibility: visible;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container .gform-field-label {
  font-weight: 500;
  font-size: 0.6875rem;
  cursor: pointer;
  color: #666;
  display: block;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container .gform-field-label a {
  color: #00487c;
  text-decoration: underline;
  font-weight: 700;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container .gform-field-label::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 3px;
  background-color: #f3f7fa;
  border-radius: 50%;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .ginput_container .gform-field-label::after {
  content: "";
  display: block;
  position: absolute;
  background: #00487c;
  width: 8px;
  height: 8px;
  left: 4px;
  top: 7px;
  background-size: 8px;
  border-radius: 100%;
  opacity: 0;
  visibility: hidden;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .gfield_description {
  color: #fff;
  text-transform: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-consent .gfield_description.validation_message {
  color: red;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gform_fileupload_rules,
.gform_wrapper form .gform_body .gform_fields .gfield .gform_hidden, .gform_wrapper form .gform_body .gform_fields .gfield.gform_validation_container {
  visibility: hidden;
  display: none;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-section {
  border: 1px solid #666;
  width: 100%;
  max-width: 100%;
  margin: 16px 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-radio {
  width: calc(50% - 30px);
  display: inline-block;
  margin-right: 30px;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio {
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 25px;
  margin: 25px 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield {
  margin-bottom: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield label.gform-field-label::before, .gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield label.gform-field-label::after,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield label.gform-field-label::before,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield label.gform-field-label::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield label.gform-field-label::after,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield label.gform-field-label::after {
  left: 4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #fff;
  opacity: 1;
  visibility: visible;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield input[type=checkbox],
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield input[type=radio],
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield input[type=checkbox],
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield input[type=radio] {
  opacity: 0;
  width: 16px;
  height: 16px;
  border-radius: 0;
}
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield input[type=checkbox]:checked + .gform-field-label::after,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_checkbox .gfield input[type=radio]:checked + .gform-field-label::after,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield input[type=checkbox]:checked + .gform-field-label::after,
.gform_wrapper form .gform_body .gform_fields .gfield .gfield_radio .gfield input[type=radio]:checked + .gform-field-label::after {
  opacity: 0;
  visibility: hidden;
}
.gform_wrapper form .gform_body .gform_fields .gfield.gfield--type-fileupload input {
  padding: 6px 8px;
  background: url(../img/upload.svg) no-repeat, #f3f7fa;
  background-size: 12px;
  background-position: top 9px right 15px;
}
.gform_wrapper form .gform_body .gform_fields .gfield.hidden_label label {
  display: none;
}
.gform_wrapper form .gform_body .gform_fields fieldset {
  border: none;
  padding: 0;
}
.gform_wrapper form .gform_body .gform_fields fieldset legend.gfield_label_before_complex {
  display: none !important;
}
.gform_wrapper form .gform_body .gform_fields .gfield--input-type-html {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  color: #666;
}
.gform_wrapper form .gform_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  -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;
}
.gform_wrapper form .gform_footer {
  position: relative;
  text-align: center;
  margin-top: 36px;
  max-width: 100% !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gform_wrapper form .gform_footer,
.gform_wrapper form .gform_page_footer {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gform_body ul {
  list-style: none;
  margin: 0;
}
.gform_body ul li :is(input, textarea, select) {
  width: 100%;
}
.gform_body ul li select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.gform_body ul li .ginput_container_select {
  position: relative;
}
.gform_body ul li .ginput_container_select::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/contractor-starter/inc/img/chevron-black-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.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);
}

/* --- Facet --- */
.facetwp-facet {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0 !important;
}

.facetwp-counter {
  display: none;
}

.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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.facetwp-type-radio .facetwp-radio.checked,
.facetwp-type-radio .facetwp-radio {
  margin-left: 10px;
  margin-right: 10px;
  background-image: none;
  border: 1px solid #000;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: transparent;
}
.facetwp-type-radio .facetwp-radio.checked {
  background-color: #ebebeb;
}

.facet-filters-wrap .facet-filters-wrap-inner select.facetwp-dropdown {
  color: #666;
  border: none;
  border-bottom: none;
  padding: 10px 30px 10px 10px;
  width: auto;
  height: 40px;
  line-height: 1;
  display: block;
  border-radius: 3px;
  font-weight: 600;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/chevron-solid-down.svg) no-repeat, #f3f7fa;
  background-size: 10px;
  background-position: calc(100% - 10px) center;
}

.facetwp-load-more {
  color: #960e15;
  text-decoration: underline;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  font-weight: 600;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  text-decoration: none;
}
.facetwp-load-more:after {
  content: "";
  display: block;
  height: 9px;
  width: 9px;
  background: url(../img/arrow-right_red.svg) no-repeat center;
  margin-left: 5px;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  rotate: 90deg;
}
.facetwp-load-more:is(:hover, :active, :focus) {
  color: #00487c;
}
.facetwp-load-more:is(:hover, :active, :focus):after {
  margin-top: 5px;
  background: url(../img/arrow-right-blue.svg) no-repeat center;
}

/* --- Global Components --- */
.accordion {
  display: block;
  width: 100%;
  margin: auto;
  background-color: #f3f7fa;
}
.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;
}

.team-popup {
  max-width: 680px;
  border-radius: 10px;
  margin: 0 auto 10px;
  position: relative;
  background: #00487c;
  padding: 24px 24px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 992px) {
  .team-popup {
    padding: 36px 36px;
  }
}
.team-popup .team-popup_inner .team-popup_top {
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  .team-popup .team-popup_inner .team-popup_top {
    gap: 30px;
  }
}
.team-popup .team-popup_inner .team-popup_top picture {
  width: 100%;
  aspect-ratio: 0.8;
  max-width: 90px;
}

button.mfp-close {
  height: 20px;
  width: 20px;
  line-height: 1;
  background: #f15d23 !important;
  font-size: 16px;
  border-radius: 50%;
  color: #00487c !important;
  opacity: 1;
  text-decoration: none;
  right: 10px;
  top: 10px;
}

/* --- Cards --- */
.card--block-link {
  display: block;
  text-decoration: none;
}
.card--block-link:is(:hover, :active, :focus) {
  display: block;
  text-decoration: none;
}
.card--career .career-single {
  background: #fff;
  padding: 24px 24px;
  border-radius: 10px;
  height: 100%;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
.card--career .career-single .career-content-wrap {
  row-gap: 24px;
}
.card--career .career-single .career-content-wrap h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.card--career .career-single .career-content-wrap .career-info {
  gap: 16px;
}
.card--career .career-single .career-content-wrap .career-info span {
  font-size: 0.75rem;
  color: #00487c;
  padding: 8px 10px;
  background: #f3f7fa;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: -0.12px;
}
.card--career .career-single .career-content-wrap .career-info span img {
  height: 10px;
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card--recent-article .card--block-link {
  padding: 0;
}
.card--recent-article .card--block-link .article-image-wrapper {
  position: relative;
}
.card--recent-article .card--block-link .article-image-wrapper picture.article-img {
  aspect-ratio: 1.6535;
  border-radius: 8px;
  overflow: hidden;
}
.card--recent-article .card--block-link .recent-article-info {
  row-gap: 12px;
}
.card--recent-article .card--block-link .recent-article-info .post-meta p {
  border-radius: 99px;
  background: #00487c;
  font-size: 0.75rem;
  padding: 5px 13px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  text-transform: capitalize;
}
.card--recent-article .card--block-link .recent-article-info .blog-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.card--recent-article .card--block-link .recent-article-info .blog-title {
  color: #000;
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.26px;
}
.card--recent-article .card--block-link .recent-article-info .content-editor {
  font-size: 1rem;
  color: #000;
}
.card--reviews {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
.card--reviews .review-box .review-info {
  margin-bottom: 14px;
}
.card--reviews .review-box .review-author {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.card--reviews .review-box .review-author .review-img .review--image,
.card--reviews .review-box .review-author .review-img .review--initials {
  height: 36px;
  width: 36px;
  min-width: 36px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}
.card--reviews .review-box .review-author .review-img .review--image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  -o-object-position: top center;
     object-position: top center;
}
.card--reviews .review-box .review-author .review-img .review--initials {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.card--reviews .review-box .review-author .review-img .review--initials .initials {
  height: 100%;
  width: 100%;
  background-color: #00487c;
  color: #fff;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-family: "Gantari";
  font-weight: 700;
  line-height: 1;
  padding-top: 2px;
  letter-spacing: 0.65px;
}
.card--reviews .review-box .review-author .review-title .lvl-6 {
  font-family: "Gantari";
}
.card--reviews .review-box .review-author .review-title .review-rating-img {
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  margin-top: 6px;
}
.card--reviews .review-box .review-author .review-title .review-rating-img img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card--reviews .review-box .review-author .review-title .review-rating-img .star-icon {
  width: 49px;
  height: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  -webkit-filter: brightness(0) saturate(100%) invert(88%) sepia(27%) saturate(4322%) hue-rotate(350deg) brightness(96%) contrast(106%);
          filter: brightness(0) saturate(100%) invert(88%) sepia(27%) saturate(4322%) hue-rotate(350deg) brightness(96%) contrast(106%);
}
.card--featured-service-block {
  cursor: pointer;
}
.card--featured-service-block picture {
  overflow: hidden;
  border-radius: 12px;
}
.card--featured-service-block picture.overlay:before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50.11%, rgba(0, 49, 85, 0)), color-stop(74.23%, rgba(0, 49, 85, 0.9)));
  background: linear-gradient(180deg, rgba(0, 49, 85, 0) 50.11%, rgba(0, 49, 85, 0.9) 74.23%);
}
.card--featured-service-block .service-item {
  position: relative;
}
.card--featured-service-block .card--block-link {
  display: block;
  text-decoration: none;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.card--featured-service-block .offer-text {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 9px 15px;
  line-height: 1;
  background: #f15d23;
  border-radius: 100px;
  z-index: 2;
  font-size: 0.875rem;
  font-weight: 600;
}
@media only screen and (min-width: 380px) {
  .card--featured-service-block .offer-text {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 992px) {
  .card--featured-service-block .offer-text {
    font-size: 1.125rem;
  }
}
.card--featured-service-block .service-inner-wrapper {
  aspect-ratio: 1.4494;
  min-height: 445px;
  width: 100%;
}
.card--featured-service-block .service-inner-wrapper .service-info-wrap {
  position: relative;
  padding: 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  z-index: 1;
  width: 100%;
}
.card--featured-service-block .service-inner-wrapper .service-info-wrap .service-tags {
  gap: 8px;
}
.card--featured-service-block .service-inner-wrapper .service-info-wrap .service-tags .tags {
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(174, 2, 29, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.card--default-service-block {
  min-height: 445px;
}
.card--default-service-block picture {
  overflow: hidden;
  border-radius: 12px;
}
.card--default-service-block picture.overlay:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 72, 124, 0.25)), color-stop(90.16%, #003155));
  background: linear-gradient(180deg, rgba(0, 72, 124, 0.25) 0%, #003155 90.16%);
}
.card--default-service-block .service-info-wrap {
  position: relative;
  padding: 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  z-index: 1;
}
.card--default-service-block .service-info-wrap .service-tags {
  gap: 8px;
}
.card--default-service-block .service-info-wrap .service-tags .tags {
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(174, 2, 29, 0.5);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

/* --- Page Options --- */
.faq-single {
  margin-bottom: 20px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
}
.faq-single .faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
@media only screen and (min-width: 992px) {
  .faq-single .faq-title {
    padding: 20px 20px;
  }
}
.faq-single h4 {
  font-size: 1.125rem;
  margin-bottom: 0px;
  line-height: normal;
  cursor: pointer;
  text-transform: none;
  width: calc(100% - 25px);
}
@media only screen and (min-width: 992px) {
  .faq-single h4 {
    width: calc(100% - 40px);
    font-size: 1.375rem;
  }
}
.faq-single .plus {
  width: 30px;
  height: 30px;
  background-color: #f15d23;
  border-radius: 50%;
  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;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.faq-single .plus::before {
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
}
.faq-single .plus::after {
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq-single p {
  font-size: 1rem;
}
.faq-single .faq-content {
  display: none;
  padding: 0 20px 30px;
}

.faq-single.active .plus {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq-single.active .plus:before, .faq-single.active .plus:after {
  background-color: #fff;
}

/* --- PB Layouts --- */
.section-trust-factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-trust-factors .tf--single {
  width: 100%;
  max-width: 150px;
  min-height: 80px;
}

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

.cp-sig {
  max-width: 100px;
  width: 100%;
}

section.iframe iframe {
  aspect-ratio: 16/9;
}

.rec-art__author-photo {
  width: 150px;
  height: 150px;
}

section.reviews {
  overflow: hidden;
}

section.service-areas.default .row.map--left {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) {
  section.service-areas.default .row.map--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
section.service-areas.default .row.map--right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) {
  section.service-areas.default .row.map--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
section.service-areas.branded .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: 992px) {
  section.service-areas.branded .row.map--left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
section.service-areas.branded .row.map--right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 992px) {
  section.service-areas.branded .row.map--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.serv-loc-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.serv-loc-wrapper li {
  margin-top: 0;
}

.service-map--code {
  height: 100%;
}
.service-map--code picture {
  margin-bottom: 0;
  height: 100%;
}
.service-map--code iframe {
  height: 100%;
  aspect-ratio: 1.4269;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}

.tab-content-mobile {
  background: #f6f6f6;
}

.tab-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  cursor: pointer;
}

.tab-information {
  display: none;
  background-color: #fff;
  padding: 10px;
}

.tab-menu {
  gap: 20px;
}
.tab-menu li {
  margin: 0;
  cursor: pointer;
}

.team-photos img {
  max-width: 200px;
}

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

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.default .row:nth-of-type(odd) .image-pull-coupon .coupon-wrapper {
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  section.two-col.default .row:nth-of-type(odd) .image-pull-coupon .coupon-wrapper {
    right: 30px;
    left: initial;
  }
}
@media screen and (min-width: 1400px) {
  section.two-col.default .row:nth-of-type(odd) .image-pull-coupon .coupon-wrapper {
    right: 30px;
  }
}
section.two-col.default .row:nth-of-type(even) .image-pull-coupon .coupon-wrapper {
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  section.two-col.default .row:nth-of-type(even) .image-pull-coupon .coupon-wrapper {
    left: 30px;
    right: initial;
  }
}
@media screen and (min-width: 1400px) {
  section.two-col.default .row:nth-of-type(even) .image-pull-coupon .coupon-wrapper {
    left: 30px;
  }
}
section.two-col.reversed .row:nth-of-type(odd) .image-pull-coupon .coupon-wrapper {
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  section.two-col.reversed .row:nth-of-type(odd) .image-pull-coupon .coupon-wrapper {
    left: 30px;
    right: initial;
  }
}
@media screen and (min-width: 1400px) {
  section.two-col.reversed .row:nth-of-type(odd) .image-pull-coupon .coupon-wrapper {
    left: 30px;
  }
}
section.two-col.reversed .row:nth-of-type(even) .image-pull-coupon .coupon-wrapper {
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  section.two-col.reversed .row:nth-of-type(even) .image-pull-coupon .coupon-wrapper {
    right: 30px;
    left: initial;
  }
}
@media screen and (min-width: 1400px) {
  section.two-col.reversed .row:nth-of-type(even) .image-pull-coupon .coupon-wrapper {
    right: 30px;
  }
}

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

section.section-form_content .inner-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.section-form_content .inner-row + .inner-row {
  padding-top: 28px;
}
@media screen and (min-width: 992px) {
  section.section-form_content.default .inner-row:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  section.section-form_content.default .inner-row:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.section-form_content.reversed .inner-row:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  section.section-form_content.reversed .inner-row:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* --- Misc --- */
.post-progress {
  position: fixed;
  left: 0;
  top: 100px;
  width: 100%;
  height: 0.375rem;
  background: #f3f7fa;
  pointer-events: none;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .post-progress {
    top: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .post-progress {
    top: 181px;
  }
}
.post-progress .post-progress__bar {
  height: 0.375rem;
  background-color: #f15d23;
  border-radius: 0px 5px 5px 0px;
  width: 0%;
}

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

.page-template-page-ppc .card--block-link,
.page-template-page-ppc .ppc-no-link {
  cursor: default;
  color: unset;
}
.page-template-page-ppc .site-header .site-header-main .mobile-header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-template-page-ppc .site-main {
  margin-top: 100px;
}
@media only screen and (min-width: 992px) {
  .page-template-page-ppc .site-main {
    margin-top: 100px;
  }
}

.auto-box {
  background-color: #f3f7fa;
  padding: 20px;
  margin-top: 36px;
  margin-bottom: 36px;
}
.auto-box .author-top {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .auto-box .author-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.auto-box .author-top .author-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.auto-box .author-top .author-image .author-name p {
  font-weight: 700;
}
.auto-box .author-top .author-image picture {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
}
.auto-box .author-top .author-image picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.auto-box .author-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.auto-box .author-socials a {
  display: inline-block;
  width: 14px;
  height: 14px;
}
.auto-box .author-socials a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.auto-box .author-bottom {
  margin-top: 24px;
}
.auto-box .author-bottom p {
  margin-bottom: 0;
}

.sbr-feed {
  width: 100%;
  text-align: left;
}

/* --------------------------------------------------------------
 >> BEGIN Main Styles
-------------------------------------------------------------- */
/* # Partials
-------------------------------------------------------------- */
/* Header */
.site-header .top-bar {
  background: #00487c;
  padding: 5px 0;
}
.site-header .top-bar .top-bar-wrap {
  gap: 20px;
}
.site-header .top-bar .top-bar-wrap .topbar-title {
  font-weight: 600;
}
.site-header .top-bar .top-bar-wrap .topbar-icon {
  height: 15px;
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .site-header__inner .header-social-review {
  gap: 6px;
}
.site-header .site-header__inner .header-social-review img {
  height: 16px;
  width: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header .site-header__inner .header-social-review .rating-stars {
  width: 70px;
}
.site-header .site-header__inner .header-social-review .header-social-review__description {
  font-style: italic;
}

/* # Hero defaults */
/* # Homepage */
/* # Contact */
/* # Basic */
/* # PPC */
/* # Flex Content
--------------------------------------------------------------*/
/* # Basic Content */
section.basic-content picture {
  aspect-ratio: 1.9772;
  border-radius: 10px;
  overflow: hidden;
}
section.basic-content .editor-content h2,
section.basic-content .editor-content h3,
section.basic-content .editor-content h4,
section.basic-content .editor-content h5 {
  margin-bottom: 16px;
}

/* # Columned Content */
/* # Company Promise */
/* # Link List */
/* # Reviews */
section.reviews {
  overflow: visible;
}
@media only screen and (min-width: 992px) {
  section.reviews {
    margin-top: 80px;
    background: #f3f7fa;
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) {
  section.reviews .section-content {
    padding: 70px 0;
  }
}
section.reviews::before {
  content: "";
  display: block;
  height: calc(50% + 10px);
  width: 100%;
  background: #f3f7fa;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 992px) {
  section.reviews::before {
    display: none;
  }
}
section.reviews .reviews-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 30px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media only screen and (min-width: 992px) {
  section.reviews .reviews-img-wrap {
    margin-top: -80px;
  }
}
section.reviews .reviews-img-wrap .reviews-row {
  gap: 24px;
}
@media only screen and (min-width: 992px) {
  section.reviews .reviews-img-wrap .reviews-row .reviews__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
section.reviews .reviews-img-wrap .reviews-row .reviews__image picture {
  aspect-ratio: 0.9184;
  max-width: 276px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  section.reviews .reviews-img-wrap .reviews-row .reviews__image picture {
    aspect-ratio: 1.1948;
  }
}
section.reviews .reviews-img-wrap .reviews-row .reviews__image picture img {
  -o-object-position: top center;
     object-position: top center;
}
section.reviews .reviews-img-wrap .reviews-row .reviews__number {
  background: url(../img/rating-box.svg) no-repeat;
  padding: 20px 20px 30px;
  border-radius: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-size: cover;
  background-position: 100% 100%;
}
@media only screen and (min-width: 992px) {
  section.reviews .reviews-img-wrap .reviews-row .reviews__number {
    background-size: 100% 100%;
    background-position: center center;
    padding: 30px 40px 40px;
  }
}
section.reviews .reviews-img-wrap .reviews-row .reviews__number .star-img {
  width: 109px;
  height: 19px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) saturate(100%) invert(70%) sepia(95%) saturate(470%) hue-rotate(349deg) brightness(95%) contrast(107%);
          filter: brightness(0) saturate(100%) invert(70%) sepia(95%) saturate(470%) hue-rotate(349deg) brightness(95%) contrast(107%);
}
section.reviews .reviews-img-wrap .reviews-row.reviews-row--one {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
section.reviews .reviews-img-wrap .reviews-row.reviews-row--two {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
section.reviews .reviews-img-wrap .reviews-row .serivce-inner-row > div {
  width: 50%;
}

/* # Services Areas Map */
section.service-areas .row .service-map--info .serv-loc-wrapper {
  gap: 15px 15px;
}
@media only screen and (min-width: 992px) {
  section.service-areas .row .service-map--info .serv-loc-wrapper {
    gap: 15px 24px;
  }
}
section.service-areas .row .service-map--info .serv-loc-wrapper li a,
section.service-areas .row .service-map--info .serv-loc-wrapper li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.15px;
  text-transform: capitalize;
  text-decoration: none;
  color: #00487c;
}
section.service-areas .row .service-map--info .serv-loc-wrapper li a {
  color: #00487c;
  border-bottom: 1.25px solid currentColor;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
section.service-areas .row .service-map--info .serv-loc-wrapper li a:after {
  display: block;
  content: "+";
  line-height: 1;
  margin-left: 3px;
  font-size: 1.3125rem;
  margin-bottom: 3px;
}
section.service-areas .row .service-map--info .serv-loc-wrapper li a:hover {
  color: #f15d23;
}
section.service-areas.branded .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media only screen and (min-width: 992px) {
  section.service-areas.branded .row .service-map--info {
    padding: 128px 0;
  }
}
section.service-areas.branded .row .service-map--code picture {
  margin-top: -120px;
  z-index: -1;
}
@media only screen and (min-width: 992px) {
  section.service-areas.branded .row .service-map--code picture {
    margin-top: 0;
  }
}
section.service-areas.branded .row .service-map--code picture.overlay:before {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(19.47%, #fff), color-stop(50%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #fff 19.47%, rgba(255, 255, 255, 0) 50%);
}
@media only screen and (min-width: 992px) {
  section.service-areas.branded .row .service-map--code picture.overlay:before {
    background: none;
  }
}
section.service-areas.branded:has(+ .faq-accordion) {
  padding-bottom: 0;
  z-index: 11;
}
section.service-areas.branded + .faq-accordion {
  padding-top: 118px;
  margin-top: -80px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
@media only screen and (min-width: 992px) {
  section.service-areas.branded + .faq-accordion {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
}

/* # Services */
section.services .service-list-main .tns-ovh {
  overflow: visible;
}

/* # Core Value Section */
section.core-values {
  background: #00487c;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  section.core-values {
    border-radius: 20px;
  }
}
section.core-values .core-val-list .core-val-single {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
section.core-values .core-val-list .core-val-single:first-child {
  padding-top: 0;
}
section.core-values .core-val-list .core-val-single:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
section.core-values .right-content-wrapper .cv-image picture {
  aspect-ratio: 1.3712;
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
}
section.core-values .right-content-wrapper .cv-image picture::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 63, 109, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(180deg, rgba(0, 63, 109, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
section.core-values .right-content-wrapper .employee-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0px 24px 24px;
}
section.core-values .right-content-wrapper .employee-quote .bio-info h3 {
  color: #fff;
  font-size: 1.25rem;
}
@media only screen and (min-width: 992px) {
  section.core-values .right-content-wrapper .employee-quote .bio-info h3 {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  section.core-values .right-content-wrapper .employee-quote .bio-info h3 {
    font-size: 2rem;
  }
}
section.core-values .right-content-wrapper .right-content {
  position: relative;
}

/* # Tabbed Content */
.tab-content .row {
  row-gap: 48px;
}
.tab-content .row .editor-content ul {
  padding-left: 0;
  margin: 24px 0 24px 0;
  list-style-type: none;
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.tab-content .row .editor-content ul li {
  padding-left: 30px;
  position: relative;
  font-weight: 600;
}
.tab-content .row .editor-content ul li:before {
  content: "";
  display: block;
  height: 18px;
  width: 18px;
  background: url(../img/check-mark-button.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 3px;
  background-size: 100% 100%;
}
.tab-content .row .tab-wrapper {
  border-radius: 10px;
  overflow: hidden;
}
.tab-content .row .tab-wrapper .tab-menu {
  margin: 0;
  position: relative;
}
.tab-content .row .tab-wrapper .tab-menu li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  gap: 10px !important;
  padding: 16px 16px;
  text-align: center;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.tab-content .row .tab-wrapper .tab-menu li h4 {
  color: #000;
  font-size: 1.125rem;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
@media only screen and (min-width: 1200px) {
  .tab-content .row .tab-wrapper .tab-menu li h4 {
    font-size: 1.375rem;
  }
}
.tab-content .row .tab-wrapper .tab-menu li:hover h4 {
  color: #00487c;
}
.tab-content .row .tab-wrapper .tab-menu li.active {
  background: #00487c;
  border-radius: 8px 8px 0 0;
}
.tab-content .row .tab-wrapper .tab-menu li.active h4 {
  color: #fff;
}
.tab-content .row .tab-wrapper .tab-content-main {
  background: #00487c;
  padding: 48px 48px;
}
.tab-content .row .tab-wrapper .tab-content-main picture {
  aspect-ratio: 1.3387;
  border-radius: 8px;
  overflow: hidden;
}
.tab-content .row .tab-wrapper .tab-content-main .tab-content-wrap h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
}
@media only screen and (min-width: 1200px) {
  .tab-content .row .tab-wrapper .tab-content-main .tab-content-wrap h3 {
    font-size: 1.75rem;
  }
}
.tab-content .row .tab-content-mobile {
  background: none !important;
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-topic {
  color: #00487c;
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
  background: #f3f7fa;
  border-radius: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-topic::after {
  content: "";
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/chevron-black-down.svg);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -webkit-filter: brightness(0) saturate(100%) invert(18%) sepia(28%) saturate(4926%) hue-rotate(186deg) brightness(98%) contrast(102%);
          filter: brightness(0) saturate(100%) invert(18%) sepia(28%) saturate(4926%) hue-rotate(186deg) brightness(98%) contrast(102%);
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-topic img {
  height: 20px;
  width: 20px !important;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) saturate(100%) invert(41%) sepia(0%) saturate(1118%) hue-rotate(139deg) brightness(95%) contrast(78%);
          filter: brightness(0) saturate(100%) invert(41%) sepia(0%) saturate(1118%) hue-rotate(139deg) brightness(95%) contrast(78%);
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-information {
  background-color: inherit;
  padding: 10px;
  margin-top: 24px;
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-information picture {
  aspect-ratio: 1.5;
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-information picture img {
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap .tab-information h3 {
  padding-top: 24px;
  color: #000;
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap.active .tab-topic {
  color: #fff;
  background: #00487c;
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap.active .tab-topic::after {
  -webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(236deg) brightness(105%) contrast(103%);
          filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(236deg) brightness(105%) contrast(103%);
}
.tab-content .row .tab-content-mobile .tab-mobile-wrapper .tab-mobile-single-wrap + .tab-mobile-single-wrap {
  margin-top: 15px;
}

/* # Team Members */
.team-members {
  background: #fff;
}
.team-members .team-block-info {
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  max-width: 420px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .team-members .team-block-info {
    max-width: 100%;
    margin: inherit;
  }
}
.team-members .team-block-info .team-card .team-img picture {
  aspect-ratio: 0.8143;
}
.team-members .team-block-info .team-card .team-info {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  background: #00487c;
  padding: 12px;
}
@media only screen and (min-width: 1200px) {
  .team-members .team-block-info .team-card .team-info {
    padding: 12px 24px;
  }
}
.team-members .team-block-info .team-card .team-info h4 {
  line-height: normal;
}
.team-members .team-block-info .team-card .team-info .position {
  font-size: 0.875rem;
  text-transform: capitalize;
  line-height: normal;
  color: #f3f7fa;
}
.team-members .team-block-info .team-card .team-info .icon {
  background: #f15d23;
  border-radius: 50%;
  height: 24px;
  width: 24px;
  min-width: 24px;
  -webkit-transition: ease-in-out all 0.3s;
  transition: ease-in-out all 0.3s;
}
.team-members .team-block-info .team-card .team-info .icon img {
  height: 10px;
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* # Trust Factors */
.trust-factors .container {
  max-width: 100%;
}
.trust-factors .tns-ovh {
  overflow: visible;
}
.trust-factors .trust-factors_list {
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 36px;
  max-width: 1320px;
  margin: 0 auto;
}
.trust-factors .tf--single img {
  max-height: 100px;
  max-width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: auto;
}
.trust-factors .tns-outer {
  position: relative;
}
.trust-factors .tns-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trust-factors .section-trust-factors__slider {
  vertical-align: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.trust-factors .section-trust-factors__slider .tns-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trust-factors .section-trust-factors__slider img {
  max-height: 50px;
  max-width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: auto;
}

/* # Two Column */
section.two-col .row--tc {
  row-gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.two-col .row--tc .image-pull-coupon:has(.coupon-wrapper) {
  padding-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  section.two-col .row--tc .image-pull-coupon:has(.coupon-wrapper) {
    padding-bottom: 0;
  }
}
section.two-col .row--tc .image-pull-coupon > picture {
  aspect-ratio: 1.4269;
  border-radius: 10px;
  overflow: hidden;
  min-height: 320px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 992px) {
  section.two-col .row--tc .image-pull-coupon > picture {
    min-height: 420px;
  }
}
section.two-col .row--tc .image-pull-coupon .coupon-wrapper {
  position: absolute;
  bottom: 0;
}
@media only screen and (min-width: 992px) {
  section.two-col .row--tc .image-pull-coupon .coupon-wrapper {
    bottom: 30px;
    left: 30px;
  }
}

/* # Two Column Fullwidth */
/* # Why Choose Us */
section.why-choose-us {
  background: #f3f7fa;
  border-radius: 0 0 30px 30px;
}
section.why-choose-us .row {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 40px;
  row-gap: 30px;
}
@media only screen and (min-width: 992px) {
  section.why-choose-us .row {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 992px) {
  section.why-choose-us .row {
    padding-top: 50px;
  }
}
section.why-choose-us .checklist-main-wrap .sub-title {
  padding: 12px 20px;
  color: #fff;
  position: absolute;
  display: inline-block;
  margin-left: 25px;
  margin-top: 1px;
  top: 0;
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 576px) {
  section.why-choose-us .checklist-main-wrap .sub-title {
    padding: 12px 50px;
    margin-left: 50px;
  }
}
@media only screen and (min-width: 992px) {
  section.why-choose-us .checklist-main-wrap .sub-title {
    font-size: 1.5rem;
  }
}
section.why-choose-us .checklist-main-wrap .sub-title:before {
  content: "";
  display: block;
  height: 40px;
  width: 100%;
  background: url(../img/text-bg-orange.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 576px) {
  section.why-choose-us .checklist-main-wrap .sub-title:before {
    height: 50px;
  }
}
section.why-choose-us .checklist-main-wrap .sub-title:after {
  content: "";
  display: block;
  height: 50px;
  width: 68px;
  background: url(../img/icon-orange-bottom-arrow.svg) no-repeat;
  position: absolute;
  left: -10px;
  bottom: -49px;
  z-index: 1;
}
section.why-choose-us .checklist-main-wrap .checklist {
  padding: 64px 30px 53px 30px;
  background: #00487c;
  border-radius: 16px;
}
section.why-choose-us .checklist-main-wrap .checklist .checklist-items {
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
section.why-choose-us .checklist-main-wrap .checklist .checklist-items .checklist-icon {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  background: #003155;
  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-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
section.why-choose-us .checklist-main-wrap .checklist .checklist-items .checklist-icon img {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.why-choose-us .checklist-main-wrap .checklist .checklist-items:first-child {
  padding-top: 0;
}
section.why-choose-us .checklist-main-wrap .checklist .checklist-items:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
section.why-choose-us .why-choose-image-wrap {
  height: 100%;
}
section.why-choose-us .why-choose-image-wrap .image-inner-wrap {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
section.why-choose-us .why-choose-image-wrap .image-inner-wrap .why-choose-img {
  height: 100%;
  aspect-ratio: 1.2056;
  min-height: 410px;
}
section.why-choose-us .why-choose-image-wrap .image-inner-wrap .employee-quote {
  border-radius: 12px 0 16px 0;
  background: #00487c;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 16px 18px;
  gap: 10px;
}
section.why-choose-us .why-choose-image-wrap .image-inner-wrap .employee-quote .team-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: -90px;
  border: 3px solid #f15d23;
}
section.why-choose-us .why-choose-image-wrap .sub-title-right {
  padding: 7px 50px;
  position: absolute;
  display: inline-block;
  margin-right: 20px;
  margin-top: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  section.why-choose-us .why-choose-image-wrap .sub-title-right {
    font-size: 1.5rem;
  }
}
section.why-choose-us .why-choose-image-wrap .sub-title-right:before {
  content: "";
  display: block;
  height: 40px;
  width: 100%;
  background: url(../img/text-bg-teal.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) {
  section.why-choose-us .why-choose-image-wrap .sub-title-right:before {
    height: 50px;
  }
}
section.why-choose-us .why-choose-image-wrap .sub-title-right:after {
  content: "";
  display: block;
  height: 30px;
  width: 70px;
  background: url(../img/icon-teal-top-arrow.svg) no-repeat;
  position: absolute;
  right: -10px;
  bottom: calc(100% - 1px);
  z-index: 1;
}

/* # Process Section */
section.process .process-wrapper {
  padding: 10px 0;
}
section.process .process-wrapper .col-process-item .col-process-inner {
  padding: 36px 20px;
  border-radius: 10px;
  border: 3px solid #f15d23;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(59%, #fff), to(#ebf0f0));
  background: linear-gradient(180deg, #fff 59%, #ebf0f0 100%);
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
}
section.process .process-wrapper .col-process-item .col-process-inner .process-icon img {
  height: 100px;
  width: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.process .process-wrapper .col-process-item .col-process-inner .process--info h4 {
  letter-spacing: 0.26px;
}
section.process .tns-nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* #FAQs Section */
section.faq-accordion {
  background: #003f6d;
  overflow: hidden;
}
section.faq-accordion.image-shape::before {
  background: linear-gradient(90deg, #003f6d 3.76%, rgba(0, 63, 109, 0) 71.64%), linear-gradient(283deg, #003155 0%, rgba(0, 49, 85, 0) 99.55%);
}
section.faq-accordion.image-shape:after {
  background: linear-gradient(180deg, #003f6d 3.76%, rgba(0, 63, 109, 0) 71.64%), linear-gradient(283deg, #003155 0%, rgba(0, 49, 85, 0) 99.55%);
}
section.faq-accordion .image-shape-inner:after {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
section.faq-accordion .image-shape-inner .row {
  row-gap: 64px;
}

/* # Form + Content Section */
section.section-form_content .container {
  position: static;
}
@media only screen and (min-width: 992px) {
  section.section-form_content .form-content-inner:has(.section-img) {
    padding: 64px 0;
  }
}
section.section-form_content .form-content-inner:has(.section-img) .hero-form-column {
  margin-top: -100px;
  width: calc(100% - 30px);
}
@media only screen and (min-width: 992px) {
  section.section-form_content .form-content-inner:has(.section-img) .hero-form-column {
    max-width: 400px;
    margin-top: 0;
    width: 100%;
  }
}
section.section-form_content .form-content-inner .row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.section-form_content .form-content-inner .section-img {
  min-height: 350px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px 10px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  section.section-form_content .form-content-inner .section-img {
    width: calc(50% - 128px);
    border-radius: 0 10px 10px 0;
    min-height: inherit;
    position: absolute;
  }
}
section.section-form_content .form-content-inner .form-content-info .editor-content ul {
  padding-left: 0;
  margin: 24px 0 0 0;
  list-style-type: none;
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
@media only screen and (min-width: 768px) {
  section.section-form_content .form-content-inner .form-content-info .editor-content ul {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
section.section-form_content .form-content-inner .form-content-info .editor-content ul li {
  padding-left: 30px;
  position: relative;
  font-weight: 600;
}
section.section-form_content .form-content-inner .form-content-info .editor-content ul li:before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background: url(../img/icon-img-blue.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 3px;
}
@media only screen and (min-width: 992px) {
  section.section-form_content .form-content-inner .hero-form-column {
    max-width: 400px;
  }
}
section.section-form_content.default:has(.section-img) .row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
section.section-form_content.default .section-img {
  left: inherit;
  right: 0;
  border-radius: 10px 0px 0px 10px;
}
section.section-form_content.reversed:has(.section-img) .row {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
section.section-form_content:has(+ .callout-banner) {
  padding-bottom: 0;
  margin-bottom: -54px;
  z-index: 11;
}
section.section-form_content + .callout-banner {
  padding-top: 85px;
}
@media only screen and (min-width: 992px) {
  section.section-form_content + .callout-banner {
    padding-top: 128px;
  }
}

/* # Form Section */
section.form-section .hero-form-column {
  max-width: 100%;
}

/* # Callout Banner */
section.callout-banner {
  background: #00487c;
}
section.callout-banner .section-content .section-header h2 span,
section.callout-banner .section-content .section-header .lvl-2 span {
  color: #00acbd;
}

/* # Key Diffs */
section.key-diffs .key-diffs .key-deff-items .icon img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* # Career Section */
section.career .career-wrapper .tns-ovh {
  overflow: visible;
}

/* # Icon Box Section */
section.icon-box-section .icon-boxes .row {
  row-gap: 50px;
}
section.icon-box-section .icon-boxes .icon-box-main {
  background: #f3f7fa;
  padding: 24px 24px 48px;
  border-radius: 10px;
  margin-top: 50px;
}
@media only screen and (min-width: 992px) {
  section.icon-box-section .icon-boxes .icon-box-main {
    padding: 36px 36px 48px;
  }
}
section.icon-box-section .icon-boxes .icon-box-main .icon-wrap {
  height: 100px;
  width: 100px;
  background: #00acbd;
  border-radius: 50%;
  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: -90px auto 0;
}
section.icon-box-section .icon-boxes .icon-box-main .icon-wrap img {
  height: 40px;
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* # Brands and Equipment */
section.brands-equipment .brands-list .brand-item {
  background: #f3f7fa;
  border-radius: 10px;
  overflow: hidden;
}
section.brands-equipment .brands-list .brand-item .brand-img picture {
  aspect-ratio: 2.2771;
}
@media only screen and (min-width: 992px) {
  section.brands-equipment .brands-list .brand-item .brand-img picture {
    aspect-ratio: 2.2771;
  }
}
section.brands-equipment .brands-list .brand-item .brand-info {
  padding: 20px 20px;
}
@media only screen and (min-width: 992px) {
  section.brands-equipment .brands-list .brand-item .brand-info {
    padding: 36px 36px;
  }
}

/* # Partials
-------------------------------------------------------------- */
/* #FAQs */
/* # Recent Articles */
/* # CTA Banner */
section.cta-banner .cta-main-wrapper {
  background: #00487c;
}
@media only screen and (min-width: 768px) {
  section.cta-banner .cta-main-wrapper {
    padding: 120px 0 100px;
    background: none;
  }
}
@media only screen and (min-width: 992px) {
  section.cta-banner .cta-main-wrapper {
    padding: 289px 0 119px;
  }
}
@media only screen and (max-width: 767px) {
  section.cta-banner .cta-main-wrapper .image-shape {
    border-radius: 55px 0 0 16px;
  }
}
section.cta-banner .cta-main-wrapper .image-shape.bg--image-abs {
  position: relative;
  min-height: 410px;
  width: calc(100% - 15px);
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  section.cta-banner .cta-main-wrapper .image-shape.bg--image-abs {
    position: absolute;
    min-height: inherit;
    width: 100%;
    margin-left: inherit;
  }
}
section.cta-banner .cta-main-wrapper picture.overlay {
  position: static;
}
section.cta-banner .cta-main-wrapper picture.overlay:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 49, 85, 0.5)), to(#003155));
  background: linear-gradient(180deg, rgba(0, 49, 85, 0.5) 0%, #003155 100%);
}

.image-shape {
  border-radius: 55px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .image-shape {
    border-radius: 80px 0 0 0;
  }
}
@media only screen and (min-width: 992px) {
  .image-shape {
    border-radius: 100px 0 0 0;
  }
}
.image-shape:before {
  content: "";
  display: block;
  height: 55px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 172, 189, 0.75)), to(rgba(0, 172, 189, 0)));
  background: linear-gradient(90deg, rgba(0, 172, 189, 0.75) 0%, rgba(0, 172, 189, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .image-shape:before {
    height: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .image-shape:before {
    height: 120px;
  }
}
.image-shape:after {
  content: "";
  display: block;
  height: calc(100% - 55px);
  width: 55px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 172, 189, 0.71)), to(rgba(0, 172, 189, 0.75)));
  background: linear-gradient(180deg, rgba(0, 172, 189, 0.71) 0%, rgba(0, 172, 189, 0.75) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .image-shape:after {
    height: calc(100% - 80px);
    width: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .image-shape:after {
    height: calc(100% - 120px);
    width: 120px;
  }
}
.image-shape picture::after,
.image-shape .video::after,
.image-shape .image-shape-inner::after {
  content: "";
  display: block;
  height: 55px;
  width: 55px;
  background: url(../img/shade-img.svg) no-repeat;
  position: absolute;
  bottom: calc(100% - 110px);
  left: 0px;
  z-index: 3;
  background-size: 100% !important;
}
@media only screen and (min-width: 768px) {
  .image-shape picture::after,
  .image-shape .video::after,
  .image-shape .image-shape-inner::after {
    height: 80px;
    width: 80px;
    bottom: calc(100% - 160px);
  }
}
@media only screen and (min-width: 992px) {
  .image-shape picture::after,
  .image-shape .video::after,
  .image-shape .image-shape-inner::after {
    height: 120px;
    width: 120px;
    bottom: calc(100% - 240px);
  }
}
.image-shape.bottom-right {
  border-radius: 0 0 55px 0;
}
@media only screen and (min-width: 768px) {
  .image-shape.bottom-right {
    border-radius: 0 0 80px 0;
  }
}
@media only screen and (min-width: 992px) {
  .image-shape.bottom-right {
    border-radius: 0 0 100px 0;
  }
}
.image-shape.bottom-right:before {
  left: 0;
  bottom: 0;
  top: initial;
}
.image-shape.bottom-right::after {
  right: 0;
  top: 0;
  left: initial;
  bottom: initial;
}
.image-shape.bottom-right picture:after,
.image-shape.bottom-right .video:after,
.image-shape.bottom-right .image-shape-inner:after {
  top: calc(100% - 110px);
  right: 0px;
  left: initial;
  bottom: initial;
}
@media only screen and (min-width: 768px) {
  .image-shape.bottom-right picture:after,
  .image-shape.bottom-right .video:after,
  .image-shape.bottom-right .image-shape-inner:after {
    top: calc(100% - 160px);
  }
}
@media only screen and (min-width: 992px) {
  .image-shape.bottom-right picture:after,
  .image-shape.bottom-right .video:after,
  .image-shape.bottom-right .image-shape-inner:after {
    top: calc(100% - 240px);
  }
}
.image-shape.bottom-left {
  border-radius: 0 0 0 55px;
}
@media only screen and (min-width: 768px) {
  .image-shape.bottom-left {
    border-radius: 0 0 0 80px;
  }
}
@media only screen and (min-width: 992px) {
  .image-shape.bottom-left {
    border-radius: 0 0 0 100px;
  }
}
.image-shape.bottom-left:before {
  left: 0;
  bottom: 0;
  top: initial;
}
.image-shape.bottom-left::after {
  top: 0;
  left: initial;
  bottom: initial;
}
.image-shape.bottom-left picture:after,
.image-shape.bottom-left .video:after,
.image-shape.bottom-left .image-shape-inner:after {
  top: calc(100% - 240px);
  left: initial;
  bottom: initial;
}

/* # Post Templates
-------------------------------------------------------------- */
/* # Blog + Archives */
/* # Single Blog Post */
div.blog-detail {
  background: #f3f7fa;
  position: relative;
}
div.blog-detail .post-detail-content {
  max-width: 870px;
  margin: 0 auto;
  background: #fff;
  color: #000;
  border-radius: 12px;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: -170px;
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  div.blog-detail .post-detail-content {
    padding: 45px 45px 45px 45px;
    margin-top: -170px;
  }
}
@media only screen and (min-width: 992px) {
  div.blog-detail .post-detail-content {
    padding: 64px 64px 64px 64px;
    margin-top: -220px;
  }
}
div.blog-detail .post-detail-content .hero-form-column {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}
div.blog-detail .post-detail-content .wp-block-heading:first-child {
  margin-top: 0;
  color: #000;
}
div.blog-detail .post-detail-content ul.wp-block-list {
  list-style: disc;
  padding-left: 20px;
}
div.blog-detail .post-detail-content ol.wp-block-list {
  list-style: decimal;
  padding-left: 20px;
}
div.blog-detail .post-detail-content h2 {
  margin-top: 24px;
  margin-bottom: 16px;
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) {
  div.blog-detail .post-detail-content h2 {
    margin-top: 48px;
    margin-bottom: 36px;
  }
}
div.blog-detail .post-detail-content h3,
div.blog-detail .post-detail-content h4,
div.blog-detail .post-detail-content h5,
div.blog-detail .post-detail-content h6 {
  margin-top: 24px;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  div.blog-detail .post-detail-content h3,
  div.blog-detail .post-detail-content h4,
  div.blog-detail .post-detail-content h5,
  div.blog-detail .post-detail-content h6 {
    margin-top: 48px;
    margin-bottom: 36px;
  }
}
div.blog-detail .post-detail-content h3:first-child,
div.blog-detail .post-detail-content h4:first-child,
div.blog-detail .post-detail-content h5:first-child,
div.blog-detail .post-detail-content h6:first-child {
  margin-top: 0;
}
div.blog-detail .post-detail-content h3:last-child,
div.blog-detail .post-detail-content h4:last-child,
div.blog-detail .post-detail-content h5:last-child,
div.blog-detail .post-detail-content h6:last-child {
  margin-bottom: 0;
}
div.blog-detail .post-detail-content h5,
div.blog-detail .post-detail-content h6 {
  margin-bottom: 16px;
}
div.blog-detail .post-detail-content h4,
div.blog-detail .post-detail-content h5,
div.blog-detail .post-detail-content h6 {
  font-family: "Gantari";
}
div.blog-detail .post-detail-content p a {
  color: #00487c;
}
div.blog-detail .post-detail-content p a:hover {
  color: #f15d23;
}
div.blog-detail .post-detail-content figure.wp-block-image {
  aspect-ratio: 1.3921;
}
div.blog-detail .post-detail-content figure.wp-block-image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
div.blog-detail .post-detail-content figure.wp-block-table {
  border: 1px solid #d3d3d3;
  border-radius: 6px;
}
div.blog-detail .post-detail-content figure.wp-block-table table {
  min-width: 650px;
  overflow-x: auto;
}
div.blog-detail .post-detail-content figure.wp-block-table table tbody tr td {
  padding: 12px 10px;
  color: #000;
  line-height: 1.3;
  vertical-align: text-top;
  border: 1px solid #d3d3d3;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  div.blog-detail .post-detail-content figure.wp-block-table table tbody tr td {
    padding: 12px;
  }
}
div.blog-detail .post-detail-content figure.wp-block-table table tbody tr td:first-child {
  border-left: none !important;
}
div.blog-detail .post-detail-content figure.wp-block-table table tbody tr td:last-child {
  border-right: none !important;
}
div.blog-detail .post-detail-content figure.wp-block-table table tbody tr:first-child td {
  background: #f3f7fa;
  border: 1px solid #d3d3d3;
  padding: 12px 10px;
  text-align: left;
  font-weight: 600;
  color: #00487c;
  line-height: 1.2;
  word-break: break-word;
  border-top: none !important;
}
@media screen and (min-width: 768px) {
  div.blog-detail .post-detail-content figure.wp-block-table table tbody tr:first-child td {
    padding: 12px;
  }
}
div.blog-detail .post-detail-content figure.wp-block-table table tbody tr:last-child td {
  border-bottom: none !important;
}
div.blog-detail .post-detail-content p + figure {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  div.blog-detail .post-detail-content p + figure {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
div.blog-detail .post-detail-content ul + figure,
div.blog-detail .post-detail-content ol + figure {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  div.blog-detail .post-detail-content ul + figure,
  div.blog-detail .post-detail-content ol + figure {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
div.blog-detail .post-detail-content .wp-block-heading + figure {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) {
  div.blog-detail .post-detail-content .wp-block-heading + figure {
    margin-top: 30px;
  }
}
div.blog-detail .post-detail-content .wp-block-quote {
  margin: 0;
  background: #f3f7fa;
  border-radius: 8px;
  font-weight: 400;
  padding: 16px 16px;
  font-size: 1rem;
}
@media only screen and (min-width: 992px) {
  div.blog-detail .post-detail-content .wp-block-quote {
    padding: 24px 24px;
    font-size: 1.5rem;
  }
}
div.blog-detail .post-detail-content .wp-block-quote::before {
  display: none;
}
div.blog-detail .post-detail-content #ez-toc-container {
  margin-top: 24px;
  margin-bottom: 16px;
  background: #f3f7fa;
  padding: 10px 15px;
  border-radius: 6px;
  border: 0;
}
@media screen and (min-width: 768px) {
  div.blog-detail .post-detail-content #ez-toc-container {
    margin-top: 36px;
  }
}
@media screen and (min-width: 992px) {
  div.blog-detail .post-detail-content #ez-toc-container {
    margin-top: 48px;
    margin-bottom: 24px;
    padding: 16px 24px;
  }
}
div.blog-detail .post-detail-content #ez-toc-container *:focus-visible {
  border: none;
  outline: none;
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container {
  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;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-weight: 600;
  line-height: 0.9;
  color: #000;
  font-size: 1.125rem;
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn {
  padding: 0;
  float: none !important;
  margin-left: 0;
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn .ez-toc-js-icon-con {
  background: transparent;
  border: none;
  border-radius: 4px;
  left: 0;
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 992px) {
  div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn .ez-toc-js-icon-con {
    width: 39px;
    height: 39px;
  }
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn .ez-toc-js-icon-con .ez-toc-icon-toggle-span {
  width: 35px;
  height: 100%;
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn .ez-toc-js-icon-con .ez-toc-icon-toggle-span svg {
  fill: #00487c !important;
  color: #00487c !important;
  width: 25px;
}
@media screen and (min-width: 992px) {
  div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn .ez-toc-js-icon-con .ez-toc-icon-toggle-span svg {
    width: 35px;
  }
}
div.blog-detail .post-detail-content #ez-toc-container .ez-toc-title-container .ez-toc-title-toggle .ez-toc-btn .ez-toc-js-icon-con .ez-toc-icon-toggle-span svg.arrow-unsorted-368013 {
  display: none;
}
div.blog-detail .post-detail-content #ez-toc-container nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  row-gap: 8px;
}
div.blog-detail .post-detail-content #ez-toc-container nav > ul > li > a {
  font-size: 1rem;
}
div.blog-detail .post-detail-content #ez-toc-container nav > ul > li ul li a {
  font-size: 0.75rem;
}
div.blog-detail .post-detail-content #ez-toc-container nav ul {
  padding: 8px 0 0;
}
div.blog-detail .hero-form-column {
  max-width: 100%;
}
div.blog-detail .author-card {
  padding: 16px;
  background: #f3f7fa;
  border-radius: 8px;
}
@media only screen and (min-width: 576px) {
  div.blog-detail .author-card {
    padding: 24px;
  }
}
div.blog-detail .author-card .author-meta .author-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
div.blog-detail .author-card .author-meta .author-img .author-photo,
div.blog-detail .author-card .author-meta .author-img .author-avatar {
  height: 40px;
  width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  border-radius: 50%;
  overflow: hidden;
}
div.blog-detail .author-card .author-meta .author-img .author-photo img,
div.blog-detail .author-card .author-meta .author-img .author-avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
div.blog-detail .author-card .author-meta .author-img .author-name {
  font-weight: 700;
  letter-spacing: 0.15px;
  color: #000;
  text-transform: uppercase;
  margin: 0;
}
div.blog-detail .author-card .author-meta .author-social {
  gap: 20px;
}
div.blog-detail .author-card .author-meta .author-social img {
  height: 14px;
  width: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* # Projects Post */
/* # Careers Post */
.job-content .entry-content .cta-link {
  text-align: center;
}
.job-content .entry-content .post-header_content .job-post_date {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #666;
  line-height: 1.5;
}
.job-content .entry-content .job-post_content > .wp-block-heading {
  color: #000;
}
.job-content .entry-content .job-post_content > .wp-block-heading:first-child {
  margin-top: 0;
  color: #000;
}
.job-content .entry-content .job-post_content h2 {
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .job-content .entry-content .job-post_content h2 {
    margin-bottom: 36px;
  }
}
.job-content .entry-content .job-post_content p {
  margin: 0;
  line-height: 1.77;
}
.job-content .entry-content .job-post_content p + p {
  margin-top: 16px;
}
.job-content .entry-content .job-post_content h3 {
  margin-top: 24px;
}
@media all and (min-width: 768px) {
  .job-content .entry-content .job-post_content h3 {
    margin-top: 48px;
    margin-bottom: 36px;
  }
}
.job-content .entry-content .job-post_content h4 {
  margin-top: 24px;
}
@media all and (min-width: 768px) {
  .job-content .entry-content .job-post_content h4 {
    margin-top: 48px;
    margin-bottom: 36px;
  }
}
.job-content .entry-content .job-post_content h5 {
  margin-top: 24px;
}
@media all and (min-width: 768px) {
  .job-content .entry-content .job-post_content h5 {
    margin-top: 48px;
    margin-bottom: 36px;
  }
}
.job-content .entry-content .job-post_content h6 {
  margin-top: 24px;
}
@media all and (min-width: 768px) {
  .job-content .entry-content .job-post_content h6 {
    margin-top: 48px;
    margin-bottom: 36px;
  }
}
.job-content .entry-content .job-post_content ul {
  padding: 0;
  margin: 0 0 0 20px;
  list-style: disc;
}
.job-content .entry-content .job-post_content ul li {
  line-height: 1.4;
  font-weight: 500;
  font-family: "Gantari";
}
.job-content .entry-content .job-post_content ul li + li {
  margin-top: 7px;
}
.job-content .entry-content .job-post_content ul + p {
  margin-top: 24px;
}
@media all and (min-width: 768px) {
  .job-content .entry-content .job-post_content ul + p {
    margin-top: 48px;
  }
}
.job-content .entry-content .job-post_content a {
  color: #f15d23;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: ease-in 0.3s all 0s;
  transition: ease-in 0.3s all 0s;
}
.job-content .entry-content .job-post_content a:hover {
  border-bottom: 1px solid #f15d23;
}
.job-content .entry-content .job-post_content blockquote {
  background: #f3f7fa;
  margin: 0;
  padding: 15px 15px;
  position: relative;
}
@media all and (min-width: 768px) {
  .job-content .entry-content .job-post_content blockquote {
    padding: 24px 24px;
  }
}
.job-content .entry-content .job-post_content blockquote p {
  font-size: 0.9375rem;
  font-family: "Gantari";
  line-height: 1.57;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .job-content .entry-content .job-post_content blockquote p {
    font-size: 1.125rem;
  }
}
.job-content .entry-content .career-info {
  gap: 16px;
}
.job-content .entry-content .career-info span {
  font-size: 0.75rem;
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  background: #f15d23;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.job-content .entry-content .career-info span img {
  height: 10px;
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.job-content .ns-buttons {
  margin: 0 !important;
}
.job-content .ns-buttons .ns-buttons-wrapper {
  row-gap: 10px;
}
.job-content .ns-buttons .ns-buttons-wrapper .ns-button {
  height: 20px;
  margin-bottom: 0 !important;
}
.job-content .ns-buttons .ns-buttons-wrapper .ns-button:last-child {
  margin-right: 0 !important;
}
.job-content .ns-buttons .ns-buttons-wrapper .ns-button-block {
  border-radius: 50px;
}
.job-content .ns-buttons .ns-buttons-wrapper .ns-button-block .ns-button-icon {
  height: 22px;
  width: 20px;
  min-width: 20px;
}

/* # FAQs Post */
section.site-faq .faqs-list .post--faq {
  position: relative;
  padding: 20px 20px 20px;
  background: #f3f7fa;
  border-radius: 6px;
}
@media screen and (min-width: 992px) {
  section.site-faq .faqs-list .post--faq {
    padding: 36px 24px 24px;
  }
}
section.site-faq .faqs-list .post--faq .post-faq_content {
  padding-left: 20px;
  position: relative;
  margin-top: 24px;
}
section.site-faq .faqs-list .post--faq .post-faq_content::before {
  content: "";
  display: inline-block;
  height: 12px;
  width: 12px;
  background: url(../img/arrow-right-red.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 4px;
  left: 0;
}
section.site-faq .faqs-list .post--faq + .post--faq {
  margin-top: 36px;
}

/* Footer *//*# sourceMappingURL=main.css.map */