/*!****************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./assets/frontend/sass/app.scss ***!
  \****************************************************************************************************************************************************/
@charset "UTF-8";
/*
|
| FEATURES
|----------------
|
*/
/*
|
| UTILS
|----------------
|
*/
/*
|
| MIXINS
|----------------
|
*/
/*
    Name of the next breakpoint, or null for the last breakpoint.

    >> breakpoint-next(sm)
        md
    >> breakpoint-next(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
        md
    >> breakpoint-next(sm, $breakpoint-names: (xs sm md lg xl))
        md
*/
/*
    Minimum breakpoint width. Null for the smallest (first) breakpoint.

    >> breakpoint-min(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
        576px
*/
/*
    Maximum breakpoint width. Null for the largest (last) breakpoint.
    The maximum value is calculated as the minimum of the next one less 0.02px to work around the limitations of `min-` and `max-` prefixes and viewports with fractional widths.
    See https://www.w3.org/TR/mediaqueries-4/#mq-min-max
    Uses 0.02px rather than 0.01px to work around a current rounding bug in Safari.
    See https://bugs.webkit.org/show_bug.cgi?id=178261

    >> breakpoint-max(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
        767.98px
*/
/*
    Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
    Useful for making responsive utilities.

    >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
        ""  (Returns a blank string)

    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
        "-sm"
*/
/*
    Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
    Makes the @content apply to the given breakpoint and wider.
*/
/*
    Media of at most the maximum breakpoint width. No query for the largest breakpoint.
    Makes the @content apply to the given breakpoint and narrower.
*/
/*
    Media that spans multiple breakpoint widths.
    Makes the @content apply between the min and max breakpoints
*/
/*
    Media between the breakpoint's minimum and maximum widths.
    No minimum for the smallest breakpoint, and no maximum for the largest one.
    Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
*/
/*
|
| Titles
|-----------------------
|
*/
/*
|
| MAPS
|----------------
|
*/
/*
|-------------
| Breakpoints media queries creation 
|-------------
| - How to use: add lines to create more breakpoints
|
*/
/*
|-------------------------------
| Container classes creation
|-------------------------------
| Variables used to generate container classes
| - Generated classes: .container / .container-fluid
|
*/
/*
|-------------------------------
| Grid gutters creation
|-------------------------------
| Variables used to generate grid gutter classes
| - Generated classes: .g-{size}
| - Exemple: .g-md
|
*/
/*
|-------------------------------
| Margins & Paddings classes creation
|-------------------------------
| Variables used to generate padding & margin classes
| - Generated classes: .m{direction}-{size} & .p{direction}-{size}
| - Exemple: .mt-md & .pt-md
|
*/
/*
|-------------
| Color classes creation 
|-------------
| - How to use: add lines to create more "color classes" 
| - Generated classes: .bg-{color} & .c-{color}
| - Exemple: .bg-black & .c-black
|
*/
/*
|-------------------------------
| Font family classes creation
|-------------------------------
| How to use: add lines to create more "font family classes" 
| - Generated classes: .ff-{family}
| - Exemple: .ff-default
|
*/
/*
|----------------------------------------------
| Font size classes creation
|----------------------------------------------
| Variables used to generate font size classes (including responsive)
| - Generated classes: .fs-{name}
| - Exemple: .fs-md
|
| Syntax :
|   '{name}': (
|       'default': {size},
|       'screens': (
|           'xl': {size},
|           'lg': {size},
|           'md': {size},
|           'sm': {size},
|       )
|   )
|
*/
/*
|-------------------------------
| Font weight classes creation
|-------------------------------
| How to use: add lines to create more "font weight classes"
| - Generated classes: .fw-{weight}
| - Exemple: .fw-400
|
*/
/*
|-------------------------------
| Text align classes creation
|-------------------------------
| Variables used to generate text-align classes
| - Generated classes: .ta-{alignment}
| - Exemple: .ta-center
|
*/
/*
|-------------------------------
| Title sizes classes creation
|-------------------------------
| Variables used to generate title classes (including responsive)
| - Generated classes: .{class}
| - Exemple: .title-xl
|
*/
/*
|
| CORE
|----------------
|
*/
/*
|---------------------------------------------------------------
| Helpers
|---------------------------------------------------------------
| Define helper classes
|
|
*/
/*
|
| TEXT TRANSFORMS
|----------------
|
*/
/*
|---------------------------------------------------------------
| CLASS GENERATOR
|---------------------------------------------------------------
| Mixins calls to generate classes
|
|
*/
/*
|
| CONTAINERS
|----------------
|
*/
.container {
  width: calc(100% - 2rem);
  max-width: var(--container-width, none);
  margin-inline: auto;
}
.container--fluid {
  --container-width: 100%;
}
.container--sm {
  --container-width: 48rem;
}

/*
|
| GRID
|----------------
|
*/
.row,
[class^=row-],
[class*=" row-"] {
  --gx: 30px;
  --gy: 30px;
  --tgx: max(0px, calc((var(--cc) - 1) * var(--gx)));
  display: flex;
  flex-wrap: wrap;
  gap: var(--gy) var(--gx);
}

.row {
  --cc: 12;
}

.row-24 {
  --cc: 24;
}

.col,
[class^=col-],
[class*=" col-"] {
  --cw: calc((100% - var(--tgx)) / var(--cc) * var(--cs) + (var(--cs) - 1) * var(--gx));
  width: var(--cw, 100%);
  flex: 0 0 var(--cw, 100%);
}

[class^=offset-],
[class*=" offset-"] {
  margin-left: calc((100% - var(--tgx)) / var(--cc) * var(--co) + var(--co) * var(--gx));
}

.col {
  --cs: var(--cc);
}

.col-auto {
  --cw: auto;
}

.order-first {
  order: -1;
}

.order-last {
  order: 999;
}

.order-0 {
  order: 0;
}

.offset-0 {
  --co: 0;
}

.col-1 {
  --cs: 1;
}

.order-1 {
  order: 1;
}

.offset-1 {
  --co: 1;
}

.col-2 {
  --cs: 2;
}

.order-2 {
  order: 2;
}

.offset-2 {
  --co: 2;
}

.col-3 {
  --cs: 3;
}

.order-3 {
  order: 3;
}

.offset-3 {
  --co: 3;
}

.col-4 {
  --cs: 4;
}

.order-4 {
  order: 4;
}

.offset-4 {
  --co: 4;
}

.col-5 {
  --cs: 5;
}

.order-5 {
  order: 5;
}

.offset-5 {
  --co: 5;
}

.col-6 {
  --cs: 6;
}

.order-6 {
  order: 6;
}

.offset-6 {
  --co: 6;
}

.col-7 {
  --cs: 7;
}

.order-7 {
  order: 7;
}

.offset-7 {
  --co: 7;
}

.col-8 {
  --cs: 8;
}

.order-8 {
  order: 8;
}

.offset-8 {
  --co: 8;
}

.col-9 {
  --cs: 9;
}

.order-9 {
  order: 9;
}

.offset-9 {
  --co: 9;
}

.col-10 {
  --cs: 10;
}

.order-10 {
  order: 10;
}

.offset-10 {
  --co: 10;
}

.col-11 {
  --cs: 11;
}

.order-11 {
  order: 11;
}

.offset-11 {
  --co: 11;
}

.col-12 {
  --cs: 12;
}

.order-12 {
  order: 12;
}

.offset-12 {
  --co: 12;
}

.col-13 {
  --cs: 13;
}

.order-13 {
  order: 13;
}

.offset-13 {
  --co: 13;
}

.col-14 {
  --cs: 14;
}

.order-14 {
  order: 14;
}

.offset-14 {
  --co: 14;
}

.col-15 {
  --cs: 15;
}

.order-15 {
  order: 15;
}

.offset-15 {
  --co: 15;
}

.col-16 {
  --cs: 16;
}

.order-16 {
  order: 16;
}

.offset-16 {
  --co: 16;
}

.col-17 {
  --cs: 17;
}

.order-17 {
  order: 17;
}

.offset-17 {
  --co: 17;
}

.col-18 {
  --cs: 18;
}

.order-18 {
  order: 18;
}

.offset-18 {
  --co: 18;
}

.col-19 {
  --cs: 19;
}

.order-19 {
  order: 19;
}

.offset-19 {
  --co: 19;
}

.col-20 {
  --cs: 20;
}

.order-20 {
  order: 20;
}

.offset-20 {
  --co: 20;
}

.col-21 {
  --cs: 21;
}

.order-21 {
  order: 21;
}

.offset-21 {
  --co: 21;
}

.col-22 {
  --cs: 22;
}

.order-22 {
  order: 22;
}

.offset-22 {
  --co: 22;
}

.col-23 {
  --cs: 23;
}

.order-23 {
  order: 23;
}

.offset-23 {
  --co: 23;
}

.col-24 {
  --cs: 24;
}

.order-24 {
  order: 24;
}

@media (min-width: 36rem) {
  .col-sm {
    --cs: var(--cc);
  }
  .col-sm-auto {
    --cw: auto;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 999;
  }
  .order-sm-0 {
    order: 0;
  }
  .offset-sm-0 {
    --co: 0;
  }
  .col-sm-1 {
    --cs: 1;
  }
  .order-sm-1 {
    order: 1;
  }
  .offset-sm-1 {
    --co: 1;
  }
  .col-sm-2 {
    --cs: 2;
  }
  .order-sm-2 {
    order: 2;
  }
  .offset-sm-2 {
    --co: 2;
  }
  .col-sm-3 {
    --cs: 3;
  }
  .order-sm-3 {
    order: 3;
  }
  .offset-sm-3 {
    --co: 3;
  }
  .col-sm-4 {
    --cs: 4;
  }
  .order-sm-4 {
    order: 4;
  }
  .offset-sm-4 {
    --co: 4;
  }
  .col-sm-5 {
    --cs: 5;
  }
  .order-sm-5 {
    order: 5;
  }
  .offset-sm-5 {
    --co: 5;
  }
  .col-sm-6 {
    --cs: 6;
  }
  .order-sm-6 {
    order: 6;
  }
  .offset-sm-6 {
    --co: 6;
  }
  .col-sm-7 {
    --cs: 7;
  }
  .order-sm-7 {
    order: 7;
  }
  .offset-sm-7 {
    --co: 7;
  }
  .col-sm-8 {
    --cs: 8;
  }
  .order-sm-8 {
    order: 8;
  }
  .offset-sm-8 {
    --co: 8;
  }
  .col-sm-9 {
    --cs: 9;
  }
  .order-sm-9 {
    order: 9;
  }
  .offset-sm-9 {
    --co: 9;
  }
  .col-sm-10 {
    --cs: 10;
  }
  .order-sm-10 {
    order: 10;
  }
  .offset-sm-10 {
    --co: 10;
  }
  .col-sm-11 {
    --cs: 11;
  }
  .order-sm-11 {
    order: 11;
  }
  .offset-sm-11 {
    --co: 11;
  }
  .col-sm-12 {
    --cs: 12;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-12 {
    --co: 12;
  }
  .col-sm-13 {
    --cs: 13;
  }
  .order-sm-13 {
    order: 13;
  }
  .offset-sm-13 {
    --co: 13;
  }
  .col-sm-14 {
    --cs: 14;
  }
  .order-sm-14 {
    order: 14;
  }
  .offset-sm-14 {
    --co: 14;
  }
  .col-sm-15 {
    --cs: 15;
  }
  .order-sm-15 {
    order: 15;
  }
  .offset-sm-15 {
    --co: 15;
  }
  .col-sm-16 {
    --cs: 16;
  }
  .order-sm-16 {
    order: 16;
  }
  .offset-sm-16 {
    --co: 16;
  }
  .col-sm-17 {
    --cs: 17;
  }
  .order-sm-17 {
    order: 17;
  }
  .offset-sm-17 {
    --co: 17;
  }
  .col-sm-18 {
    --cs: 18;
  }
  .order-sm-18 {
    order: 18;
  }
  .offset-sm-18 {
    --co: 18;
  }
  .col-sm-19 {
    --cs: 19;
  }
  .order-sm-19 {
    order: 19;
  }
  .offset-sm-19 {
    --co: 19;
  }
  .col-sm-20 {
    --cs: 20;
  }
  .order-sm-20 {
    order: 20;
  }
  .offset-sm-20 {
    --co: 20;
  }
  .col-sm-21 {
    --cs: 21;
  }
  .order-sm-21 {
    order: 21;
  }
  .offset-sm-21 {
    --co: 21;
  }
  .col-sm-22 {
    --cs: 22;
  }
  .order-sm-22 {
    order: 22;
  }
  .offset-sm-22 {
    --co: 22;
  }
  .col-sm-23 {
    --cs: 23;
  }
  .order-sm-23 {
    order: 23;
  }
  .offset-sm-23 {
    --co: 23;
  }
  .col-sm-24 {
    --cs: 24;
  }
  .order-sm-24 {
    order: 24;
  }
}
@media (min-width: 48rem) {
  .col-md {
    --cs: var(--cc);
  }
  .col-md-auto {
    --cw: auto;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 999;
  }
  .order-md-0 {
    order: 0;
  }
  .offset-md-0 {
    --co: 0;
  }
  .col-md-1 {
    --cs: 1;
  }
  .order-md-1 {
    order: 1;
  }
  .offset-md-1 {
    --co: 1;
  }
  .col-md-2 {
    --cs: 2;
  }
  .order-md-2 {
    order: 2;
  }
  .offset-md-2 {
    --co: 2;
  }
  .col-md-3 {
    --cs: 3;
  }
  .order-md-3 {
    order: 3;
  }
  .offset-md-3 {
    --co: 3;
  }
  .col-md-4 {
    --cs: 4;
  }
  .order-md-4 {
    order: 4;
  }
  .offset-md-4 {
    --co: 4;
  }
  .col-md-5 {
    --cs: 5;
  }
  .order-md-5 {
    order: 5;
  }
  .offset-md-5 {
    --co: 5;
  }
  .col-md-6 {
    --cs: 6;
  }
  .order-md-6 {
    order: 6;
  }
  .offset-md-6 {
    --co: 6;
  }
  .col-md-7 {
    --cs: 7;
  }
  .order-md-7 {
    order: 7;
  }
  .offset-md-7 {
    --co: 7;
  }
  .col-md-8 {
    --cs: 8;
  }
  .order-md-8 {
    order: 8;
  }
  .offset-md-8 {
    --co: 8;
  }
  .col-md-9 {
    --cs: 9;
  }
  .order-md-9 {
    order: 9;
  }
  .offset-md-9 {
    --co: 9;
  }
  .col-md-10 {
    --cs: 10;
  }
  .order-md-10 {
    order: 10;
  }
  .offset-md-10 {
    --co: 10;
  }
  .col-md-11 {
    --cs: 11;
  }
  .order-md-11 {
    order: 11;
  }
  .offset-md-11 {
    --co: 11;
  }
  .col-md-12 {
    --cs: 12;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-12 {
    --co: 12;
  }
  .col-md-13 {
    --cs: 13;
  }
  .order-md-13 {
    order: 13;
  }
  .offset-md-13 {
    --co: 13;
  }
  .col-md-14 {
    --cs: 14;
  }
  .order-md-14 {
    order: 14;
  }
  .offset-md-14 {
    --co: 14;
  }
  .col-md-15 {
    --cs: 15;
  }
  .order-md-15 {
    order: 15;
  }
  .offset-md-15 {
    --co: 15;
  }
  .col-md-16 {
    --cs: 16;
  }
  .order-md-16 {
    order: 16;
  }
  .offset-md-16 {
    --co: 16;
  }
  .col-md-17 {
    --cs: 17;
  }
  .order-md-17 {
    order: 17;
  }
  .offset-md-17 {
    --co: 17;
  }
  .col-md-18 {
    --cs: 18;
  }
  .order-md-18 {
    order: 18;
  }
  .offset-md-18 {
    --co: 18;
  }
  .col-md-19 {
    --cs: 19;
  }
  .order-md-19 {
    order: 19;
  }
  .offset-md-19 {
    --co: 19;
  }
  .col-md-20 {
    --cs: 20;
  }
  .order-md-20 {
    order: 20;
  }
  .offset-md-20 {
    --co: 20;
  }
  .col-md-21 {
    --cs: 21;
  }
  .order-md-21 {
    order: 21;
  }
  .offset-md-21 {
    --co: 21;
  }
  .col-md-22 {
    --cs: 22;
  }
  .order-md-22 {
    order: 22;
  }
  .offset-md-22 {
    --co: 22;
  }
  .col-md-23 {
    --cs: 23;
  }
  .order-md-23 {
    order: 23;
  }
  .offset-md-23 {
    --co: 23;
  }
  .col-md-24 {
    --cs: 24;
  }
  .order-md-24 {
    order: 24;
  }
}
@media (min-width: 64rem) {
  .col-lg {
    --cs: var(--cc);
  }
  .col-lg-auto {
    --cw: auto;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 999;
  }
  .order-lg-0 {
    order: 0;
  }
  .offset-lg-0 {
    --co: 0;
  }
  .col-lg-1 {
    --cs: 1;
  }
  .order-lg-1 {
    order: 1;
  }
  .offset-lg-1 {
    --co: 1;
  }
  .col-lg-2 {
    --cs: 2;
  }
  .order-lg-2 {
    order: 2;
  }
  .offset-lg-2 {
    --co: 2;
  }
  .col-lg-3 {
    --cs: 3;
  }
  .order-lg-3 {
    order: 3;
  }
  .offset-lg-3 {
    --co: 3;
  }
  .col-lg-4 {
    --cs: 4;
  }
  .order-lg-4 {
    order: 4;
  }
  .offset-lg-4 {
    --co: 4;
  }
  .col-lg-5 {
    --cs: 5;
  }
  .order-lg-5 {
    order: 5;
  }
  .offset-lg-5 {
    --co: 5;
  }
  .col-lg-6 {
    --cs: 6;
  }
  .order-lg-6 {
    order: 6;
  }
  .offset-lg-6 {
    --co: 6;
  }
  .col-lg-7 {
    --cs: 7;
  }
  .order-lg-7 {
    order: 7;
  }
  .offset-lg-7 {
    --co: 7;
  }
  .col-lg-8 {
    --cs: 8;
  }
  .order-lg-8 {
    order: 8;
  }
  .offset-lg-8 {
    --co: 8;
  }
  .col-lg-9 {
    --cs: 9;
  }
  .order-lg-9 {
    order: 9;
  }
  .offset-lg-9 {
    --co: 9;
  }
  .col-lg-10 {
    --cs: 10;
  }
  .order-lg-10 {
    order: 10;
  }
  .offset-lg-10 {
    --co: 10;
  }
  .col-lg-11 {
    --cs: 11;
  }
  .order-lg-11 {
    order: 11;
  }
  .offset-lg-11 {
    --co: 11;
  }
  .col-lg-12 {
    --cs: 12;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-12 {
    --co: 12;
  }
  .col-lg-13 {
    --cs: 13;
  }
  .order-lg-13 {
    order: 13;
  }
  .offset-lg-13 {
    --co: 13;
  }
  .col-lg-14 {
    --cs: 14;
  }
  .order-lg-14 {
    order: 14;
  }
  .offset-lg-14 {
    --co: 14;
  }
  .col-lg-15 {
    --cs: 15;
  }
  .order-lg-15 {
    order: 15;
  }
  .offset-lg-15 {
    --co: 15;
  }
  .col-lg-16 {
    --cs: 16;
  }
  .order-lg-16 {
    order: 16;
  }
  .offset-lg-16 {
    --co: 16;
  }
  .col-lg-17 {
    --cs: 17;
  }
  .order-lg-17 {
    order: 17;
  }
  .offset-lg-17 {
    --co: 17;
  }
  .col-lg-18 {
    --cs: 18;
  }
  .order-lg-18 {
    order: 18;
  }
  .offset-lg-18 {
    --co: 18;
  }
  .col-lg-19 {
    --cs: 19;
  }
  .order-lg-19 {
    order: 19;
  }
  .offset-lg-19 {
    --co: 19;
  }
  .col-lg-20 {
    --cs: 20;
  }
  .order-lg-20 {
    order: 20;
  }
  .offset-lg-20 {
    --co: 20;
  }
  .col-lg-21 {
    --cs: 21;
  }
  .order-lg-21 {
    order: 21;
  }
  .offset-lg-21 {
    --co: 21;
  }
  .col-lg-22 {
    --cs: 22;
  }
  .order-lg-22 {
    order: 22;
  }
  .offset-lg-22 {
    --co: 22;
  }
  .col-lg-23 {
    --cs: 23;
  }
  .order-lg-23 {
    order: 23;
  }
  .offset-lg-23 {
    --co: 23;
  }
  .col-lg-24 {
    --cs: 24;
  }
  .order-lg-24 {
    order: 24;
  }
}
@media (min-width: 79rem) {
  .col-xl {
    --cs: var(--cc);
  }
  .col-xl-auto {
    --cw: auto;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 999;
  }
  .order-xl-0 {
    order: 0;
  }
  .offset-xl-0 {
    --co: 0;
  }
  .col-xl-1 {
    --cs: 1;
  }
  .order-xl-1 {
    order: 1;
  }
  .offset-xl-1 {
    --co: 1;
  }
  .col-xl-2 {
    --cs: 2;
  }
  .order-xl-2 {
    order: 2;
  }
  .offset-xl-2 {
    --co: 2;
  }
  .col-xl-3 {
    --cs: 3;
  }
  .order-xl-3 {
    order: 3;
  }
  .offset-xl-3 {
    --co: 3;
  }
  .col-xl-4 {
    --cs: 4;
  }
  .order-xl-4 {
    order: 4;
  }
  .offset-xl-4 {
    --co: 4;
  }
  .col-xl-5 {
    --cs: 5;
  }
  .order-xl-5 {
    order: 5;
  }
  .offset-xl-5 {
    --co: 5;
  }
  .col-xl-6 {
    --cs: 6;
  }
  .order-xl-6 {
    order: 6;
  }
  .offset-xl-6 {
    --co: 6;
  }
  .col-xl-7 {
    --cs: 7;
  }
  .order-xl-7 {
    order: 7;
  }
  .offset-xl-7 {
    --co: 7;
  }
  .col-xl-8 {
    --cs: 8;
  }
  .order-xl-8 {
    order: 8;
  }
  .offset-xl-8 {
    --co: 8;
  }
  .col-xl-9 {
    --cs: 9;
  }
  .order-xl-9 {
    order: 9;
  }
  .offset-xl-9 {
    --co: 9;
  }
  .col-xl-10 {
    --cs: 10;
  }
  .order-xl-10 {
    order: 10;
  }
  .offset-xl-10 {
    --co: 10;
  }
  .col-xl-11 {
    --cs: 11;
  }
  .order-xl-11 {
    order: 11;
  }
  .offset-xl-11 {
    --co: 11;
  }
  .col-xl-12 {
    --cs: 12;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-12 {
    --co: 12;
  }
  .col-xl-13 {
    --cs: 13;
  }
  .order-xl-13 {
    order: 13;
  }
  .offset-xl-13 {
    --co: 13;
  }
  .col-xl-14 {
    --cs: 14;
  }
  .order-xl-14 {
    order: 14;
  }
  .offset-xl-14 {
    --co: 14;
  }
  .col-xl-15 {
    --cs: 15;
  }
  .order-xl-15 {
    order: 15;
  }
  .offset-xl-15 {
    --co: 15;
  }
  .col-xl-16 {
    --cs: 16;
  }
  .order-xl-16 {
    order: 16;
  }
  .offset-xl-16 {
    --co: 16;
  }
  .col-xl-17 {
    --cs: 17;
  }
  .order-xl-17 {
    order: 17;
  }
  .offset-xl-17 {
    --co: 17;
  }
  .col-xl-18 {
    --cs: 18;
  }
  .order-xl-18 {
    order: 18;
  }
  .offset-xl-18 {
    --co: 18;
  }
  .col-xl-19 {
    --cs: 19;
  }
  .order-xl-19 {
    order: 19;
  }
  .offset-xl-19 {
    --co: 19;
  }
  .col-xl-20 {
    --cs: 20;
  }
  .order-xl-20 {
    order: 20;
  }
  .offset-xl-20 {
    --co: 20;
  }
  .col-xl-21 {
    --cs: 21;
  }
  .order-xl-21 {
    order: 21;
  }
  .offset-xl-21 {
    --co: 21;
  }
  .col-xl-22 {
    --cs: 22;
  }
  .order-xl-22 {
    order: 22;
  }
  .offset-xl-22 {
    --co: 22;
  }
  .col-xl-23 {
    --cs: 23;
  }
  .order-xl-23 {
    order: 23;
  }
  .offset-xl-23 {
    --co: 23;
  }
  .col-xl-24 {
    --cs: 24;
  }
  .order-xl-24 {
    order: 24;
  }
}
@media (min-width: 90rem) {
  .col-xxl {
    --cs: var(--cc);
  }
  .col-xxl-auto {
    --cw: auto;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 999;
  }
  .order-xxl-0 {
    order: 0;
  }
  .offset-xxl-0 {
    --co: 0;
  }
  .col-xxl-1 {
    --cs: 1;
  }
  .order-xxl-1 {
    order: 1;
  }
  .offset-xxl-1 {
    --co: 1;
  }
  .col-xxl-2 {
    --cs: 2;
  }
  .order-xxl-2 {
    order: 2;
  }
  .offset-xxl-2 {
    --co: 2;
  }
  .col-xxl-3 {
    --cs: 3;
  }
  .order-xxl-3 {
    order: 3;
  }
  .offset-xxl-3 {
    --co: 3;
  }
  .col-xxl-4 {
    --cs: 4;
  }
  .order-xxl-4 {
    order: 4;
  }
  .offset-xxl-4 {
    --co: 4;
  }
  .col-xxl-5 {
    --cs: 5;
  }
  .order-xxl-5 {
    order: 5;
  }
  .offset-xxl-5 {
    --co: 5;
  }
  .col-xxl-6 {
    --cs: 6;
  }
  .order-xxl-6 {
    order: 6;
  }
  .offset-xxl-6 {
    --co: 6;
  }
  .col-xxl-7 {
    --cs: 7;
  }
  .order-xxl-7 {
    order: 7;
  }
  .offset-xxl-7 {
    --co: 7;
  }
  .col-xxl-8 {
    --cs: 8;
  }
  .order-xxl-8 {
    order: 8;
  }
  .offset-xxl-8 {
    --co: 8;
  }
  .col-xxl-9 {
    --cs: 9;
  }
  .order-xxl-9 {
    order: 9;
  }
  .offset-xxl-9 {
    --co: 9;
  }
  .col-xxl-10 {
    --cs: 10;
  }
  .order-xxl-10 {
    order: 10;
  }
  .offset-xxl-10 {
    --co: 10;
  }
  .col-xxl-11 {
    --cs: 11;
  }
  .order-xxl-11 {
    order: 11;
  }
  .offset-xxl-11 {
    --co: 11;
  }
  .col-xxl-12 {
    --cs: 12;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-12 {
    --co: 12;
  }
  .col-xxl-13 {
    --cs: 13;
  }
  .order-xxl-13 {
    order: 13;
  }
  .offset-xxl-13 {
    --co: 13;
  }
  .col-xxl-14 {
    --cs: 14;
  }
  .order-xxl-14 {
    order: 14;
  }
  .offset-xxl-14 {
    --co: 14;
  }
  .col-xxl-15 {
    --cs: 15;
  }
  .order-xxl-15 {
    order: 15;
  }
  .offset-xxl-15 {
    --co: 15;
  }
  .col-xxl-16 {
    --cs: 16;
  }
  .order-xxl-16 {
    order: 16;
  }
  .offset-xxl-16 {
    --co: 16;
  }
  .col-xxl-17 {
    --cs: 17;
  }
  .order-xxl-17 {
    order: 17;
  }
  .offset-xxl-17 {
    --co: 17;
  }
  .col-xxl-18 {
    --cs: 18;
  }
  .order-xxl-18 {
    order: 18;
  }
  .offset-xxl-18 {
    --co: 18;
  }
  .col-xxl-19 {
    --cs: 19;
  }
  .order-xxl-19 {
    order: 19;
  }
  .offset-xxl-19 {
    --co: 19;
  }
  .col-xxl-20 {
    --cs: 20;
  }
  .order-xxl-20 {
    order: 20;
  }
  .offset-xxl-20 {
    --co: 20;
  }
  .col-xxl-21 {
    --cs: 21;
  }
  .order-xxl-21 {
    order: 21;
  }
  .offset-xxl-21 {
    --co: 21;
  }
  .col-xxl-22 {
    --cs: 22;
  }
  .order-xxl-22 {
    order: 22;
  }
  .offset-xxl-22 {
    --co: 22;
  }
  .col-xxl-23 {
    --cs: 23;
  }
  .order-xxl-23 {
    order: 23;
  }
  .offset-xxl-23 {
    --co: 23;
  }
  .col-xxl-24 {
    --cs: 24;
  }
  .order-xxl-24 {
    order: 24;
  }
}
.g-0 {
  --gx: 0px;
  --gy: 0px;
}

.gy-0 {
  --gy: 0px;
}

.gx-0 {
  --gx: 0px;
}

.g-xs {
  --gx: 0.5rem;
  --gy: 0.5rem;
}

.gy-xs {
  --gy: 0.5rem;
}

.gx-xs {
  --gx: 0.5rem;
}

.g-sm {
  --gx: 1rem;
  --gy: 1rem;
}

.gy-sm {
  --gy: 1rem;
}

.gx-sm {
  --gx: 1rem;
}

.g-md {
  --gx: 2rem;
  --gy: 2rem;
}

.gy-md {
  --gy: 2rem;
}

.gx-md {
  --gx: 2rem;
}

.g-lg {
  --gx: 4rem;
  --gy: 4rem;
}

.gy-lg {
  --gy: 4rem;
}

.gx-lg {
  --gx: 4rem;
}

.g-xl {
  --gx: 5rem;
  --gy: 5rem;
}

.gy-xl {
  --gy: 5rem;
}

.gx-xl {
  --gx: 5rem;
}

.g-xxl {
  --gx: 7.5rem;
  --gy: 7.5rem;
}

.gy-xxl {
  --gy: 7.5rem;
}

.gx-xxl {
  --gx: 7.5rem;
}

@media (max-width: 89.98rem) {
  .xxl-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xxl-down-gy-0 {
    --gy: 0px;
  }
  .xxl-down-gx-0 {
    --gx: 0px;
  }
  .xxl-down-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .xxl-down-gy-xs {
    --gy: 0.5rem;
  }
  .xxl-down-gx-xs {
    --gx: 0.5rem;
  }
  .xxl-down-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .xxl-down-gy-sm {
    --gy: 1rem;
  }
  .xxl-down-gx-sm {
    --gx: 1rem;
  }
  .xxl-down-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .xxl-down-gy-md {
    --gy: 2rem;
  }
  .xxl-down-gx-md {
    --gx: 2rem;
  }
  .xxl-down-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .xxl-down-gy-lg {
    --gy: 4rem;
  }
  .xxl-down-gx-lg {
    --gx: 4rem;
  }
  .xxl-down-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .xxl-down-gy-xl {
    --gy: 5rem;
  }
  .xxl-down-gx-xl {
    --gx: 5rem;
  }
  .xxl-down-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .xxl-down-gy-xxl {
    --gy: 7.5rem;
  }
  .xxl-down-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (max-width: 78.98rem) {
  .xl-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xl-down-gy-0 {
    --gy: 0px;
  }
  .xl-down-gx-0 {
    --gx: 0px;
  }
  .xl-down-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .xl-down-gy-xs {
    --gy: 0.5rem;
  }
  .xl-down-gx-xs {
    --gx: 0.5rem;
  }
  .xl-down-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .xl-down-gy-sm {
    --gy: 1rem;
  }
  .xl-down-gx-sm {
    --gx: 1rem;
  }
  .xl-down-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .xl-down-gy-md {
    --gy: 2rem;
  }
  .xl-down-gx-md {
    --gx: 2rem;
  }
  .xl-down-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .xl-down-gy-lg {
    --gy: 4rem;
  }
  .xl-down-gx-lg {
    --gx: 4rem;
  }
  .xl-down-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .xl-down-gy-xl {
    --gy: 5rem;
  }
  .xl-down-gx-xl {
    --gx: 5rem;
  }
  .xl-down-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .xl-down-gy-xxl {
    --gy: 7.5rem;
  }
  .xl-down-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (max-width: 63.98rem) {
  .lg-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .lg-down-gy-0 {
    --gy: 0px;
  }
  .lg-down-gx-0 {
    --gx: 0px;
  }
  .lg-down-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .lg-down-gy-xs {
    --gy: 0.5rem;
  }
  .lg-down-gx-xs {
    --gx: 0.5rem;
  }
  .lg-down-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .lg-down-gy-sm {
    --gy: 1rem;
  }
  .lg-down-gx-sm {
    --gx: 1rem;
  }
  .lg-down-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .lg-down-gy-md {
    --gy: 2rem;
  }
  .lg-down-gx-md {
    --gx: 2rem;
  }
  .lg-down-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .lg-down-gy-lg {
    --gy: 4rem;
  }
  .lg-down-gx-lg {
    --gx: 4rem;
  }
  .lg-down-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .lg-down-gy-xl {
    --gy: 5rem;
  }
  .lg-down-gx-xl {
    --gx: 5rem;
  }
  .lg-down-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .lg-down-gy-xxl {
    --gy: 7.5rem;
  }
  .lg-down-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (max-width: 47.98rem) {
  .md-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .md-down-gy-0 {
    --gy: 0px;
  }
  .md-down-gx-0 {
    --gx: 0px;
  }
  .md-down-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .md-down-gy-xs {
    --gy: 0.5rem;
  }
  .md-down-gx-xs {
    --gx: 0.5rem;
  }
  .md-down-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .md-down-gy-sm {
    --gy: 1rem;
  }
  .md-down-gx-sm {
    --gx: 1rem;
  }
  .md-down-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .md-down-gy-md {
    --gy: 2rem;
  }
  .md-down-gx-md {
    --gx: 2rem;
  }
  .md-down-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .md-down-gy-lg {
    --gy: 4rem;
  }
  .md-down-gx-lg {
    --gx: 4rem;
  }
  .md-down-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .md-down-gy-xl {
    --gy: 5rem;
  }
  .md-down-gx-xl {
    --gx: 5rem;
  }
  .md-down-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .md-down-gy-xxl {
    --gy: 7.5rem;
  }
  .md-down-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (max-width: 35.98rem) {
  .sm-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .sm-down-gy-0 {
    --gy: 0px;
  }
  .sm-down-gx-0 {
    --gx: 0px;
  }
  .sm-down-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .sm-down-gy-xs {
    --gy: 0.5rem;
  }
  .sm-down-gx-xs {
    --gx: 0.5rem;
  }
  .sm-down-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .sm-down-gy-sm {
    --gy: 1rem;
  }
  .sm-down-gx-sm {
    --gx: 1rem;
  }
  .sm-down-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .sm-down-gy-md {
    --gy: 2rem;
  }
  .sm-down-gx-md {
    --gx: 2rem;
  }
  .sm-down-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .sm-down-gy-lg {
    --gy: 4rem;
  }
  .sm-down-gx-lg {
    --gx: 4rem;
  }
  .sm-down-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .sm-down-gy-xl {
    --gy: 5rem;
  }
  .sm-down-gx-xl {
    --gx: 5rem;
  }
  .sm-down-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .sm-down-gy-xxl {
    --gy: 7.5rem;
  }
  .sm-down-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (min-width: 36rem) {
  .sm-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .sm-up-gy-0 {
    --gy: 0px;
  }
  .sm-up-gx-0 {
    --gx: 0px;
  }
  .sm-up-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .sm-up-gy-xs {
    --gy: 0.5rem;
  }
  .sm-up-gx-xs {
    --gx: 0.5rem;
  }
  .sm-up-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .sm-up-gy-sm {
    --gy: 1rem;
  }
  .sm-up-gx-sm {
    --gx: 1rem;
  }
  .sm-up-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .sm-up-gy-md {
    --gy: 2rem;
  }
  .sm-up-gx-md {
    --gx: 2rem;
  }
  .sm-up-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .sm-up-gy-lg {
    --gy: 4rem;
  }
  .sm-up-gx-lg {
    --gx: 4rem;
  }
  .sm-up-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .sm-up-gy-xl {
    --gy: 5rem;
  }
  .sm-up-gx-xl {
    --gx: 5rem;
  }
  .sm-up-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .sm-up-gy-xxl {
    --gy: 7.5rem;
  }
  .sm-up-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (min-width: 48rem) {
  .md-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .md-up-gy-0 {
    --gy: 0px;
  }
  .md-up-gx-0 {
    --gx: 0px;
  }
  .md-up-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .md-up-gy-xs {
    --gy: 0.5rem;
  }
  .md-up-gx-xs {
    --gx: 0.5rem;
  }
  .md-up-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .md-up-gy-sm {
    --gy: 1rem;
  }
  .md-up-gx-sm {
    --gx: 1rem;
  }
  .md-up-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .md-up-gy-md {
    --gy: 2rem;
  }
  .md-up-gx-md {
    --gx: 2rem;
  }
  .md-up-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .md-up-gy-lg {
    --gy: 4rem;
  }
  .md-up-gx-lg {
    --gx: 4rem;
  }
  .md-up-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .md-up-gy-xl {
    --gy: 5rem;
  }
  .md-up-gx-xl {
    --gx: 5rem;
  }
  .md-up-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .md-up-gy-xxl {
    --gy: 7.5rem;
  }
  .md-up-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (min-width: 64rem) {
  .lg-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .lg-up-gy-0 {
    --gy: 0px;
  }
  .lg-up-gx-0 {
    --gx: 0px;
  }
  .lg-up-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .lg-up-gy-xs {
    --gy: 0.5rem;
  }
  .lg-up-gx-xs {
    --gx: 0.5rem;
  }
  .lg-up-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .lg-up-gy-sm {
    --gy: 1rem;
  }
  .lg-up-gx-sm {
    --gx: 1rem;
  }
  .lg-up-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .lg-up-gy-md {
    --gy: 2rem;
  }
  .lg-up-gx-md {
    --gx: 2rem;
  }
  .lg-up-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .lg-up-gy-lg {
    --gy: 4rem;
  }
  .lg-up-gx-lg {
    --gx: 4rem;
  }
  .lg-up-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .lg-up-gy-xl {
    --gy: 5rem;
  }
  .lg-up-gx-xl {
    --gx: 5rem;
  }
  .lg-up-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .lg-up-gy-xxl {
    --gy: 7.5rem;
  }
  .lg-up-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (min-width: 79rem) {
  .xl-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xl-up-gy-0 {
    --gy: 0px;
  }
  .xl-up-gx-0 {
    --gx: 0px;
  }
  .xl-up-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .xl-up-gy-xs {
    --gy: 0.5rem;
  }
  .xl-up-gx-xs {
    --gx: 0.5rem;
  }
  .xl-up-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .xl-up-gy-sm {
    --gy: 1rem;
  }
  .xl-up-gx-sm {
    --gx: 1rem;
  }
  .xl-up-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .xl-up-gy-md {
    --gy: 2rem;
  }
  .xl-up-gx-md {
    --gx: 2rem;
  }
  .xl-up-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .xl-up-gy-lg {
    --gy: 4rem;
  }
  .xl-up-gx-lg {
    --gx: 4rem;
  }
  .xl-up-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .xl-up-gy-xl {
    --gy: 5rem;
  }
  .xl-up-gx-xl {
    --gx: 5rem;
  }
  .xl-up-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .xl-up-gy-xxl {
    --gy: 7.5rem;
  }
  .xl-up-gx-xxl {
    --gx: 7.5rem;
  }
}
@media (min-width: 90rem) {
  .xxl-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xxl-up-gy-0 {
    --gy: 0px;
  }
  .xxl-up-gx-0 {
    --gx: 0px;
  }
  .xxl-up-g-xs {
    --gx: 0.5rem;
    --gy: 0.5rem;
  }
  .xxl-up-gy-xs {
    --gy: 0.5rem;
  }
  .xxl-up-gx-xs {
    --gx: 0.5rem;
  }
  .xxl-up-g-sm {
    --gx: 1rem;
    --gy: 1rem;
  }
  .xxl-up-gy-sm {
    --gy: 1rem;
  }
  .xxl-up-gx-sm {
    --gx: 1rem;
  }
  .xxl-up-g-md {
    --gx: 2rem;
    --gy: 2rem;
  }
  .xxl-up-gy-md {
    --gy: 2rem;
  }
  .xxl-up-gx-md {
    --gx: 2rem;
  }
  .xxl-up-g-lg {
    --gx: 4rem;
    --gy: 4rem;
  }
  .xxl-up-gy-lg {
    --gy: 4rem;
  }
  .xxl-up-gx-lg {
    --gx: 4rem;
  }
  .xxl-up-g-xl {
    --gx: 5rem;
    --gy: 5rem;
  }
  .xxl-up-gy-xl {
    --gy: 5rem;
  }
  .xxl-up-gx-xl {
    --gx: 5rem;
  }
  .xxl-up-g-xxl {
    --gx: 7.5rem;
    --gy: 7.5rem;
  }
  .xxl-up-gy-xxl {
    --gy: 7.5rem;
  }
  .xxl-up-gx-xxl {
    --gx: 7.5rem;
  }
}
/*
|
| MARGINS & PADDINGS
|----------------
|
*/
.m-0 {
  margin: 0;
}

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

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

.my-0 {
  margin-block: 0;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.mx-0 {
  margin-inline: 0;
}

.p-0 {
  padding: 0;
}

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

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

.py-0 {
  padding-block: 0;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.px-0 {
  padding-inline: 0;
}

.m-xs {
  margin: 0.5rem;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.my-xs {
  margin-block: 0.5rem;
}

.ml-xs {
  margin-left: 0.5rem;
}

.mr-xs {
  margin-right: 0.5rem;
}

.mx-xs {
  margin-inline: 0.5rem;
}

.p-xs {
  padding: 0.5rem;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.py-xs {
  padding-block: 0.5rem;
}

.pl-xs {
  padding-left: 0.5rem;
}

.pr-xs {
  padding-right: 0.5rem;
}

.px-xs {
  padding-inline: 0.5rem;
}

.m-sm {
  margin: 1rem;
}

.mt-sm {
  margin-top: 1rem;
}

.mb-sm {
  margin-bottom: 1rem;
}

.my-sm {
  margin-block: 1rem;
}

.ml-sm {
  margin-left: 1rem;
}

.mr-sm {
  margin-right: 1rem;
}

.mx-sm {
  margin-inline: 1rem;
}

.p-sm {
  padding: 1rem;
}

.pt-sm {
  padding-top: 1rem;
}

.pb-sm {
  padding-bottom: 1rem;
}

.py-sm {
  padding-block: 1rem;
}

.pl-sm {
  padding-left: 1rem;
}

.pr-sm {
  padding-right: 1rem;
}

.px-sm {
  padding-inline: 1rem;
}

.m-md {
  margin: 2rem;
}

.mt-md {
  margin-top: 2rem;
}

.mb-md {
  margin-bottom: 2rem;
}

.my-md {
  margin-block: 2rem;
}

.ml-md {
  margin-left: 2rem;
}

.mr-md {
  margin-right: 2rem;
}

.mx-md {
  margin-inline: 2rem;
}

.p-md {
  padding: 2rem;
}

.pt-md {
  padding-top: 2rem;
}

.pb-md {
  padding-bottom: 2rem;
}

.py-md {
  padding-block: 2rem;
}

.pl-md {
  padding-left: 2rem;
}

.pr-md {
  padding-right: 2rem;
}

.px-md {
  padding-inline: 2rem;
}

.m-lg {
  margin: 4rem;
}

.mt-lg {
  margin-top: 4rem;
}

.mb-lg {
  margin-bottom: 4rem;
}

.my-lg {
  margin-block: 4rem;
}

.ml-lg {
  margin-left: 4rem;
}

.mr-lg {
  margin-right: 4rem;
}

.mx-lg {
  margin-inline: 4rem;
}

.p-lg {
  padding: 4rem;
}

.pt-lg {
  padding-top: 4rem;
}

.pb-lg {
  padding-bottom: 4rem;
}

.py-lg {
  padding-block: 4rem;
}

.pl-lg {
  padding-left: 4rem;
}

.pr-lg {
  padding-right: 4rem;
}

.px-lg {
  padding-inline: 4rem;
}

.m-xl {
  margin: 5rem;
}

.mt-xl {
  margin-top: 5rem;
}

.mb-xl {
  margin-bottom: 5rem;
}

.my-xl {
  margin-block: 5rem;
}

.ml-xl {
  margin-left: 5rem;
}

.mr-xl {
  margin-right: 5rem;
}

.mx-xl {
  margin-inline: 5rem;
}

.p-xl {
  padding: 5rem;
}

.pt-xl {
  padding-top: 5rem;
}

.pb-xl {
  padding-bottom: 5rem;
}

.py-xl {
  padding-block: 5rem;
}

.pl-xl {
  padding-left: 5rem;
}

.pr-xl {
  padding-right: 5rem;
}

.px-xl {
  padding-inline: 5rem;
}

.m-xxl {
  margin: 7.5rem;
}

.mt-xxl {
  margin-top: 7.5rem;
}

.mb-xxl {
  margin-bottom: 7.5rem;
}

.my-xxl {
  margin-block: 7.5rem;
}

.ml-xxl {
  margin-left: 7.5rem;
}

.mr-xxl {
  margin-right: 7.5rem;
}

.mx-xxl {
  margin-inline: 7.5rem;
}

.p-xxl {
  padding: 7.5rem;
}

.pt-xxl {
  padding-top: 7.5rem;
}

.pb-xxl {
  padding-bottom: 7.5rem;
}

.py-xxl {
  padding-block: 7.5rem;
}

.pl-xxl {
  padding-left: 7.5rem;
}

.pr-xxl {
  padding-right: 7.5rem;
}

.px-xxl {
  padding-inline: 7.5rem;
}

.m-fluid {
  margin: var(--side-margin);
}

.mt-fluid {
  margin-top: var(--side-margin);
}

.mb-fluid {
  margin-bottom: var(--side-margin);
}

.my-fluid {
  margin-block: var(--side-margin);
}

.ml-fluid {
  margin-left: var(--side-margin);
}

.mr-fluid {
  margin-right: var(--side-margin);
}

.mx-fluid {
  margin-inline: var(--side-margin);
}

.p-fluid {
  padding: var(--side-margin);
}

.pt-fluid {
  padding-top: var(--side-margin);
}

.pb-fluid {
  padding-bottom: var(--side-margin);
}

.py-fluid {
  padding-block: var(--side-margin);
}

.pl-fluid {
  padding-left: var(--side-margin);
}

.pr-fluid {
  padding-right: var(--side-margin);
}

.px-fluid {
  padding-inline: var(--side-margin);
}

@media (max-width: 89.98rem) {
  .xxl-down-m-0 {
    margin: 0;
  }
  .xxl-down-mt-0 {
    margin-top: 0;
  }
  .xxl-down-mb-0 {
    margin-bottom: 0;
  }
  .xxl-down-my-0 {
    margin-block: 0;
  }
  .xxl-down-ml-0 {
    margin-left: 0;
  }
  .xxl-down-mr-0 {
    margin-right: 0;
  }
  .xxl-down-mx-0 {
    margin-inline: 0;
  }
  .xxl-down-p-0 {
    padding: 0;
  }
  .xxl-down-pt-0 {
    padding-top: 0;
  }
  .xxl-down-pb-0 {
    padding-bottom: 0;
  }
  .xxl-down-py-0 {
    padding-block: 0;
  }
  .xxl-down-pl-0 {
    padding-left: 0;
  }
  .xxl-down-pr-0 {
    padding-right: 0;
  }
  .xxl-down-px-0 {
    padding-inline: 0;
  }
  .xxl-down-m-xs {
    margin: 0.5rem;
  }
  .xxl-down-mt-xs {
    margin-top: 0.5rem;
  }
  .xxl-down-mb-xs {
    margin-bottom: 0.5rem;
  }
  .xxl-down-my-xs {
    margin-block: 0.5rem;
  }
  .xxl-down-ml-xs {
    margin-left: 0.5rem;
  }
  .xxl-down-mr-xs {
    margin-right: 0.5rem;
  }
  .xxl-down-mx-xs {
    margin-inline: 0.5rem;
  }
  .xxl-down-p-xs {
    padding: 0.5rem;
  }
  .xxl-down-pt-xs {
    padding-top: 0.5rem;
  }
  .xxl-down-pb-xs {
    padding-bottom: 0.5rem;
  }
  .xxl-down-py-xs {
    padding-block: 0.5rem;
  }
  .xxl-down-pl-xs {
    padding-left: 0.5rem;
  }
  .xxl-down-pr-xs {
    padding-right: 0.5rem;
  }
  .xxl-down-px-xs {
    padding-inline: 0.5rem;
  }
  .xxl-down-m-sm {
    margin: 1rem;
  }
  .xxl-down-mt-sm {
    margin-top: 1rem;
  }
  .xxl-down-mb-sm {
    margin-bottom: 1rem;
  }
  .xxl-down-my-sm {
    margin-block: 1rem;
  }
  .xxl-down-ml-sm {
    margin-left: 1rem;
  }
  .xxl-down-mr-sm {
    margin-right: 1rem;
  }
  .xxl-down-mx-sm {
    margin-inline: 1rem;
  }
  .xxl-down-p-sm {
    padding: 1rem;
  }
  .xxl-down-pt-sm {
    padding-top: 1rem;
  }
  .xxl-down-pb-sm {
    padding-bottom: 1rem;
  }
  .xxl-down-py-sm {
    padding-block: 1rem;
  }
  .xxl-down-pl-sm {
    padding-left: 1rem;
  }
  .xxl-down-pr-sm {
    padding-right: 1rem;
  }
  .xxl-down-px-sm {
    padding-inline: 1rem;
  }
  .xxl-down-m-md {
    margin: 2rem;
  }
  .xxl-down-mt-md {
    margin-top: 2rem;
  }
  .xxl-down-mb-md {
    margin-bottom: 2rem;
  }
  .xxl-down-my-md {
    margin-block: 2rem;
  }
  .xxl-down-ml-md {
    margin-left: 2rem;
  }
  .xxl-down-mr-md {
    margin-right: 2rem;
  }
  .xxl-down-mx-md {
    margin-inline: 2rem;
  }
  .xxl-down-p-md {
    padding: 2rem;
  }
  .xxl-down-pt-md {
    padding-top: 2rem;
  }
  .xxl-down-pb-md {
    padding-bottom: 2rem;
  }
  .xxl-down-py-md {
    padding-block: 2rem;
  }
  .xxl-down-pl-md {
    padding-left: 2rem;
  }
  .xxl-down-pr-md {
    padding-right: 2rem;
  }
  .xxl-down-px-md {
    padding-inline: 2rem;
  }
  .xxl-down-m-lg {
    margin: 4rem;
  }
  .xxl-down-mt-lg {
    margin-top: 4rem;
  }
  .xxl-down-mb-lg {
    margin-bottom: 4rem;
  }
  .xxl-down-my-lg {
    margin-block: 4rem;
  }
  .xxl-down-ml-lg {
    margin-left: 4rem;
  }
  .xxl-down-mr-lg {
    margin-right: 4rem;
  }
  .xxl-down-mx-lg {
    margin-inline: 4rem;
  }
  .xxl-down-p-lg {
    padding: 4rem;
  }
  .xxl-down-pt-lg {
    padding-top: 4rem;
  }
  .xxl-down-pb-lg {
    padding-bottom: 4rem;
  }
  .xxl-down-py-lg {
    padding-block: 4rem;
  }
  .xxl-down-pl-lg {
    padding-left: 4rem;
  }
  .xxl-down-pr-lg {
    padding-right: 4rem;
  }
  .xxl-down-px-lg {
    padding-inline: 4rem;
  }
  .xxl-down-m-xl {
    margin: 5rem;
  }
  .xxl-down-mt-xl {
    margin-top: 5rem;
  }
  .xxl-down-mb-xl {
    margin-bottom: 5rem;
  }
  .xxl-down-my-xl {
    margin-block: 5rem;
  }
  .xxl-down-ml-xl {
    margin-left: 5rem;
  }
  .xxl-down-mr-xl {
    margin-right: 5rem;
  }
  .xxl-down-mx-xl {
    margin-inline: 5rem;
  }
  .xxl-down-p-xl {
    padding: 5rem;
  }
  .xxl-down-pt-xl {
    padding-top: 5rem;
  }
  .xxl-down-pb-xl {
    padding-bottom: 5rem;
  }
  .xxl-down-py-xl {
    padding-block: 5rem;
  }
  .xxl-down-pl-xl {
    padding-left: 5rem;
  }
  .xxl-down-pr-xl {
    padding-right: 5rem;
  }
  .xxl-down-px-xl {
    padding-inline: 5rem;
  }
  .xxl-down-m-xxl {
    margin: 7.5rem;
  }
  .xxl-down-mt-xxl {
    margin-top: 7.5rem;
  }
  .xxl-down-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .xxl-down-my-xxl {
    margin-block: 7.5rem;
  }
  .xxl-down-ml-xxl {
    margin-left: 7.5rem;
  }
  .xxl-down-mr-xxl {
    margin-right: 7.5rem;
  }
  .xxl-down-mx-xxl {
    margin-inline: 7.5rem;
  }
  .xxl-down-p-xxl {
    padding: 7.5rem;
  }
  .xxl-down-pt-xxl {
    padding-top: 7.5rem;
  }
  .xxl-down-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .xxl-down-py-xxl {
    padding-block: 7.5rem;
  }
  .xxl-down-pl-xxl {
    padding-left: 7.5rem;
  }
  .xxl-down-pr-xxl {
    padding-right: 7.5rem;
  }
  .xxl-down-px-xxl {
    padding-inline: 7.5rem;
  }
  .xxl-down-m-fluid {
    margin: var(--side-margin);
  }
  .xxl-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xxl-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xxl-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .xxl-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xxl-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xxl-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xxl-down-p-fluid {
    padding: var(--side-margin);
  }
  .xxl-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xxl-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xxl-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .xxl-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xxl-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xxl-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 78.98rem) {
  .xl-down-m-0 {
    margin: 0;
  }
  .xl-down-mt-0 {
    margin-top: 0;
  }
  .xl-down-mb-0 {
    margin-bottom: 0;
  }
  .xl-down-my-0 {
    margin-block: 0;
  }
  .xl-down-ml-0 {
    margin-left: 0;
  }
  .xl-down-mr-0 {
    margin-right: 0;
  }
  .xl-down-mx-0 {
    margin-inline: 0;
  }
  .xl-down-p-0 {
    padding: 0;
  }
  .xl-down-pt-0 {
    padding-top: 0;
  }
  .xl-down-pb-0 {
    padding-bottom: 0;
  }
  .xl-down-py-0 {
    padding-block: 0;
  }
  .xl-down-pl-0 {
    padding-left: 0;
  }
  .xl-down-pr-0 {
    padding-right: 0;
  }
  .xl-down-px-0 {
    padding-inline: 0;
  }
  .xl-down-m-xs {
    margin: 0.5rem;
  }
  .xl-down-mt-xs {
    margin-top: 0.5rem;
  }
  .xl-down-mb-xs {
    margin-bottom: 0.5rem;
  }
  .xl-down-my-xs {
    margin-block: 0.5rem;
  }
  .xl-down-ml-xs {
    margin-left: 0.5rem;
  }
  .xl-down-mr-xs {
    margin-right: 0.5rem;
  }
  .xl-down-mx-xs {
    margin-inline: 0.5rem;
  }
  .xl-down-p-xs {
    padding: 0.5rem;
  }
  .xl-down-pt-xs {
    padding-top: 0.5rem;
  }
  .xl-down-pb-xs {
    padding-bottom: 0.5rem;
  }
  .xl-down-py-xs {
    padding-block: 0.5rem;
  }
  .xl-down-pl-xs {
    padding-left: 0.5rem;
  }
  .xl-down-pr-xs {
    padding-right: 0.5rem;
  }
  .xl-down-px-xs {
    padding-inline: 0.5rem;
  }
  .xl-down-m-sm {
    margin: 1rem;
  }
  .xl-down-mt-sm {
    margin-top: 1rem;
  }
  .xl-down-mb-sm {
    margin-bottom: 1rem;
  }
  .xl-down-my-sm {
    margin-block: 1rem;
  }
  .xl-down-ml-sm {
    margin-left: 1rem;
  }
  .xl-down-mr-sm {
    margin-right: 1rem;
  }
  .xl-down-mx-sm {
    margin-inline: 1rem;
  }
  .xl-down-p-sm {
    padding: 1rem;
  }
  .xl-down-pt-sm {
    padding-top: 1rem;
  }
  .xl-down-pb-sm {
    padding-bottom: 1rem;
  }
  .xl-down-py-sm {
    padding-block: 1rem;
  }
  .xl-down-pl-sm {
    padding-left: 1rem;
  }
  .xl-down-pr-sm {
    padding-right: 1rem;
  }
  .xl-down-px-sm {
    padding-inline: 1rem;
  }
  .xl-down-m-md {
    margin: 2rem;
  }
  .xl-down-mt-md {
    margin-top: 2rem;
  }
  .xl-down-mb-md {
    margin-bottom: 2rem;
  }
  .xl-down-my-md {
    margin-block: 2rem;
  }
  .xl-down-ml-md {
    margin-left: 2rem;
  }
  .xl-down-mr-md {
    margin-right: 2rem;
  }
  .xl-down-mx-md {
    margin-inline: 2rem;
  }
  .xl-down-p-md {
    padding: 2rem;
  }
  .xl-down-pt-md {
    padding-top: 2rem;
  }
  .xl-down-pb-md {
    padding-bottom: 2rem;
  }
  .xl-down-py-md {
    padding-block: 2rem;
  }
  .xl-down-pl-md {
    padding-left: 2rem;
  }
  .xl-down-pr-md {
    padding-right: 2rem;
  }
  .xl-down-px-md {
    padding-inline: 2rem;
  }
  .xl-down-m-lg {
    margin: 4rem;
  }
  .xl-down-mt-lg {
    margin-top: 4rem;
  }
  .xl-down-mb-lg {
    margin-bottom: 4rem;
  }
  .xl-down-my-lg {
    margin-block: 4rem;
  }
  .xl-down-ml-lg {
    margin-left: 4rem;
  }
  .xl-down-mr-lg {
    margin-right: 4rem;
  }
  .xl-down-mx-lg {
    margin-inline: 4rem;
  }
  .xl-down-p-lg {
    padding: 4rem;
  }
  .xl-down-pt-lg {
    padding-top: 4rem;
  }
  .xl-down-pb-lg {
    padding-bottom: 4rem;
  }
  .xl-down-py-lg {
    padding-block: 4rem;
  }
  .xl-down-pl-lg {
    padding-left: 4rem;
  }
  .xl-down-pr-lg {
    padding-right: 4rem;
  }
  .xl-down-px-lg {
    padding-inline: 4rem;
  }
  .xl-down-m-xl {
    margin: 5rem;
  }
  .xl-down-mt-xl {
    margin-top: 5rem;
  }
  .xl-down-mb-xl {
    margin-bottom: 5rem;
  }
  .xl-down-my-xl {
    margin-block: 5rem;
  }
  .xl-down-ml-xl {
    margin-left: 5rem;
  }
  .xl-down-mr-xl {
    margin-right: 5rem;
  }
  .xl-down-mx-xl {
    margin-inline: 5rem;
  }
  .xl-down-p-xl {
    padding: 5rem;
  }
  .xl-down-pt-xl {
    padding-top: 5rem;
  }
  .xl-down-pb-xl {
    padding-bottom: 5rem;
  }
  .xl-down-py-xl {
    padding-block: 5rem;
  }
  .xl-down-pl-xl {
    padding-left: 5rem;
  }
  .xl-down-pr-xl {
    padding-right: 5rem;
  }
  .xl-down-px-xl {
    padding-inline: 5rem;
  }
  .xl-down-m-xxl {
    margin: 7.5rem;
  }
  .xl-down-mt-xxl {
    margin-top: 7.5rem;
  }
  .xl-down-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .xl-down-my-xxl {
    margin-block: 7.5rem;
  }
  .xl-down-ml-xxl {
    margin-left: 7.5rem;
  }
  .xl-down-mr-xxl {
    margin-right: 7.5rem;
  }
  .xl-down-mx-xxl {
    margin-inline: 7.5rem;
  }
  .xl-down-p-xxl {
    padding: 7.5rem;
  }
  .xl-down-pt-xxl {
    padding-top: 7.5rem;
  }
  .xl-down-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .xl-down-py-xxl {
    padding-block: 7.5rem;
  }
  .xl-down-pl-xxl {
    padding-left: 7.5rem;
  }
  .xl-down-pr-xxl {
    padding-right: 7.5rem;
  }
  .xl-down-px-xxl {
    padding-inline: 7.5rem;
  }
  .xl-down-m-fluid {
    margin: var(--side-margin);
  }
  .xl-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xl-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xl-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .xl-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xl-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xl-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xl-down-p-fluid {
    padding: var(--side-margin);
  }
  .xl-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xl-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xl-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .xl-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xl-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xl-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 63.98rem) {
  .lg-down-m-0 {
    margin: 0;
  }
  .lg-down-mt-0 {
    margin-top: 0;
  }
  .lg-down-mb-0 {
    margin-bottom: 0;
  }
  .lg-down-my-0 {
    margin-block: 0;
  }
  .lg-down-ml-0 {
    margin-left: 0;
  }
  .lg-down-mr-0 {
    margin-right: 0;
  }
  .lg-down-mx-0 {
    margin-inline: 0;
  }
  .lg-down-p-0 {
    padding: 0;
  }
  .lg-down-pt-0 {
    padding-top: 0;
  }
  .lg-down-pb-0 {
    padding-bottom: 0;
  }
  .lg-down-py-0 {
    padding-block: 0;
  }
  .lg-down-pl-0 {
    padding-left: 0;
  }
  .lg-down-pr-0 {
    padding-right: 0;
  }
  .lg-down-px-0 {
    padding-inline: 0;
  }
  .lg-down-m-xs {
    margin: 0.5rem;
  }
  .lg-down-mt-xs {
    margin-top: 0.5rem;
  }
  .lg-down-mb-xs {
    margin-bottom: 0.5rem;
  }
  .lg-down-my-xs {
    margin-block: 0.5rem;
  }
  .lg-down-ml-xs {
    margin-left: 0.5rem;
  }
  .lg-down-mr-xs {
    margin-right: 0.5rem;
  }
  .lg-down-mx-xs {
    margin-inline: 0.5rem;
  }
  .lg-down-p-xs {
    padding: 0.5rem;
  }
  .lg-down-pt-xs {
    padding-top: 0.5rem;
  }
  .lg-down-pb-xs {
    padding-bottom: 0.5rem;
  }
  .lg-down-py-xs {
    padding-block: 0.5rem;
  }
  .lg-down-pl-xs {
    padding-left: 0.5rem;
  }
  .lg-down-pr-xs {
    padding-right: 0.5rem;
  }
  .lg-down-px-xs {
    padding-inline: 0.5rem;
  }
  .lg-down-m-sm {
    margin: 1rem;
  }
  .lg-down-mt-sm {
    margin-top: 1rem;
  }
  .lg-down-mb-sm {
    margin-bottom: 1rem;
  }
  .lg-down-my-sm {
    margin-block: 1rem;
  }
  .lg-down-ml-sm {
    margin-left: 1rem;
  }
  .lg-down-mr-sm {
    margin-right: 1rem;
  }
  .lg-down-mx-sm {
    margin-inline: 1rem;
  }
  .lg-down-p-sm {
    padding: 1rem;
  }
  .lg-down-pt-sm {
    padding-top: 1rem;
  }
  .lg-down-pb-sm {
    padding-bottom: 1rem;
  }
  .lg-down-py-sm {
    padding-block: 1rem;
  }
  .lg-down-pl-sm {
    padding-left: 1rem;
  }
  .lg-down-pr-sm {
    padding-right: 1rem;
  }
  .lg-down-px-sm {
    padding-inline: 1rem;
  }
  .lg-down-m-md {
    margin: 2rem;
  }
  .lg-down-mt-md {
    margin-top: 2rem;
  }
  .lg-down-mb-md {
    margin-bottom: 2rem;
  }
  .lg-down-my-md {
    margin-block: 2rem;
  }
  .lg-down-ml-md {
    margin-left: 2rem;
  }
  .lg-down-mr-md {
    margin-right: 2rem;
  }
  .lg-down-mx-md {
    margin-inline: 2rem;
  }
  .lg-down-p-md {
    padding: 2rem;
  }
  .lg-down-pt-md {
    padding-top: 2rem;
  }
  .lg-down-pb-md {
    padding-bottom: 2rem;
  }
  .lg-down-py-md {
    padding-block: 2rem;
  }
  .lg-down-pl-md {
    padding-left: 2rem;
  }
  .lg-down-pr-md {
    padding-right: 2rem;
  }
  .lg-down-px-md {
    padding-inline: 2rem;
  }
  .lg-down-m-lg {
    margin: 4rem;
  }
  .lg-down-mt-lg {
    margin-top: 4rem;
  }
  .lg-down-mb-lg {
    margin-bottom: 4rem;
  }
  .lg-down-my-lg {
    margin-block: 4rem;
  }
  .lg-down-ml-lg {
    margin-left: 4rem;
  }
  .lg-down-mr-lg {
    margin-right: 4rem;
  }
  .lg-down-mx-lg {
    margin-inline: 4rem;
  }
  .lg-down-p-lg {
    padding: 4rem;
  }
  .lg-down-pt-lg {
    padding-top: 4rem;
  }
  .lg-down-pb-lg {
    padding-bottom: 4rem;
  }
  .lg-down-py-lg {
    padding-block: 4rem;
  }
  .lg-down-pl-lg {
    padding-left: 4rem;
  }
  .lg-down-pr-lg {
    padding-right: 4rem;
  }
  .lg-down-px-lg {
    padding-inline: 4rem;
  }
  .lg-down-m-xl {
    margin: 5rem;
  }
  .lg-down-mt-xl {
    margin-top: 5rem;
  }
  .lg-down-mb-xl {
    margin-bottom: 5rem;
  }
  .lg-down-my-xl {
    margin-block: 5rem;
  }
  .lg-down-ml-xl {
    margin-left: 5rem;
  }
  .lg-down-mr-xl {
    margin-right: 5rem;
  }
  .lg-down-mx-xl {
    margin-inline: 5rem;
  }
  .lg-down-p-xl {
    padding: 5rem;
  }
  .lg-down-pt-xl {
    padding-top: 5rem;
  }
  .lg-down-pb-xl {
    padding-bottom: 5rem;
  }
  .lg-down-py-xl {
    padding-block: 5rem;
  }
  .lg-down-pl-xl {
    padding-left: 5rem;
  }
  .lg-down-pr-xl {
    padding-right: 5rem;
  }
  .lg-down-px-xl {
    padding-inline: 5rem;
  }
  .lg-down-m-xxl {
    margin: 7.5rem;
  }
  .lg-down-mt-xxl {
    margin-top: 7.5rem;
  }
  .lg-down-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .lg-down-my-xxl {
    margin-block: 7.5rem;
  }
  .lg-down-ml-xxl {
    margin-left: 7.5rem;
  }
  .lg-down-mr-xxl {
    margin-right: 7.5rem;
  }
  .lg-down-mx-xxl {
    margin-inline: 7.5rem;
  }
  .lg-down-p-xxl {
    padding: 7.5rem;
  }
  .lg-down-pt-xxl {
    padding-top: 7.5rem;
  }
  .lg-down-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .lg-down-py-xxl {
    padding-block: 7.5rem;
  }
  .lg-down-pl-xxl {
    padding-left: 7.5rem;
  }
  .lg-down-pr-xxl {
    padding-right: 7.5rem;
  }
  .lg-down-px-xxl {
    padding-inline: 7.5rem;
  }
  .lg-down-m-fluid {
    margin: var(--side-margin);
  }
  .lg-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .lg-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .lg-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .lg-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .lg-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .lg-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .lg-down-p-fluid {
    padding: var(--side-margin);
  }
  .lg-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .lg-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .lg-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .lg-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .lg-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .lg-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 47.98rem) {
  .md-down-m-0 {
    margin: 0;
  }
  .md-down-mt-0 {
    margin-top: 0;
  }
  .md-down-mb-0 {
    margin-bottom: 0;
  }
  .md-down-my-0 {
    margin-block: 0;
  }
  .md-down-ml-0 {
    margin-left: 0;
  }
  .md-down-mr-0 {
    margin-right: 0;
  }
  .md-down-mx-0 {
    margin-inline: 0;
  }
  .md-down-p-0 {
    padding: 0;
  }
  .md-down-pt-0 {
    padding-top: 0;
  }
  .md-down-pb-0 {
    padding-bottom: 0;
  }
  .md-down-py-0 {
    padding-block: 0;
  }
  .md-down-pl-0 {
    padding-left: 0;
  }
  .md-down-pr-0 {
    padding-right: 0;
  }
  .md-down-px-0 {
    padding-inline: 0;
  }
  .md-down-m-xs {
    margin: 0.5rem;
  }
  .md-down-mt-xs {
    margin-top: 0.5rem;
  }
  .md-down-mb-xs {
    margin-bottom: 0.5rem;
  }
  .md-down-my-xs {
    margin-block: 0.5rem;
  }
  .md-down-ml-xs {
    margin-left: 0.5rem;
  }
  .md-down-mr-xs {
    margin-right: 0.5rem;
  }
  .md-down-mx-xs {
    margin-inline: 0.5rem;
  }
  .md-down-p-xs {
    padding: 0.5rem;
  }
  .md-down-pt-xs {
    padding-top: 0.5rem;
  }
  .md-down-pb-xs {
    padding-bottom: 0.5rem;
  }
  .md-down-py-xs {
    padding-block: 0.5rem;
  }
  .md-down-pl-xs {
    padding-left: 0.5rem;
  }
  .md-down-pr-xs {
    padding-right: 0.5rem;
  }
  .md-down-px-xs {
    padding-inline: 0.5rem;
  }
  .md-down-m-sm {
    margin: 1rem;
  }
  .md-down-mt-sm {
    margin-top: 1rem;
  }
  .md-down-mb-sm {
    margin-bottom: 1rem;
  }
  .md-down-my-sm {
    margin-block: 1rem;
  }
  .md-down-ml-sm {
    margin-left: 1rem;
  }
  .md-down-mr-sm {
    margin-right: 1rem;
  }
  .md-down-mx-sm {
    margin-inline: 1rem;
  }
  .md-down-p-sm {
    padding: 1rem;
  }
  .md-down-pt-sm {
    padding-top: 1rem;
  }
  .md-down-pb-sm {
    padding-bottom: 1rem;
  }
  .md-down-py-sm {
    padding-block: 1rem;
  }
  .md-down-pl-sm {
    padding-left: 1rem;
  }
  .md-down-pr-sm {
    padding-right: 1rem;
  }
  .md-down-px-sm {
    padding-inline: 1rem;
  }
  .md-down-m-md {
    margin: 2rem;
  }
  .md-down-mt-md {
    margin-top: 2rem;
  }
  .md-down-mb-md {
    margin-bottom: 2rem;
  }
  .md-down-my-md {
    margin-block: 2rem;
  }
  .md-down-ml-md {
    margin-left: 2rem;
  }
  .md-down-mr-md {
    margin-right: 2rem;
  }
  .md-down-mx-md {
    margin-inline: 2rem;
  }
  .md-down-p-md {
    padding: 2rem;
  }
  .md-down-pt-md {
    padding-top: 2rem;
  }
  .md-down-pb-md {
    padding-bottom: 2rem;
  }
  .md-down-py-md {
    padding-block: 2rem;
  }
  .md-down-pl-md {
    padding-left: 2rem;
  }
  .md-down-pr-md {
    padding-right: 2rem;
  }
  .md-down-px-md {
    padding-inline: 2rem;
  }
  .md-down-m-lg {
    margin: 4rem;
  }
  .md-down-mt-lg {
    margin-top: 4rem;
  }
  .md-down-mb-lg {
    margin-bottom: 4rem;
  }
  .md-down-my-lg {
    margin-block: 4rem;
  }
  .md-down-ml-lg {
    margin-left: 4rem;
  }
  .md-down-mr-lg {
    margin-right: 4rem;
  }
  .md-down-mx-lg {
    margin-inline: 4rem;
  }
  .md-down-p-lg {
    padding: 4rem;
  }
  .md-down-pt-lg {
    padding-top: 4rem;
  }
  .md-down-pb-lg {
    padding-bottom: 4rem;
  }
  .md-down-py-lg {
    padding-block: 4rem;
  }
  .md-down-pl-lg {
    padding-left: 4rem;
  }
  .md-down-pr-lg {
    padding-right: 4rem;
  }
  .md-down-px-lg {
    padding-inline: 4rem;
  }
  .md-down-m-xl {
    margin: 5rem;
  }
  .md-down-mt-xl {
    margin-top: 5rem;
  }
  .md-down-mb-xl {
    margin-bottom: 5rem;
  }
  .md-down-my-xl {
    margin-block: 5rem;
  }
  .md-down-ml-xl {
    margin-left: 5rem;
  }
  .md-down-mr-xl {
    margin-right: 5rem;
  }
  .md-down-mx-xl {
    margin-inline: 5rem;
  }
  .md-down-p-xl {
    padding: 5rem;
  }
  .md-down-pt-xl {
    padding-top: 5rem;
  }
  .md-down-pb-xl {
    padding-bottom: 5rem;
  }
  .md-down-py-xl {
    padding-block: 5rem;
  }
  .md-down-pl-xl {
    padding-left: 5rem;
  }
  .md-down-pr-xl {
    padding-right: 5rem;
  }
  .md-down-px-xl {
    padding-inline: 5rem;
  }
  .md-down-m-xxl {
    margin: 7.5rem;
  }
  .md-down-mt-xxl {
    margin-top: 7.5rem;
  }
  .md-down-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .md-down-my-xxl {
    margin-block: 7.5rem;
  }
  .md-down-ml-xxl {
    margin-left: 7.5rem;
  }
  .md-down-mr-xxl {
    margin-right: 7.5rem;
  }
  .md-down-mx-xxl {
    margin-inline: 7.5rem;
  }
  .md-down-p-xxl {
    padding: 7.5rem;
  }
  .md-down-pt-xxl {
    padding-top: 7.5rem;
  }
  .md-down-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .md-down-py-xxl {
    padding-block: 7.5rem;
  }
  .md-down-pl-xxl {
    padding-left: 7.5rem;
  }
  .md-down-pr-xxl {
    padding-right: 7.5rem;
  }
  .md-down-px-xxl {
    padding-inline: 7.5rem;
  }
  .md-down-m-fluid {
    margin: var(--side-margin);
  }
  .md-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .md-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .md-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .md-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .md-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .md-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .md-down-p-fluid {
    padding: var(--side-margin);
  }
  .md-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .md-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .md-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .md-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .md-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .md-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 35.98rem) {
  .sm-down-m-0 {
    margin: 0;
  }
  .sm-down-mt-0 {
    margin-top: 0;
  }
  .sm-down-mb-0 {
    margin-bottom: 0;
  }
  .sm-down-my-0 {
    margin-block: 0;
  }
  .sm-down-ml-0 {
    margin-left: 0;
  }
  .sm-down-mr-0 {
    margin-right: 0;
  }
  .sm-down-mx-0 {
    margin-inline: 0;
  }
  .sm-down-p-0 {
    padding: 0;
  }
  .sm-down-pt-0 {
    padding-top: 0;
  }
  .sm-down-pb-0 {
    padding-bottom: 0;
  }
  .sm-down-py-0 {
    padding-block: 0;
  }
  .sm-down-pl-0 {
    padding-left: 0;
  }
  .sm-down-pr-0 {
    padding-right: 0;
  }
  .sm-down-px-0 {
    padding-inline: 0;
  }
  .sm-down-m-xs {
    margin: 0.5rem;
  }
  .sm-down-mt-xs {
    margin-top: 0.5rem;
  }
  .sm-down-mb-xs {
    margin-bottom: 0.5rem;
  }
  .sm-down-my-xs {
    margin-block: 0.5rem;
  }
  .sm-down-ml-xs {
    margin-left: 0.5rem;
  }
  .sm-down-mr-xs {
    margin-right: 0.5rem;
  }
  .sm-down-mx-xs {
    margin-inline: 0.5rem;
  }
  .sm-down-p-xs {
    padding: 0.5rem;
  }
  .sm-down-pt-xs {
    padding-top: 0.5rem;
  }
  .sm-down-pb-xs {
    padding-bottom: 0.5rem;
  }
  .sm-down-py-xs {
    padding-block: 0.5rem;
  }
  .sm-down-pl-xs {
    padding-left: 0.5rem;
  }
  .sm-down-pr-xs {
    padding-right: 0.5rem;
  }
  .sm-down-px-xs {
    padding-inline: 0.5rem;
  }
  .sm-down-m-sm {
    margin: 1rem;
  }
  .sm-down-mt-sm {
    margin-top: 1rem;
  }
  .sm-down-mb-sm {
    margin-bottom: 1rem;
  }
  .sm-down-my-sm {
    margin-block: 1rem;
  }
  .sm-down-ml-sm {
    margin-left: 1rem;
  }
  .sm-down-mr-sm {
    margin-right: 1rem;
  }
  .sm-down-mx-sm {
    margin-inline: 1rem;
  }
  .sm-down-p-sm {
    padding: 1rem;
  }
  .sm-down-pt-sm {
    padding-top: 1rem;
  }
  .sm-down-pb-sm {
    padding-bottom: 1rem;
  }
  .sm-down-py-sm {
    padding-block: 1rem;
  }
  .sm-down-pl-sm {
    padding-left: 1rem;
  }
  .sm-down-pr-sm {
    padding-right: 1rem;
  }
  .sm-down-px-sm {
    padding-inline: 1rem;
  }
  .sm-down-m-md {
    margin: 2rem;
  }
  .sm-down-mt-md {
    margin-top: 2rem;
  }
  .sm-down-mb-md {
    margin-bottom: 2rem;
  }
  .sm-down-my-md {
    margin-block: 2rem;
  }
  .sm-down-ml-md {
    margin-left: 2rem;
  }
  .sm-down-mr-md {
    margin-right: 2rem;
  }
  .sm-down-mx-md {
    margin-inline: 2rem;
  }
  .sm-down-p-md {
    padding: 2rem;
  }
  .sm-down-pt-md {
    padding-top: 2rem;
  }
  .sm-down-pb-md {
    padding-bottom: 2rem;
  }
  .sm-down-py-md {
    padding-block: 2rem;
  }
  .sm-down-pl-md {
    padding-left: 2rem;
  }
  .sm-down-pr-md {
    padding-right: 2rem;
  }
  .sm-down-px-md {
    padding-inline: 2rem;
  }
  .sm-down-m-lg {
    margin: 4rem;
  }
  .sm-down-mt-lg {
    margin-top: 4rem;
  }
  .sm-down-mb-lg {
    margin-bottom: 4rem;
  }
  .sm-down-my-lg {
    margin-block: 4rem;
  }
  .sm-down-ml-lg {
    margin-left: 4rem;
  }
  .sm-down-mr-lg {
    margin-right: 4rem;
  }
  .sm-down-mx-lg {
    margin-inline: 4rem;
  }
  .sm-down-p-lg {
    padding: 4rem;
  }
  .sm-down-pt-lg {
    padding-top: 4rem;
  }
  .sm-down-pb-lg {
    padding-bottom: 4rem;
  }
  .sm-down-py-lg {
    padding-block: 4rem;
  }
  .sm-down-pl-lg {
    padding-left: 4rem;
  }
  .sm-down-pr-lg {
    padding-right: 4rem;
  }
  .sm-down-px-lg {
    padding-inline: 4rem;
  }
  .sm-down-m-xl {
    margin: 5rem;
  }
  .sm-down-mt-xl {
    margin-top: 5rem;
  }
  .sm-down-mb-xl {
    margin-bottom: 5rem;
  }
  .sm-down-my-xl {
    margin-block: 5rem;
  }
  .sm-down-ml-xl {
    margin-left: 5rem;
  }
  .sm-down-mr-xl {
    margin-right: 5rem;
  }
  .sm-down-mx-xl {
    margin-inline: 5rem;
  }
  .sm-down-p-xl {
    padding: 5rem;
  }
  .sm-down-pt-xl {
    padding-top: 5rem;
  }
  .sm-down-pb-xl {
    padding-bottom: 5rem;
  }
  .sm-down-py-xl {
    padding-block: 5rem;
  }
  .sm-down-pl-xl {
    padding-left: 5rem;
  }
  .sm-down-pr-xl {
    padding-right: 5rem;
  }
  .sm-down-px-xl {
    padding-inline: 5rem;
  }
  .sm-down-m-xxl {
    margin: 7.5rem;
  }
  .sm-down-mt-xxl {
    margin-top: 7.5rem;
  }
  .sm-down-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .sm-down-my-xxl {
    margin-block: 7.5rem;
  }
  .sm-down-ml-xxl {
    margin-left: 7.5rem;
  }
  .sm-down-mr-xxl {
    margin-right: 7.5rem;
  }
  .sm-down-mx-xxl {
    margin-inline: 7.5rem;
  }
  .sm-down-p-xxl {
    padding: 7.5rem;
  }
  .sm-down-pt-xxl {
    padding-top: 7.5rem;
  }
  .sm-down-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .sm-down-py-xxl {
    padding-block: 7.5rem;
  }
  .sm-down-pl-xxl {
    padding-left: 7.5rem;
  }
  .sm-down-pr-xxl {
    padding-right: 7.5rem;
  }
  .sm-down-px-xxl {
    padding-inline: 7.5rem;
  }
  .sm-down-m-fluid {
    margin: var(--side-margin);
  }
  .sm-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .sm-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .sm-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .sm-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .sm-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .sm-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .sm-down-p-fluid {
    padding: var(--side-margin);
  }
  .sm-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .sm-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .sm-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .sm-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .sm-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .sm-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 36rem) {
  .sm-up-m-0 {
    margin: 0;
  }
  .sm-up-mt-0 {
    margin-top: 0;
  }
  .sm-up-mb-0 {
    margin-bottom: 0;
  }
  .sm-up-my-0 {
    margin-block: 0;
  }
  .sm-up-ml-0 {
    margin-left: 0;
  }
  .sm-up-mr-0 {
    margin-right: 0;
  }
  .sm-up-mx-0 {
    margin-inline: 0;
  }
  .sm-up-p-0 {
    padding: 0;
  }
  .sm-up-pt-0 {
    padding-top: 0;
  }
  .sm-up-pb-0 {
    padding-bottom: 0;
  }
  .sm-up-py-0 {
    padding-block: 0;
  }
  .sm-up-pl-0 {
    padding-left: 0;
  }
  .sm-up-pr-0 {
    padding-right: 0;
  }
  .sm-up-px-0 {
    padding-inline: 0;
  }
  .sm-up-m-xs {
    margin: 0.5rem;
  }
  .sm-up-mt-xs {
    margin-top: 0.5rem;
  }
  .sm-up-mb-xs {
    margin-bottom: 0.5rem;
  }
  .sm-up-my-xs {
    margin-block: 0.5rem;
  }
  .sm-up-ml-xs {
    margin-left: 0.5rem;
  }
  .sm-up-mr-xs {
    margin-right: 0.5rem;
  }
  .sm-up-mx-xs {
    margin-inline: 0.5rem;
  }
  .sm-up-p-xs {
    padding: 0.5rem;
  }
  .sm-up-pt-xs {
    padding-top: 0.5rem;
  }
  .sm-up-pb-xs {
    padding-bottom: 0.5rem;
  }
  .sm-up-py-xs {
    padding-block: 0.5rem;
  }
  .sm-up-pl-xs {
    padding-left: 0.5rem;
  }
  .sm-up-pr-xs {
    padding-right: 0.5rem;
  }
  .sm-up-px-xs {
    padding-inline: 0.5rem;
  }
  .sm-up-m-sm {
    margin: 1rem;
  }
  .sm-up-mt-sm {
    margin-top: 1rem;
  }
  .sm-up-mb-sm {
    margin-bottom: 1rem;
  }
  .sm-up-my-sm {
    margin-block: 1rem;
  }
  .sm-up-ml-sm {
    margin-left: 1rem;
  }
  .sm-up-mr-sm {
    margin-right: 1rem;
  }
  .sm-up-mx-sm {
    margin-inline: 1rem;
  }
  .sm-up-p-sm {
    padding: 1rem;
  }
  .sm-up-pt-sm {
    padding-top: 1rem;
  }
  .sm-up-pb-sm {
    padding-bottom: 1rem;
  }
  .sm-up-py-sm {
    padding-block: 1rem;
  }
  .sm-up-pl-sm {
    padding-left: 1rem;
  }
  .sm-up-pr-sm {
    padding-right: 1rem;
  }
  .sm-up-px-sm {
    padding-inline: 1rem;
  }
  .sm-up-m-md {
    margin: 2rem;
  }
  .sm-up-mt-md {
    margin-top: 2rem;
  }
  .sm-up-mb-md {
    margin-bottom: 2rem;
  }
  .sm-up-my-md {
    margin-block: 2rem;
  }
  .sm-up-ml-md {
    margin-left: 2rem;
  }
  .sm-up-mr-md {
    margin-right: 2rem;
  }
  .sm-up-mx-md {
    margin-inline: 2rem;
  }
  .sm-up-p-md {
    padding: 2rem;
  }
  .sm-up-pt-md {
    padding-top: 2rem;
  }
  .sm-up-pb-md {
    padding-bottom: 2rem;
  }
  .sm-up-py-md {
    padding-block: 2rem;
  }
  .sm-up-pl-md {
    padding-left: 2rem;
  }
  .sm-up-pr-md {
    padding-right: 2rem;
  }
  .sm-up-px-md {
    padding-inline: 2rem;
  }
  .sm-up-m-lg {
    margin: 4rem;
  }
  .sm-up-mt-lg {
    margin-top: 4rem;
  }
  .sm-up-mb-lg {
    margin-bottom: 4rem;
  }
  .sm-up-my-lg {
    margin-block: 4rem;
  }
  .sm-up-ml-lg {
    margin-left: 4rem;
  }
  .sm-up-mr-lg {
    margin-right: 4rem;
  }
  .sm-up-mx-lg {
    margin-inline: 4rem;
  }
  .sm-up-p-lg {
    padding: 4rem;
  }
  .sm-up-pt-lg {
    padding-top: 4rem;
  }
  .sm-up-pb-lg {
    padding-bottom: 4rem;
  }
  .sm-up-py-lg {
    padding-block: 4rem;
  }
  .sm-up-pl-lg {
    padding-left: 4rem;
  }
  .sm-up-pr-lg {
    padding-right: 4rem;
  }
  .sm-up-px-lg {
    padding-inline: 4rem;
  }
  .sm-up-m-xl {
    margin: 5rem;
  }
  .sm-up-mt-xl {
    margin-top: 5rem;
  }
  .sm-up-mb-xl {
    margin-bottom: 5rem;
  }
  .sm-up-my-xl {
    margin-block: 5rem;
  }
  .sm-up-ml-xl {
    margin-left: 5rem;
  }
  .sm-up-mr-xl {
    margin-right: 5rem;
  }
  .sm-up-mx-xl {
    margin-inline: 5rem;
  }
  .sm-up-p-xl {
    padding: 5rem;
  }
  .sm-up-pt-xl {
    padding-top: 5rem;
  }
  .sm-up-pb-xl {
    padding-bottom: 5rem;
  }
  .sm-up-py-xl {
    padding-block: 5rem;
  }
  .sm-up-pl-xl {
    padding-left: 5rem;
  }
  .sm-up-pr-xl {
    padding-right: 5rem;
  }
  .sm-up-px-xl {
    padding-inline: 5rem;
  }
  .sm-up-m-xxl {
    margin: 7.5rem;
  }
  .sm-up-mt-xxl {
    margin-top: 7.5rem;
  }
  .sm-up-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .sm-up-my-xxl {
    margin-block: 7.5rem;
  }
  .sm-up-ml-xxl {
    margin-left: 7.5rem;
  }
  .sm-up-mr-xxl {
    margin-right: 7.5rem;
  }
  .sm-up-mx-xxl {
    margin-inline: 7.5rem;
  }
  .sm-up-p-xxl {
    padding: 7.5rem;
  }
  .sm-up-pt-xxl {
    padding-top: 7.5rem;
  }
  .sm-up-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .sm-up-py-xxl {
    padding-block: 7.5rem;
  }
  .sm-up-pl-xxl {
    padding-left: 7.5rem;
  }
  .sm-up-pr-xxl {
    padding-right: 7.5rem;
  }
  .sm-up-px-xxl {
    padding-inline: 7.5rem;
  }
  .sm-up-m-fluid {
    margin: var(--side-margin);
  }
  .sm-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .sm-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .sm-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .sm-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .sm-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .sm-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .sm-up-p-fluid {
    padding: var(--side-margin);
  }
  .sm-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .sm-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .sm-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .sm-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .sm-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .sm-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 48rem) {
  .md-up-m-0 {
    margin: 0;
  }
  .md-up-mt-0 {
    margin-top: 0;
  }
  .md-up-mb-0 {
    margin-bottom: 0;
  }
  .md-up-my-0 {
    margin-block: 0;
  }
  .md-up-ml-0 {
    margin-left: 0;
  }
  .md-up-mr-0 {
    margin-right: 0;
  }
  .md-up-mx-0 {
    margin-inline: 0;
  }
  .md-up-p-0 {
    padding: 0;
  }
  .md-up-pt-0 {
    padding-top: 0;
  }
  .md-up-pb-0 {
    padding-bottom: 0;
  }
  .md-up-py-0 {
    padding-block: 0;
  }
  .md-up-pl-0 {
    padding-left: 0;
  }
  .md-up-pr-0 {
    padding-right: 0;
  }
  .md-up-px-0 {
    padding-inline: 0;
  }
  .md-up-m-xs {
    margin: 0.5rem;
  }
  .md-up-mt-xs {
    margin-top: 0.5rem;
  }
  .md-up-mb-xs {
    margin-bottom: 0.5rem;
  }
  .md-up-my-xs {
    margin-block: 0.5rem;
  }
  .md-up-ml-xs {
    margin-left: 0.5rem;
  }
  .md-up-mr-xs {
    margin-right: 0.5rem;
  }
  .md-up-mx-xs {
    margin-inline: 0.5rem;
  }
  .md-up-p-xs {
    padding: 0.5rem;
  }
  .md-up-pt-xs {
    padding-top: 0.5rem;
  }
  .md-up-pb-xs {
    padding-bottom: 0.5rem;
  }
  .md-up-py-xs {
    padding-block: 0.5rem;
  }
  .md-up-pl-xs {
    padding-left: 0.5rem;
  }
  .md-up-pr-xs {
    padding-right: 0.5rem;
  }
  .md-up-px-xs {
    padding-inline: 0.5rem;
  }
  .md-up-m-sm {
    margin: 1rem;
  }
  .md-up-mt-sm {
    margin-top: 1rem;
  }
  .md-up-mb-sm {
    margin-bottom: 1rem;
  }
  .md-up-my-sm {
    margin-block: 1rem;
  }
  .md-up-ml-sm {
    margin-left: 1rem;
  }
  .md-up-mr-sm {
    margin-right: 1rem;
  }
  .md-up-mx-sm {
    margin-inline: 1rem;
  }
  .md-up-p-sm {
    padding: 1rem;
  }
  .md-up-pt-sm {
    padding-top: 1rem;
  }
  .md-up-pb-sm {
    padding-bottom: 1rem;
  }
  .md-up-py-sm {
    padding-block: 1rem;
  }
  .md-up-pl-sm {
    padding-left: 1rem;
  }
  .md-up-pr-sm {
    padding-right: 1rem;
  }
  .md-up-px-sm {
    padding-inline: 1rem;
  }
  .md-up-m-md {
    margin: 2rem;
  }
  .md-up-mt-md {
    margin-top: 2rem;
  }
  .md-up-mb-md {
    margin-bottom: 2rem;
  }
  .md-up-my-md {
    margin-block: 2rem;
  }
  .md-up-ml-md {
    margin-left: 2rem;
  }
  .md-up-mr-md {
    margin-right: 2rem;
  }
  .md-up-mx-md {
    margin-inline: 2rem;
  }
  .md-up-p-md {
    padding: 2rem;
  }
  .md-up-pt-md {
    padding-top: 2rem;
  }
  .md-up-pb-md {
    padding-bottom: 2rem;
  }
  .md-up-py-md {
    padding-block: 2rem;
  }
  .md-up-pl-md {
    padding-left: 2rem;
  }
  .md-up-pr-md {
    padding-right: 2rem;
  }
  .md-up-px-md {
    padding-inline: 2rem;
  }
  .md-up-m-lg {
    margin: 4rem;
  }
  .md-up-mt-lg {
    margin-top: 4rem;
  }
  .md-up-mb-lg {
    margin-bottom: 4rem;
  }
  .md-up-my-lg {
    margin-block: 4rem;
  }
  .md-up-ml-lg {
    margin-left: 4rem;
  }
  .md-up-mr-lg {
    margin-right: 4rem;
  }
  .md-up-mx-lg {
    margin-inline: 4rem;
  }
  .md-up-p-lg {
    padding: 4rem;
  }
  .md-up-pt-lg {
    padding-top: 4rem;
  }
  .md-up-pb-lg {
    padding-bottom: 4rem;
  }
  .md-up-py-lg {
    padding-block: 4rem;
  }
  .md-up-pl-lg {
    padding-left: 4rem;
  }
  .md-up-pr-lg {
    padding-right: 4rem;
  }
  .md-up-px-lg {
    padding-inline: 4rem;
  }
  .md-up-m-xl {
    margin: 5rem;
  }
  .md-up-mt-xl {
    margin-top: 5rem;
  }
  .md-up-mb-xl {
    margin-bottom: 5rem;
  }
  .md-up-my-xl {
    margin-block: 5rem;
  }
  .md-up-ml-xl {
    margin-left: 5rem;
  }
  .md-up-mr-xl {
    margin-right: 5rem;
  }
  .md-up-mx-xl {
    margin-inline: 5rem;
  }
  .md-up-p-xl {
    padding: 5rem;
  }
  .md-up-pt-xl {
    padding-top: 5rem;
  }
  .md-up-pb-xl {
    padding-bottom: 5rem;
  }
  .md-up-py-xl {
    padding-block: 5rem;
  }
  .md-up-pl-xl {
    padding-left: 5rem;
  }
  .md-up-pr-xl {
    padding-right: 5rem;
  }
  .md-up-px-xl {
    padding-inline: 5rem;
  }
  .md-up-m-xxl {
    margin: 7.5rem;
  }
  .md-up-mt-xxl {
    margin-top: 7.5rem;
  }
  .md-up-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .md-up-my-xxl {
    margin-block: 7.5rem;
  }
  .md-up-ml-xxl {
    margin-left: 7.5rem;
  }
  .md-up-mr-xxl {
    margin-right: 7.5rem;
  }
  .md-up-mx-xxl {
    margin-inline: 7.5rem;
  }
  .md-up-p-xxl {
    padding: 7.5rem;
  }
  .md-up-pt-xxl {
    padding-top: 7.5rem;
  }
  .md-up-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .md-up-py-xxl {
    padding-block: 7.5rem;
  }
  .md-up-pl-xxl {
    padding-left: 7.5rem;
  }
  .md-up-pr-xxl {
    padding-right: 7.5rem;
  }
  .md-up-px-xxl {
    padding-inline: 7.5rem;
  }
  .md-up-m-fluid {
    margin: var(--side-margin);
  }
  .md-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .md-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .md-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .md-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .md-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .md-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .md-up-p-fluid {
    padding: var(--side-margin);
  }
  .md-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .md-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .md-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .md-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .md-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .md-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 64rem) {
  .lg-up-m-0 {
    margin: 0;
  }
  .lg-up-mt-0 {
    margin-top: 0;
  }
  .lg-up-mb-0 {
    margin-bottom: 0;
  }
  .lg-up-my-0 {
    margin-block: 0;
  }
  .lg-up-ml-0 {
    margin-left: 0;
  }
  .lg-up-mr-0 {
    margin-right: 0;
  }
  .lg-up-mx-0 {
    margin-inline: 0;
  }
  .lg-up-p-0 {
    padding: 0;
  }
  .lg-up-pt-0 {
    padding-top: 0;
  }
  .lg-up-pb-0 {
    padding-bottom: 0;
  }
  .lg-up-py-0 {
    padding-block: 0;
  }
  .lg-up-pl-0 {
    padding-left: 0;
  }
  .lg-up-pr-0 {
    padding-right: 0;
  }
  .lg-up-px-0 {
    padding-inline: 0;
  }
  .lg-up-m-xs {
    margin: 0.5rem;
  }
  .lg-up-mt-xs {
    margin-top: 0.5rem;
  }
  .lg-up-mb-xs {
    margin-bottom: 0.5rem;
  }
  .lg-up-my-xs {
    margin-block: 0.5rem;
  }
  .lg-up-ml-xs {
    margin-left: 0.5rem;
  }
  .lg-up-mr-xs {
    margin-right: 0.5rem;
  }
  .lg-up-mx-xs {
    margin-inline: 0.5rem;
  }
  .lg-up-p-xs {
    padding: 0.5rem;
  }
  .lg-up-pt-xs {
    padding-top: 0.5rem;
  }
  .lg-up-pb-xs {
    padding-bottom: 0.5rem;
  }
  .lg-up-py-xs {
    padding-block: 0.5rem;
  }
  .lg-up-pl-xs {
    padding-left: 0.5rem;
  }
  .lg-up-pr-xs {
    padding-right: 0.5rem;
  }
  .lg-up-px-xs {
    padding-inline: 0.5rem;
  }
  .lg-up-m-sm {
    margin: 1rem;
  }
  .lg-up-mt-sm {
    margin-top: 1rem;
  }
  .lg-up-mb-sm {
    margin-bottom: 1rem;
  }
  .lg-up-my-sm {
    margin-block: 1rem;
  }
  .lg-up-ml-sm {
    margin-left: 1rem;
  }
  .lg-up-mr-sm {
    margin-right: 1rem;
  }
  .lg-up-mx-sm {
    margin-inline: 1rem;
  }
  .lg-up-p-sm {
    padding: 1rem;
  }
  .lg-up-pt-sm {
    padding-top: 1rem;
  }
  .lg-up-pb-sm {
    padding-bottom: 1rem;
  }
  .lg-up-py-sm {
    padding-block: 1rem;
  }
  .lg-up-pl-sm {
    padding-left: 1rem;
  }
  .lg-up-pr-sm {
    padding-right: 1rem;
  }
  .lg-up-px-sm {
    padding-inline: 1rem;
  }
  .lg-up-m-md {
    margin: 2rem;
  }
  .lg-up-mt-md {
    margin-top: 2rem;
  }
  .lg-up-mb-md {
    margin-bottom: 2rem;
  }
  .lg-up-my-md {
    margin-block: 2rem;
  }
  .lg-up-ml-md {
    margin-left: 2rem;
  }
  .lg-up-mr-md {
    margin-right: 2rem;
  }
  .lg-up-mx-md {
    margin-inline: 2rem;
  }
  .lg-up-p-md {
    padding: 2rem;
  }
  .lg-up-pt-md {
    padding-top: 2rem;
  }
  .lg-up-pb-md {
    padding-bottom: 2rem;
  }
  .lg-up-py-md {
    padding-block: 2rem;
  }
  .lg-up-pl-md {
    padding-left: 2rem;
  }
  .lg-up-pr-md {
    padding-right: 2rem;
  }
  .lg-up-px-md {
    padding-inline: 2rem;
  }
  .lg-up-m-lg {
    margin: 4rem;
  }
  .lg-up-mt-lg {
    margin-top: 4rem;
  }
  .lg-up-mb-lg {
    margin-bottom: 4rem;
  }
  .lg-up-my-lg {
    margin-block: 4rem;
  }
  .lg-up-ml-lg {
    margin-left: 4rem;
  }
  .lg-up-mr-lg {
    margin-right: 4rem;
  }
  .lg-up-mx-lg {
    margin-inline: 4rem;
  }
  .lg-up-p-lg {
    padding: 4rem;
  }
  .lg-up-pt-lg {
    padding-top: 4rem;
  }
  .lg-up-pb-lg {
    padding-bottom: 4rem;
  }
  .lg-up-py-lg {
    padding-block: 4rem;
  }
  .lg-up-pl-lg {
    padding-left: 4rem;
  }
  .lg-up-pr-lg {
    padding-right: 4rem;
  }
  .lg-up-px-lg {
    padding-inline: 4rem;
  }
  .lg-up-m-xl {
    margin: 5rem;
  }
  .lg-up-mt-xl {
    margin-top: 5rem;
  }
  .lg-up-mb-xl {
    margin-bottom: 5rem;
  }
  .lg-up-my-xl {
    margin-block: 5rem;
  }
  .lg-up-ml-xl {
    margin-left: 5rem;
  }
  .lg-up-mr-xl {
    margin-right: 5rem;
  }
  .lg-up-mx-xl {
    margin-inline: 5rem;
  }
  .lg-up-p-xl {
    padding: 5rem;
  }
  .lg-up-pt-xl {
    padding-top: 5rem;
  }
  .lg-up-pb-xl {
    padding-bottom: 5rem;
  }
  .lg-up-py-xl {
    padding-block: 5rem;
  }
  .lg-up-pl-xl {
    padding-left: 5rem;
  }
  .lg-up-pr-xl {
    padding-right: 5rem;
  }
  .lg-up-px-xl {
    padding-inline: 5rem;
  }
  .lg-up-m-xxl {
    margin: 7.5rem;
  }
  .lg-up-mt-xxl {
    margin-top: 7.5rem;
  }
  .lg-up-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .lg-up-my-xxl {
    margin-block: 7.5rem;
  }
  .lg-up-ml-xxl {
    margin-left: 7.5rem;
  }
  .lg-up-mr-xxl {
    margin-right: 7.5rem;
  }
  .lg-up-mx-xxl {
    margin-inline: 7.5rem;
  }
  .lg-up-p-xxl {
    padding: 7.5rem;
  }
  .lg-up-pt-xxl {
    padding-top: 7.5rem;
  }
  .lg-up-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .lg-up-py-xxl {
    padding-block: 7.5rem;
  }
  .lg-up-pl-xxl {
    padding-left: 7.5rem;
  }
  .lg-up-pr-xxl {
    padding-right: 7.5rem;
  }
  .lg-up-px-xxl {
    padding-inline: 7.5rem;
  }
  .lg-up-m-fluid {
    margin: var(--side-margin);
  }
  .lg-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .lg-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .lg-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .lg-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .lg-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .lg-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .lg-up-p-fluid {
    padding: var(--side-margin);
  }
  .lg-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .lg-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .lg-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .lg-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .lg-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .lg-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 79rem) {
  .xl-up-m-0 {
    margin: 0;
  }
  .xl-up-mt-0 {
    margin-top: 0;
  }
  .xl-up-mb-0 {
    margin-bottom: 0;
  }
  .xl-up-my-0 {
    margin-block: 0;
  }
  .xl-up-ml-0 {
    margin-left: 0;
  }
  .xl-up-mr-0 {
    margin-right: 0;
  }
  .xl-up-mx-0 {
    margin-inline: 0;
  }
  .xl-up-p-0 {
    padding: 0;
  }
  .xl-up-pt-0 {
    padding-top: 0;
  }
  .xl-up-pb-0 {
    padding-bottom: 0;
  }
  .xl-up-py-0 {
    padding-block: 0;
  }
  .xl-up-pl-0 {
    padding-left: 0;
  }
  .xl-up-pr-0 {
    padding-right: 0;
  }
  .xl-up-px-0 {
    padding-inline: 0;
  }
  .xl-up-m-xs {
    margin: 0.5rem;
  }
  .xl-up-mt-xs {
    margin-top: 0.5rem;
  }
  .xl-up-mb-xs {
    margin-bottom: 0.5rem;
  }
  .xl-up-my-xs {
    margin-block: 0.5rem;
  }
  .xl-up-ml-xs {
    margin-left: 0.5rem;
  }
  .xl-up-mr-xs {
    margin-right: 0.5rem;
  }
  .xl-up-mx-xs {
    margin-inline: 0.5rem;
  }
  .xl-up-p-xs {
    padding: 0.5rem;
  }
  .xl-up-pt-xs {
    padding-top: 0.5rem;
  }
  .xl-up-pb-xs {
    padding-bottom: 0.5rem;
  }
  .xl-up-py-xs {
    padding-block: 0.5rem;
  }
  .xl-up-pl-xs {
    padding-left: 0.5rem;
  }
  .xl-up-pr-xs {
    padding-right: 0.5rem;
  }
  .xl-up-px-xs {
    padding-inline: 0.5rem;
  }
  .xl-up-m-sm {
    margin: 1rem;
  }
  .xl-up-mt-sm {
    margin-top: 1rem;
  }
  .xl-up-mb-sm {
    margin-bottom: 1rem;
  }
  .xl-up-my-sm {
    margin-block: 1rem;
  }
  .xl-up-ml-sm {
    margin-left: 1rem;
  }
  .xl-up-mr-sm {
    margin-right: 1rem;
  }
  .xl-up-mx-sm {
    margin-inline: 1rem;
  }
  .xl-up-p-sm {
    padding: 1rem;
  }
  .xl-up-pt-sm {
    padding-top: 1rem;
  }
  .xl-up-pb-sm {
    padding-bottom: 1rem;
  }
  .xl-up-py-sm {
    padding-block: 1rem;
  }
  .xl-up-pl-sm {
    padding-left: 1rem;
  }
  .xl-up-pr-sm {
    padding-right: 1rem;
  }
  .xl-up-px-sm {
    padding-inline: 1rem;
  }
  .xl-up-m-md {
    margin: 2rem;
  }
  .xl-up-mt-md {
    margin-top: 2rem;
  }
  .xl-up-mb-md {
    margin-bottom: 2rem;
  }
  .xl-up-my-md {
    margin-block: 2rem;
  }
  .xl-up-ml-md {
    margin-left: 2rem;
  }
  .xl-up-mr-md {
    margin-right: 2rem;
  }
  .xl-up-mx-md {
    margin-inline: 2rem;
  }
  .xl-up-p-md {
    padding: 2rem;
  }
  .xl-up-pt-md {
    padding-top: 2rem;
  }
  .xl-up-pb-md {
    padding-bottom: 2rem;
  }
  .xl-up-py-md {
    padding-block: 2rem;
  }
  .xl-up-pl-md {
    padding-left: 2rem;
  }
  .xl-up-pr-md {
    padding-right: 2rem;
  }
  .xl-up-px-md {
    padding-inline: 2rem;
  }
  .xl-up-m-lg {
    margin: 4rem;
  }
  .xl-up-mt-lg {
    margin-top: 4rem;
  }
  .xl-up-mb-lg {
    margin-bottom: 4rem;
  }
  .xl-up-my-lg {
    margin-block: 4rem;
  }
  .xl-up-ml-lg {
    margin-left: 4rem;
  }
  .xl-up-mr-lg {
    margin-right: 4rem;
  }
  .xl-up-mx-lg {
    margin-inline: 4rem;
  }
  .xl-up-p-lg {
    padding: 4rem;
  }
  .xl-up-pt-lg {
    padding-top: 4rem;
  }
  .xl-up-pb-lg {
    padding-bottom: 4rem;
  }
  .xl-up-py-lg {
    padding-block: 4rem;
  }
  .xl-up-pl-lg {
    padding-left: 4rem;
  }
  .xl-up-pr-lg {
    padding-right: 4rem;
  }
  .xl-up-px-lg {
    padding-inline: 4rem;
  }
  .xl-up-m-xl {
    margin: 5rem;
  }
  .xl-up-mt-xl {
    margin-top: 5rem;
  }
  .xl-up-mb-xl {
    margin-bottom: 5rem;
  }
  .xl-up-my-xl {
    margin-block: 5rem;
  }
  .xl-up-ml-xl {
    margin-left: 5rem;
  }
  .xl-up-mr-xl {
    margin-right: 5rem;
  }
  .xl-up-mx-xl {
    margin-inline: 5rem;
  }
  .xl-up-p-xl {
    padding: 5rem;
  }
  .xl-up-pt-xl {
    padding-top: 5rem;
  }
  .xl-up-pb-xl {
    padding-bottom: 5rem;
  }
  .xl-up-py-xl {
    padding-block: 5rem;
  }
  .xl-up-pl-xl {
    padding-left: 5rem;
  }
  .xl-up-pr-xl {
    padding-right: 5rem;
  }
  .xl-up-px-xl {
    padding-inline: 5rem;
  }
  .xl-up-m-xxl {
    margin: 7.5rem;
  }
  .xl-up-mt-xxl {
    margin-top: 7.5rem;
  }
  .xl-up-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .xl-up-my-xxl {
    margin-block: 7.5rem;
  }
  .xl-up-ml-xxl {
    margin-left: 7.5rem;
  }
  .xl-up-mr-xxl {
    margin-right: 7.5rem;
  }
  .xl-up-mx-xxl {
    margin-inline: 7.5rem;
  }
  .xl-up-p-xxl {
    padding: 7.5rem;
  }
  .xl-up-pt-xxl {
    padding-top: 7.5rem;
  }
  .xl-up-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .xl-up-py-xxl {
    padding-block: 7.5rem;
  }
  .xl-up-pl-xxl {
    padding-left: 7.5rem;
  }
  .xl-up-pr-xxl {
    padding-right: 7.5rem;
  }
  .xl-up-px-xxl {
    padding-inline: 7.5rem;
  }
  .xl-up-m-fluid {
    margin: var(--side-margin);
  }
  .xl-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xl-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xl-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .xl-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xl-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xl-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xl-up-p-fluid {
    padding: var(--side-margin);
  }
  .xl-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xl-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xl-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .xl-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xl-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xl-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 90rem) {
  .xxl-up-m-0 {
    margin: 0;
  }
  .xxl-up-mt-0 {
    margin-top: 0;
  }
  .xxl-up-mb-0 {
    margin-bottom: 0;
  }
  .xxl-up-my-0 {
    margin-block: 0;
  }
  .xxl-up-ml-0 {
    margin-left: 0;
  }
  .xxl-up-mr-0 {
    margin-right: 0;
  }
  .xxl-up-mx-0 {
    margin-inline: 0;
  }
  .xxl-up-p-0 {
    padding: 0;
  }
  .xxl-up-pt-0 {
    padding-top: 0;
  }
  .xxl-up-pb-0 {
    padding-bottom: 0;
  }
  .xxl-up-py-0 {
    padding-block: 0;
  }
  .xxl-up-pl-0 {
    padding-left: 0;
  }
  .xxl-up-pr-0 {
    padding-right: 0;
  }
  .xxl-up-px-0 {
    padding-inline: 0;
  }
  .xxl-up-m-xs {
    margin: 0.5rem;
  }
  .xxl-up-mt-xs {
    margin-top: 0.5rem;
  }
  .xxl-up-mb-xs {
    margin-bottom: 0.5rem;
  }
  .xxl-up-my-xs {
    margin-block: 0.5rem;
  }
  .xxl-up-ml-xs {
    margin-left: 0.5rem;
  }
  .xxl-up-mr-xs {
    margin-right: 0.5rem;
  }
  .xxl-up-mx-xs {
    margin-inline: 0.5rem;
  }
  .xxl-up-p-xs {
    padding: 0.5rem;
  }
  .xxl-up-pt-xs {
    padding-top: 0.5rem;
  }
  .xxl-up-pb-xs {
    padding-bottom: 0.5rem;
  }
  .xxl-up-py-xs {
    padding-block: 0.5rem;
  }
  .xxl-up-pl-xs {
    padding-left: 0.5rem;
  }
  .xxl-up-pr-xs {
    padding-right: 0.5rem;
  }
  .xxl-up-px-xs {
    padding-inline: 0.5rem;
  }
  .xxl-up-m-sm {
    margin: 1rem;
  }
  .xxl-up-mt-sm {
    margin-top: 1rem;
  }
  .xxl-up-mb-sm {
    margin-bottom: 1rem;
  }
  .xxl-up-my-sm {
    margin-block: 1rem;
  }
  .xxl-up-ml-sm {
    margin-left: 1rem;
  }
  .xxl-up-mr-sm {
    margin-right: 1rem;
  }
  .xxl-up-mx-sm {
    margin-inline: 1rem;
  }
  .xxl-up-p-sm {
    padding: 1rem;
  }
  .xxl-up-pt-sm {
    padding-top: 1rem;
  }
  .xxl-up-pb-sm {
    padding-bottom: 1rem;
  }
  .xxl-up-py-sm {
    padding-block: 1rem;
  }
  .xxl-up-pl-sm {
    padding-left: 1rem;
  }
  .xxl-up-pr-sm {
    padding-right: 1rem;
  }
  .xxl-up-px-sm {
    padding-inline: 1rem;
  }
  .xxl-up-m-md {
    margin: 2rem;
  }
  .xxl-up-mt-md {
    margin-top: 2rem;
  }
  .xxl-up-mb-md {
    margin-bottom: 2rem;
  }
  .xxl-up-my-md {
    margin-block: 2rem;
  }
  .xxl-up-ml-md {
    margin-left: 2rem;
  }
  .xxl-up-mr-md {
    margin-right: 2rem;
  }
  .xxl-up-mx-md {
    margin-inline: 2rem;
  }
  .xxl-up-p-md {
    padding: 2rem;
  }
  .xxl-up-pt-md {
    padding-top: 2rem;
  }
  .xxl-up-pb-md {
    padding-bottom: 2rem;
  }
  .xxl-up-py-md {
    padding-block: 2rem;
  }
  .xxl-up-pl-md {
    padding-left: 2rem;
  }
  .xxl-up-pr-md {
    padding-right: 2rem;
  }
  .xxl-up-px-md {
    padding-inline: 2rem;
  }
  .xxl-up-m-lg {
    margin: 4rem;
  }
  .xxl-up-mt-lg {
    margin-top: 4rem;
  }
  .xxl-up-mb-lg {
    margin-bottom: 4rem;
  }
  .xxl-up-my-lg {
    margin-block: 4rem;
  }
  .xxl-up-ml-lg {
    margin-left: 4rem;
  }
  .xxl-up-mr-lg {
    margin-right: 4rem;
  }
  .xxl-up-mx-lg {
    margin-inline: 4rem;
  }
  .xxl-up-p-lg {
    padding: 4rem;
  }
  .xxl-up-pt-lg {
    padding-top: 4rem;
  }
  .xxl-up-pb-lg {
    padding-bottom: 4rem;
  }
  .xxl-up-py-lg {
    padding-block: 4rem;
  }
  .xxl-up-pl-lg {
    padding-left: 4rem;
  }
  .xxl-up-pr-lg {
    padding-right: 4rem;
  }
  .xxl-up-px-lg {
    padding-inline: 4rem;
  }
  .xxl-up-m-xl {
    margin: 5rem;
  }
  .xxl-up-mt-xl {
    margin-top: 5rem;
  }
  .xxl-up-mb-xl {
    margin-bottom: 5rem;
  }
  .xxl-up-my-xl {
    margin-block: 5rem;
  }
  .xxl-up-ml-xl {
    margin-left: 5rem;
  }
  .xxl-up-mr-xl {
    margin-right: 5rem;
  }
  .xxl-up-mx-xl {
    margin-inline: 5rem;
  }
  .xxl-up-p-xl {
    padding: 5rem;
  }
  .xxl-up-pt-xl {
    padding-top: 5rem;
  }
  .xxl-up-pb-xl {
    padding-bottom: 5rem;
  }
  .xxl-up-py-xl {
    padding-block: 5rem;
  }
  .xxl-up-pl-xl {
    padding-left: 5rem;
  }
  .xxl-up-pr-xl {
    padding-right: 5rem;
  }
  .xxl-up-px-xl {
    padding-inline: 5rem;
  }
  .xxl-up-m-xxl {
    margin: 7.5rem;
  }
  .xxl-up-mt-xxl {
    margin-top: 7.5rem;
  }
  .xxl-up-mb-xxl {
    margin-bottom: 7.5rem;
  }
  .xxl-up-my-xxl {
    margin-block: 7.5rem;
  }
  .xxl-up-ml-xxl {
    margin-left: 7.5rem;
  }
  .xxl-up-mr-xxl {
    margin-right: 7.5rem;
  }
  .xxl-up-mx-xxl {
    margin-inline: 7.5rem;
  }
  .xxl-up-p-xxl {
    padding: 7.5rem;
  }
  .xxl-up-pt-xxl {
    padding-top: 7.5rem;
  }
  .xxl-up-pb-xxl {
    padding-bottom: 7.5rem;
  }
  .xxl-up-py-xxl {
    padding-block: 7.5rem;
  }
  .xxl-up-pl-xxl {
    padding-left: 7.5rem;
  }
  .xxl-up-pr-xxl {
    padding-right: 7.5rem;
  }
  .xxl-up-px-xxl {
    padding-inline: 7.5rem;
  }
  .xxl-up-m-fluid {
    margin: var(--side-margin);
  }
  .xxl-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xxl-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xxl-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .xxl-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xxl-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xxl-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xxl-up-p-fluid {
    padding: var(--side-margin);
  }
  .xxl-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xxl-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xxl-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .xxl-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xxl-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xxl-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
/*
|
| BACKGROUND COLORS
|----------------
|
*/
.bg-black {
  background-color: #111;
}

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

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

.bg-grey {
  background-color: #8488a3;
}

.bg-yellow {
  background-color: #1f6b6b;
}

.bg-dark-blue {
  background-color: #0A1147;
}

.bg-blue-navy {
  background-color: #242D69;
}

.bg-blue-alt {
  background-color: #1E3B7B;
}

.bg-blue {
  background-color: #00339E;
}

.bg-khaki {
  background-color: #7E6831;
}

.bg-dark-khaki {
  background-color: #382A06;
}

/*
|
| TEXT ALIGNS
|----------------
|
*/
/*
|
| FONT FAMILIES
|----------------
|
*/
/*
|
| FONT SIZES
|----------------
|
*/
/*
|
| FONT WEIGHTS
|----------------
|
*/
/*
|
| TITLES
|----------------
|
*/
/*
|
| COLORS
|----------------
|
*/
.c-black {
  color: #111;
}

.c-white {
  color: #fff;
}

.c-light-grey {
  color: #e5ebee;
}

.c-grey {
  color: #8488a3;
}

.c-yellow {
  color: #1f6b6b;
}

.c-dark-blue {
  color: #0A1147;
}

.c-blue-navy {
  color: #242D69;
}

.c-blue-alt {
  color: #1E3B7B;
}

.c-blue {
  color: #00339E;
}

.c-khaki {
  color: #7E6831;
}

.c-dark-khaki {
  color: #382A06;
}

:root {
  --header-height: 112px;
  --side-margin: clamp(20px, 3.5vw, 70px);
  --container-width: 86rem;
}

@font-face {
  font-family: "Albra";
  src: url(../fonts/albra/300.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "PP Neue Montreal";
  src: url(../fonts/pp-neue-montreal/500.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

hr {
  border: 0;
}

button,
input,
select,
textarea {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  appearance: none;
  letter-spacing: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
button,
select,
input,
textarea {
  color: inherit;
}

a,
button {
  cursor: pointer;
}

button {
  text-transform: inherit;
}

a {
  text-decoration: none;
}

ol li,
ul li {
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

[hidden] {
  display: none !important;
}

html,
body {
  scroll-behavior: smooth;
}
@media (hover: hover) {
  html,
  body {
    overscroll-behavior: none;
  }
}
html.no-scroll,
body.no-scroll {
  overflow-y: hidden;
}

body {
  display: flex;
  min-height: 100dvh;
  color: #382A06;
  flex-direction: column;
  font-family: PP Neue Montreal, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 64rem) {
  body::before {
    position: fixed;
    inset: 0;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  body:has(.submenu:is([data-state=opening], [data-state=opened]))::before {
    opacity: 1;
  }
}

[data-scroll=start] .home .header,
[data-scroll=start] .page-template-modular .header {
  background-color: transparent;
}
[data-scroll=start] .home .header .logo,
[data-scroll=start] .page-template-modular .header .logo {
  display: block;
  height: 28px;
  width: auto;
}
[data-scroll=start] .home .header .logo_b,
[data-scroll=start] .page-template-modular .header .logo_b {
  display: none;
}
@media (min-width: 64rem) {
  [data-scroll=start] .home .header .menu-link,
  [data-scroll=start] .home .header .language-link,
  [data-scroll=start] .home .header .language-toggle,
  [data-scroll=start] .home .header .language-item,
  [data-scroll=start] .page-template-modular .header .menu-link,
  [data-scroll=start] .page-template-modular .header .language-link,
  [data-scroll=start] .page-template-modular .header .language-toggle,
  [data-scroll=start] .page-template-modular .header .language-item {
    color: #fff;
  }
}
[data-scroll=start] .home .header .menu-toggle[aria-expanded=true] .menu-toggle-icon,
[data-scroll=start] .page-template-modular .header .menu-toggle[aria-expanded=true] .menu-toggle-icon {
  background-color: transparent;
}
[data-scroll=start] .home .header .menu-toggle-icon,
[data-scroll=start] .home .header .menu-toggle-icon::before,
[data-scroll=start] .home .header .menu-toggle-icon::after,
[data-scroll=start] .page-template-modular .header .menu-toggle-icon,
[data-scroll=start] .page-template-modular .header .menu-toggle-icon::before,
[data-scroll=start] .page-template-modular .header .menu-toggle-icon::after {
  background-color: #fff;
}

.page-template-modular nav,
.page-template-modular .menu-list-item,
.page-template-modular .menu-list-option {
  display: none;
}
.page-template-modular .hero .image-content {
  height: calc(100vh + 4.57rem);
}
.page-template-modular .footer .ft-left-links li {
  display: none;
}
.page-template-modular .footer .ft-left-links li.copyright {
  display: list-item;
}

.wrapper {
  flex: 1 1 auto;
  margin-top: -8.29rem;
}
@media (max-width: 63.98rem) {
  .wrapper {
    margin-top: -4.49rem;
  }
}

.quick-access {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.quick-access:not(:focus-within) {
  opacity: 0;
}
.quick-access-link:not(:focus-visible) {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

*:focus-visible {
  outline: 1px solid #7E6831;
  outline-offset: 1px;
}

.icon {
  display: inline-block;
  width: 1em;
  min-width: 1em;
  height: 1em;
  min-height: 1em;
  fill: none;
}
.icon [fill] {
  fill: currentColor;
}
.icon [stroke] {
  stroke: currentColor;
}

.screen-reader-text {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

.cms p:not(:first-child),
.cms ul:not(:first-child),
.cms ol:not(:first-child),
.cms h1:not(:first-child),
.cms h2:not(:first-child),
.cms h3:not(:first-child),
.cms h4:not(:first-child),
.cms h5:not(:first-child),
.cms h6:not(:first-child),
.cms table:not(:first-child) {
  margin-top: 1em;
}
.cms img {
  display: block;
  height: auto;
}
.cms ul:not([class]),
.cms ol:not([class]) {
  margin-top: 1em;
  padding-left: 1.25em;
}
.cms ul:not([class]) li:not(:first-child),
.cms ol:not([class]) li:not(:first-child) {
  margin-top: 0.25em;
}
.cms ul:not([class]) li {
  list-style: disc;
}
.cms ul:not([class]) li ul li {
  list-style: circle;
}
.cms ol:not([class]) li {
  list-style: decimal;
}
.cms a {
  color: #7E6831;
  transition: all ease 0.3s;
}
.cms a:hover {
  opacity: 0.7;
}
.cms a:not([class]) {
  text-decoration: underline;
}
.cms table th,
.cms table td {
  padding-block: 0.25rem;
}
.cms table th:not(:last-child),
.cms table td:not(:last-child) {
  padding-right: 1rem;
}

.is-hidden {
  display: none !important;
}

.rel {
  position: relative;
}

.full {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.indent {
  text-indent: 1.5rem;
}

.grid-item {
  display: grid;
}

.m-a {
  margin: auto;
}

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

.c-w {
  color: #fff;
}

.z3 {
  z-index: 3;
}

.d-g {
  display: grid;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.gx-md {
  --gx: 3.75rem;
}

.gx-xs {
  --gx: 0.5rem;
}

.gy40 {
  --gy: 4rem;
}

.al-b {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.a-c {
  display: flex;
  align-items: center;
}

.gx-12 {
  --gx: 12rem;
}
@media (max-width: 78.98rem) {
  .gx-12 {
    --gx: 6rem;
  }
}
@media (max-width: 63.98rem) {
  .gx-12 {
    --gx: 0rem;
  }
}

.fade-in-up {
  opacity: 0;
}

.content-image {
  width: 100%;
  overflow: hidden;
}
.content-image .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flex-column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 64rem) {
  .flex-lg-row {
    flex-direction: row;
  }
}
.simple-link {
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02625rem;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #fff;
  text-transform: uppercase;
}
.simple-link svg {
  margin-right: 5px;
}

.screen-reader-text {
  display: none;
}

.no-pad {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.no-marge {
  width: 100%;
  margin: auto;
}

@media (max-width: 47.98rem) {
  .no-marge-mob {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
hr {
  height: 1px;
  width: 100%;
  margin: 30px 0;
  background-color: black;
}

.dflex {
  display: flex;
  vertical-align: middle;
  align-items: center;
}

.row-auto {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
@media (max-width: 63.98rem) {
  .row-auto {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 47.98rem) {
  .row-auto {
    grid-template-columns: 1fr;
  }
}

.cms h1,
.title-h1,
.text-seo h1 {
  font-family: "Albra";
  font-size: 4.3rem;
  font-style: normal;
  font-weight: 300;
  line-height: 5rem;
  letter-spacing: -0.08625rem;
}
@media (max-width: 78.98rem) {
  .cms h1,
  .title-h1,
  .text-seo h1 {
    font-size: 3.4rem;
    line-height: 120%;
  }
}
@media (max-width: 63.98rem) {
  .cms h1,
  .title-h1,
  .text-seo h1 {
    font-size: 3rem;
  }
}
@media (max-width: 35.98rem) {
  .cms h1,
  .title-h1,
  .text-seo h1 {
    font-size: 2.2rem;
  }
}

.cms h2,
.title-h2,
.text-seo h2 {
  font-family: "Albra";
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.05rem;
}
@media (max-width: 47.98rem) {
  .cms h2,
  .title-h2,
  .text-seo h2 {
    font-size: 1.8rem;
  }
}

.cms h3,
.title-h3,
.text-seo h3 {
  font-family: "Albra";
  color: #111;
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: -0.12rem;
}
@media (max-width: 47.98rem) {
  .cms h3,
  .title-h3,
  .text-seo h3 {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.cms h4,
.title-h4,
.text-seo h4 {
  font-family: "Albra";
  color: #111;
  font-size: 1.8rem;
  line-height: 2.2rem;
  letter-spacing: -0.12rem;
}
@media (max-width: 47.98rem) {
  .cms h4,
  .title-h4,
  .text-seo h4 {
    font-size: 1.6rem;
    line-height: 1;
  }
}

/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

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

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

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

/* Auto Height */
.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);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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-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:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .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);
  }
}
/* Slide styles end */
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.btn,
.button {
  color: #7E6831;
  display: inline-flex;
  transition: all ease 0.4s;
  position: relative;
}
.btn:after,
.button:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  position: absolute;
  background-color: #7E6831;
  transition: all ease 0.4s;
}
.btn:hover,
.button:hover {
  opacity: 0.5;
}
.btn:hover:after,
.button:hover:after {
  content: "";
  opacity: 0.5;
}
.btn.btn_alt,
.button.btn_alt {
  color: #fff;
  background-color: #7E6831;
  display: inline-flex;
  cursor: pointer;
  transition: all ease 0.4s;
  margin-right: 1rem;
  font-size: 0.875rem;
  padding: 0.3rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  text-decoration: none;
  border: 1px solid #7E6831;
}
.btn.btn_alt:after,
.button.btn_alt:after {
  content: none;
}
.btn.btn_alt:hover,
.button.btn_alt:hover {
  opacity: 1;
  color: #7E6831;
  background-color: #fff;
  transition: all ease 0.4s;
}
.btn.btn_alt2,
.button.btn_alt2 {
  color: #7E6831;
  background-color: #fff;
  border: 1px solid #7E6831;
  display: inline-flex;
  cursor: pointer;
  transition: all ease 0.4s;
  margin-right: 1rem;
  font-size: 0.875rem;
  padding: 0.3rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  text-decoration: none;
}
.btn.btn_alt2:after,
.button.btn_alt2:after {
  content: none;
}
.btn.btn_alt2:hover,
.button.btn_alt2:hover {
  opacity: 1;
  color: #fff;
  background-color: #7E6831;
  transition: all ease 0.4s;
}

.post-card .image-content {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  position: relative;
}
.post-card .image-content::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0A1147;
}
.post-card .image-content .post-card-tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  padding: 0.35rem 0.5rem;
  color: #fff;
  background: #989898;
  opacity: 0.7;
  border-radius: 0.2rem;
  font-size: 0.75rem;
  line-height: 130%;
}
.post-card .image-content .post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease 0.5s;
}
.post-card .post-card-date {
  font-size: 0.75rem;
  display: block;
}
.post-card .post-card-title {
  font-family: "Albra";
  font-size: 1.25rem;
  line-height: 1.9375rem;
  display: block;
  transition: all ease 0.4s;
}
.post-card:hover .image-content img {
  transform: scale(1.04);
  transition: transform ease 0.8s;
}
.post-card:hover .post-card-title {
  opacity: 0.4;
}
.post-card:has(a:focus-visible) {
  outline: 1px solid #7E6831;
  outline-offset: 1px;
}

.post-card-funds {
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(126, 104, 49, 0.1);
}
.post-card-funds .image-content {
  width: 100%;
  height: auto;
  aspect-ratio: 1.97/1;
  overflow: hidden;
  display: block;
  position: relative;
}
.post-card-funds .image-content .post-card-tag {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.post-card-funds .image-content .post-card-tag .post-tag {
  display: inline-block;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 130%;
  padding: 0.35rem 0.5rem;
  position: relative;
  overflow: hidden;
}
.post-card-funds .image-content .post-card-tag .post-tag:before {
  content: "";
  opacity: 0.3;
  background: #120e02;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.post-card-funds .image-content .post-card-tag .post-tag span {
  z-index: 1;
  position: relative;
}
.post-card-funds .image-content .post-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform ease 0.6s;
}
.post-card-funds .post-details {
  display: block;
  padding: 1.5rem;
}
.post-card-funds .post-details .post-card-title {
  font-family: "Albra";
  font-size: 1.75rem;
  line-height: 1.9375rem;
  display: block;
}
.post-card-funds .post-details .post-card-desc {
  height: 4rem;
  font-size: 0.875rem;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-funds .post-details .post-features {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0.5rem 0;
}
.post-card-funds .post-details .post-features .feature-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e7e5e0;
  padding: 0.4rem 0;
}
.post-card-funds .post-details .post-features .feature-row .title-features {
  opacity: 0.8;
  color: #5c4a33;
  font-size: 0.875rem;
  min-width: 50%;
}
.post-card-funds .post-details .post-features .feature-row .value-features {
  font-size: 0.875rem;
  color: #5c4a33;
  text-align: right;
}
.post-card-funds .post-details .post-card-btn {
  color: #7E6831;
  font-size: 0.875rem;
  display: block;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  text-align: center;
  width: 100%;
  border: 1px solid #dad3be;
  transition: all ease 0.6s;
}
.post-card-funds:hover .image-content img {
  transform: scale(1.04);
  transition: transform ease 0.6s;
}
.post-card-funds:hover .post-card-btn {
  color: #fff;
  background-color: #7E6831;
  border: 1px solid #7E6831;
  transition: all ease 0.6s;
}
.post-card-funds:focus-visible {
  outline: 1px solid #7E6831;
  outline-offset: 1px;
  display: inline-block;
}
.post-card-funds:has(a:focus-visible) {
  outline: 1px solid #7E6831;
  outline-offset: 1px;
}

.form {
  width: 75%;
  margin: auto;
  padding: 3rem 0;
}
@media (max-width: 89.98rem) {
  .form {
    width: 90%;
  }
}
.form .input, .form .ginput_container_text input, .form .ginput_container_email input, .form .ginput_container_phone input, .form .ginput_container_select select {
  display: block;
  width: 100%;
}
.form .radio, .form .ginput_container_radio .gchoice,
.form .checkbox,
.form .ginput_container_checkbox .gchoice {
  display: inline-flex;
  align-items: flex-start;
}
.form .radio-input, .form .ginput_container_radio input,
.form .checkbox-input,
.form .ginput_container_checkbox input {
  display: flex;
  min-width: 1rem;
  aspect-ratio: 1/1;
  border: 1px solid;
  margin-top: 0.25rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form .radio-input::before, .form .ginput_container_radio input::before,
.form .checkbox-input::before,
.form .ginput_container_checkbox input::before {
  display: block;
  content: "";
  color: transparent;
}
.form .radio-input:checked::before, .form .ginput_container_radio input:checked::before,
.form .checkbox-input:checked::before,
.form .ginput_container_checkbox input:checked::before {
  color: currentColor;
}
.form .radio-label, .form .ginput_container_radio label,
.form .checkbox-label,
.form .ginput_container_checkbox label {
  padding-left: 0.5rem;
}
.form input[type=radio]:focus {
  outline: 2px solid;
  outline-offset: 2px;
}
.form .radio-input, .form .ginput_container_radio input {
  padding: 0.125rem;
  border-radius: 100%;
}
.form .radio-input::before, .form .ginput_container_radio input::before {
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: inherit;
  background-color: currentColor;
  scale: 0;
}
.form .radio-input:checked::before, .form .ginput_container_radio input:checked::before {
  scale: 1;
  transition: scale 0.2s ease;
}
.form .checkbox-input::before, .form .ginput_container_checkbox input::before {
  width: 0.375em;
  height: 0.625em;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
  transform-origin: 80% 50%;
}
.form .checkbox-input:checked::before, .form .ginput_container_checkbox input:checked::before {
  animation: checkmark 0.25s ease forwards;
}
.form .gform_submission_error {
  background-color: #f00;
  color: #fff;
}
.form .gform_fields {
  display: grid;
  gap: 1.5rem 1rem;
}
.form .gform_footer {
  display: flex;
  margin-top: 1.5rem;
  align-items: center;
  gap: 0.5rem;
}
.form .gform_link {
  text-decoration: underline;
}
.form .gform-loader {
  display: block;
  width: 1.5rem;
  aspect-ratio: 1/1;
  border: 2px solid rgba(17, 17, 17, 0.1);
  border-radius: 100%;
  border-top-color: #111;
  animation: spin 1s linear infinite;
}
@media (min-width: 64rem) {
  .form .gform_fields {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 63.98rem) {
  .form .gform_fields {
    grid-template-columns: 100%;
  }
}
.form .gfield {
  margin-top: 1rem;
  position: relative;
}
.form .gfield:is(fieldset) {
  border: none;
}
.form .gfield:is(fieldset) legend {
  overflow: hidden;
}
.form .gfield_label {
  display: block;
  color: #120e02;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem;
}
.form .gfield--type-captcha .form .gfield_label {
  display: none;
}
.form .gfield_required,
.form .gfield .instruction, .form .gfield_validation_message {
  color: red;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  padding-left: 0.2rem;
}
.form .gfield_required {
  color: #111;
}
.form .gfield_radio, .form .gfield_checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
}
@media (min-width: 64rem) {
  .form .gfield--width-full {
    grid-column: span 12;
  }
  .form .gfield--width-half {
    grid-column: span 6;
  }
  .form .gfield--width-third {
    grid-column: span 4;
  }
  .form .gfield--width-quarter {
    grid-column: span 3;
  }
}
.form .gfield--type-html {
  margin-top: -1.7rem;
  font-size: 0.9375rem;
  color: #120e02;
}
.form .gfield--type-html p {
  display: block;
}
.form .gfield--type-honeypot {
  display: none;
}
.form .ginput_container_consent {
  display: flex;
  color: #111;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.form .ginput_container_consent input[type=checkbox] {
  display: flex;
  min-width: 1rem;
  aspect-ratio: 1;
  padding: 1px;
  border: 1px solid #1f6b6b;
  color: transparent;
  cursor: pointer;
  height: 16px;
  margin-top: 6px;
  border-radius: 50%;
}
.form .ginput_container_consent input[type=checkbox]::before {
  content: "";
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1;
  background-color: currentColor;
}
.form .ginput_container_consent input[type=checkbox]:checked {
  color: #1f6b6b;
}
.form .ginput_container_consent input[type=checkbox] + label {
  padding-left: 0.5rem;
  margin-top: 0.0625rem;
}
.form .ginput_container_consent a {
  color: #7E6831;
  text-decoration: underline;
}
.form .gform_submission_error {
  background-color: #f00;
  color: #d50f00;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4375rem;
  padding: 1.5rem 1rem;
  background: #fdf3f2;
  display: flex;
  margin-bottom: 20px;
}
.form button[type=submit] {
  width: 100%;
  text-align: center;
  color: white;
  background: #111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
  padding: 1rem 0;
  display: block;
}
.form button[type=submit] span {
  margin: 10px auto;
}
.form .gfield_label {
  transition: all ease 0.3s;
}
.form .ginput_container_text input, .form .ginput_container_email input, .form .ginput_container_phone input, .form .ginput_container_select select {
  color: #120e02;
  font-family: Albra;
  font-size: 1.25rem;
  line-height: 1.9375rem;
  border-bottom: 1px solid #f2f0ea;
  padding: 0.3rem 1.625rem 0.3rem 0;
}
.gfield_error .form .ginput_container_text input, .gfield_error .form .ginput_container_email input, .gfield_error .form .ginput_container_phone input, .gfield_error .form .ginput_container_select select {
  border-color: #f00;
}

.form .ginput_container_text input:focus, .form .ginput_container_email input:focus, .form .ginput_container_phone input:focus, .form .ginput_container_select select:focus {
  outline: none;
  border-color: #c99c66;
  box-shadow: 0 0 0 0px #1f6b6b;
}
.form .ginput_container_textarea textarea {
  width: 100%;
  height: calc(9em + 2px);
  min-height: calc(1.5em + 2px);
  padding: 0.6rem 1rem;
  resize: vertical;
  font-family: "PP Neue Montreal";
  border: 1px solid var(--7E6831-10, rgba(126, 104, 49, 0.1));
}
.form .ginput_container_textarea textarea:focus {
  outline: none;
  border-color: #c99c66;
  box-shadow: 0 0 0 0px #1f6b6b;
}
.form .ginput_container_select {
  position: relative;
}
.form .ginput_container_select select {
  padding: 0.3rem 1.625rem 0.3rem 0;
}
.form .ginput_container_select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  pointer-events: none;
}
.form .required-fields {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25rem;
}
.form .gfield--type-choice legend,
.form .gfield--type-choice label,
.form .gfield--input-type-textarea legend,
.form .gfield--input-type-textarea label {
  margin-bottom: 0.7rem;
}
.form .gform_heading,
.form .gform_required_legend {
  display: none;
}
@keyframes checkmark {
  0% {
    clip-path: polygon(0 calc(100% - 2px), 0 calc(100% - 2px), 0 calc(100% - 2px), 0 100%, 0 100%, 0 100%);
  }
  30% {
    clip-path: polygon(0 calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), 100% 100%, 100% 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes spin {
  to {
    rotate: 360deg;
  }
}
.form .alert-info {
  color: #d50f00;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4375rem;
  padding: 1.5rem 1rem;
  background: #fdf3f2;
  display: flex;
}
.form .alert-info::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  margin: 0 0.5rem 0 0;
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-image: url(../img/alert-info.svg);
}

.modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: var(--side-margin);
  overflow: auto;
  transition: background-color 0.5s ease;
}
.modal-inner {
  padding: var(--side-margin);
  margin: auto;
  background-color: #fff;
  color: #000;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[role=dialog] > .modal-inner {
  width: 100%;
  max-width: 54rem;
}

[role=alertdialog] > .modal-inner {
  width: fit-content;
}

.modal[inert] {
  background-color: rgba(0, 0, 0, 0);
}
.modal[inert] .modal-inner {
  opacity: 0;
  transform: translateY(var(--side-margin));
}

.modal-overlay-type {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.4s ease;
}
.modal-overlay-type.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-invest-type {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  width: 90%;
  max-width: 64rem;
  max-height: 90vh;
  background: white;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.modal-invest-type.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.modal-invest-type .required-field {
  font-size: 0.8rem;
}
@media (max-width: 63.98rem) {
  .modal-invest-type .row {
    gap: 0;
  }
}
.modal-invest-type .item:first-child {
  padding: 3rem;
}
@media (max-width: 63.98rem) {
  .modal-invest-type .item:first-child {
    padding: 1.5rem;
  }
}
.modal-invest-type .item:first-child .title {
  font-family: Albra;
  font-size: 2.3rem;
  line-height: 120%;
}
@media (max-width: 63.98rem) {
  .modal-invest-type .item:first-child .title {
    font-size: 1.8rem;
  }
}
.modal-invest-type .item:first-child input[type=radio] {
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 1rem;
  aspect-ratio: 1;
  padding: 1px;
  border: 1px solid #000;
  color: transparent;
  cursor: pointer;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  position: relative;
}
.modal-invest-type .item:first-child input[type=radio]:checked::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-invest-type .item:first-child .form-check {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
}
.modal-invest-type .item:first-child .form-check.border-start input[type=radio] {
  border: 1px solid #1f6b6b;
}
.modal-invest-type .item:first-child .form-check.border-start input[type=radio]:checked::before {
  background-color: #1f6b6b;
}
.modal-invest-type .item:first-child .form-check-warning {
  font-size: 0.75rem;
}
.modal-invest-type .item:first-child #invest-validate {
  background: black;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s ease;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-invest-type .item:first-child #invest-validate::after {
  content: none;
}
.modal-invest-type .item:first-child #invest-validate:disabled {
  opacity: 0.7;
  cursor: default;
}
.modal-invest-type .item:last-child {
  padding: 3rem;
  border-left: 1px solid #eee;
}
@media (max-width: 63.98rem) {
  .modal-invest-type .item:last-child {
    padding: 1.5rem;
  }
}
.modal-invest-type .item:last-child .scroll {
  max-height: 23rem;
  overflow-y: auto;
  padding-right: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: #1f6b6b #f7f7f7;
}
.modal-invest-type .item:last-child .scroll::-webkit-scrollbar {
  width: 2px;
}
.modal-invest-type .item:last-child .scroll::-webkit-scrollbar-track {
  background: #f7f7f7;
  border-radius: 2px;
}
.modal-invest-type .item:last-child .scroll::-webkit-scrollbar-thumb {
  background: #1f6b6b;
  border-radius: 2px;
}
.modal-invest-type .item:last-child .scroll .title-alt {
  font-family: Albra;
  font-size: 1.75rem;
  line-height: 120%;
}
.modal-invest-type .item:last-child .scroll .cms {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.125rem;
  letter-spacing: 0.015rem;
}
.modal-invest-type .item:last-child .scroll .text-muted {
  color: #ccc;
}

.pagination {
  margin: 5rem auto 0 auto;
  width: fit-content;
}
.pagination, .pagination-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 35.98rem) {
  .pagination, .pagination-list {
    gap: 0.3rem;
  }
}
.pagination-arrow {
  vertical-align: middle;
  align-items: center;
  display: flex;
  border: 1px solid #8f94a8;
  aspect-ratio: 1;
  height: 2.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 50rem;
}
@media (max-width: 35.98rem) {
  .pagination-arrow {
    padding: 0.4rem;
    height: initial;
  }
}
.pagination-arrow:disabled {
  opacity: 0.5;
  cursor: default;
}
.pagination-link {
  height: 2.5rem;
  padding: 0.375rem 0.4rem;
  color: #8d8d8d;
  background: #fff;
  transition: all ease 0.3s;
}
@media (max-width: 35.98rem) {
  .pagination-link {
    gap: 0.3rem;
    height: 1.95rem;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
  }
}
.pagination-link[aria-current=true] {
  color: #111;
  border-bottom: 1px solid #111;
}
.pagination-link:hover {
  transition: all ease 0.3s;
  border-bottom: 1px solid #111;
}

.image-anime {
  position: relative;
  overflow: hidden;
  display: flex;
}
.image-anime img {
  position: relative;
  z-index: 1;
}
.image-anime::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1f6b6b;
  opacity: 1;
  transition: opacity 1s ease-out;
  z-index: 2;
}
.image-anime.in-view::before {
  opacity: 0;
}

.header {
  width: 100%;
  top: calc(-1 * var(--header-h) + var(--header-o));
  z-index: 999;
  padding: 1rem 0;
  transition: all 0.5s ease;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.header .header-logo {
  height: 28px;
}
.header .header-logo .logo {
  display: none;
}
.header .header-logo .logo-inner {
  display: block;
}
.header .header-logo .logo_b {
  display: block;
}
@media (min-width: 64rem) {
  .header {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% + var(--submenu-h, 0px)), 0 calc(100% + var(--submenu-h, 0px)));
    transition: clip-path 0.5s ease;
  }
  .header::before {
    display: block;
    width: 100%;
    height: calc(var(--viewport-height, 100vh) - 100% - 1px);
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    z-index: -2;
    background-color: inherit;
    content: "";
  }
}
.header.active {
  background-color: #1c1c1c !important;
}
.header.active .logo {
  display: block;
}
.header.active .logo_b {
  display: none;
}
.header.active .menu-toggle-icon:before, .header.active .menu-toggle-icon:after {
  background-color: white !important;
}

.menu-wrapper {
  display: flex;
  gap: 1.5rem 1rem;
}
.menu-list {
  display: flex;
  column-gap: 1.25rem;
}
.menu-item {
  display: flex;
}
.menu-link {
  display: flex;
}
.menu-search {
  display: flex;
  border: 1px solid;
  align-items: center;
}
.menu-search-input {
  padding-inline: 0.25rem;
}
.menu-search-button {
  display: grid;
  width: 1.5rem;
  aspect-ratio: 1;
  place-items: center;
}
@media (min-width: 64rem) {
  .menu {
    margin-left: auto;
  }
  .menu-toggle {
    display: none;
  }
  .menu-wrapper {
    gap: 1.5rem 3rem;
    align-items: baseline;
  }
  .menu-link,
  .menu .language-item {
    font-size: 0.875rem;
    line-height: 1.25rem;
    position: relative;
  }
  .menu-link.is-active,
  .menu .language-item.is-active {
    color: #1f6b6b;
  }
  .menu-link:before,
  .menu .language-item:before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background-color: #1f6b6b;
    position: absolute;
    top: 5px;
    left: -25px;
    margin-right: 7px;
    opacity: 0;
    transition: all cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
  }
  .menu-link:hover:before,
  .menu .language-item:hover:before {
    content: "";
    left: -17px;
    opacity: 1;
  }
  .menu-list-item {
    display: block;
  }
  .menu-list-option {
    width: 6rem;
  }
  .menu-list {
    align-items: baseline;
  }
  [aria-expanded=true] > .menu-arrow {
    rotate: 180deg;
  }
}
.menu .language-item {
  font-size: 0.875rem;
  line-height: 1.25rem;
  position: relative;
}
.menu .language-item.is-active {
  color: #1f6b6b;
}
.menu .language-item:before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background-color: #1f6b6b;
  position: absolute;
  top: 8px;
  left: -25px;
  margin-right: 7px;
  opacity: 0;
  transition: all cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.menu .language-item:hover:before {
  content: "";
  left: -17px;
  opacity: 1;
}
@media (max-width: 63.98rem) {
  .menu-toggle {
    display: flex;
    width: 2.5rem;
    aspect-ratio: 1/1;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
  }
  .menu-toggle-icon {
    width: 1em;
    position: relative;
    margin-block: 0.3em;
    transform-origin: 0.5em 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .menu-toggle-icon, .menu-toggle-icon::before, .menu-toggle-icon::after {
    display: block;
    height: 2px;
    border-radius: 2px;
    background-color: currentColor;
  }
  .menu-toggle-icon::before, .menu-toggle-icon::after {
    width: 1em;
    position: absolute;
    left: 0;
    content: "";
    transition: transform 0.3s ease;
  }
  .menu-toggle-icon::before {
    top: -0.3em;
  }
  .menu-toggle-icon::after {
    bottom: -0.3em;
  }
  .menu-toggle[aria-expanded=true] .menu-toggle-icon {
    background-color: transparent;
    transform: rotate(180deg);
  }
  .menu-toggle[aria-expanded=true] .menu-toggle-icon::before {
    transform: translateY(0.3em) rotate(-45deg);
  }
  .menu-toggle[aria-expanded=true] .menu-toggle-icon::after {
    transform: translateY(-0.3em) rotate(45deg);
  }
  .menu-wrapper {
    width: 100%;
    position: absolute;
    top: 72px;
    height: 100%;
    left: 0;
    z-index: -1;
    padding: 2.5rem var(--side-margin);
    flex-direction: column;
    align-items: center;
    background-color: #111;
    transition: opacity 0.5s ease;
  }
  .menu-wrapper[inert] {
    opacity: 0;
  }
  .menu-list {
    width: calc(100% + 2 * var(--side-margin));
    padding-inline: var(--side-margin);
    margin-inline: calc(-1 * var(--side-margin));
    flex-direction: column;
    overflow: auto;
  }
}
@media (max-width: 63.98rem) and (min-width: 64rem) {
  .menu-list {
    flex: 1 1 auto;
  }
}
@media (max-width: 63.98rem) {
  .menu-link {
    font-family: Albra;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 300;
    line-height: 3.25rem; /* 130% */
    letter-spacing: -0.05rem;
    position: relative;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    color: white;
  }
  .menu-list-lang {
    width: initial;
    color: white;
    overflow: initial;
    flex-direction: initial;
    margin-inline: initial;
    padding-inline: initial;
    color: white;
    padding-top: 0.2rem;
  }
}
@media (max-width: 63.98rem) and (max-width: 63.98rem) {
  .menu-list-lang {
    position: absolute;
    right: 70px;
    top: 22px;
  }
}
@media (max-width: 63.98rem) {
  .menu-item:not(.language):not(:first-child) {
    margin-top: 0.75rem;
  }
  .menu-arow {
    rotate: -90deg;
  }
}

.submenu {
  width: 100%;
  position: absolute;
  padding-inline: var(--side-margin);
  transition: opacity 0.5s ease;
}
.submenu[inert] {
  opacity: 0;
}
.submenu-wrapper {
  display: grid;
  position: relative;
  column-gap: var(--side-margin);
}
.submenu-header, .submenu-content {
  padding-block: 2.5rem;
}
.submenu-text {
  margin-top: 1rem;
}
.submenu-button {
  margin-top: 2rem;
}
.submenu-list {
  display: grid;
  gap: 1.5rem var(--side-margin);
}
.submenu-close {
  display: grid;
  width: 2rem;
  aspect-ratio: 1/1;
  position: absolute;
  place-items: center;
  font-size: 1.25rem;
}
@media (min-width: 64rem) {
  .submenu {
    top: calc(100% + 1px);
    left: 0;
    z-index: -1;
    border-bottom: 1px solid #eee;
  }
  .submenu-wrapper {
    grid-template-columns: 1fr 3fr;
  }
  .submenu-header {
    padding-right: var(--side-margin);
    border-right: 1px solid #eee;
  }
  .submenu-list {
    grid-template-columns: 1fr 1fr;
  }
  .submenu-close {
    bottom: 1rem;
    right: 0;
    opacity: 0;
    pointer-events: none;
  }
  .submenu-close:focus-visible {
    opacity: 1;
  }
}
@media (max-width: 63.98rem) {
  .submenu {
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
    overflow: auto;
  }
  .submenu-wrapper {
    grid-template-columns: 100%;
  }
  .submenu-header {
    border-bottom: 1px solid #eee;
  }
  .submenu-close {
    top: 2rem;
    right: 0;
  }
}
@media (max-width: 47.98rem) {
  .submenu-list {
    grid-template-columns: 100%;
  }
}

.language {
  font-size: 0.875rem;
  position: relative;
}
.language-toggle {
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
}
.language-toggle:before {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background-color: #1f6b6b;
  position: absolute;
  top: 5px;
  left: -25px;
  margin-right: 7px;
  opacity: 0;
  transition: all cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}
.language-toggle:hover:before {
  content: "";
  left: -17px;
  opacity: 1;
}
.language-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  padding: 0;
  z-index: 10;
}
.language-list.is-visible {
  display: flex;
}
.language-item:not(:last-child) {
  position: relative;
}
.language-item:not(:last-child)::after {
  display: block;
  width: 1em;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  text-align: center;
  font-weight: 700;
  content: "·";
}
.language-link[aria-current=true] {
  font-weight: 500;
}

.shortcut-link {
  position: absolute;
  top: calc(var(--header-height) + 1rem);
  left: 1rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}
.shortcut-link:focus-visible {
  opacity: 1;
}

footer {
  border-top: 1px solid #e8e8e8;
  padding: 2rem 0;
}
@media (max-width: 63.98rem) {
  footer .row {
    gap: 0;
  }
}
footer ul li {
  font-size: 0.8125rem;
  padding: 0 0.25rem;
  display: inline-flex;
}
footer ul li a {
  transition: all ease 0.3s;
}
footer ul li a:hover {
  color: #7E6831;
}
footer .ft-left-links ul {
  text-align: left;
}
@media (max-width: 63.98rem) {
  footer .ft-left-links ul {
    text-align: center;
  }
}
footer .ft-left-links ul .copyright {
  opacity: 0.4;
  color: #120e02;
}
footer .ft-right-links ul {
  text-align: right;
}
@media (max-width: 63.98rem) {
  footer .ft-right-links ul {
    text-align: center;
  }
}

.image-text .title-h2 {
  font-size: 2.5rem;
}
@media (max-width: 63.98rem) {
  .image-text .title-h2 {
    font-size: 1.8rem;
  }
}
.image-text img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.image-text .text-img-text {
  font-size: 1rem;
}

.big-image-text .title-h2 {
  font-size: 2.5rem;
}
@media (max-width: 63.98rem) {
  .big-image-text .title-h2 {
    font-size: 1.8rem;
  }
}
.big-image-text .reverse-order {
  flex-direction: row-reverse;
}
.big-image-text img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.big-image-text .details {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.big-image-text .details .text-img-text {
  font-size: 1rem;
}
.big-image-text .details span {
  margin-top: auto;
}

.image-list .title-h2 {
  font-size: 2.5rem;
}
@media (max-width: 63.98rem) {
  .image-list .title-h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 63.98rem) {
  .image-list .row {
    gap: 5rem;
  }
}
@media (max-width: 63.98rem) {
  .image-list .row .detail-list {
    width: 100%;
  }
}
.image-list svg {
  top: -70px;
  left: -62px;
  z-index: 0;
  height: 11rem;
  width: 8rem;
  position: absolute;
  color: #1f6b6b;
}
.image-list img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.image-list .list-img-list .elem {
  border-bottom: 1px solid #eee;
}
.image-list .list-img-list .elem .title {
  font-family: Albra;
  font-size: 1.25rem;
}
.needs {
  overflow: hidden;
  background-color: #111;
  position: relative;
}
.needs .title-h2 {
  color: #fff;
}
.needs .items-needs {
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}
@media (min-width: 48rem) {
  .needs .items-needs {
    display: grid;
  }
}
.needs .items-needs .need {
  background-color: #fff;
}
@media (max-width: 47.98rem) {
  .needs .items-needs .need {
    margin-top: 1rem;
  }
}
.needs .items-needs .need .image-content {
  aspect-ratio: 1.96/1;
  overflow: hidden;
}
.needs .items-needs .need .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.needs .items-needs .need .text-img-text {
  font-size: 1rem;
}
.needs .items-needs .need .details {
  padding: 2rem 2.9rem 2.5rem 3rem;
}
@media (max-width: 63.98rem) {
  .needs .items-needs .need .details {
    padding: 1.5rem;
  }
}
.needs .items-needs .need .details .title-h3 {
  letter-spacing: -0.03875rem;
}

.partners {
  overflow: hidden;
  border-bottom: 1px solid rgba(28, 28, 28, 0.1);
}
.partners .brands-wrapper {
  overflow: hidden;
  position: relative;
}
.partners .brands-wrapper::before, .partners .brands-wrapper::after {
  content: "";
  width: 9.5rem;
  height: 9rem;
  position: absolute;
  top: 0;
  z-index: 2;
  background: linear-gradient(270deg, rgba(10, 17, 71, 0) 0%, #fff 100%);
}
.partners .brands-wrapper::before {
  left: 0;
}
.partners .brands-wrapper::after {
  right: 0;
  transform: rotate(180deg);
}
.partners .brands-wrapper .brands {
  height: auto;
  display: flex;
  align-items: center;
}
.partners .brands-wrapper .brand {
  text-align: center;
}
.partners .brands-wrapper .brand img {
  width: auto;
  height: 4rem;
  max-width: 9rem;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 63.98rem) {
  .partners .brands-wrapper .brand img {
    height: 3rem;
    max-width: 7rem;
  }
}

.last-news {
  overflow: hidden;
}
.last-news .row {
  gap: 0.5rem;
  --gx: 0.5rem;
}
.last-news .row .card .post-card-title {
  transition: all ease 0.3s;
}
.last-news .row .card:hover .post-card-title {
  opacity: 0.4;
}

.cta {
  overflow: hidden;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}
.cta .elem {
  text-align: center;
  position: relative;
  transition: all ease 0.4s;
}
.cta .elem svg {
  content: "";
  width: 8.25rem;
  height: 7.875rem;
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  margin: auto;
  inset: 0;
}
.cta .elem svg path {
  fill: rgb(211, 164, 36) !important;
}
.cta .elem:nth-child(1) svg {
  right: -10rem;
  top: -17rem;
}
@media (max-width: 35.98rem) {
  .cta .elem:nth-child(1) svg {
    left: -10rem;
    right: 0;
    top: -19rem;
  }
}
@media (min-width: 48rem) {
  .cta .elem:nth-child(2) {
    border-left: 1px solid rgba(28, 28, 28, 0.1);
  }
}
.cta .elem:nth-child(2) svg {
  top: 11rem;
  left: -10rem;
}
@media (max-width: 35.98rem) {
  .cta .elem:nth-child(2) svg {
    right: -10rem;
    top: -19rem;
    left: 0;
  }
}
.cta .elem:hover {
  filter: brightness(1.2);
}
.cta .title-h1 {
  position: static;
  font-size: 4.3rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 0;
  white-space: nowrap;
  color: black;
  top: 45.1%;
  margin: auto !important;
}
@media (max-width: 78.98rem) {
  .cta .title-h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 47.98rem) {
  .cta .title-h1 {
    font-size: 2rem;
  }
}
@media (max-width: 35.98rem) {
  .cta .title-h1 {
    font-size: 1.8rem;
  }
}
.cta .title-h1.title-h1-hover {
  top: 49.5%;
  color: white;
}
@media (max-width: 47.98rem) {
  .cta .title-h1.title-h1-hover {
    margin: 0;
    top: 52.7%;
  }
}
.cta .image-content {
  max-height: 292px;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  margin: auto;
  position: relative;
}
.cta .image-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.cta .link {
  font-size: 0.875rem;
  display: inline-block;
  position: relative;
  color: #7E6831;
}
.cta .link:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  position: absolute;
  background-color: #7E6831;
  transition: all ease 0.4s;
}

.service-offer {
  overflow: hidden;
  position: relative;
}
@media (max-width: 63.98rem) {
  .service-offer::before {
    content: "";
    inset: 0;
    position: absolute;
    background-color: #000;
    z-index: 1;
    opacity: 0.4;
  }
}
.service-offer .image-container {
  width: 100%;
  position: relative;
}
@media (max-width: 63.98rem) {
  .service-offer .image-container {
    min-height: 20rem;
  }
}
.service-offer .image-container .bg {
  height: initial;
  width: 100%;
  display: block;
  margin: auto;
  object-fit: cover;
  aspect-ratio: 16/7;
}
@media (max-width: 63.98rem) {
  .service-offer .image-container .bg {
    min-height: 20rem;
  }
}
.service-offer .title-h2 {
  font-size: 1.94rem;
  line-height: 120%;
  position: absolute;
  left: 3rem;
  bottom: 2rem;
  color: white;
  width: 35%;
  text-align: left;
  z-index: 2;
}
@media (max-width: 63.98rem) {
  .service-offer .title-h2 {
    bottom: 4rem;
    left: 1rem;
    width: 100%;
  }
}
.service-offer .link {
  font-size: 0.875rem;
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  color: white;
  z-index: 2;
}
@media (max-width: 63.98rem) {
  .service-offer .link {
    right: inherit;
    left: 1rem;
  }
}
.service-offer .link .btn {
  color: white;
}
.service-offer .link .btn:after {
  background-color: white;
}

.numbers .image-quote {
  margin: auto;
  position: relative;
}
.numbers .image-quote img {
  width: 100%;
  height: 100%;
  max-width: 14rem;
  aspect-ratio: 3/4;
}
@media (max-width: 63.98rem) {
  .numbers .image-quote img {
    margin: auto;
    display: block;
  }
}
.numbers .image-quote svg {
  content: "";
  width: 6.375rem;
  height: 6.375rem;
  display: block;
  z-index: -1;
  left: -14%;
  bottom: -14%;
  margin: auto;
  position: absolute;
  margin: auto;
}
.numbers .image-quote svg path {
  fill: rgb(211, 164, 36) !important;
}
@media (max-width: 63.98rem) {
  .numbers .details {
    margin: auto;
    text-align: center;
  }
}
.numbers .details .quote {
  font-size: 1.9375rem;
  line-height: 120%;
  letter-spacing: -0.03875rem;
}
@media (max-width: 78.98rem) {
  .numbers .details .quote {
    font-size: 1.5rem;
    letter-spacing: 0rem;
    margin-top: 1rem;
  }
}
.numbers .details .author {
  font-size: 1rem;
}
@media (max-width: 63.98rem) {
  .numbers .numbers-items {
    margin: auto;
  }
}
.numbers .numbers-items .number-item {
  display: flex;
}
.numbers .numbers-items .number-item:first-child {
  border-bottom: 1px solid #e8e8e8;
}
.numbers .numbers-items .number-item .number {
  font-family: Albra;
  font-size: 3.3125rem;
  vertical-align: middle;
  align-items: baseline;
  display: flex;
}
@media (max-width: 63.98rem) {
  .numbers .numbers-items .number-item .number {
    font-size: 2.3rem;
  }
}
.numbers .numbers-items .number-item .number strong {
  display: inline-block;
  font-size: 1.9375rem;
  font-weight: inherit;
}
@media (max-width: 63.98rem) {
  .numbers .numbers-items .number-item .number strong {
    font-size: 1.75rem;
  }
}
.numbers .numbers-items .number-item .description {
  font-size: 0.875rem;
  vertical-align: middle;
  align-items: center;
  display: flex;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.4s ease;
}
.modal-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-experts {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(1);
  width: 90%;
  max-width: 60rem;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  background: white;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.modal-experts.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 47.98rem) {
  .modal-experts {
    width: 90%;
    height: 90%;
  }
}
@media (min-width: 48rem) {
  .modal-experts .modal-content {
    display: flex;
  }
}
.modal-experts .modal-content .image-content {
  flex: 1;
}
.modal-experts .modal-content .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-experts .modal-content .text-content {
  flex: 1;
  display: grid;
  gap: 1rem;
  padding: 3rem;
  background: white;
}
@media (max-width: 47.98rem) {
  .modal-experts .modal-content .text-content {
    padding: 1.5rem;
  }
}
.modal-experts .modal-image {
  width: 100%;
}
.modal-experts .modal-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.close-modal {
  font-size: 0.875rem;
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 45;
  display: flex;
  align-items: center;
}
@media (max-width: 47.98rem) {
  .close-modal {
    background: white;
    padding: 0.1rem 0.4rem;
  }
}
.close-modal svg {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.experts {
  overflow: hidden;
  color: white;
  background-color: #111;
}
.experts h2 {
  font-size: 2.5rem;
}
.experts .list {
  --gx: 9rem;
  padding: 4rem;
}
@media (max-width: 63.98rem) {
  .experts .list {
    gap: 4rem;
    --gx: 6rem;
    padding: 0rem;
  }
}
.experts .list .elem .item {
  cursor: pointer;
  position: relative;
  margin: 0 auto;
  display: block;
  transition: all ease 0.4s;
}
.experts .list .elem .item:hover {
  filter: brightness(1.2);
}
.experts .list .elem .item svg {
  top: -70px;
  right: -34px;
  z-index: 0;
  height: 11rem;
  width: 8rem;
  position: absolute;
  color: #1f6b6b;
}
.experts .list .elem .item .image-content {
  width: 100%;
  aspect-ratio: 9/13;
  overflow: hidden;
  position: relative;
  display: block;
}
.experts .list .elem .item .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.experts .list .elem .item .title-h2,
.experts .list .elem .item .function {
  display: block;
}
.experts .list .elem .item .link {
  display: inline-block;
  position: relative;
  transition: all ease 0.4s;
}
.experts .list .elem .item .link::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  bottom: 0;
  position: absolute;
  background-color: white;
  transition: all ease 0.4s;
}
.experts .list .elem .item .link:hover {
  filter: brightness(1.2);
}
.experts .list .elem .item .link:hover::after {
  filter: brightness(1.2);
}

.dark_list {
  color: white;
  background-color: #111;
}
.dark_list .elem {
  display: block;
  border-bottom: 1px solid #414141;
}
.dark_list .elem .desc {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.light_list .title-h2,
.light_list .title-h3 {
  font-size: 2.5rem;
}
.light_list .desc {
  font-size: 0.875rem;
}
.light_list .elem {
  display: flex;
  vertical-align: middle;
  align-items: start;
  border-top: 1px solid #e8e8e8;
}
.light_list .elem h3 {
  color: #7E6831;
}

.video .player {
  position: relative;
  aspect-ratio: 16/9;
}
.video .player .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  aspect-ratio: 16/9;
}
.video .player .overlay .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video .player .overlay .play-icon {
  position: absolute;
  z-index: 2;
}
.video .player .video-frame {
  display: none;
  aspect-ratio: 16/9;
}
.video .player .video-frame iframe {
  width: 100%;
  height: 100%;
}
.video .player .video-frame video {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.files .post-file {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0 0 0.5rem 0;
}
.files .post-file .row-file {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e7e5e0;
  padding: 0.8rem 0;
}
.files .post-file .row-file .title-file {
  font-size: 1rem;
}
.files .post-file .row-file .link-file {
  font-size: 0.875rem;
  color: #7E6831;
  text-decoration: underline;
}

.faq h2 {
  color: #111;
  font-family: "Circular Std";
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 2.875rem;
  letter-spacing: -0.11875rem;
}
.faq .content-image {
  width: 100%;
  height: fit-content;
  top: 2rem;
  position: sticky;
}
@media (max-width: 63.98rem) {
  .faq .content-image {
    height: 100%;
  }
}
@media (max-width: 63.98rem) {
  .faq .dflex {
    display: block;
  }
}

.list-faq .elem {
  cursor: pointer;
  position: relative;
  padding-bottom: 1rem;
  transition: all 0.8s ease-in-out;
  border-bottom: 1px solid #f2f0ea;
}
.list-faq .elem .question {
  position: relative;
  font-family: Albra;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 500;
  padding: 1.7rem 2.5rem 0.7rem 1.5rem;
}
.list-faq .elem .question::before {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #1f6b6b;
  left: 0;
  top: 2.3rem;
  position: absolute;
}
.list-faq .elem .question svg {
  width: 1rem;
  height: 1.25rem;
  position: absolute;
  right: 1rem;
  top: 1.9rem;
  transition: all ease 0.4s;
}
.list-faq .elem .question svg path {
  stroke: #1f6b6b;
  transition: all ease 0.4s;
}
.list-faq .elem .answer {
  max-height: unset;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
.list-faq .elem.active .question svg {
  transform: rotate(180deg);
}
.list-faq .elem.active .answer {
  max-height: 9999px;
}
.list-faq .elem.active .answer .cms-collapsed {
  display: none;
}
.list-faq .elem.active .answer .cms-full {
  display: block;
}

.image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.three-columns {
  background-color: #111;
}
.three-columns .row {
  gap: 0.75rem;
  --gx: 0.75rem;
}
.three-columns .title-h2 {
  color: #fff;
  font-size: 2.5rem;
}
@media (max-width: 63.98rem) {
  .three-columns .title-h2 {
    font-size: 1.8rem;
  }
}
.three-columns .elem {
  gap: 0;
  background-color: #FAF7F1;
}
.three-columns .elem .content-image {
  aspect-ratio: 5/3;
  width: 100%;
  overflow: hidden;
  height: fit-content;
}
.three-columns .elem .content-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.three-columns .elem .title-h3 {
  color: #111;
  font-size: 2rem;
}
@media (max-width: 63.98rem) {
  .three-columns .elem .title-h3 {
    font-size: 1.8rem;
  }
}
.three-columns .list-img-list .elem {
  font-family: Albra;
  font-size: 1.25rem;
  border-bottom: 1px solid #eee;
}

.intro-anime {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.intro-anime .intro-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-anime .intro-image-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.intro-anime .intro-image-content .mask {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 163px;
  height: 340px;
  transform: translate(-50%, -50%) scale(0);
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  overflow: hidden;
  background: #fff;
  will-change: transform;
}
.intro-anime .intro-image-content .mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-anime .sentences {
  z-index: 2;
}
.intro-anime .sentences .title-sentences {
  margin: auto;
  text-align: center;
}
.intro-anime .sentences .title-sentences .text {
  color: #120e02;
  font-family: Albra;
  font-size: 3.3rem;
  font-weight: 300;
  line-height: 5.75rem;
  letter-spacing: -0.07rem;
  display: block;
}
@media (max-width: 63.98rem) {
  .intro-anime .sentences .title-sentences .text {
    font-size: 2.8rem;
    line-height: 150%;
  }
}
@media (max-width: 47.98rem) {
  .intro-anime .sentences .title-sentences .text {
    font-size: 2rem;
  }
}
@media (max-width: 35.98rem) {
  .intro-anime .sentences .title-sentences .text {
    font-size: 1.4rem;
  }
}
.intro-anime .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.3rem;
  width: 0;
  background: #1f6b6b;
  z-index: 9999;
}

.contact-section {
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--7E6831-10, rgba(126, 104, 49, 0.1));
}
.contact-section .title-h2,
.contact-section .text-img-text {
  text-align: center;
}

.hero {
  overflow: hidden;
}
.hero .image-content {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .image-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero .image-content .filter {
  content: "";
  inset: 0;
  position: absolute;
  background-color: #111;
  z-index: 1;
  opacity: 0;
}
.hero .infos-content {
  z-index: 1;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .infos-content .title-h1 {
  color: #fff;
  margin: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.hero .infos-content .title-h1 strong {
  display: block;
  font-weight: 500;
}
@media (max-width: 47.98rem) {
  .hero .infos-content .title-h1 strong {
    top: 0;
    position: relative;
    text-align: center;
  }
}
.hero .infos-content .title-h1 strong:last-of-type {
  right: 12%;
  top: 6.5rem;
  position: absolute;
}
@media (max-width: 63.98rem) {
  .hero .infos-content .title-h1 strong:last-of-type {
    top: 4rem;
  }
}
@media (max-width: 47.98rem) {
  .hero .infos-content .title-h1 strong:last-of-type {
    top: 0;
    right: initial;
    position: relative;
  }
}
.hero .infos-content .intro {
  font-size: 1rem;
  line-height: 1.5rem;
  opacity: 0;
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 20rem;
  color: white;
}
@media (max-width: 47.98rem) {
  .hero .infos-content .intro {
    bottom: 2rem;
    right: 0;
    width: 100%;
  }
}

.hero-default {
  padding-top: 10rem;
}
@media (max-width: 63.98rem) {
  .hero-default {
    padding-top: 5rem;
  }
}
.hero-default .desc-banner {
  display: inline-flex;
  vertical-align: middle;
  align-items: end;
}

.home .faq {
  position: relative;
}

.faq .faq-content {
  position: relative;
  border-top: 1px solid rgba(126, 104, 49, 0.1);
}
@media (max-width: 63.98rem) {
  .faq .faq-content .row {
    flex-direction: column-reverse;
  }
}

.contact .btn {
  background-color: #d3a424;
  border: 1px solid #d3a424;
}
.contact .btn:hover {
  color: #d3a424;
}
.contact .content-contact {
  position: relative;
}
.contact .content-contact .image-content {
  border-top: 1px solid rgba(126, 104, 49, 0.1);
}
.contact .content-contact .form-content {
  z-index: 1;
  position: relative;
}
.contact .row {
  height: 100%;
  position: relative;
}
@media (min-width: 64rem) {
  .contact .row {
    padding-right: 2rem;
  }
}
.contact .row .content-image {
  height: 100%;
  position: relative;
}
@media (max-width: 63.98rem) {
  .contact .row .content-image {
    height: 20rem;
    display: block;
  }
}
.contact .row .content-image .img {
  height: 100%;
  position: relative;
}

.ecoindex-grade {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ecoindex-grade-item {
  display: flex;
  width: clamp(3rem, 5vw, 5rem);
  aspect-ratio: 1;
  padding: 0.75rem;
  border: 1px solid;
  border-radius: 0.5rem;
  justify-content: flex-end;
  align-items: flex-end;
  font-weight: 500;
  line-height: 1;
}
.ecoindex-grade-item:nth-child(1) {
  color: #4D9E30;
}
.ecoindex-grade-item:nth-child(1).ecoindex-grade-item--active {
  background-color: #4D9E30;
  color: white;
}
.ecoindex-grade-item:nth-child(2) {
  color: #50B84B;
}
.ecoindex-grade-item:nth-child(2).ecoindex-grade-item--active {
  background-color: #50B84B;
  color: white;
}
.ecoindex-grade-item:nth-child(3) {
  color: #CADB2A;
}
.ecoindex-grade-item:nth-child(3).ecoindex-grade-item--active {
  background-color: #CADB2A;
  color: white;
}
.ecoindex-grade-item:nth-child(4) {
  color: #F6EB13;
}
.ecoindex-grade-item:nth-child(4).ecoindex-grade-item--active {
  background-color: #F6EB13;
  color: white;
}
.ecoindex-grade-item:nth-child(5) {
  color: #FECD07;
}
.ecoindex-grade-item:nth-child(5).ecoindex-grade-item--active {
  background-color: #FECD07;
  color: white;
}
.ecoindex-grade-item:nth-child(6) {
  color: #FA9F47;
}
.ecoindex-grade-item:nth-child(6).ecoindex-grade-item--active {
  background-color: #FA9F47;
  color: white;
}
.ecoindex-grade-item:nth-child(7) {
  color: #EF3A3B;
}
.ecoindex-grade-item:nth-child(7).ecoindex-grade-item--active {
  background-color: #EF3A3B;
  color: white;
}

.page-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 6rem);
}
.page-404 .error-page {
  display: flex;
  min-height: calc(100dvh - var(--header-height));
  padding: 2rem var(--side-margin) calc(2rem + var(--header-height)) var(--side-margin);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-404 .error-page-title {
  font-size: 8vw;
  font-weight: 300;
  line-height: 1;
}
.page-404 .error-page-link {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.page-template-default .title-h1 {
  margin-left: -1rem;
  margin-right: -1rem;
}

@media (min-width: 48rem) {
  .blog #filters,
  .archive #filters {
    display: flex;
  }
}
.blog #filters label,
.archive #filters label {
  display: inline-block;
  cursor: pointer;
  transition: all ease 0.4s;
  margin-right: 1rem;
  font-size: 0.875rem;
  padding: 0.3rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  color: #7E6831;
  border: 1px solid rgba(126, 104, 49, 0.3);
  background: #fff;
}
@media (max-width: 47.98rem) {
  .blog #filters label,
  .archive #filters label {
    width: 49%;
    margin-bottom: 0.3rem;
    margin-right: 0rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.6rem;
    vertical-align: middle;
    padding: 0.7rem 0.1rem;
  }
}
@media (max-width: 35.98rem) {
  .blog #filters label,
  .archive #filters label {
    width: 48%;
    font-size: 0.6rem;
  }
}
.blog #filters label:hover,
.archive #filters label:hover {
  color: #fff;
  background-color: #7E6831;
}
.blog #filters input,
.archive #filters input {
  display: none;
}
.blog #filters input[type=radio]:checked + label,
.archive #filters input[type=radio]:checked + label {
  color: #fff;
  background-color: #7E6831;
}
.blog .text-seo,
.archive .text-seo {
  border-top: 1px solid #e8e8e8;
}

.single-post .single-news-container {
  padding-top: 12rem;
}
@media (max-width: 63.98rem) {
  .single-post .single-news-container {
    padding-top: 5rem;
  }
}
.single-post .single-news-container .header-news .back {
  color: #7E6831;
  font-size: 0.875rem;
}
.single-post .single-news-container .header-news .back svg {
  margin-right: 0.3rem;
}
.single-post .single-news-container .header-news .back:hover {
  opacity: 0.7;
  transition: all ease 0.6s;
}
.single-post .single-news-container .header-news .meta-info {
  display: flex;
  vertical-align: middle;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
}
.single-post .single-news-container .header-news .meta-info .category .cat-card {
  display: flex;
  padding: 0 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.632rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(126, 104, 49, 0.2);
}
.single-post .single-news-container .header-news .meta-info .date {
  font-size: 0.75rem;
}
.single-post .single-news-container .header-news .intro {
  overflow: hidden;
}
.single-post .single-news-container .header-news .intro .image-container {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.single-post .single-news-container .header-news .intro .image-container .bg {
  height: 100%;
  width: 100%;
  margin: auto;
  object-fit: cover;
}
.single-post .single-news-container .header-news .intro .title-h2 {
  font-size: 1.94rem;
  line-height: 2.875rem;
  position: absolute;
  left: 3rem;
  bottom: 2rem;
  color: white;
  width: 25%;
  text-align: left;
}
.single-post .single-news-container .header-news .intro .link {
  font-size: 0.875rem;
  position: absolute;
  right: 3rem;
  bottom: 2rem;
  color: white;
}
@media (min-width: 64rem) {
  .single-post .single-news-container .post-infos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.single-post .single-news-container .post-infos .infos {
  font-size: 0.875rem;
}
.single-post .single-news-container .post-infos .infos .title-infos {
  border-bottom: 1px solid #f2f0ea;
}
.single-post .single-news-container .post-infos .infos span {
  display: block;
  padding: 0.4rem 0;
}
.single-post .single-news-container .post-partners .partner-link {
  display: flex;
  vertical-align: middle;
  align-items: center;
  max-width: 8rem;
}
.single-post .single-news-container .post-partners .partner-link img {
  width: 100%;
  height: 100%;
  max-height: fit-content;
  max-width: fit-content;
}
.single-post .single-news-container .post-features {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0.5rem 0;
}
.single-post .single-news-container .post-features .feature-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e7e5e0;
  padding: 0.7rem 0;
}
.single-post .single-news-container .post-features .feature-row .title-features {
  opacity: 0.8;
  color: #5c4a33;
  font-size: 0.875rem;
}
.single-post .single-news-container .post-features .feature-row .value-features {
  font-size: 0.875rem;
  color: #5c4a33;
}
.single-post .single-news-container .summary {
  top: 8rem;
  position: sticky;
}
.single-post .single-news-container .summary li {
  font-size: 1rem;
}
.single-post .single-news-container .summary li a {
  opacity: 0.5;
  transition: all ease 0.3s;
}
.single-post .single-news-container .summary li a.active {
  opacity: 1;
}
@media (max-width: 63.98rem) {
  .single-post .single-news-container .summary {
    display: none;
    padding: 0.7rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .single-post .single-news-container .summary li {
    display: inline-block;
  }
}
.single-post .single-news-container .title-h2 {
  scroll-margin-top: 12rem;
}
.single-post .more-news {
  border-top: 1px solid #f2f0ea;
}
@media (min-width: 64rem) {
  .single-post .more-news .btn-more-news .btn {
    float: right;
  }
}
.single-post .service-offer .btn {
  color: #fff;
}
.single-post .service-offer .btn:after {
  content: "";
  background-color: #fff;
}

.single-fund-container {
  padding-top: 12rem;
}
@media (max-width: 63.98rem) {
  .single-fund-container {
    padding-top: 5rem;
  }
}
.single-fund-container .header-fund {
  border-bottom: 1px solid #f2f0ea;
}
.single-fund-container .header-fund .back {
  color: #7E6831;
  font-size: 0.875rem;
}
.single-fund-container .header-fund .back svg {
  margin-right: 0.3rem;
}
.single-fund-container .header-fund .back:hover {
  opacity: 0.7;
  transition: all ease 0.6s;
}
.single-fund-container .header-fund .image-content svg {
  top: -70px;
  left: -62px;
  z-index: 0;
  height: 11rem;
  width: 8rem;
  position: absolute;
  color: #1f6b6b;
}
.single-fund-container .header-fund .image-content {
  z-index: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.654;
}
.single-fund-container .header-fund .image-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single-fund-container .header-fund .description_fund {
  font-size: 1rem;
}
@media (min-width: 64rem) {
  .single-fund-container .post-infos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.single-fund-container .post-infos .infos {
  font-size: 0.875rem;
}
.single-fund-container .post-infos .infos .title-infos {
  border-bottom: 1px solid #f2f0ea;
}
.single-fund-container .post-infos .infos span {
  display: block;
  padding: 0.4rem 0;
}
.single-fund-container .post-partners .brands-wrapper {
  overflow: hidden;
  position: relative;
}
.single-fund-container .post-partners .partner-link {
  width: 100%;
  height: 4rem;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
.single-fund-container .post-partners .partner-link .partners-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.single-fund-container .post-features {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0.5rem 0;
}
.single-fund-container .post-features .feature-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e7e5e0;
  padding: 0.7rem 0;
}
.single-fund-container .post-features .feature-row .title-features {
  opacity: 0.8;
  color: #5c4a33;
  font-size: 0.875rem;
}
.single-fund-container .post-features .feature-row .value-features {
  font-size: 0.875rem;
  color: #5c4a33;
}
.single-fund-container .summary {
  top: 8rem;
  position: sticky;
}
.single-fund-container .summary li {
  font-size: 1rem;
}
.single-fund-container .summary li a {
  opacity: 0.5;
  transition: all ease 0.3s;
}
.single-fund-container .summary li a.active {
  opacity: 1;
}
@media (max-width: 63.98rem) {
  .single-fund-container .summary {
    display: none;
    padding: 0.7rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .single-fund-container .summary li {
    display: inline-block;
  }
}
.single-fund-container .title-h2 {
  scroll-margin-top: 12rem;
}

.more-news {
  border-top: 1px solid #f2f0ea;
}
@media (min-width: 64rem) {
  .more-news .btn-more-news .btn {
    float: right;
  }
}

/*# sourceMappingURL=app.css.map*/