/*!
 * Bootstrap Grid v5.2.1 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 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-black: #000;
  --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", "Noto Sans", "Liberation Sans", Arial, 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;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: auto;
  padding-right: calc(var(--bs-gutter-x) * 1.2);
  padding-left: calc(var(--bs-gutter-x) * 1.2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    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: -ms-grid !important;
  display: grid !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    -webkit-transition: none;
    transition: none;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #0c63e4;
  --bs-accordion-active-bg: #e7f1ff;
}

.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: var(--bs-accordion-transition);
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    -webkit-transition: none;
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  -webkit-box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
          box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  -webkit-transform: var(--bs-accordion-btn-icon-transform);
          transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  -webkit-transition: var(--bs-accordion-btn-icon-transition);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    -webkit-transition: none;
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  -webkit-box-shadow: var(--bs-accordion-btn-focus-box-shadow);
          box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
body, html {
  font-size: 18px;
  font-family: "Lato", serif;
  margin: 0;
  color: #0A1748;
  background-color: #FAFAFA;
}

.regular-page-wrap {
  overflow: hidden;
}

@media (max-width: 992px) {
  .desktop-lg {
    display: none;
  }
}

.mobile-md {
  display: none;
}
@media (max-width: 768px) {
  .mobile-md {
    display: block;
  }
}

.mobile-lg {
  display: none;
}
@media (max-width: 992px) {
  .mobile-lg {
    display: block;
  }
}

.display_text {
  font-size: 5.556rem;
}

h1 {
  margin-top: 0px;
  font-size: 2.667rem;
  font-weight: 500;
}

h2 {
  font-size: 1.778rem;
  font-weight: 700;
}

h3 {
  font-size: 1.333rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
}

h5 {
  font-size: 1rem;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  font-weight: 700;
}

.body_lg {
  font-size: 1.778rem;
  font-weight: 400;
}

.body_md {
  font-size: 1rem;
  font-weight: 500;
}

.body_sm {
  font-size: 0.889rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .display_text {
    font-size: 3.111rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.778rem;
  }
  h3 {
    font-size: 1.111rem;
  }
}
.lg-text {
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 992px) {
  .lg-text {
    line-height: 36px;
    font-size: 24px;
  }
}

.bold {
  font-weight: 700;
}

a {
  color: #0A1748;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #3091BA;
}

.skip-link {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
.skip-link:focus, .skip-link:active {
  color: #fff;
  background-color: #000;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 15px;
  border: 4px solid yellow;
  text-align: center;
  font-size: 1.2em;
  z-index: 999;
}

.btn, #single-post .post form input[type=submit], #single-post .post .wp-block-button a, .form-section input[type=submit], .form-style input[type=submit] {
  width: auto;
  padding: 15px 45px;
  background: #0A1748;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
.btn:hover, #single-post .post form input[type=submit]:hover, #single-post .post .wp-block-button a:hover, .form-section input[type=submit]:hover, .form-style input[type=submit]:hover {
  color: white;
  background: #4ECFE6;
}

.button-container {
  margin-top: 40px;
  z-index: 2;
  position: relative;
}

/*
.overlays{
    content:'';
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
*/
.gradientoverlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(20deg, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0));
}

.hidetext {
  /* Hide the text. */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.inputstyle {
  width: auto;
}
.inputstyle::-webkit-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ }
.inputstyle::-moz-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ }
.inputstyle:-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ }
.inputstyle::-ms-input-placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ }
.inputstyle::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */ }

.gform_wrapper form .gform_fields input,
.gform_wrapper form .gform_fields .medium,
.gform_wrapper form .gform_fields input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid;
  margin-top: 25px;
}
.gform_wrapper form .gform_fields .gfield {
  position: relative;
}
.gform_wrapper form .gform_fields .gfield label.gfield_label {
  font-size: 18px;
  position: absolute;
  top: 1.3rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gform_wrapper form .gform_fields .gfield label.gfield_label.maintain-active, .gform_wrapper form .gform_fields .gfield label.gfield_label.active {
  top: 0rem;
  font-size: 14px;
}
.gform_wrapper form .gform_fields .textarea {
  margin-top: 1rem;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 1px solid;
}
.custom-cb {
  position: absolute;
  opacity: 0;
}
.custom-cb + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
}
.custom-cb + label:before {
  content: "";
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  background-color: #dadada;
  position: relative;
}
.custom-cb:hover + label:before {
  background: #BFBFBF;
}
.custom-cb:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.custom-cb:checked + label:before {
  background-color: #2e8bb2;
}
.custom-cb:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.custom-cb:disabled + label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ddd;
}
.custom-cb:checked + label:before {
  background: #3091BA;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

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

.noliststyle {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hlist-style {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .hlist-style {
    display: block;
  }
}
.hlist-style li {
  display: inline-block;
}
@media (max-width: 768px) {
  .hlist-style li {
    display: block;
  }
}

.large-container {
  width: auto;
  padding-right: 37px;
  padding-left: 37px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .large-container {
    max-width: 1900px;
  }
}
.box {
  width: 9.8vw;
  position: absolute;
}
@media (max-width: 480px) {
  .box {
    z-index: 0;
  }
}
.box.blue {
  color: #3091BA;
}
.box.yellow {
  color: #FAD043;
}
.box.primary {
  color: #0A1748;
}
.box.lightblue {
  color: #4ECFE6;
}

.rise-bars {
  width: 540px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.yellow-bars {
  position: absolute;
  width: 106px;
}

@media (max-width: 768px) {
  .dot-grid {
    width: 100% !important;
  }
}

.circle {
  position: absolute;
  width: 400px;
}
.circle.lightblue {
  color: #4ECFE6;
}
.circle.blue {
  color: #3091BA;
}

.circle-dots {
  position: absolute;
  width: 150px;
}

header .head-wrapper .container {
  position: relative;
}
header .head-wrapper .nav-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .head-wrapper .nav-container .logo-container {
  max-width: 220px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 768px) {
  header .head-wrapper .nav-container .logo-container {
    max-width: 130px;
  }
}
header .head-wrapper .nav-container .logo-container a {
  display: block;
}
header .head-wrapper .nav-container .logo-container a img {
  width: 100%;
}
header .head-wrapper .nav-container .logo-container .dark-logo {
  display: none;
}
header .head-wrapper .nav-container .logo-container .light-logo {
  display: block;
}
header.light-header .head-wrapper .logo-container .dark-logo {
  display: block;
}
header.light-header .head-wrapper .logo-container .light-logo {
  display: none;
}
header.light-header.fixed-top {
  background: white;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
header .toggle-container {
  background: #0A1748;
  padding: 12px 19px;
  border-radius: 50px;
  display: none;
}
@media (max-width: 992px) {
  header .toggle-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
    z-index: 10;
    position: relative;
  }
}
header .toggle-container .search-icon {
  color: white;
  display: inline-block;
  width: 27px;
  height: 27px;
  opacity: 1;
  z-index: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  right: 0;
}
header .toggle-container .search-icon.open {
  right: 1rem;
}

.site-header {
  position: absolute;
  z-index: 10;
  width: 100%;
  top: 0px;
  background: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.site-header.fixed-top {
  top: -40px;
  z-index: 100;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: fixed;
  background: #0A1748;
  -webkit-box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.3019607843);
          box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.3019607843);
}
.site-header.fixed-top .nav-container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.site-header.fixed-top .nav-container .logo-container {
  max-width: 180px !important;
}
@media (max-width: 768px) {
  .site-header.fixed-top .nav-container .logo-container {
    max-width: 100px !important;
  }
}

#footer {
  padding-top: 80px;
  padding-bottom: 20px;
  background-color: #0A1748;
  font-size: 0.889rem;
  color: white;
}
#footer .top-menu {
  margin-bottom: 70px;
}
#footer .bottom-menu .bottom-footer-content {
  opacity: 0.5;
}
#footer .bottom-menu .bottom-footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  #footer .bottom-menu .bottom-footer-menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#footer .bottom-menu .bottom-footer-menu ul {
  padding: 0px;
}
#footer .bottom-menu .bottom-footer-menu ul li {
  margin-left: 0px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  #footer .bottom-menu .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 768px) {
  #footer .bottom-menu .menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1rem;
  }
}
#footer .locations h5 {
  margin-top: 0px;
  margin-bottom: 15px;
}
#footer .locations address.location {
  margin-bottom: 25px;
  font-style: normal;
}
#footer .subscribe-form {
  margin-bottom: 43px;
}
@media (max-width: 768px) {
  #footer .subscribe-form {
    margin-top: 43px;
  }
}
#footer .subscribe-form .gform_wrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .subscribe-form .gform_wrapper .gform_body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield .gfield_label {
  display: none;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield input {
  font-size: 1rem;
  background-color: #0A1748;
  border-bottom: 1px solid white;
  color: white;
  margin: 0;
  outline: none;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield input::-webkit-input-placeholder {
  opacity: 0.6;
  color: white;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield input::-moz-placeholder {
  opacity: 0.6;
  color: white;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield input:-ms-input-placeholder {
  opacity: 0.6;
  color: white;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield input::-ms-input-placeholder {
  opacity: 0.6;
  color: white;
}
#footer .subscribe-form .gform_wrapper .gform_body .gfield input::placeholder {
  opacity: 0.6;
  color: white;
}
#footer .subscribe-form .gform_wrapper .gform_footer {
  border-bottom: 1px solid white;
  margin: 0px;
  padding: 0px;
  position: relative;
}
#footer .subscribe-form .gform_wrapper .gform_footer:after {
  content: "";
  position: absolute;
  background-color: #0A1748;
  inset: 0;
  background: url(../images/form-arrow-light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  z-index: 0;
}
#footer .subscribe-form .gform_wrapper .gform_footer input {
  height: 100%;
  padding-left: 0.5rem;
  margin: 0px;
  z-index: 1;
  opacity: 0;
}
#footer .subscribe-form .gform_wrapper .gform_footer input:hover {
  cursor: pointer;
}
#footer .contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .contact-container .social-media a {
  color: white;
}
#footer .contact-container .social-media a:hover {
  color: #4ECFE6;
}
#footer .contact-container .social-media .linkedin {
  width: 21.5px;
  height: 21.5px;
}

@media (max-width: 992px) {
  .desktop-container {
    display: none;
  }
}
.desktop-container ul {
  list-style-type: none;
}
.desktop-container ul li a {
  text-decoration: none;
  font-size: 0.889rem;
}
.desktop-container ul#menu-main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
}
.desktop-container ul#menu-main-menu li a {
  border-left: 3px solid transparent;
  padding-left: 5px;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  color: white;
}
.desktop-container ul#menu-main-menu li:hover ul.dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.desktop-container ul#menu-main-menu li:hover > a {
  border-left: 3px solid #3091BA;
  color: #4ECFE6 !important;
}
.desktop-container ul#menu-main-menu li.active > a {
  border-left: 3px solid #3091BA;
}
.desktop-container ul#menu-main-menu li ul.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  padding-top: 10px;
  padding-left: 0px;
}
.desktop-container ul#menu-main-menu li ul.dropdown-menu li {
  background: white;
}
.desktop-container ul#menu-main-menu li ul.dropdown-menu li a {
  padding: 8px 30px 8px 10px;
  display: block;
  color: #0A1748;
}
.desktop-container .top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.desktop-container .top-menu .top-menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: white;
  padding: 0px 0px 0px 20px;
  border-radius: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.desktop-container .top-menu .top-menu-container ul#menu-top-menu {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.desktop-container .top-menu .top-menu-container ul#menu-top-menu li {
  display: inline-block;
  margin: 0px 15px;
  padding: 8px 0px 12px 0px;
}
.desktop-container .top-menu .top-menu-container ul#menu-top-menu li a {
  color: #0A1748;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
}
.desktop-container .top-menu .top-menu-container ul#menu-top-menu li a:hover {
  color: #4ECFE6;
}
.desktop-container .top-menu .top-menu-container #desktopSearch.search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  background-color: white;
  border-radius: 30px;
  top: 0;
  bottom: 0;
  padding: 10px 0px 10px 0px;
  right: 3rem;
  overflow: hidden;
}
.desktop-container .top-menu .top-menu-container #desktopSearch.search-container form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.desktop-container .top-menu .top-menu-container #desktopSearch.search-container form input {
  width: 100%;
  padding: 5px 25px;
  font-size: 16px;
  height: auto;
  border-radius: 30px;
  border: 1px solid #BFBFBF;
  outline: none;
}
.desktop-container .top-menu .top-menu-container #desktopSearch.search-container form .submit-container {
  margin: 0px;
  padding: 0px;
  position: relative;
}
.desktop-container .top-menu .top-menu-container #desktopSearch.search-container form .submit-container:after {
  content: "";
  position: absolute;
  background-color: #0A1748;
  inset: 0;
  background: url(../images/form-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  z-index: 0;
}
.desktop-container .top-menu .top-menu-container #desktopSearch.search-container form .submit-container input[type=submit] {
  width: 50px;
  opacity: 0;
  z-index: 1;
  position: relative;
}
.desktop-container .top-menu .search-icon {
  display: inline-block;
  color: #0A1748;
  background-color: white;
  padding: 5px;
  margin: 5px 20px 5px 5px;
  z-index: 2;
}
.desktop-container .top-menu .search-icon svg {
  width: 27px;
}
.desktop-container .top-menu .search-icon:hover {
  color: #4ECFE6;
  cursor: pointer;
}

@media (min-width: 992px) {
  .mobile-dropdown-arrow {
    display: none;
  }
}
.mobile-container .mobile-navigation ul.mobile-nav {
  padding: 0px;
  text-align: left;
}
.mobile-container .mobile-navigation ul.mobile-nav li {
  display: block;
  position: relative;
}
.mobile-container .mobile-navigation ul.mobile-nav li.show.menu-item-has-children:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-container .mobile-navigation ul.mobile-nav li.menu-item-has-children:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background-color: #3091BA;
  left: -10px;
}
.mobile-container .mobile-navigation ul.mobile-nav li.menu-item-has-children a.nav-link {
  padding: 10px 5px;
}
.mobile-container .mobile-navigation ul.mobile-nav li.menu-item-has-children .mobile-dropdown-arrow {
  background: rgba(255, 255, 255, 0.0784313725);
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  padding: 10px 9px;
  border-radius: 5px;
  line-height: 1;
}
.mobile-container .mobile-navigation ul.mobile-nav li.menu-item-has-children .mobile-dropdown-arrow svg {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-container .mobile-navigation ul.mobile-nav li.menu-item-has-children .mobile-dropdown-arrow.show svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.mobile-container .mobile-navigation ul.mobile-nav li a {
  padding: 10px 5px;
  display: block;
  text-decoration: none;
  color: white;
}
.mobile-container .mobile-navigation ul.mobile-nav li .dropdown-menu {
  max-height: 0;
  position: relative;
  top: auto;
  left: auto;
  background: None;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-in-out;
  transition: max-height 0.4s ease-in-out;
  margin: 0px;
}
.mobile-container .mobile-navigation ul.mobile-nav li .dropdown-menu.show {
  max-height: 500px;
  position: relative !important;
  -webkit-transform: translate3d(0px, 0px, 0px) !important;
          transform: translate3d(0px, 0px, 0px) !important;
}
.mobile-container .mobile-navigation ul.mobile-nav li .dropdown-menu > li {
  margin: 5px 0px;
  opacity: 0.8;
}
.mobile-container .mobile-navigation ul.mobile-nav li .dropdown-menu > li a {
  padding: 10px 5px;
  font-size: 14px;
  color: #fff;
}
.mobile-container .mobile-navigation ul.mobile-nav li .dropdown-menu > li a:hover {
  background: none;
  color: #FAFAFA;
}
.mobile-container .mobile-navigation .menu-main-menu-container {
  margin-top: 80px;
}
.mobile-container .mobile-navigation .menu-top-menu-container ul {
  background-color: white;
  border-radius: 30px;
  padding: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.mobile-container .mobile-navigation,
.mobile-container #mobileSearch.search-container {
  position: absolute;
  display: block;
  border-radius: 50px;
  z-index: -1;
  height: 49px;
  width: 113px;
  right: 33px;
  top: 19px;
  padding: 0 35px;
  background: #0A1748;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 992px) {
  .mobile-container .mobile-navigation,
.mobile-container #mobileSearch.search-container {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .mobile-container .mobile-navigation,
.mobile-container #mobileSearch.search-container {
    top: 35px;
  }
}
.mobile-container .mobile-navigation.hide,
.mobile-container #mobileSearch.search-container.hide {
  opacity: 0;
}
.mobile-container #mobileSearch.search-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mobile-container #mobileSearch.search-container form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mobile-container #mobileSearch.search-container form input {
  width: 100%;
  padding: 5px;
  height: auto;
  border-radius: 30px;
  border: 1px solid #BFBFBF;
  outline: none;
}
.mobile-container #mobileSearch.search-container form .submit-container {
  margin: 0px;
  padding: 0px;
  position: relative;
}
.mobile-container #mobileSearch.search-container form .submit-container:after {
  content: "";
  position: absolute;
  background-color: #0A1748;
  inset: 0;
  background: url(../images/form-arrow-light.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  z-index: 0;
}
.mobile-container #mobileSearch.search-container form .submit-container input[type=submit] {
  width: 50px;
  opacity: 0;
  z-index: 1;
  position: relative;
}

.menutoggler {
  display: none;
  width: 25px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  vertical-align: middle;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: relative;
  right: 0;
}
.menutoggler:hover {
  cursor: pointer;
}
@media (max-width: 992px) {
  .menutoggler {
    display: inline-block;
  }
}
.menutoggler .bar {
  height: 3px;
  border-radius: 3px;
  width: 100%;
  background: white;
  margin-bottom: 6px;
}
.menutoggler .bar:last-child {
  margin-bottom: 0;
}
.menutoggler .bar.bar2 {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 1;
}
.menutoggler .bar.bar1, .menutoggler .bar.bar3 {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.menutoggler.open {
  right: -3rem;
}
.menutoggler.open .bar1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: 10px;
}
.menutoggler.open .bar2 {
  opacity: 0;
}
.menutoggler.open .bar3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

header.fixed-top .mobile-navigation,
header.fixed-top #mobileSearch.search-container {
  top: 10px;
}
@media (min-width: 768px) {
  header.fixed-top .mobile-navigation,
header.fixed-top #mobileSearch.search-container {
    top: 18px;
  }
}
header.active .mobile-navigation {
  max-height: 100vh;
  height: 100vh;
  width: 100vw;
  border-radius: 0px;
  right: 0;
  top: 0;
  z-index: 1;
  color: white;
}
@media (min-width: 480px) {
  header.active .mobile-navigation {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
header.active .mobile-navigation.hide {
  opacity: 1;
}
header.active .search-icon {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
header.search-bar #mobileSearch.search-container {
  width: 100%;
  height: 100%;
  border-radius: 0px;
  right: 0;
  top: 0;
  z-index: 1;
  color: white;
  padding-right: 26%;
  opacity: 1;
}
header.search-bar #mobileSearch.search-container.hide {
  opacity: 1;
}
header.search-bar #desktopSearch.search-container {
  width: 100% !important;
  border-radius: 0px;
  z-index: 1;
  color: white;
  padding: 10px 0px 10px 15px !important;
  right: 4rem !important;
  background-color: white !important;
  opacity: 1;
}
header.search-bar #desktopSearch.search-container.hide {
  opacity: 0;
}
header.search-bar .menutoggler {
  opacity: 0;
  visibility: hidden;
  right: 1rem;
  width: 0px;
}

header.light-header .desktop-container ul#menu-main-menu li a {
  color: #0A1748;
}
header.light-header .desktop-container ul#menu-main-menu li ul.dropdown-menu li {
  background: #0A1748 !important;
}
header.light-header .desktop-container ul#menu-main-menu li ul.dropdown-menu li a {
  color: white;
}
header.light-header .desktop-container .top-menu .top-menu-container {
  background: #0A1748;
}
header.light-header .desktop-container .top-menu .top-menu-container ul#menu-top-menu li a {
  color: white;
}
header.light-header .desktop-container .top-menu .top-menu-container #desktopSearch.search-container {
  background-color: #0A1748 !important;
}
header.light-header .desktop-container .top-menu .top-menu-container .submit-container:after {
  background-image: url(../images/form-arrow-light.svg) !important;
}
header.light-header .desktop-container .top-menu .search-icon {
  color: white;
  background-color: #0A1748;
}
header.light-header .desktop-container .top-menu .search-icon:hover {
  color: #4ECFE6;
}
header.light-header.search-bar #desktopSearch.search-container {
  background-color: #0A1748 !important;
}

#footer .bottom-menu ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
}
#footer .bottom-menu ul li {
  margin: 0 5px;
}
#footer .bottom-menu a {
  color: white;
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#footer .bottom-menu a:hover {
  opacity: 1;
}

.banner {
  padding: 230px 0px 150px 0px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .banner {
    padding: 170px 0px 90px 0px;
  }
}
.banner .container {
  position: relative;
  z-index: 2;
  height: 100%;
}
.banner .container .row {
  -ms-flex-line-pack: center;
      align-content: center;
}
.banner.banner-home .content-container .heading {
  font-size: 3.111rem;
  line-height: 60px;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .banner.banner-home .content-container .heading {
    font-size: 3.056rem;
    line-height: 60px;
  }
}
@media (min-width: 992px) {
  .banner.banner-home .content-container .heading {
    font-size: 4.3rem;
    line-height: 80px;
  }
}
@media (min-width: 1300px) {
  .banner.banner-home .content-container .heading {
    font-size: 6.056rem;
    margin-bottom: 41px;
    line-height: 120px;
  }
}
.banner.banner-home .content-container .heading .color-change {
  color: #4ECFE6;
}
.banner.banner-home .content-container .description {
  font-size: 1.111rem;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .banner.banner-home .content-container .description {
    font-size: 1.55rem;
  }
}
@media (min-width: 992px) {
  .banner.banner-home .content-container .description {
    font-size: 2.222rem;
    margin-bottom: 41px;
  }
}
.banner.banner-home .image-side {
  display: none;
}
@media (min-width: 992px) {
  .banner.banner-home .image-side {
    display: block;
  }
}
.banner.banner-home .image-side .image-container {
  position: relative;
}
.banner.banner-home .image-side .image-container img {
  max-height: 750px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner.banner-home .image-side .image-container .yellow-bars.two {
  position: absolute;
  width: 106px;
  height: 164px;
  z-index: 1;
  bottom: -3rem;
  left: -3.5rem;
}
.banner.banner-home .image-side .image-container .yellow-bars.three {
  position: absolute;
  width: 106px;
  height: 164px;
  z-index: 1;
  right: 0;
  top: 1rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.banner.banner-home .image-side .image-container .side-icon {
  position: absolute;
  width: 300px;
  bottom: -8rem;
  right: -8.7rem;
}
.banner.banner-home .background-items {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
@media (min-width: 480px) {
  .banner.banner-home .background-items {
    bottom: inherit;
  }
}
.banner.banner-home .background-items .gray-circle {
  position: relative;
  z-index: 1;
  border-radius: 100%;
  background: #F4F4F4;
  top: 9rem;
  right: -30%;
  height: 400px;
  width: 500px;
}
.banner.banner-home .background-items .gray-circle .dot-grid {
  height: 450px;
  width: 750px;
  position: absolute;
  bottom: -4rem;
}
@media (max-width: 480px) {
  .banner.banner-home .background-items .gray-circle .dot-grid {
    display: none;
  }
}
@media (min-width: 480px) {
  .banner.banner-home .background-items .gray-circle {
    top: 0rem;
    right: -30%;
    height: 700px;
    width: 1000px;
  }
}
@media (min-width: 768px) {
  .banner.banner-home .background-items .gray-circle {
    top: -6rem;
    right: -34%;
    height: 800px;
    width: 1100px;
  }
}
@media (min-width: 1200px) {
  .banner.banner-home .background-items .gray-circle {
    top: -10rem;
    right: -35%;
    height: 1400px;
    width: 1700px;
  }
}
.banner.banner-home .background-items .yellow-bars {
  top: 20%;
  position: absolute;
  width: 70px;
  height: 164px;
  left: -2.5rem;
}
@media (min-width: 768px) {
  .banner.banner-home .background-items .yellow-bars {
    left: 0;
  }
}
.banner.banner-home .background-items .yellow-bars.two {
  width: 106px;
  height: 164px;
  top: auto;
  bottom: 20%;
  right: -3.5rem;
  left: auto;
  z-index: 1;
}
@media (min-width: 992px) {
  .banner.banner-home .background-items .yellow-bars.two {
    display: none;
  }
}
.banner.inner-banner {
  overflow: visible;
  position: relative;
  color: white;
  background-color: #0A1748;
}
.banner.inner-banner .content-container .heading {
  font-size: 2.222rem;
  line-height: normal;
}
@media (min-width: 992px) {
  .banner.inner-banner .content-container .heading {
    font-size: 2.778rem;
  }
}
@media (min-width: 1300px) {
  .banner.inner-banner .content-container .heading {
    font-size: 3.333rem;
  }
}
.banner.inner-banner .content-container .description {
  font-size: 0.887rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .banner.inner-banner .content-container .description {
    font-size: 1rem;
  }
}
@media (min-width: 1300px) {
  .banner.inner-banner .content-container .description {
    font-size: 1.333rem;
  }
}
.banner.inner-banner .hero-image {
  position: absolute;
  right: 0;
}
@media (max-width: 992px) {
  .banner.inner-banner .hero-image {
    display: none;
  }
}
@media (max-width: 1400px) {
  .banner.inner-banner .hero-image {
    width: 500px;
  }
}
.banner.inner-banner .hero-image.hero-style-1 {
  bottom: -12.9rem;
}
@media (max-width: 1400px) {
  .banner.inner-banner .hero-image.hero-style-1 {
    bottom: -9.3rem;
  }
}
.banner.inner-banner .hero-image.hero-style-2 {
  bottom: -13.2rem;
}
@media (max-width: 1400px) {
  .banner.inner-banner .hero-image.hero-style-2 {
    bottom: -9.3rem;
  }
}
.banner.inner-banner .hero-image.hero-style-3 {
  bottom: -22.8rem;
}
@media (max-width: 1400px) {
  .banner.inner-banner .hero-image.hero-style-3 {
    bottom: -16.2rem;
  }
}
.banner.inner-banner .hero-image.hero-style-4 {
  bottom: 0rem;
}
.banner.inner-banner .hero-image.hero-style-5 {
  bottom: -3.6rem;
}
.banner.inner-banner .hero-image.hero-style-6 {
  bottom: -8.8rem;
}
.banner.inner-banner .hero-image.hero-style-7 {
  bottom: 0rem;
}
.banner.inner-banner .hero-image.hero-style-8 {
  bottom: -12.3rem;
}
.banner.inner-banner .hero-image.hero-style-9 {
  bottom: 0rem;
}
.banner.transaction-banner {
  padding-bottom: 110px;
  color: #0A1748;
  background-color: white;
}
@media (max-width: 992px) {
  .banner.transaction-banner {
    padding: 90px 0px 90px 0px;
  }
}
.banner.transaction-banner .content-container .description {
  font-size: 0.887rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .banner.transaction-banner .content-container .description {
    font-size: 1rem;
  }
}
@media (min-width: 1300px) {
  .banner.transaction-banner .content-container .description {
    font-size: 1.333rem;
  }
}
.banner.transaction-banner .image-container .small {
  font-size: 14px;
  margin-bottom: 10px;
}
.banner.simple-banner {
  color: #0A1748;
  background-color: #FAFAFA;
  padding-bottom: 0px;
}
.banner.simple-banner .content-container .description {
  font-size: 0.887rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .banner.simple-banner .content-container .description {
    font-size: 1rem;
  }
}
@media (min-width: 1300px) {
  .banner.simple-banner .content-container .description {
    font-size: 1.333rem;
  }
}
.banner.simple-banner .box {
  right: 0rem;
  color: #4ECFE6;
  width: 180px;
}
@media (max-width: 768px) {
  .banner.simple-banner .box {
    width: 20vw;
  }
}
.banner.simple-banner .dot-grid {
  width: 450px;
  position: absolute;
  right: 0;
}
.banner.simple-banner .yellow-bars {
  right: 5rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 768px) {
  .banner.simple-banner .yellow-bars {
    right: 10%;
  }
}
.banner.post-banner .content-container {
  max-width: 840px;
  margin: 0 auto;
}

.column-home {
  padding: 10rem 0rem;
  margin: 5rem 0rem;
}
@media (max-width: 992px) {
  .column-home {
    padding: 2rem 0rem;
    margin: 5rem 0rem;
  }
}
.column-home .image-container {
  position: relative;
}
.column-home .image-container .image {
  z-index: 1;
  border-radius: 50%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: 250px;
  width: 250px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .column-home .image-container .image {
    height: 350px;
    width: 350px;
  }
}
@media (min-width: 768px) {
  .column-home .image-container .image {
    height: 450px;
    width: 450px;
  }
}
@media (min-width: 992px) {
  .column-home .image-container .image {
    height: 350px;
    width: 350px;
  }
}
@media (min-width: 1380px) {
  .column-home .image-container .image {
    height: 540px;
    width: 540px;
    margin-left: auto;
    margin-right: 0%;
  }
}
.column-home .image-container .image .background-shape {
  top: 6.9rem;
  left: -6.9rem;
  height: 265px;
  position: absolute;
}
@media (min-width: 480px) {
  .column-home .image-container .image .background-shape {
    height: 375px;
    top: 9.5rem;
    left: -9.7rem;
  }
}
@media (min-width: 768px) {
  .column-home .image-container .image .background-shape {
    height: 475px;
    top: 12.4rem;
    left: -12.3rem;
  }
}
@media (min-width: 992px) {
  .column-home .image-container .image .background-shape {
    height: 365px;
    top: 9.8rem;
    left: -9.5rem;
  }
}
@media (min-width: 1380px) {
  .column-home .image-container .image .background-shape {
    height: auto;
    top: 15rem;
    left: -14.7rem;
  }
}
.column-home .image-container svg.rise-bars {
  z-index: 0;
  right: 50%;
  top: -30%;
}
@media (max-width: 768px) {
  .column-home .image-container svg.rise-bars {
    width: 300px;
    right: 30%;
  }
}
.column-home .content-container {
  margin-top: 7rem;
  font-size: 18px;
  line-height: 28px;
  max-width: 870px;
  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;
  height: 100%;
}
@media (min-width: 768px) {
  .column-home .content-container {
    margin-top: 10rem;
  }
}
@media (min-width: 992px) {
  .column-home .content-container {
    line-height: 36px;
    font-size: 24px;
    margin-top: 0rem;
  }
}
.column-home .content-container .heading {
  font-size: 36px;
  color: #4ECFE6;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 992px) {
  .column-home .content-container .heading {
    text-align: left;
    font-size: 60px;
  }
}

.column-image {
  padding: 7rem 0rem;
}
@media (max-width: 992px) {
  .column-image {
    padding: 2rem 0rem;
    margin: 2rem 0rem;
    overflow: hidden;
  }
}
.column-image .image-container {
  margin-bottom: 7rem;
}
@media (min-width: 768px) {
  .column-image .image-container {
    margin-bottom: 10rem;
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .column-image .image-container {
    margin-bottom: 0rem;
    margin-top: 0rem;
  }
}
.column-image .image-container .image {
  border-radius: 50%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 250px;
  width: 250px;
  margin: 0 auto;
}
.column-image .image-container .image.right {
  margin-left: auto;
  margin-right: 0%;
}
@media (max-width: 992px) {
  .column-image .image-container .image.right {
    margin: 0 auto;
  }
}
@media (min-width: 480px) {
  .column-image .image-container .image {
    height: 350px;
    width: 350px;
  }
}
@media (min-width: 768px) {
  .column-image .image-container .image {
    height: 450px;
    width: 450px;
  }
}
@media (min-width: 992px) {
  .column-image .image-container .image {
    height: 350px;
    width: 350px;
  }
}
@media (min-width: 1380px) {
  .column-image .image-container .image {
    height: 503px;
    width: 503px;
    margin-left: 0%;
    margin-right: auto;
  }
}
.column-image .image-container .image .circle {
  width: 100px;
  z-index: -1;
  top: -1rem;
  right: -1rem;
}
@media (min-width: 480px) {
  .column-image .image-container .image .circle {
    width: 300px;
    top: -5rem;
    right: -5rem;
  }
}
.column-image .image-container .image .background-shape {
  position: absolute;
}
.column-image .image-container .image .background-shape.style_1 {
  width: 200px;
  bottom: -2.9rem;
  left: -2.5rem;
  z-index: 1;
}
@media (min-width: 480px) {
  .column-image .image-container .image .background-shape.style_1 {
    width: 300px;
    left: -3.5em;
    bottom: -4.3rem;
  }
}
@media (min-width: 768px) {
  .column-image .image-container .image .background-shape.style_1 {
    width: 400px;
    left: -5.5em;
    bottom: -5.5rem;
  }
}
.column-image .image-container .image .background-shape.style_2 {
  width: 300px;
  bottom: -6.4rem;
  right: -6.4rem;
}
@media (min-width: 480px) {
  .column-image .image-container .image .background-shape.style_2 {
    width: 400px;
    right: -8.4rem;
    bottom: -8.5rem;
  }
}
@media (min-width: 768px) {
  .column-image .image-container .image .background-shape.style_2 {
    width: 500px;
    bottom: -10.4rem;
    right: -10.43rem;
  }
}
@media (min-width: 992px) {
  .column-image .image-container .image .background-shape.style_2 {
    width: 450px;
    bottom: -9.7rem;
    right: -9.6rem;
  }
}
@media (min-width: 1380px) {
  .column-image .image-container .image .background-shape.style_2 {
    width: 600px;
    bottom: -12.7rem;
    right: -12.6rem;
  }
}
.column-image .image-container .image .background-shape.style_3 {
  width: 200px;
  bottom: -1.9rem;
  left: -2rem;
}
@media (min-width: 480px) {
  .column-image .image-container .image .background-shape.style_3 {
    width: 300px;
    bottom: -2.9rem;
    left: -3rem;
  }
}
@media (min-width: 768px) {
  .column-image .image-container .image .background-shape.style_3 {
    width: 400px;
    bottom: -3.9rem;
    left: -4rem;
  }
}
@media (min-width: 992px) {
  .column-image .image-container .image .background-shape.style_3 {
    width: 300px;
    bottom: -2.9rem;
    left: -3rem;
  }
}
@media (min-width: 1380px) {
  .column-image .image-container .image .background-shape.style_3 {
    width: auto;
    bottom: -4.4rem;
    left: -4.3rem;
  }
}
.column-image .image-container .image .the-image {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  z-index: 2;
  border-radius: 50%;
}
.column-image .content-container {
  z-index: 1;
  position: relative;
  font-size: 18px;
  line-height: 28px;
  max-width: 870px;
  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;
  height: 100%;
}
@media (min-width: 992px) {
  .column-image .content-container {
    line-height: 36px;
    font-size: 24px;
    margin-top: 0rem;
  }
}
.column-image .content-container .heading {
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 992px) {
  .column-image .content-container .heading {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .column-image .mobile-order {
    -webkit-box-ordinal-group: initial !important;
        -ms-flex-order: initial !important;
            order: initial !important;
  }
}

.columns-team {
  overflow: hidden;
  padding: 7rem 0rem;
  background: #F4F4F4;
  position: relative;
}
.columns-team .heading {
  margin-bottom: 1.5rem;
}
.columns-team .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
  position: relative;
}
.columns-team .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.columns-team .content-container .button-container .btn, .columns-team .content-container .button-container #single-post .post form input[type=submit], #single-post .post form .columns-team .content-container .button-container input[type=submit], .columns-team .content-container .button-container #single-post .post .wp-block-button a, #single-post .post .wp-block-button .columns-team .content-container .button-container a, .columns-team .content-container .button-container .form-section input[type=submit], .form-section .columns-team .content-container .button-container input[type=submit], .columns-team .content-container .button-container .form-style input[type=submit], .form-style .columns-team .content-container .button-container input[type=submit] {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.columns-team .team-member {
  text-align: center;
}
@media (max-width: 992px) {
  .columns-team .team-member {
    margin-top: 4rem;
  }
}
.columns-team .team-member h4 {
  margin-bottom: 0px;
  color: #3091BA;
}
.columns-team .team-member p {
  margin-top: 0px;
}
.columns-team .team-member img {
  width: 100%;
  border-radius: 50%;
  border: 25px solid #3091BA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  aspect-ratio: 1/1;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}
.columns-team .team-member img.other-color {
  border: 25px solid #4ECFE6;
}
.columns-team .image-container {
  margin-bottom: 3rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .columns-team .image-container {
    margin-bottom: 10rem;
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .columns-team .image-container {
    margin-bottom: 0rem;
    margin-top: 0rem;
  }
}
.columns-team .image-container .image {
  border-radius: 50%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 250px;
  width: 250px;
  margin: 0 auto;
}
.columns-team .image-container .image.right {
  margin-left: auto;
  margin-right: 0%;
}
@media (max-width: 992px) {
  .columns-team .image-container .image.right {
    margin: 0 auto;
  }
}
@media (min-width: 480px) {
  .columns-team .image-container .image {
    height: 350px;
    width: 350px;
  }
}
@media (min-width: 768px) {
  .columns-team .image-container .image {
    height: 450px;
    width: 450px;
  }
}
@media (min-width: 992px) {
  .columns-team .image-container .image {
    height: 350px;
    width: 350px;
  }
}
@media (min-width: 1380px) {
  .columns-team .image-container .image {
    height: 503px;
    width: 503px;
    margin-left: 0%;
    margin-right: auto;
  }
}
.columns-team .image-container .image .circle {
  width: 100px;
  z-index: -1;
  top: -1rem;
  right: -1rem;
}
@media (min-width: 480px) {
  .columns-team .image-container .image .circle {
    width: 300px;
    top: -5rem;
    right: -5rem;
  }
}
.columns-team .image-container .image .background-shape {
  position: absolute;
}
.columns-team .image-container .image .background-shape.style_1 {
  width: 200px;
  bottom: -2.9rem;
  left: -2.5rem;
  z-index: 1;
}
@media (min-width: 480px) {
  .columns-team .image-container .image .background-shape.style_1 {
    width: 300px;
    left: -3.5em;
    bottom: -4.3rem;
  }
}
@media (min-width: 768px) {
  .columns-team .image-container .image .background-shape.style_1 {
    width: 400px;
    left: -5.5em;
    bottom: -5.5rem;
  }
}
.columns-team .image-container .image .background-shape.style_2 {
  width: 300px;
  bottom: -6.4rem;
  right: -6.4rem;
}
@media (min-width: 480px) {
  .columns-team .image-container .image .background-shape.style_2 {
    width: 400px;
    right: -8.4rem;
    bottom: -8.5rem;
  }
}
@media (min-width: 768px) {
  .columns-team .image-container .image .background-shape.style_2 {
    width: 500px;
    bottom: -10.4rem;
    right: -10.43rem;
  }
}
@media (min-width: 992px) {
  .columns-team .image-container .image .background-shape.style_2 {
    width: 450px;
    bottom: -9.7rem;
    right: -9.6rem;
  }
}
@media (min-width: 1380px) {
  .columns-team .image-container .image .background-shape.style_2 {
    width: 600px;
    bottom: -12.7rem;
    right: -12.6rem;
  }
}
.columns-team .image-container .image .background-shape.style_3 {
  width: 200px;
  bottom: -1.9rem;
  left: -2rem;
}
@media (min-width: 480px) {
  .columns-team .image-container .image .background-shape.style_3 {
    width: 300px;
    bottom: -2.9rem;
    left: -3rem;
  }
}
@media (min-width: 768px) {
  .columns-team .image-container .image .background-shape.style_3 {
    width: 400px;
    bottom: -3.9rem;
    left: -4rem;
  }
}
@media (min-width: 992px) {
  .columns-team .image-container .image .background-shape.style_3 {
    width: 300px;
    bottom: -2.9rem;
    left: -3rem;
  }
}
@media (min-width: 1380px) {
  .columns-team .image-container .image .background-shape.style_3 {
    width: auto;
    bottom: -4.4rem;
    left: -4.3rem;
  }
}
.columns-team .dot-grid-circle {
  color: #BFBFBF;
  left: 3rem;
  top: 6rem;
  position: absolute;
}
.columns-team .yellow-bars {
  bottom: -1rem;
  left: 20rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 768px) {
  .columns-team .yellow-bars {
    left: 2rem;
  }
}
.columns-team .circle-center {
  position: absolute;
  top: 0;
  left: -6rem;
  width: 300px;
}

.columns-content {
  padding: 10rem 0rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .columns-content {
    padding: 5rem 0rem;
  }
}
.columns-content .hollow-circle {
  position: absolute;
  bottom: -13rem;
  left: -12rem;
  width: 460px;
}
@media (max-width: 768px) {
  .columns-content .hollow-circle {
    width: 300px;
    bottom: -10rem;
    left: -9rem;
  }
}
.columns-content .yellow-bars {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 80px;
  position: absolute;
  bottom: -1rem;
}
@media (min-width: 768px) {
  .columns-content .yellow-bars {
    left: 10rem;
    bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .columns-content .yellow-bars {
    width: 100px;
    left: 5rem;
    bottom: 6rem;
  }
}

.columns-list {
  margin: 7.5rem 0;
}
@media (max-width: 992px) {
  .columns-list {
    margin: 4rem 0;
  }
}
.columns-list .heading {
  margin-bottom: 1.5rem;
}
.columns-list .list {
  margin-top: 5.5rem;
}
.columns-list .list ul li {
  margin-bottom: 10px;
}
.columns-list .list ul li span {
  color: #3091BA;
}

.column-offset {
  padding: 7.5rem 0;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .column-offset {
    padding: 5rem 0;
  }
}
.column-offset .right-container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 220px;
}
@media (max-width: 992px) {
  .column-offset .right-container {
    margin-top: 150px;
  }
}
.column-offset .left-container,
.column-offset .right-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.column-offset .left-container .content,
.column-offset .right-container .content {
  position: relative;
  z-index: 1;
  max-width: 470px;
  color: white;
}
.column-offset .left-container .content .heading,
.column-offset .right-container .content .heading {
  font-weight: 500;
  margin-top: 0px;
  color: #FAD043;
}

.cards-columns {
  position: relative;
  padding: 10rem 0rem;
  margin: 5rem 0rem;
}
@media (max-width: 992px) {
  .cards-columns {
    padding: 5rem 0rem;
  }
}
.cards-columns .row {
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .cards-columns .row {
    gap: 30px;
  }
}
.cards-columns .content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 870px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.cards-columns .content .heading {
  font-weight: 500;
}
.cards-columns .card {
  padding: 1.867rem 1.567rem;
  -webkit-box-shadow: 0 3px 15px 3px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 0 3px 15px 3px rgba(0, 0, 0, 0.0901960784);
  text-align: center;
  position: relative;
  background-color: #fff;
}
@media (min-width: 992px) {
  .cards-columns .card {
    padding: 4.222rem 4.444rem;
  }
}
.cards-columns .card .heading {
  margin-top: 0px;
  color: #3091BA;
  font-weight: bold;
}
.cards-columns .card .yellow-bars {
  left: -3rem;
}
.cards-columns .box.blue {
  right: 10.5rem;
  bottom: 5rem;
  z-index: 0;
}
.cards-columns .box.yellow {
  right: 0rem;
  bottom: -5rem;
}
.cards-columns .rise-bars {
  z-index: 0;
}

.stats-row {
  padding: 50px 0px;
  background-color: #4ECFE6;
}
.stats-row .stat {
  text-align: center;
}
.stats-row .stat .heading {
  margin: 0px;
  font-size: 80px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
}
.stats-row .stat p {
  margin-bottom: 0px;
}

.transactions-row {
  background-color: #FAFAFA;
  overflow: hidden;
  position: relative;
  padding: 10rem 0rem;
}
@media (max-width: 992px) {
  .transactions-row {
    padding: 5rem 0rem;
  }
}
.transactions-row .container {
  position: relative;
  overflow: hidden;
}
.transactions-row .content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 870px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .transactions-row .content {
    margin-bottom: 20px;
  }
}
.transactions-row .content .heading {
  font-weight: 500;
}
.transactions-row .button-container {
  text-align: center;
}
@media (max-width: 992px) {
  .transactions-row .box {
    display: none;
  }
}
.transactions-row .box.primary {
  left: 9%;
  top: 5rem;
}
.transactions-row .box.yellow {
  top: 14.8rem;
  left: -1%;
}
.transactions-row .yellow-bars {
  rotate: 90deg;
  bottom: -3.5rem;
  left: 10rem;
}
@media (max-width: 480px) {
  .transactions-row .yellow-bars {
    bottom: -6rem;
  }
}
.transactions-row .circle.lightblue {
  right: 10rem;
}
@media (max-width: 480px) {
  .transactions-row .circle.lightblue {
    bottom: -18rem;
    right: 8rem;
  }
}
.transactions-row .circle.blue {
  right: 0;
  bottom: -5rem;
}
@media (max-width: 480px) {
  .transactions-row .circle.blue {
    z-index: -1;
  }
}
.transactions-row .circle-dots {
  width: 150px;
  right: 25rem;
  bottom: 4rem;
  color: #FAD043;
}
.transactions-row .transaction-slide-container {
  position: relative;
  overflow: hidden;
  padding: 2rem 0.5rem;
  margin: 0rem 2.5rem;
}
@media (max-width: 768px) {
  .transactions-row .transaction-slide-container {
    padding: 2rem 1rem;
    margin: 0rem 0.5rem;
  }
}
.transactions-row .swiper-button-next,
.transactions-row .swiper-button-prev {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background: none;
  width: 30px;
  height: 30px;
  bottom: 40%;
  top: auto;
}
.transactions-row .swiper-button-next .arrow,
.transactions-row .swiper-button-prev .arrow {
  width: 100%;
  height: 100%;
}
.transactions-row .swiper-button-next:hover,
.transactions-row .swiper-button-prev:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.transactions-row .swiper-button-next:after,
.transactions-row .swiper-button-prev:after {
  display: none;
}
.transactions-row .swiper-button-next {
  right: 1.5rem;
}
.transactions-row .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 480px) {
  .transactions-row .swiper-button-next {
    right: 0.5rem;
  }
}
.transactions-row .swiper-button-prev {
  left: 1.5rem;
}
@media (max-width: 480px) {
  .transactions-row .swiper-button-prev {
    left: 0.5rem;
  }
}

.pagination-navigation {
  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;
}
.pagination-navigation span.current {
  color: white;
  background-color: #0A1748;
  padding: 0.3rem 0.6rem;
  border-radius: 50%;
}
.pagination-navigation .page-numbers {
  font-weight: bold;
  font-size: 18px;
  color: #0A1748;
  margin: 0.5rem;
}
.pagination-navigation .page-numbers .arrow {
  height: 17px;
  width: 30px;
  margin-top: 5px;
}
.pagination-navigation .page-numbers .arrow.flip {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.transaction-link {
  text-decoration: none;
  position: relative;
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.0901960784);
  height: 100%;
  margin: 5px;
}
.transaction-link .overlay {
  background: rgba(48, 145, 186, 0.8);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: auto;
  bottom: -100%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  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;
  overflow: hidden;
  opacity: 1;
}
.transaction-link .overlay span {
  color: white;
  font-size: 24px;
  font-weight: bolder;
  padding: 1rem 2rem;
  text-align: center;
}
.transaction-link:hover .overlay {
  top: auto;
  bottom: 0;
  height: 100%;
}
.transaction-link .transaction {
  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;
  position: relative;
  background: white;
  height: 100%;
  min-height: 550px;
}
.transaction-link .transaction .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 13px;
  display: block;
  background: #3091BA;
  color: #fff;
}
.transaction-link .transaction .first-logo {
  padding: 50px 30px 10px 30px;
}
.transaction-link .transaction .center-description {
  background: #EBEBEB;
  padding: 15px;
  text-align: center;
  color: #0A1748;
}
.transaction-link .transaction .second-logo,
.transaction-link .transaction .third-logo {
  padding: 10px 30px 10px 30px;
}
.transaction-link .transaction .first-logo,
.transaction-link .transaction .second-logo,
.transaction-link .transaction .third-logo {
  height: 200px;
  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;
}
.transaction-link .transaction .first-logo img,
.transaction-link .transaction .second-logo img,
.transaction-link .transaction .third-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  width: 100%;
}
.transaction-link .transaction.three-logos .first-logo,
.transaction-link .transaction.three-logos .second-logo,
.transaction-link .transaction.three-logos .third-logo {
  height: 110px;
}
.transaction-link .transaction.portfolio-comapny .center-description.small {
  background: none;
  padding: 0px;
  font-size: 13px;
  text-align: center;
  color: #0A1748;
}
.transaction-link .transaction.portfolio-comapny .center-description.small + .third-logo {
  height: 60px;
}

.all-transactions {
  margin: 100px auto;
}
.all-transactions article {
  margin-bottom: 2rem;
}

.transaction-search.search-container {
  max-width: 800px;
  margin: 0px auto 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.transaction-search.search-container form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.transaction-search.search-container form input {
  width: 100%;
  height: auto;
  border-radius: 30px;
  border: 1px solid #BFBFBF;
  outline: none;
  padding: 15px 25px;
  font-size: 18px;
}
.transaction-search.search-container form .submit-container {
  margin: 0px;
  padding: 0px;
  position: relative;
}
.transaction-search.search-container form .submit-container:after {
  content: "";
  position: absolute;
  background-color: #0A1748;
  inset: 0;
  background: url(../images/form-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  margin-left: 10px;
  z-index: 0;
  width: 53px;
}
.transaction-search.search-container form .submit-container input[type=submit] {
  margin-left: 10px;
  width: 50px;
  opacity: 0;
  z-index: 1;
  position: relative;
}
.transaction-search.search-container form .submit-container:hover input[type=submit] {
  cursor: pointer;
}
.transaction-search.search-container form .submit-container:hover:after {
  background-color: #e9e9e9;
  border-radius: 50%;
}

#single-transaction {
  background: white;
}
#single-transaction .transaction-category {
  background-color: #0A1748;
  display: inline-block;
  color: white;
  padding: 0.5rem 1rem;
  margin-top: 5px;
}
#single-transaction .transaction-type {
  background-color: #585858;
  display: inline-block;
  color: white;
  padding: 0.5rem 1rem;
  margin-top: 5px;
}
#single-transaction .content-container > .heading {
  margin-top: 37px;
}
#single-transaction h2.heading {
  margin: 30px 0px;
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 768px) {
  #single-transaction h2.heading {
    font-size: 32px;
  }
}
#single-transaction p {
  line-height: 1.5;
}
#single-transaction .transaction-details {
  padding: 0px;
  list-style-type: none;
}
#single-transaction .transaction-details li {
  padding: 3px 0px;
}
#single-transaction .transaction-details li .detail {
  min-width: 110px;
  color: #3091BA;
  display: inline-block;
}
#single-transaction .image-container {
  max-width: 330px;
  margin: 0 auto;
}
#single-transaction .image-container img {
  width: 100%;
  height: 150px;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
#single-transaction .entry-content {
  padding: 110px 0px;
}
@media (max-width: 992px) {
  #single-transaction .entry-content {
    padding: 30px 0px;
  }
}
#single-transaction .entry-content h2 {
  font-weight: 500;
}
#single-transaction .quote-container {
  margin-top: 150px;
}
@media (max-width: 992px) {
  #single-transaction .quote-container {
    margin: 50px 0px;
  }
}
#single-transaction .quote-container blockquote {
  margin: 0;
  font-size: 2rem;
  color: #3091BA;
}
@media (max-width: 992px) {
  #single-transaction .quote-container blockquote {
    font-size: 1.333rem;
  }
}
#single-transaction .team-container {
  text-align: center;
}
#single-transaction .team-container > .heading {
  font-size: 32px;
}
#single-transaction .team-member {
  text-align: center;
  margin-bottom: 4rem;
}
#single-transaction .team-member .heading {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #3091BA;
}
#single-transaction .team-member .heading a {
  color: #3091BA;
}
#single-transaction .team-member p {
  margin-top: 0px;
}
#single-transaction .team-member img {
  width: 200px;
  height: 200px;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 25px solid #3091BA;
}
#single-transaction .team-member img.other-color {
  border: 25px solid #4ECFE6;
}
#single-transaction .single-transaction-container {
  background-color: #f5f5f5;
}

#single-team {
  overflow: hidden;
  padding: 10rem 0;
}
@media (max-width: 992px) {
  #single-team {
    padding: 8rem 0;
  }
}
#single-team .image-container {
  max-width: 500px;
  max-height: 500px;
  margin: 0 auto;
  position: relative;
}
#single-team .image-container img {
  width: 100%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
  border-radius: 50%;
  border: 50px solid #3091BA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  aspect-ratio: 1/1;
}
@media (max-width: 992px) {
  #single-team .image-container img {
    border: 10px solid #3091BA;
  }
}
#single-team .image-container .contact-links {
  text-align: center;
  margin-top: 2rem;
}
#single-team .image-container .contact-links .icon {
  width: 18px;
  margin-right: 4px;
}
#single-team .image-container .contact-links .icon.mail {
  margin-right: 2px;
}
#single-team .image-container .contact-links a {
  margin-bottom: 5px;
  display: block;
}
#single-team .image-container .dot-grid-circle {
  color: #BFBFBF;
  bottom: 4rem;
  right: 0;
  position: absolute;
  width: 150px;
}
#single-team .team-content {
  line-height: 1.5;
}
#single-team .team-content .heading {
  color: #3091BA;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: normal;
}
#single-team .team-circle {
  position: absolute;
  width: 480px;
  bottom: -18rem;
  left: -13rem;
  z-index: -1;
}
@media (max-width: 992px) {
  #single-team .team-circle {
    bottom: auto;
  }
}
#single-team .box {
  right: 0;
  top: 10rem;
  color: #3091BA;
}
#single-team .yellow-bars {
  right: 0;
  top: 5rem;
}

#team-listing .teams-navigation {
  position: relative;
  z-index: 0;
  margin-top: 8rem;
}
@media (max-width: 992px) {
  #team-listing .teams-navigation {
    margin-top: 4rem;
  }
}
#team-listing .teams-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
}
#team-listing .teams-navigation ul li {
  padding: 1rem;
  display: block;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 992px) {
  #team-listing .teams-navigation ul li {
    padding: 0.5rem;
  }
}
#team-listing .teams-navigation ul li.overwrite {
  width: auto;
  height: auto;
  border-radius: inherit;
  background: none;
  opacity: 1;
}
#team-listing .teams-navigation ul li.swiper-pagination-bullet-active {
  background: #0A1748;
  color: white;
}
#team-listing .all-team {
  background: white;
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.1411764706);
  overflow: hidden;
}
#team-listing .swiper-pagination {
  position: relative;
}
#team-listing .swiper-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#team-listing .swiper-wrapper .swiper-slide {
  padding: 4rem;
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 992px) {
  #team-listing .swiper-wrapper .swiper-slide {
    padding: 1.5rem 1rem;
  }
}
#team-listing .team-link:hover {
  color: inherit !important;
}
#team-listing .team-member {
  text-align: center;
  margin-bottom: 2rem;
}
#team-listing .team-member figure {
  position: relative;
  line-height: 0;
  max-height: 280px;
  max-width: 280px;
  margin: 0 auto;
}
#team-listing .team-member figure img {
  width: 100%;
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: #3091BA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  background-color: transparent;
  max-height: 280px;
  height: auto;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
#team-listing .team-member figure:before, #team-listing .team-member figure:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#team-listing .team-member figure:before {
  margin: 16px;
  z-index: -1;
  background: #3091BA;
}
#team-listing .team-member figure:after {
  border: 0px solid #3091BA;
  background: transparent;
  margin: 14px;
}
#team-listing .team-member:hover figure:after {
  border: 15px solid #3091BA;
}
#team-listing .team-member:hover figure:before {
  margin: 0px;
}
#team-listing .team-member .heading {
  color: #3091BA;
  margin-bottom: 10px;
}
#team-listing .team-member .position {
  margin-bottom: 10px;
  font-weight: bold;
}
#team-listing .team-member a {
  color: #3091BA;
}

.logo-row {
  padding: 50px 0px;
  background-color: #3091BA;
}
.logo-row .row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo-row .heading {
  line-height: 1;
  color: #fff;
  margin: 0px;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .logo-row .heading {
    font-size: 1.7rem;
    margin-bottom: 0rem;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .logo-row .heading {
    font-size: 2rem;
  }
}
.logo-row .logo {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .logo-row .logo {
    margin-bottom: 1rem;
  }
}
.logo-row .logo img {
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.testimonial {
  position: relative;
  padding: 10rem 0rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .testimonial {
    padding: 8rem 0rem;
  }
}
.testimonial .container {
  position: relative;
}
.testimonial .quote-container {
  margin: 0 1rem;
}
@media (min-width: 768px) {
  .testimonial .quote-container {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .testimonial .quote-container {
    max-width: 630px;
  }
}
@media (min-width: 1200px) {
  .testimonial .quote-container {
    max-width: 932px;
  }
}
.testimonial .quote-container blockquote {
  margin: 0;
  font-size: 1.3rem;
  color: #3091BA;
}
@media (max-width: 992px) {
  .testimonial .quote-container blockquote {
    font-size: 1.1rem;
  }
}
.testimonial .testimonialSlide {
  overflow: hidden;
}
.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background: none;
  width: 30px;
  height: 30px;
  bottom: 49%;
  top: auto;
}
.testimonial .swiper-button-next .arrow,
.testimonial .swiper-button-prev .arrow {
  width: 100%;
  height: 100%;
}
.testimonial .swiper-button-next:hover,
.testimonial .swiper-button-prev:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.testimonial .swiper-button-next:after,
.testimonial .swiper-button-prev:after {
  display: none;
}
.testimonial .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 480px) {
  .testimonial .swiper-button-next {
    right: 0.5rem;
  }
}
@media (min-width: 768px) {
  .testimonial .swiper-button-next {
    right: 1rem;
  }
}
@media (min-width: 1200px) {
  .testimonial .swiper-button-next {
    right: 0rem;
  }
}
@media (min-width: 480px) {
  .testimonial .swiper-button-prev {
    left: 0.5rem;
  }
}
@media (min-width: 768px) {
  .testimonial .swiper-button-prev {
    left: 1rem;
  }
}
@media (min-width: 1200px) {
  .testimonial .swiper-button-prev {
    right: 0rem;
  }
}
.testimonial .box {
  right: 0;
}
.testimonial .circle {
  top: -20%;
  width: 200px;
}
@media (min-width: 992px) {
  .testimonial .circle {
    width: 270px;
  }
}
@media (min-width: 1200px) {
  .testimonial .circle {
    top: -20%;
    width: 300px;
  }
}
.testimonial .yellow-bars {
  top: 5%;
  left: 5%;
  width: 50px;
  z-index: 2;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (min-width: 992px) {
  .testimonial .yellow-bars {
    width: 100px;
  }
}
@media (min-width: 1200px) {
  .testimonial .yellow-bars {
    top: 10%;
    left: 5%;
  }
}

.three_columns {
  padding: 7.5rem 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .three_columns {
    padding: 5rem 0;
  }
}
.three_columns.style_1 {
  background-color: #FAFAFA;
}
.three_columns.style_2 {
  background-color: white;
}
.three_columns .column {
  line-height: 1.5;
  padding: 2rem 0;
}
.three_columns .column .heading {
  color: #3091BA;
}
.three_columns .column img {
  width: 95px;
  height: 95px;
  -o-object-fit: contain;
     object-fit: contain;
}
.three_columns .dot-grid {
  position: absolute;
  height: 150px;
}
.three_columns .dot-grid.left {
  bottom: 0rem;
  left: 0rem;
}
.three_columns .dot-grid.right {
  top: 0rem;
  right: 0rem;
}
@media (max-width: 992px) {
  .three_columns .dot-grid {
    width: 100%;
  }
}
.three_columns .dot-grid-circle {
  position: absolute;
  right: 0;
  bottom: -5rem;
  z-index: 1;
  width: 220px;
  color: #BFBFBF;
}
.three_columns .box {
  height: 230px;
  z-index: 0;
  color: #0A1748;
  right: 0;
  bottom: 0;
  width: auto;
}
@media (max-width: 992px) {
  .three_columns .box {
    display: none;
  }
}
.three_columns .rise-bars {
  bottom: -5rem;
}
.three_columns .yellow-bars {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  right: 5%;
  bottom: 40%;
}
@media (max-width: 992px) {
  .three_columns .yellow-bars {
    display: none;
  }
}

.industry {
  background-color: #FAFAFA;
  overflow: hidden;
  position: relative;
  padding: 7.5rem 0rem;
}
@media (max-width: 992px) {
  .industry {
    padding: 4rem 0rem;
  }
}
.industry.add-background {
  background-color: white;
}
.industry .content {
  position: relative;
  z-index: 1;
  max-width: 870px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .industry .content {
    margin-bottom: 5rem;
  }
}
.industry .content .heading {
  margin-top: 0px;
  font-size: 2.667rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .industry .transaction {
    margin-bottom: 2rem;
  }
}

.intro {
  margin: 7.5rem 0;
}
@media (max-width: 992px) {
  .intro {
    margin: 4rem 0;
  }
}
.intro .content-container {
  max-width: 932px;
  font-size: 24px;
  margin: 0 auto;
  text-align: center;
}

.current_jobs {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
}
@media (max-width: 992px) {
  .current_jobs {
    padding: 4rem 0;
  }
}
.current_jobs .content-container {
  max-width: 932px;
  font-size: 24px;
  margin: 0 auto;
  text-align: center;
}
.current_jobs .content-container .heading {
  font-weight: 500;
}
.current_jobs .jobs-container {
  margin-top: 70px;
}
.current_jobs .jobs-container dt {
  margin-bottom: 23px;
}
.current_jobs .jobs-container dt .link {
  text-decoration: none;
  color: #3091BA;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.current_jobs .jobs-container dt .link:hover {
  color: #4ECFE6;
}
.current_jobs .career-shape {
  position: absolute;
  width: 20%;
  top: 25%;
  left: -5rem;
  z-index: 1;
}
@media (max-width: 992px) {
  .current_jobs .career-shape {
    width: 200px;
    top: -10%;
    left: -20%;
  }
}
.current_jobs .career-shape-2 {
  position: absolute;
  width: 8%;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .current_jobs .career-shape-2 {
    width: 50px;
  }
}
.current_jobs .rise-bars {
  left: -8%;
  bottom: -50%;
  width: 30%;
}
@media (max-width: 992px) {
  .current_jobs .rise-bars {
    width: 200px;
    bottom: 0;
  }
}
.current_jobs .dot-grid {
  top: 0;
  width: 500px;
  position: absolute;
  left: 10%;
}

#single-career {
  background-color: #FAFAFA;
}
#single-career .the-job {
  padding: 90px 150px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.0784313725);
  line-height: 1.7;
}
@media (max-width: 992px) {
  #single-career .the-job {
    padding: 25px;
  }
}
#single-career main {
  background-color: #FAFAFA;
  padding-bottom: 10rem;
}
#single-career .button-container {
  text-align: center;
}

.form-section {
  padding: 7.5rem 0rem;
  position: relative;
}
@media (max-width: 992px) {
  .form-section {
    padding: 4rem 0rem;
  }
}
.form-section .form_container {
  z-index: 1;
  position: relative;
  background: white;
  -webkit-box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.0784313725);
  padding: 3.8rem;
}
@media (max-width: 992px) {
  .form-section .form_container {
    padding: 2rem;
  }
}
.form-section .form_container .heading {
  text-align: center;
  font-weight: 400;
}
.form-section .form_container .description {
  max-width: 992px;
  margin: 0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.form-section input[type=submit] {
  border: none;
  font-size: 0.889rem;
}
.form-section .contact-circle {
  width: 320px;
  position: absolute;
  z-index: 0;
  top: -2.8rem;
  left: 7rem;
}
@media (max-width: 992px) {
  .form-section .contact-circle {
    width: 200px;
    top: -2rem;
    left: 2.5rem;
  }
}

.file-chooser {
  padding: 2rem 0rem 1rem 0rem;
  border-bottom: 1px solid;
}
.file-chooser input {
  border: none !important;
  width: 100% !important;
  opacity: 0;
  position: absolute;
  inset: 0;
}
.file-chooser input:hover {
  cursor: pointer;
}

.locations-row {
  padding: 2.7rem 0rem 7.5rem 0rem;
}
@media (max-width: 992px) {
  .locations-row {
    padding: 7rem 0rem 5.5rem 0rem;
  }
}
.locations-row .location h2 {
  font-weight: 400;
}
.locations-row .location .team-member {
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .locations-row .location .team-member {
    margin-bottom: 1rem;
  }
}
.locations-row .location .team-member h3 {
  margin-top: 28px;
  margin-bottom: 0px;
  font-size: 1.333rem;
}
.locations-row .location .team-member p {
  margin: 0px;
  font-size: 1.333rem;
}
.locations-row .location .team-member a {
  color: #3091BA;
  text-decoration: none;
}

#search-page {
  background-color: #FAFAFA;
}
#search-page .heading {
  text-align: center;
}
#search-page .heading span {
  color: #4ECFE6;
}
#search-page.index-page article .entry {
  border-bottom: 1px solid #e5e5e5;
}
#search-page article {
  padding: 1rem;
  margin-bottom: 10px;
}
#search-page article.post h2 {
  margin: 0.5rem 0rem;
}
@media (max-width: 768px) {
  #search-page article.post h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  #search-page .simple-banner svg {
    display: none;
  }
}
#search-page .no-results {
  margin-bottom: 5rem;
}

article {
  margin-bottom: 10px;
}
article.post h2 {
  margin: 0.5rem 0rem;
}
@media (max-width: 768px) {
  article.post h2 {
    font-size: 1.5rem;
  }
}

#thank-you {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  background-color: #FAFAFA;
}
#thank-you main {
  text-align: center;
  padding: 130px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.0784313725);
          box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.0784313725);
}
#thank-you main .heading {
  max-width: 400px;
}

.accordion_section {
  margin: 7.5rem auto;
  max-width: 992px;
}
@media (max-width: 992px) {
  .accordion_section {
    margin: 4rem 0;
  }
}
.accordion_section .accordion .accordion-item,
.accordion_section .accordion .accordion-button,
.accordion_section .accordion .accordion-collapse {
  background-color: transparent;
}
.accordion_section .accordion .accordion-header {
  margin-top: 0px;
}
.accordion_section .accordion .accordion-button {
  padding: 1.5rem 0px;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #4ECFE6;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .accordion_section .accordion .accordion-button {
    font-size: 19px;
  }
}
.accordion_section .accordion .accordion-button.collapsed {
  color: #3091BA;
  border-bottom: 1px solid black;
}
.accordion_section .accordion .accordion-button:hover {
  color: #4ECFE6 !important;
  cursor: pointer;
}
.accordion_section .accordion .accordion-body {
  padding: 2rem 1rem;
}
.accordion_section .accordion .accordion-body img {
  max-width: 100px;
}
@media (max-width: 768px) {
  .accordion_section .accordion .accordion-body img {
    margin-bottom: 1rem;
  }
}

.gallery-section {
  background-color: #fff;
  position: relative;
  padding: 4rem 0rem 4rem 0rem;
}
@media (min-width: 992px) {
  .gallery-section {
    padding: 7rem 0rem 7rem 0rem;
  }
}
.gallery-section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
  background-size: cover;
  background-position: center;
}
.gallery-section .swiper-slide img {
  display: block;
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .gallery-section .swiper-slide img {
    height: 70px;
  }
}
.gallery-section .galleryThumbs {
  height: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 0;
}
.gallery-section .galleryThumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.gallery-section .galleryThumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery-section .gallerySlider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.gallery-section .gallerySlider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.gallery-section .container {
  position: relative;
  max-width: 992px;
}
.gallery-section .swiper-button-next,
.gallery-section .swiper-button-prev {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background: none;
  width: 30px;
  height: 30px;
  bottom: 40%;
  top: 40%;
}
.gallery-section .swiper-button-next .arrow,
.gallery-section .swiper-button-prev .arrow {
  width: 100%;
  height: 100%;
}
.gallery-section .swiper-button-next:hover,
.gallery-section .swiper-button-prev:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
.gallery-section .swiper-button-next:after,
.gallery-section .swiper-button-prev:after {
  display: none;
}
.gallery-section .swiper-button-next {
  right: 0px;
}
@media (min-width: 992px) {
  .gallery-section .swiper-button-next {
    right: -2%;
  }
}
.gallery-section .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.gallery-section .swiper-button-prev {
  left: 0px;
}
@media (min-width: 992px) {
  .gallery-section .swiper-button-prev {
    left: -2%;
  }
}

.single-image {
  position: relative;
  overflow: hidden;
  padding: 4rem 0rem;
  margin: 3rem 0rem;
}
@media (max-width: 992px) {
  .single-image {
    padding: 3rem 0rem;
    margin: 2rem 0rem;
  }
}
.single-image .container {
  position: relative;
  text-align: center;
  z-index: 1;
}
@media (max-width: 992px) {
  .single-image .container img {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .single-image .box {
    display: none;
  }
}
.single-image .box.blue {
  left: 3%;
  top: 20%;
}
.single-image .box.yellow {
  left: 0rem;
  top: 15%;
  width: 120px;
}
.single-image .yellow-bars {
  top: 15%;
  left: 3%;
}
.single-image .rise-bars {
  z-index: 0;
  width: 23vw;
}
@media (max-width: 768px) {
  .single-image .rise-bars {
    width: 300px;
  }
}

#contact-page {
  background: #FAFAFA;
}

#blog-listing .the-post {
  margin-bottom: 4rem;
}
#blog-listing .the-post a {
  text-decoration: none;
}
#blog-listing .the-post h3 {
  margin: 0px;
  font-weight: 500;
}
#blog-listing .the-post h3 a {
  color: #3091BA;
}
#blog-listing .the-post .post-details {
  font-size: 0.778rem;
  margin-bottom: 7px;
}
#blog-listing .the-post figure {
  margin: 0px;
}
#blog-listing .the-post figure img {
  margin-bottom: 1rem;
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog-listing .navigation {
  margin-top: 8rem;
}
@media (max-width: 992px) {
  #blog-listing .navigation {
    margin-top: 4rem;
  }
}
#blog-listing .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
}
#blog-listing .navigation ul li {
  padding: 1rem;
  display: block;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 992px) {
  #blog-listing .navigation ul li {
    padding: 0.5rem;
  }
}
#blog-listing .navigation ul li.overwrite {
  width: auto;
  height: auto;
  border-radius: inherit;
  background: none;
  opacity: 1;
}
#blog-listing .navigation ul li.swiper-pagination-bullet-active {
  background: #0A1748;
  color: white;
}
#blog-listing .all-posts {
  margin-bottom: 50px;
  -webkit-box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.1411764706);
          box-shadow: 0px 3px 15px 5px rgba(0, 0, 0, 0.1411764706);
  overflow: hidden;
  background: white;
}
#blog-listing .all-posts .post-gallery {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  #blog-listing .all-posts .post-gallery {
    display: block;
  }
}
#blog-listing .all-posts .post-gallery article {
  min-height: 300px;
}
@media (max-width: 992px) {
  #blog-listing .all-posts .post-gallery article {
    min-height: auto;
    margin-bottom: 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#blog-listing .swiper-pagination {
  position: relative;
}
#blog-listing .swiper-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#blog-listing .swiper-wrapper .swiper-slide {
  padding: 4rem;
  width: 100% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 992px) {
  #blog-listing .swiper-wrapper .swiper-slide {
    padding: 1.5rem 1rem;
  }
}

#single-post {
  background-color: #FAFAFA;
}
#single-post #main {
  max-width: 840px;
}
#single-post .post {
  padding: 0rem 0 5rem 0;
  line-height: 1.8;
}
#single-post .post a.btn, #single-post .post .wp-block-button a {
  margin-top: 2rem;
}
#single-post .post .wp-block-button.is-style-outline a {
  background-color: transparent;
  color: #0A1748;
  border-color: #0A1748;
}
#single-post .post .wp-block-button.is-style-outline a:hover {
  background-color: #0A1748;
  color: white;
}
#single-post .post .wp-block-quote {
  border-left: 4px solid #3091BA;
  margin-left: 0px;
  padding-left: 2rem;
}
#single-post .post figure.wp-block-table td {
  border: 1px solid;
  padding: 10px;
}
#single-post .post figure.wp-block-table.is-style-stripes td {
  border: none;
}
#single-post .post form input,
#single-post .post form textarea {
  background-color: transparent;
}
#single-post .post form input[type=submit] {
  border: none;
  font-size: 0.889rem;
}

.error-page-wrap .large-heading {
  font-size: 7rem;
  margin-bottom: 0;
  color: #4ECFE6;
}
@media (max-width: 768px) {
  .error-page-wrap .large-heading {
    font-size: 5rem;
  }
}
.error-page-wrap .btn.light, .error-page-wrap .form-style input.light[type=submit], .form-style .error-page-wrap input.light[type=submit], .error-page-wrap .form-section input.light[type=submit], .form-section .error-page-wrap input.light[type=submit], .error-page-wrap #single-post .post .wp-block-button a.light, #single-post .post .wp-block-button .error-page-wrap a.light, .error-page-wrap #single-post .post form input.light[type=submit], #single-post .post form .error-page-wrap input.light[type=submit] {
  background: #4ECFE6;
  border: 2px solid #4ECFE6;
}
.error-page-wrap .btn.light:hover, .error-page-wrap .form-style input.light[type=submit]:hover, .form-style .error-page-wrap input.light[type=submit]:hover, .error-page-wrap .form-section input.light[type=submit]:hover, .form-section .error-page-wrap input.light[type=submit]:hover, .error-page-wrap #single-post .post .wp-block-button a.light:hover, #single-post .post .wp-block-button .error-page-wrap a.light:hover, .error-page-wrap #single-post .post form input.light[type=submit]:hover, #single-post .post form .error-page-wrap input.light[type=submit]:hover {
  background: transparent;
}