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

.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  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: 980px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1190px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1380px;
  }
}
@media (min-width: 1600px) {
  .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1400px;
  }
}
.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  box-sizing: border-box;
  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 {
  flex: 1 0 0%;
}

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

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

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

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

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

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

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

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

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

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

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

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

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

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

.col-12 {
  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-0_5,
.gx-0_5 {
  --bs-gutter-x: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    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-0_5,
  .gx-sm-0_5 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-0_5,
  .gy-sm-0_5 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-1_5,
  .gx-sm-1_5 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-1_5,
  .gy-sm-1_5 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-2_5,
  .gx-sm-2_5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-2_5,
  .gy-sm-2_5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-3_5,
  .gx-sm-3_5 {
    --bs-gutter-x: 3.5rem;
  }
  .g-sm-3_5,
  .gy-sm-3_5 {
    --bs-gutter-y: 3.5rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 4rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 5rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 5rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 6rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 6rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 7rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 7rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 8rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 8rem;
  }
  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 9rem;
  }
  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 9rem;
  }
  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 10rem;
  }
  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 10rem;
  }
  .g-sm-13,
  .gx-sm-13 {
    --bs-gutter-x: 13rem;
  }
  .g-sm-13,
  .gy-sm-13 {
    --bs-gutter-y: 13rem;
  }
  .g-sm-15,
  .gx-sm-15 {
    --bs-gutter-x: 15rem;
  }
  .g-sm-15,
  .gy-sm-15 {
    --bs-gutter-y: 15rem;
  }
  .g-sm-16,
  .gx-sm-16 {
    --bs-gutter-x: 16rem;
  }
  .g-sm-16,
  .gy-sm-16 {
    --bs-gutter-y: 16rem;
  }
  .g-sm-20,
  .gx-sm-20 {
    --bs-gutter-x: 20rem;
  }
  .g-sm-20,
  .gy-sm-20 {
    --bs-gutter-y: 20rem;
  }
  .g-sm-25,
  .gx-sm-25 {
    --bs-gutter-x: 25rem;
  }
  .g-sm-25,
  .gy-sm-25 {
    --bs-gutter-y: 25rem;
  }
  .g-sm-30,
  .gx-sm-30 {
    --bs-gutter-x: 30rem;
  }
  .g-sm-30,
  .gy-sm-30 {
    --bs-gutter-y: 30rem;
  }
  .g-sm-35,
  .gx-sm-35 {
    --bs-gutter-x: 35rem;
  }
  .g-sm-35,
  .gy-sm-35 {
    --bs-gutter-y: 35rem;
  }
  .g-sm-40,
  .gx-sm-40 {
    --bs-gutter-x: 40rem;
  }
  .g-sm-40,
  .gy-sm-40 {
    --bs-gutter-y: 40rem;
  }
  .g-sm-45,
  .gx-sm-45 {
    --bs-gutter-x: 45rem;
  }
  .g-sm-45,
  .gy-sm-45 {
    --bs-gutter-y: 45rem;
  }
  .g-sm-50,
  .gx-sm-50 {
    --bs-gutter-x: 50rem;
  }
  .g-sm-50,
  .gy-sm-50 {
    --bs-gutter-y: 50rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    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-0_5,
  .gx-md-0_5 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-0_5,
  .gy-md-0_5 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 1rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 1rem;
  }
  .g-md-1_5,
  .gx-md-1_5 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-1_5,
  .gy-md-1_5 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 2rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 2rem;
  }
  .g-md-2_5,
  .gx-md-2_5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-2_5,
  .gy-md-2_5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 3rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 3rem;
  }
  .g-md-3_5,
  .gx-md-3_5 {
    --bs-gutter-x: 3.5rem;
  }
  .g-md-3_5,
  .gy-md-3_5 {
    --bs-gutter-y: 3.5rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 4rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 4rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 5rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 5rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 6rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 6rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 7rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 7rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 8rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 8rem;
  }
  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 9rem;
  }
  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 9rem;
  }
  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 10rem;
  }
  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 10rem;
  }
  .g-md-13,
  .gx-md-13 {
    --bs-gutter-x: 13rem;
  }
  .g-md-13,
  .gy-md-13 {
    --bs-gutter-y: 13rem;
  }
  .g-md-15,
  .gx-md-15 {
    --bs-gutter-x: 15rem;
  }
  .g-md-15,
  .gy-md-15 {
    --bs-gutter-y: 15rem;
  }
  .g-md-16,
  .gx-md-16 {
    --bs-gutter-x: 16rem;
  }
  .g-md-16,
  .gy-md-16 {
    --bs-gutter-y: 16rem;
  }
  .g-md-20,
  .gx-md-20 {
    --bs-gutter-x: 20rem;
  }
  .g-md-20,
  .gy-md-20 {
    --bs-gutter-y: 20rem;
  }
  .g-md-25,
  .gx-md-25 {
    --bs-gutter-x: 25rem;
  }
  .g-md-25,
  .gy-md-25 {
    --bs-gutter-y: 25rem;
  }
  .g-md-30,
  .gx-md-30 {
    --bs-gutter-x: 30rem;
  }
  .g-md-30,
  .gy-md-30 {
    --bs-gutter-y: 30rem;
  }
  .g-md-35,
  .gx-md-35 {
    --bs-gutter-x: 35rem;
  }
  .g-md-35,
  .gy-md-35 {
    --bs-gutter-y: 35rem;
  }
  .g-md-40,
  .gx-md-40 {
    --bs-gutter-x: 40rem;
  }
  .g-md-40,
  .gy-md-40 {
    --bs-gutter-y: 40rem;
  }
  .g-md-45,
  .gx-md-45 {
    --bs-gutter-x: 45rem;
  }
  .g-md-45,
  .gy-md-45 {
    --bs-gutter-y: 45rem;
  }
  .g-md-50,
  .gx-md-50 {
    --bs-gutter-x: 50rem;
  }
  .g-md-50,
  .gy-md-50 {
    --bs-gutter-y: 50rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    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-0_5,
  .gx-lg-0_5 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-0_5,
  .gy-lg-0_5 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-1_5,
  .gx-lg-1_5 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-1_5,
  .gy-lg-1_5 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-2_5,
  .gx-lg-2_5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-2_5,
  .gy-lg-2_5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-3_5,
  .gx-lg-3_5 {
    --bs-gutter-x: 3.5rem;
  }
  .g-lg-3_5,
  .gy-lg-3_5 {
    --bs-gutter-y: 3.5rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 4rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 5rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 5rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 6rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 6rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 7rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 7rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 8rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 8rem;
  }
  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 9rem;
  }
  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 9rem;
  }
  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 10rem;
  }
  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 10rem;
  }
  .g-lg-13,
  .gx-lg-13 {
    --bs-gutter-x: 13rem;
  }
  .g-lg-13,
  .gy-lg-13 {
    --bs-gutter-y: 13rem;
  }
  .g-lg-15,
  .gx-lg-15 {
    --bs-gutter-x: 15rem;
  }
  .g-lg-15,
  .gy-lg-15 {
    --bs-gutter-y: 15rem;
  }
  .g-lg-16,
  .gx-lg-16 {
    --bs-gutter-x: 16rem;
  }
  .g-lg-16,
  .gy-lg-16 {
    --bs-gutter-y: 16rem;
  }
  .g-lg-20,
  .gx-lg-20 {
    --bs-gutter-x: 20rem;
  }
  .g-lg-20,
  .gy-lg-20 {
    --bs-gutter-y: 20rem;
  }
  .g-lg-25,
  .gx-lg-25 {
    --bs-gutter-x: 25rem;
  }
  .g-lg-25,
  .gy-lg-25 {
    --bs-gutter-y: 25rem;
  }
  .g-lg-30,
  .gx-lg-30 {
    --bs-gutter-x: 30rem;
  }
  .g-lg-30,
  .gy-lg-30 {
    --bs-gutter-y: 30rem;
  }
  .g-lg-35,
  .gx-lg-35 {
    --bs-gutter-x: 35rem;
  }
  .g-lg-35,
  .gy-lg-35 {
    --bs-gutter-y: 35rem;
  }
  .g-lg-40,
  .gx-lg-40 {
    --bs-gutter-x: 40rem;
  }
  .g-lg-40,
  .gy-lg-40 {
    --bs-gutter-y: 40rem;
  }
  .g-lg-45,
  .gx-lg-45 {
    --bs-gutter-x: 45rem;
  }
  .g-lg-45,
  .gy-lg-45 {
    --bs-gutter-y: 45rem;
  }
  .g-lg-50,
  .gx-lg-50 {
    --bs-gutter-x: 50rem;
  }
  .g-lg-50,
  .gy-lg-50 {
    --bs-gutter-y: 50rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    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-0_5,
  .gx-xl-0_5 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-0_5,
  .gy-xl-0_5 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-1_5,
  .gx-xl-1_5 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-1_5,
  .gy-xl-1_5 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-2_5,
  .gx-xl-2_5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-2_5,
  .gy-xl-2_5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-3_5,
  .gx-xl-3_5 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xl-3_5,
  .gy-xl-3_5 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 4rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 5rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 5rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 7rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 7rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 8rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 8rem;
  }
  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 9rem;
  }
  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 9rem;
  }
  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 10rem;
  }
  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 10rem;
  }
  .g-xl-13,
  .gx-xl-13 {
    --bs-gutter-x: 13rem;
  }
  .g-xl-13,
  .gy-xl-13 {
    --bs-gutter-y: 13rem;
  }
  .g-xl-15,
  .gx-xl-15 {
    --bs-gutter-x: 15rem;
  }
  .g-xl-15,
  .gy-xl-15 {
    --bs-gutter-y: 15rem;
  }
  .g-xl-16,
  .gx-xl-16 {
    --bs-gutter-x: 16rem;
  }
  .g-xl-16,
  .gy-xl-16 {
    --bs-gutter-y: 16rem;
  }
  .g-xl-20,
  .gx-xl-20 {
    --bs-gutter-x: 20rem;
  }
  .g-xl-20,
  .gy-xl-20 {
    --bs-gutter-y: 20rem;
  }
  .g-xl-25,
  .gx-xl-25 {
    --bs-gutter-x: 25rem;
  }
  .g-xl-25,
  .gy-xl-25 {
    --bs-gutter-y: 25rem;
  }
  .g-xl-30,
  .gx-xl-30 {
    --bs-gutter-x: 30rem;
  }
  .g-xl-30,
  .gy-xl-30 {
    --bs-gutter-y: 30rem;
  }
  .g-xl-35,
  .gx-xl-35 {
    --bs-gutter-x: 35rem;
  }
  .g-xl-35,
  .gy-xl-35 {
    --bs-gutter-y: 35rem;
  }
  .g-xl-40,
  .gx-xl-40 {
    --bs-gutter-x: 40rem;
  }
  .g-xl-40,
  .gy-xl-40 {
    --bs-gutter-y: 40rem;
  }
  .g-xl-45,
  .gx-xl-45 {
    --bs-gutter-x: 45rem;
  }
  .g-xl-45,
  .gy-xl-45 {
    --bs-gutter-y: 45rem;
  }
  .g-xl-50,
  .gx-xl-50 {
    --bs-gutter-x: 50rem;
  }
  .g-xl-50,
  .gy-xl-50 {
    --bs-gutter-y: 50rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    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-0_5,
  .gx-xxl-0_5 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-0_5,
  .gy-xxl-0_5 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-1_5,
  .gx-xxl-1_5 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-1_5,
  .gy-xxl-1_5 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-2_5,
  .gx-xxl-2_5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-2_5,
  .gy-xxl-2_5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-3_5,
  .gx-xxl-3_5 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxl-3_5,
  .gy-xxl-3_5 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 4rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 4rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 5rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 5rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 7rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 7rem;
  }
  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 8rem;
  }
  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 8rem;
  }
  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 9rem;
  }
  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 9rem;
  }
  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 10rem;
  }
  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 10rem;
  }
  .g-xxl-13,
  .gx-xxl-13 {
    --bs-gutter-x: 13rem;
  }
  .g-xxl-13,
  .gy-xxl-13 {
    --bs-gutter-y: 13rem;
  }
  .g-xxl-15,
  .gx-xxl-15 {
    --bs-gutter-x: 15rem;
  }
  .g-xxl-15,
  .gy-xxl-15 {
    --bs-gutter-y: 15rem;
  }
  .g-xxl-16,
  .gx-xxl-16 {
    --bs-gutter-x: 16rem;
  }
  .g-xxl-16,
  .gy-xxl-16 {
    --bs-gutter-y: 16rem;
  }
  .g-xxl-20,
  .gx-xxl-20 {
    --bs-gutter-x: 20rem;
  }
  .g-xxl-20,
  .gy-xxl-20 {
    --bs-gutter-y: 20rem;
  }
  .g-xxl-25,
  .gx-xxl-25 {
    --bs-gutter-x: 25rem;
  }
  .g-xxl-25,
  .gy-xxl-25 {
    --bs-gutter-y: 25rem;
  }
  .g-xxl-30,
  .gx-xxl-30 {
    --bs-gutter-x: 30rem;
  }
  .g-xxl-30,
  .gy-xxl-30 {
    --bs-gutter-y: 30rem;
  }
  .g-xxl-35,
  .gx-xxl-35 {
    --bs-gutter-x: 35rem;
  }
  .g-xxl-35,
  .gy-xxl-35 {
    --bs-gutter-y: 35rem;
  }
  .g-xxl-40,
  .gx-xxl-40 {
    --bs-gutter-x: 40rem;
  }
  .g-xxl-40,
  .gy-xxl-40 {
    --bs-gutter-y: 40rem;
  }
  .g-xxl-45,
  .gx-xxl-45 {
    --bs-gutter-x: 45rem;
  }
  .g-xxl-45,
  .gy-xxl-45 {
    --bs-gutter-y: 45rem;
  }
  .g-xxl-50,
  .gx-xxl-50 {
    --bs-gutter-x: 50rem;
  }
  .g-xxl-50,
  .gy-xxl-50 {
    --bs-gutter-y: 50rem;
  }
}
@media (min-width: 1600px) {
  .col-xxxl {
    flex: 1 0 0%;
  }
  .row-cols-xxxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-0_5,
  .gx-xxxl-0_5 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-0_5,
  .gy-xxxl-0_5 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-1_5,
  .gx-xxxl-1_5 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-1_5,
  .gy-xxxl-1_5 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 2rem;
  }
  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 2rem;
  }
  .g-xxxl-2_5,
  .gx-xxxl-2_5 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxxl-2_5,
  .gy-xxxl-2_5 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 3rem;
  }
  .g-xxxl-3_5,
  .gx-xxxl-3_5 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxxl-3_5,
  .gy-xxxl-3_5 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 4rem;
  }
  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 4rem;
  }
  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 5rem;
  }
  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 5rem;
  }
  .g-xxxl-6,
  .gx-xxxl-6 {
    --bs-gutter-x: 6rem;
  }
  .g-xxxl-6,
  .gy-xxxl-6 {
    --bs-gutter-y: 6rem;
  }
  .g-xxxl-7,
  .gx-xxxl-7 {
    --bs-gutter-x: 7rem;
  }
  .g-xxxl-7,
  .gy-xxxl-7 {
    --bs-gutter-y: 7rem;
  }
  .g-xxxl-8,
  .gx-xxxl-8 {
    --bs-gutter-x: 8rem;
  }
  .g-xxxl-8,
  .gy-xxxl-8 {
    --bs-gutter-y: 8rem;
  }
  .g-xxxl-9,
  .gx-xxxl-9 {
    --bs-gutter-x: 9rem;
  }
  .g-xxxl-9,
  .gy-xxxl-9 {
    --bs-gutter-y: 9rem;
  }
  .g-xxxl-10,
  .gx-xxxl-10 {
    --bs-gutter-x: 10rem;
  }
  .g-xxxl-10,
  .gy-xxxl-10 {
    --bs-gutter-y: 10rem;
  }
  .g-xxxl-13,
  .gx-xxxl-13 {
    --bs-gutter-x: 13rem;
  }
  .g-xxxl-13,
  .gy-xxxl-13 {
    --bs-gutter-y: 13rem;
  }
  .g-xxxl-15,
  .gx-xxxl-15 {
    --bs-gutter-x: 15rem;
  }
  .g-xxxl-15,
  .gy-xxxl-15 {
    --bs-gutter-y: 15rem;
  }
  .g-xxxl-16,
  .gx-xxxl-16 {
    --bs-gutter-x: 16rem;
  }
  .g-xxxl-16,
  .gy-xxxl-16 {
    --bs-gutter-y: 16rem;
  }
  .g-xxxl-20,
  .gx-xxxl-20 {
    --bs-gutter-x: 20rem;
  }
  .g-xxxl-20,
  .gy-xxxl-20 {
    --bs-gutter-y: 20rem;
  }
  .g-xxxl-25,
  .gx-xxxl-25 {
    --bs-gutter-x: 25rem;
  }
  .g-xxxl-25,
  .gy-xxxl-25 {
    --bs-gutter-y: 25rem;
  }
  .g-xxxl-30,
  .gx-xxxl-30 {
    --bs-gutter-x: 30rem;
  }
  .g-xxxl-30,
  .gy-xxxl-30 {
    --bs-gutter-y: 30rem;
  }
  .g-xxxl-35,
  .gx-xxxl-35 {
    --bs-gutter-x: 35rem;
  }
  .g-xxxl-35,
  .gy-xxxl-35 {
    --bs-gutter-y: 35rem;
  }
  .g-xxxl-40,
  .gx-xxxl-40 {
    --bs-gutter-x: 40rem;
  }
  .g-xxxl-40,
  .gy-xxxl-40 {
    --bs-gutter-y: 40rem;
  }
  .g-xxxl-45,
  .gx-xxxl-45 {
    --bs-gutter-x: 45rem;
  }
  .g-xxxl-45,
  .gy-xxxl-45 {
    --bs-gutter-y: 45rem;
  }
  .g-xxxl-50,
  .gx-xxxl-50 {
    --bs-gutter-x: 50rem;
  }
  .g-xxxl-50,
  .gy-xxxl-50 {
    --bs-gutter-y: 50rem;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

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

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

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

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

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

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

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

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

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

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

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

.m-6 {
  margin: 6rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.m-13 {
  margin: 13rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-16 {
  margin: 16rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.m-25 {
  margin: 25rem !important;
}

.m-30 {
  margin: 30rem !important;
}

.m-35 {
  margin: 35rem !important;
}

.m-40 {
  margin: 40rem !important;
}

.m-45 {
  margin: 45rem !important;
}

.m-50 {
  margin: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-6 {
  padding: 6rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.p-8 {
  padding: 8rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.p-13 {
  padding: 13rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-16 {
  padding: 16rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.p-25 {
  padding: 25rem !important;
}

.p-30 {
  padding: 30rem !important;
}

.p-35 {
  padding: 35rem !important;
}

.p-40 {
  padding: 40rem !important;
}

.p-45 {
  padding: 45rem !important;
}

.p-50 {
  padding: 50rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-0_5 {
    margin: 0.5rem !important;
  }
  .m-sm-1 {
    margin: 1rem !important;
  }
  .m-sm-1_5 {
    margin: 1.5rem !important;
  }
  .m-sm-2 {
    margin: 2rem !important;
  }
  .m-sm-2_5 {
    margin: 2.5rem !important;
  }
  .m-sm-3 {
    margin: 3rem !important;
  }
  .m-sm-3_5 {
    margin: 3.5rem !important;
  }
  .m-sm-4 {
    margin: 4rem !important;
  }
  .m-sm-5 {
    margin: 5rem !important;
  }
  .m-sm-6 {
    margin: 6rem !important;
  }
  .m-sm-7 {
    margin: 7rem !important;
  }
  .m-sm-8 {
    margin: 8rem !important;
  }
  .m-sm-9 {
    margin: 9rem !important;
  }
  .m-sm-10 {
    margin: 10rem !important;
  }
  .m-sm-13 {
    margin: 13rem !important;
  }
  .m-sm-15 {
    margin: 15rem !important;
  }
  .m-sm-16 {
    margin: 16rem !important;
  }
  .m-sm-20 {
    margin: 20rem !important;
  }
  .m-sm-25 {
    margin: 25rem !important;
  }
  .m-sm-30 {
    margin: 30rem !important;
  }
  .m-sm-35 {
    margin: 35rem !important;
  }
  .m-sm-40 {
    margin: 40rem !important;
  }
  .m-sm-45 {
    margin: 45rem !important;
  }
  .m-sm-50 {
    margin: 50rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-sm-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-sm-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-sm-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-sm-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-sm-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-sm-16 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .mx-sm-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-sm-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-sm-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-sm-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-sm-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-sm-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-sm-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-sm-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-sm-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-sm-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-sm-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-sm-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-sm-16 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .my-sm-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-sm-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-sm-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-sm-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-sm-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-sm-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-sm-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-1 {
    margin-top: 1rem !important;
  }
  .mt-sm-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 2rem !important;
  }
  .mt-sm-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 3rem !important;
  }
  .mt-sm-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 4rem !important;
  }
  .mt-sm-5 {
    margin-top: 5rem !important;
  }
  .mt-sm-6 {
    margin-top: 6rem !important;
  }
  .mt-sm-7 {
    margin-top: 7rem !important;
  }
  .mt-sm-8 {
    margin-top: 8rem !important;
  }
  .mt-sm-9 {
    margin-top: 9rem !important;
  }
  .mt-sm-10 {
    margin-top: 10rem !important;
  }
  .mt-sm-13 {
    margin-top: 13rem !important;
  }
  .mt-sm-15 {
    margin-top: 15rem !important;
  }
  .mt-sm-16 {
    margin-top: 16rem !important;
  }
  .mt-sm-20 {
    margin-top: 20rem !important;
  }
  .mt-sm-25 {
    margin-top: 25rem !important;
  }
  .mt-sm-30 {
    margin-top: 30rem !important;
  }
  .mt-sm-35 {
    margin-top: 35rem !important;
  }
  .mt-sm-40 {
    margin-top: 40rem !important;
  }
  .mt-sm-45 {
    margin-top: 45rem !important;
  }
  .mt-sm-50 {
    margin-top: 50rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-sm-1 {
    margin-right: 1rem !important;
  }
  .me-sm-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-sm-2 {
    margin-right: 2rem !important;
  }
  .me-sm-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-sm-3 {
    margin-right: 3rem !important;
  }
  .me-sm-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-sm-4 {
    margin-right: 4rem !important;
  }
  .me-sm-5 {
    margin-right: 5rem !important;
  }
  .me-sm-6 {
    margin-right: 6rem !important;
  }
  .me-sm-7 {
    margin-right: 7rem !important;
  }
  .me-sm-8 {
    margin-right: 8rem !important;
  }
  .me-sm-9 {
    margin-right: 9rem !important;
  }
  .me-sm-10 {
    margin-right: 10rem !important;
  }
  .me-sm-13 {
    margin-right: 13rem !important;
  }
  .me-sm-15 {
    margin-right: 15rem !important;
  }
  .me-sm-16 {
    margin-right: 16rem !important;
  }
  .me-sm-20 {
    margin-right: 20rem !important;
  }
  .me-sm-25 {
    margin-right: 25rem !important;
  }
  .me-sm-30 {
    margin-right: 30rem !important;
  }
  .me-sm-35 {
    margin-right: 35rem !important;
  }
  .me-sm-40 {
    margin-right: 40rem !important;
  }
  .me-sm-45 {
    margin-right: 45rem !important;
  }
  .me-sm-50 {
    margin-right: 50rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }
  .mb-sm-16 {
    margin-bottom: 16rem !important;
  }
  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }
  .mb-sm-25 {
    margin-bottom: 25rem !important;
  }
  .mb-sm-30 {
    margin-bottom: 30rem !important;
  }
  .mb-sm-35 {
    margin-bottom: 35rem !important;
  }
  .mb-sm-40 {
    margin-bottom: 40rem !important;
  }
  .mb-sm-45 {
    margin-bottom: 45rem !important;
  }
  .mb-sm-50 {
    margin-bottom: 50rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-1 {
    margin-left: 1rem !important;
  }
  .ms-sm-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-2 {
    margin-left: 2rem !important;
  }
  .ms-sm-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 3rem !important;
  }
  .ms-sm-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-4 {
    margin-left: 4rem !important;
  }
  .ms-sm-5 {
    margin-left: 5rem !important;
  }
  .ms-sm-6 {
    margin-left: 6rem !important;
  }
  .ms-sm-7 {
    margin-left: 7rem !important;
  }
  .ms-sm-8 {
    margin-left: 8rem !important;
  }
  .ms-sm-9 {
    margin-left: 9rem !important;
  }
  .ms-sm-10 {
    margin-left: 10rem !important;
  }
  .ms-sm-13 {
    margin-left: 13rem !important;
  }
  .ms-sm-15 {
    margin-left: 15rem !important;
  }
  .ms-sm-16 {
    margin-left: 16rem !important;
  }
  .ms-sm-20 {
    margin-left: 20rem !important;
  }
  .ms-sm-25 {
    margin-left: 25rem !important;
  }
  .ms-sm-30 {
    margin-left: 30rem !important;
  }
  .ms-sm-35 {
    margin-left: 35rem !important;
  }
  .ms-sm-40 {
    margin-left: 40rem !important;
  }
  .ms-sm-45 {
    margin-left: 45rem !important;
  }
  .ms-sm-50 {
    margin-left: 50rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-0_5 {
    padding: 0.5rem !important;
  }
  .p-sm-1 {
    padding: 1rem !important;
  }
  .p-sm-1_5 {
    padding: 1.5rem !important;
  }
  .p-sm-2 {
    padding: 2rem !important;
  }
  .p-sm-2_5 {
    padding: 2.5rem !important;
  }
  .p-sm-3 {
    padding: 3rem !important;
  }
  .p-sm-3_5 {
    padding: 3.5rem !important;
  }
  .p-sm-4 {
    padding: 4rem !important;
  }
  .p-sm-5 {
    padding: 5rem !important;
  }
  .p-sm-6 {
    padding: 6rem !important;
  }
  .p-sm-7 {
    padding: 7rem !important;
  }
  .p-sm-8 {
    padding: 8rem !important;
  }
  .p-sm-9 {
    padding: 9rem !important;
  }
  .p-sm-10 {
    padding: 10rem !important;
  }
  .p-sm-13 {
    padding: 13rem !important;
  }
  .p-sm-15 {
    padding: 15rem !important;
  }
  .p-sm-16 {
    padding: 16rem !important;
  }
  .p-sm-20 {
    padding: 20rem !important;
  }
  .p-sm-25 {
    padding: 25rem !important;
  }
  .p-sm-30 {
    padding: 30rem !important;
  }
  .p-sm-35 {
    padding: 35rem !important;
  }
  .p-sm-40 {
    padding: 40rem !important;
  }
  .p-sm-45 {
    padding: 45rem !important;
  }
  .p-sm-50 {
    padding: 50rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-sm-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-sm-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-sm-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-sm-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-sm-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-sm-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-sm-16 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .px-sm-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-sm-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-sm-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-sm-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-sm-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-sm-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-sm-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-sm-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-sm-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-sm-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-sm-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-sm-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-sm-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-sm-16 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .py-sm-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-sm-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-sm-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-sm-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-sm-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-sm-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-sm-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-1 {
    padding-top: 1rem !important;
  }
  .pt-sm-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 2rem !important;
  }
  .pt-sm-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 3rem !important;
  }
  .pt-sm-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 4rem !important;
  }
  .pt-sm-5 {
    padding-top: 5rem !important;
  }
  .pt-sm-6 {
    padding-top: 6rem !important;
  }
  .pt-sm-7 {
    padding-top: 7rem !important;
  }
  .pt-sm-8 {
    padding-top: 8rem !important;
  }
  .pt-sm-9 {
    padding-top: 9rem !important;
  }
  .pt-sm-10 {
    padding-top: 10rem !important;
  }
  .pt-sm-13 {
    padding-top: 13rem !important;
  }
  .pt-sm-15 {
    padding-top: 15rem !important;
  }
  .pt-sm-16 {
    padding-top: 16rem !important;
  }
  .pt-sm-20 {
    padding-top: 20rem !important;
  }
  .pt-sm-25 {
    padding-top: 25rem !important;
  }
  .pt-sm-30 {
    padding-top: 30rem !important;
  }
  .pt-sm-35 {
    padding-top: 35rem !important;
  }
  .pt-sm-40 {
    padding-top: 40rem !important;
  }
  .pt-sm-45 {
    padding-top: 45rem !important;
  }
  .pt-sm-50 {
    padding-top: 50rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-1 {
    padding-right: 1rem !important;
  }
  .pe-sm-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-2 {
    padding-right: 2rem !important;
  }
  .pe-sm-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 3rem !important;
  }
  .pe-sm-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-4 {
    padding-right: 4rem !important;
  }
  .pe-sm-5 {
    padding-right: 5rem !important;
  }
  .pe-sm-6 {
    padding-right: 6rem !important;
  }
  .pe-sm-7 {
    padding-right: 7rem !important;
  }
  .pe-sm-8 {
    padding-right: 8rem !important;
  }
  .pe-sm-9 {
    padding-right: 9rem !important;
  }
  .pe-sm-10 {
    padding-right: 10rem !important;
  }
  .pe-sm-13 {
    padding-right: 13rem !important;
  }
  .pe-sm-15 {
    padding-right: 15rem !important;
  }
  .pe-sm-16 {
    padding-right: 16rem !important;
  }
  .pe-sm-20 {
    padding-right: 20rem !important;
  }
  .pe-sm-25 {
    padding-right: 25rem !important;
  }
  .pe-sm-30 {
    padding-right: 30rem !important;
  }
  .pe-sm-35 {
    padding-right: 35rem !important;
  }
  .pe-sm-40 {
    padding-right: 40rem !important;
  }
  .pe-sm-45 {
    padding-right: 45rem !important;
  }
  .pe-sm-50 {
    padding-right: 50rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 6rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }
  .pb-sm-16 {
    padding-bottom: 16rem !important;
  }
  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }
  .pb-sm-25 {
    padding-bottom: 25rem !important;
  }
  .pb-sm-30 {
    padding-bottom: 30rem !important;
  }
  .pb-sm-35 {
    padding-bottom: 35rem !important;
  }
  .pb-sm-40 {
    padding-bottom: 40rem !important;
  }
  .pb-sm-45 {
    padding-bottom: 45rem !important;
  }
  .pb-sm-50 {
    padding-bottom: 50rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-1 {
    padding-left: 1rem !important;
  }
  .ps-sm-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-2 {
    padding-left: 2rem !important;
  }
  .ps-sm-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 3rem !important;
  }
  .ps-sm-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-4 {
    padding-left: 4rem !important;
  }
  .ps-sm-5 {
    padding-left: 5rem !important;
  }
  .ps-sm-6 {
    padding-left: 6rem !important;
  }
  .ps-sm-7 {
    padding-left: 7rem !important;
  }
  .ps-sm-8 {
    padding-left: 8rem !important;
  }
  .ps-sm-9 {
    padding-left: 9rem !important;
  }
  .ps-sm-10 {
    padding-left: 10rem !important;
  }
  .ps-sm-13 {
    padding-left: 13rem !important;
  }
  .ps-sm-15 {
    padding-left: 15rem !important;
  }
  .ps-sm-16 {
    padding-left: 16rem !important;
  }
  .ps-sm-20 {
    padding-left: 20rem !important;
  }
  .ps-sm-25 {
    padding-left: 25rem !important;
  }
  .ps-sm-30 {
    padding-left: 30rem !important;
  }
  .ps-sm-35 {
    padding-left: 35rem !important;
  }
  .ps-sm-40 {
    padding-left: 40rem !important;
  }
  .ps-sm-45 {
    padding-left: 45rem !important;
  }
  .ps-sm-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-0_5 {
    margin: 0.5rem !important;
  }
  .m-md-1 {
    margin: 1rem !important;
  }
  .m-md-1_5 {
    margin: 1.5rem !important;
  }
  .m-md-2 {
    margin: 2rem !important;
  }
  .m-md-2_5 {
    margin: 2.5rem !important;
  }
  .m-md-3 {
    margin: 3rem !important;
  }
  .m-md-3_5 {
    margin: 3.5rem !important;
  }
  .m-md-4 {
    margin: 4rem !important;
  }
  .m-md-5 {
    margin: 5rem !important;
  }
  .m-md-6 {
    margin: 6rem !important;
  }
  .m-md-7 {
    margin: 7rem !important;
  }
  .m-md-8 {
    margin: 8rem !important;
  }
  .m-md-9 {
    margin: 9rem !important;
  }
  .m-md-10 {
    margin: 10rem !important;
  }
  .m-md-13 {
    margin: 13rem !important;
  }
  .m-md-15 {
    margin: 15rem !important;
  }
  .m-md-16 {
    margin: 16rem !important;
  }
  .m-md-20 {
    margin: 20rem !important;
  }
  .m-md-25 {
    margin: 25rem !important;
  }
  .m-md-30 {
    margin: 30rem !important;
  }
  .m-md-35 {
    margin: 35rem !important;
  }
  .m-md-40 {
    margin: 40rem !important;
  }
  .m-md-45 {
    margin: 45rem !important;
  }
  .m-md-50 {
    margin: 50rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-md-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-md-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-md-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-md-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-md-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-md-16 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .mx-md-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-md-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-md-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-md-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-md-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-md-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-md-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-md-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-md-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-md-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-md-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-md-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-md-16 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .my-md-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-md-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-md-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-md-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-md-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-md-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-md-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-md-1 {
    margin-top: 1rem !important;
  }
  .mt-md-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-md-2 {
    margin-top: 2rem !important;
  }
  .mt-md-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-md-3 {
    margin-top: 3rem !important;
  }
  .mt-md-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-md-4 {
    margin-top: 4rem !important;
  }
  .mt-md-5 {
    margin-top: 5rem !important;
  }
  .mt-md-6 {
    margin-top: 6rem !important;
  }
  .mt-md-7 {
    margin-top: 7rem !important;
  }
  .mt-md-8 {
    margin-top: 8rem !important;
  }
  .mt-md-9 {
    margin-top: 9rem !important;
  }
  .mt-md-10 {
    margin-top: 10rem !important;
  }
  .mt-md-13 {
    margin-top: 13rem !important;
  }
  .mt-md-15 {
    margin-top: 15rem !important;
  }
  .mt-md-16 {
    margin-top: 16rem !important;
  }
  .mt-md-20 {
    margin-top: 20rem !important;
  }
  .mt-md-25 {
    margin-top: 25rem !important;
  }
  .mt-md-30 {
    margin-top: 30rem !important;
  }
  .mt-md-35 {
    margin-top: 35rem !important;
  }
  .mt-md-40 {
    margin-top: 40rem !important;
  }
  .mt-md-45 {
    margin-top: 45rem !important;
  }
  .mt-md-50 {
    margin-top: 50rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-md-1 {
    margin-right: 1rem !important;
  }
  .me-md-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-md-2 {
    margin-right: 2rem !important;
  }
  .me-md-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-md-3 {
    margin-right: 3rem !important;
  }
  .me-md-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-md-4 {
    margin-right: 4rem !important;
  }
  .me-md-5 {
    margin-right: 5rem !important;
  }
  .me-md-6 {
    margin-right: 6rem !important;
  }
  .me-md-7 {
    margin-right: 7rem !important;
  }
  .me-md-8 {
    margin-right: 8rem !important;
  }
  .me-md-9 {
    margin-right: 9rem !important;
  }
  .me-md-10 {
    margin-right: 10rem !important;
  }
  .me-md-13 {
    margin-right: 13rem !important;
  }
  .me-md-15 {
    margin-right: 15rem !important;
  }
  .me-md-16 {
    margin-right: 16rem !important;
  }
  .me-md-20 {
    margin-right: 20rem !important;
  }
  .me-md-25 {
    margin-right: 25rem !important;
  }
  .me-md-30 {
    margin-right: 30rem !important;
  }
  .me-md-35 {
    margin-right: 35rem !important;
  }
  .me-md-40 {
    margin-right: 40rem !important;
  }
  .me-md-45 {
    margin-right: 45rem !important;
  }
  .me-md-50 {
    margin-right: 50rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-1 {
    margin-bottom: 1rem !important;
  }
  .mb-md-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 2rem !important;
  }
  .mb-md-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 3rem !important;
  }
  .mb-md-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 4rem !important;
  }
  .mb-md-5 {
    margin-bottom: 5rem !important;
  }
  .mb-md-6 {
    margin-bottom: 6rem !important;
  }
  .mb-md-7 {
    margin-bottom: 7rem !important;
  }
  .mb-md-8 {
    margin-bottom: 8rem !important;
  }
  .mb-md-9 {
    margin-bottom: 9rem !important;
  }
  .mb-md-10 {
    margin-bottom: 10rem !important;
  }
  .mb-md-13 {
    margin-bottom: 13rem !important;
  }
  .mb-md-15 {
    margin-bottom: 15rem !important;
  }
  .mb-md-16 {
    margin-bottom: 16rem !important;
  }
  .mb-md-20 {
    margin-bottom: 20rem !important;
  }
  .mb-md-25 {
    margin-bottom: 25rem !important;
  }
  .mb-md-30 {
    margin-bottom: 30rem !important;
  }
  .mb-md-35 {
    margin-bottom: 35rem !important;
  }
  .mb-md-40 {
    margin-bottom: 40rem !important;
  }
  .mb-md-45 {
    margin-bottom: 45rem !important;
  }
  .mb-md-50 {
    margin-bottom: 50rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-md-1 {
    margin-left: 1rem !important;
  }
  .ms-md-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-md-2 {
    margin-left: 2rem !important;
  }
  .ms-md-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-md-3 {
    margin-left: 3rem !important;
  }
  .ms-md-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-md-4 {
    margin-left: 4rem !important;
  }
  .ms-md-5 {
    margin-left: 5rem !important;
  }
  .ms-md-6 {
    margin-left: 6rem !important;
  }
  .ms-md-7 {
    margin-left: 7rem !important;
  }
  .ms-md-8 {
    margin-left: 8rem !important;
  }
  .ms-md-9 {
    margin-left: 9rem !important;
  }
  .ms-md-10 {
    margin-left: 10rem !important;
  }
  .ms-md-13 {
    margin-left: 13rem !important;
  }
  .ms-md-15 {
    margin-left: 15rem !important;
  }
  .ms-md-16 {
    margin-left: 16rem !important;
  }
  .ms-md-20 {
    margin-left: 20rem !important;
  }
  .ms-md-25 {
    margin-left: 25rem !important;
  }
  .ms-md-30 {
    margin-left: 30rem !important;
  }
  .ms-md-35 {
    margin-left: 35rem !important;
  }
  .ms-md-40 {
    margin-left: 40rem !important;
  }
  .ms-md-45 {
    margin-left: 45rem !important;
  }
  .ms-md-50 {
    margin-left: 50rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-0_5 {
    padding: 0.5rem !important;
  }
  .p-md-1 {
    padding: 1rem !important;
  }
  .p-md-1_5 {
    padding: 1.5rem !important;
  }
  .p-md-2 {
    padding: 2rem !important;
  }
  .p-md-2_5 {
    padding: 2.5rem !important;
  }
  .p-md-3 {
    padding: 3rem !important;
  }
  .p-md-3_5 {
    padding: 3.5rem !important;
  }
  .p-md-4 {
    padding: 4rem !important;
  }
  .p-md-5 {
    padding: 5rem !important;
  }
  .p-md-6 {
    padding: 6rem !important;
  }
  .p-md-7 {
    padding: 7rem !important;
  }
  .p-md-8 {
    padding: 8rem !important;
  }
  .p-md-9 {
    padding: 9rem !important;
  }
  .p-md-10 {
    padding: 10rem !important;
  }
  .p-md-13 {
    padding: 13rem !important;
  }
  .p-md-15 {
    padding: 15rem !important;
  }
  .p-md-16 {
    padding: 16rem !important;
  }
  .p-md-20 {
    padding: 20rem !important;
  }
  .p-md-25 {
    padding: 25rem !important;
  }
  .p-md-30 {
    padding: 30rem !important;
  }
  .p-md-35 {
    padding: 35rem !important;
  }
  .p-md-40 {
    padding: 40rem !important;
  }
  .p-md-45 {
    padding: 45rem !important;
  }
  .p-md-50 {
    padding: 50rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-md-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-md-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-md-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-md-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-md-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-md-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-md-16 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .px-md-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-md-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-md-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-md-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-md-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-md-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-md-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-md-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-md-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-md-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-md-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-md-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-md-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-md-16 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .py-md-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-md-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-md-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-md-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-md-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-md-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-md-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-md-1 {
    padding-top: 1rem !important;
  }
  .pt-md-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-md-2 {
    padding-top: 2rem !important;
  }
  .pt-md-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-md-3 {
    padding-top: 3rem !important;
  }
  .pt-md-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-md-4 {
    padding-top: 4rem !important;
  }
  .pt-md-5 {
    padding-top: 5rem !important;
  }
  .pt-md-6 {
    padding-top: 6rem !important;
  }
  .pt-md-7 {
    padding-top: 7rem !important;
  }
  .pt-md-8 {
    padding-top: 8rem !important;
  }
  .pt-md-9 {
    padding-top: 9rem !important;
  }
  .pt-md-10 {
    padding-top: 10rem !important;
  }
  .pt-md-13 {
    padding-top: 13rem !important;
  }
  .pt-md-15 {
    padding-top: 15rem !important;
  }
  .pt-md-16 {
    padding-top: 16rem !important;
  }
  .pt-md-20 {
    padding-top: 20rem !important;
  }
  .pt-md-25 {
    padding-top: 25rem !important;
  }
  .pt-md-30 {
    padding-top: 30rem !important;
  }
  .pt-md-35 {
    padding-top: 35rem !important;
  }
  .pt-md-40 {
    padding-top: 40rem !important;
  }
  .pt-md-45 {
    padding-top: 45rem !important;
  }
  .pt-md-50 {
    padding-top: 50rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-md-1 {
    padding-right: 1rem !important;
  }
  .pe-md-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-md-2 {
    padding-right: 2rem !important;
  }
  .pe-md-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-md-3 {
    padding-right: 3rem !important;
  }
  .pe-md-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-md-4 {
    padding-right: 4rem !important;
  }
  .pe-md-5 {
    padding-right: 5rem !important;
  }
  .pe-md-6 {
    padding-right: 6rem !important;
  }
  .pe-md-7 {
    padding-right: 7rem !important;
  }
  .pe-md-8 {
    padding-right: 8rem !important;
  }
  .pe-md-9 {
    padding-right: 9rem !important;
  }
  .pe-md-10 {
    padding-right: 10rem !important;
  }
  .pe-md-13 {
    padding-right: 13rem !important;
  }
  .pe-md-15 {
    padding-right: 15rem !important;
  }
  .pe-md-16 {
    padding-right: 16rem !important;
  }
  .pe-md-20 {
    padding-right: 20rem !important;
  }
  .pe-md-25 {
    padding-right: 25rem !important;
  }
  .pe-md-30 {
    padding-right: 30rem !important;
  }
  .pe-md-35 {
    padding-right: 35rem !important;
  }
  .pe-md-40 {
    padding-right: 40rem !important;
  }
  .pe-md-45 {
    padding-right: 45rem !important;
  }
  .pe-md-50 {
    padding-right: 50rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-1 {
    padding-bottom: 1rem !important;
  }
  .pb-md-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 2rem !important;
  }
  .pb-md-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 3rem !important;
  }
  .pb-md-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 4rem !important;
  }
  .pb-md-5 {
    padding-bottom: 5rem !important;
  }
  .pb-md-6 {
    padding-bottom: 6rem !important;
  }
  .pb-md-7 {
    padding-bottom: 7rem !important;
  }
  .pb-md-8 {
    padding-bottom: 8rem !important;
  }
  .pb-md-9 {
    padding-bottom: 9rem !important;
  }
  .pb-md-10 {
    padding-bottom: 10rem !important;
  }
  .pb-md-13 {
    padding-bottom: 13rem !important;
  }
  .pb-md-15 {
    padding-bottom: 15rem !important;
  }
  .pb-md-16 {
    padding-bottom: 16rem !important;
  }
  .pb-md-20 {
    padding-bottom: 20rem !important;
  }
  .pb-md-25 {
    padding-bottom: 25rem !important;
  }
  .pb-md-30 {
    padding-bottom: 30rem !important;
  }
  .pb-md-35 {
    padding-bottom: 35rem !important;
  }
  .pb-md-40 {
    padding-bottom: 40rem !important;
  }
  .pb-md-45 {
    padding-bottom: 45rem !important;
  }
  .pb-md-50 {
    padding-bottom: 50rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-md-1 {
    padding-left: 1rem !important;
  }
  .ps-md-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-md-2 {
    padding-left: 2rem !important;
  }
  .ps-md-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-md-3 {
    padding-left: 3rem !important;
  }
  .ps-md-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-md-4 {
    padding-left: 4rem !important;
  }
  .ps-md-5 {
    padding-left: 5rem !important;
  }
  .ps-md-6 {
    padding-left: 6rem !important;
  }
  .ps-md-7 {
    padding-left: 7rem !important;
  }
  .ps-md-8 {
    padding-left: 8rem !important;
  }
  .ps-md-9 {
    padding-left: 9rem !important;
  }
  .ps-md-10 {
    padding-left: 10rem !important;
  }
  .ps-md-13 {
    padding-left: 13rem !important;
  }
  .ps-md-15 {
    padding-left: 15rem !important;
  }
  .ps-md-16 {
    padding-left: 16rem !important;
  }
  .ps-md-20 {
    padding-left: 20rem !important;
  }
  .ps-md-25 {
    padding-left: 25rem !important;
  }
  .ps-md-30 {
    padding-left: 30rem !important;
  }
  .ps-md-35 {
    padding-left: 35rem !important;
  }
  .ps-md-40 {
    padding-left: 40rem !important;
  }
  .ps-md-45 {
    padding-left: 45rem !important;
  }
  .ps-md-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-0_5 {
    margin: 0.5rem !important;
  }
  .m-lg-1 {
    margin: 1rem !important;
  }
  .m-lg-1_5 {
    margin: 1.5rem !important;
  }
  .m-lg-2 {
    margin: 2rem !important;
  }
  .m-lg-2_5 {
    margin: 2.5rem !important;
  }
  .m-lg-3 {
    margin: 3rem !important;
  }
  .m-lg-3_5 {
    margin: 3.5rem !important;
  }
  .m-lg-4 {
    margin: 4rem !important;
  }
  .m-lg-5 {
    margin: 5rem !important;
  }
  .m-lg-6 {
    margin: 6rem !important;
  }
  .m-lg-7 {
    margin: 7rem !important;
  }
  .m-lg-8 {
    margin: 8rem !important;
  }
  .m-lg-9 {
    margin: 9rem !important;
  }
  .m-lg-10 {
    margin: 10rem !important;
  }
  .m-lg-13 {
    margin: 13rem !important;
  }
  .m-lg-15 {
    margin: 15rem !important;
  }
  .m-lg-16 {
    margin: 16rem !important;
  }
  .m-lg-20 {
    margin: 20rem !important;
  }
  .m-lg-25 {
    margin: 25rem !important;
  }
  .m-lg-30 {
    margin: 30rem !important;
  }
  .m-lg-35 {
    margin: 35rem !important;
  }
  .m-lg-40 {
    margin: 40rem !important;
  }
  .m-lg-45 {
    margin: 45rem !important;
  }
  .m-lg-50 {
    margin: 50rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-lg-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-lg-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-lg-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-lg-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-lg-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-lg-16 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .mx-lg-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-lg-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-lg-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-lg-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-lg-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-lg-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-lg-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-lg-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-lg-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-lg-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-lg-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-lg-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-lg-16 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .my-lg-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-lg-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-lg-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-lg-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-lg-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-lg-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-lg-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-1 {
    margin-top: 1rem !important;
  }
  .mt-lg-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 2rem !important;
  }
  .mt-lg-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 3rem !important;
  }
  .mt-lg-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 4rem !important;
  }
  .mt-lg-5 {
    margin-top: 5rem !important;
  }
  .mt-lg-6 {
    margin-top: 6rem !important;
  }
  .mt-lg-7 {
    margin-top: 7rem !important;
  }
  .mt-lg-8 {
    margin-top: 8rem !important;
  }
  .mt-lg-9 {
    margin-top: 9rem !important;
  }
  .mt-lg-10 {
    margin-top: 10rem !important;
  }
  .mt-lg-13 {
    margin-top: 13rem !important;
  }
  .mt-lg-15 {
    margin-top: 15rem !important;
  }
  .mt-lg-16 {
    margin-top: 16rem !important;
  }
  .mt-lg-20 {
    margin-top: 20rem !important;
  }
  .mt-lg-25 {
    margin-top: 25rem !important;
  }
  .mt-lg-30 {
    margin-top: 30rem !important;
  }
  .mt-lg-35 {
    margin-top: 35rem !important;
  }
  .mt-lg-40 {
    margin-top: 40rem !important;
  }
  .mt-lg-45 {
    margin-top: 45rem !important;
  }
  .mt-lg-50 {
    margin-top: 50rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-lg-1 {
    margin-right: 1rem !important;
  }
  .me-lg-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-lg-2 {
    margin-right: 2rem !important;
  }
  .me-lg-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-lg-3 {
    margin-right: 3rem !important;
  }
  .me-lg-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-lg-4 {
    margin-right: 4rem !important;
  }
  .me-lg-5 {
    margin-right: 5rem !important;
  }
  .me-lg-6 {
    margin-right: 6rem !important;
  }
  .me-lg-7 {
    margin-right: 7rem !important;
  }
  .me-lg-8 {
    margin-right: 8rem !important;
  }
  .me-lg-9 {
    margin-right: 9rem !important;
  }
  .me-lg-10 {
    margin-right: 10rem !important;
  }
  .me-lg-13 {
    margin-right: 13rem !important;
  }
  .me-lg-15 {
    margin-right: 15rem !important;
  }
  .me-lg-16 {
    margin-right: 16rem !important;
  }
  .me-lg-20 {
    margin-right: 20rem !important;
  }
  .me-lg-25 {
    margin-right: 25rem !important;
  }
  .me-lg-30 {
    margin-right: 30rem !important;
  }
  .me-lg-35 {
    margin-right: 35rem !important;
  }
  .me-lg-40 {
    margin-right: 40rem !important;
  }
  .me-lg-45 {
    margin-right: 45rem !important;
  }
  .me-lg-50 {
    margin-right: 50rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }
  .mb-lg-16 {
    margin-bottom: 16rem !important;
  }
  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }
  .mb-lg-25 {
    margin-bottom: 25rem !important;
  }
  .mb-lg-30 {
    margin-bottom: 30rem !important;
  }
  .mb-lg-35 {
    margin-bottom: 35rem !important;
  }
  .mb-lg-40 {
    margin-bottom: 40rem !important;
  }
  .mb-lg-45 {
    margin-bottom: 45rem !important;
  }
  .mb-lg-50 {
    margin-bottom: 50rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-1 {
    margin-left: 1rem !important;
  }
  .ms-lg-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-2 {
    margin-left: 2rem !important;
  }
  .ms-lg-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 3rem !important;
  }
  .ms-lg-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-4 {
    margin-left: 4rem !important;
  }
  .ms-lg-5 {
    margin-left: 5rem !important;
  }
  .ms-lg-6 {
    margin-left: 6rem !important;
  }
  .ms-lg-7 {
    margin-left: 7rem !important;
  }
  .ms-lg-8 {
    margin-left: 8rem !important;
  }
  .ms-lg-9 {
    margin-left: 9rem !important;
  }
  .ms-lg-10 {
    margin-left: 10rem !important;
  }
  .ms-lg-13 {
    margin-left: 13rem !important;
  }
  .ms-lg-15 {
    margin-left: 15rem !important;
  }
  .ms-lg-16 {
    margin-left: 16rem !important;
  }
  .ms-lg-20 {
    margin-left: 20rem !important;
  }
  .ms-lg-25 {
    margin-left: 25rem !important;
  }
  .ms-lg-30 {
    margin-left: 30rem !important;
  }
  .ms-lg-35 {
    margin-left: 35rem !important;
  }
  .ms-lg-40 {
    margin-left: 40rem !important;
  }
  .ms-lg-45 {
    margin-left: 45rem !important;
  }
  .ms-lg-50 {
    margin-left: 50rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-0_5 {
    padding: 0.5rem !important;
  }
  .p-lg-1 {
    padding: 1rem !important;
  }
  .p-lg-1_5 {
    padding: 1.5rem !important;
  }
  .p-lg-2 {
    padding: 2rem !important;
  }
  .p-lg-2_5 {
    padding: 2.5rem !important;
  }
  .p-lg-3 {
    padding: 3rem !important;
  }
  .p-lg-3_5 {
    padding: 3.5rem !important;
  }
  .p-lg-4 {
    padding: 4rem !important;
  }
  .p-lg-5 {
    padding: 5rem !important;
  }
  .p-lg-6 {
    padding: 6rem !important;
  }
  .p-lg-7 {
    padding: 7rem !important;
  }
  .p-lg-8 {
    padding: 8rem !important;
  }
  .p-lg-9 {
    padding: 9rem !important;
  }
  .p-lg-10 {
    padding: 10rem !important;
  }
  .p-lg-13 {
    padding: 13rem !important;
  }
  .p-lg-15 {
    padding: 15rem !important;
  }
  .p-lg-16 {
    padding: 16rem !important;
  }
  .p-lg-20 {
    padding: 20rem !important;
  }
  .p-lg-25 {
    padding: 25rem !important;
  }
  .p-lg-30 {
    padding: 30rem !important;
  }
  .p-lg-35 {
    padding: 35rem !important;
  }
  .p-lg-40 {
    padding: 40rem !important;
  }
  .p-lg-45 {
    padding: 45rem !important;
  }
  .p-lg-50 {
    padding: 50rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-lg-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-lg-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-lg-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-lg-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-lg-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-lg-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-lg-16 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .px-lg-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-lg-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-lg-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-lg-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-lg-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-lg-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-lg-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-lg-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-lg-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-lg-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-lg-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-lg-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-lg-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-lg-16 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .py-lg-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-lg-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-lg-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-lg-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-lg-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-lg-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-lg-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-1 {
    padding-top: 1rem !important;
  }
  .pt-lg-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 2rem !important;
  }
  .pt-lg-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 3rem !important;
  }
  .pt-lg-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 4rem !important;
  }
  .pt-lg-5 {
    padding-top: 5rem !important;
  }
  .pt-lg-6 {
    padding-top: 6rem !important;
  }
  .pt-lg-7 {
    padding-top: 7rem !important;
  }
  .pt-lg-8 {
    padding-top: 8rem !important;
  }
  .pt-lg-9 {
    padding-top: 9rem !important;
  }
  .pt-lg-10 {
    padding-top: 10rem !important;
  }
  .pt-lg-13 {
    padding-top: 13rem !important;
  }
  .pt-lg-15 {
    padding-top: 15rem !important;
  }
  .pt-lg-16 {
    padding-top: 16rem !important;
  }
  .pt-lg-20 {
    padding-top: 20rem !important;
  }
  .pt-lg-25 {
    padding-top: 25rem !important;
  }
  .pt-lg-30 {
    padding-top: 30rem !important;
  }
  .pt-lg-35 {
    padding-top: 35rem !important;
  }
  .pt-lg-40 {
    padding-top: 40rem !important;
  }
  .pt-lg-45 {
    padding-top: 45rem !important;
  }
  .pt-lg-50 {
    padding-top: 50rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-1 {
    padding-right: 1rem !important;
  }
  .pe-lg-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-2 {
    padding-right: 2rem !important;
  }
  .pe-lg-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 3rem !important;
  }
  .pe-lg-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-4 {
    padding-right: 4rem !important;
  }
  .pe-lg-5 {
    padding-right: 5rem !important;
  }
  .pe-lg-6 {
    padding-right: 6rem !important;
  }
  .pe-lg-7 {
    padding-right: 7rem !important;
  }
  .pe-lg-8 {
    padding-right: 8rem !important;
  }
  .pe-lg-9 {
    padding-right: 9rem !important;
  }
  .pe-lg-10 {
    padding-right: 10rem !important;
  }
  .pe-lg-13 {
    padding-right: 13rem !important;
  }
  .pe-lg-15 {
    padding-right: 15rem !important;
  }
  .pe-lg-16 {
    padding-right: 16rem !important;
  }
  .pe-lg-20 {
    padding-right: 20rem !important;
  }
  .pe-lg-25 {
    padding-right: 25rem !important;
  }
  .pe-lg-30 {
    padding-right: 30rem !important;
  }
  .pe-lg-35 {
    padding-right: 35rem !important;
  }
  .pe-lg-40 {
    padding-right: 40rem !important;
  }
  .pe-lg-45 {
    padding-right: 45rem !important;
  }
  .pe-lg-50 {
    padding-right: 50rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 6rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }
  .pb-lg-16 {
    padding-bottom: 16rem !important;
  }
  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }
  .pb-lg-25 {
    padding-bottom: 25rem !important;
  }
  .pb-lg-30 {
    padding-bottom: 30rem !important;
  }
  .pb-lg-35 {
    padding-bottom: 35rem !important;
  }
  .pb-lg-40 {
    padding-bottom: 40rem !important;
  }
  .pb-lg-45 {
    padding-bottom: 45rem !important;
  }
  .pb-lg-50 {
    padding-bottom: 50rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-1 {
    padding-left: 1rem !important;
  }
  .ps-lg-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-2 {
    padding-left: 2rem !important;
  }
  .ps-lg-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 3rem !important;
  }
  .ps-lg-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-4 {
    padding-left: 4rem !important;
  }
  .ps-lg-5 {
    padding-left: 5rem !important;
  }
  .ps-lg-6 {
    padding-left: 6rem !important;
  }
  .ps-lg-7 {
    padding-left: 7rem !important;
  }
  .ps-lg-8 {
    padding-left: 8rem !important;
  }
  .ps-lg-9 {
    padding-left: 9rem !important;
  }
  .ps-lg-10 {
    padding-left: 10rem !important;
  }
  .ps-lg-13 {
    padding-left: 13rem !important;
  }
  .ps-lg-15 {
    padding-left: 15rem !important;
  }
  .ps-lg-16 {
    padding-left: 16rem !important;
  }
  .ps-lg-20 {
    padding-left: 20rem !important;
  }
  .ps-lg-25 {
    padding-left: 25rem !important;
  }
  .ps-lg-30 {
    padding-left: 30rem !important;
  }
  .ps-lg-35 {
    padding-left: 35rem !important;
  }
  .ps-lg-40 {
    padding-left: 40rem !important;
  }
  .ps-lg-45 {
    padding-left: 45rem !important;
  }
  .ps-lg-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xl-1 {
    margin: 1rem !important;
  }
  .m-xl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xl-2 {
    margin: 2rem !important;
  }
  .m-xl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xl-3 {
    margin: 3rem !important;
  }
  .m-xl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xl-4 {
    margin: 4rem !important;
  }
  .m-xl-5 {
    margin: 5rem !important;
  }
  .m-xl-6 {
    margin: 6rem !important;
  }
  .m-xl-7 {
    margin: 7rem !important;
  }
  .m-xl-8 {
    margin: 8rem !important;
  }
  .m-xl-9 {
    margin: 9rem !important;
  }
  .m-xl-10 {
    margin: 10rem !important;
  }
  .m-xl-13 {
    margin: 13rem !important;
  }
  .m-xl-15 {
    margin: 15rem !important;
  }
  .m-xl-16 {
    margin: 16rem !important;
  }
  .m-xl-20 {
    margin: 20rem !important;
  }
  .m-xl-25 {
    margin: 25rem !important;
  }
  .m-xl-30 {
    margin: 30rem !important;
  }
  .m-xl-35 {
    margin: 35rem !important;
  }
  .m-xl-40 {
    margin: 40rem !important;
  }
  .m-xl-45 {
    margin: 45rem !important;
  }
  .m-xl-50 {
    margin: 50rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xl-16 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .mx-xl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xl-16 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .my-xl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-1 {
    margin-top: 1rem !important;
  }
  .mt-xl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 2rem !important;
  }
  .mt-xl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 3rem !important;
  }
  .mt-xl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 4rem !important;
  }
  .mt-xl-5 {
    margin-top: 5rem !important;
  }
  .mt-xl-6 {
    margin-top: 6rem !important;
  }
  .mt-xl-7 {
    margin-top: 7rem !important;
  }
  .mt-xl-8 {
    margin-top: 8rem !important;
  }
  .mt-xl-9 {
    margin-top: 9rem !important;
  }
  .mt-xl-10 {
    margin-top: 10rem !important;
  }
  .mt-xl-13 {
    margin-top: 13rem !important;
  }
  .mt-xl-15 {
    margin-top: 15rem !important;
  }
  .mt-xl-16 {
    margin-top: 16rem !important;
  }
  .mt-xl-20 {
    margin-top: 20rem !important;
  }
  .mt-xl-25 {
    margin-top: 25rem !important;
  }
  .mt-xl-30 {
    margin-top: 30rem !important;
  }
  .mt-xl-35 {
    margin-top: 35rem !important;
  }
  .mt-xl-40 {
    margin-top: 40rem !important;
  }
  .mt-xl-45 {
    margin-top: 45rem !important;
  }
  .mt-xl-50 {
    margin-top: 50rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xl-1 {
    margin-right: 1rem !important;
  }
  .me-xl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xl-2 {
    margin-right: 2rem !important;
  }
  .me-xl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xl-3 {
    margin-right: 3rem !important;
  }
  .me-xl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xl-4 {
    margin-right: 4rem !important;
  }
  .me-xl-5 {
    margin-right: 5rem !important;
  }
  .me-xl-6 {
    margin-right: 6rem !important;
  }
  .me-xl-7 {
    margin-right: 7rem !important;
  }
  .me-xl-8 {
    margin-right: 8rem !important;
  }
  .me-xl-9 {
    margin-right: 9rem !important;
  }
  .me-xl-10 {
    margin-right: 10rem !important;
  }
  .me-xl-13 {
    margin-right: 13rem !important;
  }
  .me-xl-15 {
    margin-right: 15rem !important;
  }
  .me-xl-16 {
    margin-right: 16rem !important;
  }
  .me-xl-20 {
    margin-right: 20rem !important;
  }
  .me-xl-25 {
    margin-right: 25rem !important;
  }
  .me-xl-30 {
    margin-right: 30rem !important;
  }
  .me-xl-35 {
    margin-right: 35rem !important;
  }
  .me-xl-40 {
    margin-right: 40rem !important;
  }
  .me-xl-45 {
    margin-right: 45rem !important;
  }
  .me-xl-50 {
    margin-right: 50rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xl-16 {
    margin-bottom: 16rem !important;
  }
  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-1 {
    margin-left: 1rem !important;
  }
  .ms-xl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-2 {
    margin-left: 2rem !important;
  }
  .ms-xl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 3rem !important;
  }
  .ms-xl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-4 {
    margin-left: 4rem !important;
  }
  .ms-xl-5 {
    margin-left: 5rem !important;
  }
  .ms-xl-6 {
    margin-left: 6rem !important;
  }
  .ms-xl-7 {
    margin-left: 7rem !important;
  }
  .ms-xl-8 {
    margin-left: 8rem !important;
  }
  .ms-xl-9 {
    margin-left: 9rem !important;
  }
  .ms-xl-10 {
    margin-left: 10rem !important;
  }
  .ms-xl-13 {
    margin-left: 13rem !important;
  }
  .ms-xl-15 {
    margin-left: 15rem !important;
  }
  .ms-xl-16 {
    margin-left: 16rem !important;
  }
  .ms-xl-20 {
    margin-left: 20rem !important;
  }
  .ms-xl-25 {
    margin-left: 25rem !important;
  }
  .ms-xl-30 {
    margin-left: 30rem !important;
  }
  .ms-xl-35 {
    margin-left: 35rem !important;
  }
  .ms-xl-40 {
    margin-left: 40rem !important;
  }
  .ms-xl-45 {
    margin-left: 45rem !important;
  }
  .ms-xl-50 {
    margin-left: 50rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xl-1 {
    padding: 1rem !important;
  }
  .p-xl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xl-2 {
    padding: 2rem !important;
  }
  .p-xl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xl-3 {
    padding: 3rem !important;
  }
  .p-xl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xl-4 {
    padding: 4rem !important;
  }
  .p-xl-5 {
    padding: 5rem !important;
  }
  .p-xl-6 {
    padding: 6rem !important;
  }
  .p-xl-7 {
    padding: 7rem !important;
  }
  .p-xl-8 {
    padding: 8rem !important;
  }
  .p-xl-9 {
    padding: 9rem !important;
  }
  .p-xl-10 {
    padding: 10rem !important;
  }
  .p-xl-13 {
    padding: 13rem !important;
  }
  .p-xl-15 {
    padding: 15rem !important;
  }
  .p-xl-16 {
    padding: 16rem !important;
  }
  .p-xl-20 {
    padding: 20rem !important;
  }
  .p-xl-25 {
    padding: 25rem !important;
  }
  .p-xl-30 {
    padding: 30rem !important;
  }
  .p-xl-35 {
    padding: 35rem !important;
  }
  .p-xl-40 {
    padding: 40rem !important;
  }
  .p-xl-45 {
    padding: 45rem !important;
  }
  .p-xl-50 {
    padding: 50rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xl-16 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .px-xl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xl-16 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .py-xl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-1 {
    padding-top: 1rem !important;
  }
  .pt-xl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 2rem !important;
  }
  .pt-xl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 3rem !important;
  }
  .pt-xl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 4rem !important;
  }
  .pt-xl-5 {
    padding-top: 5rem !important;
  }
  .pt-xl-6 {
    padding-top: 6rem !important;
  }
  .pt-xl-7 {
    padding-top: 7rem !important;
  }
  .pt-xl-8 {
    padding-top: 8rem !important;
  }
  .pt-xl-9 {
    padding-top: 9rem !important;
  }
  .pt-xl-10 {
    padding-top: 10rem !important;
  }
  .pt-xl-13 {
    padding-top: 13rem !important;
  }
  .pt-xl-15 {
    padding-top: 15rem !important;
  }
  .pt-xl-16 {
    padding-top: 16rem !important;
  }
  .pt-xl-20 {
    padding-top: 20rem !important;
  }
  .pt-xl-25 {
    padding-top: 25rem !important;
  }
  .pt-xl-30 {
    padding-top: 30rem !important;
  }
  .pt-xl-35 {
    padding-top: 35rem !important;
  }
  .pt-xl-40 {
    padding-top: 40rem !important;
  }
  .pt-xl-45 {
    padding-top: 45rem !important;
  }
  .pt-xl-50 {
    padding-top: 50rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-1 {
    padding-right: 1rem !important;
  }
  .pe-xl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-2 {
    padding-right: 2rem !important;
  }
  .pe-xl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 3rem !important;
  }
  .pe-xl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-4 {
    padding-right: 4rem !important;
  }
  .pe-xl-5 {
    padding-right: 5rem !important;
  }
  .pe-xl-6 {
    padding-right: 6rem !important;
  }
  .pe-xl-7 {
    padding-right: 7rem !important;
  }
  .pe-xl-8 {
    padding-right: 8rem !important;
  }
  .pe-xl-9 {
    padding-right: 9rem !important;
  }
  .pe-xl-10 {
    padding-right: 10rem !important;
  }
  .pe-xl-13 {
    padding-right: 13rem !important;
  }
  .pe-xl-15 {
    padding-right: 15rem !important;
  }
  .pe-xl-16 {
    padding-right: 16rem !important;
  }
  .pe-xl-20 {
    padding-right: 20rem !important;
  }
  .pe-xl-25 {
    padding-right: 25rem !important;
  }
  .pe-xl-30 {
    padding-right: 30rem !important;
  }
  .pe-xl-35 {
    padding-right: 35rem !important;
  }
  .pe-xl-40 {
    padding-right: 40rem !important;
  }
  .pe-xl-45 {
    padding-right: 45rem !important;
  }
  .pe-xl-50 {
    padding-right: 50rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xl-16 {
    padding-bottom: 16rem !important;
  }
  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-1 {
    padding-left: 1rem !important;
  }
  .ps-xl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-2 {
    padding-left: 2rem !important;
  }
  .ps-xl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 3rem !important;
  }
  .ps-xl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-4 {
    padding-left: 4rem !important;
  }
  .ps-xl-5 {
    padding-left: 5rem !important;
  }
  .ps-xl-6 {
    padding-left: 6rem !important;
  }
  .ps-xl-7 {
    padding-left: 7rem !important;
  }
  .ps-xl-8 {
    padding-left: 8rem !important;
  }
  .ps-xl-9 {
    padding-left: 9rem !important;
  }
  .ps-xl-10 {
    padding-left: 10rem !important;
  }
  .ps-xl-13 {
    padding-left: 13rem !important;
  }
  .ps-xl-15 {
    padding-left: 15rem !important;
  }
  .ps-xl-16 {
    padding-left: 16rem !important;
  }
  .ps-xl-20 {
    padding-left: 20rem !important;
  }
  .ps-xl-25 {
    padding-left: 25rem !important;
  }
  .ps-xl-30 {
    padding-left: 30rem !important;
  }
  .ps-xl-35 {
    padding-left: 35rem !important;
  }
  .ps-xl-40 {
    padding-left: 40rem !important;
  }
  .ps-xl-45 {
    padding-left: 45rem !important;
  }
  .ps-xl-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xxl-1 {
    margin: 1rem !important;
  }
  .m-xxl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xxl-2 {
    margin: 2rem !important;
  }
  .m-xxl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xxl-3 {
    margin: 3rem !important;
  }
  .m-xxl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xxl-4 {
    margin: 4rem !important;
  }
  .m-xxl-5 {
    margin: 5rem !important;
  }
  .m-xxl-6 {
    margin: 6rem !important;
  }
  .m-xxl-7 {
    margin: 7rem !important;
  }
  .m-xxl-8 {
    margin: 8rem !important;
  }
  .m-xxl-9 {
    margin: 9rem !important;
  }
  .m-xxl-10 {
    margin: 10rem !important;
  }
  .m-xxl-13 {
    margin: 13rem !important;
  }
  .m-xxl-15 {
    margin: 15rem !important;
  }
  .m-xxl-16 {
    margin: 16rem !important;
  }
  .m-xxl-20 {
    margin: 20rem !important;
  }
  .m-xxl-25 {
    margin: 25rem !important;
  }
  .m-xxl-30 {
    margin: 30rem !important;
  }
  .m-xxl-35 {
    margin: 35rem !important;
  }
  .m-xxl-40 {
    margin: 40rem !important;
  }
  .m-xxl-45 {
    margin: 45rem !important;
  }
  .m-xxl-50 {
    margin: 50rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xxl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxl-16 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .mx-xxl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xxl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xxl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xxl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xxl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xxl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xxl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !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-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xxl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxl-16 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .my-xxl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xxl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xxl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xxl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xxl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xxl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xxl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxl-16 {
    margin-top: 16rem !important;
  }
  .mt-xxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxl-25 {
    margin-top: 25rem !important;
  }
  .mt-xxl-30 {
    margin-top: 30rem !important;
  }
  .mt-xxl-35 {
    margin-top: 35rem !important;
  }
  .mt-xxl-40 {
    margin-top: 40rem !important;
  }
  .mt-xxl-45 {
    margin-top: 45rem !important;
  }
  .mt-xxl-50 {
    margin-top: 50rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxl-13 {
    margin-right: 13rem !important;
  }
  .me-xxl-15 {
    margin-right: 15rem !important;
  }
  .me-xxl-16 {
    margin-right: 16rem !important;
  }
  .me-xxl-20 {
    margin-right: 20rem !important;
  }
  .me-xxl-25 {
    margin-right: 25rem !important;
  }
  .me-xxl-30 {
    margin-right: 30rem !important;
  }
  .me-xxl-35 {
    margin-right: 35rem !important;
  }
  .me-xxl-40 {
    margin-right: 40rem !important;
  }
  .me-xxl-45 {
    margin-right: 45rem !important;
  }
  .me-xxl-50 {
    margin-right: 50rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxl-16 {
    margin-bottom: 16rem !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xxl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xxl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxl-13 {
    margin-left: 13rem !important;
  }
  .ms-xxl-15 {
    margin-left: 15rem !important;
  }
  .ms-xxl-16 {
    margin-left: 16rem !important;
  }
  .ms-xxl-20 {
    margin-left: 20rem !important;
  }
  .ms-xxl-25 {
    margin-left: 25rem !important;
  }
  .ms-xxl-30 {
    margin-left: 30rem !important;
  }
  .ms-xxl-35 {
    margin-left: 35rem !important;
  }
  .ms-xxl-40 {
    margin-left: 40rem !important;
  }
  .ms-xxl-45 {
    margin-left: 45rem !important;
  }
  .ms-xxl-50 {
    margin-left: 50rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xxl-1 {
    padding: 1rem !important;
  }
  .p-xxl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xxl-2 {
    padding: 2rem !important;
  }
  .p-xxl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xxl-3 {
    padding: 3rem !important;
  }
  .p-xxl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xxl-4 {
    padding: 4rem !important;
  }
  .p-xxl-5 {
    padding: 5rem !important;
  }
  .p-xxl-6 {
    padding: 6rem !important;
  }
  .p-xxl-7 {
    padding: 7rem !important;
  }
  .p-xxl-8 {
    padding: 8rem !important;
  }
  .p-xxl-9 {
    padding: 9rem !important;
  }
  .p-xxl-10 {
    padding: 10rem !important;
  }
  .p-xxl-13 {
    padding: 13rem !important;
  }
  .p-xxl-15 {
    padding: 15rem !important;
  }
  .p-xxl-16 {
    padding: 16rem !important;
  }
  .p-xxl-20 {
    padding: 20rem !important;
  }
  .p-xxl-25 {
    padding: 25rem !important;
  }
  .p-xxl-30 {
    padding: 30rem !important;
  }
  .p-xxl-35 {
    padding: 35rem !important;
  }
  .p-xxl-40 {
    padding: 40rem !important;
  }
  .p-xxl-45 {
    padding: 45rem !important;
  }
  .p-xxl-50 {
    padding: 50rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xxl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxl-16 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .px-xxl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xxl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xxl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xxl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xxl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xxl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xxl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xxl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxl-16 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .py-xxl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xxl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xxl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xxl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xxl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xxl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xxl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxl-16 {
    padding-top: 16rem !important;
  }
  .pt-xxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxl-25 {
    padding-top: 25rem !important;
  }
  .pt-xxl-30 {
    padding-top: 30rem !important;
  }
  .pt-xxl-35 {
    padding-top: 35rem !important;
  }
  .pt-xxl-40 {
    padding-top: 40rem !important;
  }
  .pt-xxl-45 {
    padding-top: 45rem !important;
  }
  .pt-xxl-50 {
    padding-top: 50rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxl-10 {
    padding-right: 10rem !important;
  }
  .pe-xxl-13 {
    padding-right: 13rem !important;
  }
  .pe-xxl-15 {
    padding-right: 15rem !important;
  }
  .pe-xxl-16 {
    padding-right: 16rem !important;
  }
  .pe-xxl-20 {
    padding-right: 20rem !important;
  }
  .pe-xxl-25 {
    padding-right: 25rem !important;
  }
  .pe-xxl-30 {
    padding-right: 30rem !important;
  }
  .pe-xxl-35 {
    padding-right: 35rem !important;
  }
  .pe-xxl-40 {
    padding-right: 40rem !important;
  }
  .pe-xxl-45 {
    padding-right: 45rem !important;
  }
  .pe-xxl-50 {
    padding-right: 50rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxl-16 {
    padding-bottom: 16rem !important;
  }
  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xxl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xxl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xxl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xxl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xxl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxl-10 {
    padding-left: 10rem !important;
  }
  .ps-xxl-13 {
    padding-left: 13rem !important;
  }
  .ps-xxl-15 {
    padding-left: 15rem !important;
  }
  .ps-xxl-16 {
    padding-left: 16rem !important;
  }
  .ps-xxl-20 {
    padding-left: 20rem !important;
  }
  .ps-xxl-25 {
    padding-left: 25rem !important;
  }
  .ps-xxl-30 {
    padding-left: 30rem !important;
  }
  .ps-xxl-35 {
    padding-left: 35rem !important;
  }
  .ps-xxl-40 {
    padding-left: 40rem !important;
  }
  .ps-xxl-45 {
    padding-left: 45rem !important;
  }
  .ps-xxl-50 {
    padding-left: 50rem !important;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxxl-row {
    flex-direction: row !important;
  }
  .flex-xxxl-column {
    flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    justify-content: center !important;
  }
  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    align-items: center !important;
  }
  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    align-content: center !important;
  }
  .align-content-xxxl-between {
    align-content: space-between !important;
  }
  .align-content-xxxl-around {
    align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    align-self: auto !important;
  }
  .align-self-xxxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    align-self: center !important;
  }
  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }
  .order-xxxl-first {
    order: -1 !important;
  }
  .order-xxxl-0 {
    order: 0 !important;
  }
  .order-xxxl-1 {
    order: 1 !important;
  }
  .order-xxxl-2 {
    order: 2 !important;
  }
  .order-xxxl-3 {
    order: 3 !important;
  }
  .order-xxxl-4 {
    order: 4 !important;
  }
  .order-xxxl-5 {
    order: 5 !important;
  }
  .order-xxxl-last {
    order: 6 !important;
  }
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .m-xxxl-0_5 {
    margin: 0.5rem !important;
  }
  .m-xxxl-1 {
    margin: 1rem !important;
  }
  .m-xxxl-1_5 {
    margin: 1.5rem !important;
  }
  .m-xxxl-2 {
    margin: 2rem !important;
  }
  .m-xxxl-2_5 {
    margin: 2.5rem !important;
  }
  .m-xxxl-3 {
    margin: 3rem !important;
  }
  .m-xxxl-3_5 {
    margin: 3.5rem !important;
  }
  .m-xxxl-4 {
    margin: 4rem !important;
  }
  .m-xxxl-5 {
    margin: 5rem !important;
  }
  .m-xxxl-6 {
    margin: 6rem !important;
  }
  .m-xxxl-7 {
    margin: 7rem !important;
  }
  .m-xxxl-8 {
    margin: 8rem !important;
  }
  .m-xxxl-9 {
    margin: 9rem !important;
  }
  .m-xxxl-10 {
    margin: 10rem !important;
  }
  .m-xxxl-13 {
    margin: 13rem !important;
  }
  .m-xxxl-15 {
    margin: 15rem !important;
  }
  .m-xxxl-16 {
    margin: 16rem !important;
  }
  .m-xxxl-20 {
    margin: 20rem !important;
  }
  .m-xxxl-25 {
    margin: 25rem !important;
  }
  .m-xxxl-30 {
    margin: 30rem !important;
  }
  .m-xxxl-35 {
    margin: 35rem !important;
  }
  .m-xxxl-40 {
    margin: 40rem !important;
  }
  .m-xxxl-45 {
    margin: 45rem !important;
  }
  .m-xxxl-50 {
    margin: 50rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxxl-0_5 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxxl-1 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxxl-1_5 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxxl-2 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxxl-2_5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxxl-3 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxxl-3_5 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxxl-4 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxxl-5 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xxxl-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xxxl-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
  }
  .mx-xxxl-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }
  .mx-xxxl-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
  }
  .mx-xxxl-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }
  .mx-xxxl-13 {
    margin-right: 13rem !important;
    margin-left: 13rem !important;
  }
  .mx-xxxl-15 {
    margin-right: 15rem !important;
    margin-left: 15rem !important;
  }
  .mx-xxxl-16 {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }
  .mx-xxxl-20 {
    margin-right: 20rem !important;
    margin-left: 20rem !important;
  }
  .mx-xxxl-25 {
    margin-right: 25rem !important;
    margin-left: 25rem !important;
  }
  .mx-xxxl-30 {
    margin-right: 30rem !important;
    margin-left: 30rem !important;
  }
  .mx-xxxl-35 {
    margin-right: 35rem !important;
    margin-left: 35rem !important;
  }
  .mx-xxxl-40 {
    margin-right: 40rem !important;
    margin-left: 40rem !important;
  }
  .mx-xxxl-45 {
    margin-right: 45rem !important;
    margin-left: 45rem !important;
  }
  .mx-xxxl-50 {
    margin-right: 50rem !important;
    margin-left: 50rem !important;
  }
  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxxl-0_5 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxxl-1 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxxl-1_5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxxl-2 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxxl-2_5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxxl-3 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxxl-3_5 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxxl-4 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxxl-5 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xxxl-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xxxl-7 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }
  .my-xxxl-8 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .my-xxxl-9 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }
  .my-xxxl-10 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }
  .my-xxxl-13 {
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }
  .my-xxxl-15 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
  .my-xxxl-16 {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }
  .my-xxxl-20 {
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }
  .my-xxxl-25 {
    margin-top: 25rem !important;
    margin-bottom: 25rem !important;
  }
  .my-xxxl-30 {
    margin-top: 30rem !important;
    margin-bottom: 30rem !important;
  }
  .my-xxxl-35 {
    margin-top: 35rem !important;
    margin-bottom: 35rem !important;
  }
  .my-xxxl-40 {
    margin-top: 40rem !important;
    margin-bottom: 40rem !important;
  }
  .my-xxxl-45 {
    margin-top: 45rem !important;
    margin-bottom: 45rem !important;
  }
  .my-xxxl-50 {
    margin-top: 50rem !important;
    margin-bottom: 50rem !important;
  }
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxxl-0_5 {
    margin-top: 0.5rem !important;
  }
  .mt-xxxl-1 {
    margin-top: 1rem !important;
  }
  .mt-xxxl-1_5 {
    margin-top: 1.5rem !important;
  }
  .mt-xxxl-2 {
    margin-top: 2rem !important;
  }
  .mt-xxxl-2_5 {
    margin-top: 2.5rem !important;
  }
  .mt-xxxl-3 {
    margin-top: 3rem !important;
  }
  .mt-xxxl-3_5 {
    margin-top: 3.5rem !important;
  }
  .mt-xxxl-4 {
    margin-top: 4rem !important;
  }
  .mt-xxxl-5 {
    margin-top: 5rem !important;
  }
  .mt-xxxl-6 {
    margin-top: 6rem !important;
  }
  .mt-xxxl-7 {
    margin-top: 7rem !important;
  }
  .mt-xxxl-8 {
    margin-top: 8rem !important;
  }
  .mt-xxxl-9 {
    margin-top: 9rem !important;
  }
  .mt-xxxl-10 {
    margin-top: 10rem !important;
  }
  .mt-xxxl-13 {
    margin-top: 13rem !important;
  }
  .mt-xxxl-15 {
    margin-top: 15rem !important;
  }
  .mt-xxxl-16 {
    margin-top: 16rem !important;
  }
  .mt-xxxl-20 {
    margin-top: 20rem !important;
  }
  .mt-xxxl-25 {
    margin-top: 25rem !important;
  }
  .mt-xxxl-30 {
    margin-top: 30rem !important;
  }
  .mt-xxxl-35 {
    margin-top: 35rem !important;
  }
  .mt-xxxl-40 {
    margin-top: 40rem !important;
  }
  .mt-xxxl-45 {
    margin-top: 45rem !important;
  }
  .mt-xxxl-50 {
    margin-top: 50rem !important;
  }
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .me-xxxl-0 {
    margin-right: 0 !important;
  }
  .me-xxxl-0_5 {
    margin-right: 0.5rem !important;
  }
  .me-xxxl-1 {
    margin-right: 1rem !important;
  }
  .me-xxxl-1_5 {
    margin-right: 1.5rem !important;
  }
  .me-xxxl-2 {
    margin-right: 2rem !important;
  }
  .me-xxxl-2_5 {
    margin-right: 2.5rem !important;
  }
  .me-xxxl-3 {
    margin-right: 3rem !important;
  }
  .me-xxxl-3_5 {
    margin-right: 3.5rem !important;
  }
  .me-xxxl-4 {
    margin-right: 4rem !important;
  }
  .me-xxxl-5 {
    margin-right: 5rem !important;
  }
  .me-xxxl-6 {
    margin-right: 6rem !important;
  }
  .me-xxxl-7 {
    margin-right: 7rem !important;
  }
  .me-xxxl-8 {
    margin-right: 8rem !important;
  }
  .me-xxxl-9 {
    margin-right: 9rem !important;
  }
  .me-xxxl-10 {
    margin-right: 10rem !important;
  }
  .me-xxxl-13 {
    margin-right: 13rem !important;
  }
  .me-xxxl-15 {
    margin-right: 15rem !important;
  }
  .me-xxxl-16 {
    margin-right: 16rem !important;
  }
  .me-xxxl-20 {
    margin-right: 20rem !important;
  }
  .me-xxxl-25 {
    margin-right: 25rem !important;
  }
  .me-xxxl-30 {
    margin-right: 30rem !important;
  }
  .me-xxxl-35 {
    margin-right: 35rem !important;
  }
  .me-xxxl-40 {
    margin-right: 40rem !important;
  }
  .me-xxxl-45 {
    margin-right: 45rem !important;
  }
  .me-xxxl-50 {
    margin-right: 50rem !important;
  }
  .me-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxxl-0_5 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxxl-1 {
    margin-bottom: 1rem !important;
  }
  .mb-xxxl-1_5 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxxl-2 {
    margin-bottom: 2rem !important;
  }
  .mb-xxxl-2_5 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxxl-3 {
    margin-bottom: 3rem !important;
  }
  .mb-xxxl-3_5 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxxl-4 {
    margin-bottom: 4rem !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 5rem !important;
  }
  .mb-xxxl-6 {
    margin-bottom: 6rem !important;
  }
  .mb-xxxl-7 {
    margin-bottom: 7rem !important;
  }
  .mb-xxxl-8 {
    margin-bottom: 8rem !important;
  }
  .mb-xxxl-9 {
    margin-bottom: 9rem !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 10rem !important;
  }
  .mb-xxxl-13 {
    margin-bottom: 13rem !important;
  }
  .mb-xxxl-15 {
    margin-bottom: 15rem !important;
  }
  .mb-xxxl-16 {
    margin-bottom: 16rem !important;
  }
  .mb-xxxl-20 {
    margin-bottom: 20rem !important;
  }
  .mb-xxxl-25 {
    margin-bottom: 25rem !important;
  }
  .mb-xxxl-30 {
    margin-bottom: 30rem !important;
  }
  .mb-xxxl-35 {
    margin-bottom: 35rem !important;
  }
  .mb-xxxl-40 {
    margin-bottom: 40rem !important;
  }
  .mb-xxxl-45 {
    margin-bottom: 45rem !important;
  }
  .mb-xxxl-50 {
    margin-bottom: 50rem !important;
  }
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxxl-0_5 {
    margin-left: 0.5rem !important;
  }
  .ms-xxxl-1 {
    margin-left: 1rem !important;
  }
  .ms-xxxl-1_5 {
    margin-left: 1.5rem !important;
  }
  .ms-xxxl-2 {
    margin-left: 2rem !important;
  }
  .ms-xxxl-2_5 {
    margin-left: 2.5rem !important;
  }
  .ms-xxxl-3 {
    margin-left: 3rem !important;
  }
  .ms-xxxl-3_5 {
    margin-left: 3.5rem !important;
  }
  .ms-xxxl-4 {
    margin-left: 4rem !important;
  }
  .ms-xxxl-5 {
    margin-left: 5rem !important;
  }
  .ms-xxxl-6 {
    margin-left: 6rem !important;
  }
  .ms-xxxl-7 {
    margin-left: 7rem !important;
  }
  .ms-xxxl-8 {
    margin-left: 8rem !important;
  }
  .ms-xxxl-9 {
    margin-left: 9rem !important;
  }
  .ms-xxxl-10 {
    margin-left: 10rem !important;
  }
  .ms-xxxl-13 {
    margin-left: 13rem !important;
  }
  .ms-xxxl-15 {
    margin-left: 15rem !important;
  }
  .ms-xxxl-16 {
    margin-left: 16rem !important;
  }
  .ms-xxxl-20 {
    margin-left: 20rem !important;
  }
  .ms-xxxl-25 {
    margin-left: 25rem !important;
  }
  .ms-xxxl-30 {
    margin-left: 30rem !important;
  }
  .ms-xxxl-35 {
    margin-left: 35rem !important;
  }
  .ms-xxxl-40 {
    margin-left: 40rem !important;
  }
  .ms-xxxl-45 {
    margin-left: 45rem !important;
  }
  .ms-xxxl-50 {
    margin-left: 50rem !important;
  }
  .ms-xxxl-auto {
    margin-left: auto !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .p-xxxl-0_5 {
    padding: 0.5rem !important;
  }
  .p-xxxl-1 {
    padding: 1rem !important;
  }
  .p-xxxl-1_5 {
    padding: 1.5rem !important;
  }
  .p-xxxl-2 {
    padding: 2rem !important;
  }
  .p-xxxl-2_5 {
    padding: 2.5rem !important;
  }
  .p-xxxl-3 {
    padding: 3rem !important;
  }
  .p-xxxl-3_5 {
    padding: 3.5rem !important;
  }
  .p-xxxl-4 {
    padding: 4rem !important;
  }
  .p-xxxl-5 {
    padding: 5rem !important;
  }
  .p-xxxl-6 {
    padding: 6rem !important;
  }
  .p-xxxl-7 {
    padding: 7rem !important;
  }
  .p-xxxl-8 {
    padding: 8rem !important;
  }
  .p-xxxl-9 {
    padding: 9rem !important;
  }
  .p-xxxl-10 {
    padding: 10rem !important;
  }
  .p-xxxl-13 {
    padding: 13rem !important;
  }
  .p-xxxl-15 {
    padding: 15rem !important;
  }
  .p-xxxl-16 {
    padding: 16rem !important;
  }
  .p-xxxl-20 {
    padding: 20rem !important;
  }
  .p-xxxl-25 {
    padding: 25rem !important;
  }
  .p-xxxl-30 {
    padding: 30rem !important;
  }
  .p-xxxl-35 {
    padding: 35rem !important;
  }
  .p-xxxl-40 {
    padding: 40rem !important;
  }
  .p-xxxl-45 {
    padding: 45rem !important;
  }
  .p-xxxl-50 {
    padding: 50rem !important;
  }
  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxxl-0_5 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxxl-1 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxxl-1_5 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxxl-2 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxxl-2_5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxxl-3 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxxl-3_5 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxxl-4 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xxxl-5 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xxxl-6 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .px-xxxl-7 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
  }
  .px-xxxl-8 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }
  .px-xxxl-9 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
  }
  .px-xxxl-10 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }
  .px-xxxl-13 {
    padding-right: 13rem !important;
    padding-left: 13rem !important;
  }
  .px-xxxl-15 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }
  .px-xxxl-16 {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }
  .px-xxxl-20 {
    padding-right: 20rem !important;
    padding-left: 20rem !important;
  }
  .px-xxxl-25 {
    padding-right: 25rem !important;
    padding-left: 25rem !important;
  }
  .px-xxxl-30 {
    padding-right: 30rem !important;
    padding-left: 30rem !important;
  }
  .px-xxxl-35 {
    padding-right: 35rem !important;
    padding-left: 35rem !important;
  }
  .px-xxxl-40 {
    padding-right: 40rem !important;
    padding-left: 40rem !important;
  }
  .px-xxxl-45 {
    padding-right: 45rem !important;
    padding-left: 45rem !important;
  }
  .px-xxxl-50 {
    padding-right: 50rem !important;
    padding-left: 50rem !important;
  }
  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxxl-0_5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxxl-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxxl-1_5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxxl-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxxl-2_5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxxl-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxxl-3_5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxxl-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xxxl-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xxxl-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .py-xxxl-7 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }
  .py-xxxl-8 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }
  .py-xxxl-9 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }
  .py-xxxl-10 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }
  .py-xxxl-13 {
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }
  .py-xxxl-15 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
  .py-xxxl-16 {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }
  .py-xxxl-20 {
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }
  .py-xxxl-25 {
    padding-top: 25rem !important;
    padding-bottom: 25rem !important;
  }
  .py-xxxl-30 {
    padding-top: 30rem !important;
    padding-bottom: 30rem !important;
  }
  .py-xxxl-35 {
    padding-top: 35rem !important;
    padding-bottom: 35rem !important;
  }
  .py-xxxl-40 {
    padding-top: 40rem !important;
    padding-bottom: 40rem !important;
  }
  .py-xxxl-45 {
    padding-top: 45rem !important;
    padding-bottom: 45rem !important;
  }
  .py-xxxl-50 {
    padding-top: 50rem !important;
    padding-bottom: 50rem !important;
  }
  .pt-xxxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxxl-0_5 {
    padding-top: 0.5rem !important;
  }
  .pt-xxxl-1 {
    padding-top: 1rem !important;
  }
  .pt-xxxl-1_5 {
    padding-top: 1.5rem !important;
  }
  .pt-xxxl-2 {
    padding-top: 2rem !important;
  }
  .pt-xxxl-2_5 {
    padding-top: 2.5rem !important;
  }
  .pt-xxxl-3 {
    padding-top: 3rem !important;
  }
  .pt-xxxl-3_5 {
    padding-top: 3.5rem !important;
  }
  .pt-xxxl-4 {
    padding-top: 4rem !important;
  }
  .pt-xxxl-5 {
    padding-top: 5rem !important;
  }
  .pt-xxxl-6 {
    padding-top: 6rem !important;
  }
  .pt-xxxl-7 {
    padding-top: 7rem !important;
  }
  .pt-xxxl-8 {
    padding-top: 8rem !important;
  }
  .pt-xxxl-9 {
    padding-top: 9rem !important;
  }
  .pt-xxxl-10 {
    padding-top: 10rem !important;
  }
  .pt-xxxl-13 {
    padding-top: 13rem !important;
  }
  .pt-xxxl-15 {
    padding-top: 15rem !important;
  }
  .pt-xxxl-16 {
    padding-top: 16rem !important;
  }
  .pt-xxxl-20 {
    padding-top: 20rem !important;
  }
  .pt-xxxl-25 {
    padding-top: 25rem !important;
  }
  .pt-xxxl-30 {
    padding-top: 30rem !important;
  }
  .pt-xxxl-35 {
    padding-top: 35rem !important;
  }
  .pt-xxxl-40 {
    padding-top: 40rem !important;
  }
  .pt-xxxl-45 {
    padding-top: 45rem !important;
  }
  .pt-xxxl-50 {
    padding-top: 50rem !important;
  }
  .pe-xxxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxxl-0_5 {
    padding-right: 0.5rem !important;
  }
  .pe-xxxl-1 {
    padding-right: 1rem !important;
  }
  .pe-xxxl-1_5 {
    padding-right: 1.5rem !important;
  }
  .pe-xxxl-2 {
    padding-right: 2rem !important;
  }
  .pe-xxxl-2_5 {
    padding-right: 2.5rem !important;
  }
  .pe-xxxl-3 {
    padding-right: 3rem !important;
  }
  .pe-xxxl-3_5 {
    padding-right: 3.5rem !important;
  }
  .pe-xxxl-4 {
    padding-right: 4rem !important;
  }
  .pe-xxxl-5 {
    padding-right: 5rem !important;
  }
  .pe-xxxl-6 {
    padding-right: 6rem !important;
  }
  .pe-xxxl-7 {
    padding-right: 7rem !important;
  }
  .pe-xxxl-8 {
    padding-right: 8rem !important;
  }
  .pe-xxxl-9 {
    padding-right: 9rem !important;
  }
  .pe-xxxl-10 {
    padding-right: 10rem !important;
  }
  .pe-xxxl-13 {
    padding-right: 13rem !important;
  }
  .pe-xxxl-15 {
    padding-right: 15rem !important;
  }
  .pe-xxxl-16 {
    padding-right: 16rem !important;
  }
  .pe-xxxl-20 {
    padding-right: 20rem !important;
  }
  .pe-xxxl-25 {
    padding-right: 25rem !important;
  }
  .pe-xxxl-30 {
    padding-right: 30rem !important;
  }
  .pe-xxxl-35 {
    padding-right: 35rem !important;
  }
  .pe-xxxl-40 {
    padding-right: 40rem !important;
  }
  .pe-xxxl-45 {
    padding-right: 45rem !important;
  }
  .pe-xxxl-50 {
    padding-right: 50rem !important;
  }
  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxxl-0_5 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxxl-1 {
    padding-bottom: 1rem !important;
  }
  .pb-xxxl-1_5 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxxl-2 {
    padding-bottom: 2rem !important;
  }
  .pb-xxxl-2_5 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxxl-3 {
    padding-bottom: 3rem !important;
  }
  .pb-xxxl-3_5 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxxl-4 {
    padding-bottom: 4rem !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 5rem !important;
  }
  .pb-xxxl-6 {
    padding-bottom: 6rem !important;
  }
  .pb-xxxl-7 {
    padding-bottom: 7rem !important;
  }
  .pb-xxxl-8 {
    padding-bottom: 8rem !important;
  }
  .pb-xxxl-9 {
    padding-bottom: 9rem !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 10rem !important;
  }
  .pb-xxxl-13 {
    padding-bottom: 13rem !important;
  }
  .pb-xxxl-15 {
    padding-bottom: 15rem !important;
  }
  .pb-xxxl-16 {
    padding-bottom: 16rem !important;
  }
  .pb-xxxl-20 {
    padding-bottom: 20rem !important;
  }
  .pb-xxxl-25 {
    padding-bottom: 25rem !important;
  }
  .pb-xxxl-30 {
    padding-bottom: 30rem !important;
  }
  .pb-xxxl-35 {
    padding-bottom: 35rem !important;
  }
  .pb-xxxl-40 {
    padding-bottom: 40rem !important;
  }
  .pb-xxxl-45 {
    padding-bottom: 45rem !important;
  }
  .pb-xxxl-50 {
    padding-bottom: 50rem !important;
  }
  .ps-xxxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxxl-0_5 {
    padding-left: 0.5rem !important;
  }
  .ps-xxxl-1 {
    padding-left: 1rem !important;
  }
  .ps-xxxl-1_5 {
    padding-left: 1.5rem !important;
  }
  .ps-xxxl-2 {
    padding-left: 2rem !important;
  }
  .ps-xxxl-2_5 {
    padding-left: 2.5rem !important;
  }
  .ps-xxxl-3 {
    padding-left: 3rem !important;
  }
  .ps-xxxl-3_5 {
    padding-left: 3.5rem !important;
  }
  .ps-xxxl-4 {
    padding-left: 4rem !important;
  }
  .ps-xxxl-5 {
    padding-left: 5rem !important;
  }
  .ps-xxxl-6 {
    padding-left: 6rem !important;
  }
  .ps-xxxl-7 {
    padding-left: 7rem !important;
  }
  .ps-xxxl-8 {
    padding-left: 8rem !important;
  }
  .ps-xxxl-9 {
    padding-left: 9rem !important;
  }
  .ps-xxxl-10 {
    padding-left: 10rem !important;
  }
  .ps-xxxl-13 {
    padding-left: 13rem !important;
  }
  .ps-xxxl-15 {
    padding-left: 15rem !important;
  }
  .ps-xxxl-16 {
    padding-left: 16rem !important;
  }
  .ps-xxxl-20 {
    padding-left: 20rem !important;
  }
  .ps-xxxl-25 {
    padding-left: 25rem !important;
  }
  .ps-xxxl-30 {
    padding-left: 30rem !important;
  }
  .ps-xxxl-35 {
    padding-left: 35rem !important;
  }
  .ps-xxxl-40 {
    padding-left: 40rem !important;
  }
  .ps-xxxl-45 {
    padding-left: 45rem !important;
  }
  .ps-xxxl-50 {
    padding-left: 50rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
@keyframes slide-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
.slide-bottom {
  animation: slide-bottom 1s ease-in-out infinite alternate both;
}

@keyframes slide-top {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes reduce {
  0% {
    transform: scale(100%);
    opacity: 1;
  }
  100% {
    transform: scale(97%);
    opacity: 0.7;
  }
}
.slide-top {
  animation: slide-top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.zoom .image-wrapper,
.zoom figure {
  overflow: clip;
}
.zoom img {
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}
.zoom:hover img {
  transform: scale(1.1);
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.hover-underline-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #0090df;
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
}
.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.single-term .heading-4 a {
  position: relative;
  display: inline-block;
}
.single-term .heading-4 a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -0.1rem;
  left: 0;
  background-color: #0090df;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.single-term:hover {
  cursor: pointer;
}
.single-term:hover .heading-4 a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.default-transition {
  transition: all 0.5s ease-in-out !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

html,
body,
div,
header,
nav,
ul,
li {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

b,
strong {
  font-weight: bold;
}

* {
  font-size: 1em;
  text-decoration: none;
}

sup {
  vertical-align: super;
  font-size: 0.83em;
}

body {
  line-height: 1;
  max-width: 100vw;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: unset;
}
a:hover, a:visited {
  color: unset;
}

button {
  border: none;
  background: transparent;
}

a:active,
p:active,
h1:active,
h2:active,
h3:active,
h4:active,
h5:active,
h6:active,
li:active,
select:active,
button:active,
video:active,
input:active,
textarea:active,
div:active,
picture:active,
img:active {
  outline: none !important;
  box-shadow: none !important;
}
a:focus-within,
p:focus-within,
h1:focus-within,
h2:focus-within,
h3:focus-within,
h4:focus-within,
h5:focus-within,
h6:focus-within,
li:focus-within,
select:focus-within,
button:focus-within,
video:focus-within,
input:focus-within,
textarea:focus-within,
div:focus-within,
picture:focus-within,
img:focus-within {
  outline: none !important;
  box-shadow: none !important;
}
a:focus,
p:focus,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus,
li:focus,
select:focus,
button:focus,
video:focus,
input:focus,
textarea:focus,
div:focus,
picture:focus,
img:focus {
  outline: none !important;
  box-shadow: none !important;
}
a:visited,
p:visited,
h1:visited,
h2:visited,
h3:visited,
h4:visited,
h5:visited,
h6:visited,
li:visited,
select:visited,
button:visited,
video:visited,
input:visited,
textarea:visited,
div:visited,
picture:visited,
img:visited {
  color: inherit;
}

input,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
          clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important;
}

.wpml-ls-statics-footer,
.otgs-development-site-front-end {
  display: none !important;
}

figure {
  position: relative;
  overflow: clip;
}
figure .thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 1.2s ease-in-out;
}
figure .final {
  position: absolute;
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1px;
  min-height: 1px;
  opacity: 0;
  z-index: 10;
  transition: opacity 1.1s ease-in-out;
}
figure .final img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
figure.cover .thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
figure.cover .final img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
figure.lazy .final {
  height: 100%;
  opacity: 1;
}
figure.lazy .thumb {
  position: relative;
  z-index: -1;
  opacity: 0;
}
figure.is-svg picture img,
figure.is-svg picture svg {
  width: 100%;
  height: auto;
}

.fade-in {
  opacity: 1;
}

html,
body {
  color: #7e7e7e;
}

::-moz-selection {
  color: black !important;
  background: #0090df !important;
}

::selection {
  color: black !important;
  background: #0090df !important;
}

.primary {
  color: #0090df;
}
.primary:visited {
  color: #0090df;
}

.primary-darken {
  color: #006fac;
}

.primary-bg {
  background-color: #0090df;
}

.primary-bg-darken {
  background-color: #006fac;
}

.secondary {
  color: #b7e6ff;
}
.secondary:visited {
  color: #b7e6ff;
}

.secondary-darken {
  color: #84d4ff;
}

.secondary-bg {
  background-color: #b7e6ff;
}

.secondary-bg-darken {
  background-color: #84d4ff;
}

.text-color {
  color: #7e7e7e;
}
.text-color:visited {
  color: #7e7e7e;
}

.text-color-darken {
  color: #656565;
}

.text-color-bg {
  background-color: #7e7e7e;
}

.text-color-bg-darken {
  background-color: #656565;
}

.white {
  color: #fff;
}
.white:visited {
  color: #fff;
}

.white-darken {
  color: #e6e6e6;
}

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

.white-bg-darken {
  background-color: #e6e6e6;
}

.black {
  color: #161616;
}
.black:visited {
  color: #161616;
}

.black-darken {
  color: black;
}

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

.black-bg-darken {
  background-color: black;
}

.light-grey {
  color: #eaeaea;
}
.light-grey:visited {
  color: #eaeaea;
}

.light-grey-darken {
  color: #d1d1d1;
}

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

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

.medium-grey {
  color: #b5b5b5;
}
.medium-grey:visited {
  color: #b5b5b5;
}

.medium-grey-darken {
  color: #9c9c9c;
}

.medium-grey-bg {
  background-color: #b5b5b5;
}

.medium-grey-bg-darken {
  background-color: #9c9c9c;
}

.dark-grey {
  color: #717171;
}
.dark-grey:visited {
  color: #717171;
}

.dark-grey-darken {
  color: #585858;
}

.dark-grey-bg {
  background-color: #717171;
}

.dark-grey-bg-darken {
  background-color: #585858;
}

.grey-a {
  color: #c6c6c6;
}
.grey-a:visited {
  color: #c6c6c6;
}

.grey-a-darken {
  color: #adadad;
}

.grey-a-bg {
  background-color: #c6c6c6;
}

.grey-a-bg-darken {
  background-color: #adadad;
}

.grey-b {
  color: #808080;
}
.grey-b:visited {
  color: #808080;
}

.grey-b-darken {
  color: #676767;
}

.grey-b-bg {
  background-color: #808080;
}

.grey-b-bg-darken {
  background-color: #676767;
}

.grey-c {
  color: #7E7E7E;
}
.grey-c:visited {
  color: #7E7E7E;
}

.grey-c-darken {
  color: #656565;
}

.grey-c-bg {
  background-color: #7E7E7E;
}

.grey-c-bg-darken {
  background-color: #656565;
}

.heading-1-bigger {
  font-family: "Montserrat";
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 800;
}
@media (min-width: 576px) {
  .heading-1-bigger {
    font-size: 4.5rem;
  }
}
@media (min-width: 768px) {
  .heading-1-bigger {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  .heading-1-bigger {
    font-size: 5rem;
  }
}
@media (min-width: 576px) {
  .heading-1-bigger {
    line-height: 1.2;
  }
}
@media (min-width: 768px) {
  .heading-1-bigger {
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .heading-1-bigger {
    line-height: 1.2;
  }
}

h1, .heading-1 {
  font-family: "Montserrat";
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
}
@media (min-width: 576px) {
  h1, .heading-1 {
    font-size: 3.7rem;
  }
}
@media (min-width: 768px) {
  h1, .heading-1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  h1, .heading-1 {
    font-size: 5rem;
  }
}
@media (min-width: 576px) {
  h1, .heading-1 {
    line-height: 1.2;
  }
}
@media (min-width: 768px) {
  h1, .heading-1 {
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  h1, .heading-1 {
    line-height: 1.2;
  }
}

h2, .heading-2 {
  font-family: "Montserrat";
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 576px) {
  h2, .heading-2 {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) {
  h2, .heading-2 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  h2, .heading-2 {
    font-size: 3.2rem;
  }
}
@media (min-width: 576px) {
  h2, .heading-2 {
    line-height: 1.2;
  }
}
@media (min-width: 768px) {
  h2, .heading-2 {
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  h2, .heading-2 {
    line-height: 1.2;
  }
}

.heading-2-alt {
  font-family: "Montserrat";
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 576px) {
  .heading-2-alt {
    font-size: 2.8rem;
  }
}
@media (min-width: 768px) {
  .heading-2-alt {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .heading-2-alt {
    font-size: 4rem;
  }
}
@media (min-width: 576px) {
  .heading-2-alt {
    line-height: 1.2;
  }
}
@media (min-width: 768px) {
  .heading-2-alt {
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .heading-2-alt {
    line-height: 1.2;
  }
}

h3, .heading-3 {
  font-family: "Montserrat";
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}
@media (min-width: 576px) {
  h3, .heading-3 {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  h3, .heading-3 {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  h3, .heading-3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 576px) {
  h3, .heading-3 {
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  h3, .heading-3 {
    line-height: 1.3;
  }
}
@media (min-width: 992px) {
  h3, .heading-3 {
    line-height: 1.3;
  }
}

.heading-3-alt {
  font-family: "Montserrat";
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}
@media (min-width: 576px) {
  .heading-3-alt {
    font-size: 2.2rem;
  }
}
@media (min-width: 768px) {
  .heading-3-alt {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  .heading-3-alt {
    font-size: 2.8rem;
  }
}
@media (min-width: 576px) {
  .heading-3-alt {
    line-height: 1.3;
  }
}
@media (min-width: 768px) {
  .heading-3-alt {
    line-height: 1.3;
  }
}
@media (min-width: 992px) {
  .heading-3-alt {
    line-height: 1.3;
  }
}

h4, .heading-4 {
  font-family: "Montserrat";
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 576px) {
  h4, .heading-4 {
    font-size: 1.9rem;
  }
}
@media (min-width: 768px) {
  h4, .heading-4 {
    font-size: 2.2rem;
  }
}
@media (min-width: 992px) {
  h4, .heading-4 {
    font-size: 2.3rem;
  }
}
@media (min-width: 576px) {
  h4, .heading-4 {
    line-height: 1.4;
  }
}
@media (min-width: 768px) {
  h4, .heading-4 {
    line-height: 1.4;
  }
}
@media (min-width: 992px) {
  h4, .heading-4 {
    line-height: 1.4;
  }
}

p, div, ul, body, .text-1 {
  font-family: "Montserrat";
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  p, div, ul, body, .text-1 {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  p, div, ul, body, .text-1 {
    font-size: 1.6rem;
  }
}
@media (min-width: 576px) {
  p, div, ul, body, .text-1 {
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  p, div, ul, body, .text-1 {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  p, div, ul, body, .text-1 {
    line-height: 1.5;
  }
}

.text-1-bigger {
  font-family: "Montserrat";
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) {
  .text-1-bigger {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  .text-1-bigger {
    font-size: 2rem;
  }
}
@media (min-width: 576px) {
  .text-1-bigger {
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .text-1-bigger {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .text-1-bigger {
    line-height: 1.5;
  }
}

.menu-item-text {
  font-family: "Montserrat";
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 300;
}
@media (min-width: 768px) {
  .menu-item-text {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  .menu-item-text {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .menu-item-text {
    font-size: 3.4rem;
  }
}
@media (min-width: 576px) {
  .menu-item-text {
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .menu-item-text {
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .menu-item-text {
    line-height: 1.5;
  }
}

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

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

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

@media (min-width: 576px) {
  .text-center-sm {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .text-center-md {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .text-center-lg {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .text-center-xl {
    text-align: center;
  }
}

@media (min-width: 1400px) {
  .text-center-xxl {
    text-align: center;
  }
}

@media (min-width: 576px) {
  .text-left-sm {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .text-left-md {
    text-align: left;
  }
}

@media (min-width: 992px) {
  .text-left-lg {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .text-left-xl {
    text-align: left;
  }
}

@media (min-width: 1400px) {
  .text-left-xxl {
    text-align: left;
  }
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.light {
  font-weight: 300 !important;
}

.regular {
  font-weight: 400 !important;
}

.medium {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.dark {
  font-weight: 800 !important;
}

.italic {
  font-style: italic;
}

p ul,
.text-1 ul,
.text-2 ul {
  margin: 1rem 0;
}
p ul li,
.text-1 ul li,
.text-2 ul li {
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 1rem;
}
p ul li::before,
.text-1 ul li::before,
.text-2 ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0090df;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
p ol,
.text-1 ol,
.text-2 ol {
  margin: 1rem 0;
  list-style: decimal;
}
p ol li,
.text-1 ol li,
.text-2 ol li {
  padding: 0.5rem 0;
  margin-left: 1.5rem;
}

.text-1 p,
.text-2 p {
  margin-bottom: 0.8rem;
}
.text-1 strong,
.text-1 b,
.text-2 strong,
.text-2 b {
  font-weight: 500;
}
.text-1 em,
.text-1 i,
.text-2 em,
.text-2 i {
  font-style: italic;
}

.rank-math-breadcrumb p {
  letter-spacing: 0.2rem;
}

.as-left {
  height: 100%;
}
@media (min-width: 576px) {
  .as-left {
    padding-left: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  .as-left {
    padding-left: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .as-left {
    padding-left: calc((100vw - 980px) / 2);
  }
}
@media (min-width: 1200px) {
  .as-left {
    padding-left: calc((100vw - 1190px) / 2);
  }
}
@media (min-width: 1400px) {
  .as-left {
    padding-left: calc((100vw - 1380px) / 2);
  }
}
@media (min-width: 1600px) {
  .as-left {
    padding-left: calc((100vw - 1400px) / 2);
  }
}
@media (max-width: 767.98px) {
  .as-left {
    padding: 0 calc(2rem / 2);
  }
}

.as-right {
  height: 100%;
}
@media (min-width: 576px) {
  .as-right {
    padding-right: calc((100vw - 540px) / 2);
  }
}
@media (min-width: 768px) {
  .as-right {
    padding-right: calc((100vw - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .as-right {
    padding-right: calc((100vw - 980px) / 2);
  }
}
@media (min-width: 1200px) {
  .as-right {
    padding-right: calc((100vw - 1190px) / 2);
  }
}
@media (min-width: 1400px) {
  .as-right {
    padding-right: calc((100vw - 1380px) / 2);
  }
}
@media (min-width: 1600px) {
  .as-right {
    padding-right: calc((100vw - 1400px) / 2);
  }
}
@media (max-width: 767.98px) {
  .as-right {
    padding: 0 calc(2rem / 2);
  }
}

@media (min-width: 576px) {
  .as-sm-right {
    padding-right: 0;
  }
  .as-sm-left {
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .as-md-right {
    padding-right: 0;
  }
  .as-md-left {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .as-lg-right {
    padding-right: 0;
  }
  .as-lg-left {
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .as-xl-right {
    padding-right: 0;
  }
  .as-xl-left {
    padding-left: 0;
  }
}
@media (min-width: 1400px) {
  .as-xxl-right {
    padding-right: 0;
  }
  .as-xxl-left {
    padding-left: 0;
  }
}
@media (min-width: 1600px) {
  .as-xxxl-right {
    padding-right: 0;
  }
  .as-xxxl-left {
    padding-left: 0;
  }
}
.container {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.w-10 {
  width: calc(1 * 10%);
}

@media (min-width: 576px) {
  .w-sm-10 {
    width: calc(1 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-10 {
    width: calc(1 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-10 {
    width: calc(1 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-10 {
    width: calc(1 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-10 {
    width: calc(1 * 10%) !important;
  }
}

.rw-10 {
  width: calc(1 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-10 {
    width: calc(1 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-10 {
    width: calc(1 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-10 {
    width: calc(1 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-10 {
    width: calc(1 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-10 {
    width: calc(1 * 10rem);
  }
}

.h-10 {
  height: calc(1 * 10%);
}

@media (min-width: 576px) {
  .h-sm-10 {
    height: calc(1 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-10 {
    height: calc(1 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-10 {
    height: calc(1 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-10 {
    height: calc(1 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-10 {
    height: calc(1 * 10%);
  }
}

.rh-10 {
  height: calc(1 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-10 {
    height: calc(1 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-10 {
    height: calc(1 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-10 {
    height: calc(1 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-10 {
    height: calc(1 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-10 {
    height: calc(1 * 10rem) !important;
  }
}

.vh-10 {
  height: calc(1 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-10 {
    height: calc(1 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-10 {
    height: calc(1 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-10 {
    height: calc(1 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-10 {
    height: calc(1 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-10 {
    height: calc(1 * 10vh);
  }
}

.w-15 {
  width: calc(1.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-15 {
    width: calc(1.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-15 {
    width: calc(1.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-15 {
    width: calc(1.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-15 {
    width: calc(1.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-15 {
    width: calc(1.5 * 10%) !important;
  }
}

.rw-15 {
  width: calc(1.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-15 {
    width: calc(1.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-15 {
    width: calc(1.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-15 {
    width: calc(1.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-15 {
    width: calc(1.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-15 {
    width: calc(1.5 * 10rem);
  }
}

.h-15 {
  height: calc(1.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-15 {
    height: calc(1.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-15 {
    height: calc(1.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-15 {
    height: calc(1.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-15 {
    height: calc(1.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-15 {
    height: calc(1.5 * 10%);
  }
}

.rh-15 {
  height: calc(1.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-15 {
    height: calc(1.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-15 {
    height: calc(1.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-15 {
    height: calc(1.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-15 {
    height: calc(1.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-15 {
    height: calc(1.5 * 10rem) !important;
  }
}

.vh-15 {
  height: calc(1.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-15 {
    height: calc(1.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-15 {
    height: calc(1.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-15 {
    height: calc(1.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-15 {
    height: calc(1.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-15 {
    height: calc(1.5 * 10vh);
  }
}

.w-20 {
  width: calc(2 * 10%);
}

@media (min-width: 576px) {
  .w-sm-20 {
    width: calc(2 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-20 {
    width: calc(2 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-20 {
    width: calc(2 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-20 {
    width: calc(2 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-20 {
    width: calc(2 * 10%) !important;
  }
}

.rw-20 {
  width: calc(2 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-20 {
    width: calc(2 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-20 {
    width: calc(2 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-20 {
    width: calc(2 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-20 {
    width: calc(2 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-20 {
    width: calc(2 * 10rem);
  }
}

.h-20 {
  height: calc(2 * 10%);
}

@media (min-width: 576px) {
  .h-sm-20 {
    height: calc(2 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-20 {
    height: calc(2 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-20 {
    height: calc(2 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-20 {
    height: calc(2 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-20 {
    height: calc(2 * 10%);
  }
}

.rh-20 {
  height: calc(2 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-20 {
    height: calc(2 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-20 {
    height: calc(2 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-20 {
    height: calc(2 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-20 {
    height: calc(2 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-20 {
    height: calc(2 * 10rem) !important;
  }
}

.vh-20 {
  height: calc(2 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-20 {
    height: calc(2 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-20 {
    height: calc(2 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-20 {
    height: calc(2 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-20 {
    height: calc(2 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-20 {
    height: calc(2 * 10vh);
  }
}

.w-25 {
  width: calc(2.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-25 {
    width: calc(2.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-25 {
    width: calc(2.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-25 {
    width: calc(2.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-25 {
    width: calc(2.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-25 {
    width: calc(2.5 * 10%) !important;
  }
}

.rw-25 {
  width: calc(2.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-25 {
    width: calc(2.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-25 {
    width: calc(2.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-25 {
    width: calc(2.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-25 {
    width: calc(2.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-25 {
    width: calc(2.5 * 10rem);
  }
}

.h-25 {
  height: calc(2.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-25 {
    height: calc(2.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-25 {
    height: calc(2.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-25 {
    height: calc(2.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-25 {
    height: calc(2.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-25 {
    height: calc(2.5 * 10%);
  }
}

.rh-25 {
  height: calc(2.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-25 {
    height: calc(2.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-25 {
    height: calc(2.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-25 {
    height: calc(2.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-25 {
    height: calc(2.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-25 {
    height: calc(2.5 * 10rem) !important;
  }
}

.vh-25 {
  height: calc(2.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-25 {
    height: calc(2.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-25 {
    height: calc(2.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-25 {
    height: calc(2.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-25 {
    height: calc(2.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-25 {
    height: calc(2.5 * 10vh);
  }
}

.w-30 {
  width: calc(3 * 10%);
}

@media (min-width: 576px) {
  .w-sm-30 {
    width: calc(3 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-30 {
    width: calc(3 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-30 {
    width: calc(3 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-30 {
    width: calc(3 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-30 {
    width: calc(3 * 10%) !important;
  }
}

.rw-30 {
  width: calc(3 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-30 {
    width: calc(3 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-30 {
    width: calc(3 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-30 {
    width: calc(3 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-30 {
    width: calc(3 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-30 {
    width: calc(3 * 10rem);
  }
}

.h-30 {
  height: calc(3 * 10%);
}

@media (min-width: 576px) {
  .h-sm-30 {
    height: calc(3 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-30 {
    height: calc(3 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-30 {
    height: calc(3 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-30 {
    height: calc(3 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-30 {
    height: calc(3 * 10%);
  }
}

.rh-30 {
  height: calc(3 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-30 {
    height: calc(3 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-30 {
    height: calc(3 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-30 {
    height: calc(3 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-30 {
    height: calc(3 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-30 {
    height: calc(3 * 10rem) !important;
  }
}

.vh-30 {
  height: calc(3 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-30 {
    height: calc(3 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-30 {
    height: calc(3 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-30 {
    height: calc(3 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-30 {
    height: calc(3 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-30 {
    height: calc(3 * 10vh);
  }
}

.w-35 {
  width: calc(3.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-35 {
    width: calc(3.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-35 {
    width: calc(3.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-35 {
    width: calc(3.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-35 {
    width: calc(3.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-35 {
    width: calc(3.5 * 10%) !important;
  }
}

.rw-35 {
  width: calc(3.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-35 {
    width: calc(3.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-35 {
    width: calc(3.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-35 {
    width: calc(3.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-35 {
    width: calc(3.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-35 {
    width: calc(3.5 * 10rem);
  }
}

.h-35 {
  height: calc(3.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-35 {
    height: calc(3.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-35 {
    height: calc(3.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-35 {
    height: calc(3.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-35 {
    height: calc(3.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-35 {
    height: calc(3.5 * 10%);
  }
}

.rh-35 {
  height: calc(3.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-35 {
    height: calc(3.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-35 {
    height: calc(3.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-35 {
    height: calc(3.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-35 {
    height: calc(3.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-35 {
    height: calc(3.5 * 10rem) !important;
  }
}

.vh-35 {
  height: calc(3.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-35 {
    height: calc(3.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-35 {
    height: calc(3.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-35 {
    height: calc(3.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-35 {
    height: calc(3.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-35 {
    height: calc(3.5 * 10vh);
  }
}

.w-40 {
  width: calc(4 * 10%);
}

@media (min-width: 576px) {
  .w-sm-40 {
    width: calc(4 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-40 {
    width: calc(4 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-40 {
    width: calc(4 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-40 {
    width: calc(4 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-40 {
    width: calc(4 * 10%) !important;
  }
}

.rw-40 {
  width: calc(4 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-40 {
    width: calc(4 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-40 {
    width: calc(4 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-40 {
    width: calc(4 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-40 {
    width: calc(4 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-40 {
    width: calc(4 * 10rem);
  }
}

.h-40 {
  height: calc(4 * 10%);
}

@media (min-width: 576px) {
  .h-sm-40 {
    height: calc(4 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-40 {
    height: calc(4 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-40 {
    height: calc(4 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-40 {
    height: calc(4 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-40 {
    height: calc(4 * 10%);
  }
}

.rh-40 {
  height: calc(4 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-40 {
    height: calc(4 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-40 {
    height: calc(4 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-40 {
    height: calc(4 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-40 {
    height: calc(4 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-40 {
    height: calc(4 * 10rem) !important;
  }
}

.vh-40 {
  height: calc(4 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-40 {
    height: calc(4 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-40 {
    height: calc(4 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-40 {
    height: calc(4 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-40 {
    height: calc(4 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-40 {
    height: calc(4 * 10vh);
  }
}

.w-45 {
  width: calc(4.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-45 {
    width: calc(4.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-45 {
    width: calc(4.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-45 {
    width: calc(4.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-45 {
    width: calc(4.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-45 {
    width: calc(4.5 * 10%) !important;
  }
}

.rw-45 {
  width: calc(4.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-45 {
    width: calc(4.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-45 {
    width: calc(4.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-45 {
    width: calc(4.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-45 {
    width: calc(4.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-45 {
    width: calc(4.5 * 10rem);
  }
}

.h-45 {
  height: calc(4.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-45 {
    height: calc(4.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-45 {
    height: calc(4.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-45 {
    height: calc(4.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-45 {
    height: calc(4.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-45 {
    height: calc(4.5 * 10%);
  }
}

.rh-45 {
  height: calc(4.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-45 {
    height: calc(4.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-45 {
    height: calc(4.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-45 {
    height: calc(4.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-45 {
    height: calc(4.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-45 {
    height: calc(4.5 * 10rem) !important;
  }
}

.vh-45 {
  height: calc(4.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-45 {
    height: calc(4.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-45 {
    height: calc(4.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-45 {
    height: calc(4.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-45 {
    height: calc(4.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-45 {
    height: calc(4.5 * 10vh);
  }
}

.w-50 {
  width: calc(5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-50 {
    width: calc(5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-50 {
    width: calc(5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: calc(5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-50 {
    width: calc(5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-50 {
    width: calc(5 * 10%) !important;
  }
}

.rw-50 {
  width: calc(5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-50 {
    width: calc(5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-50 {
    width: calc(5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-50 {
    width: calc(5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-50 {
    width: calc(5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-50 {
    width: calc(5 * 10rem);
  }
}

.h-50 {
  height: calc(5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-50 {
    height: calc(5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-50 {
    height: calc(5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-50 {
    height: calc(5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-50 {
    height: calc(5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-50 {
    height: calc(5 * 10%);
  }
}

.rh-50 {
  height: calc(5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-50 {
    height: calc(5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-50 {
    height: calc(5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-50 {
    height: calc(5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-50 {
    height: calc(5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-50 {
    height: calc(5 * 10rem) !important;
  }
}

.vh-50 {
  height: calc(5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-50 {
    height: calc(5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-50 {
    height: calc(5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-50 {
    height: calc(5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-50 {
    height: calc(5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-50 {
    height: calc(5 * 10vh);
  }
}

.w-55 {
  width: calc(5.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-55 {
    width: calc(5.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-55 {
    width: calc(5.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-55 {
    width: calc(5.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-55 {
    width: calc(5.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-55 {
    width: calc(5.5 * 10%) !important;
  }
}

.rw-55 {
  width: calc(5.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-55 {
    width: calc(5.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-55 {
    width: calc(5.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-55 {
    width: calc(5.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-55 {
    width: calc(5.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-55 {
    width: calc(5.5 * 10rem);
  }
}

.h-55 {
  height: calc(5.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-55 {
    height: calc(5.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-55 {
    height: calc(5.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-55 {
    height: calc(5.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-55 {
    height: calc(5.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-55 {
    height: calc(5.5 * 10%);
  }
}

.rh-55 {
  height: calc(5.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-55 {
    height: calc(5.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-55 {
    height: calc(5.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-55 {
    height: calc(5.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-55 {
    height: calc(5.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-55 {
    height: calc(5.5 * 10rem) !important;
  }
}

.vh-55 {
  height: calc(5.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-55 {
    height: calc(5.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-55 {
    height: calc(5.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-55 {
    height: calc(5.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-55 {
    height: calc(5.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-55 {
    height: calc(5.5 * 10vh);
  }
}

.w-60 {
  width: calc(6 * 10%);
}

@media (min-width: 576px) {
  .w-sm-60 {
    width: calc(6 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-60 {
    width: calc(6 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-60 {
    width: calc(6 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-60 {
    width: calc(6 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-60 {
    width: calc(6 * 10%) !important;
  }
}

.rw-60 {
  width: calc(6 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-60 {
    width: calc(6 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-60 {
    width: calc(6 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-60 {
    width: calc(6 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-60 {
    width: calc(6 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-60 {
    width: calc(6 * 10rem);
  }
}

.h-60 {
  height: calc(6 * 10%);
}

@media (min-width: 576px) {
  .h-sm-60 {
    height: calc(6 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-60 {
    height: calc(6 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-60 {
    height: calc(6 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-60 {
    height: calc(6 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-60 {
    height: calc(6 * 10%);
  }
}

.rh-60 {
  height: calc(6 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-60 {
    height: calc(6 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-60 {
    height: calc(6 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-60 {
    height: calc(6 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-60 {
    height: calc(6 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-60 {
    height: calc(6 * 10rem) !important;
  }
}

.vh-60 {
  height: calc(6 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-60 {
    height: calc(6 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-60 {
    height: calc(6 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-60 {
    height: calc(6 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-60 {
    height: calc(6 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-60 {
    height: calc(6 * 10vh);
  }
}

.w-65 {
  width: calc(6.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-65 {
    width: calc(6.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-65 {
    width: calc(6.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-65 {
    width: calc(6.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-65 {
    width: calc(6.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-65 {
    width: calc(6.5 * 10%) !important;
  }
}

.rw-65 {
  width: calc(6.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-65 {
    width: calc(6.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-65 {
    width: calc(6.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-65 {
    width: calc(6.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-65 {
    width: calc(6.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-65 {
    width: calc(6.5 * 10rem);
  }
}

.h-65 {
  height: calc(6.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-65 {
    height: calc(6.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-65 {
    height: calc(6.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-65 {
    height: calc(6.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-65 {
    height: calc(6.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-65 {
    height: calc(6.5 * 10%);
  }
}

.rh-65 {
  height: calc(6.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-65 {
    height: calc(6.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-65 {
    height: calc(6.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-65 {
    height: calc(6.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-65 {
    height: calc(6.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-65 {
    height: calc(6.5 * 10rem) !important;
  }
}

.vh-65 {
  height: calc(6.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-65 {
    height: calc(6.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-65 {
    height: calc(6.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-65 {
    height: calc(6.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-65 {
    height: calc(6.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-65 {
    height: calc(6.5 * 10vh);
  }
}

.w-70 {
  width: calc(7 * 10%);
}

@media (min-width: 576px) {
  .w-sm-70 {
    width: calc(7 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-70 {
    width: calc(7 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-70 {
    width: calc(7 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-70 {
    width: calc(7 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-70 {
    width: calc(7 * 10%) !important;
  }
}

.rw-70 {
  width: calc(7 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-70 {
    width: calc(7 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-70 {
    width: calc(7 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-70 {
    width: calc(7 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-70 {
    width: calc(7 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-70 {
    width: calc(7 * 10rem);
  }
}

.h-70 {
  height: calc(7 * 10%);
}

@media (min-width: 576px) {
  .h-sm-70 {
    height: calc(7 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-70 {
    height: calc(7 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-70 {
    height: calc(7 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-70 {
    height: calc(7 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-70 {
    height: calc(7 * 10%);
  }
}

.rh-70 {
  height: calc(7 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-70 {
    height: calc(7 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-70 {
    height: calc(7 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-70 {
    height: calc(7 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-70 {
    height: calc(7 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-70 {
    height: calc(7 * 10rem) !important;
  }
}

.vh-70 {
  height: calc(7 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-70 {
    height: calc(7 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-70 {
    height: calc(7 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-70 {
    height: calc(7 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-70 {
    height: calc(7 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-70 {
    height: calc(7 * 10vh);
  }
}

.w-75 {
  width: calc(7.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-75 {
    width: calc(7.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-75 {
    width: calc(7.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-75 {
    width: calc(7.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-75 {
    width: calc(7.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-75 {
    width: calc(7.5 * 10%) !important;
  }
}

.rw-75 {
  width: calc(7.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-75 {
    width: calc(7.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-75 {
    width: calc(7.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-75 {
    width: calc(7.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-75 {
    width: calc(7.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-75 {
    width: calc(7.5 * 10rem);
  }
}

.h-75 {
  height: calc(7.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-75 {
    height: calc(7.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-75 {
    height: calc(7.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-75 {
    height: calc(7.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-75 {
    height: calc(7.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-75 {
    height: calc(7.5 * 10%);
  }
}

.rh-75 {
  height: calc(7.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-75 {
    height: calc(7.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-75 {
    height: calc(7.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-75 {
    height: calc(7.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-75 {
    height: calc(7.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-75 {
    height: calc(7.5 * 10rem) !important;
  }
}

.vh-75 {
  height: calc(7.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-75 {
    height: calc(7.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-75 {
    height: calc(7.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-75 {
    height: calc(7.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-75 {
    height: calc(7.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-75 {
    height: calc(7.5 * 10vh);
  }
}

.w-80 {
  width: calc(8 * 10%);
}

@media (min-width: 576px) {
  .w-sm-80 {
    width: calc(8 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-80 {
    width: calc(8 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-80 {
    width: calc(8 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-80 {
    width: calc(8 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-80 {
    width: calc(8 * 10%) !important;
  }
}

.rw-80 {
  width: calc(8 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-80 {
    width: calc(8 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-80 {
    width: calc(8 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-80 {
    width: calc(8 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-80 {
    width: calc(8 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-80 {
    width: calc(8 * 10rem);
  }
}

.h-80 {
  height: calc(8 * 10%);
}

@media (min-width: 576px) {
  .h-sm-80 {
    height: calc(8 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-80 {
    height: calc(8 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-80 {
    height: calc(8 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-80 {
    height: calc(8 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-80 {
    height: calc(8 * 10%);
  }
}

.rh-80 {
  height: calc(8 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-80 {
    height: calc(8 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-80 {
    height: calc(8 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-80 {
    height: calc(8 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-80 {
    height: calc(8 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-80 {
    height: calc(8 * 10rem) !important;
  }
}

.vh-80 {
  height: calc(8 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-80 {
    height: calc(8 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-80 {
    height: calc(8 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-80 {
    height: calc(8 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-80 {
    height: calc(8 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-80 {
    height: calc(8 * 10vh);
  }
}

.w-85 {
  width: calc(8.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-85 {
    width: calc(8.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-85 {
    width: calc(8.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-85 {
    width: calc(8.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-85 {
    width: calc(8.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-85 {
    width: calc(8.5 * 10%) !important;
  }
}

.rw-85 {
  width: calc(8.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-85 {
    width: calc(8.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-85 {
    width: calc(8.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-85 {
    width: calc(8.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-85 {
    width: calc(8.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-85 {
    width: calc(8.5 * 10rem);
  }
}

.h-85 {
  height: calc(8.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-85 {
    height: calc(8.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-85 {
    height: calc(8.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-85 {
    height: calc(8.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-85 {
    height: calc(8.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-85 {
    height: calc(8.5 * 10%);
  }
}

.rh-85 {
  height: calc(8.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-85 {
    height: calc(8.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-85 {
    height: calc(8.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-85 {
    height: calc(8.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-85 {
    height: calc(8.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-85 {
    height: calc(8.5 * 10rem) !important;
  }
}

.vh-85 {
  height: calc(8.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-85 {
    height: calc(8.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-85 {
    height: calc(8.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-85 {
    height: calc(8.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-85 {
    height: calc(8.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-85 {
    height: calc(8.5 * 10vh);
  }
}

.w-90 {
  width: calc(9 * 10%);
}

@media (min-width: 576px) {
  .w-sm-90 {
    width: calc(9 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-90 {
    width: calc(9 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-90 {
    width: calc(9 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-90 {
    width: calc(9 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-90 {
    width: calc(9 * 10%) !important;
  }
}

.rw-90 {
  width: calc(9 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-90 {
    width: calc(9 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-90 {
    width: calc(9 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-90 {
    width: calc(9 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-90 {
    width: calc(9 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-90 {
    width: calc(9 * 10rem);
  }
}

.h-90 {
  height: calc(9 * 10%);
}

@media (min-width: 576px) {
  .h-sm-90 {
    height: calc(9 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-90 {
    height: calc(9 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-90 {
    height: calc(9 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-90 {
    height: calc(9 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-90 {
    height: calc(9 * 10%);
  }
}

.rh-90 {
  height: calc(9 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-90 {
    height: calc(9 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-90 {
    height: calc(9 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-90 {
    height: calc(9 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-90 {
    height: calc(9 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-90 {
    height: calc(9 * 10rem) !important;
  }
}

.vh-90 {
  height: calc(9 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-90 {
    height: calc(9 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-90 {
    height: calc(9 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-90 {
    height: calc(9 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-90 {
    height: calc(9 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-90 {
    height: calc(9 * 10vh);
  }
}

.w-95 {
  width: calc(9.5 * 10%);
}

@media (min-width: 576px) {
  .w-sm-95 {
    width: calc(9.5 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-95 {
    width: calc(9.5 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-95 {
    width: calc(9.5 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-95 {
    width: calc(9.5 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-95 {
    width: calc(9.5 * 10%) !important;
  }
}

.rw-95 {
  width: calc(9.5 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-95 {
    width: calc(9.5 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-95 {
    width: calc(9.5 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-95 {
    width: calc(9.5 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-95 {
    width: calc(9.5 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-95 {
    width: calc(9.5 * 10rem);
  }
}

.h-95 {
  height: calc(9.5 * 10%);
}

@media (min-width: 576px) {
  .h-sm-95 {
    height: calc(9.5 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-95 {
    height: calc(9.5 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-95 {
    height: calc(9.5 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-95 {
    height: calc(9.5 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-95 {
    height: calc(9.5 * 10%);
  }
}

.rh-95 {
  height: calc(9.5 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-95 {
    height: calc(9.5 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-95 {
    height: calc(9.5 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-95 {
    height: calc(9.5 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-95 {
    height: calc(9.5 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-95 {
    height: calc(9.5 * 10rem) !important;
  }
}

.vh-95 {
  height: calc(9.5 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-95 {
    height: calc(9.5 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-95 {
    height: calc(9.5 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-95 {
    height: calc(9.5 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-95 {
    height: calc(9.5 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-95 {
    height: calc(9.5 * 10vh);
  }
}

.w-100 {
  width: calc(10 * 10%);
}

@media (min-width: 576px) {
  .w-sm-100 {
    width: calc(10 * 10%) !important;
  }
}

@media (min-width: 768px) {
  .w-md-100 {
    width: calc(10 * 10%) !important;
  }
}

@media (min-width: 992px) {
  .w-lg-100 {
    width: calc(10 * 10%) !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-100 {
    width: calc(10 * 10%) !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-100 {
    width: calc(10 * 10%) !important;
  }
}

.rw-100 {
  width: calc(10 * 10rem);
}

@media (min-width: 576px) {
  .rw-sm-100 {
    width: calc(10 * 10rem);
  }
}

@media (min-width: 768px) {
  .rw-md-100 {
    width: calc(10 * 10rem);
  }
}

@media (min-width: 992px) {
  .rw-lg-100 {
    width: calc(10 * 10rem);
  }
}

@media (min-width: 1200px) {
  .rw-xl-100 {
    width: calc(10 * 10rem);
  }
}

@media (min-width: 1400px) {
  .rw-xxl-100 {
    width: calc(10 * 10rem);
  }
}

.h-100 {
  height: calc(10 * 10%);
}

@media (min-width: 576px) {
  .h-sm-100 {
    height: calc(10 * 10%);
  }
}

@media (min-width: 768px) {
  .h-md-100 {
    height: calc(10 * 10%);
  }
}

@media (min-width: 992px) {
  .h-lg-100 {
    height: calc(10 * 10%);
  }
}

@media (min-width: 1200px) {
  .h-xl-100 {
    height: calc(10 * 10%);
  }
}

@media (min-width: 1400px) {
  .h-xxl-100 {
    height: calc(10 * 10%);
  }
}

.rh-100 {
  height: calc(10 * 10rem) !important;
}

@media (min-width: 576px) {
  .rh-sm-100 {
    height: calc(10 * 10rem) !important;
  }
}

@media (min-width: 768px) {
  .rh-md-100 {
    height: calc(10 * 10rem) !important;
  }
}

@media (min-width: 992px) {
  .rh-lg-100 {
    height: calc(10 * 10rem) !important;
  }
}

@media (min-width: 1200px) {
  .rh-xl-100 {
    height: calc(10 * 10rem) !important;
  }
}

@media (min-width: 1400px) {
  .rh-xxl-100 {
    height: calc(10 * 10rem) !important;
  }
}

.vh-100 {
  height: calc(10 * 10vh);
}

@media (min-width: 576px) {
  .vh-sm-100 {
    height: calc(10 * 10vh);
  }
}

@media (min-width: 768px) {
  .vh-md-100 {
    height: calc(10 * 10vh);
  }
}

@media (min-width: 992px) {
  .vh-lg-100 {
    height: calc(10 * 10vh);
  }
}

@media (min-width: 1200px) {
  .vh-xl-100 {
    height: calc(10 * 10vh);
  }
}

@media (min-width: 1400px) {
  .vh-xxl-100 {
    height: calc(10 * 10vh);
  }
}

.w-auto {
  width: auto;
}

.h-auto {
  height: auto;
}

html,
body {
  color: #161616;
  cursor: default !important;
}

video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.video-controller .circle {
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  border: 1px solid #0090df;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-controller .circle svg {
  width: 2rem;
  height: auto;
}
.video-controller .circle svg.pause {
  display: none;
}

.noscroll {
  overflow-y: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.noscroll::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.circle {
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.radius {
  border-radius: 2rem;
  overflow: clip;
}

.radius-half {
  border-radius: 1rem;
  overflow: clip;
}

.bottom-shadow {
  position: relative;
  /* &::before {
  	pointer-events: none;
  	content: "";
  	position: absolute;
  	width: 100%;
  	height: 50%;
  	bottom: 0;
  	left: 0;
  	z-index: 1;
  	background: rgb(0 0 0);
  	background: linear-gradient(0deg, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 0%) 100%);
  } */
}

.center-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.v-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.o-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.contain img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.cover img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.obj-position-0 img {
  -o-object-position: 50% 0% !important;
     object-position: 50% 0% !important;
}

.obj-position-10 img {
  -o-object-position: 50% 10% !important;
     object-position: 50% 10% !important;
}

.obj-position-20 img {
  -o-object-position: 50% 20% !important;
     object-position: 50% 20% !important;
}

.obj-position-30 img {
  -o-object-position: 50% 30% !important;
     object-position: 50% 30% !important;
}

.obj-position-40 img {
  -o-object-position: 50% 40% !important;
     object-position: 50% 40% !important;
}

.obj-position-50 img {
  -o-object-position: 50% 50% !important;
     object-position: 50% 50% !important;
}

.obj-position-60 img {
  -o-object-position: 50% 60% !important;
     object-position: 50% 60% !important;
}

.obj-position-70 img {
  -o-object-position: 50% 70% !important;
     object-position: 50% 70% !important;
}

.obj-position-80 img {
  -o-object-position: 50% 80% !important;
     object-position: 50% 80% !important;
}

.obj-position-90 img {
  -o-object-position: 50% 90% !important;
     object-position: 50% 90% !important;
}

.obj-position-100 img {
  -o-object-position: 50% 100% !important;
     object-position: 50% 100% !important;
}

.page-template-default #site-content p {
  margin-bottom: 1rem;
}
.page-template-default #site-content h4 {
  font-weight: 500;
  margin-top: 2rem;
}
.page-template-default #site-content h2 {
  font-weight: 700;
}
.page-template-default #site-content ul {
  list-style: inherit;
  -webkit-margin-start: 1em;
          margin-inline-start: 1em;
}

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

body.page-my-account .woocommerce-notices-wrapper {
  display: none;
}

.float-end {
  float: right;
}

.site-content {
  padding-top: 8rem;
}

.overflow-clip {
  overflow: clip !important;
}

.overflow-x-clip {
  overflow-x: clip !important;
}

#mappa {
  height: 500px;
}

.cursor-pointer {
  cursor: pointer !important;
}

.h1-evidenziato {
  padding: 0.5rem 1.5rem;
  background-color: #0090df;
  color: white;
  margin-bottom: 2rem;
  display: inline-block;
  border-radius: 0.5rem;
  font-weight: 700;
}

.absolute {
  position: absolute;
}

.overflow-visible {
  overflow: visible;
}

.row-color-divider {
  background: rgb(96, 89, 201);
  background: linear-gradient(90deg, rgb(96, 89, 201) 50%, rgb(242, 237, 243) 50%);
}

@media (max-width: 767.98px) {
  .row-color-divider {
    background: linear-gradient(180deg, rgb(96, 89, 201) 50%, rgb(242, 237, 243) 50%);
  }
}
.default-min-height {
  min-height: 40rem;
}

.black50-hover-blur3:hover {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.hover-blur3:hover {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.blur3 {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.hr-white {
  border: 1px solid;
  border-color: white;
  border-radius: 2px;
  opacity: 0.6;
}

.hr-black {
  border: 1px solid;
  border-color: black;
  border-radius: 2px;
  opacity: 0.1;
}

.fit-content {
  height: -moz-fit-content;
  height: fit-content;
}

.curve {
  display: block;
  background-image: url("../images/wave.svg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .h1-evidenziato {
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 1rem 1.4rem;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  #magicPointer {
    display: none !important;
  }
}
.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

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

.grecaptcha-badge {
  opacity: 0;
  visibility: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-5 {
  opacity: 0.05;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-15 {
  opacity: 0.15;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-35 {
  opacity: 0.35;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-45 {
  opacity: 0.45;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-55 {
  opacity: 0.55;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-65 {
  opacity: 0.65;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-85 {
  opacity: 0.85;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-95 {
  opacity: 0.95;
}

.opacity-100 {
  opacity: 1;
}

.opacity-hover-to0:hover {
  opacity: 0;
}

.opacity-hover-to5:hover {
  opacity: 0.05;
}

.opacity-hover-to10:hover {
  opacity: 0.1;
}

.opacity-hover-to15:hover {
  opacity: 0.15;
}

.opacity-hover-to20:hover {
  opacity: 0.2;
}

.opacity-hover-to25:hover {
  opacity: 0.25;
}

.opacity-hover-to30:hover {
  opacity: 0.3;
}

.opacity-hover-to35:hover {
  opacity: 0.35;
}

.opacity-hover-to40:hover {
  opacity: 0.4;
}

.opacity-hover-to45:hover {
  opacity: 0.45;
}

.opacity-hover-to50:hover {
  opacity: 0.5;
}

.opacity-hover-to55:hover {
  opacity: 0.55;
}

.opacity-hover-to60:hover {
  opacity: 0.6;
}

.opacity-hover-to65:hover {
  opacity: 0.65;
}

.opacity-hover-to70:hover {
  opacity: 0.7;
}

.opacity-hover-to75:hover {
  opacity: 0.75;
}

.opacity-hover-to80:hover {
  opacity: 0.8;
}

.opacity-hover-to85:hover {
  opacity: 0.85;
}

.opacity-hover-to90:hover {
  opacity: 0.9;
}

.opacity-hover-to95:hover {
  opacity: 0.95;
}

.opacity-hover-to100:hover {
  opacity: 1;
}

.opacity-child-0to0 .opacity-child {
  opacity: 0;
}
.opacity-child-0to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-0to5 .opacity-child {
  opacity: 0;
}
.opacity-child-0to5:hover .opacity-child {
  opacity: 0.05;
}

.opacity-child-0to10 .opacity-child {
  opacity: 0;
}
.opacity-child-0to10:hover .opacity-child {
  opacity: 0.1;
}

.opacity-child-0to15 .opacity-child {
  opacity: 0;
}
.opacity-child-0to15:hover .opacity-child {
  opacity: 0.15;
}

.opacity-child-0to20 .opacity-child {
  opacity: 0;
}
.opacity-child-0to20:hover .opacity-child {
  opacity: 0.2;
}

.opacity-child-0to25 .opacity-child {
  opacity: 0;
}
.opacity-child-0to25:hover .opacity-child {
  opacity: 0.25;
}

.opacity-child-0to30 .opacity-child {
  opacity: 0;
}
.opacity-child-0to30:hover .opacity-child {
  opacity: 0.3;
}

.opacity-child-0to35 .opacity-child {
  opacity: 0;
}
.opacity-child-0to35:hover .opacity-child {
  opacity: 0.35;
}

.opacity-child-0to40 .opacity-child {
  opacity: 0;
}
.opacity-child-0to40:hover .opacity-child {
  opacity: 0.4;
}

.opacity-child-0to45 .opacity-child {
  opacity: 0;
}
.opacity-child-0to45:hover .opacity-child {
  opacity: 0.45;
}

.opacity-child-0to50 .opacity-child {
  opacity: 0;
}
.opacity-child-0to50:hover .opacity-child {
  opacity: 0.5;
}

.opacity-child-0to55 .opacity-child {
  opacity: 0;
}
.opacity-child-0to55:hover .opacity-child {
  opacity: 0.55;
}

.opacity-child-0to60 .opacity-child {
  opacity: 0;
}
.opacity-child-0to60:hover .opacity-child {
  opacity: 0.6;
}

.opacity-child-0to65 .opacity-child {
  opacity: 0;
}
.opacity-child-0to65:hover .opacity-child {
  opacity: 0.65;
}

.opacity-child-0to70 .opacity-child {
  opacity: 0;
}
.opacity-child-0to70:hover .opacity-child {
  opacity: 0.7;
}

.opacity-child-0to75 .opacity-child {
  opacity: 0;
}
.opacity-child-0to75:hover .opacity-child {
  opacity: 0.75;
}

.opacity-child-0to80 .opacity-child {
  opacity: 0;
}
.opacity-child-0to80:hover .opacity-child {
  opacity: 0.8;
}

.opacity-child-0to85 .opacity-child {
  opacity: 0;
}
.opacity-child-0to85:hover .opacity-child {
  opacity: 0.85;
}

.opacity-child-0to90 .opacity-child {
  opacity: 0;
}
.opacity-child-0to90:hover .opacity-child {
  opacity: 0.9;
}

.opacity-child-0to95 .opacity-child {
  opacity: 0;
}
.opacity-child-0to95:hover .opacity-child {
  opacity: 0.95;
}

.opacity-child-0to100 .opacity-child {
  opacity: 0;
}
.opacity-child-0to100:hover .opacity-child {
  opacity: 1;
}

.opacity-child-0to0 .opacity-child {
  opacity: 0;
}
.opacity-child-0to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-5to0 .opacity-child {
  opacity: 0.05;
}
.opacity-child-5to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-10to0 .opacity-child {
  opacity: 0.1;
}
.opacity-child-10to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-15to0 .opacity-child {
  opacity: 0.15;
}
.opacity-child-15to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-20to0 .opacity-child {
  opacity: 0.2;
}
.opacity-child-20to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-25to0 .opacity-child {
  opacity: 0.25;
}
.opacity-child-25to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-30to0 .opacity-child {
  opacity: 0.3;
}
.opacity-child-30to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-35to0 .opacity-child {
  opacity: 0.35;
}
.opacity-child-35to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-40to0 .opacity-child {
  opacity: 0.4;
}
.opacity-child-40to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-45to0 .opacity-child {
  opacity: 0.45;
}
.opacity-child-45to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-50to0 .opacity-child {
  opacity: 0.5;
}
.opacity-child-50to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-55to0 .opacity-child {
  opacity: 0.55;
}
.opacity-child-55to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-60to0 .opacity-child {
  opacity: 0.6;
}
.opacity-child-60to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-65to0 .opacity-child {
  opacity: 0.65;
}
.opacity-child-65to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-70to0 .opacity-child {
  opacity: 0.7;
}
.opacity-child-70to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-75to0 .opacity-child {
  opacity: 0.75;
}
.opacity-child-75to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-80to0 .opacity-child {
  opacity: 0.8;
}
.opacity-child-80to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-85to0 .opacity-child {
  opacity: 0.85;
}
.opacity-child-85to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-90to0 .opacity-child {
  opacity: 0.9;
}
.opacity-child-90to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-95to0 .opacity-child {
  opacity: 0.95;
}
.opacity-child-95to0:hover .opacity-child {
  opacity: 0;
}

.opacity-child-100to0 .opacity-child {
  opacity: 1;
}
.opacity-child-100to0:hover .opacity-child {
  opacity: 0;
}

.max-h-child-0to_content .h-child {
  max-height: 0;
  overflow: clip;
  transition: all 0.5s ease-in-out;
}
.max-h-child-0to_content:hover .h-child {
  max-height: 20rem;
}

.env-button {
  border-radius: 1rem;
  text-align: center;
  margin-top: 2rem;
  display: inline-block;
  width: 100%;
  max-width: 20rem;
  font-weight: 700;
  position: relative;
  overflow: envip;
  padding: 1rem;
  transition: 0.5s ease-in-out;
}
.env-button.env-primary {
  border: none;
  background-color: #0090df;
  color: white;
  transition: 0.5s ease-in-out;
  padding: 1rem 2rem;
}
.env-button.env-primary:hover {
  background-color: #eaf8ff !important;
  color: #0090df;
  cursor: pointer;
}
.env-button.env-primary:disabled {
  pointer-events: none;
  background-color: rgb(183, 230, 255) !important;
}

.env-button.env-secondary {
  border: 1px solid #d1d1d1;
  color: #717171;
  transition: 0.5s ease-in-out;
  padding: 1rem 2rem;
}
.env-button.env-secondary:hover {
  border: 1px solid #eaeaea;
  background-color: #d1d1d1 !important;
  cursor: pointer;
}
.env-button.env-white {
  background-color: #fff;
  color: #b7e6ff;
  transition: 0.5s ease-in-out;
  padding: 1rem 2rem;
}
.env-button.env-white:hover {
  background-color: #0090df !important;
  cursor: pointer;
}
.env-button.env-whatsapp {
  background-color: #009523;
  color: white;
  transition: 0.5s ease-in-out;
  padding: 1rem 1.5rem 1rem 4.3rem !important;
}
.env-button.env-whatsapp::after {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/svg/whatsapp-white.svg");
  background-repeat: no-repeat !important;
  background-size: 2.3rem 2.3rem !important;
  transition: all 0.5s ease-in-out;
}
.env-button.env-whatsapp:hover {
  background-color: #e6fcd6;
  color: #009523;
  cursor: pointer;
}
.env-button.env-whatsapp:hover::after {
  width: 2.3rem;
  height: 2.3rem;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/svg/whatsapp-green.svg");
  background-repeat: no-repeat !important;
  background-size: 2.3rem 2.3rem !important;
}
.env-button.callnow {
  padding: 1rem 1.5rem 1rem 4.3rem !important;
}
.env-button.callnow::after {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/svg/calling-white.svg");
  background-repeat: no-repeat;
  background-size: 2.3rem 2.3rem;
  transition: 0.5s ease-in-out;
}
.env-button.callnow:hover::after {
  width: 2.3rem;
  height: 2.3rem;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/svg/calling-primary.svg");
  background-repeat: no-repeat;
  background-size: 2.3rem 2.3rem;
}
.env-button.env-email {
  padding: 1rem 1.5rem 1rem 3.3rem !important;
  background-color: #eaeaea;
  color: #161616;
  transition: 0.5s ease-in-out;
}
.env-button.env-email::after {
  content: "";
  position: absolute;
  width: 2.3rem;
  height: 2.3rem;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/svg/email-black.svg");
  background-repeat: no-repeat !important;
  background-size: 2.3rem 2rem !important;
  transition: all 0.5s ease-in-out;
}
.env-button.env-email:hover {
  background-color: #7E7E7E;
  color: #fff;
}
.env-button.env-email:hover::after {
  width: 2.3rem;
  height: 2.3rem;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/assets/images/svg/email-white.svg");
  background-repeat: no-repeat !important;
  background-size: 2.3rem 2.3rem !important;
}

.btn {
  border-radius: 1rem;
  text-align: center;
  display: inline-block;
  font-weight: 700;
  position: relative;
  overflow: envip;
  padding: 1rem;
  transition: 0.5s ease-in-out;
}
.btn.btn-primary {
  background-color: #b7e6ff;
  color: white;
  transition: 0.5s ease-in-out;
  padding: 1rem 2rem;
}
.btn.btn-primary:hover {
  background-color: #eaf8ff !important;
  cursor: pointer;
}

input:not([type=checkbox]):not([type=submit]):not([type=radio]):not([type=file]),
textarea,
select {
  border: 0;
  border-radius: 0.8rem;
  padding: 1rem;
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: white;
}
input:not([type=checkbox]):not([type=submit]):not([type=radio]):not([type=file]):active, input:not([type=checkbox]):not([type=submit]):not([type=radio]):not([type=file]):focus, input:not([type=checkbox]):not([type=submit]):not([type=radio]):not([type=file]):focus-within,
textarea:active,
textarea:focus,
textarea:focus-within,
select:active,
select:focus,
select:focus-within {
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}

.select2-selection {
  border: 0 !important;
  background-color: #eaeaea !important;
  border-radius: 0.5rem !important;
  padding: 1rem !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  font-family: inherit !important;
  color: inherit !important;
  height: auto !important;
}
.select2-selection .select2-selection__rendered {
  padding: 0 !important;
}
.select2-selection .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-40%);
}

input[type=checkbox] {
  width: 26px !important;
  height: 26px !important;
  border: 1px solid #161616;
  transition: all 0.5s ease-in-out;
  background-color: white;
  padding: 0;
  margin-right: 1rem;
  border-radius: 4px;
  display: inline-block !important;
}
input[type=checkbox]:checked {
  background-color: #b7e6ff;
  border: 1px solid #b7e6ff;
}
input[type=checkbox]:hover {
  cursor: pointer;
}

input[type=radio] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid black;
  background-color: white;
  margin-right: 1rem;
}
input[type=radio]:checked {
  background-color: #0090df;
}

input[type=submit], input[type=submit]:target, input[type=submit]:focus, input[type=submit]:active {
  min-width: 0;
  width: 100%;
  max-width: 20rem;
  background-color: #b7e6ff;
  transition: all 0.5s ease-in-out;
  font-weight: 500;
  text-transform: uppercase;
}
input[type=submit]:hover, input[type=submit]:target:hover, input[type=submit]:focus:hover, input[type=submit]:active:hover {
  background-color: #eaf8ff !important;
  color: #0090df;
}
input[type=submit][disabled], input[type=submit]:target[disabled], input[type=submit]:focus[disabled], input[type=submit]:active[disabled] {
  cursor: not-allowed;
}

.env-form-1 {
  box-shadow: 0 0 8px 0 rgba(34, 36, 38, 0.1) !important;
}
.env-form-1:active, .env-form-1:focus, .env-form-1:focus-within {
  box-shadow: 0 0 8px 0 rgba(34, 36, 38, 0.1) !important;
}
.env-form-1 .screen-reader-response {
  display: none !important;
}
.env-form-1 .screen-reader-response > p {
  color: #0090df;
  font-weight: bold;
  margin-bottom: 2rem;
}
.env-form-1 .screen-reader-response ul {
  display: none !important;
}
.env-form-1 label,
.env-form-1 input,
.env-form-1 textarea {
  display: block;
  width: 100%;
}
.env-form-1 input[type=submit] {
  border: none;
  background-color: #b7e6ff;
  padding: 1rem;
  color: white;
  border-radius: 1rem;
  min-width: 100%;
  margin-top: 1.8rem;
  transition: all 0.5s ease-in-out;
  font-weight: 600;
  text-transform: uppercase;
}
.env-form-1 input[type=submit]:hover {
  cursor: pointer;
  background-color: #0090df;
  color: #b7e6ff !important;
}
.env-form-1 label {
  margin-bottom: 0.5rem;
}

.pranzo-cena-form {
  justify-content: space-between;
}
.pranzo-cena-form .btn-stanza,
.pranzo-cena-form .pranzo-cena {
  background-color: white;
  width: 49%;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  color: #707070;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}
.pranzo-cena-form .btn-stanza .productName,
.pranzo-cena-form .pranzo-cena .productName {
  color: #707070;
  font-weight: 400;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
.pranzo-cena-form .btn-stanza:hover,
.pranzo-cena-form .pranzo-cena:hover {
  background-color: #d1d1d1 !important;
  width: 49%;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  color: #707070;
  font-weight: 400;
}
.pranzo-cena-form .btn-stanza.btn-selected,
.pranzo-cena-form .pranzo-cena.btn-selected {
  background-color: #0090df !important;
  border: 1px solid transparent !important;
  color: white !important;
  font-weight: 800 !important;
}
.pranzo-cena-form .btn-stanza.btn-selected .productName,
.pranzo-cena-form .pranzo-cena.btn-selected .productName {
  color: white !important;
  font-weight: 800 !important;
  transition: all 0.5s ease-in-out;
}
.pranzo-cena-form .btn-stanza.btn-selected:hover,
.pranzo-cena-form .pranzo-cena.btn-selected:hover {
  background-color: #0090df !important;
  border: 1px solid transparent !important;
  color: white !important;
  font-weight: 800 !important;
}

#orari-cena,
#orari-pranzo {
  justify-content: space-between;
  flex-wrap: wrap;
}
#orari-cena .btn-orario,
#orari-pranzo .btn-orario {
  width: 96px;
  background-color: white;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  color: #707070;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
#orari-cena .btn-orario .productName,
#orari-pranzo .btn-orario .productName {
  color: #707070;
  font-weight: 400;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
#orari-cena .btn-orario:hover,
#orari-pranzo .btn-orario:hover {
  background-color: #d1d1d1 !important;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  color: #707070;
  font-weight: 400;
}
#orari-cena .btn-orario.btn-selected,
#orari-pranzo .btn-orario.btn-selected {
  background-color: #0090df !important;
  border: 1px solid transparent !important;
  color: white !important;
  font-weight: 800 !important;
}
#orari-cena .btn-orario.btn-selected .productName,
#orari-pranzo .btn-orario.btn-selected .productName {
  color: white !important;
  font-weight: 800 !important;
  transition: all 0.5s ease-in-out;
}
#orari-cena .btn-orario.btn-selected:hover,
#orari-pranzo .btn-orario.btn-selected:hover {
  background-color: #0090df !important;
  border: 1px solid transparent !important;
  color: white !important;
  font-weight: 800 !important;
}
#orari-cena .btn-orario.btn-disabled,
#orari-pranzo .btn-orario.btn-disabled {
  background-color: #a2a2a2 !important;
  border: 1px solid transparent !important;
  cursor: disabled;
}
#orari-cena .btn-orario.btn-disabled .productName,
#orari-pranzo .btn-orario.btn-disabled .productName {
  color: white !important;
  transition: all 0.5s ease-in-out;
}

.quantity {
  position: relative;
  padding-bottom: 1rem;
}
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.quantity input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.quantity input {
  width: 65px;
  height: 50px;
  float: left;
  display: block;
  padding: 0;
  margin: 0 1rem;
  padding-left: 20px;
  border: 1px solid #eee;
  font-size: 30px;
  color: #7e7e7e;
  text-align: center;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  border-radius: 8px !important;
}
.quantity .quantity-nav {
  position: absolute;
  height: 50px;
  left: 160px;
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: space-between;
}
.quantity .quantity-button {
  position: relative;
  cursor: pointer;
  width: 49px;
  text-align: center;
  color: #333;
  line-height: 1.7;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  user-select: none;
  user-select: none;
}
.quantity .quantity-button.quantity-up {
  display: relative;
  height: 49px;
  width: 49px;
  background-color: #0090df;
  color: white;
  border-radius: 8px;
  margin-right: 1rem;
}
.quantity .quantity-button.quantity-up::after {
  content: "";
  height: 22px;
  width: 22px;
  background: url("/assets/images/svg/plus-white.svg");
  background-size: 22px 22px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.quantity .quantity-button.quantity-down {
  display: relative;
  height: 49px;
  width: 49px;
  background-color: #eaeaea;
  color: white;
  border-radius: 8px;
}
.quantity .quantity-button.quantity-down::after {
  content: "";
  height: 4px;
  width: 21px;
  background: url("/assets/images/svg/minus-white.svg");
  background-size: 21px 4px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.progress {
  overflow: hidden;
  width: 100%;
  height: 6px !important;
  background-color: #eaeaea;
  position: absolute;
  margin: 0 4rem;
  left: 0;
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  max-width: fill-available;
}
.progress .progress-bar {
  background-color: #b7e6ff;
  transition: width 0.5s ease;
  height: 6px !important;
  position: absolute;
  left: 0;
}

#book-now {
  /* padding-top: 12rem;
  justify-content: center; */
}
#book-now .book-now-btn {
  position: absolute;
  width: 100%;
  bottom: 10rem;
}
#book-now .book-now-btn .env-button {
  font-weight: 900 !important;
}

.z-9 {
  z-index: 9;
  position: relative;
}

.overlay-modal {
  transition: all 0.5 ease-in-out;
}
.overlay-modal::after {
  transition: all 0.5 ease-in-out;
}
.overlay-modal.overlay-modal-open::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vw;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  position: absolute;
}

#modal-book-now {
  max-width: 500px;
  margin: auto;
  opacity: 0;
  transform: scale(0.1);
  transition: all 0.3s ease-in-out;
  /* Style the input fields */
  /* Mark input boxes that gets an error on validation: */
  /* Hide all steps by default: */
  /* Make circles that indicate the steps of the form: */
  /* Mark the steps that are finished and valid: */
  /* Mark the active step: */
}
#modal-book-now .prefix {
  padding-right: 1rem;
}
#modal-book-now.open {
  display: block;
  opacity: 1;
  transform: scale(1);
}
#modal-book-now input:not([type='checkbox']) {
  padding: 10px;
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.12);
  background-color: white;
}
#modal-book-now input:active, #modal-book-now input:focus, #modal-book-now input:focus-within {
  box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
}
#modal-book-now .steps {
  justify-content: space-between;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
#modal-book-now input.invalid {
  background-color: #fdd;
}
#modal-book-now .tab {
  display: none;
}
#modal-book-now .step {
  height: 40px;
  width: 40px;
  margin: 0 2px;
  background-color: #eaeaea;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.calendar {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.calendar::after {
  content: "";
  height: 24px;
  width: 24px;
  top: -2px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-image: url("/assets/images/svg/calendar-white.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.clock {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.clock::after {
  content: "";
  height: 24px;
  width: 24px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-image: url("/assets/images/svg/clock-white.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.people {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.people::after {
  content: "";
  height: 24px;
  width: 24px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-image: url("/assets/images/svg/people-white.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.info {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.info::after {
  content: "";
  height: 24px;
  width: 24px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-image: url("/assets/images/svg/info-white.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.confirm {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.confirm::after {
  content: "";
  height: 24px;
  width: 24px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-image: url("/assets/images/svg/confirm-white.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  transition: all 0.3s ease-in-out;
}
#modal-book-now .step.finish {
  background-color: #b7e6ff;
}
#modal-book-now .step.finish.calendar::after {
  background-image: url("/assets/images/svg/calendar-primary.svg");
}
#modal-book-now .step.finish.clock::after {
  background-image: url("/assets/images/svg/clock-primary.svg");
}
#modal-book-now .step.finish.people::after {
  background-image: url("/assets/images/svg/people-primary.svg");
}
#modal-book-now .step.finish.info::after {
  background-image: url("/assets/images/svg/info-primary.svg");
}
#modal-book-now .step.finish.confirm::after {
  background-image: url("/assets/images/svg/confirm-primary.svg");
}
#modal-book-now .step.active {
  background-color: #0090df;
}
#modal-book-now .step.active.calendar::after {
  background-image: url("/assets/images/svg/calendar-white.svg");
}
#modal-book-now .step.active.clock::after {
  background-image: url("/assets/images/svg/clock-white.svg");
}
#modal-book-now .step.active.people::after {
  background-image: url("/assets/images/svg/people-white.svg");
}
#modal-book-now .step.active.info::after {
  background-image: url("/assets/images/svg/info-white.svg");
}
#modal-book-now .step.active.confirm::after {
  background-image: url("/assets/images/svg/confirm-white.svg");
}

#prevBtn {
  margin-right: 0.7rem !important;
}

#video-bg {
  /* position: absolute; */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#video-bg video {
  height: 100%;
  width: 100%;
}
#video-bg .video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
}

.ratio-img {
  --bs-aspect-ratio: calc(1 / 1 * 100%);
}
@media (min-width: 768px) {
  .ratio-img {
    --bs-aspect-ratio: calc(1 / 1.5 * 100%);
  }
}
@media (min-width: 992px) {
  .ratio-img {
    --bs-aspect-ratio: calc(1 / 2 * 100%);
  }
}
@media (min-width: 1200px) {
  .ratio-img {
    --bs-aspect-ratio: calc(1 / 3 * 100%);
  }
}

.accordion-button::after {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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");
  background-repeat: no-repeat;
  background-size: 2rem;
  transition: transform 0.2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230090df'%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");
  transform: rotate(-180deg);
}

.primary-bg .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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");
}
.primary-bg .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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");
}

#page {
  transition: 0.5s ease;
}

#masthead {
  z-index: 999999999999999;
  height: 8rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 4rem;
}
#masthead #brand-wrapper {
  position: relative;
  z-index: 10000;
  margin-top: 4rem;
}
#masthead #brand-wrapper img {
  width: 10rem;
}
#masthead #nav-trigger {
  z-index: 9;
}
#masthead #nav-trigger .ham {
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#masthead #nav-trigger .hamRotate.active {
  transform: rotate(45deg);
}
#masthead #nav-trigger .hamRotate.active .line {
  stroke: #0090df;
}
#masthead #nav-trigger .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #fff;
  stroke-width: 5;
  stroke-linecap: round;
}
#masthead #nav-trigger .ham8 .top {
  stroke-dasharray: 30 160;
}
#masthead #nav-trigger .ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
#masthead #nav-trigger .ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
#masthead #nav-trigger .ham8.active .top {
  stroke-dashoffset: -64px;
}
#masthead #nav-trigger .ham8.active .middle {
  transform: rotate(90deg);
}
#masthead #nav-trigger .ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.navbar-home .lang-switcher .current-lang {
  color: white;
}

.overflow-x-clip {
  padding-top: 10rem;
}

#lang .lang {
  font-size: 1.4rem;
  color: #b5b5b5;
  text-decoration: none;
}
#lang .lang .current-lang {
  color: #0090df;
}

#main-footer {
  background-color: #0090df;
  position: relative;
}
.current-menu-item a {
  font-weight: bold;
  color: #0090df !important;
}
.current-menu-item::after {
  background-color: #0090df !important;
}

#main-nav {
  position: fixed;
  top: 0;
  background: rgba(245, 245, 245, 0.505);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  left: 0;
  border-radius: 0 0 1rem;
  padding: 9rem 7rem 4rem;
  transition: all 0.3s ease-in-out;
}
#main-nav .menu-container {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
#main-nav .menu-container .menu-item {
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
#main-nav .menu-container .menu-item a {
  color: #eaeaea;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
#main-nav .menu-container .menu-item::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 2px;
  height: 2px;
  width: 8rem;
  background-color: #eaeaea;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
  #main-nav .menu-container .menu-item::after {
    width: 4rem;
    bottom: 0rem;
  }
}
#main-nav .menu-container .menu-item:hover a {
  color: #fff;
}
#main-nav .menu-container .menu-item:hover::after {
  width: 12rem;
  background-color: #fff;
}
@media (max-width: 575.98px) {
  #main-nav .menu-container .menu-item:hover::after {
    width: 6rem;
  }
}
#main-nav .menu-item-text {
  display: relative;
}
#main-nav .menu-item-text a {
  color: white;
  display: relative;
  text-decoration: none;
}
#main-nav.close {
  transform: translateX(-100%);
}
@media (max-width: 575.98px) {
  #main-nav {
    padding: 11rem 4.5rem 4rem;
  }
}

.navbar-classic {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  background-color: white;
  height: 10rem !important;
}
.navbar-classic #nav-trigger .line {
  stroke: #0090df !important;
}
.navbar-classic #brand-wrapper {
  margin-top: 0 !important;
}
.navbar-classic #brand-wrapper a {
  padding: 1rem !important;
}
.navbar-classic #brand-wrapper a img {
  max-width: 8rem !important;
  height: auto;
}
.navbar-classic #main-nav {
  background: rgba(245, 245, 245, 0.9);
  padding: 10rem 7rem 4rem;
  box-shadow: 2px 2px 12px 5px rgba(0, 0, 0, 0.15);
}
.navbar-classic #main-nav .menu-item {
  transition: all 0.3s ease-in-out;
}
.navbar-classic #main-nav .menu-item a {
  color: #b5b5b5;
}
.navbar-classic #main-nav .menu-item::after {
  background-color: #b5b5b5;
}
.navbar-classic #main-nav .menu-item:hover a {
  color: #717171;
}
.navbar-classic #main-nav .menu-item:hover::after {
  width: 12rem;
  background-color: #717171;
}
@media (max-width: 575.98px) {
  .navbar-classic #main-nav {
    padding: 10rem 4.5rem 4rem;
  }
}/*# sourceMappingURL=main.css.map */

.credits {
    font-size: 12px;
}

.sn_overflow_custom_index {
    overflow-y: auto;
}

@media (max-width: 767.98px) {
    .modal-body{
        max-height: 400px;
        overflow-y: scroll;
    }
    #main-footer.__hidden {
        opacity: 0;
    }
    .sn_overflow_custom_index {
        overflow-y: hidden;
    }
}

input[type="checkbox"]:checked{
  background-color: #0090df !important;
}

input[type="checkbox"]:checked:disabled{
  opacity: 0.8;
}

#room-service .form-check-input{
  margin-top: 0 !important;
  flex-shrink: 0;
}


.form-check-input:disabled~.form-check-label{
    color: #869ab8;
}

.form-check-input:disabled{
    border:1px solid darkgray !important;
    background-color: lightgray !important;
}
