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

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

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

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

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

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

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

/*
|
| 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: "Gilroy-Medium";
  src: url(../fonts/Gilroy-Medium.eot);
  src: url(../fonts/Gilroy-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-Medium.woff) format("woff"), url(../fonts/Gilroy-Medium.ttf) format("truetype"), url(../img/Gilroy-Medium.svg#Gilroy-Medium) format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Regular";
  src: url(../fonts/Gilroy-Regular.eot);
  src: url(../fonts/Gilroy-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-Regular.woff) format("woff"), url(../fonts/Gilroy-Regular.ttf) format("truetype"), url(../img/Gilroy-Regular.svg#Gilroy-Regular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-Bold";
  src: url(../fonts/Gilroy-Bold.eot);
  src: url(../fonts/Gilroy-Bold.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-Bold.woff) format("woff"), url(../fonts/Gilroy-Bold.ttf) format("truetype"), url(../img/Gilroy-Bold.svg#Gilroy-Bold) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy-SemiBold";
  src: url(../fonts/Gilroy-SemiBold.eot);
  src: url(../fonts/Gilroy-SemiBold.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-SemiBold.woff2) format("woff2"), url(../fonts/Gilroy-SemiBold.woff) format("woff"), url(../fonts/Gilroy-SemiBold.ttf) format("truetype"), url(../img/Gilroy-SemiBold.svg#Gilroy-SemiBold) format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/*
|--------------------------
|      DEFAULT & RESET
|--------------------------
*/
* {
  margin: 0;
  padding: 0;
}

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

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

body {
  font-family: "graphik", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.8;
  color: #141414;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: all ease 0.4;
}

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

h1,
.title-h1,
h2 {
  font-family: "Gilroy-Bold";
  font-size: 44px;
  line-height: 56px;
  color: #134c41;
}
@media (max-width: 1399.98px) {
  h1,
.title-h1,
h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 767.98px) {
  h1,
.title-h1,
h2 {
    font-size: 36px;
    line-height: 40px;
  }
}

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

a,
button,
select,
input,
textarea {
  color: inherit;
}
a:focus, a:focus-visible,
button:focus,
button:focus-visible,
select:focus,
select:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
  outline-offset: 0;
}

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

img {
  max-width: inherit;
}

a {
  text-decoration: none;
}

sup {
  top: -0.5em;
  font-size: 29px;
  font-weight: bold;
}

.rel {
  position: relative;
}

.z1 {
  z-index: 1;
}

.m-a {
  margin: auto;
  display: block;
}

.h100 {
  height: 100%;
}

img,
button {
  display: inline-block;
}

.ml-neg {
  margin-right: -20px;
}

.mr-neg {
  margin-left: -20px;
}

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

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

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

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

.td-0 {
  text-decoration: none;
}

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

@media (max-width: 767.98px) {
  .txt-c-sm {
    text-align: center !important;
  }
}
.txt-l {
  text-align: left !important;
}

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

.w100 {
  width: 100%;
}

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

.f-l {
  float: left;
}

.f-r {
  float: right;
}

.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-desk-flex-lg {
  display: flex !important;
}
@media (max-width: 1199.98px) {
  .disp-desk-flex-lg {
    display: none !important;
  }
}

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

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

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

.bg-green {
  background-color: #134c41;
}

.bg-yellow {
  background-color: #ea9010;
}

.c-white {
  color: #ffffff;
}

.btn {
  font-family: "Gilroy-SemiBold";
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  border-radius: 15px;
  border: 1px solid #134c41;
  background-color: #134c41;
  display: inline-block;
  position: relative;
  padding: 17px 35px 16px 35px;
  transition: all ease 0.3s;
}
.btn:hover {
  border: 1px solid #ea9010;
  background-color: #ea9010;
  transition: all ease 0.3s;
}
.btn.btn-alt {
  color: #134c41;
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.btn.btn-alt:hover {
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: transparent;
  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, #134c41 0%, #134c41 49%, #134c41 100%);
  padding: 30px;
}
@media (max-width: 991.98px) {
  .videoyt .plyr__control--overlaid {
    padding: 20px;
  }
}
.videoyt .plyr__control--overlaid svg {
  color: #134c41 !important;
  height: 18px;
  width: 18px;
}
.videoyt .plyr__control--overlaid:hover {
  background-image: linear-gradient(90deg, #134c41 0%, #134c41 49%, #134c41 100%);
}
.videoyt .plyr__control--overlaid:hover svg {
  color: white !important;
}
.videoyt .plyr--video {
  border-radius: 20px;
  background: transparent !important;
}
.videoyt .plyr__video-wrapper {
  background: transparent !important;
}
.videoyt .plyr--full-ui input[type=range] {
  color: #134c41;
}
.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: #134c41;
}
.videoyt .plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(19, 76, 65, 0.5);
}
.videoyt .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #134c41;
}

.swiper-buttons {
  float: right;
  width: 100px;
  height: 42px;
  position: absolute;
  right: 0;
  top: 21px;
}
@media (max-width: 1199.98px) {
  .swiper-buttons {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.swiper-buttons .button-prev,
.swiper-buttons .button-prev-exp {
  float: left;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.swiper-buttons .button-next,
.swiper-buttons .button-next-exp {
  float: right;
  transform: rotate(180deg);
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.25);
}
.swiper-buttons .button-prev,
.swiper-buttons .button-prev-exp,
.swiper-buttons .button-next,
.swiper-buttons .button-next-exp {
  height: 42px;
  width: 42px;
  cursor: pointer;
  display: block;
  transition: all ease 0.2s;
  border-radius: 50px;
  position: relative;
  background-color: #f7d39f;
}
.swiper-buttons .button-prev:before,
.swiper-buttons .button-prev-exp:before,
.swiper-buttons .button-next:before,
.swiper-buttons .button-next-exp:before {
  content: "";
  display: block;
  height: 17px;
  width: 20px;
  top: 13px;
  left: 11px;
  position: absolute;
  background-repeat: no-repeat;
  background-image: url(../img/arr-green.svg);
}
.swiper-buttons .button-prev.swiper-button-disabled,
.swiper-buttons .button-prev-exp.swiper-button-disabled,
.swiper-buttons .button-next.swiper-button-disabled,
.swiper-buttons .button-next-exp.swiper-button-disabled {
  opacity: 0.3;
}
.swiper-buttons .button-prev:hover,
.swiper-buttons .button-prev-exp:hover,
.swiper-buttons .button-next:hover,
.swiper-buttons .button-next-exp:hover {
  box-shadow: none;
  transition: all ease 0.2s;
  margin: 4px 0 0 0;
}

.iziModal {
  border-radius: 12px !important;
  max-width: 50% !important;
}
@media (max-width: 991.98px) {
  .iziModal {
    max-width: 50% !important;
  }
}
@media (max-width: 767.98px) {
  .iziModal {
    max-width: 90% !important;
  }
}
.iziModal .icon-close {
  transform: rotate(45deg);
  color: #134c41;
  line-height: 35px;
  font-size: 50px;
  position: fixed;
  top: 4px;
  right: 7px;
  z-index: 1;
  cursor: pointer;
}
.iziModal .icon-close:hover {
  opacity: 0.7;
}
.iziModal .icon-close:focus {
  display: none;
}
.iziModal .modal-body .details {
  padding: 15px;
}
.iziModal .iziModal-content {
  border-radius: 12px;
  padding: 30px !important;
}
.iziModal .iziModal-content h2 {
  font-family: "Gilroy-Bold";
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  color: #134c41;
  hyphens: auto;
}
@media (max-width: 1199.98px) {
  .iziModal .iziModal-content h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 991.98px) {
  .iziModal .iziModal-content h2 {
    font-size: 30px;
    line-height: 30px;
  }
}

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

/* 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: #ffffff;
  display: none;
}
.page-loader.active {
  display: flex;
}
.page-loader .item-content {
  width: 100%;
  color: #141414;
  text-align: center;
}
.page-loader .item-content img {
  max-height: 150px;
}
.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: #134c41;
  animation: loadbar 10.2s cubic-bezier(0.92, 0, 0.09, 1);
  transform-origin: left top;
}

@keyframes loadbar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(10.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 {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  color: #666680;
}
body.menu-active {
  overflow: hidden;
}

/*
|
| Header
|---------
*/
#header {
  top: 0;
  width: 100%;
  z-index: 9;
  padding: 15px 0;
  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: 85px;
}
#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: "Gilroy-Medium";
  font-size: 20px;
  line-height: 24px;
  color: #134c41;
  position: relative;
}
#header .header-container .item-nav .item-menu li:after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: all ease 0.5s;
  background-color: #ea9010;
}
#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;
}
#header .header-container .item-nav .item-menu li.acces-site-desk {
  cursor: pointer;
}
#header .header-container .item-nav .item-menu li.acces-site:before {
  content: "";
  width: 10px;
  height: 10px;
  float: right;
  margin: 7px 0px 0 6px;
  background-size: cover;
  background-image: url(../img/arr-alt.svg);
}
@media (min-width: 1200px) {
  #header .header-container .item-nav {
    display: flex;
    align-items: center;
  }
  #header .header-container .item-nav .item-menu {
    margin-right: 25px;
  }
}
@media (max-width: 1399.98px) {
  #header .header-container .item-nav .item-menu {
    margin-right: 275px;
  }
  #header .header-container .item-nav .item-menu li {
    font-size: 17px;
    line-height: 24px;
  }
  #header .header-container .item-nav .item-menu li:not(:last-child) {
    margin-right: 15px;
  }
}
#header .lang-container {
  float: right;
  color: #134c41;
  position: absolute;
  right: 190px;
  top: 36px;
  text-transform: uppercase;
  font-family: "Gilroy-SemiBold";
  font-size: 16px;
  line-height: 25px;
  cursor: pointer;
}
@media (max-width: 1399.98px) {
  #header .lang-container {
    right: 230px;
  }
}
#header .lang-container:after {
  content: "";
  height: 60px;
  width: 60px;
  display: block;
  position: absolute;
  top: -14px;
  left: -10px;
}
#header .lang-container span {
  cursor: pointer;
  position: relative;
}
#header .lang-container span:before {
  content: "";
  height: 8px;
  width: 14px;
  display: block;
  top: 3px;
  right: -19px;
  position: absolute;
  background-size: cover;
  transform: rotate(0);
  transition: all ease 0.3s;
  background-image: url(../img/arr_lang.svg);
}
#header .lang-container:hover span:before {
  content: "";
  transform: rotate(180deg);
  transition: all ease 0.3s;
}
#header .lang-container ul {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  text-transform: uppercase;
  transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}
#header .lang-container:hover ul {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}
@media (max-width: 1399.98px) {
  #header .btn {
    position: absolute;
    right: 45px;
    top: 20px;
  }
}
#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;
}
#header .btn-menu > .item-burger > span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #141414;
  border-radius: 2px;
}
#header .btn-menu > .item-burger > span:nth-child(2) {
  margin: 6px 0;
}
@media (min-width: 1200px) {
  #header .btn-menu {
    display: none;
  }
}

/*
|
| Menu
|-------
*/
#mobile-menu {
  display: flex;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  padding: var(--header-height) var(--side-margin);
  align-items: center;
  background-color: #ffffff;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
}
#mobile-menu ul {
  margin: auto;
  text-align: center;
}
#mobile-menu ul li:not(:last-child) {
  margin-bottom: 20px;
}
#mobile-menu ul li a {
  text-transform: uppercase;
  font-size: 1.875rem;
  font-weight: 500;
  color: #141414;
}
@media (max-width: 479.98px) {
  #mobile-menu ul li a {
    font-size: 26px;
  }
}

#block-nossites {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  bottom: 0;
  color: #134c41;
  background-color: white;
  z-index: 11;
  display: block;
  transition: all ease 1s;
  overflow: hidden;
}
#block-nossites.active {
  width: 50%;
  transition: all ease 1s;
  width: 60%;
}
@media (max-width: 1399.98px) {
  #block-nossites.active {
    width: 60%;
  }
}
@media (max-width: 1199.98px) {
  #block-nossites.active {
    width: 60%;
  }
}
@media (max-width: 991.98px) {
  #block-nossites.active {
    width: 100%;
  }
}
#block-nossites.active .zone-nossites {
  opacity: 1;
  transition: all ease 1s;
}
#block-nossites .zone-nossites {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: fit-content;
  display: flex;
  vertical-align: middle;
  margin: auto;
  padding: 15px 70px;
  opacity: 0;
  transition: all ease 0.6s;
}
@media (max-width: 991.98px) {
  #block-nossites .zone-nossites {
    padding: 15px;
  }
}
#block-nossites .zone-nossites .item-nossites .title-h2 {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #ea9010;
}
#block-nossites .zone-nossites .item-nossites .list-links {
  font-family: "Gilroy-Medium";
  font-size: 36px;
  line-height: 40px;
  color: #134c41;
}
@media (max-width: 991.98px) {
  #block-nossites .zone-nossites .item-nossites .list-links {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 479.98px) {
  #block-nossites .zone-nossites .item-nossites .list-links {
    font-size: 20px;
    line-height: 24px;
  }
}
#block-nossites .zone-nossites .item-nossites .list-links li {
  margin-bottom: 20px;
  white-space: nowrap;
  transition: all ease 0.3s;
}
#block-nossites .zone-nossites .item-nossites .list-links li:hover {
  opacity: 0.6;
  transition: all ease 0.3s;
}
#block-nossites .zone-nossites .item-nossites .email {
  font-family: "Gilroy-Medium";
  font-size: 22px;
  line-height: 26px;
  color: #134c41;
}
#block-nossites .zone-nossites .item-nossites:last-child {
  margin-bottom: 0px !important;
}
#block-nossites .closebtn {
  height: 32px;
  width: 32px;
  position: absolute;
  left: -16px;
  top: calc(50% - 16px);
  cursor: pointer;
  display: none;
  top: 40px;
  right: 80px;
  left: initial;
}
@media (max-width: 767.98px) {
  #block-nossites .closebtn {
    right: 40px;
  }
}
#block-nossites .closebtn:before {
  content: "";
  height: 65px;
  width: 65px;
  position: absolute;
  top: -17px;
  left: -15px;
  border-radius: 10%;
  background-color: #f5f6f7;
}
#block-nossites .closebtn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #134c41;
  border-radius: 2px;
  transform: translate(0px, 8px) rotate(45deg);
  position: absolute;
  top: 7px;
}
#block-nossites .closebtn .bar2 {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #134c41;
  border-radius: 2px;
  transform: translate(0px, -8px) rotate(-45deg);
  position: absolute;
  left: 0;
  top: 23px;
}

#slider-left:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 0;
  background: transparent;
  transition: all ease 0.6s;
}
#slider-left.active:before {
  content: "";
  right: 0;
  opacity: 0.6;
  z-index: 11;
  background: black;
  transition: all ease 0.6s;
}

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

.acces-site-mobile {
  display: none;
  cursor: pointer;
}
@media (max-width: 1399.98px) {
  .acces-site-mobile {
    font-family: "Gilroy-medium";
    left: -40px;
    top: 250px;
    position: fixed;
    transform: rotate(-90deg);
    color: white;
    background-color: #134c41;
    border: 1px solid white;
    display: block;
    z-index: 9;
    padding: 3px 14px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: all ease 0.3s;
    box-shadow: 0px 0px 10px rgba(6, 28, 61, 0.3);
  }
  .acces-site-mobile:hover {
    background-color: #ea9010;
    transition: all ease 0.3s;
  }
}

#footer {
  background-color: #134c41;
  color: white;
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  #footer {
    text-align: center;
  }
}
#footer h2 {
  font-family: "Gilroy-Bold";
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  #footer .btn {
    padding: 10px 10px 10px 10px;
    font-size: 17px;
  }
}
#footer .elem {
  position: relative;
}
#footer .elem:last-child:before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  left: -30px;
  background-color: white;
}
#footer .elem ul li {
  display: block;
}
#footer .elem ul li a {
  font-family: "Gilroy-Medium";
  font-size: 16px;
  line-height: 24px;
}
#footer .elem ul.link-groupe li a {
  text-decoration: underline;
}
#footer .copy {
  font-family: "Gilroy-Medium";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.9;
  border-top: 1px solid white;
}
#footer .copy .block-copy {
  display: flex;
}
@media (max-width: 767.98px) {
  #footer .copy .block-copy {
    display: grid;
    padding-bottom: 15px;
  }
}
#footer .copy .block-copy .date {
  float: left;
  padding: 20px 0 35px 0;
}
@media (max-width: 767.98px) {
  #footer .copy .block-copy .date {
    padding: 10px 0 0 0;
  }
}
#footer .copy .block-copy .createdby {
  float: right;
  padding: 20px 0 35px 0;
}
@media (max-width: 767.98px) {
  #footer .copy .block-copy .createdby {
    padding: 10px 0 0 0;
  }
}
#footer .copy .block-copy ul {
  margin: auto;
  display: table;
  text-align: center;
}
#footer .copy .block-copy ul li {
  font-family: "Gilroy-Medium";
  padding: 20px 0 35px 0;
  position: relative;
  display: inline-block;
}
@media (max-width: 767.98px) {
  #footer .copy .block-copy ul li {
    padding: 10px 0 0 0;
  }
}
#footer .copy .block-copy ul li:not(:last-child):after {
  content: "";
  height: 3px;
  width: 3px;
  background-color: white;
  border-radius: 50%;
  margin: 0 10px 1px 10px;
}

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

/*
|
| Custom card
|
| Use in news archive page
|--------------
*/
.custom-card {
  /*
  * Hover state
  */
}
.custom-card .custom-card-link {
  display: block;
}
.custom-card img {
  will-change: transform;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.custom-card:hover img {
  transform: scale(1.05);
}

/*
|
| 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: #ebf2fa;
}
.pagination-container li .current {
  padding: 0 8px;
  font-weight: 800;
  color: #ebf2fa;
}

/*
|
| Page offset
|--------------
*/
.page-offset {
  padding-top: var(--header-height);
}

/*
|
| CMS
|------
*/
.cms p:not(:first-child),
.cms ul:not(:first-child),
.cms ol:not(:first-child),
.cms h1:not(:first-child),
.cms h2:not(:first-child),
.cms h3:not(:first-child),
.cms h4:not(:first-child),
.cms h5:not(:first-child),
.cms h6:not(:first-child) {
  margin-top: 1em;
}
.cms h2 {
  font-family: "Gilroy-Bold";
  font-size: 38px;
  line-height: 50px;
  color: #134c41;
}
.cms img {
  display: block;
  width: 100%;
  height: auto;
}
.cms ul,
.cms ol {
  padding-left: 1.25em;
}
.cms ul li:not(:first-child),
.cms ol li:not(:first-child) {
  margin-top: 0.25em;
}
.cms ul li {
  list-style: disc;
}
.cms ul li ul li {
  list-style: circle;
}
.cms ol li {
  list-style: decimal;
}
.cms a:not([class]) {
  text-decoration: underline;
}
.cms blockquote {
  position: relative;
  width: 80%;
  margin-right: 0;
  margin-left: auto;
  padding: 130px 0;
  font-size: 30px;
  line-height: 1.5em;
  font-weight: 300;
}
@media (max-width: 991.98px) {
  .cms blockquote {
    margin: auto;
  }
}
.cms blockquote:before {
  content: "";
  position: absolute;
  background-image: url(../img/quote-left.svg);
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform: translateX(-60px) translateY(-30px);
}
.cms blockquote:after {
  content: "";
  position: absolute;
  right: 0;
  background-image: url(../img/quote-right.svg);
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transform: translateX(0) translateY(-50px);
}
@media (max-width: 991.98px) {
  .cms blockquote:after {
    transform: translateX(60px) translateY(-50px);
  }
}

#block-valeurs {
  position: relative;
}
#block-valeurs .values .item {
  text-align: center;
  color: #ffffff;
}
#block-valeurs .values .item .block-image {
  max-width: 88px;
  height: 70px;
  margin: auto;
}
#block-valeurs .values .item .block-image img {
  max-height: 70px;
  margin: auto;
}
#block-valeurs .values .item h3 {
  font-family: "Gilroy-Bold";
  font-size: 24px;
  line-height: 36px;
}
#block-valeurs .values .item .text {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
#block-valeurs .wavesvg {
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 8;
  background-color: #ffffff;
  transform: scaleY(-1);
}
#block-valeurs .wavesvg path {
  stroke: none;
  fill: #134c41;
}

#block-banner-image {
  background-color: #f8f9ff;
  position: relative;
  min-height: calc(100vh - 100px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
}
@media (max-width: 1199.98px) {
  #block-banner-image {
    height: 100%;
    padding: 164px 15px 30px 15px;
  }
}
#block-banner-image h1 {
  color: white;
}

#block-banner-white {
  background-color: #fff;
  position: relative;
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: white;
}
@media (max-width: 991.98px) {
  #block-banner-white {
    padding: 175px 0 50px 0;
    min-height: initial;
    height: initial;
  }
}
@media (max-width: 991.98px) {
  #block-banner-white h1 {
    margin-top: 20px;
  }
}
#block-banner-white .bg-img-l,
#block-banner-white .bg-img-r {
  height: 400px;
  width: 400px;
  border-radius: 60px;
  position: absolute;
  background-size: cover;
  background-position: center;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 5;
  transform: rotate(0deg);
}
@media (max-width: 991.98px) {
  #block-banner-white .bg-img-l,
#block-banner-white .bg-img-r {
    height: 300px;
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  #block-banner-white .bg-img-l,
#block-banner-white .bg-img-r {
    height: 270px;
    width: 270px;
  }
}
#block-banner-white .bg-img-l {
  /*
  left: -170px;
  transform: rotate(-12.69deg);*/
}
@media (max-width: 991.98px) {
  #block-banner-white .bg-img-l {
    transform: rotate(-28deg);
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
  }
}
#block-banner-white .bg-img-r {
  /*
  right: -170px;
  transform: rotate(12.6903deg);*/
}
@media (max-width: 991.98px) {
  #block-banner-white .bg-img-r {
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
  }
}
#block-banner-white .text {
  color: #666680;
}

.bar-vertical-white {
  position: absolute;
  left: 0;
  right: 0;
  margin: -60px auto 0 auto;
  height: 120px;
  width: 4px;
  display: block;
  z-index: 1;
  background-color: #ea9010;
}
@media (max-width: 991.98px) {
  .bar-vertical-white {
    display: none;
  }
}

.filter {
  opacity: 0.5;
  position: absolute;
  background-color: #000;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.block-image.fl-logo img {
  max-width: 330px;
}
@media (max-width: 767.98px) {
  .block-image.fl-logo img {
    max-width: 250px;
  }
}
.block-image.fl-image img {
  max-width: 100%;
  border-radius: 15px;
}
.block-image .bg {
  width: 100%;
  height: 700px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1399.98px) {
  .block-image .bg {
    height: 700px;
  }
}
@media (max-width: 1199.98px) {
  .block-image .bg {
    height: 500px;
  }
}
@media (max-width: 991.98px) {
  .block-image .bg {
    height: 400px;
  }
}
@media (max-width: 767.98px) {
  .block-image .bg {
    height: 300px;
  }
}

#block-cta-footer .block {
  min-height: 450px;
  background: #ffffff;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  border-radius: 24px;
  padding: 30px;
  transition: all ease 0.3s;
}
@media (max-width: 1399.98px) {
  #block-cta-footer .block {
    min-height: 500px;
  }
}
@media (max-width: 1199.98px) {
  #block-cta-footer .block {
    min-height: inherit;
  }
}
#block-cta-footer .block h3 {
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: initial;
  color: #134c41;
  min-height: 100px;
}
@media (max-width: 1399.98px) {
  #block-cta-footer .block h3 {
    min-height: 130px;
  }
}
@media (max-width: 1199.98px) {
  #block-cta-footer .block h3 {
    min-height: initial;
  }
}
@media (max-width: 991.98px) {
  #block-cta-footer .block h3 {
    font-size: 32px;
    line-height: 36px;
  }
}
#block-cta-footer .block .text {
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  min-height: 180px;
}
@media (max-width: 1199.98px) {
  #block-cta-footer .block .text {
    min-height: initial;
  }
}
#block-cta-footer .block .btn {
  left: 30px;
  bottom: 30px;
  position: absolute;
}
@media (max-width: 1199.98px) {
  #block-cta-footer .block .btn {
    position: relative;
    bottom: inherit;
    left: inherit;
  }
}
#block-cta-footer .block .btn:hover {
  color: #134c41;
  background: #ffffff;
}
#block-cta-footer .block:hover {
  background: #eea63f;
  transition: all ease 0.3s;
}

#block-text-media {
  overflow: hidden;
  min-height: 600px;
}
@media (min-width: 1200px) {
  #block-text-media {
    display: flex !important;
    vertical-align: middle;
    align-items: center;
  }
}
#block-text-media .block-media {
  position: absolute;
  width: 100%;
}
#block-text-media .block-media .gallery {
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
#block-text-media .block-media .gallery .bg {
  height: 600px;
  width: 100%;
  display: block;
  background-position: center;
  background-size: cover;
}
#block-text-media .block-media .gallery .control-right {
  left: initial !important;
  right: -40px;
}
#block-text-media.inverse .block-media {
  left: -30px;
}
#block-text-media .swiper-media {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}
#block-text-media .swiper-media .item {
  margin: 0;
}
#block-text-media .swiper-media .item .bg {
  width: 100%;
  height: 600px;
  display: block;
  background-position: center;
  background-size: cover;
}
@media (max-width: 991.98px) {
  #block-text-media .swiper-media .item .bg {
    height: 380px;
  }
}
#block-text-media .swiper-media .item .legend {
  position: absolute;
  bottom: -60px;
}
#block-text-media .swiper-media .slider__controls {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 12;
  transform: rotate(90deg);
}
@media (max-width: 991.98px) {
  #block-text-media .swiper-media .slider__controls {
    left: -20px;
  }
}
@media (max-width: 767.98px) {
  #block-text-media .swiper-media .slider__controls {
    left: -50px;
  }
}
#block-text-media .swiper-media .slider__controls .slider__pagination {
  text-align: center;
}
#block-text-media .swiper-media .slider__controls .slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #fff;
  opacity: 1;
  margin: 0 5px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  -o-transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  transition: opacity 0.5s, background-color 0.5s, width 0.5s;
  -webkit-transition-delay: 0.5s, 0.5s, 0s;
  -o-transition-delay: 0.5s, 0.5s, 0s;
  transition-delay: 0.5s, 0.5s, 0s;
  color: #000 !important;
  opacity: 1 !important;
}
#block-text-media .swiper-media .slider__controls .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
#block-text-media .swiper-media .slider__controls .slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ffffff;
  width: 100px;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
#block-text-media img {
  width: 100%;
}
@media (max-width: 1199.98px) {
  #block-text-media img {
    border-radius: 15px;
  }
}

.block-text-media-home {
  overflow: hidden;
  min-height: 480px;
}
@media (min-width: 1200px) {
  .block-text-media-home {
    display: flex !important;
    vertical-align: middle;
    align-items: center;
  }
}
.block-text-media-home h2 {
  font-family: "Gilroy-Bold";
  font-size: 24px;
  line-height: 32px;
  color: #000;
}
.block-text-media-home .block-media {
  position: absolute;
  width: 100%;
}
.block-text-media-home .block-media .bg {
  height: 400px;
  width: 100%;
  border-radius: 15px;
  display: block;
  background-position: center;
  background-size: cover;
}
.block-text-media-home.inverse .block-media .bg {
  border-radius: 18px;
}
.block-text-media-home img {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .block-text-media-home img {
    border-radius: 15px;
  }
}

#block-text-list {
  overflow: hidden;
  min-height: 600px;
}
@media (min-width: 1200px) {
  #block-text-list {
    display: flex !important;
    vertical-align: middle;
    align-items: center;
  }
}
#block-text-list .block-media {
  position: absolute;
  width: 100%;
}
#block-text-list .block-media .bg {
  height: 100%;
  width: 100%;
  border-radius: 15px 0 0 15px;
  display: block;
  background-position: center;
  background-size: cover;
}
#block-text-list.inverse .block-media {
  left: -30px;
}
#block-text-list.inverse .block-media .bg {
  border-radius: 0 15px 15px 0;
}
#block-text-list img {
  width: 100%;
}
@media (max-width: 1199.98px) {
  #block-text-list img {
    border-radius: 15px;
  }
}
#block-text-list .block-text li {
  position: relative;
  padding-bottom: 10px;
}
#block-text-list .block-text li:before {
  content: "";
  opacity: 0;
  background-color: #ea9010;
  height: 100%;
  width: 3px;
  display: block;
  left: -20px;
  position: absolute;
  border-radius: 50px;
  transition: all ease 0.3s;
}
#block-text-list .block-text li:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: -8px;
  left: 0;
  background-color: #c6cde8;
}
#block-text-list .block-text li .title {
  display: block;
  font-family: "Gilroy-Bold";
  font-size: 40px;
  line-height: 48px;
  color: #134c41;
}
#block-text-list .block-text li.active:before, #block-text-list .block-text li:hover:before {
  transition: all ease 0.3s;
  opacity: 1;
}

#block-image-list {
  overflow: hidden;
  min-height: 600px;
  color: white;
  background-color: #134c41;
}
@media (min-width: 1200px) {
  #block-image-list {
    display: flex !important;
    vertical-align: middle;
    align-items: center;
  }
}
#block-image-list .wavesvg {
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -20px;
  z-index: 8;
  background-color: #ffffff;
}
#block-image-list .wavesvg path {
  stroke: none;
  fill: #134c41;
}
#block-image-list h2,
#block-image-list h3 {
  color: white;
}
#block-image-list .block-img-list {
  display: contents;
}
#block-image-list .block-img-list .img-list {
  width: 100%;
  height: 596px;
  border-radius: 50px;
  display: block;
  background-position: center;
  background-size: cover;
}
#block-image-list .block-img-list .img-list.active {
  display: block;
  transition: all ease 0.3s;
}
#block-image-list .bg {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
}
#block-image-list .block-text .elem-list {
  cursor: pointer;
  position: relative;
}
#block-image-list .block-text .elem-list:not(:last-child) {
  padding-bottom: 10px;
}
#block-image-list .block-text .elem-list:before {
  content: "";
  opacity: 0;
  background-color: #ea9010;
  height: 100%;
  width: 3px;
  display: block;
  left: -20px;
  position: absolute;
  border-radius: 50px;
  transition: all ease 0.3s;
}
@media (max-width: 1199.98px) {
  #block-image-list .block-text .elem-list:before {
    display: none;
  }
}
#block-image-list .block-text .elem-list .title {
  display: block;
  font-family: "Gilroy-Bold";
  font-size: 40px;
  line-height: 48px;
  color: #ffffff;
}
#block-image-list .block-text .elem-list .text {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  opacity: 0.7;
}
#block-image-list .block-text .elem-list.active .title {
  color: #ea9010;
}
@media (max-width: 1399.98px) {
  #block-image-list .block-text .elem-list.active .title {
    color: white;
  }
}
#block-image-list .block-text .elem-list.active:before {
  opacity: 1;
  transition: all ease 0.3s;
}
#block-image-list .block-text .elem-list.hover:before {
  opacity: 1;
  transition: all ease 0.3s;
}

#block-chiffres .item {
  padding: 0 30px;
}
#block-chiffres .item h2 {
  font-family: "Gilroy-Bold";
  font-size: 95px;
  line-height: 110px;
  display: block;
  align-items: center;
  text-align: center;
  color: #ea9010;
}
@media (max-width: 767.98px) {
  #block-chiffres .item h2 {
    font-size: 80px;
    line-height: 80px;
  }
}
#block-chiffres .item .text {
  color: #134c41;
  font-family: "Gilroy-SemiBold";
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

#block-text-link-mea {
  background-color: #134c41;
  color: white;
}
@media (max-width: 991.98px) {
  #block-text-link-mea {
    min-height: initial;
  }
}
#block-text-link-mea .mh {
  min-height: 620px;
}
@media (max-width: 991.98px) {
  #block-text-link-mea .mh {
    min-height: initial;
  }
}
#block-text-link-mea h2 {
  color: white;
}
#block-text-link-mea .elem.odd {
  margin-top: 15px;
}
@media (max-width: 1199.98px) {
  #block-text-link-mea .elem.odd {
    margin-top: initial;
  }
}
#block-text-link-mea .elem.even {
  margin-top: -20px;
}
@media (max-width: 1199.98px) {
  #block-text-link-mea .elem.even {
    margin-top: initial;
  }
}
#block-text-link-mea .elem .item {
  min-height: 112px;
  background: #ffffff;
  border-radius: 12px;
  display: block;
  color: #134c41;
  padding: 12px;
  position: relative;
}
@media (max-width: 1399.98px) {
  #block-text-link-mea .elem .item {
    min-height: 142px;
  }
}
@media (max-width: 1199.98px) {
  #block-text-link-mea .elem .item {
    min-height: 112px;
  }
}
#block-text-link-mea .elem .item.link {
  cursor: pointer;
}
#block-text-link-mea .elem .item.link:before {
  content: "";
  width: 24px;
  height: 25px;
  position: absolute;
  bottom: 16px;
  right: 13px;
  transition: all ease 0.3s;
  background-image: url(../img/link.svg);
}
#block-text-link-mea .elem .item.link:hover {
  transition: all ease 0.3s;
  box-shadow: 3px 5px 21px rgb(41, 41, 41);
}
#block-text-link-mea .elem .item.link:hover:before {
  content: "";
  transition: all ease 0.3s;
  transform: rotate(90deg);
}
#block-text-link-mea .elem .item .block {
  display: block;
}
#block-text-link-mea .elem .item .block img {
  float: left;
  margin-right: 14px;
}
#block-text-link-mea .elem .item .block .detail {
  float: left;
  display: block;
}
#block-text-link-mea .elem .item .block .detail h3 {
  font-family: "Gilroy-SemiBold";
  font-size: 18px;
  line-height: 22px;
  hyphens: auto;
}
#block-text-link-mea .elem .item .block .detail .text {
  font-family: "Gilroy-Medium";
  font-size: 14px;
  line-height: 18px;
  align-items: center;
  color: #42526b;
  padding-right: 30px;
  display: block;
}

#block-text-image {
  background-color: #134c41;
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 620px;
  position: relative;
}
@media (max-width: 991.98px) {
  #block-text-image {
    min-height: 440px;
  }
}
#block-text-image:before {
  content: "";
  opacity: 0.65;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
}
#block-text-image .mh {
  min-height: 620px;
}
@media (max-width: 991.98px) {
  #block-text-image .mh {
    min-height: initial;
  }
}
#block-text-image h2 {
  color: white;
}
#block-text-image .wavesvg {
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: -1px;
  z-index: 1;
  fill: transparent;
}
#block-text-image .wavesvg path {
  stroke: none;
  fill: #fff;
}

#block-text-green {
  position: relative;
  padding: 100px 15px;
}
#block-text-green .elem {
  width: 100%;
  border-radius: 15px;
  background-color: #134c41;
  color: white;
}
#block-text-green .elem h2 {
  color: white;
  transition: all ease 0.3s;
}
#block-text-green .elem h2 span {
  transition: all ease 0.3s;
}
#block-text-green .elem .link {
  font-family: "Gilroy-SemiBold";
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  position: relative;
  transition: all ease 0.3s;
}
#block-text-green .elem .link::before {
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -8px;
  background-color: #fff;
  transition: all ease 0.3s;
}
#block-text-green .elem .link:hover::before {
  content: "";
  transition: all ease 0.3s;
  background-color: #ea9010;
}
#block-text-green .elem:hover h2 span {
  color: #ea9010;
  transition: all ease 0.3s;
}

#block-mea {
  position: relative;
}
#block-mea:before {
  content: "";
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  width: 100%;
}
#block-mea.backgroundblue {
  background: #ebf2fa;
}
#block-mea .item {
  background: #ffffff;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  border-radius: 15px;
}
#block-mea .item .bg {
  width: 100%;
  height: 312px;
  display: block;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#block-mea .item .detail {
  padding: 30px;
}
#block-mea .item .detail h3 {
  font-family: "Gilroy-Bold";
  font-size: 24px;
  line-height: 26px;
  color: #134c41;
}

#block-6-mea {
  position: relative;
  background-color: #134c41;
}
#block-6-mea:before {
  content: "";
  background-color: #f8f9ff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  width: 100%;
}
#block-6-mea h2 {
  color: white;
}
#block-6-mea .text {
  color: white;
}
#block-6-mea .item {
  background: #ffffff;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  border-radius: 15px;
}
#block-6-mea .item .bg {
  width: 100%;
  height: 312px;
  display: block;
  background-position: center;
  background-size: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
#block-6-mea .item .detail {
  padding: 30px;
}
#block-6-mea .item .detail h3 {
  font-family: "Gilroy-Bold";
  font-size: 24px;
  line-height: 26px;
  color: #134c41;
}
#block-6-mea .item .detail .text {
  color: #666680;
}
#block-6-mea .wavesvg {
  height: 100px;
  width: 100%;
  position: absolute;
  left: 0;
  top: -62px;
  z-index: 0;
  background-color: #ffffff;
  transform: scaleY(-1);
}
#block-6-mea .wavesvg path {
  stroke: none;
  fill: #134c41;
}

#block-society {
  overflow: hidden;
  position: relative;
}
#block-society .item {
  background: #ffffff;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  border-radius: 15px;
  height: 500px;
}
@media (max-width: 1399.98px) {
  #block-society .item {
    height: 590px;
  }
}
@media (max-width: 1199.98px) {
  #block-society .item {
    height: initial;
  }
}
#block-society .item .bg {
  width: calc(100% - 60px);
  height: 150px;
  display: block;
  margin: 30px;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
@media (max-width: 767.98px) {
  #block-society .item .bg {
    margin: 15px;
    width: calc(100% - 30px);
  }
}
#block-society .item .detail {
  padding: 0px 30px 30px 30px;
}
@media (max-width: 767.98px) {
  #block-society .item .detail {
    padding: 0px 15px 15px 15px;
  }
}
#block-society .item .detail h3 {
  font-family: "Gilroy-Bold";
  font-size: 24px;
  line-height: 26px;
  color: #134c41;
}
#block-society .item .detail .text {
  color: #666680;
}
#block-society .item .detail .btn {
  position: absolute;
  bottom: 30px;
}
@media (max-width: 1199.98px) {
  #block-society .item .detail .btn {
    position: initial;
    bottom: initial;
  }
}

#block-history {
  overflow: hidden;
  position: relative;
}
#block-history .block-progressbar {
  background: #d9e2e1;
  height: 5px;
  width: 100%;
  left: 0;
  position: relative;
  overflow: hidden;
}
#block-history .block-progressbar .progressbar {
  width: 6%;
  height: 5px;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #ea9010;
  transition: all ease 1s;
}
#block-history .elem-date-pagination .swiper-pagination-bullet {
  padding: 10px 22px;
  display: inline-block;
  border: 1px solid #000000;
  border-radius: 100px;
  margin: 0 10px 10px 10px;
  cursor: pointer;
  transition: all ease 0.2s;
  background: transparent;
  display: inline-table;
  opacity: 1;
}
#block-history .elem-date-pagination .swiper-pagination-bullet:hover, #block-history .elem-date-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #ea9010;
  border: 1px solid #ea9010;
  transition: all ease 0.2s;
}
#block-history .block-swiper-buttons {
  height: 48px;
}
@media (max-width: 1199.98px) {
  #block-history .block-swiper-buttons {
    margin: 15px auto;
    display: table;
  }
}
#block-history .block-swiper-buttons .swiper-buttons {
  float: left;
  position: relative;
  right: inherit;
  top: inherit;
  height: 50px;
}
@media (max-width: 1199.98px) {
  #block-history .block-swiper-buttons .swiper-buttons {
    margin: 20px 0;
  }
}
#block-history .swiper-pagination .swiper-pagination-progressbar-fill {
  color: red;
  background-color: red;
  display: list-item;
  height: 5px;
}
#block-history .swiper-slide-active h3 b {
  color: #ea9010;
}
#block-history .item {
  border-radius: 15px;
}
#block-history .item .bg {
  width: 100%;
  height: 310px;
  display: block;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}
#block-history .item .detail h3 {
  font-family: "Gilroy-Bold";
  font-size: 36px;
  line-height: 40px;
  color: #134c41;
}
#block-history .item .detail .text {
  color: #666680;
}

#block-exp-rea {
  overflow: hidden;
  position: relative;
}
#block-exp-rea ul.cat {
  margin-top: 30px;
  margin-bottom: 70px;
}
#block-exp-rea ul.cat li {
  display: initial;
}
#block-exp-rea ul.cat li a {
  font-family: "Gilroy-Medium";
  font-size: 16px;
  line-height: 25px;
  align-items: center;
  text-align: center;
  color: #252525;
  transition: all ease 0.2s;
  padding: 18px 25px;
  border: 2px solid #000000;
  border-radius: 15px;
  display: inline-block;
  cursor: pointer;
  margin: 10px 0;
}
#block-exp-rea ul.cat li a:hover, #block-exp-rea ul.cat li a.active {
  color: #ea9010;
  border: 2px solid #ea9010;
  transition: all ease 0.2s;
}
#block-exp-rea .swiper-exp-rea {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
#block-exp-rea .swiper-exp-rea .item {
  margin: 0;
  border-radius: 15px;
}
#block-exp-rea .swiper-exp-rea .item .bg {
  width: 100%;
  height: 640px;
  display: block;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  #block-exp-rea .swiper-exp-rea .item .bg {
    height: 380px;
  }
}
#block-exp-rea .swiper-exp-rea .item .legend {
  position: absolute;
  bottom: 0;
}
#block-exp-rea .swiper-exp-rea .swiper-buttons {
  position: relative;
  top: initial;
  background: white;
  z-index: 2;
  margin-top: -40px;
}
#block-exp-rea .swiper-exp-rea .swiper-buttons div.swiper-button-disabled {
  opacity: 1;
}

#block-temoignages {
  background-color: #134c41;
  overflow: hidden;
  position: relative;
  color: white;
}
#block-temoignages .swiper-temoignage {
  overflow: hidden;
}
#block-temoignages .swiper-temoignage .item {
  color: white;
}
#block-temoignages .swiper-temoignage .item .temoignage {
  font-family: "Gilroy-SemiBold";
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  #block-temoignages .swiper-temoignage .item .temoignage {
    font-size: 22px;
    line-height: 34px;
  }
}
#block-temoignages .swiper-temoignage .item .detail {
  padding: 30px;
  width: fit-content;
  margin: auto;
}
@media (max-width: 767.98px) {
  #block-temoignages .swiper-temoignage .item .detail {
    padding: 0px;
  }
}
#block-temoignages .swiper-temoignage .item .detail .block-img {
  width: 56px;
  height: 56px;
  background: #ea9010;
  border-radius: 200px;
  float: left;
  margin-right: 12px;
}
#block-temoignages .swiper-temoignage .item .detail .block-img img {
  max-height: 30px;
  margin: auto;
  display: block;
}
#block-temoignages .swiper-temoignage .item .detail .name {
  font-family: "Gilroy-SemiBold";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  #block-temoignages .swiper-temoignage .item .detail .name {
    margin-top: 8px;
    font-size: 16px;
    line-height: 22px;
  }
}
#block-temoignages .swiper-temoignage .item .detail .role {
  font-family: "Gilroy-SemiBold";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  #block-temoignages .swiper-temoignage .item .detail .role {
    font-size: 16px;
    line-height: 22px;
  }
}
#block-temoignages .swiper-temoignage .swiper-buttons {
  width: 100px;
  height: 42px;
  position: relative;
  margin: 20px auto 0px auto;
  float: inherit;
}
#block-temoignages .swiper-temoignage .swiper-buttons div {
  box-shadow: none;
  background-color: #fff;
}
#block-temoignages .swiper-temoignage .swiper-buttons div:hover {
  margin: 0;
}

#block-philo {
  background-color: #f8f9ff;
}
#block-philo .elm {
  position: relative;
}
#block-philo .elm .item {
  position: relative;
}
#block-philo .elm .item.even {
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  #block-philo .elm .item.even {
    margin-top: 0px;
  }
}
#block-philo .elm .item.odd {
  margin-top: -30px;
}
@media (max-width: 1199.98px) {
  #block-philo .elm .item.odd {
    margin-top: 0px;
  }
}
#block-philo .elm .item .elem {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  height: 320px;
}
@media (max-width: 1199.98px) {
  #block-philo .elm .item .elem {
    height: initial;
  }
}
#block-philo .elm .item .elem h2 {
  font-family: "Gilroy-SemiBold";
  font-size: 24px;
  line-height: 32px;
}
#block-philo .elm .item .elem .text {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  color: #666680;
}
#block-philo .elm .item .elem:hover {
  background: #134c41;
  color: white;
}
#block-philo .elm .item .elem:hover h2 {
  color: white;
}

#block-steps {
  background-color: #f8f9ff;
  position: relative;
}
#block-steps .elm {
  position: relative;
  width: calc(50% - 15px);
  display: block;
  float: left;
  box-sizing: border-box;
}
@media (max-width: 1199.98px) {
  #block-steps .elm {
    width: 100%;
  }
}
#block-steps .elm.even {
  float: right;
}
@media (max-width: 1199.98px) {
  #block-steps .elm.even {
    margin-top: 0px;
  }
}
#block-steps .elm .item {
  position: relative;
}
#block-steps .elm .item .elem {
  background: #ebf2fa;
  border-radius: 20px;
  padding: 30px;
  transition: all ease 0.3s;
}
@media (max-width: 1199.98px) {
  #block-steps .elm .item .elem {
    height: initial;
  }
}
#block-steps .elm .item .elem .number {
  width: 90.92px;
  height: 90.92px;
  background: #134c41;
  border-radius: 11.4794px;
}
#block-steps .elm .item .elem .number span {
  font-family: "Gilroy-Bold";
  font-size: 48px;
  line-height: 54px;
  text-align: center;
  color: #ea9010;
}
#block-steps .elm .item .elem h2 {
  font-family: "Gilroy-SemiBold";
  font-size: 24px;
  line-height: 32px;
}
#block-steps .elm .item .elem .text {
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 28px;
  color: #666680;
}
#block-steps .elm .item .elem:hover {
  background: #ffffff;
  box-shadow: 0px 3px 22px #eeeeee;
  transition: all ease 0.3s;
}

#block-filiale .tabs {
  position: relative;
  overflow: hidden;
}
#block-filiale .tabs .tab-links {
  display: table;
  text-align: center;
}
#block-filiale .tabs .tab-links li {
  margin: 15px 6px;
  min-width: 360px;
  display: inline-block;
}
@media (max-width: 1199.98px) {
  #block-filiale .tabs .tab-links li {
    min-width: 100%;
    margin: 0 0 10px 0;
  }
}
#block-filiale .tabs .tab-links li a {
  font-family: "Gilroy-Medium";
  font-size: 16px;
  line-height: 25px;
  color: #252525;
  padding: 12px 15px;
  border: 1px solid #000000;
  border-radius: 15px;
  text-align: center;
  transition: all ease 0.3s;
  display: block;
}
#block-filiale .tabs .tab-links li:hover a, #block-filiale .tabs .tab-links li.active a {
  color: #ea9010;
  border-color: #ea9010;
  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, #134c41 0%, #134c41 49%, #134c41 100%);
  padding: 30px;
}
@media (max-width: 991.98px) {
  .videoyt .plyr__control--overlaid {
    padding: 20px;
  }
}
.videoyt .plyr__control--overlaid svg {
  color: #134c41 !important;
  height: 18px;
  width: 18px;
}
.videoyt .plyr__control--overlaid:hover {
  background-image: linear-gradient(90deg, #134c41 0%, #134c41 49%, #134c41 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: #134c41;
}
.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: #134c41;
}
.videoyt .plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(19, 76, 65, 0.5);
}
.videoyt .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #134c41;
}

#block-text-media .swiper-media .item .bg {
  border-radius: 15px !important;
}

/*
|--------------------
|     PAGE HOME
|--------------------
*/
.page-template-home #block-banner-home {
  background-color: #f8f9ff;
  position: relative;
  min-height: 800px;
}
@media (max-width: 1199.98px) {
  .page-template-home #block-banner-home {
    height: inherit;
    min-height: inherit;
    padding: 180px 0 100px 0;
    text-align: center;
  }
}
.page-template-home #block-banner-home .anim-intro {
  overflow: hidden;
  z-index: 7;
  height: 510px;
  padding-top: 52px;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .page-template-home #block-banner-home .anim-intro {
    height: 433px;
  }
}
@media (max-width: 991.98px) {
  .page-template-home #block-banner-home .anim-intro {
    height: 320px;
  }
}
.page-template-home #block-banner-home .anim-intro .swiper-slide .bg {
  height: 400px;
  width: 400px;
  border-radius: 60px;
  display: block;
  background-position: center;
  background-size: cover;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-60deg);
  transition: all ease 0.8s;
}
@media (max-width: 1399.98px) {
  .page-template-home #block-banner-home .anim-intro .swiper-slide .bg {
    height: 340px;
    width: 340px;
  }
}
@media (max-width: 1199.98px) {
  .page-template-home #block-banner-home .anim-intro .swiper-slide .bg {
    height: 340px;
    width: 340px;
  }
}
@media (max-width: 991.98px) {
  .page-template-home #block-banner-home .anim-intro .swiper-slide .bg {
    height: 200px;
    width: 200px;
    border-radius: 20px;
  }
}
.page-template-home #block-banner-home .anim-intro .swiper-slide.swiper-slide-prev .bg {
  transform: rotate(-30deg);
  transition: all ease 0.8s;
}
.page-template-home #block-banner-home .anim-intro .swiper-slide.swiper-slide-active .bg {
  transform: rotate(0deg);
  transition: all ease 0.8s;
}
.page-template-home #block-banner-home .anim-intro .swiper-slide.swiper-slide-next .bg {
  transform: rotate(30deg);
  transition: all ease 0.8s;
}
.page-template-home .bar-vertical {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  margin: auto;
  height: 120px;
  width: 4px;
  display: block;
  z-index: 1;
  background-color: #ea9010;
}

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

/*
|--------------------
|      SINGLE
|--------------------
*/
.post-date {
  font-size: 12px;
  color: rgba(235, 242, 250, 0.6);
  text-transform: uppercase;
  font-weight: 400;
}

.post-excerpt {
  font-size: 22px;
  color: rgba(20, 20, 20, 0.6);
  font-weight: 400;
}

/*
|--------------------
|       Contact
|--------------------
*/
.page-template-contact {
  background-color: #134c41;
}
.page-template-contact #page-contact {
  color: white;
  margin-top: 150px;
}
@media (max-width: 1199.98px) {
  .page-template-contact #page-contact {
    margin-top: 45px;
  }
}
.page-template-contact #page-contact .header-contact {
  padding-bottom: 180px;
}
@media (max-width: 1199.98px) {
  .page-template-contact #page-contact .header-contact {
    padding-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .page-template-contact #page-contact .header-contact {
    text-align: center;
  }
}
.page-template-contact #page-contact .header-contact h1 {
  color: white;
}
.page-template-contact #page-contact .header-contact .desc {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  opacity: 0.7;
}
.page-template-contact #page-contact .header-contact .adr-image {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 152px;
  background-position: center;
  background-size: cover;
  float: left;
  margin-right: 15px;
}
@media (max-width: 767.98px) {
  .page-template-contact #page-contact .header-contact .adr-image {
    float: initial;
    margin: 0 auto 30px auto;
  }
}
.page-template-contact #page-contact .header-contact .adr-title {
  font-family: "Gilroy-Regular";
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #ffffff;
  opacity: 0.6;
}
.page-template-contact #page-contact .header-contact .adr-text {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}
.page-template-contact #page-contact .block-form {
  position: relative;
}
.page-template-contact #page-contact .block-form .contact-form {
  z-index: 2;
  position: absolute;
  background: white;
  border-radius: 24px;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
}
@media (max-width: 1199.98px) {
  .page-template-contact #page-contact .block-form .contact-form {
    position: relative;
    margin-top: 0px !important;
  }
}
.page-template-contact #page-contact .block-form .contact-form #tabs-nav {
  list-style: none;
  overflow: auto;
  display: inline-block;
  margin: 50px 50px 0px 50px;
}
@media (max-width: 1399.98px) {
  .page-template-contact #page-contact .block-form .contact-form #tabs-nav {
    margin: 20px 20px 0px 20px;
  }
}
.page-template-contact #page-contact .block-form .contact-form #tabs-nav li {
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  float: left;
  cursor: pointer;
  margin: 0 50px 0 0;
  color: #b8c9c6;
  transition: all ease 0.3s;
}
.page-template-contact #page-contact .block-form .contact-form #tabs-nav li:hover, .page-template-contact #page-contact .block-form .contact-form #tabs-nav li.active {
  color: #134c41;
  transition: all ease 0.3s;
  border-bottom: 3px solid #134c41;
}
.page-template-contact #page-contact .block-form .contact-form #tabs-nav li a {
  font-family: "Gilroy-bold";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 21px;
}
.page-template-contact #page-contact .block-form .contact-form #tabs-content .tab-content {
  transition: all ease 0.3s;
}
.page-template-contact #page-contact .gfield_description {
  display: none;
}
.page-template-contact #page-contact .gform_confirmation_message {
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #0f1214;
  min-height: 600px;
  font-size: 18px;
  line-height: 20px;
  padding: 20px 15px 0 15px;
  text-align: center;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme h3 {
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #0f1214;
  margin: 20px 0;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .validation_message {
  font-family: inherit;
  text-transform: inherit;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .validation_message {
  padding: 3px 10px;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_ajax_spinner {
  position: absolute;
  margin-top: 5px;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_submission_error {
  text-transform: initial;
  font-size: 15px;
  font-weight: 700;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_submission_error:after {
  content: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_submission_error span {
  display: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_validation_errors {
  margin: 50px 50px 0px 50px;
  position: relative;
  width: calc(100% - 60px);
  padding: 10px;
  box-shadow: none;
  border: 1px solid #134c41;
  border-radius: initial;
  display: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform-icon {
  display: none !important;
}
@media (max-width: 1399.98px) {
  .page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body h2 {
    font-size: 38px;
    line-height: 43px;
  }
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body h2:after {
  content: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gform_required_legend {
  display: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gform_title {
  display: none;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gfield {
  margin-bottom: 10px;
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: #061c3d;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gfield_label {
  font-family: "Gilroy-medium";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: #1c1c1e;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container_date .datepicker {
  width: 100%;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gfield_date_dropdown_day,
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gfield_date_dropdown_month,
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gfield_date_dropdown_year {
  max-width: 33.33%;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body input[type=text],
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body input[type=email],
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body select,
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body textarea {
  border: 1px solid #e6e8ec;
  border-radius: 5px;
  font-size: 16px !important;
  line-height: initial;
  padding: 15px 15px !important;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container_phone input {
  border: 1px solid #e6e8ec;
  border-radius: 5px;
  font-size: 16px !important;
  line-height: initial;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body textarea {
  height: 120px !important;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body select {
  position: relative;
  background-image: url(../img/arr-mini.svg);
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: calc(100% - 20px) center;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container .gfield_consent_label {
  font-family: "Gilroy-medium";
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #0f1214;
  margin-left: 28px;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container .gfield_consent_label a {
  text-decoration: underline;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container_consent {
  position: relative;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container_consent input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  border: none;
  left: 0;
  top: 0px;
  padding: 0 !important;
  margin: 0;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container_consent input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  top: 0;
  left: 0;
  border: 1px solid #1c1c1e;
  border-radius: 5px;
  background-color: transparent;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .ginput_container_consent input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 5px;
  background: #134c41;
  border: 1px solid #134c41;
  background-image: url(../img/valid.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gform_fields {
  padding: 10px 50px 20px 50px;
}
@media (max-width: 1399.98px) {
  .page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_body .gform_fields {
    padding: 10px 20px 20px 20px;
  }
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_footer {
  padding: 0 !important;
  margin: 0 50px 40px 50px !important;
  position: relative;
  display: inline-block !important;
}
@media (max-width: 1399.98px) {
  .page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_footer {
    margin: 0 20px 20px 20px !important;
  }
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  font-family: "Gilroy-SemiBold";
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  border-radius: 15px;
  border: 1px solid #134c41;
  background-color: #134c41;
  display: inline-block;
  position: relative;
  padding: 17px 35px 16px 35px;
  transition: all ease 0.3s;
}
.page-template-contact #page-contact .gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover {
  border: 1px solid #ea9010;
  background-color: #ea9010;
  transition: all ease 0.3s;
  cursor: pointer;
}
.page-template-contact #page-contact .gform_fileupload_rules {
  display: none;
}
.page-template-contact #page-contact .ginput_container_fileupload {
  height: 100px;
  border: 1px dashed #134c41;
  position: relative;
  text-align: center;
  transition: all ease 0.3s;
}
.page-template-contact #page-contact .ginput_container_fileupload:hover {
  background: rgb(244, 248, 245);
  transition: all ease 0.3s;
}
.page-template-contact #page-contact .ginput_container_fileupload:before {
  content: attr(data-content);
  background-image: url(../img/add-file.png);
  font-family: "Neue Haas Grotesk Display Pro";
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.14em;
  color: rgb(133, 139, 144);
  position: absolute;
  inset: 0;
  vertical-align: middle;
  align-items: center;
  display: grid;
  width: 30px;
  height: 30px;
  background-size: cover;
  padding: 0;
  margin: auto;
  opacity: 0.4;
}
@media (max-width: 991.98px) {
  .page-template-contact #page-contact .ginput_container_fileupload:before {
    font-size: 14px;
  }
}
.page-template-contact #page-contact .ginput_container_fileupload.active:before {
  background: none;
  width: initial;
  height: initial;
  opacity: 1;
}
.page-template-contact #page-contact input[type=file] {
  height: 100px;
  opacity: 0;
  cursor: pointer;
}
.page-template-contact #page-contact .bg-img-contact {
  position: relative;
  height: 640px;
  width: 100%;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1199.98px) {
  .page-template-contact #page-contact .bg-img-contact {
    margin-top: -560px;
  }
}
.page-template-contact #page-contact #wavesvg {
  height: 100px;
  width: 100%;
  position: absolute;
  top: -1px;
  z-index: 1;
  fill: transparent;
}
.page-template-contact #page-contact #wavesvg path {
  stroke: none;
  fill: #134c41;
}

/*
|--------------------
|       404
|--------------------
*/
#page-404 {
  /*
  |
  | Section contact
  |------------------
  */
}
#page-404 .section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #141414;
  color: #ffffff;
  text-align: center;
}
#page-404 .section-content .item-title {
  font-size: 8vw;
  font-weight: 300;
  line-height: 1;
}
#page-404 .section-content a {
  text-decoration: underline;
}

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