/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

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: currentColor;
  text-decoration: none;
}

button {
  background-color: transparent;
}

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

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

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1230px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1170px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  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-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    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-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    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-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    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-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1230px) {
  .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-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
.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-1 {
  margin: 0.25rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: 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-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: 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-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: 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-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1230px) {
  .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-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media 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;
  }
}
.g-6, .gx-6 {
  --bs-gutter-x: 3.7rem;
}

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

@media (min-width: 992px) {
  .visible-mobile {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .visible-desktop {
    display: none !important;
  }
}
@media (min-width: 1230px) {
  .hidden-xl {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 761px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (max-width: 575px) {
  .hidden-ss {
    display: none !important;
  }
}
:root {
  --tamanho-container: 100vw;
}
@media (min-width: 576px) {
  :root {
    --tamanho-container: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --tamanho-container: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --tamanho-container: 960px;
  }
}
@media (min-width: 1230px) {
  :root {
    --tamanho-container: 1170px;
  }
}
:root {
  --tamanho-borda: calc(calc(100vw - var(--tamanho-container) + 1.5rem) / 2);
  --tamanho-coluna: calc(calc(var(--tamanho-container) - 30px) / 12);
  --fonte-12px: 0.667rem;
  --fonte-13px: 0.722rem;
  --fonte-14px: 0.778rem;
  --fonte-15px: 0.83rem;
  --fonte-16px: 1rem;
  --fonte-18px: 1rem;
  --fonte-24px: 1.33rem;
  --fonte-25px: 1.38rem;
  --fonte-32px: 1.778rem;
  --fonte-40px: 2.22rem;
  --fonte-48px: 2.667rem;
}

.page-template-home-page-v2 .nosso-compromisso__banner, .page-template-home-page-v2 .sobre-a-aura__video img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.page-template-home-page-v2 .nosso-compromisso__slide i {
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-panzoom {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
  background: #fff;
}

.f-panzoom.is-draggable {
  cursor: move;
  cursor: grab;
}

.f-panzoom.can-zoom_in {
  cursor: zoom-in;
}

.f-panzoom.can-zoom_out {
  cursor: zoom-out;
}

.f-panzoom.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.f-panzoom.in-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: unset !important;
  z-index: 9999;
}

.f-panzoom__content {
  display: block;
  margin: auto;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  transform: translate3d(0, 0, 0) scale(1) rotate(0) skew(0);
  transform-origin: center center;
  transition: none;
  -webkit-user-select: none;
  user-select: none;
}

.is-loading .f-panzoom__content {
  display: none;
}

.is-scaling .f-panzoom__content {
  filter: blur(0px);
  will-change: transform, width, height;
  backface-visibility: hidden;
}

.f-panzoom__content:not(:last-child) {
  margin-bottom: 0;
}

.f-panzoom__viewport {
  margin: auto;
  position: relative;
  width: fit-content;
  height: fit-content;
  min-height: 1px;
}

.f-panzoom__viewport:not(:last-child) {
  margin-bottom: 0;
}

.f-panzoom__caption:not(:first-child) {
  margin-bottom: auto;
}

html.with-panzoom-in-fullscreen {
  overflow: hidden;
}

/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.projeto {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: #333333;
  padding: 0 35px 45px;
  margin-bottom: 30px;
}
.projeto__img {
  margin-left: -35px;
  width: calc(100% + 70px);
  aspect-ratio: 16/6.5;
  object-fit: cover;
  object-position: center;
  margin-bottom: 25px;
  background-color: #f1f1f1;
}
.projeto__categoria {
  position: absolute;
  display: inline-block;
  top: 15px;
  left: 15px;
  font-weight: 600;
  font-size: var(--fonte-13px);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #516BBB;
  padding: 0 15px;
  line-height: 20px;
  border-radius: 10px;
}
.projeto__titulo {
  font-size: 25px;
  line-height: 1.3em;
  color: #273970;
}
.projeto__local {
  font-size: var(--fonte-12px);
  line-height: 1.4em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1em;
}
.projeto__texto {
  font-size: var(--fonte-14px);
  line-height: 1.4em;
  height: 7em;
  margin-bottom: 20px;
  /*display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;*/
  overflow: hidden;
}

.nossa-cultura {
  padding-top: 130px;
  padding-bottom: 75px;
  overflow: hidden !important;
  position: relative;
}
@media (max-width: 991px) {
  .nossa-cultura {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
.nossa-cultura .mapa {
  --cor-pin: #E46458;
}
.nossa-cultura .mapa .linha {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s;
}
.nossa-cultura .mapa #miami .pin,
.nossa-cultura .mapa #sao-paulo .pin {
  pointer-events: none;
}
@media (min-width: 992px) {
  .nossa-cultura .mapa {
    position: absolute;
    width: 1000px;
    right: calc(var(--tamanho-borda) - 40px);
    z-index: 1;
  }
  .nossa-cultura .mapa .linha {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s;
  }
  .nossa-cultura .mapa .texto .projeto {
    transition: 0.3s;
  }
  .nossa-cultura .mapa .pin {
    cursor: pointer;
    transition: 0.3s;
  }
  .nossa-cultura .mapa .pin:hover, .nossa-cultura .mapa .pin.ativo {
    --cor-pin: #fff;
  }
  .nossa-cultura .mapa .pin.ativo + .linha {
    opacity: 1;
  }
  .nossa-cultura .mapa .pin:hover + .linha + .texto .projeto, .nossa-cultura .mapa .pin.ativo + .linha + .texto .projeto {
    stroke-width: 1px;
    stroke: #fff;
  }
}
@media (min-width: 992px) and (max-width: 1229.99px) {
  .nossa-cultura .mapa {
    width: 880px;
  }
}
.nossa-cultura .mapa__legenda {
  display: flex;
  align-items: center;
  gap: 1ch;
  font-weight: 300;
  font-size: var(--fonte-14px);
  line-height: 1em;
  margin-top: 16px;
}
@media (min-width: 992px) {
  .nossa-cultura .mapa__legenda {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .nossa-cultura .mapa__legenda {
    margin-top: 10px;
  }
}
.nossa-cultura .mapa__legenda svg {
  width: 16px;
  aspect-ratio: 1/1;
}
.nossa-cultura .f-panzoom {
  width: 100%;
  margin-top: 25px;
  background-color: #1E2C57;
}
.nossa-cultura .f-panzoom__viewport {
  width: 100%;
}
.nossa-cultura .f-panzoom__content {
  display: block;
}
.nossa-cultura .f-panzoom__controls {
  display: flex;
  flex-direction: column;
  gap: 7px;
  right: 15px;
  position: absolute;
  bottom: 15px;
  transform-origin: top left;
}
.nossa-cultura .f-panzoom__button {
  border: 1px #fff solid;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  margin: 0;
  width: 48px;
  height: 48px;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  background-color: #1E2C57;
}
.nossa-cultura .f-panzoom__button--zoomIn {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.0008 19.0003L13.8038 13.8033M8.50078 5.50029V11.5003M11.5008 8.50029H5.50078M13.8038 13.8033C15.2104 12.3967 16.0006 10.489 16.0006 8.49979C16.0006 6.5106 15.2104 4.60287 13.8038 3.19629C12.3972 1.78972 10.4895 0.999512 8.50028 0.999512C6.51108 0.999512 4.60336 1.78972 3.19678 3.19629C1.79021 4.60287 1 6.5106 1 8.49979C1 10.489 1.79021 12.3967 3.19678 13.8033C4.60336 15.2099 6.51108 16.0001 8.50028 16.0001C10.4895 16.0001 12.3972 15.2099 13.8038 13.8033V13.8033Z' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.nossa-cultura .f-panzoom__button--zoomOut {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.0008 19.0003L13.8038 13.8033M13.8038 13.8033C15.2104 12.3967 16.0006 10.489 16.0006 8.49979C16.0006 6.5106 15.2104 4.60287 13.8038 3.19629C12.3972 1.78972 10.4895 0.999512 8.50028 0.999512C6.51108 0.999512 4.60336 1.78972 3.19678 3.19629C1.79021 4.60287 1 6.5106 1 8.49979C1 10.489 1.79021 12.3967 3.19678 13.8033C4.60336 15.2099 6.51108 16.0001 8.50028 16.0001C10.4895 16.0001 12.3972 15.2099 13.8038 13.8033ZM11.5008 8.50029H5.50078' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.nossa-cultura .mapa-mobile {
  position: relative;
}
.nossa-cultura .mapa-mobile__svg {
  width: 100%;
  aspect-ratio: 1/0.5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.nossa-cultura .mapa-mobile__svg svg {
  width: 100%;
  margin-bottom: -10%;
  margin-left: -14%;
}
.nossa-cultura .mapa-mobile__aviso {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(220, 220, 220, 0.8);
  line-height: 1.25em;
  color: rgba(51, 51, 51, 0.8);
  padding: 45px 25px;
  width: 255px;
  font-weight: 700;
  transition: opacity 0.3s;
}
.nossa-cultura .mapa-mobile__aviso svg {
  width: 97px;
  margin-bottom: 5px;
}
.nossa-cultura .mapa-mobile__aviso.hidden {
  display: block;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  z-index: unset;
}
.nossa-cultura .legenda-mapa {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.2em;
  color: #FFFFFF;
  margin-top: 20px;
}
.nossa-cultura .select-projeto {
  position: relative;
  font-size: var(--fonte-16px);
  margin-top: 16px;
}
.nossa-cultura .select-projeto button {
  font-weight: 700;
  font-size: 1em;
  line-height: 48px;
  color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.175 4L7 7.7085L10.825 4L12 5.1417L7 10L2 5.1417L3.175 4Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 14px;
  padding: 0 1em;
  border: 1px #fff solid;
  border-radius: 2px;
  width: 100%;
  text-align: left;
}
.nossa-cultura .select-projeto button.ativo {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.825 10L7 6.2915L3.175 10L2 8.8583L7 4L12 8.8583L10.825 10Z' fill='white'/%3E%3C/svg%3E");
}
.nossa-cultura .select-projeto button.ativo + ul {
  display: block;
}
.nossa-cultura .select-projeto ul {
  display: none;
  width: 100%;
  border: 1px #fff solid;
  border-radius: 0 0 2px 2px;
  border-top: 0;
  padding: 5px 0;
}
.nossa-cultura .select-projeto ul li a {
  display: flex;
  align-items: center;
  gap: 1ch;
  line-height: 40px;
  padding: 0 1em;
}
.nossa-cultura .select-projeto ul li a svg {
  width: 1em;
  aspect-ratio: 1/1;
  margin-top: -0.2em;
}

.page-template-home-page-v2 #div_calendar {
  position: relative;
}
.page-template-home-page-v2 #div_calendar .nav-event {
  position: absolute;
}
.page-template-home-page-v2 #div_calendar .nav-event.next {
  display: block;
  right: 0;
  top: 41px;
  cursor: pointer;
}
.page-template-home-page-v2 #div_calendar .nav-event.prev {
  display: block;
  left: 0;
  top: 40px;
  cursor: pointer;
}
.page-template-home-page-v2 .ui-datepicker-calendar {
  position: relative;
}
.page-template-home-page-v2 .ui-datepicker-calendar .tooltipStyle {
  display: none;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 87%;
  background: #273970;
  padding: 20px;
  -webkit-box-shadow: -7px -7px 60px -25px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -7px -7px 60px -25px rgba(0, 0, 0, 0.75);
  box-shadow: -7px -7px 60px -25px rgba(0, 0, 0, 0.75);
  z-index: 1;
  border-radius: 6px;
}
.page-template-home-page-v2 .ui-datepicker-calendar .tooltipStyle h5 {
  text-align: center;
  font-weight: 700;
  padding-bottom: 17px;
  color: #fff;
}
.page-template-home-page-v2 .ui-datepicker-calendar .tooltipStyle > ul {
  text-align: center;
}
.page-template-home-page-v2 .ui-datepicker-calendar .tooltipStyle > ul li {
  color: #fff;
}
.page-template-home-page-v2 .ui-datepicker-calendar .has-event:hover > .tooltipStyle {
  display: block;
}
.page-template-home-page-v2 .ui-datepicker-calendar .has-event span {
  color: white;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 1;
}
.page-template-home-page-v2 .ui-datepicker-calendar .has-event span:before {
  content: "";
  position: absolute;
  width: 37px;
  height: 37px;
  top: -10px;
  left: -1px;
  border-radius: 50%;
  background-color: #476da6 !important;
  z-index: -1;
}
.page-template-home-page-v2 .banner-index {
  position: relative;
  height: 600px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .banner-index {
    height: auto;
  }
}
.page-template-home-page-v2 .banner-index .swiper-slide {
  opacity: 0 !important;
}
.page-template-home-page-v2 .banner-index .swiper-slide-active {
  opacity: 1 !important;
}
.page-template-home-page-v2 .banner-index__quickaccess {
  margin-top: 39px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .banner-index__quickaccess {
    position: relative;
    bottom: 0;
    display: none;
    margin: 23px 0 55px;
  }
}
.page-template-home-page-v2 .banner-index__quickaccess.mob {
  display: block;
}
@media (min-width: 768px) {
  .page-template-home-page-v2 .banner-index__quickaccess.mob {
    display: none;
  }
}
.page-template-home-page-v2 .banner-index__quickaccess__slide {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .banner-index__quickaccess__slide {
    flex-direction: column;
  }
}
.page-template-home-page-v2 .banner-index__quickaccess__slide .linkAcess {
  background: #e46458;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  width: 20%;
  border-right: 1px solid;
  padding: 14px 0;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .banner-index__quickaccess__slide .linkAcess {
    width: 100%;
    border-radius: 0 !important;
  }
}
.page-template-home-page-v2 .banner-index__quickaccess__slide .linkAcess:hover {
  background: #e03030;
}
.page-template-home-page-v2 .banner-index__quickaccess__slide .linkAcess:first-child {
  border-radius: 0 0 0 8px;
}
.page-template-home-page-v2 .banner-index__quickaccess__slide .linkAcess:last-child {
  border-radius: 0 0 8px 0;
  border-right: none;
}
.page-template-home-page-v2 .banner {
  position: relative;
}
@media (min-width: 768px) {
  .page-template-home-page-v2 .banner {
    display: flex;
    align-items: center;
    padding-top: 60px;
    height: 600px;
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .banner {
    padding-top: 0;
    height: 100%;
  }
}
.page-template-home-page-v2 .banner > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .banner > .container {
    flex-direction: column;
    padding-top: 30px;
  }
}
.page-template-home-page-v2 .banner__imagem {
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .page-template-home-page-v2 .banner__imagem {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .banner__imagem {
    position: relative;
    width: 100%;
    aspect-ratio: 1/0.79;
    height: 330px;
  }
}
.page-template-home-page-v2 .banner__content {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .page-template-home-page-v2 .banner__content {
    border-radius: 20px;
    background-color: #fff;
    max-width: 575px;
    padding: 45px 50px;
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .banner__content {
    padding: 25px 25px 20px;
  }
}
.page-template-home-page-v2 .banner__list__itens {
  width: 461px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  position: relative;
  padding: 12px 12px 12px 35px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .banner__list__itens {
    width: 90%;
    height: 150px;
    margin: 20px auto;
    border: 1px solid;
  }
}
.page-template-home-page-v2 .banner__list__itens .number {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #e46458;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  left: -25px;
  top: 24px;
}
.page-template-home-page-v2 .banner__list__itens h6 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 24px;
  color: #e46458;
}
.page-template-home-page-v2 .banner__list__itens p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 18px;
}
.page-template-home-page-v2 .banner__titulo {
  font-size: var(--fonte-48px);
  line-height: 1em;
  color: #273970;
}
.page-template-home-page-v2 .banner__titulo strong {
  font-weight: 700;
}
.page-template-home-page-v2 .banner__titulo span {
  text-decoration: none !important;
  color: #e46458;
}
.page-template-home-page-v2 .banner__titulo,
.page-template-home-page-v2 .banner__titulo * {
  font-size: 44px !important;
}
.page-template-home-page-v2 .banner__texto {
  margin-top: 10px;
  font-weight: 300;
  line-height: 1.4em;
  opacity: 0.9;
  max-width: 47ch;
}
.page-template-home-page-v2 .banner__navegacao {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 2;
  transform: translate(21px, 50%);
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .banner__navegacao {
    bottom: initial;
    top: -22px;
    transform: initial;
    right: 15px;
  }
}
.page-template-home-page-v2 .banner__navegacao button {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.25 10H3.75M3.75 10L9.375 15.625M3.75 10L9.375 4.375' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  background-color: #e46458;
  width: 42px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  cursor: pointer;
  transition: background-position 0.1s;
}
.page-template-home-page-v2 .banner__navegacao button.swiper-button-home-next {
  transform: rotate(180deg);
}
.page-template-home-page-v2 .banner__navegacao button:hover {
  background-position: right 55% center;
}
.page-template-home-page-v2 .banner .padrao-botao {
  margin-top: 20px;
}
.page-template-home-page-v2 .PorqueInvestir {
  margin-top: 20px;
  margin-bottom: 29px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .page-template-home-page-v2 .PorqueInvestir {
    flex-direction: row;
    gap: 64px;
    margin-top: 155px;
  }
}
.page-template-home-page-v2 .PorqueInvestir > .main {
  flex: 1;
}
.page-template-home-page-v2 .PorqueInvestir__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-left: 22px;
  padding-top: 26px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .PorqueInvestir__list {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .page-template-home-page-v2 .PorqueInvestir__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
}
.page-template-home-page-v2 .PorqueInvestir__list__itens {
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
  position: relative;
  padding: 12px 12px 12px 35px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .PorqueInvestir__list__itens {
    width: 90%;
    margin: 20px auto;
    border: 1px solid;
    height: 100%;
  }
}
.page-template-home-page-v2 .PorqueInvestir__list__itens .number {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #e46458;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  left: -25px;
  top: 24px;
}
.page-template-home-page-v2 .PorqueInvestir__list__itens h6 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
  line-height: 24px;
  color: #e46458;
}
.page-template-home-page-v2 .PorqueInvestir__list__itens p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 18px;
}
.page-template-home-page-v2 .PorqueInvestir .kit-investor {
  width: 262px;
  height: 100%;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .PorqueInvestir .kit-investor {
    position: relative;
    width: 100%;
    margin-top: 60px;
  }
}
.page-template-home-page-v2 .PorqueInvestir .kit-investor h3 {
  font-size: 20px;
  font-weight: 600;
  color: #273970;
  line-height: 20px;
}
.page-template-home-page-v2 .PorqueInvestir .kit-investor__itens .item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #273970;
  padding-top: 24px;
  padding-bottom: 21px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: #273970;
}
.page-template-home-page-v2 .datepicker {
  padding-top: 30px;
}
.page-template-home-page-v2 .ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  margin-bottom: 20px;
  text-align: center;
}
.page-template-home-page-v2 .ui-datepicker-calendar thead th {
  color: #fff;
  text-align: left;
  background-color: #273970;
  padding: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page-template-home-page-v2 .ui-datepicker-calendar thead th:first-child {
  border-radius: 10px 0 0 0;
}
.page-template-home-page-v2 .ui-datepicker-calendar thead th:last-child {
  border-radius: 0 10px 0 0;
}
.page-template-home-page-v2 .ui-datepicker-calendar tbody tr:nth-child(even) td {
  background: #f6f6f6;
}
.page-template-home-page-v2 .ui-datepicker-calendar tbody td {
  padding: 10px 0;
}
.page-template-home-page-v2 .midia-home {
  background: #273970;
}
.page-template-home-page-v2 .midia-home > .container {
  display: flex;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .midia-home > .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia-home {
    padding: 40px 0 60px;
  }
}
.page-template-home-page-v2 .midia-home .conteudo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 48px 0;
}
.page-template-home-page-v2 .midia-home .conteudo .padrao-titulo {
  color: white;
  max-width: 100%;
}
.page-template-home-page-v2 .midia-home .conteudo .title-search {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia-home .conteudo .title-search {
    flex-direction: column;
    gap: 28px;
  }
}
.page-template-home-page-v2 .midia-home .conteudo .title-search .title-midia h3 {
  color: #273970;
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia-home .conteudo .title-search .title-midia h3 {
    font-size: 28px;
    line-height: 125%;
  }
}
.page-template-home-page-v2 .midia-home .conteudo .title-search .title-midia hr {
  margin: 2px 0 0px;
  width: 55px;
  height: 6px;
  background: #e46458;
  border-radius: 2px;
  border: none;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 34px 30px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia-home .conteudo .midia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .midia-home .conteudo .midia-grid {
    grid-template-columns: 1fr;
  }
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 279px;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box a {
  background: #e46458;
  padding: 5px;
  color: #fff;
  position: absolute;
  font-size: 12px;
  bottom: 13px;
  left: 13px;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box:nth-child(n+3) {
  display: none !important;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .video {
  height: 143px;
  width: 100%;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .video img {
  width: 100%;
  object-fit: cover;
  height: 143px;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .video {
    height: 115px;
  }
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .video iframe {
  width: 100%;
  height: 100%;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .text {
  padding: 20px 15px 35px;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .text .data {
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  color: #333333;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .text .titulo {
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  color: #212e58;
  margin: 12px 0 6px;
}
.page-template-home-page-v2 .midia-home .conteudo .midia-grid .box .text .content {
  font-weight: 300;
  font-size: 12px;
  line-height: 130%;
  color: #333333;
  display: none;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .midia-home .conteudo .padrao-botao {
    width: 100%;
  }
}
.page-template-home-page-v2 .sobre-a-aura {
  position: relative;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .sobre-a-aura.padrao-bloco {
    padding: 40px 0;
  }
}
.page-template-home-page-v2 .sobre-a-aura::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: calc(var(--tamanho-borda) + var(--tamanho-coluna) * 3);
  width: calc(var(--tamanho-coluna) * 6);
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 662 662' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle opacity='0.3' cx='331' cy='331' r='295' stroke='url(%23paint0_linear_1105_7556)' stroke-width='72'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1105_7556' x1='331' y1='7.07806e-06' x2='142.5' y2='516.5' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23E46458'/%3E%3Cstop offset='1' stop-color='%23E46458' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  z-index: 2;
  pointer-events: none;
}
.page-template-home-page-v2 .sobre-a-aura .row {
  margin: 0 -32px;
}
.page-template-home-page-v2 .sobre-a-aura .row > * {
  padding: 0 32px;
}
.page-template-home-page-v2 .sobre-a-aura__video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
  overflow: hidden;
  z-index: 3;
}
.page-template-home-page-v2 .sobre-a-aura__video img {
  object-fit: cover;
  object-position: center;
}
.page-template-home-page-v2 .sobre-a-aura__video p {
  position: absolute;
  bottom: 25px;
  left: 30px;
  font-size: var(--fonte-16px);
  line-height: 1.1em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}
.page-template-home-page-v2 .sobre-a-aura__video::after {
  --tamanho-play: clamp(44px, 14.3%, 102px);
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 104 104' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='54.5' cy='51.5' r='35.5' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.8125 52C0.8125 23.7287 23.7287 0.8125 52 0.8125C80.2713 0.8125 103.188 23.7287 103.188 52C103.188 80.2713 80.2713 103.188 52 103.188C23.7287 103.188 0.8125 80.2713 0.8125 52ZM74.4385 46.8393C75.3582 47.3511 76.1243 48.0994 76.6577 49.0068C77.1911 49.9141 77.4724 50.9475 77.4724 52C77.4724 53.0525 77.1911 54.0859 76.6577 54.9932C76.1243 55.9006 75.3582 56.6489 74.4385 57.1607L45.0227 73.504C44.1239 74.003 43.1104 74.2586 42.0824 74.2458C41.0544 74.2329 40.0476 73.952 39.1615 73.4307C38.2754 72.9094 37.5407 72.1659 37.0301 71.2737C36.5195 70.3814 36.2506 69.3713 36.25 68.3432V35.6568C36.25 31.1575 41.0852 28.3067 45.0227 30.496L74.4385 46.8393V46.8393Z' fill='%23E46458'/%3E%3C/svg%3E");
  width: 126px;
  width: var(--tamanho-play);
  aspect-ratio: 1/1;
  margin-top: calc(var(--tamanho-play) / 2 * -1);
  margin-left: calc(var(--tamanho-play) / 2 * -1);
  transition: transform 0.1s;
}
.page-template-home-page-v2 .sobre-a-aura__video:hover::after {
  transform: scale(1.1);
}
.page-template-home-page-v2 .sobre-a-aura__texto {
  font-weight: 300;
  line-height: 1.4em;
  max-width: 290px;
  margin-top: 7px;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .sobre-a-aura__texto {
    margin-top: 43px;
  }
}
.page-template-home-page-v2 .sobre-a-aura__citacao {
  margin-top: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='55' height='44' viewBox='0 0 55 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.2' d='M11.6289 43.7666C4.45117 43.7666 0.862305 39.0791 0.862305 29.7041V29.0449L0.935547 28.459C0.935547 22.8438 2.40039 17.7656 5.33008 13.2246C8.25977 8.63477 11.0186 5.43652 13.6064 3.62988C16.2432 1.82324 18.123 0.919922 19.2461 0.919922H19.7588C22.4932 0.919922 23.8604 2.28711 23.8604 5.02148C23.8604 5.36328 23.2256 6.31543 21.9561 7.87793C20.6865 9.3916 19.4414 11.1006 18.2207 13.0049C17 14.8604 16.3896 17.1553 16.3896 19.8896C16.3896 20.6221 17.708 22.3311 20.3447 25.0166C23.0303 27.6533 24.373 30.4609 24.373 33.4395V34.0254C24.373 36.418 23.25 38.6396 21.0039 40.6904C18.7578 42.7412 16.2676 43.7666 13.5332 43.7666H11.6289ZM31.4775 26.042C31.4775 21.5498 33.5771 16.2764 37.7764 10.2217C41.9756 4.11816 45.9551 1.06641 49.7148 1.06641H50.2275C52.8154 1.06641 54.1094 2.45801 54.1094 5.24121C54.1094 5.63184 53.4014 6.68164 51.9854 8.39062C50.6182 10.0508 49.7881 11.1006 49.4951 11.54C47.6396 14.4209 46.7119 17.082 46.7119 19.5234C46.7119 20.7441 48.0547 22.5752 50.7402 25.0166C53.4258 27.458 54.7686 30.1191 54.7686 33V33.5859L54.6953 34.0986C54.6953 36.4912 53.5723 38.7129 51.3262 40.7637C49.0801 42.8145 46.3701 43.8398 43.1963 43.8398L42.6104 43.7666H41.9512C38.4355 43.7666 35.7744 42.5947 33.9678 40.251C32.21 37.8584 31.3311 34.7578 31.3311 30.9492V27.873C31.4287 27.0918 31.4775 26.4814 31.4775 26.042Z' fill='%23E46458'/%3E%3C/svg%3E%0A"), url("data:image/svg+xml,%3Csvg width='53' height='44' viewBox='0 0 53 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.2' d='M22.8125 14.8613V15.5205C22.8125 21.3311 21.0059 27.0439 17.3926 32.6592C15.3906 35.7354 13.0225 38.3232 10.2881 40.4229C7.60254 42.5225 5.625 43.5723 4.35547 43.5723H3.84277C1.4502 43.5723 0.253906 42.6201 0.253906 40.7158V39.3975C0.253906 38.8604 0.888672 37.9082 2.1582 36.541C5.91797 32.4395 7.79785 28.5088 7.79785 24.749C7.79785 24.6025 6.55273 23.0156 4.0625 19.9883C1.62109 16.9609 0.400391 13.9824 0.400391 11.0527C0.400391 8.07422 1.52344 5.63281 3.76953 3.72852C6.06445 1.82422 8.62793 0.87207 11.46 0.87207H12.7051L13.291 0.945312C19.6387 0.945312 22.8125 5.58398 22.8125 14.8613ZM40.5371 0.945312H43.0273C49.668 0.945312 52.9883 5.41309 52.9883 14.3486V14.9346C52.9883 20.9893 51.4502 26.4092 48.374 31.1943C45.2979 35.9795 42.0264 39.5684 38.5596 41.9609C36.7041 43.2305 35.2637 43.8652 34.2383 43.8652H33.6523C31.0645 43.8652 29.7705 42.7178 29.7705 40.4229V39.5439C29.7705 39.0557 30.2588 38.2744 31.2354 37.2002C35.2393 32.8057 37.2412 28.6797 37.2412 24.8223C37.2412 23.6992 35.9961 22.0146 33.5059 19.7686C31.0156 17.5225 29.7705 15.0811 29.7705 12.4443V11.2725C29.7705 8.48926 30.7959 6.07227 32.8467 4.02148C34.8975 1.9707 37.4609 0.945312 40.5371 0.945312Z' fill='%23E46458'/%3E%3C/svg%3E");
  background-position: top left, bottom 13px right;
  background-size: 54px;
  background-repeat: no-repeat;
  padding: 25px 20px 0 12px;
  max-width: 245px;
  margin-bottom: 35px;
}
.page-template-home-page-v2 .sobre-a-aura__citacao p {
  font-size: var(--fonte-25px);
  line-height: 1.3em;
  color: #273970;
}
.page-template-home-page-v2 .sobre-a-aura__citacao p strong {
  font-weight: 700;
}
.page-template-home-page-v2 .sobre-a-aura__assinatura {
  position: relative;
  font-weight: 600;
  font-size: var(--fonte-16px);
  line-height: 1.4em;
  color: #212e58;
  margin-bottom: 30px;
  margin-top: -25px;
  margin-left: 12px;
}
.page-template-home-page-v2 .sobre-a-aura__assinatura small {
  font-weight: 300;
}
.page-template-home-page-v2 .nosso-compromisso {
  position: relative;
  padding: 220px 0 0;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nosso-compromisso {
    padding: 200px 0 80px;
  }
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nosso-compromisso__banner {
    max-height: 255px;
  }
}
.page-template-home-page-v2 .nosso-compromisso__banner * {
  width: 100%;
  height: 100%;
}
.page-template-home-page-v2 .nosso-compromisso__banner * img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-template-home-page-v2 .nosso-compromisso__content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 30px 30px 12px;
  max-width: 495px;
  margin-bottom: -80px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nosso-compromisso__content {
    padding: 25px 0 30px 25px;
  }
}
.page-template-home-page-v2 .nosso-compromisso__content h2 {
  margin-left: 33px;
  margin-bottom: 33px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nosso-compromisso__content h2 {
    margin-left: 0px;
  }
}
.page-template-home-page-v2 .nosso-compromisso__slide {
  position: relative;
  padding: 0 30px 35px;
  min-height: 235px;
  border-radius: 15px;
  background-color: #f6f6f6;
  margin-top: 26px;
  max-width: 355px;
}
.page-template-home-page-v2 .nosso-compromisso__slide i {
  position: relative;
  width: 52px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #f6f6f6;
  top: -26px;
  margin-left: -10px;
}
.page-template-home-page-v2 .nosso-compromisso__slide i img {
  object-fit: contain;
  object-position: center;
  width: 24px;
  aspect-ratio: 1/1;
}
.page-template-home-page-v2 .nosso-compromisso__slide h3 {
  margin-top: -26px;
  max-width: 15ch;
}
.page-template-home-page-v2 .nosso-compromisso__slide p {
  font-weight: 300;
  font-size: var(--fonte-16px);
  line-height: 1.4em;
  margin-top: 10px;
  max-width: 34ch;
}
.page-template-home-page-v2 .nosso-compromisso__navegacao {
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-left: 35px;
  gap: 10px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nosso-compromisso__navegacao {
    margin: 24px auto;
  }
}
.page-template-home-page-v2 .nosso-compromisso__navegacao .swiper-button-icones-prev,
.page-template-home-page-v2 .nosso-compromisso__navegacao .swiper-button-icones-next {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='10' viewBox='0 0 20 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.25 1.25L19 5M19 5L15.25 8.75M19 5H1' stroke='%23E46458' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 24px;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  background-color: transparent;
  cursor: pointer;
}
.page-template-home-page-v2 .nosso-compromisso__navegacao .swiper-button-icones-prev {
  transform: rotate(180deg);
}
.page-template-home-page-v2 .nosso-compromisso__navegacao .swiper-pagination-compromisso {
  width: fit-content;
  display: flex;
  gap: 3px;
}
.page-template-home-page-v2 .nosso-compromisso__navegacao .swiper-pagination-compromisso .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  border: 1px solid #273970;
  background-color: transparent;
  margin: 0;
}
.page-template-home-page-v2 .nosso-compromisso__navegacao .swiper-pagination-compromisso .swiper-pagination-bullet-active {
  background-color: #273970;
}
.page-template-home-page-v2 .nosso-compromisso .swiper-pagination-icones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: fit-content;
  height: fit-content;
  margin-right: 10px;
  padding-top: 34px;
}
.page-template-home-page-v2 .nosso-compromisso .swiper-pagination-icones .swiper-pagination-bullet {
  width: 20px;
  height: unset;
  aspect-ratio: 1/1;
  background-color: transparent;
  border-radius: none;
  margin: 0;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.page-template-home-page-v2 .nosso-compromisso .swiper-pagination-icones .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-template-home-page-v2 .nosso-compromisso .swiper-pagination-icones .swiper-pagination-bullet-active {
  opacity: 1;
}
.page-template-home-page-v2 .nossa-cultura {
  padding-top: 130px;
  padding-bottom: 75px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nossa-cultura {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
.page-template-home-page-v2 .nossa-cultura .padrao-texto {
  max-width: 45ch;
}
.page-template-home-page-v2 .nossa-cultura__fancy-mandala {
  display: block;
  width: 48px;
  aspect-ratio: 1/1;
}
.page-template-home-page-v2 .nossa-cultura__fancy-mandala svg {
  width: 100%;
}
@media (max-width: 1229.98px) {
  .page-template-home-page-v2 .nossa-cultura__fancy-mandala {
    position: relative;
    z-index: 3 !important;
    margin-bottom: -48px;
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .nossa-cultura__fancy-mandala {
    margin-top: 20px;
  }
}
.page-template-home-page-v2 .nossa-cultura__mandala {
  width: calc(100% - 86px);
  margin-left: auto;
  max-width: 480px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .nossa-cultura__mandala {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .nossa-cultura__mandala {
    margin-top: 20px;
  }
}
.page-template-home-page-v2 .nossa-cultura__mandala {
  width: 100%;
}
.page-template-home-page-v2 .nossa-cultura__projetos h2 {
  margin-top: 130px;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .nossa-cultura__projetos h2 {
    margin-top: 45px;
  }
}
.page-template-home-page-v2 .nossa-cultura .projeto {
  margin-bottom: 75px;
}
@media (max-width: 1229.98px) {
  .page-template-home-page-v2 .nossa-cultura .projeto {
    margin-bottom: 35px;
  }
}
.page-template-home-page-v2 .nossa-cultura .projeto,
.page-template-home-page-v2 .nossa-cultura .padrao-titulo, .page-template-home-page-v2 .nossa-cultura__fancy-mandala, .page-template-home-page-v2 .nossa-cultura__mandala,
.page-template-home-page-v2 .nossa-cultura .padrao-texto,
.page-template-home-page-v2 .nossa-cultura .mapa__legenda {
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .page-template-home-page-v2 .nossa-cultura .mapa {
    top: 315px;
  }
}
.page-template-home-page-v2 .projeto-fancy {
  padding: 0;
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .projeto-fancy .projeto {
    max-width: 340px;
    margin-bottom: 0;
  }
}
.page-template-home-page-v2 .fancybox__content > .carousel__button.is-close {
  top: 0;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .downloads.padrao-bloco {
    padding: 43px 0 53px;
  }
}
.page-template-home-page-v2 .downloads .row {
  margin: 0 -24px;
}
.page-template-home-page-v2 .downloads .row > * {
  padding: 0 24px;
}
.page-template-home-page-v2 .downloads__bloco {
  background: #ffffff;
  border: 3px solid #c3dcee;
  border-radius: 7px;
  padding: 35px;
  height: 100%;
  width: 380px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .downloads__bloco {
    padding: 25px 25px 30px 25px;
    margin-bottom: 15px;
    height: unset;
    max-width: 380px;
    width: 100%;
  }
}
.page-template-home-page-v2 .downloads__bloco svg {
  width: 21px;
  aspect-ratio: 1/1;
  margin-bottom: 12px;
}
.page-template-home-page-v2 .downloads__bloco h3 {
  font-weight: 600;
  font-size: var(--fonte-18px);
  line-height: 1.3em;
  color: #273970;
  margin-bottom: 1em;
}
.page-template-home-page-v2 .downloads__bloco a {
  position: relative;
  display: flex;
  gap: 0.8ch;
  align-items: center;
  color: #e46458;
  margin-bottom: 10px;
  font-size: var(--fonte-14px);
}
.page-template-home-page-v2 .downloads__bloco a::after {
  content: " ";
  width: 14px;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.625 7H11.375M11.375 7L7.4375 3.0625M11.375 7L7.4375 10.9375' stroke='%23E46458' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: relative;
  display: inline-block;
  transition: transform 0.2s;
}
.page-template-home-page-v2 .downloads__bloco a:hover::after {
  transform: translateX(2px);
}
.page-template-home-page-v2 .downloads__bloco a[download]:after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2.625V11.375M7 11.375L10.9375 7.4375M7 11.375L3.0625 7.4375' stroke='%23E46458' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.page-template-home-page-v2 .downloads__bloco a[download]:hover::after {
  transform: translateY(2px);
}
.page-template-home-page-v2 .ui-icon-circle-triangle-w,
.page-template-home-page-v2 .ui-icon-circle-triangle-e {
  display: none;
}
.page-template-home-page-v2 .ui-datepicker-title {
  margin: 10px 10px 15px;
  text-align: center;
  font-weight: bold;
}

.page-template-home-page-v2 .quotes {
  height: 39px;
  background: #273970;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes {
    position: absolute;
    width: 100%;
    top: 330px;
    z-index: 99;
  }
}
.page-template-home-page-v2 .quotes .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes .container {
    justify-content: center;
    gap: 20px;
  }
}
.page-template-home-page-v2 .quotes__left {
  display: flex;
  gap: 26px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes__left {
    gap: 4px;
  }
}
.page-template-home-page-v2 .quotes__left > span {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes__left > span {
    font-size: 14px;
  }
}
.page-template-home-page-v2 .quotes__left > span.price {
  font-weight: 700;
}
.page-template-home-page-v2 .quotes__left > span.variation.up {
  color: rgb(14, 182, 14);
}
.page-template-home-page-v2 .quotes__left > span.variation.down {
  color: rgb(255, 99, 99);
}
.page-template-home-page-v2 .quotes__middle {
  display: flex;
  gap: 26px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes__middle {
    gap: 4px;
  }
}
.page-template-home-page-v2 .quotes__middle > span {
  color: #fff;
  font-size: 16px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes__middle > span {
    font-size: 14px;
  }
}
.page-template-home-page-v2 .quotes__middle > span.price {
  font-weight: 700;
}
.page-template-home-page-v2 .quotes__middle > span.variation.up {
  color: rgb(14, 182, 14);
}
.page-template-home-page-v2 .quotes__middle > span.variation.down {
  color: rgb(255, 99, 99);
}
.page-template-home-page-v2 .quotes__right {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 767px) {
  .page-template-home-page-v2 .quotes__right {
    display: none;
  }
}
.page-template-home-page-v2 .quotes__right b {
  color: #e46458 !important;
  font-weight: 700 !important;
}
.page-template-home-page-v2 .midia {
  padding: 50px 0 140px;
  background: #fff;
  margin-top: 40px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia {
    padding: 40px 0 60px;
  }
}
@media (min-width: 1200px) {
  .page-template-home-page-v2 .midia > .container {
    display: flex;
    flex-direction: row;
    gap: 64px;
  }
}
.page-template-home-page-v2 .midia .conteudo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1;
}
.page-template-home-page-v2 .midia .conteudo .title-search {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia .conteudo .title-search {
    flex-direction: column;
    gap: 28px;
  }
}
.page-template-home-page-v2 .midia .conteudo .title-search .title-midia h3 {
  color: #273970;
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia .conteudo .title-search .title-midia h3 {
    font-size: 28px;
    line-height: 125%;
  }
}
.page-template-home-page-v2 .midia .conteudo .title-search .title-midia hr {
  margin: 2px 0 0px;
  width: 55px;
  height: 6px;
  background: #e46458;
  border-radius: 2px;
  border: none;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 34px 30px;
}
@media (max-width: 991.98px) {
  .page-template-home-page-v2 .midia .conteudo .midia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .midia .conteudo .midia-grid {
    grid-template-columns: 1fr;
  }
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 279px;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box a {
  transition: 0.3s;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box a:hover {
  opacity: 0.8;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .video {
  height: 143px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .midia .conteudo .midia-grid .box .video {
    height: 115px;
  }
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .video img {
  width: 100%;
  object-fit: cover;
  height: 143px;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .video iframe {
  width: 100%;
  height: 100%;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .text {
  padding: 20px 15px;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .text .data {
  font-weight: 500;
  font-size: 12px;
  line-height: 110%;
  color: #333333;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .text .titulo {
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  color: #212e58;
  margin: 12px 0 6px;
}
.page-template-home-page-v2 .midia .conteudo .midia-grid .box .text .content {
  font-weight: 300;
  font-size: 12px;
  line-height: 130%;
  color: #333333;
}
@media (max-width: 767.98px) {
  .page-template-home-page-v2 .midia .conteudo .padrao-botao {
    width: 100%;
  }
}
.page-template-home-page-v2 .midia--ri {
  background: #c0e4f5;
}
.page-template-home-page-v2 .midia--ri .events td {
  background: white !important;
}
.page-template-home-page-v2 .events {
  font-size: 20px;
  font-weight: 600;
  color: #273970;
  line-height: 20px;
}
@media (max-width: 1199px) {
  .page-template-home-page-v2 .events {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .page-template-home-page-v2 .events {
    width: 262px;
    text-align: center;
  }
}

#popup-home {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(45, 45, 45, 0.5);
}
#popup-home .box-msg {
  padding: 40px;
  width: 750px;
  min-height: 300px;
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: calc(100% - 20px);
  z-index: 99999;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  border-radius: 8px;
  background: #FFF;
}
@media (min-width: 769px) and (max-width: 1400px) {
  #popup-home .box-msg {
    overflow-y: scroll;
  }
}
#popup-home .box-msg .info {
  background-color: #fff;
}
#popup-home .box-msg .info .iconTop {
  position: absolute;
  top: 0;
  left: 0;
}
#popup-home .box-msg .info .iconBottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
#popup-home .box-msg .info .logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 160px;
}
#popup-home .box-msg main {
  float: left;
  position: relative;
  text-align: left;
}
@media (max-width: 1199px) {
  #popup-home .box-msg main {
    padding: 20px 0px;
  }
}
#popup-home .box-msg main .boxPopup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 25px;
}
#popup-home .box-msg main h2 {
  font-weight: 600;
  font-size: 20px;
  float: left;
  width: 100%;
  margin: 15px 0 0;
}
#popup-home .box-msg main h3 {
  color: #212E58;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 150% */
  text-align: center;
  max-width: 541px;
}
#popup-home .box-msg main strong {
  font-size: 16px;
  font-weight: 600;
}
#popup-home .box-msg main table {
  width: 100%;
  max-width: 590px;
  margin: 20px auto;
}
#popup-home .box-msg main table thead {
  background-color: #F5F5F5;
}
#popup-home .box-msg main table thead th {
  color: #F1653E;
  padding: 15px 15px 30px;
}
#popup-home .box-msg main table td {
  padding: 15px;
  vertical-align: top;
  color: #333333;
  font-size: 16px;
  text-align: center;
}
#popup-home .box-msg main table td strong {
  color: #272F5A;
  font-size: 16px;
}
#popup-home .box-msg main table td p {
  font-weight: 500;
}
#popup-home .box-msg main table td a {
  line-height: 20px;
  font-size: 17px;
  font-weight: normal;
  padding: 5px;
  color: #7e7e7e;
}
#popup-home .box-msg main p {
  color: #333333;
  float: left;
  margin: 8px 0;
  width: 100%;
}
#popup-home .box-msg main p a {
  line-height: 25px;
  font-size: 18px;
  font-weight: normal;
  padding: 5px 15px;
  margin: 10px 0;
  font-size: 18px;
  color: #333333;
}
#popup-home .box-msg .close {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 50%;
  font-style: normal;
  cursor: pointer;
  color: #E46458;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 33.6px;
}
#popup-home .box-msg .btnPopup {
  display: flex;
  padding: 12px 24px;
  align-items: flex-start;
  gap: 8px;
  background: #009FC2;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  text-decoration: none;
  max-width: 250px;
}