@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.
*/
/*
|
| TEXT ALIGN
|-----------------------
|
*/
/*
|
| FONT-SIZES
|----------------
|
*/
/*
|
| Titles
|-----------------------
|
*/
/*
|
| VARIABLES
|----------------
|
*/
/*
|---------------------------------------------------------------
| GRID
|---------------------------------------------------------------
| Set grid properties
|
|
*/
/*
|---------------------------------------------------------------
| SPACES
|---------------------------------------------------------------
| Set paddings & margins sizes properties
|
|
*/
/*
|---------------------------------------------------------------
| COLORS
|---------------------------------------------------------------
| Define colors
|
|
*/
/*
|
| DECLARATION
|----------------
|
*/
/*
|
| DEFAULTS
|----------------
|
*/
/*
|---------------------------------------------------------------
| FONTS
|---------------------------------------------------------------
| Set all font properties
|
|
*/
/*
|
| FAMILIES
|----------------
|
*/
/*
|
| SIZES
|----------------
|
*/
/*
|
| LINE-HEIGHT
|----------------
|
*/
/*
|
| LETTER-SPACING
|----------------
|
*/
/*
|
| DEFAULTS
|----------------
|
*/
/*
|---------------------------------------------------------------
| TITLES
|---------------------------------------------------------------
| Set all title properties
|
|
*/
/*
|
| DEFAULTS
|----------------
|
*/
/*
|
| 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
|
*/
/*
|-------------------------------
| Display classes creation
|-------------------------------
| Variables used to generate display classes
| - Generated classes: .d-{display}
| - Exemple: .d-f
|
*/
/*
|-------------------------------
| 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
|
*/
/*
|-------------------
| Ratio classes creation
|-------------------
| - Generated classes: .ratio-{size}
|
*/
/*
|-------------------------------
| Text align classes creation
|-------------------------------
| Variables used to generate text-align classes
| - Generated classes: .ta-{alignment}
| - Exemple: .ta-center
|
*/
/*
|-------------------------------
| 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-{size}
| - Exemple: .fs-md
|
*/
/*
|-------------------------------
| Font weight classes creation
|-------------------------------
| How to use: add lines to create more "font weight classes"
| - Generated classes: .fw-{weight}
| - Exemple: .fw-400
|
*/
/*
|-------------------------------
| Line height classes creation
|-------------------------------
| How to use: add lines to create more "line-height classes"
| - Generated classes: .lh-{weight}
| - Exemple: .lh-sm
|
*/
/*
|-------------------------------
| Letter spacing classes creation
|-------------------------------
| How to use: add lines to create more "letter-spacing classes"
| - Generated classes: .ls-{size}
| - Exemple: .ls-sm
|
*/
/*
|-------------------------------
| Title sizes classes creation
|-------------------------------
| Variables used to generate title classes (including responsive)
| - Generated classes: .title-{size}
| - Exemple: .title-md
|
*/
/*
|
| CORE
|----------------
|
*/
/*
|---------------------------------------------------------------
| Helpers
|---------------------------------------------------------------
| Define helper classes
|
|
*/
/*
|
| TEXT TRANSFORMS
|----------------
|
*/
/*
|
| TEXT DECORATIONS
|----------------
|
*/
/*
|
| FONT STYLES
|----------------
|
*/
/*
|
| BACKGROUND COVER
|----------------
|
*/
/*
|
| OVERLAY
|----------------
|
*/
/*
|
| OVERFLOWS
|----------------
|
*/
/*
|
| POSITIONS
|----------------
|
*/
/*
|
| FLEX ALIGN
|----------------
|
*/
.ai-start {
  align-items: flex-start;
}

.ai-end {
  align-items: flex-end;
}

.ai-center {
  align-items: center;
}

.ai-baseline {
  align-items: baseline;
}

.ai-stretch {
  align-items: stretch;
}

.as-start {
  align-self: flex-start;
}

.as-end {
  align-self: flex-end;
}

.as-center {
  align-self: center;
}

.as-baseline {
  align-self: baseline;
}

.as-stretch {
  align-self: stretch;
}

/*
|
| FLEX JUSTIFY
|----------------
|
*/
.jc-start {
  justify-content: flex-start;
}

.jc-end {
  justify-content: flex-end;
}

.jc-center {
  justify-content: center;
}

.jc-between {
  justify-content: space-between;
}

.jc-around {
  justify-content: space-around;
}

/*
|
| WHITE SPACES
|----------------
|
*/
/*
|
| POINTER EVENTS
|----------------
|
*/
/*
|
| ANIMATION OPTIMIZATION
|----------------
|
*/
/*
|
| TRANSFORMS
|----------------
|
*/
/*
|
| ABSOLUTE FULL
|----------------
|
*/
/*
|
| CLEAR
|----------------
|
*/
/*
|
| IMG FULL
|----------------
|
*/
/*
|
| W-100 H-100
|----------------
|
*/
/*
|---------------------------------------------------------------
| CLASS GENERATOR
|---------------------------------------------------------------
| Mixins calls to generate classes
|
|
*/
/*
|
| CONTAINERS
|----------------
|
*/
.container,
.container-fluid {
  width: calc(100% - 2 * var(--container-gutter, 15px));
  margin-inline: auto;
}

.container {
  max-width: var(--container-width, none);
}
@media (min-width: 768px) {
  .container {
    --container-width: 540px;
  }
}
@media (min-width: 992px) {
  .container {
    --container-width: 720px;
  }
}
@media (min-width: 1200px) {
  .container {
    --container-width: 960px;
  }
}
@media (min-width: 1400px) {
  .container {
    --container-width: 80rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 999;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.order-13 {
  order: 13;
}

.order-14 {
  order: 14;
}

.order-15 {
  order: 15;
}

.order-16 {
  order: 16;
}

.order-17 {
  order: 17;
}

.order-18 {
  order: 18;
}

.order-19 {
  order: 19;
}

.order-20 {
  order: 20;
}

.order-21 {
  order: 21;
}

.order-22 {
  order: 22;
}

.order-23 {
  order: 23;
}

.order-24 {
  order: 24;
}

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

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

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

.g-xs {
  --gx: 5px;
  --gy: 5px;
}

.gy-xs {
  --gy: 5px;
}

.gx-xs {
  --gx: 5px;
}

.g-sm {
  --gx: 15px;
  --gy: 15px;
}

.gy-sm {
  --gy: 15px;
}

.gx-sm {
  --gx: 15px;
}

.g-md {
  --gx: 30px;
  --gy: 30px;
}

.gy-md {
  --gy: 30px;
}

.gx-md {
  --gx: 30px;
}

.g-lg {
  --gx: 50px;
  --gy: 50px;
}

.gy-lg {
  --gy: 50px;
}

.gx-lg {
  --gx: 50px;
}

.g-xl {
  --gx: 70px;
  --gy: 70px;
}

.gy-xl {
  --gy: 70px;
}

.gx-xl {
  --gx: 70px;
}

.g-xxl {
  --gx: 140px;
  --gy: 140px;
}

.gy-xxl {
  --gy: 140px;
}

.gx-xxl {
  --gx: 140px;
}

@media (max-width: 1399.98px) {
  .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: 5px;
    --gy: 5px;
  }
  .xl-down-gy-xs {
    --gy: 5px;
  }
  .xl-down-gx-xs {
    --gx: 5px;
  }
  .xl-down-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .xl-down-gy-sm {
    --gy: 15px;
  }
  .xl-down-gx-sm {
    --gx: 15px;
  }
  .xl-down-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .xl-down-gy-md {
    --gy: 30px;
  }
  .xl-down-gx-md {
    --gx: 30px;
  }
  .xl-down-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .xl-down-gy-lg {
    --gy: 50px;
  }
  .xl-down-gx-lg {
    --gx: 50px;
  }
  .xl-down-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .xl-down-gy-xl {
    --gy: 70px;
  }
  .xl-down-gx-xl {
    --gx: 70px;
  }
  .xl-down-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .xl-down-gy-xxl {
    --gy: 140px;
  }
  .xl-down-gx-xxl {
    --gx: 140px;
  }
}
@media (max-width: 1199.98px) {
  .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: 5px;
    --gy: 5px;
  }
  .lg-down-gy-xs {
    --gy: 5px;
  }
  .lg-down-gx-xs {
    --gx: 5px;
  }
  .lg-down-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .lg-down-gy-sm {
    --gy: 15px;
  }
  .lg-down-gx-sm {
    --gx: 15px;
  }
  .lg-down-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .lg-down-gy-md {
    --gy: 30px;
  }
  .lg-down-gx-md {
    --gx: 30px;
  }
  .lg-down-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .lg-down-gy-lg {
    --gy: 50px;
  }
  .lg-down-gx-lg {
    --gx: 50px;
  }
  .lg-down-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .lg-down-gy-xl {
    --gy: 70px;
  }
  .lg-down-gx-xl {
    --gx: 70px;
  }
  .lg-down-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .lg-down-gy-xxl {
    --gy: 140px;
  }
  .lg-down-gx-xxl {
    --gx: 140px;
  }
}
@media (max-width: 991.98px) {
  .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: 5px;
    --gy: 5px;
  }
  .md-down-gy-xs {
    --gy: 5px;
  }
  .md-down-gx-xs {
    --gx: 5px;
  }
  .md-down-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .md-down-gy-sm {
    --gy: 15px;
  }
  .md-down-gx-sm {
    --gx: 15px;
  }
  .md-down-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .md-down-gy-md {
    --gy: 30px;
  }
  .md-down-gx-md {
    --gx: 30px;
  }
  .md-down-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .md-down-gy-lg {
    --gy: 50px;
  }
  .md-down-gx-lg {
    --gx: 50px;
  }
  .md-down-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .md-down-gy-xl {
    --gy: 70px;
  }
  .md-down-gx-xl {
    --gx: 70px;
  }
  .md-down-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .md-down-gy-xxl {
    --gy: 140px;
  }
  .md-down-gx-xxl {
    --gx: 140px;
  }
}
@media (max-width: 767.98px) {
  .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: 5px;
    --gy: 5px;
  }
  .sm-down-gy-xs {
    --gy: 5px;
  }
  .sm-down-gx-xs {
    --gx: 5px;
  }
  .sm-down-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .sm-down-gy-sm {
    --gy: 15px;
  }
  .sm-down-gx-sm {
    --gx: 15px;
  }
  .sm-down-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .sm-down-gy-md {
    --gy: 30px;
  }
  .sm-down-gx-md {
    --gx: 30px;
  }
  .sm-down-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .sm-down-gy-lg {
    --gy: 50px;
  }
  .sm-down-gx-lg {
    --gx: 50px;
  }
  .sm-down-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .sm-down-gy-xl {
    --gy: 70px;
  }
  .sm-down-gx-xl {
    --gx: 70px;
  }
  .sm-down-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .sm-down-gy-xxl {
    --gy: 140px;
  }
  .sm-down-gx-xxl {
    --gx: 140px;
  }
}
@media (max-width: 479.98px) {
  .xs-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xs-down-gy-0 {
    --gy: 0px;
  }
  .xs-down-gx-0 {
    --gx: 0px;
  }
  .xs-down-g-xs {
    --gx: 5px;
    --gy: 5px;
  }
  .xs-down-gy-xs {
    --gy: 5px;
  }
  .xs-down-gx-xs {
    --gx: 5px;
  }
  .xs-down-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .xs-down-gy-sm {
    --gy: 15px;
  }
  .xs-down-gx-sm {
    --gx: 15px;
  }
  .xs-down-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .xs-down-gy-md {
    --gy: 30px;
  }
  .xs-down-gx-md {
    --gx: 30px;
  }
  .xs-down-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .xs-down-gy-lg {
    --gy: 50px;
  }
  .xs-down-gx-lg {
    --gx: 50px;
  }
  .xs-down-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .xs-down-gy-xl {
    --gy: 70px;
  }
  .xs-down-gx-xl {
    --gx: 70px;
  }
  .xs-down-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .xs-down-gy-xxl {
    --gy: 140px;
  }
  .xs-down-gx-xxl {
    --gx: 140px;
  }
}
@media (min-width: 480px) {
  .xs-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xs-up-gy-0 {
    --gy: 0px;
  }
  .xs-up-gx-0 {
    --gx: 0px;
  }
  .xs-up-g-xs {
    --gx: 5px;
    --gy: 5px;
  }
  .xs-up-gy-xs {
    --gy: 5px;
  }
  .xs-up-gx-xs {
    --gx: 5px;
  }
  .xs-up-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .xs-up-gy-sm {
    --gy: 15px;
  }
  .xs-up-gx-sm {
    --gx: 15px;
  }
  .xs-up-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .xs-up-gy-md {
    --gy: 30px;
  }
  .xs-up-gx-md {
    --gx: 30px;
  }
  .xs-up-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .xs-up-gy-lg {
    --gy: 50px;
  }
  .xs-up-gx-lg {
    --gx: 50px;
  }
  .xs-up-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .xs-up-gy-xl {
    --gy: 70px;
  }
  .xs-up-gx-xl {
    --gx: 70px;
  }
  .xs-up-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .xs-up-gy-xxl {
    --gy: 140px;
  }
  .xs-up-gx-xxl {
    --gx: 140px;
  }
}
@media (min-width: 768px) {
  .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: 5px;
    --gy: 5px;
  }
  .sm-up-gy-xs {
    --gy: 5px;
  }
  .sm-up-gx-xs {
    --gx: 5px;
  }
  .sm-up-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .sm-up-gy-sm {
    --gy: 15px;
  }
  .sm-up-gx-sm {
    --gx: 15px;
  }
  .sm-up-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .sm-up-gy-md {
    --gy: 30px;
  }
  .sm-up-gx-md {
    --gx: 30px;
  }
  .sm-up-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .sm-up-gy-lg {
    --gy: 50px;
  }
  .sm-up-gx-lg {
    --gx: 50px;
  }
  .sm-up-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .sm-up-gy-xl {
    --gy: 70px;
  }
  .sm-up-gx-xl {
    --gx: 70px;
  }
  .sm-up-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .sm-up-gy-xxl {
    --gy: 140px;
  }
  .sm-up-gx-xxl {
    --gx: 140px;
  }
}
@media (min-width: 992px) {
  .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: 5px;
    --gy: 5px;
  }
  .md-up-gy-xs {
    --gy: 5px;
  }
  .md-up-gx-xs {
    --gx: 5px;
  }
  .md-up-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .md-up-gy-sm {
    --gy: 15px;
  }
  .md-up-gx-sm {
    --gx: 15px;
  }
  .md-up-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .md-up-gy-md {
    --gy: 30px;
  }
  .md-up-gx-md {
    --gx: 30px;
  }
  .md-up-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .md-up-gy-lg {
    --gy: 50px;
  }
  .md-up-gx-lg {
    --gx: 50px;
  }
  .md-up-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .md-up-gy-xl {
    --gy: 70px;
  }
  .md-up-gx-xl {
    --gx: 70px;
  }
  .md-up-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .md-up-gy-xxl {
    --gy: 140px;
  }
  .md-up-gx-xxl {
    --gx: 140px;
  }
}
@media (min-width: 1200px) {
  .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: 5px;
    --gy: 5px;
  }
  .lg-up-gy-xs {
    --gy: 5px;
  }
  .lg-up-gx-xs {
    --gx: 5px;
  }
  .lg-up-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .lg-up-gy-sm {
    --gy: 15px;
  }
  .lg-up-gx-sm {
    --gx: 15px;
  }
  .lg-up-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .lg-up-gy-md {
    --gy: 30px;
  }
  .lg-up-gx-md {
    --gx: 30px;
  }
  .lg-up-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .lg-up-gy-lg {
    --gy: 50px;
  }
  .lg-up-gx-lg {
    --gx: 50px;
  }
  .lg-up-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .lg-up-gy-xl {
    --gy: 70px;
  }
  .lg-up-gx-xl {
    --gx: 70px;
  }
  .lg-up-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .lg-up-gy-xxl {
    --gy: 140px;
  }
  .lg-up-gx-xxl {
    --gx: 140px;
  }
}
@media (min-width: 1400px) {
  .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: 5px;
    --gy: 5px;
  }
  .xl-up-gy-xs {
    --gy: 5px;
  }
  .xl-up-gx-xs {
    --gx: 5px;
  }
  .xl-up-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .xl-up-gy-sm {
    --gy: 15px;
  }
  .xl-up-gx-sm {
    --gx: 15px;
  }
  .xl-up-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .xl-up-gy-md {
    --gy: 30px;
  }
  .xl-up-gx-md {
    --gx: 30px;
  }
  .xl-up-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .xl-up-gy-lg {
    --gy: 50px;
  }
  .xl-up-gx-lg {
    --gx: 50px;
  }
  .xl-up-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .xl-up-gy-xl {
    --gy: 70px;
  }
  .xl-up-gx-xl {
    --gx: 70px;
  }
  .xl-up-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .xl-up-gy-xxl {
    --gy: 140px;
  }
  .xl-up-gx-xxl {
    --gx: 140px;
  }
}
/*
|
| DISPLAYS
|----------------
|
*/
.d-none {
  display: none;
}

.d-i {
  display: inline;
}

.d-b {
  display: block;
}

.d-ib {
  display: inline-block;
}

.d-f {
  display: flex;
}

.d-if {
  display: inline-flex;
}

@media (max-width: 1399.98px) {
  .xl-down-d-none {
    display: none;
  }
  .xl-down-d-i {
    display: inline;
  }
  .xl-down-d-b {
    display: block;
  }
  .xl-down-d-ib {
    display: inline-block;
  }
  .xl-down-d-f {
    display: flex;
  }
  .xl-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 1199.98px) {
  .lg-down-d-none {
    display: none;
  }
  .lg-down-d-i {
    display: inline;
  }
  .lg-down-d-b {
    display: block;
  }
  .lg-down-d-ib {
    display: inline-block;
  }
  .lg-down-d-f {
    display: flex;
  }
  .lg-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 991.98px) {
  .md-down-d-none {
    display: none;
  }
  .md-down-d-i {
    display: inline;
  }
  .md-down-d-b {
    display: block;
  }
  .md-down-d-ib {
    display: inline-block;
  }
  .md-down-d-f {
    display: flex;
  }
  .md-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 767.98px) {
  .sm-down-d-none {
    display: none;
  }
  .sm-down-d-i {
    display: inline;
  }
  .sm-down-d-b {
    display: block;
  }
  .sm-down-d-ib {
    display: inline-block;
  }
  .sm-down-d-f {
    display: flex;
  }
  .sm-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 479.98px) {
  .xs-down-d-none {
    display: none;
  }
  .xs-down-d-i {
    display: inline;
  }
  .xs-down-d-b {
    display: block;
  }
  .xs-down-d-ib {
    display: inline-block;
  }
  .xs-down-d-f {
    display: flex;
  }
  .xs-down-d-if {
    display: inline-flex;
  }
}
@media (min-width: 480px) {
  .xs-up-d-none {
    display: none;
  }
  .xs-up-d-i {
    display: inline;
  }
  .xs-up-d-b {
    display: block;
  }
  .xs-up-d-ib {
    display: inline-block;
  }
  .xs-up-d-f {
    display: flex;
  }
  .xs-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .sm-up-d-none {
    display: none;
  }
  .sm-up-d-i {
    display: inline;
  }
  .sm-up-d-b {
    display: block;
  }
  .sm-up-d-ib {
    display: inline-block;
  }
  .sm-up-d-f {
    display: flex;
  }
  .sm-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  .md-up-d-none {
    display: none;
  }
  .md-up-d-i {
    display: inline;
  }
  .md-up-d-b {
    display: block;
  }
  .md-up-d-ib {
    display: inline-block;
  }
  .md-up-d-f {
    display: flex;
  }
  .md-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 1200px) {
  .lg-up-d-none {
    display: none;
  }
  .lg-up-d-i {
    display: inline;
  }
  .lg-up-d-b {
    display: block;
  }
  .lg-up-d-ib {
    display: inline-block;
  }
  .lg-up-d-f {
    display: flex;
  }
  .lg-up-d-if {
    display: inline-flex;
  }
}
@media (min-width: 1400px) {
  .xl-up-d-none {
    display: none;
  }
  .xl-up-d-i {
    display: inline;
  }
  .xl-up-d-b {
    display: block;
  }
  .xl-up-d-ib {
    display: inline-block;
  }
  .xl-up-d-f {
    display: flex;
  }
  .xl-up-d-if {
    display: inline-flex;
  }
}
/*
|
| 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: 5px;
}

.mt-xs {
  margin-top: 5px;
}

.mb-xs {
  margin-bottom: 5px;
}

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

.ml-xs {
  margin-left: 5px;
}

.mr-xs {
  margin-right: 5px;
}

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

.p-xs {
  padding: 5px;
}

.pt-xs {
  padding-top: 5px;
}

.pb-xs {
  padding-bottom: 5px;
}

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

.pl-xs {
  padding-left: 5px;
}

.pr-xs {
  padding-right: 5px;
}

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

.m-sm {
  margin: 15px;
}

.mt-sm {
  margin-top: 15px;
}

.mb-sm {
  margin-bottom: 15px;
}

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

.ml-sm {
  margin-left: 15px;
}

.mr-sm {
  margin-right: 15px;
}

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

.p-sm {
  padding: 15px;
}

.pt-sm {
  padding-top: 15px;
}

.pb-sm {
  padding-bottom: 15px;
}

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

.pl-sm {
  padding-left: 15px;
}

.pr-sm {
  padding-right: 15px;
}

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

.m-md {
  margin: 30px;
}

.mt-md {
  margin-top: 30px;
}

.mb-md {
  margin-bottom: 30px;
}

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

.ml-md {
  margin-left: 30px;
}

.mr-md {
  margin-right: 30px;
}

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

.p-md {
  padding: 30px;
}

.pt-md {
  padding-top: 30px;
}

.pb-md {
  padding-bottom: 30px;
}

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

.pl-md {
  padding-left: 30px;
}

.pr-md {
  padding-right: 30px;
}

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

.m-lg {
  margin: 50px;
}

.mt-lg {
  margin-top: 50px;
}

.mb-lg {
  margin-bottom: 50px;
}

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

.ml-lg {
  margin-left: 50px;
}

.mr-lg {
  margin-right: 50px;
}

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

.p-lg {
  padding: 50px;
}

.pt-lg {
  padding-top: 50px;
}

.pb-lg {
  padding-bottom: 50px;
}

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

.pl-lg {
  padding-left: 50px;
}

.pr-lg {
  padding-right: 50px;
}

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

.m-xl {
  margin: 70px;
}

.mt-xl {
  margin-top: 70px;
}

.mb-xl {
  margin-bottom: 70px;
}

.my-xl {
  margin-block: 70px;
}

.ml-xl {
  margin-left: 70px;
}

.mr-xl {
  margin-right: 70px;
}

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

.p-xl {
  padding: 70px;
}

.pt-xl {
  padding-top: 70px;
}

.pb-xl {
  padding-bottom: 70px;
}

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

.pl-xl {
  padding-left: 70px;
}

.pr-xl {
  padding-right: 70px;
}

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

.m-xxl {
  margin: 140px;
}

.mt-xxl {
  margin-top: 140px;
}

.mb-xxl {
  margin-bottom: 140px;
}

.my-xxl {
  margin-block: 140px;
}

.ml-xxl {
  margin-left: 140px;
}

.mr-xxl {
  margin-right: 140px;
}

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

.p-xxl {
  padding: 140px;
}

.pt-xxl {
  padding-top: 140px;
}

.pb-xxl {
  padding-bottom: 140px;
}

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

.pl-xxl {
  padding-left: 140px;
}

.pr-xxl {
  padding-right: 140px;
}

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

.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: 1399.98px) {
  .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: 5px;
  }
  .xl-down-mt-xs {
    margin-top: 5px;
  }
  .xl-down-mb-xs {
    margin-bottom: 5px;
  }
  .xl-down-my-xs {
    margin-block: 5px;
  }
  .xl-down-ml-xs {
    margin-left: 5px;
  }
  .xl-down-mr-xs {
    margin-right: 5px;
  }
  .xl-down-mx-xs {
    margin-inline: 5px;
  }
  .xl-down-p-xs {
    padding: 5px;
  }
  .xl-down-pt-xs {
    padding-top: 5px;
  }
  .xl-down-pb-xs {
    padding-bottom: 5px;
  }
  .xl-down-py-xs {
    padding-block: 5px;
  }
  .xl-down-pl-xs {
    padding-left: 5px;
  }
  .xl-down-pr-xs {
    padding-right: 5px;
  }
  .xl-down-px-xs {
    padding-inline: 5px;
  }
  .xl-down-m-sm {
    margin: 15px;
  }
  .xl-down-mt-sm {
    margin-top: 15px;
  }
  .xl-down-mb-sm {
    margin-bottom: 15px;
  }
  .xl-down-my-sm {
    margin-block: 15px;
  }
  .xl-down-ml-sm {
    margin-left: 15px;
  }
  .xl-down-mr-sm {
    margin-right: 15px;
  }
  .xl-down-mx-sm {
    margin-inline: 15px;
  }
  .xl-down-p-sm {
    padding: 15px;
  }
  .xl-down-pt-sm {
    padding-top: 15px;
  }
  .xl-down-pb-sm {
    padding-bottom: 15px;
  }
  .xl-down-py-sm {
    padding-block: 15px;
  }
  .xl-down-pl-sm {
    padding-left: 15px;
  }
  .xl-down-pr-sm {
    padding-right: 15px;
  }
  .xl-down-px-sm {
    padding-inline: 15px;
  }
  .xl-down-m-md {
    margin: 30px;
  }
  .xl-down-mt-md {
    margin-top: 30px;
  }
  .xl-down-mb-md {
    margin-bottom: 30px;
  }
  .xl-down-my-md {
    margin-block: 30px;
  }
  .xl-down-ml-md {
    margin-left: 30px;
  }
  .xl-down-mr-md {
    margin-right: 30px;
  }
  .xl-down-mx-md {
    margin-inline: 30px;
  }
  .xl-down-p-md {
    padding: 30px;
  }
  .xl-down-pt-md {
    padding-top: 30px;
  }
  .xl-down-pb-md {
    padding-bottom: 30px;
  }
  .xl-down-py-md {
    padding-block: 30px;
  }
  .xl-down-pl-md {
    padding-left: 30px;
  }
  .xl-down-pr-md {
    padding-right: 30px;
  }
  .xl-down-px-md {
    padding-inline: 30px;
  }
  .xl-down-m-lg {
    margin: 50px;
  }
  .xl-down-mt-lg {
    margin-top: 50px;
  }
  .xl-down-mb-lg {
    margin-bottom: 50px;
  }
  .xl-down-my-lg {
    margin-block: 50px;
  }
  .xl-down-ml-lg {
    margin-left: 50px;
  }
  .xl-down-mr-lg {
    margin-right: 50px;
  }
  .xl-down-mx-lg {
    margin-inline: 50px;
  }
  .xl-down-p-lg {
    padding: 50px;
  }
  .xl-down-pt-lg {
    padding-top: 50px;
  }
  .xl-down-pb-lg {
    padding-bottom: 50px;
  }
  .xl-down-py-lg {
    padding-block: 50px;
  }
  .xl-down-pl-lg {
    padding-left: 50px;
  }
  .xl-down-pr-lg {
    padding-right: 50px;
  }
  .xl-down-px-lg {
    padding-inline: 50px;
  }
  .xl-down-m-xl {
    margin: 70px;
  }
  .xl-down-mt-xl {
    margin-top: 70px;
  }
  .xl-down-mb-xl {
    margin-bottom: 70px;
  }
  .xl-down-my-xl {
    margin-block: 70px;
  }
  .xl-down-ml-xl {
    margin-left: 70px;
  }
  .xl-down-mr-xl {
    margin-right: 70px;
  }
  .xl-down-mx-xl {
    margin-inline: 70px;
  }
  .xl-down-p-xl {
    padding: 70px;
  }
  .xl-down-pt-xl {
    padding-top: 70px;
  }
  .xl-down-pb-xl {
    padding-bottom: 70px;
  }
  .xl-down-py-xl {
    padding-block: 70px;
  }
  .xl-down-pl-xl {
    padding-left: 70px;
  }
  .xl-down-pr-xl {
    padding-right: 70px;
  }
  .xl-down-px-xl {
    padding-inline: 70px;
  }
  .xl-down-m-xxl {
    margin: 140px;
  }
  .xl-down-mt-xxl {
    margin-top: 140px;
  }
  .xl-down-mb-xxl {
    margin-bottom: 140px;
  }
  .xl-down-my-xxl {
    margin-block: 140px;
  }
  .xl-down-ml-xxl {
    margin-left: 140px;
  }
  .xl-down-mr-xxl {
    margin-right: 140px;
  }
  .xl-down-mx-xxl {
    margin-inline: 140px;
  }
  .xl-down-p-xxl {
    padding: 140px;
  }
  .xl-down-pt-xxl {
    padding-top: 140px;
  }
  .xl-down-pb-xxl {
    padding-bottom: 140px;
  }
  .xl-down-py-xxl {
    padding-block: 140px;
  }
  .xl-down-pl-xxl {
    padding-left: 140px;
  }
  .xl-down-pr-xxl {
    padding-right: 140px;
  }
  .xl-down-px-xxl {
    padding-inline: 140px;
  }
  .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: 1199.98px) {
  .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: 5px;
  }
  .lg-down-mt-xs {
    margin-top: 5px;
  }
  .lg-down-mb-xs {
    margin-bottom: 5px;
  }
  .lg-down-my-xs {
    margin-block: 5px;
  }
  .lg-down-ml-xs {
    margin-left: 5px;
  }
  .lg-down-mr-xs {
    margin-right: 5px;
  }
  .lg-down-mx-xs {
    margin-inline: 5px;
  }
  .lg-down-p-xs {
    padding: 5px;
  }
  .lg-down-pt-xs {
    padding-top: 5px;
  }
  .lg-down-pb-xs {
    padding-bottom: 5px;
  }
  .lg-down-py-xs {
    padding-block: 5px;
  }
  .lg-down-pl-xs {
    padding-left: 5px;
  }
  .lg-down-pr-xs {
    padding-right: 5px;
  }
  .lg-down-px-xs {
    padding-inline: 5px;
  }
  .lg-down-m-sm {
    margin: 15px;
  }
  .lg-down-mt-sm {
    margin-top: 15px;
  }
  .lg-down-mb-sm {
    margin-bottom: 15px;
  }
  .lg-down-my-sm {
    margin-block: 15px;
  }
  .lg-down-ml-sm {
    margin-left: 15px;
  }
  .lg-down-mr-sm {
    margin-right: 15px;
  }
  .lg-down-mx-sm {
    margin-inline: 15px;
  }
  .lg-down-p-sm {
    padding: 15px;
  }
  .lg-down-pt-sm {
    padding-top: 15px;
  }
  .lg-down-pb-sm {
    padding-bottom: 15px;
  }
  .lg-down-py-sm {
    padding-block: 15px;
  }
  .lg-down-pl-sm {
    padding-left: 15px;
  }
  .lg-down-pr-sm {
    padding-right: 15px;
  }
  .lg-down-px-sm {
    padding-inline: 15px;
  }
  .lg-down-m-md {
    margin: 30px;
  }
  .lg-down-mt-md {
    margin-top: 30px;
  }
  .lg-down-mb-md {
    margin-bottom: 30px;
  }
  .lg-down-my-md {
    margin-block: 30px;
  }
  .lg-down-ml-md {
    margin-left: 30px;
  }
  .lg-down-mr-md {
    margin-right: 30px;
  }
  .lg-down-mx-md {
    margin-inline: 30px;
  }
  .lg-down-p-md {
    padding: 30px;
  }
  .lg-down-pt-md {
    padding-top: 30px;
  }
  .lg-down-pb-md {
    padding-bottom: 30px;
  }
  .lg-down-py-md {
    padding-block: 30px;
  }
  .lg-down-pl-md {
    padding-left: 30px;
  }
  .lg-down-pr-md {
    padding-right: 30px;
  }
  .lg-down-px-md {
    padding-inline: 30px;
  }
  .lg-down-m-lg {
    margin: 50px;
  }
  .lg-down-mt-lg {
    margin-top: 50px;
  }
  .lg-down-mb-lg {
    margin-bottom: 50px;
  }
  .lg-down-my-lg {
    margin-block: 50px;
  }
  .lg-down-ml-lg {
    margin-left: 50px;
  }
  .lg-down-mr-lg {
    margin-right: 50px;
  }
  .lg-down-mx-lg {
    margin-inline: 50px;
  }
  .lg-down-p-lg {
    padding: 50px;
  }
  .lg-down-pt-lg {
    padding-top: 50px;
  }
  .lg-down-pb-lg {
    padding-bottom: 50px;
  }
  .lg-down-py-lg {
    padding-block: 50px;
  }
  .lg-down-pl-lg {
    padding-left: 50px;
  }
  .lg-down-pr-lg {
    padding-right: 50px;
  }
  .lg-down-px-lg {
    padding-inline: 50px;
  }
  .lg-down-m-xl {
    margin: 70px;
  }
  .lg-down-mt-xl {
    margin-top: 70px;
  }
  .lg-down-mb-xl {
    margin-bottom: 70px;
  }
  .lg-down-my-xl {
    margin-block: 70px;
  }
  .lg-down-ml-xl {
    margin-left: 70px;
  }
  .lg-down-mr-xl {
    margin-right: 70px;
  }
  .lg-down-mx-xl {
    margin-inline: 70px;
  }
  .lg-down-p-xl {
    padding: 70px;
  }
  .lg-down-pt-xl {
    padding-top: 70px;
  }
  .lg-down-pb-xl {
    padding-bottom: 70px;
  }
  .lg-down-py-xl {
    padding-block: 70px;
  }
  .lg-down-pl-xl {
    padding-left: 70px;
  }
  .lg-down-pr-xl {
    padding-right: 70px;
  }
  .lg-down-px-xl {
    padding-inline: 70px;
  }
  .lg-down-m-xxl {
    margin: 140px;
  }
  .lg-down-mt-xxl {
    margin-top: 140px;
  }
  .lg-down-mb-xxl {
    margin-bottom: 140px;
  }
  .lg-down-my-xxl {
    margin-block: 140px;
  }
  .lg-down-ml-xxl {
    margin-left: 140px;
  }
  .lg-down-mr-xxl {
    margin-right: 140px;
  }
  .lg-down-mx-xxl {
    margin-inline: 140px;
  }
  .lg-down-p-xxl {
    padding: 140px;
  }
  .lg-down-pt-xxl {
    padding-top: 140px;
  }
  .lg-down-pb-xxl {
    padding-bottom: 140px;
  }
  .lg-down-py-xxl {
    padding-block: 140px;
  }
  .lg-down-pl-xxl {
    padding-left: 140px;
  }
  .lg-down-pr-xxl {
    padding-right: 140px;
  }
  .lg-down-px-xxl {
    padding-inline: 140px;
  }
  .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: 991.98px) {
  .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: 5px;
  }
  .md-down-mt-xs {
    margin-top: 5px;
  }
  .md-down-mb-xs {
    margin-bottom: 5px;
  }
  .md-down-my-xs {
    margin-block: 5px;
  }
  .md-down-ml-xs {
    margin-left: 5px;
  }
  .md-down-mr-xs {
    margin-right: 5px;
  }
  .md-down-mx-xs {
    margin-inline: 5px;
  }
  .md-down-p-xs {
    padding: 5px;
  }
  .md-down-pt-xs {
    padding-top: 5px;
  }
  .md-down-pb-xs {
    padding-bottom: 5px;
  }
  .md-down-py-xs {
    padding-block: 5px;
  }
  .md-down-pl-xs {
    padding-left: 5px;
  }
  .md-down-pr-xs {
    padding-right: 5px;
  }
  .md-down-px-xs {
    padding-inline: 5px;
  }
  .md-down-m-sm {
    margin: 15px;
  }
  .md-down-mt-sm {
    margin-top: 15px;
  }
  .md-down-mb-sm {
    margin-bottom: 15px;
  }
  .md-down-my-sm {
    margin-block: 15px;
  }
  .md-down-ml-sm {
    margin-left: 15px;
  }
  .md-down-mr-sm {
    margin-right: 15px;
  }
  .md-down-mx-sm {
    margin-inline: 15px;
  }
  .md-down-p-sm {
    padding: 15px;
  }
  .md-down-pt-sm {
    padding-top: 15px;
  }
  .md-down-pb-sm {
    padding-bottom: 15px;
  }
  .md-down-py-sm {
    padding-block: 15px;
  }
  .md-down-pl-sm {
    padding-left: 15px;
  }
  .md-down-pr-sm {
    padding-right: 15px;
  }
  .md-down-px-sm {
    padding-inline: 15px;
  }
  .md-down-m-md {
    margin: 30px;
  }
  .md-down-mt-md {
    margin-top: 30px;
  }
  .md-down-mb-md {
    margin-bottom: 30px;
  }
  .md-down-my-md {
    margin-block: 30px;
  }
  .md-down-ml-md {
    margin-left: 30px;
  }
  .md-down-mr-md {
    margin-right: 30px;
  }
  .md-down-mx-md {
    margin-inline: 30px;
  }
  .md-down-p-md {
    padding: 30px;
  }
  .md-down-pt-md {
    padding-top: 30px;
  }
  .md-down-pb-md {
    padding-bottom: 30px;
  }
  .md-down-py-md {
    padding-block: 30px;
  }
  .md-down-pl-md {
    padding-left: 30px;
  }
  .md-down-pr-md {
    padding-right: 30px;
  }
  .md-down-px-md {
    padding-inline: 30px;
  }
  .md-down-m-lg {
    margin: 50px;
  }
  .md-down-mt-lg {
    margin-top: 50px;
  }
  .md-down-mb-lg {
    margin-bottom: 50px;
  }
  .md-down-my-lg {
    margin-block: 50px;
  }
  .md-down-ml-lg {
    margin-left: 50px;
  }
  .md-down-mr-lg {
    margin-right: 50px;
  }
  .md-down-mx-lg {
    margin-inline: 50px;
  }
  .md-down-p-lg {
    padding: 50px;
  }
  .md-down-pt-lg {
    padding-top: 50px;
  }
  .md-down-pb-lg {
    padding-bottom: 50px;
  }
  .md-down-py-lg {
    padding-block: 50px;
  }
  .md-down-pl-lg {
    padding-left: 50px;
  }
  .md-down-pr-lg {
    padding-right: 50px;
  }
  .md-down-px-lg {
    padding-inline: 50px;
  }
  .md-down-m-xl {
    margin: 70px;
  }
  .md-down-mt-xl {
    margin-top: 70px;
  }
  .md-down-mb-xl {
    margin-bottom: 70px;
  }
  .md-down-my-xl {
    margin-block: 70px;
  }
  .md-down-ml-xl {
    margin-left: 70px;
  }
  .md-down-mr-xl {
    margin-right: 70px;
  }
  .md-down-mx-xl {
    margin-inline: 70px;
  }
  .md-down-p-xl {
    padding: 70px;
  }
  .md-down-pt-xl {
    padding-top: 70px;
  }
  .md-down-pb-xl {
    padding-bottom: 70px;
  }
  .md-down-py-xl {
    padding-block: 70px;
  }
  .md-down-pl-xl {
    padding-left: 70px;
  }
  .md-down-pr-xl {
    padding-right: 70px;
  }
  .md-down-px-xl {
    padding-inline: 70px;
  }
  .md-down-m-xxl {
    margin: 140px;
  }
  .md-down-mt-xxl {
    margin-top: 140px;
  }
  .md-down-mb-xxl {
    margin-bottom: 140px;
  }
  .md-down-my-xxl {
    margin-block: 140px;
  }
  .md-down-ml-xxl {
    margin-left: 140px;
  }
  .md-down-mr-xxl {
    margin-right: 140px;
  }
  .md-down-mx-xxl {
    margin-inline: 140px;
  }
  .md-down-p-xxl {
    padding: 140px;
  }
  .md-down-pt-xxl {
    padding-top: 140px;
  }
  .md-down-pb-xxl {
    padding-bottom: 140px;
  }
  .md-down-py-xxl {
    padding-block: 140px;
  }
  .md-down-pl-xxl {
    padding-left: 140px;
  }
  .md-down-pr-xxl {
    padding-right: 140px;
  }
  .md-down-px-xxl {
    padding-inline: 140px;
  }
  .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: 767.98px) {
  .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: 5px;
  }
  .sm-down-mt-xs {
    margin-top: 5px;
  }
  .sm-down-mb-xs {
    margin-bottom: 5px;
  }
  .sm-down-my-xs {
    margin-block: 5px;
  }
  .sm-down-ml-xs {
    margin-left: 5px;
  }
  .sm-down-mr-xs {
    margin-right: 5px;
  }
  .sm-down-mx-xs {
    margin-inline: 5px;
  }
  .sm-down-p-xs {
    padding: 5px;
  }
  .sm-down-pt-xs {
    padding-top: 5px;
  }
  .sm-down-pb-xs {
    padding-bottom: 5px;
  }
  .sm-down-py-xs {
    padding-block: 5px;
  }
  .sm-down-pl-xs {
    padding-left: 5px;
  }
  .sm-down-pr-xs {
    padding-right: 5px;
  }
  .sm-down-px-xs {
    padding-inline: 5px;
  }
  .sm-down-m-sm {
    margin: 15px;
  }
  .sm-down-mt-sm {
    margin-top: 15px;
  }
  .sm-down-mb-sm {
    margin-bottom: 15px;
  }
  .sm-down-my-sm {
    margin-block: 15px;
  }
  .sm-down-ml-sm {
    margin-left: 15px;
  }
  .sm-down-mr-sm {
    margin-right: 15px;
  }
  .sm-down-mx-sm {
    margin-inline: 15px;
  }
  .sm-down-p-sm {
    padding: 15px;
  }
  .sm-down-pt-sm {
    padding-top: 15px;
  }
  .sm-down-pb-sm {
    padding-bottom: 15px;
  }
  .sm-down-py-sm {
    padding-block: 15px;
  }
  .sm-down-pl-sm {
    padding-left: 15px;
  }
  .sm-down-pr-sm {
    padding-right: 15px;
  }
  .sm-down-px-sm {
    padding-inline: 15px;
  }
  .sm-down-m-md {
    margin: 30px;
  }
  .sm-down-mt-md {
    margin-top: 30px;
  }
  .sm-down-mb-md {
    margin-bottom: 30px;
  }
  .sm-down-my-md {
    margin-block: 30px;
  }
  .sm-down-ml-md {
    margin-left: 30px;
  }
  .sm-down-mr-md {
    margin-right: 30px;
  }
  .sm-down-mx-md {
    margin-inline: 30px;
  }
  .sm-down-p-md {
    padding: 30px;
  }
  .sm-down-pt-md {
    padding-top: 30px;
  }
  .sm-down-pb-md {
    padding-bottom: 30px;
  }
  .sm-down-py-md {
    padding-block: 30px;
  }
  .sm-down-pl-md {
    padding-left: 30px;
  }
  .sm-down-pr-md {
    padding-right: 30px;
  }
  .sm-down-px-md {
    padding-inline: 30px;
  }
  .sm-down-m-lg {
    margin: 50px;
  }
  .sm-down-mt-lg {
    margin-top: 50px;
  }
  .sm-down-mb-lg {
    margin-bottom: 50px;
  }
  .sm-down-my-lg {
    margin-block: 50px;
  }
  .sm-down-ml-lg {
    margin-left: 50px;
  }
  .sm-down-mr-lg {
    margin-right: 50px;
  }
  .sm-down-mx-lg {
    margin-inline: 50px;
  }
  .sm-down-p-lg {
    padding: 50px;
  }
  .sm-down-pt-lg {
    padding-top: 50px;
  }
  .sm-down-pb-lg {
    padding-bottom: 50px;
  }
  .sm-down-py-lg {
    padding-block: 50px;
  }
  .sm-down-pl-lg {
    padding-left: 50px;
  }
  .sm-down-pr-lg {
    padding-right: 50px;
  }
  .sm-down-px-lg {
    padding-inline: 50px;
  }
  .sm-down-m-xl {
    margin: 70px;
  }
  .sm-down-mt-xl {
    margin-top: 70px;
  }
  .sm-down-mb-xl {
    margin-bottom: 70px;
  }
  .sm-down-my-xl {
    margin-block: 70px;
  }
  .sm-down-ml-xl {
    margin-left: 70px;
  }
  .sm-down-mr-xl {
    margin-right: 70px;
  }
  .sm-down-mx-xl {
    margin-inline: 70px;
  }
  .sm-down-p-xl {
    padding: 70px;
  }
  .sm-down-pt-xl {
    padding-top: 70px;
  }
  .sm-down-pb-xl {
    padding-bottom: 70px;
  }
  .sm-down-py-xl {
    padding-block: 70px;
  }
  .sm-down-pl-xl {
    padding-left: 70px;
  }
  .sm-down-pr-xl {
    padding-right: 70px;
  }
  .sm-down-px-xl {
    padding-inline: 70px;
  }
  .sm-down-m-xxl {
    margin: 140px;
  }
  .sm-down-mt-xxl {
    margin-top: 140px;
  }
  .sm-down-mb-xxl {
    margin-bottom: 140px;
  }
  .sm-down-my-xxl {
    margin-block: 140px;
  }
  .sm-down-ml-xxl {
    margin-left: 140px;
  }
  .sm-down-mr-xxl {
    margin-right: 140px;
  }
  .sm-down-mx-xxl {
    margin-inline: 140px;
  }
  .sm-down-p-xxl {
    padding: 140px;
  }
  .sm-down-pt-xxl {
    padding-top: 140px;
  }
  .sm-down-pb-xxl {
    padding-bottom: 140px;
  }
  .sm-down-py-xxl {
    padding-block: 140px;
  }
  .sm-down-pl-xxl {
    padding-left: 140px;
  }
  .sm-down-pr-xxl {
    padding-right: 140px;
  }
  .sm-down-px-xxl {
    padding-inline: 140px;
  }
  .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 (max-width: 479.98px) {
  .xs-down-m-0 {
    margin: 0;
  }
  .xs-down-mt-0 {
    margin-top: 0;
  }
  .xs-down-mb-0 {
    margin-bottom: 0;
  }
  .xs-down-my-0 {
    margin-block: 0;
  }
  .xs-down-ml-0 {
    margin-left: 0;
  }
  .xs-down-mr-0 {
    margin-right: 0;
  }
  .xs-down-mx-0 {
    margin-inline: 0;
  }
  .xs-down-p-0 {
    padding: 0;
  }
  .xs-down-pt-0 {
    padding-top: 0;
  }
  .xs-down-pb-0 {
    padding-bottom: 0;
  }
  .xs-down-py-0 {
    padding-block: 0;
  }
  .xs-down-pl-0 {
    padding-left: 0;
  }
  .xs-down-pr-0 {
    padding-right: 0;
  }
  .xs-down-px-0 {
    padding-inline: 0;
  }
  .xs-down-m-xs {
    margin: 5px;
  }
  .xs-down-mt-xs {
    margin-top: 5px;
  }
  .xs-down-mb-xs {
    margin-bottom: 5px;
  }
  .xs-down-my-xs {
    margin-block: 5px;
  }
  .xs-down-ml-xs {
    margin-left: 5px;
  }
  .xs-down-mr-xs {
    margin-right: 5px;
  }
  .xs-down-mx-xs {
    margin-inline: 5px;
  }
  .xs-down-p-xs {
    padding: 5px;
  }
  .xs-down-pt-xs {
    padding-top: 5px;
  }
  .xs-down-pb-xs {
    padding-bottom: 5px;
  }
  .xs-down-py-xs {
    padding-block: 5px;
  }
  .xs-down-pl-xs {
    padding-left: 5px;
  }
  .xs-down-pr-xs {
    padding-right: 5px;
  }
  .xs-down-px-xs {
    padding-inline: 5px;
  }
  .xs-down-m-sm {
    margin: 15px;
  }
  .xs-down-mt-sm {
    margin-top: 15px;
  }
  .xs-down-mb-sm {
    margin-bottom: 15px;
  }
  .xs-down-my-sm {
    margin-block: 15px;
  }
  .xs-down-ml-sm {
    margin-left: 15px;
  }
  .xs-down-mr-sm {
    margin-right: 15px;
  }
  .xs-down-mx-sm {
    margin-inline: 15px;
  }
  .xs-down-p-sm {
    padding: 15px;
  }
  .xs-down-pt-sm {
    padding-top: 15px;
  }
  .xs-down-pb-sm {
    padding-bottom: 15px;
  }
  .xs-down-py-sm {
    padding-block: 15px;
  }
  .xs-down-pl-sm {
    padding-left: 15px;
  }
  .xs-down-pr-sm {
    padding-right: 15px;
  }
  .xs-down-px-sm {
    padding-inline: 15px;
  }
  .xs-down-m-md {
    margin: 30px;
  }
  .xs-down-mt-md {
    margin-top: 30px;
  }
  .xs-down-mb-md {
    margin-bottom: 30px;
  }
  .xs-down-my-md {
    margin-block: 30px;
  }
  .xs-down-ml-md {
    margin-left: 30px;
  }
  .xs-down-mr-md {
    margin-right: 30px;
  }
  .xs-down-mx-md {
    margin-inline: 30px;
  }
  .xs-down-p-md {
    padding: 30px;
  }
  .xs-down-pt-md {
    padding-top: 30px;
  }
  .xs-down-pb-md {
    padding-bottom: 30px;
  }
  .xs-down-py-md {
    padding-block: 30px;
  }
  .xs-down-pl-md {
    padding-left: 30px;
  }
  .xs-down-pr-md {
    padding-right: 30px;
  }
  .xs-down-px-md {
    padding-inline: 30px;
  }
  .xs-down-m-lg {
    margin: 50px;
  }
  .xs-down-mt-lg {
    margin-top: 50px;
  }
  .xs-down-mb-lg {
    margin-bottom: 50px;
  }
  .xs-down-my-lg {
    margin-block: 50px;
  }
  .xs-down-ml-lg {
    margin-left: 50px;
  }
  .xs-down-mr-lg {
    margin-right: 50px;
  }
  .xs-down-mx-lg {
    margin-inline: 50px;
  }
  .xs-down-p-lg {
    padding: 50px;
  }
  .xs-down-pt-lg {
    padding-top: 50px;
  }
  .xs-down-pb-lg {
    padding-bottom: 50px;
  }
  .xs-down-py-lg {
    padding-block: 50px;
  }
  .xs-down-pl-lg {
    padding-left: 50px;
  }
  .xs-down-pr-lg {
    padding-right: 50px;
  }
  .xs-down-px-lg {
    padding-inline: 50px;
  }
  .xs-down-m-xl {
    margin: 70px;
  }
  .xs-down-mt-xl {
    margin-top: 70px;
  }
  .xs-down-mb-xl {
    margin-bottom: 70px;
  }
  .xs-down-my-xl {
    margin-block: 70px;
  }
  .xs-down-ml-xl {
    margin-left: 70px;
  }
  .xs-down-mr-xl {
    margin-right: 70px;
  }
  .xs-down-mx-xl {
    margin-inline: 70px;
  }
  .xs-down-p-xl {
    padding: 70px;
  }
  .xs-down-pt-xl {
    padding-top: 70px;
  }
  .xs-down-pb-xl {
    padding-bottom: 70px;
  }
  .xs-down-py-xl {
    padding-block: 70px;
  }
  .xs-down-pl-xl {
    padding-left: 70px;
  }
  .xs-down-pr-xl {
    padding-right: 70px;
  }
  .xs-down-px-xl {
    padding-inline: 70px;
  }
  .xs-down-m-xxl {
    margin: 140px;
  }
  .xs-down-mt-xxl {
    margin-top: 140px;
  }
  .xs-down-mb-xxl {
    margin-bottom: 140px;
  }
  .xs-down-my-xxl {
    margin-block: 140px;
  }
  .xs-down-ml-xxl {
    margin-left: 140px;
  }
  .xs-down-mr-xxl {
    margin-right: 140px;
  }
  .xs-down-mx-xxl {
    margin-inline: 140px;
  }
  .xs-down-p-xxl {
    padding: 140px;
  }
  .xs-down-pt-xxl {
    padding-top: 140px;
  }
  .xs-down-pb-xxl {
    padding-bottom: 140px;
  }
  .xs-down-py-xxl {
    padding-block: 140px;
  }
  .xs-down-pl-xxl {
    padding-left: 140px;
  }
  .xs-down-pr-xxl {
    padding-right: 140px;
  }
  .xs-down-px-xxl {
    padding-inline: 140px;
  }
  .xs-down-m-fluid {
    margin: var(--side-margin);
  }
  .xs-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xs-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xs-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .xs-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xs-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xs-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xs-down-p-fluid {
    padding: var(--side-margin);
  }
  .xs-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xs-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xs-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .xs-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xs-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xs-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 480px) {
  .xs-up-m-0 {
    margin: 0;
  }
  .xs-up-mt-0 {
    margin-top: 0;
  }
  .xs-up-mb-0 {
    margin-bottom: 0;
  }
  .xs-up-my-0 {
    margin-block: 0;
  }
  .xs-up-ml-0 {
    margin-left: 0;
  }
  .xs-up-mr-0 {
    margin-right: 0;
  }
  .xs-up-mx-0 {
    margin-inline: 0;
  }
  .xs-up-p-0 {
    padding: 0;
  }
  .xs-up-pt-0 {
    padding-top: 0;
  }
  .xs-up-pb-0 {
    padding-bottom: 0;
  }
  .xs-up-py-0 {
    padding-block: 0;
  }
  .xs-up-pl-0 {
    padding-left: 0;
  }
  .xs-up-pr-0 {
    padding-right: 0;
  }
  .xs-up-px-0 {
    padding-inline: 0;
  }
  .xs-up-m-xs {
    margin: 5px;
  }
  .xs-up-mt-xs {
    margin-top: 5px;
  }
  .xs-up-mb-xs {
    margin-bottom: 5px;
  }
  .xs-up-my-xs {
    margin-block: 5px;
  }
  .xs-up-ml-xs {
    margin-left: 5px;
  }
  .xs-up-mr-xs {
    margin-right: 5px;
  }
  .xs-up-mx-xs {
    margin-inline: 5px;
  }
  .xs-up-p-xs {
    padding: 5px;
  }
  .xs-up-pt-xs {
    padding-top: 5px;
  }
  .xs-up-pb-xs {
    padding-bottom: 5px;
  }
  .xs-up-py-xs {
    padding-block: 5px;
  }
  .xs-up-pl-xs {
    padding-left: 5px;
  }
  .xs-up-pr-xs {
    padding-right: 5px;
  }
  .xs-up-px-xs {
    padding-inline: 5px;
  }
  .xs-up-m-sm {
    margin: 15px;
  }
  .xs-up-mt-sm {
    margin-top: 15px;
  }
  .xs-up-mb-sm {
    margin-bottom: 15px;
  }
  .xs-up-my-sm {
    margin-block: 15px;
  }
  .xs-up-ml-sm {
    margin-left: 15px;
  }
  .xs-up-mr-sm {
    margin-right: 15px;
  }
  .xs-up-mx-sm {
    margin-inline: 15px;
  }
  .xs-up-p-sm {
    padding: 15px;
  }
  .xs-up-pt-sm {
    padding-top: 15px;
  }
  .xs-up-pb-sm {
    padding-bottom: 15px;
  }
  .xs-up-py-sm {
    padding-block: 15px;
  }
  .xs-up-pl-sm {
    padding-left: 15px;
  }
  .xs-up-pr-sm {
    padding-right: 15px;
  }
  .xs-up-px-sm {
    padding-inline: 15px;
  }
  .xs-up-m-md {
    margin: 30px;
  }
  .xs-up-mt-md {
    margin-top: 30px;
  }
  .xs-up-mb-md {
    margin-bottom: 30px;
  }
  .xs-up-my-md {
    margin-block: 30px;
  }
  .xs-up-ml-md {
    margin-left: 30px;
  }
  .xs-up-mr-md {
    margin-right: 30px;
  }
  .xs-up-mx-md {
    margin-inline: 30px;
  }
  .xs-up-p-md {
    padding: 30px;
  }
  .xs-up-pt-md {
    padding-top: 30px;
  }
  .xs-up-pb-md {
    padding-bottom: 30px;
  }
  .xs-up-py-md {
    padding-block: 30px;
  }
  .xs-up-pl-md {
    padding-left: 30px;
  }
  .xs-up-pr-md {
    padding-right: 30px;
  }
  .xs-up-px-md {
    padding-inline: 30px;
  }
  .xs-up-m-lg {
    margin: 50px;
  }
  .xs-up-mt-lg {
    margin-top: 50px;
  }
  .xs-up-mb-lg {
    margin-bottom: 50px;
  }
  .xs-up-my-lg {
    margin-block: 50px;
  }
  .xs-up-ml-lg {
    margin-left: 50px;
  }
  .xs-up-mr-lg {
    margin-right: 50px;
  }
  .xs-up-mx-lg {
    margin-inline: 50px;
  }
  .xs-up-p-lg {
    padding: 50px;
  }
  .xs-up-pt-lg {
    padding-top: 50px;
  }
  .xs-up-pb-lg {
    padding-bottom: 50px;
  }
  .xs-up-py-lg {
    padding-block: 50px;
  }
  .xs-up-pl-lg {
    padding-left: 50px;
  }
  .xs-up-pr-lg {
    padding-right: 50px;
  }
  .xs-up-px-lg {
    padding-inline: 50px;
  }
  .xs-up-m-xl {
    margin: 70px;
  }
  .xs-up-mt-xl {
    margin-top: 70px;
  }
  .xs-up-mb-xl {
    margin-bottom: 70px;
  }
  .xs-up-my-xl {
    margin-block: 70px;
  }
  .xs-up-ml-xl {
    margin-left: 70px;
  }
  .xs-up-mr-xl {
    margin-right: 70px;
  }
  .xs-up-mx-xl {
    margin-inline: 70px;
  }
  .xs-up-p-xl {
    padding: 70px;
  }
  .xs-up-pt-xl {
    padding-top: 70px;
  }
  .xs-up-pb-xl {
    padding-bottom: 70px;
  }
  .xs-up-py-xl {
    padding-block: 70px;
  }
  .xs-up-pl-xl {
    padding-left: 70px;
  }
  .xs-up-pr-xl {
    padding-right: 70px;
  }
  .xs-up-px-xl {
    padding-inline: 70px;
  }
  .xs-up-m-xxl {
    margin: 140px;
  }
  .xs-up-mt-xxl {
    margin-top: 140px;
  }
  .xs-up-mb-xxl {
    margin-bottom: 140px;
  }
  .xs-up-my-xxl {
    margin-block: 140px;
  }
  .xs-up-ml-xxl {
    margin-left: 140px;
  }
  .xs-up-mr-xxl {
    margin-right: 140px;
  }
  .xs-up-mx-xxl {
    margin-inline: 140px;
  }
  .xs-up-p-xxl {
    padding: 140px;
  }
  .xs-up-pt-xxl {
    padding-top: 140px;
  }
  .xs-up-pb-xxl {
    padding-bottom: 140px;
  }
  .xs-up-py-xxl {
    padding-block: 140px;
  }
  .xs-up-pl-xxl {
    padding-left: 140px;
  }
  .xs-up-pr-xxl {
    padding-right: 140px;
  }
  .xs-up-px-xxl {
    padding-inline: 140px;
  }
  .xs-up-m-fluid {
    margin: var(--side-margin);
  }
  .xs-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xs-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xs-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .xs-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xs-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xs-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xs-up-p-fluid {
    padding: var(--side-margin);
  }
  .xs-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xs-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xs-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .xs-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xs-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xs-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (min-width: 768px) {
  .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: 5px;
  }
  .sm-up-mt-xs {
    margin-top: 5px;
  }
  .sm-up-mb-xs {
    margin-bottom: 5px;
  }
  .sm-up-my-xs {
    margin-block: 5px;
  }
  .sm-up-ml-xs {
    margin-left: 5px;
  }
  .sm-up-mr-xs {
    margin-right: 5px;
  }
  .sm-up-mx-xs {
    margin-inline: 5px;
  }
  .sm-up-p-xs {
    padding: 5px;
  }
  .sm-up-pt-xs {
    padding-top: 5px;
  }
  .sm-up-pb-xs {
    padding-bottom: 5px;
  }
  .sm-up-py-xs {
    padding-block: 5px;
  }
  .sm-up-pl-xs {
    padding-left: 5px;
  }
  .sm-up-pr-xs {
    padding-right: 5px;
  }
  .sm-up-px-xs {
    padding-inline: 5px;
  }
  .sm-up-m-sm {
    margin: 15px;
  }
  .sm-up-mt-sm {
    margin-top: 15px;
  }
  .sm-up-mb-sm {
    margin-bottom: 15px;
  }
  .sm-up-my-sm {
    margin-block: 15px;
  }
  .sm-up-ml-sm {
    margin-left: 15px;
  }
  .sm-up-mr-sm {
    margin-right: 15px;
  }
  .sm-up-mx-sm {
    margin-inline: 15px;
  }
  .sm-up-p-sm {
    padding: 15px;
  }
  .sm-up-pt-sm {
    padding-top: 15px;
  }
  .sm-up-pb-sm {
    padding-bottom: 15px;
  }
  .sm-up-py-sm {
    padding-block: 15px;
  }
  .sm-up-pl-sm {
    padding-left: 15px;
  }
  .sm-up-pr-sm {
    padding-right: 15px;
  }
  .sm-up-px-sm {
    padding-inline: 15px;
  }
  .sm-up-m-md {
    margin: 30px;
  }
  .sm-up-mt-md {
    margin-top: 30px;
  }
  .sm-up-mb-md {
    margin-bottom: 30px;
  }
  .sm-up-my-md {
    margin-block: 30px;
  }
  .sm-up-ml-md {
    margin-left: 30px;
  }
  .sm-up-mr-md {
    margin-right: 30px;
  }
  .sm-up-mx-md {
    margin-inline: 30px;
  }
  .sm-up-p-md {
    padding: 30px;
  }
  .sm-up-pt-md {
    padding-top: 30px;
  }
  .sm-up-pb-md {
    padding-bottom: 30px;
  }
  .sm-up-py-md {
    padding-block: 30px;
  }
  .sm-up-pl-md {
    padding-left: 30px;
  }
  .sm-up-pr-md {
    padding-right: 30px;
  }
  .sm-up-px-md {
    padding-inline: 30px;
  }
  .sm-up-m-lg {
    margin: 50px;
  }
  .sm-up-mt-lg {
    margin-top: 50px;
  }
  .sm-up-mb-lg {
    margin-bottom: 50px;
  }
  .sm-up-my-lg {
    margin-block: 50px;
  }
  .sm-up-ml-lg {
    margin-left: 50px;
  }
  .sm-up-mr-lg {
    margin-right: 50px;
  }
  .sm-up-mx-lg {
    margin-inline: 50px;
  }
  .sm-up-p-lg {
    padding: 50px;
  }
  .sm-up-pt-lg {
    padding-top: 50px;
  }
  .sm-up-pb-lg {
    padding-bottom: 50px;
  }
  .sm-up-py-lg {
    padding-block: 50px;
  }
  .sm-up-pl-lg {
    padding-left: 50px;
  }
  .sm-up-pr-lg {
    padding-right: 50px;
  }
  .sm-up-px-lg {
    padding-inline: 50px;
  }
  .sm-up-m-xl {
    margin: 70px;
  }
  .sm-up-mt-xl {
    margin-top: 70px;
  }
  .sm-up-mb-xl {
    margin-bottom: 70px;
  }
  .sm-up-my-xl {
    margin-block: 70px;
  }
  .sm-up-ml-xl {
    margin-left: 70px;
  }
  .sm-up-mr-xl {
    margin-right: 70px;
  }
  .sm-up-mx-xl {
    margin-inline: 70px;
  }
  .sm-up-p-xl {
    padding: 70px;
  }
  .sm-up-pt-xl {
    padding-top: 70px;
  }
  .sm-up-pb-xl {
    padding-bottom: 70px;
  }
  .sm-up-py-xl {
    padding-block: 70px;
  }
  .sm-up-pl-xl {
    padding-left: 70px;
  }
  .sm-up-pr-xl {
    padding-right: 70px;
  }
  .sm-up-px-xl {
    padding-inline: 70px;
  }
  .sm-up-m-xxl {
    margin: 140px;
  }
  .sm-up-mt-xxl {
    margin-top: 140px;
  }
  .sm-up-mb-xxl {
    margin-bottom: 140px;
  }
  .sm-up-my-xxl {
    margin-block: 140px;
  }
  .sm-up-ml-xxl {
    margin-left: 140px;
  }
  .sm-up-mr-xxl {
    margin-right: 140px;
  }
  .sm-up-mx-xxl {
    margin-inline: 140px;
  }
  .sm-up-p-xxl {
    padding: 140px;
  }
  .sm-up-pt-xxl {
    padding-top: 140px;
  }
  .sm-up-pb-xxl {
    padding-bottom: 140px;
  }
  .sm-up-py-xxl {
    padding-block: 140px;
  }
  .sm-up-pl-xxl {
    padding-left: 140px;
  }
  .sm-up-pr-xxl {
    padding-right: 140px;
  }
  .sm-up-px-xxl {
    padding-inline: 140px;
  }
  .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: 992px) {
  .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: 5px;
  }
  .md-up-mt-xs {
    margin-top: 5px;
  }
  .md-up-mb-xs {
    margin-bottom: 5px;
  }
  .md-up-my-xs {
    margin-block: 5px;
  }
  .md-up-ml-xs {
    margin-left: 5px;
  }
  .md-up-mr-xs {
    margin-right: 5px;
  }
  .md-up-mx-xs {
    margin-inline: 5px;
  }
  .md-up-p-xs {
    padding: 5px;
  }
  .md-up-pt-xs {
    padding-top: 5px;
  }
  .md-up-pb-xs {
    padding-bottom: 5px;
  }
  .md-up-py-xs {
    padding-block: 5px;
  }
  .md-up-pl-xs {
    padding-left: 5px;
  }
  .md-up-pr-xs {
    padding-right: 5px;
  }
  .md-up-px-xs {
    padding-inline: 5px;
  }
  .md-up-m-sm {
    margin: 15px;
  }
  .md-up-mt-sm {
    margin-top: 15px;
  }
  .md-up-mb-sm {
    margin-bottom: 15px;
  }
  .md-up-my-sm {
    margin-block: 15px;
  }
  .md-up-ml-sm {
    margin-left: 15px;
  }
  .md-up-mr-sm {
    margin-right: 15px;
  }
  .md-up-mx-sm {
    margin-inline: 15px;
  }
  .md-up-p-sm {
    padding: 15px;
  }
  .md-up-pt-sm {
    padding-top: 15px;
  }
  .md-up-pb-sm {
    padding-bottom: 15px;
  }
  .md-up-py-sm {
    padding-block: 15px;
  }
  .md-up-pl-sm {
    padding-left: 15px;
  }
  .md-up-pr-sm {
    padding-right: 15px;
  }
  .md-up-px-sm {
    padding-inline: 15px;
  }
  .md-up-m-md {
    margin: 30px;
  }
  .md-up-mt-md {
    margin-top: 30px;
  }
  .md-up-mb-md {
    margin-bottom: 30px;
  }
  .md-up-my-md {
    margin-block: 30px;
  }
  .md-up-ml-md {
    margin-left: 30px;
  }
  .md-up-mr-md {
    margin-right: 30px;
  }
  .md-up-mx-md {
    margin-inline: 30px;
  }
  .md-up-p-md {
    padding: 30px;
  }
  .md-up-pt-md {
    padding-top: 30px;
  }
  .md-up-pb-md {
    padding-bottom: 30px;
  }
  .md-up-py-md {
    padding-block: 30px;
  }
  .md-up-pl-md {
    padding-left: 30px;
  }
  .md-up-pr-md {
    padding-right: 30px;
  }
  .md-up-px-md {
    padding-inline: 30px;
  }
  .md-up-m-lg {
    margin: 50px;
  }
  .md-up-mt-lg {
    margin-top: 50px;
  }
  .md-up-mb-lg {
    margin-bottom: 50px;
  }
  .md-up-my-lg {
    margin-block: 50px;
  }
  .md-up-ml-lg {
    margin-left: 50px;
  }
  .md-up-mr-lg {
    margin-right: 50px;
  }
  .md-up-mx-lg {
    margin-inline: 50px;
  }
  .md-up-p-lg {
    padding: 50px;
  }
  .md-up-pt-lg {
    padding-top: 50px;
  }
  .md-up-pb-lg {
    padding-bottom: 50px;
  }
  .md-up-py-lg {
    padding-block: 50px;
  }
  .md-up-pl-lg {
    padding-left: 50px;
  }
  .md-up-pr-lg {
    padding-right: 50px;
  }
  .md-up-px-lg {
    padding-inline: 50px;
  }
  .md-up-m-xl {
    margin: 70px;
  }
  .md-up-mt-xl {
    margin-top: 70px;
  }
  .md-up-mb-xl {
    margin-bottom: 70px;
  }
  .md-up-my-xl {
    margin-block: 70px;
  }
  .md-up-ml-xl {
    margin-left: 70px;
  }
  .md-up-mr-xl {
    margin-right: 70px;
  }
  .md-up-mx-xl {
    margin-inline: 70px;
  }
  .md-up-p-xl {
    padding: 70px;
  }
  .md-up-pt-xl {
    padding-top: 70px;
  }
  .md-up-pb-xl {
    padding-bottom: 70px;
  }
  .md-up-py-xl {
    padding-block: 70px;
  }
  .md-up-pl-xl {
    padding-left: 70px;
  }
  .md-up-pr-xl {
    padding-right: 70px;
  }
  .md-up-px-xl {
    padding-inline: 70px;
  }
  .md-up-m-xxl {
    margin: 140px;
  }
  .md-up-mt-xxl {
    margin-top: 140px;
  }
  .md-up-mb-xxl {
    margin-bottom: 140px;
  }
  .md-up-my-xxl {
    margin-block: 140px;
  }
  .md-up-ml-xxl {
    margin-left: 140px;
  }
  .md-up-mr-xxl {
    margin-right: 140px;
  }
  .md-up-mx-xxl {
    margin-inline: 140px;
  }
  .md-up-p-xxl {
    padding: 140px;
  }
  .md-up-pt-xxl {
    padding-top: 140px;
  }
  .md-up-pb-xxl {
    padding-bottom: 140px;
  }
  .md-up-py-xxl {
    padding-block: 140px;
  }
  .md-up-pl-xxl {
    padding-left: 140px;
  }
  .md-up-pr-xxl {
    padding-right: 140px;
  }
  .md-up-px-xxl {
    padding-inline: 140px;
  }
  .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: 1200px) {
  .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: 5px;
  }
  .lg-up-mt-xs {
    margin-top: 5px;
  }
  .lg-up-mb-xs {
    margin-bottom: 5px;
  }
  .lg-up-my-xs {
    margin-block: 5px;
  }
  .lg-up-ml-xs {
    margin-left: 5px;
  }
  .lg-up-mr-xs {
    margin-right: 5px;
  }
  .lg-up-mx-xs {
    margin-inline: 5px;
  }
  .lg-up-p-xs {
    padding: 5px;
  }
  .lg-up-pt-xs {
    padding-top: 5px;
  }
  .lg-up-pb-xs {
    padding-bottom: 5px;
  }
  .lg-up-py-xs {
    padding-block: 5px;
  }
  .lg-up-pl-xs {
    padding-left: 5px;
  }
  .lg-up-pr-xs {
    padding-right: 5px;
  }
  .lg-up-px-xs {
    padding-inline: 5px;
  }
  .lg-up-m-sm {
    margin: 15px;
  }
  .lg-up-mt-sm {
    margin-top: 15px;
  }
  .lg-up-mb-sm {
    margin-bottom: 15px;
  }
  .lg-up-my-sm {
    margin-block: 15px;
  }
  .lg-up-ml-sm {
    margin-left: 15px;
  }
  .lg-up-mr-sm {
    margin-right: 15px;
  }
  .lg-up-mx-sm {
    margin-inline: 15px;
  }
  .lg-up-p-sm {
    padding: 15px;
  }
  .lg-up-pt-sm {
    padding-top: 15px;
  }
  .lg-up-pb-sm {
    padding-bottom: 15px;
  }
  .lg-up-py-sm {
    padding-block: 15px;
  }
  .lg-up-pl-sm {
    padding-left: 15px;
  }
  .lg-up-pr-sm {
    padding-right: 15px;
  }
  .lg-up-px-sm {
    padding-inline: 15px;
  }
  .lg-up-m-md {
    margin: 30px;
  }
  .lg-up-mt-md {
    margin-top: 30px;
  }
  .lg-up-mb-md {
    margin-bottom: 30px;
  }
  .lg-up-my-md {
    margin-block: 30px;
  }
  .lg-up-ml-md {
    margin-left: 30px;
  }
  .lg-up-mr-md {
    margin-right: 30px;
  }
  .lg-up-mx-md {
    margin-inline: 30px;
  }
  .lg-up-p-md {
    padding: 30px;
  }
  .lg-up-pt-md {
    padding-top: 30px;
  }
  .lg-up-pb-md {
    padding-bottom: 30px;
  }
  .lg-up-py-md {
    padding-block: 30px;
  }
  .lg-up-pl-md {
    padding-left: 30px;
  }
  .lg-up-pr-md {
    padding-right: 30px;
  }
  .lg-up-px-md {
    padding-inline: 30px;
  }
  .lg-up-m-lg {
    margin: 50px;
  }
  .lg-up-mt-lg {
    margin-top: 50px;
  }
  .lg-up-mb-lg {
    margin-bottom: 50px;
  }
  .lg-up-my-lg {
    margin-block: 50px;
  }
  .lg-up-ml-lg {
    margin-left: 50px;
  }
  .lg-up-mr-lg {
    margin-right: 50px;
  }
  .lg-up-mx-lg {
    margin-inline: 50px;
  }
  .lg-up-p-lg {
    padding: 50px;
  }
  .lg-up-pt-lg {
    padding-top: 50px;
  }
  .lg-up-pb-lg {
    padding-bottom: 50px;
  }
  .lg-up-py-lg {
    padding-block: 50px;
  }
  .lg-up-pl-lg {
    padding-left: 50px;
  }
  .lg-up-pr-lg {
    padding-right: 50px;
  }
  .lg-up-px-lg {
    padding-inline: 50px;
  }
  .lg-up-m-xl {
    margin: 70px;
  }
  .lg-up-mt-xl {
    margin-top: 70px;
  }
  .lg-up-mb-xl {
    margin-bottom: 70px;
  }
  .lg-up-my-xl {
    margin-block: 70px;
  }
  .lg-up-ml-xl {
    margin-left: 70px;
  }
  .lg-up-mr-xl {
    margin-right: 70px;
  }
  .lg-up-mx-xl {
    margin-inline: 70px;
  }
  .lg-up-p-xl {
    padding: 70px;
  }
  .lg-up-pt-xl {
    padding-top: 70px;
  }
  .lg-up-pb-xl {
    padding-bottom: 70px;
  }
  .lg-up-py-xl {
    padding-block: 70px;
  }
  .lg-up-pl-xl {
    padding-left: 70px;
  }
  .lg-up-pr-xl {
    padding-right: 70px;
  }
  .lg-up-px-xl {
    padding-inline: 70px;
  }
  .lg-up-m-xxl {
    margin: 140px;
  }
  .lg-up-mt-xxl {
    margin-top: 140px;
  }
  .lg-up-mb-xxl {
    margin-bottom: 140px;
  }
  .lg-up-my-xxl {
    margin-block: 140px;
  }
  .lg-up-ml-xxl {
    margin-left: 140px;
  }
  .lg-up-mr-xxl {
    margin-right: 140px;
  }
  .lg-up-mx-xxl {
    margin-inline: 140px;
  }
  .lg-up-p-xxl {
    padding: 140px;
  }
  .lg-up-pt-xxl {
    padding-top: 140px;
  }
  .lg-up-pb-xxl {
    padding-bottom: 140px;
  }
  .lg-up-py-xxl {
    padding-block: 140px;
  }
  .lg-up-pl-xxl {
    padding-left: 140px;
  }
  .lg-up-pr-xxl {
    padding-right: 140px;
  }
  .lg-up-px-xxl {
    padding-inline: 140px;
  }
  .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: 1400px) {
  .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: 5px;
  }
  .xl-up-mt-xs {
    margin-top: 5px;
  }
  .xl-up-mb-xs {
    margin-bottom: 5px;
  }
  .xl-up-my-xs {
    margin-block: 5px;
  }
  .xl-up-ml-xs {
    margin-left: 5px;
  }
  .xl-up-mr-xs {
    margin-right: 5px;
  }
  .xl-up-mx-xs {
    margin-inline: 5px;
  }
  .xl-up-p-xs {
    padding: 5px;
  }
  .xl-up-pt-xs {
    padding-top: 5px;
  }
  .xl-up-pb-xs {
    padding-bottom: 5px;
  }
  .xl-up-py-xs {
    padding-block: 5px;
  }
  .xl-up-pl-xs {
    padding-left: 5px;
  }
  .xl-up-pr-xs {
    padding-right: 5px;
  }
  .xl-up-px-xs {
    padding-inline: 5px;
  }
  .xl-up-m-sm {
    margin: 15px;
  }
  .xl-up-mt-sm {
    margin-top: 15px;
  }
  .xl-up-mb-sm {
    margin-bottom: 15px;
  }
  .xl-up-my-sm {
    margin-block: 15px;
  }
  .xl-up-ml-sm {
    margin-left: 15px;
  }
  .xl-up-mr-sm {
    margin-right: 15px;
  }
  .xl-up-mx-sm {
    margin-inline: 15px;
  }
  .xl-up-p-sm {
    padding: 15px;
  }
  .xl-up-pt-sm {
    padding-top: 15px;
  }
  .xl-up-pb-sm {
    padding-bottom: 15px;
  }
  .xl-up-py-sm {
    padding-block: 15px;
  }
  .xl-up-pl-sm {
    padding-left: 15px;
  }
  .xl-up-pr-sm {
    padding-right: 15px;
  }
  .xl-up-px-sm {
    padding-inline: 15px;
  }
  .xl-up-m-md {
    margin: 30px;
  }
  .xl-up-mt-md {
    margin-top: 30px;
  }
  .xl-up-mb-md {
    margin-bottom: 30px;
  }
  .xl-up-my-md {
    margin-block: 30px;
  }
  .xl-up-ml-md {
    margin-left: 30px;
  }
  .xl-up-mr-md {
    margin-right: 30px;
  }
  .xl-up-mx-md {
    margin-inline: 30px;
  }
  .xl-up-p-md {
    padding: 30px;
  }
  .xl-up-pt-md {
    padding-top: 30px;
  }
  .xl-up-pb-md {
    padding-bottom: 30px;
  }
  .xl-up-py-md {
    padding-block: 30px;
  }
  .xl-up-pl-md {
    padding-left: 30px;
  }
  .xl-up-pr-md {
    padding-right: 30px;
  }
  .xl-up-px-md {
    padding-inline: 30px;
  }
  .xl-up-m-lg {
    margin: 50px;
  }
  .xl-up-mt-lg {
    margin-top: 50px;
  }
  .xl-up-mb-lg {
    margin-bottom: 50px;
  }
  .xl-up-my-lg {
    margin-block: 50px;
  }
  .xl-up-ml-lg {
    margin-left: 50px;
  }
  .xl-up-mr-lg {
    margin-right: 50px;
  }
  .xl-up-mx-lg {
    margin-inline: 50px;
  }
  .xl-up-p-lg {
    padding: 50px;
  }
  .xl-up-pt-lg {
    padding-top: 50px;
  }
  .xl-up-pb-lg {
    padding-bottom: 50px;
  }
  .xl-up-py-lg {
    padding-block: 50px;
  }
  .xl-up-pl-lg {
    padding-left: 50px;
  }
  .xl-up-pr-lg {
    padding-right: 50px;
  }
  .xl-up-px-lg {
    padding-inline: 50px;
  }
  .xl-up-m-xl {
    margin: 70px;
  }
  .xl-up-mt-xl {
    margin-top: 70px;
  }
  .xl-up-mb-xl {
    margin-bottom: 70px;
  }
  .xl-up-my-xl {
    margin-block: 70px;
  }
  .xl-up-ml-xl {
    margin-left: 70px;
  }
  .xl-up-mr-xl {
    margin-right: 70px;
  }
  .xl-up-mx-xl {
    margin-inline: 70px;
  }
  .xl-up-p-xl {
    padding: 70px;
  }
  .xl-up-pt-xl {
    padding-top: 70px;
  }
  .xl-up-pb-xl {
    padding-bottom: 70px;
  }
  .xl-up-py-xl {
    padding-block: 70px;
  }
  .xl-up-pl-xl {
    padding-left: 70px;
  }
  .xl-up-pr-xl {
    padding-right: 70px;
  }
  .xl-up-px-xl {
    padding-inline: 70px;
  }
  .xl-up-m-xxl {
    margin: 140px;
  }
  .xl-up-mt-xxl {
    margin-top: 140px;
  }
  .xl-up-mb-xxl {
    margin-bottom: 140px;
  }
  .xl-up-my-xxl {
    margin-block: 140px;
  }
  .xl-up-ml-xxl {
    margin-left: 140px;
  }
  .xl-up-mr-xxl {
    margin-right: 140px;
  }
  .xl-up-mx-xxl {
    margin-inline: 140px;
  }
  .xl-up-p-xxl {
    padding: 140px;
  }
  .xl-up-pt-xxl {
    padding-top: 140px;
  }
  .xl-up-pb-xxl {
    padding-bottom: 140px;
  }
  .xl-up-py-xxl {
    padding-block: 140px;
  }
  .xl-up-pl-xxl {
    padding-left: 140px;
  }
  .xl-up-pr-xxl {
    padding-right: 140px;
  }
  .xl-up-px-xxl {
    padding-inline: 140px;
  }
  .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);
  }
}
.m-0-child > * {
  margin: 0 !important;
}

.m-0-child-not-last > *:not(:last-child) {
  margin: 0 !important;
}

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

.mt-0-child-not-last > *:not(:last-child) {
  margin-top: 0 !important;
}

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

.mb-0-child-not-last > *:not(:last-child) {
  margin-bottom: 0 !important;
}

.my-0-child > * {
  margin-block: 0 !important;
}

.my-0-child-not-last > *:not(:last-child) {
  margin-block: 0 !important;
}

.ml-0-child > * {
  margin-left: 0 !important;
}

.ml-0-child-not-last > *:not(:last-child) {
  margin-left: 0 !important;
}

.mr-0-child > * {
  margin-right: 0 !important;
}

.mr-0-child-not-last > *:not(:last-child) {
  margin-right: 0 !important;
}

.mx-0-child > * {
  margin-inline: 0 !important;
}

.mx-0-child-not-last > *:not(:last-child) {
  margin-inline: 0 !important;
}

.p-0-child > * {
  padding: 0 !important;
}

.p-0-child-not-last > *:not(:last-child) {
  padding: 0 !important;
}

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

.pt-0-child-not-last > *:not(:last-child) {
  padding-top: 0 !important;
}

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

.pb-0-child-not-last > *:not(:last-child) {
  padding-bottom: 0 !important;
}

.py-0-child > * {
  padding-block: 0 !important;
}

.py-0-child-not-last > *:not(:last-child) {
  padding-block: 0 !important;
}

.pl-0-child > * {
  padding-left: 0 !important;
}

.pl-0-child-not-last > *:not(:last-child) {
  padding-left: 0 !important;
}

.pr-0-child > * {
  padding-right: 0 !important;
}

.pr-0-child-not-last > *:not(:last-child) {
  padding-right: 0 !important;
}

.px-0-child > * {
  padding-inline: 0 !important;
}

.px-0-child-not-last > *:not(:last-child) {
  padding-inline: 0 !important;
}

.m-xs-child > * {
  margin: 5px !important;
}

.m-xs-child-not-last > *:not(:last-child) {
  margin: 5px !important;
}

.mt-xs-child > * {
  margin-top: 5px !important;
}

.mt-xs-child-not-last > *:not(:last-child) {
  margin-top: 5px !important;
}

.mb-xs-child > * {
  margin-bottom: 5px !important;
}

.mb-xs-child-not-last > *:not(:last-child) {
  margin-bottom: 5px !important;
}

.my-xs-child > * {
  margin-block: 5px !important;
}

.my-xs-child-not-last > *:not(:last-child) {
  margin-block: 5px !important;
}

.ml-xs-child > * {
  margin-left: 5px !important;
}

.ml-xs-child-not-last > *:not(:last-child) {
  margin-left: 5px !important;
}

.mr-xs-child > * {
  margin-right: 5px !important;
}

.mr-xs-child-not-last > *:not(:last-child) {
  margin-right: 5px !important;
}

.mx-xs-child > * {
  margin-inline: 5px !important;
}

.mx-xs-child-not-last > *:not(:last-child) {
  margin-inline: 5px !important;
}

.p-xs-child > * {
  padding: 5px !important;
}

.p-xs-child-not-last > *:not(:last-child) {
  padding: 5px !important;
}

.pt-xs-child > * {
  padding-top: 5px !important;
}

.pt-xs-child-not-last > *:not(:last-child) {
  padding-top: 5px !important;
}

.pb-xs-child > * {
  padding-bottom: 5px !important;
}

.pb-xs-child-not-last > *:not(:last-child) {
  padding-bottom: 5px !important;
}

.py-xs-child > * {
  padding-block: 5px !important;
}

.py-xs-child-not-last > *:not(:last-child) {
  padding-block: 5px !important;
}

.pl-xs-child > * {
  padding-left: 5px !important;
}

.pl-xs-child-not-last > *:not(:last-child) {
  padding-left: 5px !important;
}

.pr-xs-child > * {
  padding-right: 5px !important;
}

.pr-xs-child-not-last > *:not(:last-child) {
  padding-right: 5px !important;
}

.px-xs-child > * {
  padding-inline: 5px !important;
}

.px-xs-child-not-last > *:not(:last-child) {
  padding-inline: 5px !important;
}

.m-sm-child > * {
  margin: 15px !important;
}

.m-sm-child-not-last > *:not(:last-child) {
  margin: 15px !important;
}

.mt-sm-child > * {
  margin-top: 15px !important;
}

.mt-sm-child-not-last > *:not(:last-child) {
  margin-top: 15px !important;
}

.mb-sm-child > * {
  margin-bottom: 15px !important;
}

.mb-sm-child-not-last > *:not(:last-child) {
  margin-bottom: 15px !important;
}

.my-sm-child > * {
  margin-block: 15px !important;
}

.my-sm-child-not-last > *:not(:last-child) {
  margin-block: 15px !important;
}

.ml-sm-child > * {
  margin-left: 15px !important;
}

.ml-sm-child-not-last > *:not(:last-child) {
  margin-left: 15px !important;
}

.mr-sm-child > * {
  margin-right: 15px !important;
}

.mr-sm-child-not-last > *:not(:last-child) {
  margin-right: 15px !important;
}

.mx-sm-child > * {
  margin-inline: 15px !important;
}

.mx-sm-child-not-last > *:not(:last-child) {
  margin-inline: 15px !important;
}

.p-sm-child > * {
  padding: 15px !important;
}

.p-sm-child-not-last > *:not(:last-child) {
  padding: 15px !important;
}

.pt-sm-child > * {
  padding-top: 15px !important;
}

.pt-sm-child-not-last > *:not(:last-child) {
  padding-top: 15px !important;
}

.pb-sm-child > * {
  padding-bottom: 15px !important;
}

.pb-sm-child-not-last > *:not(:last-child) {
  padding-bottom: 15px !important;
}

.py-sm-child > * {
  padding-block: 15px !important;
}

.py-sm-child-not-last > *:not(:last-child) {
  padding-block: 15px !important;
}

.pl-sm-child > * {
  padding-left: 15px !important;
}

.pl-sm-child-not-last > *:not(:last-child) {
  padding-left: 15px !important;
}

.pr-sm-child > * {
  padding-right: 15px !important;
}

.pr-sm-child-not-last > *:not(:last-child) {
  padding-right: 15px !important;
}

.px-sm-child > * {
  padding-inline: 15px !important;
}

.px-sm-child-not-last > *:not(:last-child) {
  padding-inline: 15px !important;
}

.m-md-child > * {
  margin: 30px !important;
}

.m-md-child-not-last > *:not(:last-child) {
  margin: 30px !important;
}

.mt-md-child > * {
  margin-top: 30px !important;
}

.mt-md-child-not-last > *:not(:last-child) {
  margin-top: 30px !important;
}

.mb-md-child > * {
  margin-bottom: 30px !important;
}

.mb-md-child-not-last > *:not(:last-child) {
  margin-bottom: 30px !important;
}

.my-md-child > * {
  margin-block: 30px !important;
}

.my-md-child-not-last > *:not(:last-child) {
  margin-block: 30px !important;
}

.ml-md-child > * {
  margin-left: 30px !important;
}

.ml-md-child-not-last > *:not(:last-child) {
  margin-left: 30px !important;
}

.mr-md-child > * {
  margin-right: 30px !important;
}

.mr-md-child-not-last > *:not(:last-child) {
  margin-right: 30px !important;
}

.mx-md-child > * {
  margin-inline: 30px !important;
}

.mx-md-child-not-last > *:not(:last-child) {
  margin-inline: 30px !important;
}

.p-md-child > * {
  padding: 30px !important;
}

.p-md-child-not-last > *:not(:last-child) {
  padding: 30px !important;
}

.pt-md-child > * {
  padding-top: 30px !important;
}

.pt-md-child-not-last > *:not(:last-child) {
  padding-top: 30px !important;
}

.pb-md-child > * {
  padding-bottom: 30px !important;
}

.pb-md-child-not-last > *:not(:last-child) {
  padding-bottom: 30px !important;
}

.py-md-child > * {
  padding-block: 30px !important;
}

.py-md-child-not-last > *:not(:last-child) {
  padding-block: 30px !important;
}

.pl-md-child > * {
  padding-left: 30px !important;
}

.pl-md-child-not-last > *:not(:last-child) {
  padding-left: 30px !important;
}

.pr-md-child > * {
  padding-right: 30px !important;
}

.pr-md-child-not-last > *:not(:last-child) {
  padding-right: 30px !important;
}

.px-md-child > * {
  padding-inline: 30px !important;
}

.px-md-child-not-last > *:not(:last-child) {
  padding-inline: 30px !important;
}

.m-lg-child > * {
  margin: 50px !important;
}

.m-lg-child-not-last > *:not(:last-child) {
  margin: 50px !important;
}

.mt-lg-child > * {
  margin-top: 50px !important;
}

.mt-lg-child-not-last > *:not(:last-child) {
  margin-top: 50px !important;
}

.mb-lg-child > * {
  margin-bottom: 50px !important;
}

.mb-lg-child-not-last > *:not(:last-child) {
  margin-bottom: 50px !important;
}

.my-lg-child > * {
  margin-block: 50px !important;
}

.my-lg-child-not-last > *:not(:last-child) {
  margin-block: 50px !important;
}

.ml-lg-child > * {
  margin-left: 50px !important;
}

.ml-lg-child-not-last > *:not(:last-child) {
  margin-left: 50px !important;
}

.mr-lg-child > * {
  margin-right: 50px !important;
}

.mr-lg-child-not-last > *:not(:last-child) {
  margin-right: 50px !important;
}

.mx-lg-child > * {
  margin-inline: 50px !important;
}

.mx-lg-child-not-last > *:not(:last-child) {
  margin-inline: 50px !important;
}

.p-lg-child > * {
  padding: 50px !important;
}

.p-lg-child-not-last > *:not(:last-child) {
  padding: 50px !important;
}

.pt-lg-child > * {
  padding-top: 50px !important;
}

.pt-lg-child-not-last > *:not(:last-child) {
  padding-top: 50px !important;
}

.pb-lg-child > * {
  padding-bottom: 50px !important;
}

.pb-lg-child-not-last > *:not(:last-child) {
  padding-bottom: 50px !important;
}

.py-lg-child > * {
  padding-block: 50px !important;
}

.py-lg-child-not-last > *:not(:last-child) {
  padding-block: 50px !important;
}

.pl-lg-child > * {
  padding-left: 50px !important;
}

.pl-lg-child-not-last > *:not(:last-child) {
  padding-left: 50px !important;
}

.pr-lg-child > * {
  padding-right: 50px !important;
}

.pr-lg-child-not-last > *:not(:last-child) {
  padding-right: 50px !important;
}

.px-lg-child > * {
  padding-inline: 50px !important;
}

.px-lg-child-not-last > *:not(:last-child) {
  padding-inline: 50px !important;
}

.m-xl-child > * {
  margin: 70px !important;
}

.m-xl-child-not-last > *:not(:last-child) {
  margin: 70px !important;
}

.mt-xl-child > * {
  margin-top: 70px !important;
}

.mt-xl-child-not-last > *:not(:last-child) {
  margin-top: 70px !important;
}

.mb-xl-child > * {
  margin-bottom: 70px !important;
}

.mb-xl-child-not-last > *:not(:last-child) {
  margin-bottom: 70px !important;
}

.my-xl-child > * {
  margin-block: 70px !important;
}

.my-xl-child-not-last > *:not(:last-child) {
  margin-block: 70px !important;
}

.ml-xl-child > * {
  margin-left: 70px !important;
}

.ml-xl-child-not-last > *:not(:last-child) {
  margin-left: 70px !important;
}

.mr-xl-child > * {
  margin-right: 70px !important;
}

.mr-xl-child-not-last > *:not(:last-child) {
  margin-right: 70px !important;
}

.mx-xl-child > * {
  margin-inline: 70px !important;
}

.mx-xl-child-not-last > *:not(:last-child) {
  margin-inline: 70px !important;
}

.p-xl-child > * {
  padding: 70px !important;
}

.p-xl-child-not-last > *:not(:last-child) {
  padding: 70px !important;
}

.pt-xl-child > * {
  padding-top: 70px !important;
}

.pt-xl-child-not-last > *:not(:last-child) {
  padding-top: 70px !important;
}

.pb-xl-child > * {
  padding-bottom: 70px !important;
}

.pb-xl-child-not-last > *:not(:last-child) {
  padding-bottom: 70px !important;
}

.py-xl-child > * {
  padding-block: 70px !important;
}

.py-xl-child-not-last > *:not(:last-child) {
  padding-block: 70px !important;
}

.pl-xl-child > * {
  padding-left: 70px !important;
}

.pl-xl-child-not-last > *:not(:last-child) {
  padding-left: 70px !important;
}

.pr-xl-child > * {
  padding-right: 70px !important;
}

.pr-xl-child-not-last > *:not(:last-child) {
  padding-right: 70px !important;
}

.px-xl-child > * {
  padding-inline: 70px !important;
}

.px-xl-child-not-last > *:not(:last-child) {
  padding-inline: 70px !important;
}

.m-xxl-child > * {
  margin: 140px !important;
}

.m-xxl-child-not-last > *:not(:last-child) {
  margin: 140px !important;
}

.mt-xxl-child > * {
  margin-top: 140px !important;
}

.mt-xxl-child-not-last > *:not(:last-child) {
  margin-top: 140px !important;
}

.mb-xxl-child > * {
  margin-bottom: 140px !important;
}

.mb-xxl-child-not-last > *:not(:last-child) {
  margin-bottom: 140px !important;
}

.my-xxl-child > * {
  margin-block: 140px !important;
}

.my-xxl-child-not-last > *:not(:last-child) {
  margin-block: 140px !important;
}

.ml-xxl-child > * {
  margin-left: 140px !important;
}

.ml-xxl-child-not-last > *:not(:last-child) {
  margin-left: 140px !important;
}

.mr-xxl-child > * {
  margin-right: 140px !important;
}

.mr-xxl-child-not-last > *:not(:last-child) {
  margin-right: 140px !important;
}

.mx-xxl-child > * {
  margin-inline: 140px !important;
}

.mx-xxl-child-not-last > *:not(:last-child) {
  margin-inline: 140px !important;
}

.p-xxl-child > * {
  padding: 140px !important;
}

.p-xxl-child-not-last > *:not(:last-child) {
  padding: 140px !important;
}

.pt-xxl-child > * {
  padding-top: 140px !important;
}

.pt-xxl-child-not-last > *:not(:last-child) {
  padding-top: 140px !important;
}

.pb-xxl-child > * {
  padding-bottom: 140px !important;
}

.pb-xxl-child-not-last > *:not(:last-child) {
  padding-bottom: 140px !important;
}

.py-xxl-child > * {
  padding-block: 140px !important;
}

.py-xxl-child-not-last > *:not(:last-child) {
  padding-block: 140px !important;
}

.pl-xxl-child > * {
  padding-left: 140px !important;
}

.pl-xxl-child-not-last > *:not(:last-child) {
  padding-left: 140px !important;
}

.pr-xxl-child > * {
  padding-right: 140px !important;
}

.pr-xxl-child-not-last > *:not(:last-child) {
  padding-right: 140px !important;
}

.px-xxl-child > * {
  padding-inline: 140px !important;
}

.px-xxl-child-not-last > *:not(:last-child) {
  padding-inline: 140px !important;
}

.m-fluid-child > * {
  margin: var(--side-margin) !important;
}

.m-fluid-child-not-last > *:not(:last-child) {
  margin: var(--side-margin) !important;
}

.mt-fluid-child > * {
  margin-top: var(--side-margin) !important;
}

.mt-fluid-child-not-last > *:not(:last-child) {
  margin-top: var(--side-margin) !important;
}

.mb-fluid-child > * {
  margin-bottom: var(--side-margin) !important;
}

.mb-fluid-child-not-last > *:not(:last-child) {
  margin-bottom: var(--side-margin) !important;
}

.my-fluid-child > * {
  margin-block: var(--side-margin) !important;
}

.my-fluid-child-not-last > *:not(:last-child) {
  margin-block: var(--side-margin) !important;
}

.ml-fluid-child > * {
  margin-left: var(--side-margin) !important;
}

.ml-fluid-child-not-last > *:not(:last-child) {
  margin-left: var(--side-margin) !important;
}

.mr-fluid-child > * {
  margin-right: var(--side-margin) !important;
}

.mr-fluid-child-not-last > *:not(:last-child) {
  margin-right: var(--side-margin) !important;
}

.mx-fluid-child > * {
  margin-inline: var(--side-margin) !important;
}

.mx-fluid-child-not-last > *:not(:last-child) {
  margin-inline: var(--side-margin) !important;
}

.p-fluid-child > * {
  padding: var(--side-margin) !important;
}

.p-fluid-child-not-last > *:not(:last-child) {
  padding: var(--side-margin) !important;
}

.pt-fluid-child > * {
  padding-top: var(--side-margin) !important;
}

.pt-fluid-child-not-last > *:not(:last-child) {
  padding-top: var(--side-margin) !important;
}

.pb-fluid-child > * {
  padding-bottom: var(--side-margin) !important;
}

.pb-fluid-child-not-last > *:not(:last-child) {
  padding-bottom: var(--side-margin) !important;
}

.py-fluid-child > * {
  padding-block: var(--side-margin) !important;
}

.py-fluid-child-not-last > *:not(:last-child) {
  padding-block: var(--side-margin) !important;
}

.pl-fluid-child > * {
  padding-left: var(--side-margin) !important;
}

.pl-fluid-child-not-last > *:not(:last-child) {
  padding-left: var(--side-margin) !important;
}

.pr-fluid-child > * {
  padding-right: var(--side-margin) !important;
}

.pr-fluid-child-not-last > *:not(:last-child) {
  padding-right: var(--side-margin) !important;
}

.px-fluid-child > * {
  padding-inline: var(--side-margin) !important;
}

.px-fluid-child-not-last > *:not(:last-child) {
  padding-inline: var(--side-margin) !important;
}

@media (max-width: 1399.98px) {
  .xl-down-m-0-child > * {
    margin: 0 !important;
  }
  .xl-down-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .xl-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xl-down-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .xl-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xl-down-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xl-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .xl-down-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .xl-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xl-down-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .xl-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xl-down-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .xl-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xl-down-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .xl-down-p-0-child > * {
    padding: 0 !important;
  }
  .xl-down-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .xl-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xl-down-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .xl-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xl-down-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .xl-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .xl-down-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .xl-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xl-down-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .xl-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xl-down-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .xl-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xl-down-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .xl-down-m-xs-child > * {
    margin: 5px !important;
  }
  .xl-down-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .xl-down-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .xl-down-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .xl-down-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .xl-down-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .xl-down-my-xs-child > * {
    margin-block: 5px !important;
  }
  .xl-down-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .xl-down-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .xl-down-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .xl-down-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .xl-down-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .xl-down-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .xl-down-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .xl-down-p-xs-child > * {
    padding: 5px !important;
  }
  .xl-down-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .xl-down-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .xl-down-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .xl-down-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .xl-down-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .xl-down-py-xs-child > * {
    padding-block: 5px !important;
  }
  .xl-down-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .xl-down-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .xl-down-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .xl-down-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .xl-down-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .xl-down-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .xl-down-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .xl-down-m-sm-child > * {
    margin: 15px !important;
  }
  .xl-down-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .xl-down-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .xl-down-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .xl-down-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .xl-down-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .xl-down-my-sm-child > * {
    margin-block: 15px !important;
  }
  .xl-down-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .xl-down-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .xl-down-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .xl-down-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .xl-down-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .xl-down-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .xl-down-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .xl-down-p-sm-child > * {
    padding: 15px !important;
  }
  .xl-down-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .xl-down-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .xl-down-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .xl-down-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .xl-down-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .xl-down-py-sm-child > * {
    padding-block: 15px !important;
  }
  .xl-down-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .xl-down-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .xl-down-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .xl-down-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .xl-down-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .xl-down-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .xl-down-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .xl-down-m-md-child > * {
    margin: 30px !important;
  }
  .xl-down-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .xl-down-mt-md-child > * {
    margin-top: 30px !important;
  }
  .xl-down-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .xl-down-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .xl-down-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .xl-down-my-md-child > * {
    margin-block: 30px !important;
  }
  .xl-down-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .xl-down-ml-md-child > * {
    margin-left: 30px !important;
  }
  .xl-down-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .xl-down-mr-md-child > * {
    margin-right: 30px !important;
  }
  .xl-down-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .xl-down-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .xl-down-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .xl-down-p-md-child > * {
    padding: 30px !important;
  }
  .xl-down-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .xl-down-pt-md-child > * {
    padding-top: 30px !important;
  }
  .xl-down-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .xl-down-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .xl-down-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .xl-down-py-md-child > * {
    padding-block: 30px !important;
  }
  .xl-down-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .xl-down-pl-md-child > * {
    padding-left: 30px !important;
  }
  .xl-down-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .xl-down-pr-md-child > * {
    padding-right: 30px !important;
  }
  .xl-down-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .xl-down-px-md-child > * {
    padding-inline: 30px !important;
  }
  .xl-down-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .xl-down-m-lg-child > * {
    margin: 50px !important;
  }
  .xl-down-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .xl-down-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .xl-down-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .xl-down-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .xl-down-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .xl-down-my-lg-child > * {
    margin-block: 50px !important;
  }
  .xl-down-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .xl-down-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .xl-down-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .xl-down-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .xl-down-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .xl-down-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .xl-down-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .xl-down-p-lg-child > * {
    padding: 50px !important;
  }
  .xl-down-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .xl-down-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .xl-down-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .xl-down-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .xl-down-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .xl-down-py-lg-child > * {
    padding-block: 50px !important;
  }
  .xl-down-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .xl-down-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .xl-down-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .xl-down-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .xl-down-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .xl-down-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .xl-down-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .xl-down-m-xl-child > * {
    margin: 70px !important;
  }
  .xl-down-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .xl-down-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .xl-down-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .xl-down-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .xl-down-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .xl-down-my-xl-child > * {
    margin-block: 70px !important;
  }
  .xl-down-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .xl-down-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .xl-down-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .xl-down-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .xl-down-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .xl-down-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .xl-down-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .xl-down-p-xl-child > * {
    padding: 70px !important;
  }
  .xl-down-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .xl-down-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .xl-down-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .xl-down-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .xl-down-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .xl-down-py-xl-child > * {
    padding-block: 70px !important;
  }
  .xl-down-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .xl-down-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .xl-down-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .xl-down-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .xl-down-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .xl-down-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .xl-down-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .xl-down-m-xxl-child > * {
    margin: 140px !important;
  }
  .xl-down-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .xl-down-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .xl-down-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .xl-down-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .xl-down-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .xl-down-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .xl-down-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .xl-down-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .xl-down-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .xl-down-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .xl-down-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .xl-down-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .xl-down-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .xl-down-p-xxl-child > * {
    padding: 140px !important;
  }
  .xl-down-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .xl-down-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .xl-down-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .xl-down-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .xl-down-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .xl-down-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .xl-down-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .xl-down-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .xl-down-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .xl-down-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .xl-down-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .xl-down-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .xl-down-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .xl-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xl-down-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .xl-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xl-down-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .xl-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xl-down-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .xl-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xl-down-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .xl-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xl-down-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .xl-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xl-down-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .xl-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xl-down-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .xl-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xl-down-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .xl-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xl-down-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .xl-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xl-down-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .xl-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xl-down-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .xl-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xl-down-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .xl-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xl-down-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .xl-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .xl-down-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 1199.98px) {
  .lg-down-m-0-child > * {
    margin: 0 !important;
  }
  .lg-down-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .lg-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .lg-down-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .lg-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .lg-down-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .lg-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .lg-down-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .lg-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .lg-down-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .lg-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .lg-down-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .lg-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .lg-down-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .lg-down-p-0-child > * {
    padding: 0 !important;
  }
  .lg-down-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .lg-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .lg-down-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .lg-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .lg-down-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .lg-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .lg-down-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .lg-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .lg-down-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .lg-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .lg-down-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .lg-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .lg-down-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .lg-down-m-xs-child > * {
    margin: 5px !important;
  }
  .lg-down-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .lg-down-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .lg-down-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .lg-down-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .lg-down-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .lg-down-my-xs-child > * {
    margin-block: 5px !important;
  }
  .lg-down-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .lg-down-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .lg-down-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .lg-down-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .lg-down-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .lg-down-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .lg-down-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .lg-down-p-xs-child > * {
    padding: 5px !important;
  }
  .lg-down-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .lg-down-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .lg-down-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .lg-down-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .lg-down-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .lg-down-py-xs-child > * {
    padding-block: 5px !important;
  }
  .lg-down-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .lg-down-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .lg-down-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .lg-down-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .lg-down-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .lg-down-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .lg-down-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .lg-down-m-sm-child > * {
    margin: 15px !important;
  }
  .lg-down-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .lg-down-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .lg-down-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .lg-down-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .lg-down-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .lg-down-my-sm-child > * {
    margin-block: 15px !important;
  }
  .lg-down-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .lg-down-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .lg-down-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .lg-down-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .lg-down-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .lg-down-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .lg-down-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .lg-down-p-sm-child > * {
    padding: 15px !important;
  }
  .lg-down-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .lg-down-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .lg-down-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .lg-down-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .lg-down-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .lg-down-py-sm-child > * {
    padding-block: 15px !important;
  }
  .lg-down-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .lg-down-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .lg-down-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .lg-down-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .lg-down-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .lg-down-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .lg-down-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .lg-down-m-md-child > * {
    margin: 30px !important;
  }
  .lg-down-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .lg-down-mt-md-child > * {
    margin-top: 30px !important;
  }
  .lg-down-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .lg-down-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .lg-down-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .lg-down-my-md-child > * {
    margin-block: 30px !important;
  }
  .lg-down-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .lg-down-ml-md-child > * {
    margin-left: 30px !important;
  }
  .lg-down-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .lg-down-mr-md-child > * {
    margin-right: 30px !important;
  }
  .lg-down-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .lg-down-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .lg-down-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .lg-down-p-md-child > * {
    padding: 30px !important;
  }
  .lg-down-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .lg-down-pt-md-child > * {
    padding-top: 30px !important;
  }
  .lg-down-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .lg-down-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .lg-down-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .lg-down-py-md-child > * {
    padding-block: 30px !important;
  }
  .lg-down-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .lg-down-pl-md-child > * {
    padding-left: 30px !important;
  }
  .lg-down-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .lg-down-pr-md-child > * {
    padding-right: 30px !important;
  }
  .lg-down-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .lg-down-px-md-child > * {
    padding-inline: 30px !important;
  }
  .lg-down-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .lg-down-m-lg-child > * {
    margin: 50px !important;
  }
  .lg-down-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .lg-down-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .lg-down-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .lg-down-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .lg-down-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .lg-down-my-lg-child > * {
    margin-block: 50px !important;
  }
  .lg-down-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .lg-down-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .lg-down-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .lg-down-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .lg-down-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .lg-down-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .lg-down-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .lg-down-p-lg-child > * {
    padding: 50px !important;
  }
  .lg-down-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .lg-down-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .lg-down-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .lg-down-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .lg-down-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .lg-down-py-lg-child > * {
    padding-block: 50px !important;
  }
  .lg-down-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .lg-down-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .lg-down-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .lg-down-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .lg-down-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .lg-down-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .lg-down-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .lg-down-m-xl-child > * {
    margin: 70px !important;
  }
  .lg-down-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .lg-down-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .lg-down-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .lg-down-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .lg-down-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .lg-down-my-xl-child > * {
    margin-block: 70px !important;
  }
  .lg-down-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .lg-down-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .lg-down-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .lg-down-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .lg-down-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .lg-down-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .lg-down-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .lg-down-p-xl-child > * {
    padding: 70px !important;
  }
  .lg-down-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .lg-down-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .lg-down-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .lg-down-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .lg-down-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .lg-down-py-xl-child > * {
    padding-block: 70px !important;
  }
  .lg-down-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .lg-down-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .lg-down-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .lg-down-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .lg-down-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .lg-down-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .lg-down-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .lg-down-m-xxl-child > * {
    margin: 140px !important;
  }
  .lg-down-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .lg-down-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .lg-down-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .lg-down-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .lg-down-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .lg-down-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .lg-down-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .lg-down-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .lg-down-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .lg-down-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .lg-down-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .lg-down-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .lg-down-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .lg-down-p-xxl-child > * {
    padding: 140px !important;
  }
  .lg-down-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .lg-down-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .lg-down-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .lg-down-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .lg-down-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .lg-down-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .lg-down-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .lg-down-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .lg-down-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .lg-down-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .lg-down-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .lg-down-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .lg-down-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .lg-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .lg-down-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .lg-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .lg-down-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .lg-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .lg-down-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .lg-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .lg-down-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .lg-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .lg-down-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .lg-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .lg-down-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .lg-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .lg-down-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .lg-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .lg-down-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .lg-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .lg-down-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .lg-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .lg-down-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .lg-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .lg-down-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .lg-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .lg-down-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .lg-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .lg-down-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .lg-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .lg-down-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 991.98px) {
  .md-down-m-0-child > * {
    margin: 0 !important;
  }
  .md-down-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .md-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .md-down-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .md-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .md-down-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .md-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .md-down-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .md-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .md-down-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .md-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .md-down-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .md-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .md-down-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .md-down-p-0-child > * {
    padding: 0 !important;
  }
  .md-down-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .md-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .md-down-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .md-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .md-down-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .md-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .md-down-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .md-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .md-down-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .md-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .md-down-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .md-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .md-down-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .md-down-m-xs-child > * {
    margin: 5px !important;
  }
  .md-down-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .md-down-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .md-down-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .md-down-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .md-down-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .md-down-my-xs-child > * {
    margin-block: 5px !important;
  }
  .md-down-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .md-down-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .md-down-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .md-down-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .md-down-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .md-down-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .md-down-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .md-down-p-xs-child > * {
    padding: 5px !important;
  }
  .md-down-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .md-down-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .md-down-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .md-down-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .md-down-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .md-down-py-xs-child > * {
    padding-block: 5px !important;
  }
  .md-down-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .md-down-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .md-down-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .md-down-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .md-down-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .md-down-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .md-down-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .md-down-m-sm-child > * {
    margin: 15px !important;
  }
  .md-down-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .md-down-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .md-down-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .md-down-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .md-down-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .md-down-my-sm-child > * {
    margin-block: 15px !important;
  }
  .md-down-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .md-down-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .md-down-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .md-down-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .md-down-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .md-down-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .md-down-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .md-down-p-sm-child > * {
    padding: 15px !important;
  }
  .md-down-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .md-down-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .md-down-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .md-down-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .md-down-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .md-down-py-sm-child > * {
    padding-block: 15px !important;
  }
  .md-down-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .md-down-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .md-down-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .md-down-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .md-down-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .md-down-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .md-down-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .md-down-m-md-child > * {
    margin: 30px !important;
  }
  .md-down-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .md-down-mt-md-child > * {
    margin-top: 30px !important;
  }
  .md-down-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .md-down-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .md-down-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .md-down-my-md-child > * {
    margin-block: 30px !important;
  }
  .md-down-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .md-down-ml-md-child > * {
    margin-left: 30px !important;
  }
  .md-down-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .md-down-mr-md-child > * {
    margin-right: 30px !important;
  }
  .md-down-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .md-down-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .md-down-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .md-down-p-md-child > * {
    padding: 30px !important;
  }
  .md-down-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .md-down-pt-md-child > * {
    padding-top: 30px !important;
  }
  .md-down-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .md-down-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .md-down-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .md-down-py-md-child > * {
    padding-block: 30px !important;
  }
  .md-down-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .md-down-pl-md-child > * {
    padding-left: 30px !important;
  }
  .md-down-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .md-down-pr-md-child > * {
    padding-right: 30px !important;
  }
  .md-down-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .md-down-px-md-child > * {
    padding-inline: 30px !important;
  }
  .md-down-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .md-down-m-lg-child > * {
    margin: 50px !important;
  }
  .md-down-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .md-down-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .md-down-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .md-down-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .md-down-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .md-down-my-lg-child > * {
    margin-block: 50px !important;
  }
  .md-down-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .md-down-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .md-down-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .md-down-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .md-down-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .md-down-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .md-down-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .md-down-p-lg-child > * {
    padding: 50px !important;
  }
  .md-down-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .md-down-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .md-down-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .md-down-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .md-down-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .md-down-py-lg-child > * {
    padding-block: 50px !important;
  }
  .md-down-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .md-down-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .md-down-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .md-down-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .md-down-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .md-down-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .md-down-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .md-down-m-xl-child > * {
    margin: 70px !important;
  }
  .md-down-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .md-down-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .md-down-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .md-down-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .md-down-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .md-down-my-xl-child > * {
    margin-block: 70px !important;
  }
  .md-down-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .md-down-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .md-down-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .md-down-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .md-down-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .md-down-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .md-down-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .md-down-p-xl-child > * {
    padding: 70px !important;
  }
  .md-down-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .md-down-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .md-down-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .md-down-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .md-down-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .md-down-py-xl-child > * {
    padding-block: 70px !important;
  }
  .md-down-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .md-down-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .md-down-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .md-down-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .md-down-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .md-down-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .md-down-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .md-down-m-xxl-child > * {
    margin: 140px !important;
  }
  .md-down-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .md-down-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .md-down-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .md-down-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .md-down-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .md-down-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .md-down-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .md-down-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .md-down-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .md-down-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .md-down-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .md-down-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .md-down-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .md-down-p-xxl-child > * {
    padding: 140px !important;
  }
  .md-down-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .md-down-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .md-down-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .md-down-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .md-down-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .md-down-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .md-down-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .md-down-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .md-down-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .md-down-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .md-down-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .md-down-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .md-down-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .md-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .md-down-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .md-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .md-down-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .md-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .md-down-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .md-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .md-down-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .md-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .md-down-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .md-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .md-down-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .md-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .md-down-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .md-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .md-down-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .md-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .md-down-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .md-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .md-down-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .md-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .md-down-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .md-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .md-down-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .md-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .md-down-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .md-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .md-down-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 767.98px) {
  .sm-down-m-0-child > * {
    margin: 0 !important;
  }
  .sm-down-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .sm-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .sm-down-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .sm-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .sm-down-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .sm-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .sm-down-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .sm-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .sm-down-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .sm-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .sm-down-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .sm-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .sm-down-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .sm-down-p-0-child > * {
    padding: 0 !important;
  }
  .sm-down-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .sm-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .sm-down-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .sm-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .sm-down-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .sm-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .sm-down-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .sm-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .sm-down-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .sm-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .sm-down-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .sm-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .sm-down-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .sm-down-m-xs-child > * {
    margin: 5px !important;
  }
  .sm-down-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .sm-down-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .sm-down-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .sm-down-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .sm-down-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .sm-down-my-xs-child > * {
    margin-block: 5px !important;
  }
  .sm-down-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .sm-down-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .sm-down-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .sm-down-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .sm-down-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .sm-down-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .sm-down-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .sm-down-p-xs-child > * {
    padding: 5px !important;
  }
  .sm-down-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .sm-down-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .sm-down-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .sm-down-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .sm-down-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .sm-down-py-xs-child > * {
    padding-block: 5px !important;
  }
  .sm-down-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .sm-down-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .sm-down-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .sm-down-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .sm-down-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .sm-down-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .sm-down-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .sm-down-m-sm-child > * {
    margin: 15px !important;
  }
  .sm-down-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .sm-down-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .sm-down-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .sm-down-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .sm-down-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .sm-down-my-sm-child > * {
    margin-block: 15px !important;
  }
  .sm-down-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .sm-down-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .sm-down-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .sm-down-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .sm-down-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .sm-down-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .sm-down-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .sm-down-p-sm-child > * {
    padding: 15px !important;
  }
  .sm-down-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .sm-down-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .sm-down-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .sm-down-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .sm-down-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .sm-down-py-sm-child > * {
    padding-block: 15px !important;
  }
  .sm-down-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .sm-down-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .sm-down-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .sm-down-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .sm-down-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .sm-down-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .sm-down-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .sm-down-m-md-child > * {
    margin: 30px !important;
  }
  .sm-down-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .sm-down-mt-md-child > * {
    margin-top: 30px !important;
  }
  .sm-down-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .sm-down-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .sm-down-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .sm-down-my-md-child > * {
    margin-block: 30px !important;
  }
  .sm-down-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .sm-down-ml-md-child > * {
    margin-left: 30px !important;
  }
  .sm-down-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .sm-down-mr-md-child > * {
    margin-right: 30px !important;
  }
  .sm-down-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .sm-down-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .sm-down-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .sm-down-p-md-child > * {
    padding: 30px !important;
  }
  .sm-down-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .sm-down-pt-md-child > * {
    padding-top: 30px !important;
  }
  .sm-down-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .sm-down-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .sm-down-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .sm-down-py-md-child > * {
    padding-block: 30px !important;
  }
  .sm-down-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .sm-down-pl-md-child > * {
    padding-left: 30px !important;
  }
  .sm-down-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .sm-down-pr-md-child > * {
    padding-right: 30px !important;
  }
  .sm-down-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .sm-down-px-md-child > * {
    padding-inline: 30px !important;
  }
  .sm-down-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .sm-down-m-lg-child > * {
    margin: 50px !important;
  }
  .sm-down-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .sm-down-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .sm-down-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .sm-down-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .sm-down-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .sm-down-my-lg-child > * {
    margin-block: 50px !important;
  }
  .sm-down-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .sm-down-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .sm-down-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .sm-down-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .sm-down-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .sm-down-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .sm-down-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .sm-down-p-lg-child > * {
    padding: 50px !important;
  }
  .sm-down-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .sm-down-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .sm-down-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .sm-down-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .sm-down-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .sm-down-py-lg-child > * {
    padding-block: 50px !important;
  }
  .sm-down-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .sm-down-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .sm-down-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .sm-down-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .sm-down-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .sm-down-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .sm-down-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .sm-down-m-xl-child > * {
    margin: 70px !important;
  }
  .sm-down-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .sm-down-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .sm-down-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .sm-down-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .sm-down-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .sm-down-my-xl-child > * {
    margin-block: 70px !important;
  }
  .sm-down-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .sm-down-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .sm-down-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .sm-down-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .sm-down-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .sm-down-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .sm-down-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .sm-down-p-xl-child > * {
    padding: 70px !important;
  }
  .sm-down-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .sm-down-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .sm-down-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .sm-down-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .sm-down-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .sm-down-py-xl-child > * {
    padding-block: 70px !important;
  }
  .sm-down-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .sm-down-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .sm-down-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .sm-down-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .sm-down-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .sm-down-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .sm-down-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .sm-down-m-xxl-child > * {
    margin: 140px !important;
  }
  .sm-down-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .sm-down-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .sm-down-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .sm-down-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .sm-down-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .sm-down-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .sm-down-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .sm-down-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .sm-down-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .sm-down-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .sm-down-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .sm-down-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .sm-down-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .sm-down-p-xxl-child > * {
    padding: 140px !important;
  }
  .sm-down-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .sm-down-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .sm-down-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .sm-down-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .sm-down-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .sm-down-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .sm-down-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .sm-down-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .sm-down-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .sm-down-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .sm-down-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .sm-down-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .sm-down-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .sm-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .sm-down-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .sm-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .sm-down-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .sm-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .sm-down-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .sm-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .sm-down-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .sm-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .sm-down-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .sm-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .sm-down-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .sm-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .sm-down-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .sm-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .sm-down-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .sm-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .sm-down-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .sm-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .sm-down-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .sm-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .sm-down-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .sm-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .sm-down-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .sm-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .sm-down-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .sm-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .sm-down-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (max-width: 479.98px) {
  .xs-down-m-0-child > * {
    margin: 0 !important;
  }
  .xs-down-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .xs-down-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xs-down-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .xs-down-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xs-down-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xs-down-my-0-child > * {
    margin-block: 0 !important;
  }
  .xs-down-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .xs-down-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xs-down-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .xs-down-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xs-down-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .xs-down-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xs-down-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .xs-down-p-0-child > * {
    padding: 0 !important;
  }
  .xs-down-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .xs-down-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xs-down-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .xs-down-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xs-down-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .xs-down-py-0-child > * {
    padding-block: 0 !important;
  }
  .xs-down-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .xs-down-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xs-down-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .xs-down-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xs-down-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .xs-down-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xs-down-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .xs-down-m-xs-child > * {
    margin: 5px !important;
  }
  .xs-down-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .xs-down-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .xs-down-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .xs-down-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .xs-down-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .xs-down-my-xs-child > * {
    margin-block: 5px !important;
  }
  .xs-down-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .xs-down-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .xs-down-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .xs-down-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .xs-down-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .xs-down-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .xs-down-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .xs-down-p-xs-child > * {
    padding: 5px !important;
  }
  .xs-down-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .xs-down-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .xs-down-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .xs-down-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .xs-down-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .xs-down-py-xs-child > * {
    padding-block: 5px !important;
  }
  .xs-down-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .xs-down-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .xs-down-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .xs-down-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .xs-down-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .xs-down-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .xs-down-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .xs-down-m-sm-child > * {
    margin: 15px !important;
  }
  .xs-down-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .xs-down-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .xs-down-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .xs-down-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .xs-down-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .xs-down-my-sm-child > * {
    margin-block: 15px !important;
  }
  .xs-down-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .xs-down-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .xs-down-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .xs-down-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .xs-down-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .xs-down-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .xs-down-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .xs-down-p-sm-child > * {
    padding: 15px !important;
  }
  .xs-down-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .xs-down-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .xs-down-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .xs-down-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .xs-down-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .xs-down-py-sm-child > * {
    padding-block: 15px !important;
  }
  .xs-down-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .xs-down-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .xs-down-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .xs-down-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .xs-down-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .xs-down-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .xs-down-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .xs-down-m-md-child > * {
    margin: 30px !important;
  }
  .xs-down-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .xs-down-mt-md-child > * {
    margin-top: 30px !important;
  }
  .xs-down-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .xs-down-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .xs-down-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .xs-down-my-md-child > * {
    margin-block: 30px !important;
  }
  .xs-down-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .xs-down-ml-md-child > * {
    margin-left: 30px !important;
  }
  .xs-down-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .xs-down-mr-md-child > * {
    margin-right: 30px !important;
  }
  .xs-down-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .xs-down-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .xs-down-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .xs-down-p-md-child > * {
    padding: 30px !important;
  }
  .xs-down-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .xs-down-pt-md-child > * {
    padding-top: 30px !important;
  }
  .xs-down-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .xs-down-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .xs-down-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .xs-down-py-md-child > * {
    padding-block: 30px !important;
  }
  .xs-down-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .xs-down-pl-md-child > * {
    padding-left: 30px !important;
  }
  .xs-down-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .xs-down-pr-md-child > * {
    padding-right: 30px !important;
  }
  .xs-down-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .xs-down-px-md-child > * {
    padding-inline: 30px !important;
  }
  .xs-down-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .xs-down-m-lg-child > * {
    margin: 50px !important;
  }
  .xs-down-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .xs-down-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .xs-down-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .xs-down-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .xs-down-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .xs-down-my-lg-child > * {
    margin-block: 50px !important;
  }
  .xs-down-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .xs-down-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .xs-down-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .xs-down-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .xs-down-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .xs-down-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .xs-down-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .xs-down-p-lg-child > * {
    padding: 50px !important;
  }
  .xs-down-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .xs-down-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .xs-down-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .xs-down-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .xs-down-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .xs-down-py-lg-child > * {
    padding-block: 50px !important;
  }
  .xs-down-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .xs-down-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .xs-down-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .xs-down-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .xs-down-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .xs-down-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .xs-down-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .xs-down-m-xl-child > * {
    margin: 70px !important;
  }
  .xs-down-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .xs-down-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .xs-down-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .xs-down-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .xs-down-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .xs-down-my-xl-child > * {
    margin-block: 70px !important;
  }
  .xs-down-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .xs-down-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .xs-down-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .xs-down-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .xs-down-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .xs-down-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .xs-down-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .xs-down-p-xl-child > * {
    padding: 70px !important;
  }
  .xs-down-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .xs-down-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .xs-down-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .xs-down-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .xs-down-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .xs-down-py-xl-child > * {
    padding-block: 70px !important;
  }
  .xs-down-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .xs-down-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .xs-down-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .xs-down-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .xs-down-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .xs-down-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .xs-down-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .xs-down-m-xxl-child > * {
    margin: 140px !important;
  }
  .xs-down-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .xs-down-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .xs-down-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .xs-down-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .xs-down-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .xs-down-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .xs-down-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .xs-down-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .xs-down-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .xs-down-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .xs-down-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .xs-down-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .xs-down-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .xs-down-p-xxl-child > * {
    padding: 140px !important;
  }
  .xs-down-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .xs-down-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .xs-down-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .xs-down-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .xs-down-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .xs-down-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .xs-down-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .xs-down-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .xs-down-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .xs-down-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .xs-down-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .xs-down-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .xs-down-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .xs-down-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xs-down-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .xs-down-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xs-down-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .xs-down-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xs-down-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .xs-down-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xs-down-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .xs-down-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xs-down-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .xs-down-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xs-down-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .xs-down-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xs-down-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .xs-down-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xs-down-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .xs-down-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xs-down-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .xs-down-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xs-down-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .xs-down-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xs-down-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .xs-down-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xs-down-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .xs-down-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xs-down-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .xs-down-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .xs-down-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 480px) {
  .xs-up-m-0-child > * {
    margin: 0 !important;
  }
  .xs-up-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .xs-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xs-up-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .xs-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xs-up-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xs-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .xs-up-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .xs-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xs-up-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .xs-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xs-up-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .xs-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xs-up-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .xs-up-p-0-child > * {
    padding: 0 !important;
  }
  .xs-up-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .xs-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xs-up-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .xs-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xs-up-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .xs-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .xs-up-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .xs-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xs-up-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .xs-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xs-up-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .xs-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xs-up-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .xs-up-m-xs-child > * {
    margin: 5px !important;
  }
  .xs-up-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .xs-up-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .xs-up-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .xs-up-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .xs-up-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .xs-up-my-xs-child > * {
    margin-block: 5px !important;
  }
  .xs-up-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .xs-up-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .xs-up-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .xs-up-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .xs-up-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .xs-up-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .xs-up-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .xs-up-p-xs-child > * {
    padding: 5px !important;
  }
  .xs-up-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .xs-up-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .xs-up-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .xs-up-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .xs-up-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .xs-up-py-xs-child > * {
    padding-block: 5px !important;
  }
  .xs-up-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .xs-up-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .xs-up-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .xs-up-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .xs-up-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .xs-up-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .xs-up-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .xs-up-m-sm-child > * {
    margin: 15px !important;
  }
  .xs-up-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .xs-up-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .xs-up-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .xs-up-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .xs-up-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .xs-up-my-sm-child > * {
    margin-block: 15px !important;
  }
  .xs-up-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .xs-up-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .xs-up-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .xs-up-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .xs-up-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .xs-up-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .xs-up-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .xs-up-p-sm-child > * {
    padding: 15px !important;
  }
  .xs-up-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .xs-up-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .xs-up-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .xs-up-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .xs-up-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .xs-up-py-sm-child > * {
    padding-block: 15px !important;
  }
  .xs-up-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .xs-up-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .xs-up-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .xs-up-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .xs-up-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .xs-up-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .xs-up-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .xs-up-m-md-child > * {
    margin: 30px !important;
  }
  .xs-up-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .xs-up-mt-md-child > * {
    margin-top: 30px !important;
  }
  .xs-up-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .xs-up-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .xs-up-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .xs-up-my-md-child > * {
    margin-block: 30px !important;
  }
  .xs-up-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .xs-up-ml-md-child > * {
    margin-left: 30px !important;
  }
  .xs-up-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .xs-up-mr-md-child > * {
    margin-right: 30px !important;
  }
  .xs-up-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .xs-up-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .xs-up-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .xs-up-p-md-child > * {
    padding: 30px !important;
  }
  .xs-up-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .xs-up-pt-md-child > * {
    padding-top: 30px !important;
  }
  .xs-up-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .xs-up-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .xs-up-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .xs-up-py-md-child > * {
    padding-block: 30px !important;
  }
  .xs-up-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .xs-up-pl-md-child > * {
    padding-left: 30px !important;
  }
  .xs-up-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .xs-up-pr-md-child > * {
    padding-right: 30px !important;
  }
  .xs-up-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .xs-up-px-md-child > * {
    padding-inline: 30px !important;
  }
  .xs-up-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .xs-up-m-lg-child > * {
    margin: 50px !important;
  }
  .xs-up-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .xs-up-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .xs-up-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .xs-up-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .xs-up-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .xs-up-my-lg-child > * {
    margin-block: 50px !important;
  }
  .xs-up-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .xs-up-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .xs-up-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .xs-up-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .xs-up-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .xs-up-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .xs-up-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .xs-up-p-lg-child > * {
    padding: 50px !important;
  }
  .xs-up-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .xs-up-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .xs-up-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .xs-up-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .xs-up-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .xs-up-py-lg-child > * {
    padding-block: 50px !important;
  }
  .xs-up-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .xs-up-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .xs-up-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .xs-up-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .xs-up-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .xs-up-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .xs-up-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .xs-up-m-xl-child > * {
    margin: 70px !important;
  }
  .xs-up-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .xs-up-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .xs-up-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .xs-up-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .xs-up-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .xs-up-my-xl-child > * {
    margin-block: 70px !important;
  }
  .xs-up-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .xs-up-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .xs-up-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .xs-up-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .xs-up-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .xs-up-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .xs-up-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .xs-up-p-xl-child > * {
    padding: 70px !important;
  }
  .xs-up-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .xs-up-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .xs-up-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .xs-up-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .xs-up-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .xs-up-py-xl-child > * {
    padding-block: 70px !important;
  }
  .xs-up-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .xs-up-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .xs-up-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .xs-up-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .xs-up-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .xs-up-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .xs-up-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .xs-up-m-xxl-child > * {
    margin: 140px !important;
  }
  .xs-up-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .xs-up-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .xs-up-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .xs-up-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .xs-up-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .xs-up-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .xs-up-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .xs-up-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .xs-up-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .xs-up-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .xs-up-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .xs-up-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .xs-up-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .xs-up-p-xxl-child > * {
    padding: 140px !important;
  }
  .xs-up-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .xs-up-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .xs-up-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .xs-up-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .xs-up-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .xs-up-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .xs-up-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .xs-up-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .xs-up-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .xs-up-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .xs-up-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .xs-up-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .xs-up-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .xs-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xs-up-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .xs-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xs-up-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .xs-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xs-up-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .xs-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xs-up-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .xs-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xs-up-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .xs-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xs-up-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .xs-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xs-up-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .xs-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xs-up-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .xs-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xs-up-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .xs-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xs-up-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .xs-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xs-up-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .xs-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xs-up-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .xs-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xs-up-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .xs-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .xs-up-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 768px) {
  .sm-up-m-0-child > * {
    margin: 0 !important;
  }
  .sm-up-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .sm-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .sm-up-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .sm-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .sm-up-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .sm-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .sm-up-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .sm-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .sm-up-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .sm-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .sm-up-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .sm-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .sm-up-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .sm-up-p-0-child > * {
    padding: 0 !important;
  }
  .sm-up-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .sm-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .sm-up-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .sm-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .sm-up-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .sm-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .sm-up-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .sm-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .sm-up-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .sm-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .sm-up-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .sm-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .sm-up-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .sm-up-m-xs-child > * {
    margin: 5px !important;
  }
  .sm-up-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .sm-up-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .sm-up-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .sm-up-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .sm-up-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .sm-up-my-xs-child > * {
    margin-block: 5px !important;
  }
  .sm-up-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .sm-up-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .sm-up-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .sm-up-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .sm-up-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .sm-up-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .sm-up-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .sm-up-p-xs-child > * {
    padding: 5px !important;
  }
  .sm-up-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .sm-up-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .sm-up-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .sm-up-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .sm-up-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .sm-up-py-xs-child > * {
    padding-block: 5px !important;
  }
  .sm-up-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .sm-up-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .sm-up-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .sm-up-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .sm-up-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .sm-up-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .sm-up-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .sm-up-m-sm-child > * {
    margin: 15px !important;
  }
  .sm-up-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .sm-up-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .sm-up-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .sm-up-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .sm-up-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .sm-up-my-sm-child > * {
    margin-block: 15px !important;
  }
  .sm-up-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .sm-up-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .sm-up-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .sm-up-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .sm-up-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .sm-up-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .sm-up-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .sm-up-p-sm-child > * {
    padding: 15px !important;
  }
  .sm-up-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .sm-up-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .sm-up-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .sm-up-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .sm-up-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .sm-up-py-sm-child > * {
    padding-block: 15px !important;
  }
  .sm-up-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .sm-up-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .sm-up-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .sm-up-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .sm-up-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .sm-up-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .sm-up-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .sm-up-m-md-child > * {
    margin: 30px !important;
  }
  .sm-up-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .sm-up-mt-md-child > * {
    margin-top: 30px !important;
  }
  .sm-up-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .sm-up-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .sm-up-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .sm-up-my-md-child > * {
    margin-block: 30px !important;
  }
  .sm-up-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .sm-up-ml-md-child > * {
    margin-left: 30px !important;
  }
  .sm-up-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .sm-up-mr-md-child > * {
    margin-right: 30px !important;
  }
  .sm-up-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .sm-up-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .sm-up-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .sm-up-p-md-child > * {
    padding: 30px !important;
  }
  .sm-up-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .sm-up-pt-md-child > * {
    padding-top: 30px !important;
  }
  .sm-up-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .sm-up-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .sm-up-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .sm-up-py-md-child > * {
    padding-block: 30px !important;
  }
  .sm-up-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .sm-up-pl-md-child > * {
    padding-left: 30px !important;
  }
  .sm-up-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .sm-up-pr-md-child > * {
    padding-right: 30px !important;
  }
  .sm-up-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .sm-up-px-md-child > * {
    padding-inline: 30px !important;
  }
  .sm-up-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .sm-up-m-lg-child > * {
    margin: 50px !important;
  }
  .sm-up-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .sm-up-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .sm-up-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .sm-up-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .sm-up-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .sm-up-my-lg-child > * {
    margin-block: 50px !important;
  }
  .sm-up-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .sm-up-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .sm-up-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .sm-up-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .sm-up-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .sm-up-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .sm-up-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .sm-up-p-lg-child > * {
    padding: 50px !important;
  }
  .sm-up-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .sm-up-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .sm-up-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .sm-up-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .sm-up-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .sm-up-py-lg-child > * {
    padding-block: 50px !important;
  }
  .sm-up-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .sm-up-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .sm-up-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .sm-up-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .sm-up-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .sm-up-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .sm-up-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .sm-up-m-xl-child > * {
    margin: 70px !important;
  }
  .sm-up-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .sm-up-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .sm-up-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .sm-up-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .sm-up-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .sm-up-my-xl-child > * {
    margin-block: 70px !important;
  }
  .sm-up-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .sm-up-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .sm-up-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .sm-up-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .sm-up-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .sm-up-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .sm-up-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .sm-up-p-xl-child > * {
    padding: 70px !important;
  }
  .sm-up-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .sm-up-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .sm-up-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .sm-up-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .sm-up-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .sm-up-py-xl-child > * {
    padding-block: 70px !important;
  }
  .sm-up-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .sm-up-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .sm-up-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .sm-up-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .sm-up-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .sm-up-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .sm-up-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .sm-up-m-xxl-child > * {
    margin: 140px !important;
  }
  .sm-up-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .sm-up-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .sm-up-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .sm-up-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .sm-up-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .sm-up-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .sm-up-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .sm-up-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .sm-up-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .sm-up-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .sm-up-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .sm-up-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .sm-up-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .sm-up-p-xxl-child > * {
    padding: 140px !important;
  }
  .sm-up-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .sm-up-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .sm-up-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .sm-up-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .sm-up-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .sm-up-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .sm-up-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .sm-up-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .sm-up-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .sm-up-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .sm-up-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .sm-up-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .sm-up-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .sm-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .sm-up-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .sm-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .sm-up-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .sm-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .sm-up-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .sm-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .sm-up-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .sm-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .sm-up-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .sm-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .sm-up-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .sm-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .sm-up-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .sm-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .sm-up-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .sm-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .sm-up-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .sm-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .sm-up-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .sm-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .sm-up-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .sm-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .sm-up-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .sm-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .sm-up-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .sm-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .sm-up-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 992px) {
  .md-up-m-0-child > * {
    margin: 0 !important;
  }
  .md-up-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .md-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .md-up-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .md-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .md-up-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .md-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .md-up-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .md-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .md-up-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .md-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .md-up-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .md-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .md-up-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .md-up-p-0-child > * {
    padding: 0 !important;
  }
  .md-up-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .md-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .md-up-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .md-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .md-up-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .md-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .md-up-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .md-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .md-up-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .md-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .md-up-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .md-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .md-up-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .md-up-m-xs-child > * {
    margin: 5px !important;
  }
  .md-up-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .md-up-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .md-up-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .md-up-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .md-up-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .md-up-my-xs-child > * {
    margin-block: 5px !important;
  }
  .md-up-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .md-up-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .md-up-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .md-up-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .md-up-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .md-up-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .md-up-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .md-up-p-xs-child > * {
    padding: 5px !important;
  }
  .md-up-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .md-up-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .md-up-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .md-up-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .md-up-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .md-up-py-xs-child > * {
    padding-block: 5px !important;
  }
  .md-up-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .md-up-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .md-up-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .md-up-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .md-up-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .md-up-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .md-up-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .md-up-m-sm-child > * {
    margin: 15px !important;
  }
  .md-up-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .md-up-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .md-up-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .md-up-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .md-up-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .md-up-my-sm-child > * {
    margin-block: 15px !important;
  }
  .md-up-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .md-up-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .md-up-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .md-up-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .md-up-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .md-up-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .md-up-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .md-up-p-sm-child > * {
    padding: 15px !important;
  }
  .md-up-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .md-up-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .md-up-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .md-up-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .md-up-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .md-up-py-sm-child > * {
    padding-block: 15px !important;
  }
  .md-up-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .md-up-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .md-up-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .md-up-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .md-up-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .md-up-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .md-up-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .md-up-m-md-child > * {
    margin: 30px !important;
  }
  .md-up-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .md-up-mt-md-child > * {
    margin-top: 30px !important;
  }
  .md-up-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .md-up-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .md-up-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .md-up-my-md-child > * {
    margin-block: 30px !important;
  }
  .md-up-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .md-up-ml-md-child > * {
    margin-left: 30px !important;
  }
  .md-up-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .md-up-mr-md-child > * {
    margin-right: 30px !important;
  }
  .md-up-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .md-up-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .md-up-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .md-up-p-md-child > * {
    padding: 30px !important;
  }
  .md-up-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .md-up-pt-md-child > * {
    padding-top: 30px !important;
  }
  .md-up-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .md-up-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .md-up-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .md-up-py-md-child > * {
    padding-block: 30px !important;
  }
  .md-up-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .md-up-pl-md-child > * {
    padding-left: 30px !important;
  }
  .md-up-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .md-up-pr-md-child > * {
    padding-right: 30px !important;
  }
  .md-up-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .md-up-px-md-child > * {
    padding-inline: 30px !important;
  }
  .md-up-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .md-up-m-lg-child > * {
    margin: 50px !important;
  }
  .md-up-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .md-up-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .md-up-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .md-up-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .md-up-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .md-up-my-lg-child > * {
    margin-block: 50px !important;
  }
  .md-up-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .md-up-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .md-up-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .md-up-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .md-up-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .md-up-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .md-up-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .md-up-p-lg-child > * {
    padding: 50px !important;
  }
  .md-up-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .md-up-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .md-up-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .md-up-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .md-up-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .md-up-py-lg-child > * {
    padding-block: 50px !important;
  }
  .md-up-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .md-up-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .md-up-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .md-up-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .md-up-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .md-up-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .md-up-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .md-up-m-xl-child > * {
    margin: 70px !important;
  }
  .md-up-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .md-up-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .md-up-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .md-up-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .md-up-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .md-up-my-xl-child > * {
    margin-block: 70px !important;
  }
  .md-up-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .md-up-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .md-up-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .md-up-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .md-up-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .md-up-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .md-up-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .md-up-p-xl-child > * {
    padding: 70px !important;
  }
  .md-up-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .md-up-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .md-up-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .md-up-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .md-up-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .md-up-py-xl-child > * {
    padding-block: 70px !important;
  }
  .md-up-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .md-up-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .md-up-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .md-up-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .md-up-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .md-up-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .md-up-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .md-up-m-xxl-child > * {
    margin: 140px !important;
  }
  .md-up-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .md-up-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .md-up-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .md-up-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .md-up-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .md-up-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .md-up-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .md-up-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .md-up-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .md-up-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .md-up-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .md-up-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .md-up-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .md-up-p-xxl-child > * {
    padding: 140px !important;
  }
  .md-up-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .md-up-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .md-up-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .md-up-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .md-up-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .md-up-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .md-up-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .md-up-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .md-up-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .md-up-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .md-up-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .md-up-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .md-up-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .md-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .md-up-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .md-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .md-up-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .md-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .md-up-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .md-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .md-up-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .md-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .md-up-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .md-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .md-up-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .md-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .md-up-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .md-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .md-up-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .md-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .md-up-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .md-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .md-up-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .md-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .md-up-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .md-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .md-up-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .md-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .md-up-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .md-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .md-up-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 1200px) {
  .lg-up-m-0-child > * {
    margin: 0 !important;
  }
  .lg-up-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .lg-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .lg-up-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .lg-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .lg-up-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .lg-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .lg-up-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .lg-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .lg-up-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .lg-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .lg-up-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .lg-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .lg-up-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .lg-up-p-0-child > * {
    padding: 0 !important;
  }
  .lg-up-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .lg-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .lg-up-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .lg-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .lg-up-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .lg-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .lg-up-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .lg-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .lg-up-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .lg-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .lg-up-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .lg-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .lg-up-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .lg-up-m-xs-child > * {
    margin: 5px !important;
  }
  .lg-up-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .lg-up-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .lg-up-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .lg-up-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .lg-up-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .lg-up-my-xs-child > * {
    margin-block: 5px !important;
  }
  .lg-up-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .lg-up-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .lg-up-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .lg-up-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .lg-up-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .lg-up-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .lg-up-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .lg-up-p-xs-child > * {
    padding: 5px !important;
  }
  .lg-up-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .lg-up-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .lg-up-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .lg-up-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .lg-up-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .lg-up-py-xs-child > * {
    padding-block: 5px !important;
  }
  .lg-up-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .lg-up-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .lg-up-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .lg-up-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .lg-up-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .lg-up-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .lg-up-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .lg-up-m-sm-child > * {
    margin: 15px !important;
  }
  .lg-up-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .lg-up-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .lg-up-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .lg-up-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .lg-up-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .lg-up-my-sm-child > * {
    margin-block: 15px !important;
  }
  .lg-up-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .lg-up-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .lg-up-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .lg-up-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .lg-up-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .lg-up-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .lg-up-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .lg-up-p-sm-child > * {
    padding: 15px !important;
  }
  .lg-up-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .lg-up-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .lg-up-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .lg-up-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .lg-up-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .lg-up-py-sm-child > * {
    padding-block: 15px !important;
  }
  .lg-up-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .lg-up-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .lg-up-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .lg-up-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .lg-up-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .lg-up-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .lg-up-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .lg-up-m-md-child > * {
    margin: 30px !important;
  }
  .lg-up-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .lg-up-mt-md-child > * {
    margin-top: 30px !important;
  }
  .lg-up-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .lg-up-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .lg-up-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .lg-up-my-md-child > * {
    margin-block: 30px !important;
  }
  .lg-up-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .lg-up-ml-md-child > * {
    margin-left: 30px !important;
  }
  .lg-up-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .lg-up-mr-md-child > * {
    margin-right: 30px !important;
  }
  .lg-up-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .lg-up-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .lg-up-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .lg-up-p-md-child > * {
    padding: 30px !important;
  }
  .lg-up-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .lg-up-pt-md-child > * {
    padding-top: 30px !important;
  }
  .lg-up-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .lg-up-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .lg-up-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .lg-up-py-md-child > * {
    padding-block: 30px !important;
  }
  .lg-up-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .lg-up-pl-md-child > * {
    padding-left: 30px !important;
  }
  .lg-up-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .lg-up-pr-md-child > * {
    padding-right: 30px !important;
  }
  .lg-up-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .lg-up-px-md-child > * {
    padding-inline: 30px !important;
  }
  .lg-up-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .lg-up-m-lg-child > * {
    margin: 50px !important;
  }
  .lg-up-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .lg-up-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .lg-up-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .lg-up-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .lg-up-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .lg-up-my-lg-child > * {
    margin-block: 50px !important;
  }
  .lg-up-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .lg-up-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .lg-up-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .lg-up-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .lg-up-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .lg-up-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .lg-up-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .lg-up-p-lg-child > * {
    padding: 50px !important;
  }
  .lg-up-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .lg-up-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .lg-up-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .lg-up-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .lg-up-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .lg-up-py-lg-child > * {
    padding-block: 50px !important;
  }
  .lg-up-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .lg-up-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .lg-up-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .lg-up-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .lg-up-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .lg-up-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .lg-up-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .lg-up-m-xl-child > * {
    margin: 70px !important;
  }
  .lg-up-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .lg-up-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .lg-up-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .lg-up-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .lg-up-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .lg-up-my-xl-child > * {
    margin-block: 70px !important;
  }
  .lg-up-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .lg-up-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .lg-up-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .lg-up-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .lg-up-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .lg-up-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .lg-up-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .lg-up-p-xl-child > * {
    padding: 70px !important;
  }
  .lg-up-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .lg-up-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .lg-up-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .lg-up-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .lg-up-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .lg-up-py-xl-child > * {
    padding-block: 70px !important;
  }
  .lg-up-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .lg-up-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .lg-up-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .lg-up-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .lg-up-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .lg-up-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .lg-up-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .lg-up-m-xxl-child > * {
    margin: 140px !important;
  }
  .lg-up-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .lg-up-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .lg-up-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .lg-up-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .lg-up-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .lg-up-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .lg-up-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .lg-up-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .lg-up-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .lg-up-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .lg-up-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .lg-up-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .lg-up-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .lg-up-p-xxl-child > * {
    padding: 140px !important;
  }
  .lg-up-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .lg-up-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .lg-up-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .lg-up-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .lg-up-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .lg-up-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .lg-up-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .lg-up-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .lg-up-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .lg-up-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .lg-up-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .lg-up-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .lg-up-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .lg-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .lg-up-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .lg-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .lg-up-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .lg-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .lg-up-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .lg-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .lg-up-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .lg-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .lg-up-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .lg-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .lg-up-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .lg-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .lg-up-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .lg-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .lg-up-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .lg-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .lg-up-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .lg-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .lg-up-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .lg-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .lg-up-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .lg-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .lg-up-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .lg-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .lg-up-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .lg-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .lg-up-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
@media (min-width: 1400px) {
  .xl-up-m-0-child > * {
    margin: 0 !important;
  }
  .xl-up-m-0-child-not-last > *:not(:last-child) {
    margin: 0 !important;
  }
  .xl-up-mt-0-child > * {
    margin-top: 0 !important;
  }
  .xl-up-mt-0-child-not-last > *:not(:last-child) {
    margin-top: 0 !important;
  }
  .xl-up-mb-0-child > * {
    margin-bottom: 0 !important;
  }
  .xl-up-mb-0-child-not-last > *:not(:last-child) {
    margin-bottom: 0 !important;
  }
  .xl-up-my-0-child > * {
    margin-block: 0 !important;
  }
  .xl-up-my-0-child-not-last > *:not(:last-child) {
    margin-block: 0 !important;
  }
  .xl-up-ml-0-child > * {
    margin-left: 0 !important;
  }
  .xl-up-ml-0-child-not-last > *:not(:last-child) {
    margin-left: 0 !important;
  }
  .xl-up-mr-0-child > * {
    margin-right: 0 !important;
  }
  .xl-up-mr-0-child-not-last > *:not(:last-child) {
    margin-right: 0 !important;
  }
  .xl-up-mx-0-child > * {
    margin-inline: 0 !important;
  }
  .xl-up-mx-0-child-not-last > *:not(:last-child) {
    margin-inline: 0 !important;
  }
  .xl-up-p-0-child > * {
    padding: 0 !important;
  }
  .xl-up-p-0-child-not-last > *:not(:last-child) {
    padding: 0 !important;
  }
  .xl-up-pt-0-child > * {
    padding-top: 0 !important;
  }
  .xl-up-pt-0-child-not-last > *:not(:last-child) {
    padding-top: 0 !important;
  }
  .xl-up-pb-0-child > * {
    padding-bottom: 0 !important;
  }
  .xl-up-pb-0-child-not-last > *:not(:last-child) {
    padding-bottom: 0 !important;
  }
  .xl-up-py-0-child > * {
    padding-block: 0 !important;
  }
  .xl-up-py-0-child-not-last > *:not(:last-child) {
    padding-block: 0 !important;
  }
  .xl-up-pl-0-child > * {
    padding-left: 0 !important;
  }
  .xl-up-pl-0-child-not-last > *:not(:last-child) {
    padding-left: 0 !important;
  }
  .xl-up-pr-0-child > * {
    padding-right: 0 !important;
  }
  .xl-up-pr-0-child-not-last > *:not(:last-child) {
    padding-right: 0 !important;
  }
  .xl-up-px-0-child > * {
    padding-inline: 0 !important;
  }
  .xl-up-px-0-child-not-last > *:not(:last-child) {
    padding-inline: 0 !important;
  }
  .xl-up-m-xs-child > * {
    margin: 5px !important;
  }
  .xl-up-m-xs-child-not-last > *:not(:last-child) {
    margin: 5px !important;
  }
  .xl-up-mt-xs-child > * {
    margin-top: 5px !important;
  }
  .xl-up-mt-xs-child-not-last > *:not(:last-child) {
    margin-top: 5px !important;
  }
  .xl-up-mb-xs-child > * {
    margin-bottom: 5px !important;
  }
  .xl-up-mb-xs-child-not-last > *:not(:last-child) {
    margin-bottom: 5px !important;
  }
  .xl-up-my-xs-child > * {
    margin-block: 5px !important;
  }
  .xl-up-my-xs-child-not-last > *:not(:last-child) {
    margin-block: 5px !important;
  }
  .xl-up-ml-xs-child > * {
    margin-left: 5px !important;
  }
  .xl-up-ml-xs-child-not-last > *:not(:last-child) {
    margin-left: 5px !important;
  }
  .xl-up-mr-xs-child > * {
    margin-right: 5px !important;
  }
  .xl-up-mr-xs-child-not-last > *:not(:last-child) {
    margin-right: 5px !important;
  }
  .xl-up-mx-xs-child > * {
    margin-inline: 5px !important;
  }
  .xl-up-mx-xs-child-not-last > *:not(:last-child) {
    margin-inline: 5px !important;
  }
  .xl-up-p-xs-child > * {
    padding: 5px !important;
  }
  .xl-up-p-xs-child-not-last > *:not(:last-child) {
    padding: 5px !important;
  }
  .xl-up-pt-xs-child > * {
    padding-top: 5px !important;
  }
  .xl-up-pt-xs-child-not-last > *:not(:last-child) {
    padding-top: 5px !important;
  }
  .xl-up-pb-xs-child > * {
    padding-bottom: 5px !important;
  }
  .xl-up-pb-xs-child-not-last > *:not(:last-child) {
    padding-bottom: 5px !important;
  }
  .xl-up-py-xs-child > * {
    padding-block: 5px !important;
  }
  .xl-up-py-xs-child-not-last > *:not(:last-child) {
    padding-block: 5px !important;
  }
  .xl-up-pl-xs-child > * {
    padding-left: 5px !important;
  }
  .xl-up-pl-xs-child-not-last > *:not(:last-child) {
    padding-left: 5px !important;
  }
  .xl-up-pr-xs-child > * {
    padding-right: 5px !important;
  }
  .xl-up-pr-xs-child-not-last > *:not(:last-child) {
    padding-right: 5px !important;
  }
  .xl-up-px-xs-child > * {
    padding-inline: 5px !important;
  }
  .xl-up-px-xs-child-not-last > *:not(:last-child) {
    padding-inline: 5px !important;
  }
  .xl-up-m-sm-child > * {
    margin: 15px !important;
  }
  .xl-up-m-sm-child-not-last > *:not(:last-child) {
    margin: 15px !important;
  }
  .xl-up-mt-sm-child > * {
    margin-top: 15px !important;
  }
  .xl-up-mt-sm-child-not-last > *:not(:last-child) {
    margin-top: 15px !important;
  }
  .xl-up-mb-sm-child > * {
    margin-bottom: 15px !important;
  }
  .xl-up-mb-sm-child-not-last > *:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .xl-up-my-sm-child > * {
    margin-block: 15px !important;
  }
  .xl-up-my-sm-child-not-last > *:not(:last-child) {
    margin-block: 15px !important;
  }
  .xl-up-ml-sm-child > * {
    margin-left: 15px !important;
  }
  .xl-up-ml-sm-child-not-last > *:not(:last-child) {
    margin-left: 15px !important;
  }
  .xl-up-mr-sm-child > * {
    margin-right: 15px !important;
  }
  .xl-up-mr-sm-child-not-last > *:not(:last-child) {
    margin-right: 15px !important;
  }
  .xl-up-mx-sm-child > * {
    margin-inline: 15px !important;
  }
  .xl-up-mx-sm-child-not-last > *:not(:last-child) {
    margin-inline: 15px !important;
  }
  .xl-up-p-sm-child > * {
    padding: 15px !important;
  }
  .xl-up-p-sm-child-not-last > *:not(:last-child) {
    padding: 15px !important;
  }
  .xl-up-pt-sm-child > * {
    padding-top: 15px !important;
  }
  .xl-up-pt-sm-child-not-last > *:not(:last-child) {
    padding-top: 15px !important;
  }
  .xl-up-pb-sm-child > * {
    padding-bottom: 15px !important;
  }
  .xl-up-pb-sm-child-not-last > *:not(:last-child) {
    padding-bottom: 15px !important;
  }
  .xl-up-py-sm-child > * {
    padding-block: 15px !important;
  }
  .xl-up-py-sm-child-not-last > *:not(:last-child) {
    padding-block: 15px !important;
  }
  .xl-up-pl-sm-child > * {
    padding-left: 15px !important;
  }
  .xl-up-pl-sm-child-not-last > *:not(:last-child) {
    padding-left: 15px !important;
  }
  .xl-up-pr-sm-child > * {
    padding-right: 15px !important;
  }
  .xl-up-pr-sm-child-not-last > *:not(:last-child) {
    padding-right: 15px !important;
  }
  .xl-up-px-sm-child > * {
    padding-inline: 15px !important;
  }
  .xl-up-px-sm-child-not-last > *:not(:last-child) {
    padding-inline: 15px !important;
  }
  .xl-up-m-md-child > * {
    margin: 30px !important;
  }
  .xl-up-m-md-child-not-last > *:not(:last-child) {
    margin: 30px !important;
  }
  .xl-up-mt-md-child > * {
    margin-top: 30px !important;
  }
  .xl-up-mt-md-child-not-last > *:not(:last-child) {
    margin-top: 30px !important;
  }
  .xl-up-mb-md-child > * {
    margin-bottom: 30px !important;
  }
  .xl-up-mb-md-child-not-last > *:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .xl-up-my-md-child > * {
    margin-block: 30px !important;
  }
  .xl-up-my-md-child-not-last > *:not(:last-child) {
    margin-block: 30px !important;
  }
  .xl-up-ml-md-child > * {
    margin-left: 30px !important;
  }
  .xl-up-ml-md-child-not-last > *:not(:last-child) {
    margin-left: 30px !important;
  }
  .xl-up-mr-md-child > * {
    margin-right: 30px !important;
  }
  .xl-up-mr-md-child-not-last > *:not(:last-child) {
    margin-right: 30px !important;
  }
  .xl-up-mx-md-child > * {
    margin-inline: 30px !important;
  }
  .xl-up-mx-md-child-not-last > *:not(:last-child) {
    margin-inline: 30px !important;
  }
  .xl-up-p-md-child > * {
    padding: 30px !important;
  }
  .xl-up-p-md-child-not-last > *:not(:last-child) {
    padding: 30px !important;
  }
  .xl-up-pt-md-child > * {
    padding-top: 30px !important;
  }
  .xl-up-pt-md-child-not-last > *:not(:last-child) {
    padding-top: 30px !important;
  }
  .xl-up-pb-md-child > * {
    padding-bottom: 30px !important;
  }
  .xl-up-pb-md-child-not-last > *:not(:last-child) {
    padding-bottom: 30px !important;
  }
  .xl-up-py-md-child > * {
    padding-block: 30px !important;
  }
  .xl-up-py-md-child-not-last > *:not(:last-child) {
    padding-block: 30px !important;
  }
  .xl-up-pl-md-child > * {
    padding-left: 30px !important;
  }
  .xl-up-pl-md-child-not-last > *:not(:last-child) {
    padding-left: 30px !important;
  }
  .xl-up-pr-md-child > * {
    padding-right: 30px !important;
  }
  .xl-up-pr-md-child-not-last > *:not(:last-child) {
    padding-right: 30px !important;
  }
  .xl-up-px-md-child > * {
    padding-inline: 30px !important;
  }
  .xl-up-px-md-child-not-last > *:not(:last-child) {
    padding-inline: 30px !important;
  }
  .xl-up-m-lg-child > * {
    margin: 50px !important;
  }
  .xl-up-m-lg-child-not-last > *:not(:last-child) {
    margin: 50px !important;
  }
  .xl-up-mt-lg-child > * {
    margin-top: 50px !important;
  }
  .xl-up-mt-lg-child-not-last > *:not(:last-child) {
    margin-top: 50px !important;
  }
  .xl-up-mb-lg-child > * {
    margin-bottom: 50px !important;
  }
  .xl-up-mb-lg-child-not-last > *:not(:last-child) {
    margin-bottom: 50px !important;
  }
  .xl-up-my-lg-child > * {
    margin-block: 50px !important;
  }
  .xl-up-my-lg-child-not-last > *:not(:last-child) {
    margin-block: 50px !important;
  }
  .xl-up-ml-lg-child > * {
    margin-left: 50px !important;
  }
  .xl-up-ml-lg-child-not-last > *:not(:last-child) {
    margin-left: 50px !important;
  }
  .xl-up-mr-lg-child > * {
    margin-right: 50px !important;
  }
  .xl-up-mr-lg-child-not-last > *:not(:last-child) {
    margin-right: 50px !important;
  }
  .xl-up-mx-lg-child > * {
    margin-inline: 50px !important;
  }
  .xl-up-mx-lg-child-not-last > *:not(:last-child) {
    margin-inline: 50px !important;
  }
  .xl-up-p-lg-child > * {
    padding: 50px !important;
  }
  .xl-up-p-lg-child-not-last > *:not(:last-child) {
    padding: 50px !important;
  }
  .xl-up-pt-lg-child > * {
    padding-top: 50px !important;
  }
  .xl-up-pt-lg-child-not-last > *:not(:last-child) {
    padding-top: 50px !important;
  }
  .xl-up-pb-lg-child > * {
    padding-bottom: 50px !important;
  }
  .xl-up-pb-lg-child-not-last > *:not(:last-child) {
    padding-bottom: 50px !important;
  }
  .xl-up-py-lg-child > * {
    padding-block: 50px !important;
  }
  .xl-up-py-lg-child-not-last > *:not(:last-child) {
    padding-block: 50px !important;
  }
  .xl-up-pl-lg-child > * {
    padding-left: 50px !important;
  }
  .xl-up-pl-lg-child-not-last > *:not(:last-child) {
    padding-left: 50px !important;
  }
  .xl-up-pr-lg-child > * {
    padding-right: 50px !important;
  }
  .xl-up-pr-lg-child-not-last > *:not(:last-child) {
    padding-right: 50px !important;
  }
  .xl-up-px-lg-child > * {
    padding-inline: 50px !important;
  }
  .xl-up-px-lg-child-not-last > *:not(:last-child) {
    padding-inline: 50px !important;
  }
  .xl-up-m-xl-child > * {
    margin: 70px !important;
  }
  .xl-up-m-xl-child-not-last > *:not(:last-child) {
    margin: 70px !important;
  }
  .xl-up-mt-xl-child > * {
    margin-top: 70px !important;
  }
  .xl-up-mt-xl-child-not-last > *:not(:last-child) {
    margin-top: 70px !important;
  }
  .xl-up-mb-xl-child > * {
    margin-bottom: 70px !important;
  }
  .xl-up-mb-xl-child-not-last > *:not(:last-child) {
    margin-bottom: 70px !important;
  }
  .xl-up-my-xl-child > * {
    margin-block: 70px !important;
  }
  .xl-up-my-xl-child-not-last > *:not(:last-child) {
    margin-block: 70px !important;
  }
  .xl-up-ml-xl-child > * {
    margin-left: 70px !important;
  }
  .xl-up-ml-xl-child-not-last > *:not(:last-child) {
    margin-left: 70px !important;
  }
  .xl-up-mr-xl-child > * {
    margin-right: 70px !important;
  }
  .xl-up-mr-xl-child-not-last > *:not(:last-child) {
    margin-right: 70px !important;
  }
  .xl-up-mx-xl-child > * {
    margin-inline: 70px !important;
  }
  .xl-up-mx-xl-child-not-last > *:not(:last-child) {
    margin-inline: 70px !important;
  }
  .xl-up-p-xl-child > * {
    padding: 70px !important;
  }
  .xl-up-p-xl-child-not-last > *:not(:last-child) {
    padding: 70px !important;
  }
  .xl-up-pt-xl-child > * {
    padding-top: 70px !important;
  }
  .xl-up-pt-xl-child-not-last > *:not(:last-child) {
    padding-top: 70px !important;
  }
  .xl-up-pb-xl-child > * {
    padding-bottom: 70px !important;
  }
  .xl-up-pb-xl-child-not-last > *:not(:last-child) {
    padding-bottom: 70px !important;
  }
  .xl-up-py-xl-child > * {
    padding-block: 70px !important;
  }
  .xl-up-py-xl-child-not-last > *:not(:last-child) {
    padding-block: 70px !important;
  }
  .xl-up-pl-xl-child > * {
    padding-left: 70px !important;
  }
  .xl-up-pl-xl-child-not-last > *:not(:last-child) {
    padding-left: 70px !important;
  }
  .xl-up-pr-xl-child > * {
    padding-right: 70px !important;
  }
  .xl-up-pr-xl-child-not-last > *:not(:last-child) {
    padding-right: 70px !important;
  }
  .xl-up-px-xl-child > * {
    padding-inline: 70px !important;
  }
  .xl-up-px-xl-child-not-last > *:not(:last-child) {
    padding-inline: 70px !important;
  }
  .xl-up-m-xxl-child > * {
    margin: 140px !important;
  }
  .xl-up-m-xxl-child-not-last > *:not(:last-child) {
    margin: 140px !important;
  }
  .xl-up-mt-xxl-child > * {
    margin-top: 140px !important;
  }
  .xl-up-mt-xxl-child-not-last > *:not(:last-child) {
    margin-top: 140px !important;
  }
  .xl-up-mb-xxl-child > * {
    margin-bottom: 140px !important;
  }
  .xl-up-mb-xxl-child-not-last > *:not(:last-child) {
    margin-bottom: 140px !important;
  }
  .xl-up-my-xxl-child > * {
    margin-block: 140px !important;
  }
  .xl-up-my-xxl-child-not-last > *:not(:last-child) {
    margin-block: 140px !important;
  }
  .xl-up-ml-xxl-child > * {
    margin-left: 140px !important;
  }
  .xl-up-ml-xxl-child-not-last > *:not(:last-child) {
    margin-left: 140px !important;
  }
  .xl-up-mr-xxl-child > * {
    margin-right: 140px !important;
  }
  .xl-up-mr-xxl-child-not-last > *:not(:last-child) {
    margin-right: 140px !important;
  }
  .xl-up-mx-xxl-child > * {
    margin-inline: 140px !important;
  }
  .xl-up-mx-xxl-child-not-last > *:not(:last-child) {
    margin-inline: 140px !important;
  }
  .xl-up-p-xxl-child > * {
    padding: 140px !important;
  }
  .xl-up-p-xxl-child-not-last > *:not(:last-child) {
    padding: 140px !important;
  }
  .xl-up-pt-xxl-child > * {
    padding-top: 140px !important;
  }
  .xl-up-pt-xxl-child-not-last > *:not(:last-child) {
    padding-top: 140px !important;
  }
  .xl-up-pb-xxl-child > * {
    padding-bottom: 140px !important;
  }
  .xl-up-pb-xxl-child-not-last > *:not(:last-child) {
    padding-bottom: 140px !important;
  }
  .xl-up-py-xxl-child > * {
    padding-block: 140px !important;
  }
  .xl-up-py-xxl-child-not-last > *:not(:last-child) {
    padding-block: 140px !important;
  }
  .xl-up-pl-xxl-child > * {
    padding-left: 140px !important;
  }
  .xl-up-pl-xxl-child-not-last > *:not(:last-child) {
    padding-left: 140px !important;
  }
  .xl-up-pr-xxl-child > * {
    padding-right: 140px !important;
  }
  .xl-up-pr-xxl-child-not-last > *:not(:last-child) {
    padding-right: 140px !important;
  }
  .xl-up-px-xxl-child > * {
    padding-inline: 140px !important;
  }
  .xl-up-px-xxl-child-not-last > *:not(:last-child) {
    padding-inline: 140px !important;
  }
  .xl-up-m-fluid-child > * {
    margin: var(--side-margin) !important;
  }
  .xl-up-m-fluid-child-not-last > *:not(:last-child) {
    margin: var(--side-margin) !important;
  }
  .xl-up-mt-fluid-child > * {
    margin-top: var(--side-margin) !important;
  }
  .xl-up-mt-fluid-child-not-last > *:not(:last-child) {
    margin-top: var(--side-margin) !important;
  }
  .xl-up-mb-fluid-child > * {
    margin-bottom: var(--side-margin) !important;
  }
  .xl-up-mb-fluid-child-not-last > *:not(:last-child) {
    margin-bottom: var(--side-margin) !important;
  }
  .xl-up-my-fluid-child > * {
    margin-block: var(--side-margin) !important;
  }
  .xl-up-my-fluid-child-not-last > *:not(:last-child) {
    margin-block: var(--side-margin) !important;
  }
  .xl-up-ml-fluid-child > * {
    margin-left: var(--side-margin) !important;
  }
  .xl-up-ml-fluid-child-not-last > *:not(:last-child) {
    margin-left: var(--side-margin) !important;
  }
  .xl-up-mr-fluid-child > * {
    margin-right: var(--side-margin) !important;
  }
  .xl-up-mr-fluid-child-not-last > *:not(:last-child) {
    margin-right: var(--side-margin) !important;
  }
  .xl-up-mx-fluid-child > * {
    margin-inline: var(--side-margin) !important;
  }
  .xl-up-mx-fluid-child-not-last > *:not(:last-child) {
    margin-inline: var(--side-margin) !important;
  }
  .xl-up-p-fluid-child > * {
    padding: var(--side-margin) !important;
  }
  .xl-up-p-fluid-child-not-last > *:not(:last-child) {
    padding: var(--side-margin) !important;
  }
  .xl-up-pt-fluid-child > * {
    padding-top: var(--side-margin) !important;
  }
  .xl-up-pt-fluid-child-not-last > *:not(:last-child) {
    padding-top: var(--side-margin) !important;
  }
  .xl-up-pb-fluid-child > * {
    padding-bottom: var(--side-margin) !important;
  }
  .xl-up-pb-fluid-child-not-last > *:not(:last-child) {
    padding-bottom: var(--side-margin) !important;
  }
  .xl-up-py-fluid-child > * {
    padding-block: var(--side-margin) !important;
  }
  .xl-up-py-fluid-child-not-last > *:not(:last-child) {
    padding-block: var(--side-margin) !important;
  }
  .xl-up-pl-fluid-child > * {
    padding-left: var(--side-margin) !important;
  }
  .xl-up-pl-fluid-child-not-last > *:not(:last-child) {
    padding-left: var(--side-margin) !important;
  }
  .xl-up-pr-fluid-child > * {
    padding-right: var(--side-margin) !important;
  }
  .xl-up-pr-fluid-child-not-last > *:not(:last-child) {
    padding-right: var(--side-margin) !important;
  }
  .xl-up-px-fluid-child > * {
    padding-inline: var(--side-margin) !important;
  }
  .xl-up-px-fluid-child-not-last > *:not(:last-child) {
    padding-inline: var(--side-margin) !important;
  }
}
/*
|
| RATIOS
|----------------
|
*/
/*
|
| BACKGROUND COLORS
|----------------
|
*/
.bg-black {
  background-color: #000;
}

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

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

.bg-grey {
  background-color: #999;
}

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

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

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

/*
|
| TEXT ALIGNS
|----------------
|
*/
/*
|
| FONT FAMILIES
|----------------
|
*/
/*
|
| FONT SIZES
|----------------
|
*/
/*
|
| FONT WEIGHTS
|----------------
|
*/
/*
|
| LINE HEIGHTS
|----------------
|
*/
/*
|
| LETTER SPACING
|----------------
|
*/
/*
|
| TITLES
|----------------
|
*/
/*
|
| COLORS
|----------------
|
*/
:root {
  --header-height: 112px;
  --side-margin: clamp(20px, 3.5vw, 70px);
}

/*
|--------------------
|    FONTS IMPORTS
|--------------------
|
| 100 - Extra Light or Ultra Light
| 200 - Light or Thin
| 300 - Book or Demi
| 400 - Normal or Regular
| 500 - Medium
| 600 - Semibold, Demibold
| 700 - Bold
| 800 - Black, Extra Bold or Heavy
| 900 - Extra Black, Fat, Poster or Ultra Black
|
*/
@font-face {
  font-family: "graphik";
  src: url(../fonts/Graphik-Light.eot);
  src: url(../fonts/Graphik-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/Graphik-Light.woff2) format("woff2"), url(../fonts/Graphik-Light.woff) format("woff"), url(../fonts/Graphik-Light.ttf) format("truetype");
  font-weight: 200;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "graphik";
  src: url(../fonts/Graphik-Regular.eot);
  src: url(../fonts/Graphik-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Graphik-Regular.woff2) format("woff2"), url(../fonts/Graphik-Regular.woff) format("woff"), url(../fonts/Graphik-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "graphik";
  src: url(../fonts/Graphik-Medium.eot);
  src: url(../fonts/Graphik-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/Graphik-Medium.woff2) format("woff2"), url(../fonts/Graphik-Medium.woff) format("woff"), url(../fonts/Graphik-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "graphik";
  src: url(../fonts/Graphik-Bold.eot);
  src: url(../fonts/Graphik-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/Graphik-Bold.woff2) format("woff2"), url(../fonts/Graphik-Bold.woff) format("woff"), url(../fonts/Graphik-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "canela";
  src: url(../fonts/Canela-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Canela-Regular.otf) format("opentype"), url(../fonts/Canela-Regular.woff) format("woff"), url(../fonts/Canela-Regular.ttf) format("truetype"), url(../img/Canela-Regular.svg#Canela-Regular) format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "canela";
  src: url(../fonts/Canela-Thin.eot?#iefix) format("embedded-opentype"), url(../fonts/Canela-Thin.otf) format("opentype"), url(../fonts/Canela-Thin.woff) format("woff"), url(../fonts/Canela-Thin.ttf) format("truetype"), url(../img/Canela-Thin.svg#Canela-Thin) format("svg");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "canela";
  src: url(../fonts/Canela-Light.eot?#iefix) format("embedded-opentype"), url(../fonts/Canela-Light.otf) format("opentype"), url(../fonts/Canela-Light.woff) format("woff"), url(../fonts/Canela-Light.ttf) format("truetype"), url(../img/Canela-Light.svg#Canela-Light) format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "SuisseIntl-Black";
  src: url(../fonts/SuisseIntl-Black.eot);
  src: url(../fonts/SuisseIntl-Black.eot?#iefix) format("embedded-opentype"), url(../fonts/SuisseIntl-Black.woff2) format("woff2"), url(../fonts/SuisseIntl-Black.woff) format("woff"), url(../fonts/SuisseIntl-Black.ttf) format("truetype"), url(../img/SuisseIntl-Black.svg#SuisseIntl-Black) format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntl-Bold";
  src: url(../fonts/SuisseIntl-Bold.eot);
  src: url(../fonts/SuisseIntl-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/SuisseIntl-Bold.woff2) format("woff2"), url(../fonts/SuisseIntl-Bold.woff) format("woff"), url(../fonts/SuisseIntl-Bold.ttf) format("truetype"), url(../img/SuisseIntl-Bold.svg#SuisseIntl-Bold) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Intl";
  src: url(../fonts/SuisseIntl-Medium.eot);
  src: url(../fonts/SuisseIntl-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/SuisseIntl-Medium.woff2) format("woff2"), url(../fonts/SuisseIntl-Medium.woff) format("woff"), url(../fonts/SuisseIntl-Medium.ttf) format("truetype"), url(../img/SuisseIntl-Medium.svg#SuisseIntl-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SuisseIntl-Regular";
  src: url(../fonts/SuisseIntl-Regular.eot);
  src: url(../fonts/SuisseIntl-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/SuisseIntl-Regular.woff2) format("woff2"), url(../fonts/SuisseIntl-Regular.woff) format("woff"), url(../fonts/SuisseIntl-Regular.ttf) format("truetype"), url(../img/SuisseIntl-Regular.svg#SuisseIntl-Regular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*
|--------------------------
|      DEFAULT & RESET
|--------------------------
*/
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "SuisseIntl-Regular";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.04em;
}

h1 {
  font-family: "SuisseIntl-Black";
}

h2 {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 300;
  font-size: 48px;
  line-height: 71px;
  color: #000;
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 34px;
    line-height: 46px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "SuisseIntl-Regular";
}

button:focus,
input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

button {
  -webkit-appearance: none;
  padding: 0;
  background-color: transparent;
  border: none;
}

img {
  max-width: inherit;
}

.z1 {
  z-index: 1;
}

@media (max-width: 991.98px) {
  .m-a-mob {
    margin: auto;
  }
}

.o-h {
  overflow: hidden;
}

.clearfix {
  clear: both;
  width: 100%;
}

.sstitle {
  font-family: "Calibri";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  opacity: 0.6;
  text-transform: uppercase;
}

.bg-light-blue {
  background-color: #f2f4ff;
}

a,
img,
button {
  display: inline-block;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none !important;
}

.w100 {
  width: 100%;
}

.z2 {
  z-index: 2;
}

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

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

.p-0 {
  padding-left: 0;
  padding-right: 0;
}

.m-a {
  margin-left: auto;
  margin-right: auto;
}

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

.fl-r {
  float: right;
}
@media (max-width: 991.98px) {
  .fl-r {
    float: left;
  }
}

.txt-r {
  text-align: right;
}
@media (max-width: 991.98px) {
  .txt-r {
    text-align: left;
  }
}

.bg-blue {
  background-color: #182989;
}

.bg-blue2 {
  background-color: #0038b0;
}
.bg-blue2 h2:before {
  content: "";
  background-color: #fff;
}

.fil-ariane {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 24px;
  color: #001c60;
}
.fil-ariane a {
  float: left;
  color: #667290;
}
.fil-ariane a:hover {
  color: #001c60;
}
.fil-ariane b {
  float: left;
  display: contents;
}
.fil-ariane span {
  float: left;
  height: 10px;
  width: 7px;
  display: block;
  background-position: center;
  background-size: cover;
  margin: 6px 10px;
  background-image: url(../img/sep.svg);
}

.disp-desk {
  display: block !important;
}
@media (max-width: 991.98px) {
  .disp-desk {
    display: none !important;
  }
}

.disp-mob {
  display: none !important;
}
@media (max-width: 991.98px) {
  .disp-mob {
    display: block !important;
  }
}

.disp-desk-lg {
  display: block !important;
}
@media (max-width: 1199.98px) {
  .disp-desk-lg {
    display: none !important;
  }
}

.disp-mob-lg {
  display: none !important;
}
@media (max-width: 1199.98px) {
  .disp-mob-lg {
    display: block !important;
  }
}

.disp-mob-sm {
  display: none !important;
}
@media (max-width: 767.98px) {
  .disp-mob-sm {
    display: block !important;
  }
}

.card-img-container {
  overflow: hidden;
  display: block;
}
.card-img-container:hover .card-img {
  transform: scale(1.05);
}
.card-img-container .card-img {
  transition: all ease 0.6s;
}

.c-b {
  clear: both;
}

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

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

.rel {
  position: relative;
}

.btn {
  font-family: "SuisseIntl-Bold";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  color: #182989;
  border-radius: 2px;
  border: 1px solid #182989;
  background-color: transparent;
  display: inline-block;
  position: relative;
  padding: 17px 35px 16px 35px;
  transition: all ease 0.3s;
}
.btn:hover {
  color: #ffffff;
  border: 1px solid #182989;
  background-color: #182989;
  transition: all ease 0.3s;
}
.btn.btn-alt {
  color: #182989;
  border: 1px solid #fff;
  background-color: #fff;
}
.btn.btn-alt:hover {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  transition: all ease 0.3s;
}
.btn.btn-cadre {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.btn.btn-cadre:hover {
  color: #182989;
  border: 1px solid #fff;
  background-color: #fff;
  transition: all ease 0.3s;
}

.videoyt {
  width: 100%;
}
.videoyt .plyr .item-poster {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  opacity: 1;
  transition: all ease 0.4s;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.videoyt .plyr__control--overlaid {
  background-image: linear-gradient(90deg, #182989 0%, #182989 49%, #182989 100%);
  padding: 30px;
}
@media (max-width: 991.98px) {
  .videoyt .plyr__control--overlaid {
    padding: 20px;
  }
}
.videoyt .plyr__control--overlaid svg {
  color: #182989 !important;
  height: 18px;
  width: 18px;
}
.videoyt .plyr__control--overlaid:hover {
  background-image: linear-gradient(90deg, #182989 0%, #182989 49%, #182989 100%);
}
.videoyt .plyr__control--overlaid:hover svg {
  color: white !important;
}
.videoyt .plyr--video {
  background: transparent !important;
}
.videoyt .plyr__video-wrapper {
  background: transparent !important;
}
.videoyt .plyr--full-ui input[type=range] {
  color: #182989;
}
.videoyt .plyr__video-embed iframe {
  top: -50%;
  height: 200%;
  width: 101%;
}
.videoyt .plyr__poster {
  background-size: cover;
}
.videoyt .plyr__control--overlaid {
  background: white;
}
.videoyt .plyr--video .plyr__control.plyr__tab-focus,
.videoyt .plyr--video .plyr__control:hover,
.videoyt .plyr--video .plyr__control[aria-expanded=true] {
  background: #182989;
}
.videoyt .plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(24, 41, 137, 0.5);
}
.videoyt .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #182989;
}

.title-page {
  font-family: "SuisseIntl-Regular";
  font-size: 32px;
  line-height: 32px;
  text-transform: uppercase;
  position: relative;
  margin-left: 20px;
  hyphens: auto;
}
@media (max-width: 767.98px) {
  .title-page {
    text-align: center;
    margin-left: 0;
  }
}
.title-page:before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #cf3120;
  position: absolute;
  display: block;
  left: -20px;
}
@media (max-width: 767.98px) {
  .title-page:before {
    left: 0px;
    right: 0px;
    margin: auto;
    width: 90px;
    height: 3px;
    top: initial;
    bottom: -10px;
  }
}
.title-page strong,
.title-page b {
  font-family: "SuisseIntl-Bold";
  font-size: 56px;
  line-height: 56px;
  text-transform: uppercase;
  color: #182989;
  margin-top: 10px;
  display: block;
}
@media (max-width: 767.98px) {
  .title-page strong,
  .title-page b {
    font-size: 36px;
    line-height: 36px;
  }
}
@media (max-width: 479.98px) {
  .title-page strong,
  .title-page b {
    font-size: 26px;
    line-height: 28px;
  }
}

.title-page-center {
  font-family: "SuisseIntl-Regular";
  font-size: 44px;
  line-height: 90px;
  text-transform: uppercase;
  position: relative;
  hyphens: auto;
  text-align: center;
  overflow: hidden;
  display: inline-block;
}
.title-page-center:before {
  content: "";
  width: 44px;
  height: 3px;
  background-color: #cf3120;
  position: absolute;
  display: inline-block;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
}
.title-page-center strong,
.title-page-center b {
  font-family: "SuisseIntl-Bold";
  text-transform: uppercase;
  color: #182989;
  margin-top: 10px;
}

.block-progressbar {
  background: #37425e;
  height: 1px;
  width: 429px;
  left: 0;
  position: relative;
  margin: auto;
}
@media (max-width: 991.98px) {
  .block-progressbar {
    width: 270px;
  }
}
.block-progressbar .progressbar {
  height: 3px;
  top: -1px;
  left: 0;
  border-radius: 10px;
  position: absolute;
  background-color: #cf3120;
  transition: all ease 1s;
}

.block-swiper-buttons {
  height: 40px;
  width: 110px;
  position: absolute;
  right: 0;
  top: -19px;
}
@media (max-width: 991.98px) {
  .block-swiper-buttons {
    margin: auto;
    position: relative;
    top: 0;
  }
}
.block-swiper-buttons .swiper-buttons {
  top: initial;
  left: 0;
  position: absolute;
  bottom: 0px;
  z-index: 1;
  height: 40px;
  width: 110px;
}
@media (max-width: 991.98px) {
  .block-swiper-buttons .swiper-buttons {
    top: -60px;
    right: 0;
    margin: auto;
    display: block;
    bottom: initial;
  }
}
.block-swiper-buttons .swiper-buttons .button-next,
.block-swiper-buttons .swiper-buttons .button-prev {
  height: 40px;
  width: 40px;
  float: left;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 50%;
  transition: all ease 0.3s;
  z-index: 1;
  margin: 0px;
}
.block-swiper-buttons .swiper-buttons .button-next:before,
.block-swiper-buttons .swiper-buttons .button-prev:before {
  content: "";
  background-image: url(../img/arrow-right.svg);
  background-size: cover;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .block-swiper-buttons .swiper-buttons .button-next:before,
  .block-swiper-buttons .swiper-buttons .button-prev:before {
    top: 28px;
  }
}
.block-swiper-buttons .swiper-buttons .button-next.swiper-button-disabled:before,
.block-swiper-buttons .swiper-buttons .button-prev.swiper-button-disabled:before {
  opacity: 0.4;
}
.block-swiper-buttons .swiper-buttons .button-next {
  position: absolute;
  right: 0;
  left: initial;
}
.block-swiper-buttons .swiper-buttons .button-next:before {
  content: "";
  transform: rotate(0deg);
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@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 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

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

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

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

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

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

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

/* 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-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.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-cube-shadow {
  transform-style: preserve-3d;
}
.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));
}

/* 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-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.page-loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  display: none;
}
.page-loader.active {
  display: flex;
}
.page-loader .item-content {
  width: 100%;
  color: #141414;
  text-align: center;
}
.page-loader .item-content img {
  max-width: 300px;
}
.page-loader .item-loadbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  margin: auto;
}
.page-loader .item-loadbar .item-loadbar-inner {
  width: 100%;
  height: 100%;
  border-radius: 1px;
  background-color: #141414;
  animation: loadbar 1.2s cubic-bezier(0.92, 0, 0.09, 1);
  transform-origin: left top;
}

@keyframes loadbar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(0.7);
  }
}
[data-splittext] {
  opacity: 0;
}
[data-splittext].split-ready {
  opacity: 1;
}

[data-kira-item=splitline] .item-line {
  overflow: hidden;
}

[data-kira-item^=fadeIn] {
  opacity: 0;
}

[data-kira-item^="fadeInLeft.stagger"],
[data-kira-item^="fadeInUp.stagger"] {
  opacity: 1;
}
[data-kira-item^="fadeInLeft.stagger"] [data-stagger-item],
[data-kira-item^="fadeInUp.stagger"] [data-stagger-item] {
  opacity: 0;
}

body.menu-active {
  overflow: hidden;
}
body.menu-active .item-burger > span {
  background: #a8acc3 !important;
  transition: all ease 0.4s;
}

/*
|
| Header
|---------
*/
#header {
  top: 0;
  width: 100%;
  z-index: 10;
  display: block;
  position: fixed;
  transition: top 0.6s;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  background: white;
}
#header .header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-container .item-logo img {
  height: 75px;
}
#header .header-container .item-nav {
  display: none;
}
#header .header-container .item-nav .item-menu {
  display: flex;
}
#header .header-container .item-nav .item-menu li {
  font-family: "SuisseIntl-Bold";
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}
#header .header-container .item-nav .item-menu li:after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 28px;
  transition: all ease 0.5s;
  background-color: #182989;
}
#header .header-container .item-nav .item-menu li:hover:after, #header .header-container .item-nav .item-menu li.current-menu-item:after {
  width: 100%;
  transition: all ease 0.5s;
}
#header .header-container .item-nav .item-menu li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1399.98px) {
  #header .header-container .item-nav .item-menu li:not(:last-child) {
    margin: 0 7px;
  }
}
#header .header-container .item-nav .item-menu li.acces-site-desk {
  cursor: pointer;
}
#header .header-container .item-nav .item-menu li .item-link {
  color: #182989;
  padding: 33px 0;
}
@media (max-width: 1399.98px) {
  #header .header-container .item-nav .item-menu li .item-link {
    font-size: 11px;
    line-height: 28px;
  }
}
@media (min-width: 1200px) {
  #header .header-container .item-nav {
    display: flex;
    align-items: center;
  }
  #header .header-container .item-nav .item-menu {
    margin-right: 0;
  }
}
@media (max-width: 1199.98px) {
  #header .header-container .item-nav .item-menu {
    margin-right: 25px;
  }
}
@media (max-width: 1399.98px) {
  #header .btn {
    padding: 17px 12px 16px 12px;
  }
}
@media (max-width: 1199.98px) {
  #header .btn {
    position: absolute;
    right: 45px;
    top: 16px;
  }
}
@media (max-width: 479.98px) {
  #header .btn {
    padding: 17px 5px 16px 5px;
  }
}
@media (max-width: 360px) {
  #header .btn {
    display: none;
  }
}
#header .btn-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
#header .btn-menu > .item-burger {
  display: block;
  width: 25px;
  transition: all ease 0.8s !important;
}
#header .btn-menu > .item-burger > span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #182989;
  border-radius: 2px;
}
#header .btn-menu > .item-burger > span:nth-child(2) {
  margin: 6px 0;
}
@media (min-width: 1200px) {
  #header .btn-menu {
    display: none;
  }
}

.sm-menu {
  border-radius: 0px;
  border: 0px;
  top: 93px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  padding: 15px;
  background: white;
  z-index: 9;
  display: none;
}
.sm-menu .block-ss-menu {
  padding-top: 30px;
  padding-bottom: 30px;
}
.sm-menu .block-ss-menu .intro .title-page strong {
  font-size: 44px;
}
.sm-menu .block-ss-menu .intro .text {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
  text-transform: initial;
}
.sm-menu .block-ss-menu .content .link .bg {
  width: 100%;
  height: 248px;
  display: block;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sm-menu .block-ss-menu .content .link .bg:after {
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}
.sm-menu .block-ss-menu .content .link .title {
  font-family: "SuisseIntl-Bold";
  font-size: 13px;
  line-height: 16px;
  display: flex;
  align-items: flex-end;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .sm-menu .block-ss-menu .content .link .title {
    font-size: 12px;
    left: 10px;
    right: 10px;
  }
}
.sm-menu .block-ss-menu .content .link .text {
  display: block;
}

/*
|
| Menu
|-------
*/
#mobile-menu {
  display: flex;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  padding: var(--header-height) var(--side-margin);
  align-items: center;
  background-color: #fff;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}
#mobile-menu ul {
  margin: auto;
}
#mobile-menu ul li:not(:last-child) {
  margin-bottom: 5px;
}
#mobile-menu ul li a {
  text-transform: uppercase;
  font-size: 26px;
  line-height: initial;
  font-weight: 500;
  color: #182989;
  padding: 6px 0;
}
#mobile-menu ul li .nav-drop {
  margin: 0 10px 10px;
}
#mobile-menu ul li .nav-drop li a {
  font-size: 18px;
}

.offset-menu {
  padding-top: 124px;
}

/*
|--------------------
|      FOOTER
|--------------------
*/
#footer {
  background: #0038b0;
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
  z-index: 5;
  position: relative;
}
@media (max-width: 991.98px) {
  #footer .footer-col-rs {
    text-align: center;
  }
}
#footer .footer-col-rs .item-logo img {
  width: 160px;
}
@media (max-width: 991.98px) {
  #footer .footer-col-rs .rs {
    margin: auto;
    display: table;
  }
}
#footer .footer-col-rs .rs li {
  float: left;
  margin-right: 10px;
}
#footer .footer-col-rs .rs li a {
  height: 27px;
  width: 27px;
  border: 1px solid white;
  border-radius: 50%;
  transition: all ease 0.4s;
}
#footer .footer-col-rs .rs li a span {
  margin: auto;
  display: flex;
}
#footer .footer-col-rs .rs li a span img {
  max-height: 20px;
  max-width: 20px;
}
#footer .footer-col-rs .rs li a:hover {
  opacity: 0.6;
  transition: all ease 0.4s;
}
@media (max-width: 767.98px) {
  #footer .footer-col-1,
  #footer .footer-col-2 {
    text-align: center;
  }
}
#footer .footer-col-1 h2,
#footer .footer-col-2 h2 {
  font-family: "SuisseIntl-Bold";
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
}
#footer .footer-col-1 a,
#footer .footer-col-2 a {
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 24px;
  color: #ffffff;
  padding-bottom: 10px;
}
@media (max-width: 1199.98px) {
  #footer .footer-col-1 a,
  #footer .footer-col-2 a {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 991.98px) {
  #footer .footer-col-3 {
    text-align: center;
    display: table;
  }
}
#footer .footer-col-ml {
  display: block;
  text-align: center;
  background-color: #0035a8;
}
#footer .footer-col-ml li {
  font-family: "SuisseIntl-Regular";
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  display: inline-block;
}
#footer .footer-col-ml li a,
#footer .footer-col-ml li button {
  font-family: "SuisseIntl-Regular";
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  border: none;
}
#footer .footer-col-ml li a:hover,
#footer .footer-col-ml li button:hover {
  border: none;
  color: #ffffff;
  background: none;
}

/*
|--------------------
|      CONTENT
|--------------------
*/
/*
|
| Banner
|---------
*/
.banner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-block: var(--header-height);
  background-color: #000;
}

/*
|
| Custom card
|
| Use in news archive page
|--------------
*/
.custom-card .custom-card-link {
  color: #182989;
  display: block;
  border: 2px solid #f1f1f1;
  position: relative;
}
.custom-card .custom-card-link .bg-image {
  width: 100%;
  height: 241px;
  display: block;
  background-size: cover;
  background-position: center;
}
.custom-card .custom-card-link .details {
  margin: 30px;
  min-height: 200px;
  margin: 30px;
  display: block;
  position: relative;
}
@media (max-width: 1399.98px) {
  .custom-card .custom-card-link .details {
    min-height: initial;
  }
}
@media (max-width: 767.98px) {
  .custom-card .custom-card-link .details {
    margin: 15px;
  }
}
.custom-card .custom-card-link .details .title {
  font-family: "SuisseIntl-Regular";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #37425e;
  display: block;
}
@media (max-width: 1399.98px) {
  .custom-card .custom-card-link .details .title {
    font-size: 17px;
    line-height: 23px;
  }
}
.custom-card .custom-card-link .details .block-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 1399.98px) {
  .custom-card .custom-card-link .details .block-bottom {
    position: initial;
  }
}
.custom-card .custom-card-link .details .block-bottom .date {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #37425e;
  float: left;
}
.custom-card .custom-card-link .details .block-bottom .more {
  font-family: "SuisseIntl-Bold";
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  display: block;
  float: left;
  margin-left: 20px;
}
.custom-card .custom-card-link .details .block-bottom .more:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  float: right;
  margin: 0 5px 0 4px;
  transition: all ease 0.3s;
  transform: rotate(180deg);
  background-image: url(../img/arrow-b.svg);
}
.custom-card .custom-card-link:hover {
  box-shadow: 0 0 6px #ebebeb;
  transition: all ease 0.4s;
}
.custom-card .custom-card-link:hover .card-img {
  transform: scale(1.05);
}
.custom-card .custom-card-link:hover .more:before {
  margin: 0 0 0 8px !important;
}

/*
|
| Pagination
|---------------
*/
.pagination-container li {
  display: inline-block;
}
.pagination-container li a {
  transition: all 0.3s ease-out;
  padding: 0 8px;
}
.pagination-container li a:hover {
  color: #999;
}
.pagination-container li .current {
  padding: 0 8px;
  font-weight: 800;
  color: #999;
}

.page-offset {
  padding-top: 160px;
}

/*
|
| CMS
|------
*/
.cms p,
.cms ul,
.cms ol,
.cms h1,
.cms h2,
.cms h3,
.cms h4,
.cms h5,
.cms h6 {
  font-family: "SuisseIntl-Regular";
}
.cms p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 15px;
}
.cms img {
  display: block;
  width: 100%;
  height: auto;
}
.cms ul,
.cms ol {
  padding: 15px;
}
.cms ul li:not(:first-child),
.cms ol li:not(:first-child) {
  margin-top: 0.25em;
}
.cms ul li {
  list-style: disc;
  margin-bottom: 15px;
}
.cms ul li ul li {
  list-style: circle;
}
.cms ol {
  list-style-type: none;
  counter-reset: ordered;
}
.cms ol li {
  margin-left: 15px;
  margin-bottom: 15px;
}
.cms ol li::before {
  content: counter(ordered);
  border: 2px solid #182989;
  border-radius: 50%;
  color: #fff;
  counter-increment: ordered;
  display: inline-block;
  font-weight: 100;
  margin-left: -29px;
  margin-top: -3px;
  width: 25px;
  height: 25px;
  position: absolute;
  background: #182989;
  text-align: center;
}
.cms a:not([class]) {
  text-decoration: underline;
}
.cms hr {
  height: 1px;
  width: 100%;
  display: block;
  margin: 50px 0 40px 0;
  background: #eaecf0;
  border: none;
}

/*
|--------------------
|     PAGE HOME
|--------------------
*/
.home #header {
  box-shadow: none;
  background-color: #2238b0;
  transition: all ease 0.3s;
}
.home #header .item-link {
  color: white !important;
}
.home #header .btn {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
}
.home #header .btn:hover {
  color: #182989;
  border: 1px solid #fff;
  background-color: #fff;
  transition: all ease 0.3s;
}
.home #header.top {
  background: transparent;
  transition: all ease 0.3s;
}
.home #header .item-menu li:hover:after,
.home #header .item-menu li.current-menu-item:after {
  content: "";
  background-color: white;
}
.home .item-burger > span {
  background-color: white !important;
  transition: all ease 0.8s !important;
}
.home #block-banner-home {
  background-color: #f8f9ff;
  height: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
@media (max-width: 991.98px) {
  .home #block-banner-home {
    min-height: initial;
  }
}
.home #block-banner-home:after {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0.5;
  position: absolute;
  background-color: black;
}
.home #block-banner-home .title-h1 {
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  width: fit-content;
  position: absolute;
}
.home #block-banner-home .title-h1 .details h1 {
  font-family: "SuisseIntl-Bold";
  font-size: 56px;
  line-height: 63px;
  text-align: center;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: white;
}
@media (max-width: 767.98px) {
  .home #block-banner-home .title-h1 .details h1 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 479.98px) {
  .home #block-banner-home .title-h1 .details h1 {
    font-size: 26px;
    line-height: 28px;
  }
}
.home #block-banner-home video {
  width: 100%;
  aspect-ratio: 16/9;
}
.home #block-chiffres {
  margin-top: -90px;
}
.home #block-chiffres .container {
  z-index: 1;
  padding: 70px 15px;
  background: #ffffff;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.03);
}

.vignette {
  position: fixed;
  height: 113px;
  width: 113px;
  z-index: 5;
  bottom: 140px;
  right: 40px;
  transition: all ease 0.4s;
}
@media (max-width: 767.98px) {
  .vignette {
    height: 80px;
    width: 80px;
    right: 10px;
    background-size: cover;
  }
}
.vignette.bottom {
  bottom: 40px;
  transition: all ease 0.4s;
}

#page-flexible {
  padding-top: 109px;
  position: relative;
}
#page-flexible #block-intro-flexible {
  width: 100%;
}
#page-flexible #block-intro-flexible .bg {
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  #page-flexible #block-intro-flexible .bg {
    height: 300px;
  }
}
#page-flexible .block-intro {
  height: 700px;
  top: 110px;
  left: 0;
  right: 0;
  position: absolute;
}
@media (max-width: 1199.98px) {
  #page-flexible .block-intro {
    position: relative;
    height: initial;
    top: initial;
    left: 0;
    right: 0;
  }
}
#page-flexible .block-intro .block-fil-ariane {
  position: absolute;
  top: 50px;
}
@media (max-width: 1199.98px) {
  #page-flexible .block-intro .block-fil-ariane {
    top: 0px;
    position: relative;
  }
}
#page-flexible .block-intro .bg {
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 300px;
}
#page-flexible .block-intro .intro {
  height: 700px;
}
@media (max-width: 1199.98px) {
  #page-flexible .block-intro .intro {
    height: initial;
  }
}
#page-flexible #block_file {
  color: white;
  background-color: #0038b0;
}
#page-flexible #block_file h2 {
  color: white;
}
#page-flexible #block_file h2 b,
#page-flexible #block_file h2 strong {
  color: white;
}
#page-flexible #block-chiffres {
  background-color: #0038b0;
}
#page-flexible #block-chiffres h2 {
  color: white;
}
#page-flexible #block-chiffres h2 b,
#page-flexible #block-chiffres h2 strong {
  color: white;
}
#page-flexible #block-chiffres h2:before {
  content: "";
  background-color: white;
}
#page-flexible #block-chiffres .item h2 {
  color: white;
}
#page-flexible #block-chiffres .item .value .chiffre {
  color: white;
}
#page-flexible #block-chiffres .item .value .unite {
  color: white;
}
#page-flexible #block-chiffres .item .description {
  color: white;
}

#block-services {
  color: white;
  min-height: 900px;
  position: relative;
}
#block-services h2 {
  color: white;
}
#block-services h2 b,
#block-services h2 strong {
  color: white;
}
#block-services .text {
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
#block-services .elem-list {
  font-family: "SuisseIntl-Regular";
  font-size: 24px;
  line-height: 23px;
  color: #ffffff;
}
#block-services .elem-list .title {
  display: block;
  transition: all ease 0.4s;
}
#block-services .elem-list a {
  font-family: "SuisseIntl-Regular";
  font-size: 24px;
  line-height: 26px;
  color: #ffffff;
  display: flex;
  vertical-align: middle;
  align-items: center;
  width: 100%;
  padding: 28px 36px 28px 0;
}
@media (max-width: 1199.98px) {
  #block-services .elem-list a {
    padding: 28px 0;
    display: block;
  }
}
#block-services .elem-list a:before {
  content: "";
  height: 21px;
  width: 32px;
  display: block;
  right: 0;
  position: absolute;
  transition: all ease 0.4s;
  background-image: url(../img/arr-w.svg);
}
#block-services .elem-list a:after {
  content: "";
  height: 1px;
  width: 100%;
  opacity: 0.2;
  left: 0;
  bottom: 0;
  position: absolute;
  border: 1px solid #f2f4ff;
}
@media (max-width: 1199.98px) {
  #block-services .elem-list a .bg {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 1199.98px) {
  #block-services .elem-list a .title {
    margin-right: 27px;
    hyphens: auto;
  }
}
@media (min-width: 992px) {
  #block-services .elem-list:hover .title {
    padding-left: 30px;
    transition: all ease 0.4s;
  }
  #block-services .elem-list:hover a:before {
    content: "";
    margin-right: 30px;
    transition: all ease 0.4s;
  }
}
#block-services .block-list {
  display: flex !important;
  align-items: center;
  vertical-align: middle;
}
@media (max-width: 1199.98px) {
  #block-services .block-list {
    display: none !important;
  }
}
#block-services .block-list .block-img-list {
  width: 100%;
}
#block-services .block-list .block-img-list .img-list {
  width: 100%;
  height: 583px;
  background-size: cover;
  background-position: center;
}

#block-question {
  background-color: #f2f4ff;
}
#block-question h2 {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 44px;
  line-height: 56px;
  text-transform: uppercase;
  color: #182989;
}

#block-chiffres {
  overflow: hidden;
}
#block-chiffres .item {
  margin: auto;
  display: grid;
}
@media (max-width: 767.98px) {
  #block-chiffres .item {
    width: 100%;
  }
}
#block-chiffres .item:after {
  content: "";
  opacity: 0.3000000119;
  background: #fff;
  height: 100%;
  width: 1px;
  position: absolute;
  right: -76px;
}
@media (max-width: 1399.98px) {
  #block-chiffres .item:after {
    right: -14px;
  }
}
@media (max-width: 1199.98px) {
  #block-chiffres .item:after {
    content: none;
  }
}
#block-chiffres .item:last-child:after {
  content: none;
}
#block-chiffres .item h2 {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 44px;
  line-height: 56px;
  text-transform: uppercase;
  color: #182989;
}
@media (max-width: 767.98px) {
  #block-chiffres .item h2 {
    font-size: 80px;
    line-height: 80px;
  }
}
#block-chiffres .item .value {
  margin: auto;
  display: grid;
}
#block-chiffres .item .value .chiffre {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 90px;
  text-align: center;
  color: #182989;
}
@media (max-width: 767.98px) {
  #block-chiffres .item .value .chiffre {
    font-size: 50px;
    line-height: 50px;
  }
}
#block-chiffres .item .value .unite {
  font-size: 40px;
  line-height: 50px;
  color: #182989;
}
#block-chiffres .item .description {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #182989;
  width: 300px;
}
@media (max-width: 767.98px) {
  #block-chiffres .item .description {
    width: initial;
  }
}

#block-intro-home .hblock {
  min-height: 750px;
  position: relative;
}
#block-intro-home .text {
  font-family: "SuisseIntl-Regular";
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 767.98px) {
  #block-intro-home .text {
    font-size: 20px;
    line-height: 28px;
  }
}
#block-intro-home .image-1 {
  width: 608px;
  height: 803px;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1399.98px) {
  #block-intro-home .image-1 {
    width: 488px;
    height: 623px;
  }
}
@media (max-width: 1199.98px) {
  #block-intro-home .image-1 {
    width: 100%;
    height: 270px;
    top: 40px;
    position: relative;
    transform: inherit !important;
  }
}
#block-intro-home .image-2 {
  width: 288px;
  height: 364px;
  position: absolute;
  right: 60px;
  bottom: 20px;
  z-index: 4;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1199.98px) {
  #block-intro-home .image-2 {
    width: 100%;
    height: 270px;
    position: relative;
    right: inherit;
    transform: inherit !important;
    margin: 40px 0;
  }
}

#block-imagetext-home .details {
  display: flex !important;
  align-items: center;
  vertical-align: middle;
}
@media (max-width: 1199.98px) {
  #block-imagetext-home .details {
    display: block !important;
    align-items: initial;
    vertical-align: initial;
    text-align: center;
  }
}
#block-imagetext-home h2 {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #182989;
}
#block-imagetext-home .rel {
  height: 600px;
}
#block-imagetext-home .text {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
}
#block-imagetext-home .image-0 {
  width: 451px;
  height: 564px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1399.98px) {
  #block-imagetext-home .image-0 {
    width: 348px;
    height: 573px;
  }
}
@media (max-width: 1199.98px) {
  #block-imagetext-home .image-0 {
    display: none;
  }
}
#block-imagetext-home .image-2 {
  width: 288px;
  height: 200px;
  position: absolute;
  right: 60px;
  bottom: 70px;
  z-index: 4;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1199.98px) {
  #block-imagetext-home .image-2 {
    display: none;
  }
}
#block-imagetext-home .label {
  width: 209px;
  height: 196px;
  position: absolute;
  left: 60px;
  top: 100px;
  z-index: 4;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1199.98px) {
  #block-imagetext-home .label {
    display: none;
  }
}
#block-imagetext-home .img-label-mob {
  width: 209px;
  height: 196px;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-size: cover;
  background-position: center;
}
#block-imagetext-home .img-mob {
  width: 100%;
  height: 300px;
  margin: 30px 0;
  background-size: cover;
  background-position: center;
}

#block-partenaires {
  margin-top: -30px;
}
#block-partenaires .partenaires {
  z-index: 1;
  padding: 70px 15px;
  background: #ffffff;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.03);
}
#block-partenaires .partenaires .item {
  margin: auto;
  display: grid;
}
#block-partenaires .partenaires .item img {
  max-width: 90px;
  max-height: 90px;
}
#block-partenaires .partenaires .item .value {
  margin: auto;
  display: grid;
}
#block-partenaires .partenaires .item .value .chiffre {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 70px;
  line-height: 90px;
  text-align: center;
  color: #182989;
}
#block-partenaires .partenaires .item .value .unite {
  font-size: 40px;
  line-height: 50px;
  color: #182989;
}
#block-partenaires .partenaires .item .description {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #182989;
}

#block-nous-rejoindre {
  color: white;
  overflow: hidden;
}
#block-nous-rejoindre .rejoindre h2 {
  color: white;
}
#block-nous-rejoindre .rejoindre h2 strong {
  color: white;
}
#block-nous-rejoindre .rejoindre .text {
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  #block-nous-rejoindre .rejoindre .text {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  #block-nous-rejoindre .rejoindre .btn {
    margin: auto;
    display: table;
  }
}
#block-nous-rejoindre .swiper-slide .item {
  height: 539px;
  width: 100%;
}
@media (max-width: 767.98px) {
  #block-nous-rejoindre .swiper-slide .item {
    height: 340px;
  }
}
#block-nous-rejoindre .swiper-slide .item div {
  width: 100%;
}
#block-nous-rejoindre .swiper-slide .item div .bg {
  height: 539px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  #block-nous-rejoindre .swiper-slide .item div .bg {
    height: 340px;
  }
}
#block-nous-rejoindre .swiper-slide.even .item .bg {
  height: 364px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  #block-nous-rejoindre .swiper-slide.even .item .bg {
    height: 200px;
  }
}

#block-slider-actus {
  color: white;
  overflow: hidden;
}
#block-slider-actus .block-btn {
  position: absolute;
  right: 0;
  bottom: 20px;
}
@media (max-width: 1199.98px) {
  #block-slider-actus .block-btn {
    right: initial;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  #block-slider-actus .block-btn {
    margin: auto;
  }
}
#block-slider-actus .swiper-slide .item {
  height: 539px;
  width: 100%;
}
@media (max-width: 767.98px) {
  #block-slider-actus .swiper-slide .item {
    height: 340px;
  }
}
#block-slider-actus .swiper-slide .item div {
  width: 100%;
}
#block-slider-actus .swiper-slide .item div .bg {
  height: 539px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  #block-slider-actus .swiper-slide .item div .bg {
    height: 340px;
  }
}
#block-slider-actus .swiper-slide.odd .item .bg {
  height: 364px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.98px) {
  #block-slider-actus .swiper-slide.odd .item .bg {
    height: 200px;
  }
}

#block-video h2 {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 44px;
  line-height: 56px;
  text-transform: uppercase;
  color: #182989;
}
@media (max-width: 767.98px) {
  #block-video h2 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media (max-width: 479.98px) {
  #block-video h2 {
    font-size: 24px;
    line-height: 28px;
  }
}

.legend {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #37425e;
}

#block-rs {
  border-top: 1px solid #eaecf0;
}
#block-rs .rs {
  margin: auto;
  display: table;
}
#block-rs .rs li {
  list-style: none;
  float: left;
  margin: 10px;
}
#block-rs .rs li a {
  height: 27px;
  width: 27px;
  transition: all ease 0.4s;
}
#block-rs .rs li a:hover {
  transition: all ease 0.4s;
  opacity: 0.6;
}
#block-rs .rs li a img {
  min-height: 20px;
}

#block_quote {
  position: relative;
}
#block_quote::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  background: #cf3120;
}
#block_quote .content {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #001c60;
}
#block_quote .author {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
}
#block_quote.no-author .cms {
  padding-left: 0 !important;
}
#block_quote.no-author::before {
  content: none;
}

#block_file {
  width: 100%;
}
#block_file h2 {
  font-family: "SuisseIntl-Black";
  font-size: 44px;
  line-height: 56px;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
#block_file h2 span {
  display: block;
  font-family: "SuisseIntl-Regular";
}
#block_file .file-text {
  font-size: 16px;
  line-height: 24px;
  font-family: "SuisseIntl-Regular";
}
#block_file .file {
  display: block;
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  background: #ffffff;
  width: 580px;
  height: 70px;
  position: relative;
}
@media (max-width: 1199.98px) {
  #block_file .file {
    width: 500px;
  }
}
@media (max-width: 991.98px) {
  #block_file .file {
    width: 90%;
  }
}
#block_file .file .block-file {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #37425e;
  text-decoration: none;
}
#block_file .file .block-file .img {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: inline-block;
  background-color: #182989;
  margin-left: 12px;
}
#block_file .file .block-file .img img {
  margin-top: 9px;
  max-height: 20px;
}
#block_file .file .block-file .detail {
  margin-left: 15px;
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #37425e;
}
#block_file .file .block-file .detail .other {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #667291;
  margin: 0 10px;
}
#block_file .file .block-file .download {
  margin-right: 15px;
  position: absolute;
  right: 0;
}
#block_file .file .block-file .download img {
  height: 24px;
  width: 24px;
}

#block-temoignages {
  overflow: hidden;
  background: #f2f4ff;
}
#block-temoignages h2 {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
}
@media (max-width: 991.98px) {
  #block-temoignages h2 {
    display: block;
  }
}
#block-temoignages h2 b,
#block-temoignages h2 strong {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  margin-top: 0;
  margin: 0 10px;
  display: contents;
}
@media (max-width: 991.98px) {
  #block-temoignages .block-swiper-buttons {
    top: 40px;
  }
}
#block-temoignages .custom-card-temoignage .text {
  font-family: "SuisseIntl-Regular";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #001c60;
}
#block-temoignages .custom-card-temoignage .name {
  font-family: "SuisseIntl-Regular";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.01em;
  color: #001c60;
}
#block-temoignages .custom-card-temoignage .role {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
}

#block-engagements {
  overflow: hidden;
}
#block-engagements h2 {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 991.98px) {
  #block-engagements h2 {
    display: block;
  }
}
#block-engagements h2 b,
#block-engagements h2 strong {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  margin-top: 0;
  margin: 0 10px;
}
@media (max-width: 991.98px) {
  #block-engagements .block-swiper-buttons {
    top: 40px;
  }
}
#block-engagements .custom-card-engagements {
  height: 560px;
}
@media (max-width: 1199.98px) {
  #block-engagements .custom-card-engagements {
    height: initial;
  }
}
#block-engagements .custom-card-engagements .title {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #001c60;
}
#block-engagements .custom-card-engagements .text {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
}
#block-engagements .swiper-engagements2 {
  width: 100%;
  overflow: hidden;
}
#block-engagements .swiper-engagements2 .bg {
  height: 560px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  #block-engagements .swiper-engagements2 .bg {
    height: 260px;
  }
}

#block-emplois {
  overflow: hidden;
}
#block-emplois h2 {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 991.98px) {
  #block-emplois h2 {
    display: block;
  }
}
#block-emplois h2 b,
#block-emplois h2 strong {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  margin: 0 10px;
}
@media (max-width: 991.98px) {
  #block-emplois .block-swiper-buttons {
    top: 40px;
  }
}
#block-emplois .custom-card-emploi {
  min-height: 350px;
  background: #ffffff;
  box-shadow: 0px 20px 25px -5px rgba(93, 96, 117, 0.1);
  border-radius: 8px;
}
#block-emplois .custom-card-emploi .head-card .types .item {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 31px;
  color: #182989;
  display: inline-block;
  background: #f2f4ff;
  border-radius: 16px;
  padding: 4px 12px;
}
#block-emplois .custom-card-emploi .head-card .date {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #37425e;
  margin-bottom: 4px;
}
#block-emplois .custom-card-emploi .details-card .title {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #182989;
  display: block;
}
#block-emplois .custom-card-emploi .details-card .text {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
  display: block;
}
#block-emplois .custom-card-emploi .details-card .link {
  font-family: "SuisseIntl-Bold";
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  color: #182989;
  display: block;
  position: absolute;
  left: 30px;
  bottom: 30px;
}
#block-emplois .custom-card-emploi .details-card .link:before {
  content: "";
  width: 16px;
  height: 15px;
  display: block;
  float: right;
  padding: 0 2px 0 0;
  transition: all ease 0.3s;
  transform: rotate(180deg);
  transition: all ease 0.3s;
  background-repeat: no-repeat;
  background-image: url(../img/arrow-b.svg);
}
#block-emplois .custom-card-emploi:hover .link:before {
  padding: 0 6px 0 0;
  transition: all ease 0.3s;
}

#block-image-text-blue {
  color: white;
}
#block-image-text-blue .bg {
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  #block-image-text-blue .bg {
    height: 300px;
  }
}
#block-image-text-blue .block-text {
  right: 0;
  position: absolute;
}
@media (max-width: 1199.98px) {
  #block-image-text-blue .block-text {
    right: initial;
    position: relative;
  }
}
#block-image-text-blue .block-text h2 {
  color: white;
  position: relative;
  margin-left: 25px;
}
#block-image-text-blue .block-text h2 strong {
  color: white;
}
#block-image-text-blue .block-text h2:before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: white;
  position: absolute;
  display: block;
  left: -20px;
}
#block-image-text-blue .block-text .text,
#block-image-text-blue .block-text p {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}
#block-image-text-blue .invers .block-text {
  left: 0;
  right: initial;
}

#block-text-image {
  color: #fff;
  overflow: hidden;
}
#block-text-image .bg {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  #block-text-image .bg {
    height: 300px;
  }
}
#block-text-image h2 {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #041b9f;
  position: relative;
  margin-left: 25px;
}
#block-text-image h2 strong {
  color: white;
}
#block-text-image h2:before {
  content: "";
  width: 3px;
  height: 100%;
  background-color: #cf3120;
  position: absolute;
  display: block;
  left: -20px;
}
#block-text-image .text {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
}

#block-history {
  overflow: hidden;
}
#block-history .block-history-items {
  width: 100%;
  overflow: hidden;
}
#block-history .block-history-items .elem {
  position: relative;
  height: 30px;
  width: 33.3333333333%;
  display: flex;
  vertical-align: middle;
  align-items: center;
  float: left;
}
#block-history .block-history-items .elem:first-child {
  margin-left: 0;
}
#block-history .block-history-items .elem .dote {
  content: "";
  height: 22px;
  width: 22px;
  display: block;
  top: 4px;
  position: absolute;
  z-index: 2;
  background-size: cover;
  background-image: url(../img/slide-point.png);
}
#block-history .block-history-items .elem .progressbar-history {
  background-color: rgb(229, 233, 235);
  height: 2px;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-left: 15px;
}
#block-history .block-history-items .elem .progressbar-history .progressbar-history-item {
  height: 100%;
  width: 100%;
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  display: block;
  background-color: #e04542;
  z-index: 1;
}
@media (max-width: 767.98px) {
  #block-history .block-history-items .item {
    padding: 0 15px;
    text-align: center;
  }
}
#block-history .block-history-items .item .year {
  font-family: "SuisseIntl-Regular";
  font-size: 56px;
  line-height: 56px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #182989;
}
#block-history .block-history-items .item .bg {
  width: 100%;
  max-width: 300px;
  height: 140px;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767.98px) {
  #block-history .block-history-items .item .bg {
    margin: 20px auto;
  }
}
#block-history .block-history-items .item .desc {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
}

#block-diaporama {
  position: relative;
  overflow: hidden;
}
#block-diaporama h2 {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 44px;
  line-height: 56px;
  text-transform: uppercase;
  color: #182989;
}
#block-diaporama .bg {
  width: 100%;
  height: 570px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  #block-diaporama .bg {
    height: 340px;
  }
}
#block-diaporama .desc {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
  width: 600px;
  margin: auto;
}
@media (max-width: 1199.98px) {
  #block-diaporama .desc {
    width: 100%;
  }
}
#block-diaporama .block-swiper-buttons {
  height: 40px;
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  top: 265px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  #block-diaporama .block-swiper-buttons {
    width: 200px;
    margin: auto;
    left: inherit;
    right: inherit;
    position: relative;
    top: 0;
  }
}
#block-diaporama .block-btn .swiper-buttons {
  top: initial;
  left: 0;
  position: absolute;
  bottom: 0px;
  z-index: 6;
  height: 40px;
  width: 100%;
  display: block;
}
#block-diaporama .block-btn .swiper-buttons .button-next,
#block-diaporama .block-btn .swiper-buttons .button-prev {
  height: 84px;
  width: 84px;
  float: left;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 50%;
  transition: all ease 0.3s;
  z-index: 1;
  margin: 0px;
  border: 2px solid #182989;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 1399.98px) {
  #block-diaporama .block-btn .swiper-buttons .button-next,
  #block-diaporama .block-btn .swiper-buttons .button-prev {
    height: 74px;
    width: 74px;
  }
}
#block-diaporama .block-btn .swiper-buttons .button-next:before,
#block-diaporama .block-btn .swiper-buttons .button-prev:before {
  content: "";
  background-size: cover;
  position: relative;
  height: 22px;
  width: 22px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
#block-diaporama .block-btn .swiper-buttons .button-next {
  float: right;
}
#block-diaporama .block-btn .swiper-buttons .swiper-button-disabled {
  opacity: 0.4;
}
#block-diaporama .block-btn .swiper-buttons .swiper-button-disabled:before {
  content: "";
  opacity: 1;
}

#block-expertises h2 {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
}
#block-expertises h2 b,
#block-expertises h2 strong {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  margin: 0 10px;
  display: contents;
}
#block-expertises .bg {
  width: 100%;
  height: 570px;
  padding: 15px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1199.98px) {
  #block-expertises .bg {
    height: 240px;
  }
}
#block-expertises .title {
  font-family: "SuisseIntl-Regular";
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 28px;
  text-transform: uppercase;
  color: #ffffff;
  width: 50%;
  display: block;
  position: absolute;
  bottom: 10px;
}

#block-list-questions {
  background: #f2f4ff;
}
#block-list-questions h2 {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
}
#block-list-questions h2 b,
#block-list-questions h2 strong {
  color: #182989;
  font-size: 44px;
  line-height: 56px;
  margin: 0 10px;
  display: contents;
}
#block-list-questions ul {
  border: 1px solid #f2f4ff;
  box-shadow: 10px 20px 25px -5px rgba(93, 96, 117, 0.1);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}
#block-list-questions ul li {
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 28px;
  color: #001c60;
  background: white;
  padding: 12px 60px 12px 30px;
  list-style: none;
  list-style: none;
  border-bottom: 1px solid #f3eeee;
  min-height: 70px;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
  display: flex !important;
  align-items: center;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #block-list-questions ul li {
    padding: 20px;
    display: block !important;
  }
}
@media (max-width: 991.98px) {
  #block-list-questions ul li span {
    font-family: "SuisseIntl-bold";
    margin-bottom: 10px;
    display: block;
  }
}
#block-list-questions ul li:last-child {
  border: none;
}
@media (min-width: 992px) {
  #block-list-questions ul li:after {
    content: "";
    height: 15px;
    width: 8px;
    display: block;
    right: 25px;
    position: absolute;
    background-size: cover;
    background-image: url(../img/arr-r.svg);
  }
  #block-list-questions ul li.active, #block-list-questions ul li:hover {
    color: #fff;
    background: #0038b0;
    transition: all ease 0.3s;
  }
  #block-list-questions ul li.active:after, #block-list-questions ul li:hover:after {
    content: "";
    background-image: url(../img/arr-r2.svg);
  }
}
#block-list-questions .blocktext {
  background: #ffffff;
  box-shadow: 0px 20px 25px -5px rgba(93, 96, 117, 0.1);
  border-radius: 8px;
  position: absolute;
  right: 0;
  z-index: 1;
  height: calc(100% + 60px);
  margin-top: -30px;
  display: flex !important;
  align-items: start;
  vertical-align: top;
}
@media (max-width: 991.98px) {
  #block-list-questions .blocktext {
    display: none !important;
  }
}
#block-list-questions .blocktext .content-text {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #37425e;
  width: 100%;
  padding: 55px 65px 55px 125px;
}

/*
|--------------------
|      NEWS
|--------------------
*/
#page-actualites-archive .block-filters {
  vertical-align: middle;
  align-items: center;
}
#page-actualites-archive .block-filters .desc {
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 28px;
  color: #37425e;
}
#page-actualites-archive .block-filters .filters {
  float: right;
}
@media (max-width: 1199.98px) {
  #page-actualites-archive .block-filters .filters {
    float: left;
  }
}
#page-actualites-archive .block-filters .filters li {
  display: inline-block;
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #182989;
  border: 1px solid #182989;
  border-radius: 8px;
  cursor: pointer;
  padding: 5px 14px;
  margin-right: 10px;
}
@media (max-width: 479.98px) {
  #page-actualites-archive .block-filters .filters li {
    width: 100%;
    text-align: center;
  }
}
#page-actualites-archive .block-filters .filters li:hover, #page-actualites-archive .block-filters .filters li.active {
  color: white;
  background-color: #182989;
}

.list-container.loading {
  position: relative;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0.3;
  transition: all ease 0.3s;
}
.list-container.loading::after {
  z-index: 3 !important;
  display: block;
  width: 3.5rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(50% - 1.75rem);
  left: calc(50% - 1.75rem);
  z-index: 10;
  background-image: url(../img/puff-black.svg);
  background-position: center;
  background-size: contain;
  content: "";
}

@media (min-width: 1200px) {
  #block-similar-actus .block-btn {
    text-align: right;
  }
}
#block-similar-actus .block-btn .btn:hover {
  color: white;
}

/*
|--------------------
|      NEWS
|--------------------
*/
.load-more-container {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-more-container .loader-container {
  display: none;
}

/*
|--------------------
|      SINGLE
|--------------------
*/
.back {
  font-family: "SuisseIntl-Bold";
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  color: #182989;
}
.back:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin: 0 0 0 5px;
  transition: all ease 0.3s;
  background-image: url(../img/arrow-b.svg);
}
.back:hover {
  opacity: 0.7;
  transition: all ease 0.3s;
}
.back:hover:before {
  margin: 0 5px 0 0;
  transition: all ease 0.3s;
}

h1 {
  font-family: "SuisseIntl-Black";
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  line-height: 38px;
  text-transform: uppercase;
  color: #182989;
}

h2 {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #001c60;
  margin-bottom: 15px;
}

.post-date {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #182989;
}

.intro {
  font-family: "SuisseIntl-Regular";
  font-size: 18px;
  line-height: 28px;
  color: #37425e;
}

.thumbnail {
  max-width: 100%;
}

#page-news-single p,
#page-news-single li,
#page-news-single .ol,
#page-news-single a {
  color: #37425e;
}

/*
|--------------------
|       Contact
|--------------------
*/
#page-contact,
#page-form {
  height: 100vh;
  padding-top: 140px;
}
#page-contact .title-page,
#page-form .title-page {
  font-family: "SuisseIntl-Bold";
  font-size: 50px;
  line-height: 50px;
}
@media (max-width: 767.98px) {
  #page-contact .title-page,
  #page-form .title-page {
    font-size: 32px;
    line-height: 30px;
  }
}
#page-contact .text-contact,
#page-form .text-contact {
  font-family: "SuisseIntl-Regular";
  font-size: 17px;
  line-height: 28px;
  color: #37425e;
  width: 440px;
}
@media (max-width: 767.98px) {
  #page-contact .text-contact,
  #page-form .text-contact {
    margin: 25px auto;
    text-align: center;
    width: 100%;
  }
}
#page-contact .question-contact,
#page-form .question-contact {
  font-family: "Suisse Intl";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #001c60;
}
@media (max-width: 767.98px) {
  #page-contact .question-contact,
  #page-form .question-contact {
    text-align: center;
  }
}
#page-contact .step-contact,
#page-form .step-contact {
  font-family: "SuisseIntl-Regular";
  font-size: 74px;
  line-height: 74px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #182989;
}
@media (max-width: 767.98px) {
  #page-contact .step-contact,
  #page-form .step-contact {
    font-size: 50px;
    line-height: 50px;
  }
}
#page-contact .back-contact,
#page-form .back-contact {
  font-family: "SuisseIntl-Bold";
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  color: #182989;
}
#page-contact .back-contact:before,
#page-form .back-contact:before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  float: left;
  margin: 0 0 0 5px;
  transition: all ease 0.3s;
  background-image: url(../img/arrow-b.svg);
}
#page-contact .back-contact:hover,
#page-form .back-contact:hover {
  opacity: 0.7;
  transition: all ease 0.3s;
}
#page-contact .back-contact:hover:before,
#page-form .back-contact:hover:before {
  margin: 0 5px 0 0;
  transition: all ease 0.3s;
}
#page-contact .fil-ariane,
#page-form .fil-ariane {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 18px;
  color: #667291;
}
#page-contact .fil-ariane b,
#page-form .fil-ariane b {
  color: #001c60;
}
#page-contact .questions,
#page-form .questions {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  vertical-align: middle;
  align-items: center;
  display: grid;
  padding-top: 160px;
}
@media (max-width: 1199.98px) {
  #page-contact .questions,
  #page-form .questions {
    position: relative;
    padding-top: 0;
  }
}
#page-contact .questions .btn,
#page-form .questions .btn {
  border-radius: 8px;
  font-size: 16px;
  font-family: SuisseIntl-Regular;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}
@media (max-width: 767.98px) {
  #page-contact .questions .btn,
  #page-form .questions .btn {
    width: 100%;
  }
}
#page-contact .questions .dflex-questions,
#page-form .questions .dflex-questions {
  display: flex !important;
  align-items: center;
  vertical-align: middle;
}
@media (max-width: 1199.98px) {
  #page-contact .questions .dflex-questions,
  #page-form .questions .dflex-questions {
    display: block !important;
    width: 100% ÒÒ;
  }
}
#page-contact .bottom-contact,
#page-form .bottom-contact {
  position: absolute;
  bottom: 15px;
}
@media (max-width: 1199.98px) {
  #page-contact .bottom-contact,
  #page-form .bottom-contact {
    position: relative;
    bottom: initial;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  #page-contact .bottom-contact,
  #page-form .bottom-contact {
    text-align: center;
  }
}

#page-form .text-contact {
  width: 100%;
}
@media (max-width: 767.98px) {
  #page-form .text-contact {
    text-align: center;
  }
}
#page-form .detail-contact {
  height: calc(100vh - 150px);
}
@media (max-width: 1199.98px) {
  #page-form .detail-contact {
    height: initial;
  }
}
#page-form .bottom-contact {
  position: fixed;
}
@media (max-width: 1199.98px) {
  #page-form .bottom-contact {
    position: relative;
  }
}
#page-form .gform_heading {
  display: none;
}
@media (max-width: 767.98px) {
  #page-form .gform_footer {
    text-align: center;
    display: block;
  }
}
#page-form form {
  margin-bottom: 40px;
}
#page-form form .gfield {
  margin-bottom: 10px;
}
#page-form form label,
#page-form form legend {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #001c60;
}
#page-form form label a,
#page-form form legend a {
  color: #37425e;
  text-decoration: underline;
  font-weight: 700;
}
#page-form form input,
#page-form form select,
#page-form form textarea {
  color: #37425e;
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 22px;
  border-radius: 4px;
  padding: 15px 18px;
  border: 1px solid #667291;
}
#page-form form input[type=number] {
  text-align: center;
  padding: 15px 5px !important;
}
#page-form form .ginput_container_date input {
  width: 100%;
}
#page-form form .gfield_radio .gchoice {
  margin-bottom: 10px;
}
#page-form form .gfield_consent_description {
  border: none;
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px;
  max-height: initial;
  overflow-y: initial;
  padding: 0;
  width: 100%;
  color: #37425e;
}
#page-form form .gfield_consent_description a {
  color: #37425e;
  text-decoration: underline;
  font-weight: 700;
}
#page-form form .block-montant {
  position: relative;
}
#page-form form .gform_button {
  font-family: "SuisseIntl-Bold";
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  color: white;
  border-radius: 2px;
  border: 1px solid #182989;
  background-color: #182989;
  display: inline-block;
  position: relative;
  padding: 17px 35px 16px 35px;
  transition: all ease 0.3s;
}
#page-form form .gform_button:hover {
  color: #182989;
  background-color: transparent;
}
#page-form form .montant {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 767.98px) {
  #page-form form .montant {
    position: relative;
  }
}
#page-form form .montant .label-montant {
  font-family: "SuisseIntl-Regular";
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  color: #001c60;
}
@media (max-width: 767.98px) {
  #page-form form .montant .label-montant {
    text-align: left;
  }
}
#page-form form .montant .tarif {
  font-family: "SuisseIntl-Regular";
  font-size: 24px;
  line-height: 24px;
  text-align: right;
  color: #182989;
  padding: 20px 0 8px 0;
  word-break: break-all;
}
@media (max-width: 767.98px) {
  #page-form form .montant .tarif {
    text-align: left;
    padding: 10px 0 8px 0;
  }
}
#page-form form .montant .tarif #price,
#page-form form .montant .tarif .unity {
  font-family: "SuisseIntl-Bold";
  font-size: 32px;
  line-height: 28px;
}
#page-form form .montant .desc {
  font-family: "SuisseIntl-Regular";
  font-size: 12px;
  line-height: 22px;
  color: #37425e;
}
#page-form form .block-form-tel {
  position: relative;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
#page-form form .block-form-tel .form-tel {
  font-family: "SuisseIntl-Regular";
  font-size: 14px;
  line-height: 22px;
  text-align: right;
  color: #182989;
  position: absolute;
  margin-top: 110px;
}
@media (max-width: 640px) {
  #page-form form .block-form-tel .form-tel {
    margin-top: 0;
    position: relative;
  }
}
@media (max-width: 767.98px) {
  #page-form form .block-form-tel .form-tel {
    margin: auto;
  }
}
#page-form form .block-form-tel .form-tel a {
  color: #37425e;
  text-decoration: underline;
  font-weight: 700;
}

.productTotal {
  text-align: right;
}
.productTotal .ginput_total {
  border: none !important;
  text-align: right;
  font-family: "SuisseIntl-Bold" !important;
  font-size: 32px !important;
  line-height: 28px !important;
  padding: 0 !important;
}
.productTotal .gfield_description {
  color: #182989;
}

/*
|--------------------
|       404
|--------------------
*/
#page-404 {
  /*
  |
  | Section contact
  |------------------
  */
}
#page-404 .section-content {
  font-family: "SuisseIntl-Black";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #141414;
  color: #fff;
  text-align: center;
  background-position: center;
  background-size: cover;
}
#page-404 .section-content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.3;
}
#page-404 .section-content .container {
  z-index: 1;
}
#page-404 .section-content .container h1 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: white;
}
#page-404 .section-content .container .item-title a {
  color: white;
  text-decoration: underline;
}

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