@charset "UTF-8";
/*
|
| FEATURES
|----------------
|
*/
/*
|
| UTILS
|----------------
|
*/
/*
|
| MIXINS
|----------------
|
*/
/*
    Name of the next breakpoint, or null for the last breakpoint.

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

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

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

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

    >> breakpoint-infix(sm, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
        "-sm"
*/
/*
    Media of at least the minimum breakpoint width. No query for the smallest breakpoint.
    Makes the @content apply to the given breakpoint and wider.
*/
/*
    Media of at most the maximum breakpoint width. No query for the largest breakpoint.
    Makes the @content apply to the given breakpoint and narrower.
*/
/*
    Media that spans multiple breakpoint widths.
    Makes the @content apply between the min and max breakpoints
*/
/*
    Media between the breakpoint's minimum and maximum widths.
    No minimum for the smallest breakpoint, and no maximum for the largest one.
    Makes the @content apply only to the given breakpoint, not viewports any wider or narrower.
*/
/*
|
| TEXT ALIGN
|-----------------------
|
*/
/*
|
| FONT-SIZES
|----------------
|
*/
/*
|
| Titles
|-----------------------
|
*/
/*
|
| VARIABLES
|----------------
|
*/
/*
|---------------------------------------------------------------
| GRID
|---------------------------------------------------------------
| Set grid properties
|
|
*/
/*
|---------------------------------------------------------------
| SPACES
|---------------------------------------------------------------
| Set paddings & margins sizes properties
|
|
*/
/*
|---------------------------------------------------------------
| COLORS
|---------------------------------------------------------------
| Define colors
|
|
*/
/*
|
| DECLARATION
|----------------
|
*/
/*
|
| DEFAULTS
|----------------
|
*/
/*
|---------------------------------------------------------------
| FONTS
|---------------------------------------------------------------
| Set all font properties
|
|
*/
/*
|
| FAMILIES
|----------------
|
*/
/*
|
| SIZES
|----------------
|
*/
/*
|
| LINE-HEIGHT
|----------------
|
*/
/*
|
| LETTER-SPACING
|----------------
|
*/
/*
|
| DEFAULTS
|----------------
|
*/
/*
|---------------------------------------------------------------
| TITLES
|---------------------------------------------------------------
| Set all title properties
|
|
*/
/*
|
| DEFAULTS
|----------------
|
*/
/*
|
| MAPS
|----------------
|
*/
/*
|-------------
| Breakpoints media queries creation 
|-------------
| - How to use: add lines to create more breakpoints
|
*/
/*
|-------------------------------
| Container classes creation
|-------------------------------
| Variables used to generate container classes
| - Generated classes: .container / .container-fluid
|
*/
/*
|-------------------------------
| Display classes creation
|-------------------------------
| Variables used to generate display classes
| - Generated classes: .d-{display}
| - Exemple: .d-f
|
*/
/*
|-------------------------------
| Grid gutters creation
|-------------------------------
| Variables used to generate grid gutter classes
| - Generated classes: .g-{size}
| - Exemple: .g-md
|
*/
/*
|-------------------------------
| Margins & Paddings classes creation
|-------------------------------
| Variables used to generate padding & margin classes
| - Generated classes: .m{direction}-{size} & .p{direction}-{size}
| - Exemple: .mt-md & .pt-md
|
*/
/*
|-------------
| Color classes creation 
|-------------
| - How to use: add lines to create more "color classes" 
| - Generated classes: .bg-{color} & .c-{color}
| - Exemple: .bg-black & .c-black
|
*/
/*
|-------------------
| Ratio classes creation
|-------------------
| - Generated classes: .ratio-{size}
|
*/
/*
|-------------------------------
| Text align classes creation
|-------------------------------
| Variables used to generate text-align classes
| - Generated classes: .ta-{alignment}
| - Exemple: .ta-center
|
*/
/*
|-------------------------------
| Font family classes creation
|-------------------------------
| How to use: add lines to create more "font family classes" 
| - Generated classes: .ff-{family}
| - Exemple: .ff-default
|
*/
/*
|----------------------------------------------
| Font size classes creation
|----------------------------------------------
| Variables used to generate font size classes (including responsive)
| - Generated classes: .fs-{size}
| - Exemple: .fs-md
|
*/
/*
|-------------------------------
| Font weight classes creation
|-------------------------------
| How to use: add lines to create more "font weight classes"
| - Generated classes: .fw-{weight}
| - Exemple: .fw-400
|
*/
/*
|-------------------------------
| Line height classes creation
|-------------------------------
| How to use: add lines to create more "line-height classes"
| - Generated classes: .lh-{weight}
| - Exemple: .lh-sm
|
*/
/*
|-------------------------------
| Letter spacing classes creation
|-------------------------------
| How to use: add lines to create more "letter-spacing classes"
| - Generated classes: .ls-{size}
| - Exemple: .ls-sm
|
*/
/*
|-------------------------------
| Title sizes classes creation
|-------------------------------
| Variables used to generate title classes (including responsive)
| - Generated classes: .title-{size}
| - Exemple: .title-md
|
*/
/*
|
| CORE
|----------------
|
*/
/*
|---------------------------------------------------------------
| Helpers
|---------------------------------------------------------------
| Define helper classes
|
|
*/
/*
|
| TEXT TRANSFORMS
|----------------
|
*/
.tt-n {
  text-transform: none !important;
}

.tt-u {
  text-transform: uppercase !important;
}

.tt-l {
  text-transform: lowercase !important;
}

.tt-c {
  text-transform: capitalize !important;
}

/*
|
| TEXT DECORATIONS
|----------------
|
*/
.td-u {
  text-decoration: underline !important;
}

.td-n {
  text-decoration: none !important;
}

/*
|
| FONT STYLES
|----------------
|
*/
.fs-i {
  font-style: italic !important;
}

.fs-o {
  font-style: oblique !important;
}

.fs-n {
  font-style: normal !important;
}

/*
|
| BACKGROUND COVER
|----------------
|
*/
.bg-contain,
.bg-cover,
.banner,
.bg-contain-bottom,
.bg-cover-bottom,
.bg-contain-top,
.bg-cover-top {
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.bg-contain-top,
.bg-cover-top {
  background-position: center top !important;
}
.bg-contain-bottom,
.bg-cover-bottom {
  background-position: center bottom !important;
}

.bg-contain {
  background-size: contain !important;
}

.bg-cover, .banner, .bg-contain-top,
.bg-cover-top, .bg-contain-bottom,
.bg-cover-bottom {
  background-size: cover !important;
}

/*
|
| OVERLAY
|----------------
|
*/
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
.overlay + * {
  position: relative;
  z-index: 2;
}

/*
|
| OVERFLOWS
|----------------
|
*/
/*
|
| POSITIONS
|----------------
|
*/
.p-r {
  position: relative !important;
}

.p-a {
  position: absolute !important;
}

.p-f {
  position: fixed !important;
}

.p-s {
  position: static !important;
}

/*
|
| 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
|----------------
|
*/
.ws-inherit {
  white-space: inherit;
}

.ws-normal {
  white-space: normal;
}

.ws-nowrap {
  white-space: nowrap;
}

.ws-pre {
  white-space: pre;
}

.ws-pre-wrap {
  white-space: pre-wrap;
}

.ws-pre-line {
  white-space: pre-line;
}

/*
|
| POINTER EVENTS
|----------------
|
*/
.pe-inherit {
  pointer-events: inherit;
}

.pe-none {
  pointer-events: none;
}

.pe-auto {
  pointer-events: auto;
}

/*
|
| ANIMATION OPTIMIZATION
|----------------
|
*/
/*
|
| TRANSFORMS
|----------------
|
*/
.transform-none {
  transform: none !important;
}

/*
|
| ABSOLUTE FULL
|----------------
|
*/
/*
|
| CLEAR
|----------------
|
*/
.clear {
  clear: both;
}

/*
|
| IMG FULL
|----------------
|
*/
.img-full {
  display: block;
  max-width: inherit;
  width: 100%;
}

.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

/*
|
| 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: 36rem) {
  .container {
    --container-width: 540px;
  }
}
@media (min-width: 48rem) {
  .container {
    --container-width: 720px;
  }
}
@media (min-width: 64rem) {
  .container {
    --container-width: 960px;
  }
}
@media (min-width: 80rem) {
  .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;
  flex: 1;
}

.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: 36rem) {
  .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: 48rem) {
  .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: 64rem) {
  .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: 80rem) {
  .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;
  }
}
@media (min-width: 90rem) {
  .col-xxl {
    --cs: var(--cc);
  }
  .col-xxl-auto {
    --cw: auto;
  }
  .col-xxl-1 {
    --cs: 1;
  }
  .offset-xxl-1 {
    --co: 1;
  }
  .col-xxl-2 {
    --cs: 2;
  }
  .offset-xxl-2 {
    --co: 2;
  }
  .col-xxl-3 {
    --cs: 3;
  }
  .offset-xxl-3 {
    --co: 3;
  }
  .col-xxl-4 {
    --cs: 4;
  }
  .offset-xxl-4 {
    --co: 4;
  }
  .col-xxl-5 {
    --cs: 5;
  }
  .offset-xxl-5 {
    --co: 5;
  }
  .col-xxl-6 {
    --cs: 6;
  }
  .offset-xxl-6 {
    --co: 6;
  }
  .col-xxl-7 {
    --cs: 7;
  }
  .offset-xxl-7 {
    --co: 7;
  }
  .col-xxl-8 {
    --cs: 8;
  }
  .offset-xxl-8 {
    --co: 8;
  }
  .col-xxl-9 {
    --cs: 9;
  }
  .offset-xxl-9 {
    --co: 9;
  }
  .col-xxl-10 {
    --cs: 10;
  }
  .offset-xxl-10 {
    --co: 10;
  }
  .col-xxl-11 {
    --cs: 11;
  }
  .offset-xxl-11 {
    --co: 11;
  }
  .col-xxl-12 {
    --cs: 12;
  }
  .offset-xxl-12 {
    --co: 12;
  }
  .col-xxl-13 {
    --cs: 13;
  }
  .offset-xxl-13 {
    --co: 13;
  }
  .col-xxl-14 {
    --cs: 14;
  }
  .offset-xxl-14 {
    --co: 14;
  }
  .col-xxl-15 {
    --cs: 15;
  }
  .offset-xxl-15 {
    --co: 15;
  }
  .col-xxl-16 {
    --cs: 16;
  }
  .offset-xxl-16 {
    --co: 16;
  }
  .col-xxl-17 {
    --cs: 17;
  }
  .offset-xxl-17 {
    --co: 17;
  }
  .col-xxl-18 {
    --cs: 18;
  }
  .offset-xxl-18 {
    --co: 18;
  }
  .col-xxl-19 {
    --cs: 19;
  }
  .offset-xxl-19 {
    --co: 19;
  }
  .col-xxl-20 {
    --cs: 20;
  }
  .offset-xxl-20 {
    --co: 20;
  }
  .col-xxl-21 {
    --cs: 21;
  }
  .offset-xxl-21 {
    --co: 21;
  }
  .col-xxl-22 {
    --cs: 22;
  }
  .offset-xxl-22 {
    --co: 22;
  }
  .col-xxl-23 {
    --cs: 23;
  }
  .offset-xxl-23 {
    --co: 23;
  }
  .col-xxl-24 {
    --cs: 24;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 999;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .order-xxl-13 {
    order: 13;
  }
  .order-xxl-14 {
    order: 14;
  }
  .order-xxl-15 {
    order: 15;
  }
  .order-xxl-16 {
    order: 16;
  }
  .order-xxl-17 {
    order: 17;
  }
  .order-xxl-18 {
    order: 18;
  }
  .order-xxl-19 {
    order: 19;
  }
  .order-xxl-20 {
    order: 20;
  }
  .order-xxl-21 {
    order: 21;
  }
  .order-xxl-22 {
    order: 22;
  }
  .order-xxl-23 {
    order: 23;
  }
  .order-xxl-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: 89.98rem) {
  .xxl-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xxl-down-gy-0 {
    --gy: 0px;
  }
  .xxl-down-gx-0 {
    --gx: 0px;
  }
  .xxl-down-g-xs {
    --gx: 5px;
    --gy: 5px;
  }
  .xxl-down-gy-xs {
    --gy: 5px;
  }
  .xxl-down-gx-xs {
    --gx: 5px;
  }
  .xxl-down-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .xxl-down-gy-sm {
    --gy: 15px;
  }
  .xxl-down-gx-sm {
    --gx: 15px;
  }
  .xxl-down-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .xxl-down-gy-md {
    --gy: 30px;
  }
  .xxl-down-gx-md {
    --gx: 30px;
  }
  .xxl-down-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .xxl-down-gy-lg {
    --gy: 50px;
  }
  .xxl-down-gx-lg {
    --gx: 50px;
  }
  .xxl-down-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .xxl-down-gy-xl {
    --gy: 70px;
  }
  .xxl-down-gx-xl {
    --gx: 70px;
  }
  .xxl-down-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .xxl-down-gy-xxl {
    --gy: 140px;
  }
  .xxl-down-gx-xxl {
    --gx: 140px;
  }
}
@media (max-width: 79.98rem) {
  .xl-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xl-down-gy-0 {
    --gy: 0px;
  }
  .xl-down-gx-0 {
    --gx: 0px;
  }
  .xl-down-g-xs {
    --gx: 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: 63.98rem) {
  .lg-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .lg-down-gy-0 {
    --gy: 0px;
  }
  .lg-down-gx-0 {
    --gx: 0px;
  }
  .lg-down-g-xs {
    --gx: 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: 47.98rem) {
  .md-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .md-down-gy-0 {
    --gy: 0px;
  }
  .md-down-gx-0 {
    --gx: 0px;
  }
  .md-down-g-xs {
    --gx: 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: 35.98rem) {
  .sm-down-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .sm-down-gy-0 {
    --gy: 0px;
  }
  .sm-down-gx-0 {
    --gx: 0px;
  }
  .sm-down-g-xs {
    --gx: 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 (min-width: 36rem) {
  .sm-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .sm-up-gy-0 {
    --gy: 0px;
  }
  .sm-up-gx-0 {
    --gx: 0px;
  }
  .sm-up-g-xs {
    --gx: 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: 48rem) {
  .md-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .md-up-gy-0 {
    --gy: 0px;
  }
  .md-up-gx-0 {
    --gx: 0px;
  }
  .md-up-g-xs {
    --gx: 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: 64rem) {
  .lg-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .lg-up-gy-0 {
    --gy: 0px;
  }
  .lg-up-gx-0 {
    --gx: 0px;
  }
  .lg-up-g-xs {
    --gx: 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: 80rem) {
  .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;
  }
}
@media (min-width: 90rem) {
  .xxl-up-g-0 {
    --gx: 0px;
    --gy: 0px;
  }
  .xxl-up-gy-0 {
    --gy: 0px;
  }
  .xxl-up-gx-0 {
    --gx: 0px;
  }
  .xxl-up-g-xs {
    --gx: 5px;
    --gy: 5px;
  }
  .xxl-up-gy-xs {
    --gy: 5px;
  }
  .xxl-up-gx-xs {
    --gx: 5px;
  }
  .xxl-up-g-sm {
    --gx: 15px;
    --gy: 15px;
  }
  .xxl-up-gy-sm {
    --gy: 15px;
  }
  .xxl-up-gx-sm {
    --gx: 15px;
  }
  .xxl-up-g-md {
    --gx: 30px;
    --gy: 30px;
  }
  .xxl-up-gy-md {
    --gy: 30px;
  }
  .xxl-up-gx-md {
    --gx: 30px;
  }
  .xxl-up-g-lg {
    --gx: 50px;
    --gy: 50px;
  }
  .xxl-up-gy-lg {
    --gy: 50px;
  }
  .xxl-up-gx-lg {
    --gx: 50px;
  }
  .xxl-up-g-xl {
    --gx: 70px;
    --gy: 70px;
  }
  .xxl-up-gy-xl {
    --gy: 70px;
  }
  .xxl-up-gx-xl {
    --gx: 70px;
  }
  .xxl-up-g-xxl {
    --gx: 140px;
    --gy: 140px;
  }
  .xxl-up-gy-xxl {
    --gy: 140px;
  }
  .xxl-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: 89.98rem) {
  .xxl-down-d-none {
    display: none;
  }
  .xxl-down-d-i {
    display: inline;
  }
  .xxl-down-d-b {
    display: block;
  }
  .xxl-down-d-ib {
    display: inline-block;
  }
  .xxl-down-d-f {
    display: flex;
  }
  .xxl-down-d-if {
    display: inline-flex;
  }
}
@media (max-width: 79.98rem) {
  .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: 63.98rem) {
  .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: 47.98rem) {
  .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: 35.98rem) {
  .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 (min-width: 36rem) {
  .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: 48rem) {
  .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: 64rem) {
  .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: 80rem) {
  .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;
  }
}
@media (min-width: 90rem) {
  .xxl-up-d-none {
    display: none;
  }
  .xxl-up-d-i {
    display: inline;
  }
  .xxl-up-d-b {
    display: block;
  }
  .xxl-up-d-ib {
    display: inline-block;
  }
  .xxl-up-d-f {
    display: flex;
  }
  .xxl-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: 89.98rem) {
  .xxl-down-m-0 {
    margin: 0;
  }
  .xxl-down-mt-0 {
    margin-top: 0;
  }
  .xxl-down-mb-0 {
    margin-bottom: 0;
  }
  .xxl-down-my-0 {
    margin-block: 0;
  }
  .xxl-down-ml-0 {
    margin-left: 0;
  }
  .xxl-down-mr-0 {
    margin-right: 0;
  }
  .xxl-down-mx-0 {
    margin-inline: 0;
  }
  .xxl-down-p-0 {
    padding: 0;
  }
  .xxl-down-pt-0 {
    padding-top: 0;
  }
  .xxl-down-pb-0 {
    padding-bottom: 0;
  }
  .xxl-down-py-0 {
    padding-block: 0;
  }
  .xxl-down-pl-0 {
    padding-left: 0;
  }
  .xxl-down-pr-0 {
    padding-right: 0;
  }
  .xxl-down-px-0 {
    padding-inline: 0;
  }
  .xxl-down-m-xs {
    margin: 5px;
  }
  .xxl-down-mt-xs {
    margin-top: 5px;
  }
  .xxl-down-mb-xs {
    margin-bottom: 5px;
  }
  .xxl-down-my-xs {
    margin-block: 5px;
  }
  .xxl-down-ml-xs {
    margin-left: 5px;
  }
  .xxl-down-mr-xs {
    margin-right: 5px;
  }
  .xxl-down-mx-xs {
    margin-inline: 5px;
  }
  .xxl-down-p-xs {
    padding: 5px;
  }
  .xxl-down-pt-xs {
    padding-top: 5px;
  }
  .xxl-down-pb-xs {
    padding-bottom: 5px;
  }
  .xxl-down-py-xs {
    padding-block: 5px;
  }
  .xxl-down-pl-xs {
    padding-left: 5px;
  }
  .xxl-down-pr-xs {
    padding-right: 5px;
  }
  .xxl-down-px-xs {
    padding-inline: 5px;
  }
  .xxl-down-m-sm {
    margin: 15px;
  }
  .xxl-down-mt-sm {
    margin-top: 15px;
  }
  .xxl-down-mb-sm {
    margin-bottom: 15px;
  }
  .xxl-down-my-sm {
    margin-block: 15px;
  }
  .xxl-down-ml-sm {
    margin-left: 15px;
  }
  .xxl-down-mr-sm {
    margin-right: 15px;
  }
  .xxl-down-mx-sm {
    margin-inline: 15px;
  }
  .xxl-down-p-sm {
    padding: 15px;
  }
  .xxl-down-pt-sm {
    padding-top: 15px;
  }
  .xxl-down-pb-sm {
    padding-bottom: 15px;
  }
  .xxl-down-py-sm {
    padding-block: 15px;
  }
  .xxl-down-pl-sm {
    padding-left: 15px;
  }
  .xxl-down-pr-sm {
    padding-right: 15px;
  }
  .xxl-down-px-sm {
    padding-inline: 15px;
  }
  .xxl-down-m-md {
    margin: 30px;
  }
  .xxl-down-mt-md {
    margin-top: 30px;
  }
  .xxl-down-mb-md {
    margin-bottom: 30px;
  }
  .xxl-down-my-md {
    margin-block: 30px;
  }
  .xxl-down-ml-md {
    margin-left: 30px;
  }
  .xxl-down-mr-md {
    margin-right: 30px;
  }
  .xxl-down-mx-md {
    margin-inline: 30px;
  }
  .xxl-down-p-md {
    padding: 30px;
  }
  .xxl-down-pt-md {
    padding-top: 30px;
  }
  .xxl-down-pb-md {
    padding-bottom: 30px;
  }
  .xxl-down-py-md {
    padding-block: 30px;
  }
  .xxl-down-pl-md {
    padding-left: 30px;
  }
  .xxl-down-pr-md {
    padding-right: 30px;
  }
  .xxl-down-px-md {
    padding-inline: 30px;
  }
  .xxl-down-m-lg {
    margin: 50px;
  }
  .xxl-down-mt-lg {
    margin-top: 50px;
  }
  .xxl-down-mb-lg {
    margin-bottom: 50px;
  }
  .xxl-down-my-lg {
    margin-block: 50px;
  }
  .xxl-down-ml-lg {
    margin-left: 50px;
  }
  .xxl-down-mr-lg {
    margin-right: 50px;
  }
  .xxl-down-mx-lg {
    margin-inline: 50px;
  }
  .xxl-down-p-lg {
    padding: 50px;
  }
  .xxl-down-pt-lg {
    padding-top: 50px;
  }
  .xxl-down-pb-lg {
    padding-bottom: 50px;
  }
  .xxl-down-py-lg {
    padding-block: 50px;
  }
  .xxl-down-pl-lg {
    padding-left: 50px;
  }
  .xxl-down-pr-lg {
    padding-right: 50px;
  }
  .xxl-down-px-lg {
    padding-inline: 50px;
  }
  .xxl-down-m-xl {
    margin: 70px;
  }
  .xxl-down-mt-xl {
    margin-top: 70px;
  }
  .xxl-down-mb-xl {
    margin-bottom: 70px;
  }
  .xxl-down-my-xl {
    margin-block: 70px;
  }
  .xxl-down-ml-xl {
    margin-left: 70px;
  }
  .xxl-down-mr-xl {
    margin-right: 70px;
  }
  .xxl-down-mx-xl {
    margin-inline: 70px;
  }
  .xxl-down-p-xl {
    padding: 70px;
  }
  .xxl-down-pt-xl {
    padding-top: 70px;
  }
  .xxl-down-pb-xl {
    padding-bottom: 70px;
  }
  .xxl-down-py-xl {
    padding-block: 70px;
  }
  .xxl-down-pl-xl {
    padding-left: 70px;
  }
  .xxl-down-pr-xl {
    padding-right: 70px;
  }
  .xxl-down-px-xl {
    padding-inline: 70px;
  }
  .xxl-down-m-xxl {
    margin: 140px;
  }
  .xxl-down-mt-xxl {
    margin-top: 140px;
  }
  .xxl-down-mb-xxl {
    margin-bottom: 140px;
  }
  .xxl-down-my-xxl {
    margin-block: 140px;
  }
  .xxl-down-ml-xxl {
    margin-left: 140px;
  }
  .xxl-down-mr-xxl {
    margin-right: 140px;
  }
  .xxl-down-mx-xxl {
    margin-inline: 140px;
  }
  .xxl-down-p-xxl {
    padding: 140px;
  }
  .xxl-down-pt-xxl {
    padding-top: 140px;
  }
  .xxl-down-pb-xxl {
    padding-bottom: 140px;
  }
  .xxl-down-py-xxl {
    padding-block: 140px;
  }
  .xxl-down-pl-xxl {
    padding-left: 140px;
  }
  .xxl-down-pr-xxl {
    padding-right: 140px;
  }
  .xxl-down-px-xxl {
    padding-inline: 140px;
  }
  .xxl-down-m-fluid {
    margin: var(--side-margin);
  }
  .xxl-down-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xxl-down-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xxl-down-my-fluid {
    margin-block: var(--side-margin);
  }
  .xxl-down-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xxl-down-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xxl-down-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xxl-down-p-fluid {
    padding: var(--side-margin);
  }
  .xxl-down-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xxl-down-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xxl-down-py-fluid {
    padding-block: var(--side-margin);
  }
  .xxl-down-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xxl-down-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xxl-down-px-fluid {
    padding-inline: var(--side-margin);
  }
}
@media (max-width: 79.98rem) {
  .xl-down-m-0 {
    margin: 0;
  }
  .xl-down-mt-0 {
    margin-top: 0;
  }
  .xl-down-mb-0 {
    margin-bottom: 0;
  }
  .xl-down-my-0 {
    margin-block: 0;
  }
  .xl-down-ml-0 {
    margin-left: 0;
  }
  .xl-down-mr-0 {
    margin-right: 0;
  }
  .xl-down-mx-0 {
    margin-inline: 0;
  }
  .xl-down-p-0 {
    padding: 0;
  }
  .xl-down-pt-0 {
    padding-top: 0;
  }
  .xl-down-pb-0 {
    padding-bottom: 0;
  }
  .xl-down-py-0 {
    padding-block: 0;
  }
  .xl-down-pl-0 {
    padding-left: 0;
  }
  .xl-down-pr-0 {
    padding-right: 0;
  }
  .xl-down-px-0 {
    padding-inline: 0;
  }
  .xl-down-m-xs {
    margin: 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: 63.98rem) {
  .lg-down-m-0 {
    margin: 0;
  }
  .lg-down-mt-0 {
    margin-top: 0;
  }
  .lg-down-mb-0 {
    margin-bottom: 0;
  }
  .lg-down-my-0 {
    margin-block: 0;
  }
  .lg-down-ml-0 {
    margin-left: 0;
  }
  .lg-down-mr-0 {
    margin-right: 0;
  }
  .lg-down-mx-0 {
    margin-inline: 0;
  }
  .lg-down-p-0 {
    padding: 0;
  }
  .lg-down-pt-0 {
    padding-top: 0;
  }
  .lg-down-pb-0 {
    padding-bottom: 0;
  }
  .lg-down-py-0 {
    padding-block: 0;
  }
  .lg-down-pl-0 {
    padding-left: 0;
  }
  .lg-down-pr-0 {
    padding-right: 0;
  }
  .lg-down-px-0 {
    padding-inline: 0;
  }
  .lg-down-m-xs {
    margin: 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: 47.98rem) {
  .md-down-m-0 {
    margin: 0;
  }
  .md-down-mt-0 {
    margin-top: 0;
  }
  .md-down-mb-0 {
    margin-bottom: 0;
  }
  .md-down-my-0 {
    margin-block: 0;
  }
  .md-down-ml-0 {
    margin-left: 0;
  }
  .md-down-mr-0 {
    margin-right: 0;
  }
  .md-down-mx-0 {
    margin-inline: 0;
  }
  .md-down-p-0 {
    padding: 0;
  }
  .md-down-pt-0 {
    padding-top: 0;
  }
  .md-down-pb-0 {
    padding-bottom: 0;
  }
  .md-down-py-0 {
    padding-block: 0;
  }
  .md-down-pl-0 {
    padding-left: 0;
  }
  .md-down-pr-0 {
    padding-right: 0;
  }
  .md-down-px-0 {
    padding-inline: 0;
  }
  .md-down-m-xs {
    margin: 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: 35.98rem) {
  .sm-down-m-0 {
    margin: 0;
  }
  .sm-down-mt-0 {
    margin-top: 0;
  }
  .sm-down-mb-0 {
    margin-bottom: 0;
  }
  .sm-down-my-0 {
    margin-block: 0;
  }
  .sm-down-ml-0 {
    margin-left: 0;
  }
  .sm-down-mr-0 {
    margin-right: 0;
  }
  .sm-down-mx-0 {
    margin-inline: 0;
  }
  .sm-down-p-0 {
    padding: 0;
  }
  .sm-down-pt-0 {
    padding-top: 0;
  }
  .sm-down-pb-0 {
    padding-bottom: 0;
  }
  .sm-down-py-0 {
    padding-block: 0;
  }
  .sm-down-pl-0 {
    padding-left: 0;
  }
  .sm-down-pr-0 {
    padding-right: 0;
  }
  .sm-down-px-0 {
    padding-inline: 0;
  }
  .sm-down-m-xs {
    margin: 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 (min-width: 36rem) {
  .sm-up-m-0 {
    margin: 0;
  }
  .sm-up-mt-0 {
    margin-top: 0;
  }
  .sm-up-mb-0 {
    margin-bottom: 0;
  }
  .sm-up-my-0 {
    margin-block: 0;
  }
  .sm-up-ml-0 {
    margin-left: 0;
  }
  .sm-up-mr-0 {
    margin-right: 0;
  }
  .sm-up-mx-0 {
    margin-inline: 0;
  }
  .sm-up-p-0 {
    padding: 0;
  }
  .sm-up-pt-0 {
    padding-top: 0;
  }
  .sm-up-pb-0 {
    padding-bottom: 0;
  }
  .sm-up-py-0 {
    padding-block: 0;
  }
  .sm-up-pl-0 {
    padding-left: 0;
  }
  .sm-up-pr-0 {
    padding-right: 0;
  }
  .sm-up-px-0 {
    padding-inline: 0;
  }
  .sm-up-m-xs {
    margin: 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: 48rem) {
  .md-up-m-0 {
    margin: 0;
  }
  .md-up-mt-0 {
    margin-top: 0;
  }
  .md-up-mb-0 {
    margin-bottom: 0;
  }
  .md-up-my-0 {
    margin-block: 0;
  }
  .md-up-ml-0 {
    margin-left: 0;
  }
  .md-up-mr-0 {
    margin-right: 0;
  }
  .md-up-mx-0 {
    margin-inline: 0;
  }
  .md-up-p-0 {
    padding: 0;
  }
  .md-up-pt-0 {
    padding-top: 0;
  }
  .md-up-pb-0 {
    padding-bottom: 0;
  }
  .md-up-py-0 {
    padding-block: 0;
  }
  .md-up-pl-0 {
    padding-left: 0;
  }
  .md-up-pr-0 {
    padding-right: 0;
  }
  .md-up-px-0 {
    padding-inline: 0;
  }
  .md-up-m-xs {
    margin: 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: 64rem) {
  .lg-up-m-0 {
    margin: 0;
  }
  .lg-up-mt-0 {
    margin-top: 0;
  }
  .lg-up-mb-0 {
    margin-bottom: 0;
  }
  .lg-up-my-0 {
    margin-block: 0;
  }
  .lg-up-ml-0 {
    margin-left: 0;
  }
  .lg-up-mr-0 {
    margin-right: 0;
  }
  .lg-up-mx-0 {
    margin-inline: 0;
  }
  .lg-up-p-0 {
    padding: 0;
  }
  .lg-up-pt-0 {
    padding-top: 0;
  }
  .lg-up-pb-0 {
    padding-bottom: 0;
  }
  .lg-up-py-0 {
    padding-block: 0;
  }
  .lg-up-pl-0 {
    padding-left: 0;
  }
  .lg-up-pr-0 {
    padding-right: 0;
  }
  .lg-up-px-0 {
    padding-inline: 0;
  }
  .lg-up-m-xs {
    margin: 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: 80rem) {
  .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);
  }
}
@media (min-width: 90rem) {
  .xxl-up-m-0 {
    margin: 0;
  }
  .xxl-up-mt-0 {
    margin-top: 0;
  }
  .xxl-up-mb-0 {
    margin-bottom: 0;
  }
  .xxl-up-my-0 {
    margin-block: 0;
  }
  .xxl-up-ml-0 {
    margin-left: 0;
  }
  .xxl-up-mr-0 {
    margin-right: 0;
  }
  .xxl-up-mx-0 {
    margin-inline: 0;
  }
  .xxl-up-p-0 {
    padding: 0;
  }
  .xxl-up-pt-0 {
    padding-top: 0;
  }
  .xxl-up-pb-0 {
    padding-bottom: 0;
  }
  .xxl-up-py-0 {
    padding-block: 0;
  }
  .xxl-up-pl-0 {
    padding-left: 0;
  }
  .xxl-up-pr-0 {
    padding-right: 0;
  }
  .xxl-up-px-0 {
    padding-inline: 0;
  }
  .xxl-up-m-xs {
    margin: 5px;
  }
  .xxl-up-mt-xs {
    margin-top: 5px;
  }
  .xxl-up-mb-xs {
    margin-bottom: 5px;
  }
  .xxl-up-my-xs {
    margin-block: 5px;
  }
  .xxl-up-ml-xs {
    margin-left: 5px;
  }
  .xxl-up-mr-xs {
    margin-right: 5px;
  }
  .xxl-up-mx-xs {
    margin-inline: 5px;
  }
  .xxl-up-p-xs {
    padding: 5px;
  }
  .xxl-up-pt-xs {
    padding-top: 5px;
  }
  .xxl-up-pb-xs {
    padding-bottom: 5px;
  }
  .xxl-up-py-xs {
    padding-block: 5px;
  }
  .xxl-up-pl-xs {
    padding-left: 5px;
  }
  .xxl-up-pr-xs {
    padding-right: 5px;
  }
  .xxl-up-px-xs {
    padding-inline: 5px;
  }
  .xxl-up-m-sm {
    margin: 15px;
  }
  .xxl-up-mt-sm {
    margin-top: 15px;
  }
  .xxl-up-mb-sm {
    margin-bottom: 15px;
  }
  .xxl-up-my-sm {
    margin-block: 15px;
  }
  .xxl-up-ml-sm {
    margin-left: 15px;
  }
  .xxl-up-mr-sm {
    margin-right: 15px;
  }
  .xxl-up-mx-sm {
    margin-inline: 15px;
  }
  .xxl-up-p-sm {
    padding: 15px;
  }
  .xxl-up-pt-sm {
    padding-top: 15px;
  }
  .xxl-up-pb-sm {
    padding-bottom: 15px;
  }
  .xxl-up-py-sm {
    padding-block: 15px;
  }
  .xxl-up-pl-sm {
    padding-left: 15px;
  }
  .xxl-up-pr-sm {
    padding-right: 15px;
  }
  .xxl-up-px-sm {
    padding-inline: 15px;
  }
  .xxl-up-m-md {
    margin: 30px;
  }
  .xxl-up-mt-md {
    margin-top: 30px;
  }
  .xxl-up-mb-md {
    margin-bottom: 30px;
  }
  .xxl-up-my-md {
    margin-block: 30px;
  }
  .xxl-up-ml-md {
    margin-left: 30px;
  }
  .xxl-up-mr-md {
    margin-right: 30px;
  }
  .xxl-up-mx-md {
    margin-inline: 30px;
  }
  .xxl-up-p-md {
    padding: 30px;
  }
  .xxl-up-pt-md {
    padding-top: 30px;
  }
  .xxl-up-pb-md {
    padding-bottom: 30px;
  }
  .xxl-up-py-md {
    padding-block: 30px;
  }
  .xxl-up-pl-md {
    padding-left: 30px;
  }
  .xxl-up-pr-md {
    padding-right: 30px;
  }
  .xxl-up-px-md {
    padding-inline: 30px;
  }
  .xxl-up-m-lg {
    margin: 50px;
  }
  .xxl-up-mt-lg {
    margin-top: 50px;
  }
  .xxl-up-mb-lg {
    margin-bottom: 50px;
  }
  .xxl-up-my-lg {
    margin-block: 50px;
  }
  .xxl-up-ml-lg {
    margin-left: 50px;
  }
  .xxl-up-mr-lg {
    margin-right: 50px;
  }
  .xxl-up-mx-lg {
    margin-inline: 50px;
  }
  .xxl-up-p-lg {
    padding: 50px;
  }
  .xxl-up-pt-lg {
    padding-top: 50px;
  }
  .xxl-up-pb-lg {
    padding-bottom: 50px;
  }
  .xxl-up-py-lg {
    padding-block: 50px;
  }
  .xxl-up-pl-lg {
    padding-left: 50px;
  }
  .xxl-up-pr-lg {
    padding-right: 50px;
  }
  .xxl-up-px-lg {
    padding-inline: 50px;
  }
  .xxl-up-m-xl {
    margin: 70px;
  }
  .xxl-up-mt-xl {
    margin-top: 70px;
  }
  .xxl-up-mb-xl {
    margin-bottom: 70px;
  }
  .xxl-up-my-xl {
    margin-block: 70px;
  }
  .xxl-up-ml-xl {
    margin-left: 70px;
  }
  .xxl-up-mr-xl {
    margin-right: 70px;
  }
  .xxl-up-mx-xl {
    margin-inline: 70px;
  }
  .xxl-up-p-xl {
    padding: 70px;
  }
  .xxl-up-pt-xl {
    padding-top: 70px;
  }
  .xxl-up-pb-xl {
    padding-bottom: 70px;
  }
  .xxl-up-py-xl {
    padding-block: 70px;
  }
  .xxl-up-pl-xl {
    padding-left: 70px;
  }
  .xxl-up-pr-xl {
    padding-right: 70px;
  }
  .xxl-up-px-xl {
    padding-inline: 70px;
  }
  .xxl-up-m-xxl {
    margin: 140px;
  }
  .xxl-up-mt-xxl {
    margin-top: 140px;
  }
  .xxl-up-mb-xxl {
    margin-bottom: 140px;
  }
  .xxl-up-my-xxl {
    margin-block: 140px;
  }
  .xxl-up-ml-xxl {
    margin-left: 140px;
  }
  .xxl-up-mr-xxl {
    margin-right: 140px;
  }
  .xxl-up-mx-xxl {
    margin-inline: 140px;
  }
  .xxl-up-p-xxl {
    padding: 140px;
  }
  .xxl-up-pt-xxl {
    padding-top: 140px;
  }
  .xxl-up-pb-xxl {
    padding-bottom: 140px;
  }
  .xxl-up-py-xxl {
    padding-block: 140px;
  }
  .xxl-up-pl-xxl {
    padding-left: 140px;
  }
  .xxl-up-pr-xxl {
    padding-right: 140px;
  }
  .xxl-up-px-xxl {
    padding-inline: 140px;
  }
  .xxl-up-m-fluid {
    margin: var(--side-margin);
  }
  .xxl-up-mt-fluid {
    margin-top: var(--side-margin);
  }
  .xxl-up-mb-fluid {
    margin-bottom: var(--side-margin);
  }
  .xxl-up-my-fluid {
    margin-block: var(--side-margin);
  }
  .xxl-up-ml-fluid {
    margin-left: var(--side-margin);
  }
  .xxl-up-mr-fluid {
    margin-right: var(--side-margin);
  }
  .xxl-up-mx-fluid {
    margin-inline: var(--side-margin);
  }
  .xxl-up-p-fluid {
    padding: var(--side-margin);
  }
  .xxl-up-pt-fluid {
    padding-top: var(--side-margin);
  }
  .xxl-up-pb-fluid {
    padding-bottom: var(--side-margin);
  }
  .xxl-up-py-fluid {
    padding-block: var(--side-margin);
  }
  .xxl-up-pl-fluid {
    padding-left: var(--side-margin);
  }
  .xxl-up-pr-fluid {
    padding-right: var(--side-margin);
  }
  .xxl-up-px-fluid {
    padding-inline: var(--side-margin);
  }
}
/*
|
| RATIOS
|----------------
|
*/
/*
|
| BACKGROUND COLORS
|----------------
|
*/
.bg-black {
  background-color: #000;
}

.bg-grey {
  background-color: #2d3439;
}

.bg-orange {
  background-color: #ff6420;
}

.bg-blue-dark3 {
  background-color: #19303d;
}

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

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

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

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

/*
|
| TEXT ALIGNS
|----------------
|
*/
.ta-r {
  text-align: right;
}

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

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

.ta-j {
  text-align: justify;
}

@media (max-width: 89.98rem) {
  .xxl-down-ta-r {
    text-align: right;
  }
  .xxl-down-ta-l {
    text-align: left;
  }
  .xxl-down-ta-c {
    text-align: center;
  }
  .xxl-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 79.98rem) {
  .xl-down-ta-r {
    text-align: right;
  }
  .xl-down-ta-l {
    text-align: left;
  }
  .xl-down-ta-c {
    text-align: center;
  }
  .xl-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 63.98rem) {
  .lg-down-ta-r {
    text-align: right;
  }
  .lg-down-ta-l {
    text-align: left;
  }
  .lg-down-ta-c {
    text-align: center;
  }
  .lg-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 47.98rem) {
  .md-down-ta-r {
    text-align: right;
  }
  .md-down-ta-l {
    text-align: left;
  }
  .md-down-ta-c {
    text-align: center;
  }
  .md-down-ta-j {
    text-align: justify;
  }
}
@media (max-width: 35.98rem) {
  .sm-down-ta-r {
    text-align: right;
  }
  .sm-down-ta-l {
    text-align: left;
  }
  .sm-down-ta-c {
    text-align: center;
  }
  .sm-down-ta-j {
    text-align: justify;
  }
}
@media (min-width: 36rem) {
  .sm-up-ta-r {
    text-align: right;
  }
  .sm-up-ta-l {
    text-align: left;
  }
  .sm-up-ta-c {
    text-align: center;
  }
  .sm-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 48rem) {
  .md-up-ta-r {
    text-align: right;
  }
  .md-up-ta-l {
    text-align: left;
  }
  .md-up-ta-c {
    text-align: center;
  }
  .md-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 64rem) {
  .lg-up-ta-r {
    text-align: right;
  }
  .lg-up-ta-l {
    text-align: left;
  }
  .lg-up-ta-c {
    text-align: center;
  }
  .lg-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 80rem) {
  .xl-up-ta-r {
    text-align: right;
  }
  .xl-up-ta-l {
    text-align: left;
  }
  .xl-up-ta-c {
    text-align: center;
  }
  .xl-up-ta-j {
    text-align: justify;
  }
}
@media (min-width: 90rem) {
  .xxl-up-ta-r {
    text-align: right;
  }
  .xxl-up-ta-l {
    text-align: left;
  }
  .xxl-up-ta-c {
    text-align: center;
  }
  .xxl-up-ta-j {
    text-align: justify;
  }
}
/*
|
| FONT FAMILIES
|----------------
|
*/
.ff-default {
  font-family: "raleway", sans-serif;
}

.ff-custom {
  font-family: "general", sans-serif;
}

.ff-extra {
  font-family: "general", sans-serif;
}

/*
|
| FONT SIZES
|----------------
|
*/
.fs-xs {
  font-size: 0.75rem !important;
}

.fs-sm {
  font-size: 1rem !important;
}

.fs-md {
  font-size: 1.125rem !important;
}

.fs-lg {
  font-size: 1.75rem !important;
}

.fs-xl {
  font-size: 2.25rem !important;
}

.fs-xxl {
  font-size: 2.25rem !important;
}

/*
|
| FONT WEIGHTS
|----------------
|
*/
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/*
|
| LINE HEIGHTS
|----------------
|
*/
.lh-xs {
  line-height: 1;
}

.lh-sm {
  line-height: 1.2;
}

.lh-md {
  line-height: 1.5;
}

.lh-lg {
  line-height: 1.6;
}

.lh-xl {
  line-height: 1.8;
}

.lh-xxl {
  line-height: 2;
}

/*
|
| LETTER SPACING
|----------------
|
*/
/*
|
| TITLES
|----------------
|
*/
.title-xs {
  font-family: "general", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.8822222222vw + 0.5rem, 1.694rem);
}

.title-sm {
  font-family: "general", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.2222222222vw + 0.5rem, 2rem);
}

.title-md {
  font-family: "general", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.0555555556vw + 0.5rem, 2.75rem);
}

.title-lg {
  font-family: "general", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(3rem, 3.75vw + 0.5rem, 3.375rem);
}

.title-xl {
  font-family: "general", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(3.688rem, 4.4444444444vw + 0.5rem, 4rem);
}

.title-xxl, #page-404 .section-content .item-title {
  font-family: "general", sans-serif;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: clamp(5rem, 6.25vw + 0.5rem, 5.625rem);
}

/*
|
| COLORS
|----------------
|
*/
.c-black {
  color: #000;
}

.c-grey {
  color: #2d3439;
}

.c-orange {
  color: #ff6420;
}

.c-blue-dark3 {
  color: #19303d;
}

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

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

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

.c-white {
  color: #fff;
}

: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: "raleway";
  src: url(../fonts/Raleway-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "raleway";
  src: url(../fonts/Raleway-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "raleway";
  src: url(../fonts/Raleway-SemiBold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "raleway";
  src: url(../fonts/Raleway-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "General Sans";
  src: url(../fonts/GeneralSans-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
}
/*
|--------------------------
|      DEFAULT & RESET
|--------------------------
*/
* {
  margin: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

body {
  font-family: "raleway", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.m-a {
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #ff6420;
  font-weight: 400;
}

h1 {
  font-size: 59px;
  line-height: 64px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #1a4965;
}
@media (max-width: 79.98rem) {
  h1 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 63.98rem) {
  h1 {
    font-size: 42px;
    line-height: initial;
  }
}
@media (max-width: 47.98rem) {
  h1 {
    font-size: 34px;
    line-height: initial;
  }
}

h2 {
  font-size: 59px;
  line-height: 64px;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #1a4965;
}
@media (max-width: 79.98rem) {
  h2 {
    font-size: 48px;
    line-height: 52px;
  }
}
@media (max-width: 63.98rem) {
  h2 {
    font-size: 42px;
    line-height: initial;
  }
}
@media (max-width: 47.98rem) {
  h2 {
    font-size: 34px;
    line-height: initial;
  }
}

h3 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-transform: uppercase;
  color: #19303d;
}
@media (max-width: 79.98rem) {
  h3 {
    font-size: 42px;
    line-height: initial;
  }
}
@media (max-width: 63.98rem) {
  h3 {
    font-size: 34px;
    line-height: initial;
  }
}
@media (max-width: 47.98rem) {
  h3 {
    font-size: 28px;
    line-height: initial;
  }
}

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

a,
button {
  cursor: pointer;
}

button {
  text-transform: inherit;
}

.suptitle {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 79.98rem) {
  .suptitle {
    font-size: 15px;
  }
}

.title {
  margin-top: 5px;
}

a {
  text-decoration: none;
}

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

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

.rel {
  position: relative;
}

.zi-1 {
  position: relative;
  z-index: 1;
}

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

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

.txt-r {
  text-align: right;
}
@media (max-width: 47.98rem) {
  .txt-r {
    text-align: initial;
  }
}

.fl-r {
  float: right;
}
@media (max-width: 47.98rem) {
  .fl-r {
    float: initial;
  }
}

.h100vh {
  height: 100vh;
}

.bg-grey-light2 {
  background-color: #faf8f8;
}

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

.bg-blue-dark2 {
  background-color: #0d2533;
}

.disp-desk {
  display: block;
}
@media (max-width: 63.98rem) {
  .disp-desk {
    display: none;
  }
}

.disp-mob {
  display: none;
}
@media (max-width: 63.98rem) {
  .disp-mob {
    display: block;
  }
}

.disp-desk-sm {
  display: block;
}
@media (max-width: 47.98rem) {
  .disp-desk-sm {
    display: none;
  }
}

.disp-mob-sm {
  display: none;
}
@media (max-width: 47.98rem) {
  .disp-mob-sm {
    display: block;
  }
}

.w100 {
  width: 470px;
  position: relative;
}

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

.w-100 {
  width: 100%;
}

.btn {
  display: block;
  width: fit-content;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff6420;
  border: 1px solid #ff6420;
  transition: all ease 0.3s;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
}
.btn:hover {
  color: #ff6420;
  background: transparent;
  transition: all ease 0.3s;
}
.btn.btn-alt {
  color: white;
  background: transparent;
  border: 1px solid white;
}
.btn.btn-alt:hover {
  color: #ffffff;
  background: #ff6420;
  border: 1px solid #ff6420;
}
.btn.btn-orange {
  color: #19303d;
  background: transparent;
  border: 1px solid #ff6420;
}
.btn.btn-orange:hover {
  color: #ffffff;
  background: #ff6420;
  border: 1px solid #ff6420;
}
.btn.btn-blue {
  color: #ffffff;
  background: #19303d;
  border: 1px solid #19303d;
}
.btn.btn-blue:hover {
  color: #19303d;
  background: transparent;
  border: 1px solid #19303d;
}

.icon {
  content: "";
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: block;
  margin-right: 15px;
  background-image: url(../img/icon.svg);
}

.icon-dc {
  content: "";
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: block;
  margin-right: 15px;
  background-size: cover;
}

.ic-l,
.ic-r {
  max-width: 250px;
}

#page-cms h1 {
  font-size: 3rem;
}
@media (max-width: 47.98rem) {
  #page-cms h1 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

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

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

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

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

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

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

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

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

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

@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}
.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: var(--plyr-badge-background, hsl(216, 15%, 34%));
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 4px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control:focus-visible {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container::after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7) - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  align-items: center;
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--forward:focus-visible::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: calc(100% - calc(var(--plyr-control-spacing, 10px) * 0.7) * 2);
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--back::before {
  background: var(--plyr-menu-back-border-color, hsl(216, 15%, 88%));
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back:focus-visible::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio]:focus-visible::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(34.68, 39.576, 46.92, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  overflow: hidden;
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  display: block;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  appearance: none;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  transition: box-shadow 0.3s ease;
  user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type=range]:focus {
  outline: 0;
}
.plyr--full-ui input[type=range]:focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-moz-range-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-ms-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}

.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "\2044";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
}

.plyr__progress__buffer {
  -webkit-appearance: none; /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(34.68, 39.576, 46.92, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(34.68, 39.576, 46.92, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(34.68, 39.576, 46.92, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193.4175, 199.8435, 209.4825, 0.6));
}

.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  align-items: center;
  display: flex;
  position: relative;
}
.plyr__volume input[type=range] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  max-width: 90px;
  min-width: 60px;
  position: relative;
  z-index: 2;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, hsl(216, 15%, 34%));
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control:focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193.4175, 199.8435, 209.4825, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193.4175, 199.8435, 209.4825, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193.4175, 199.8435, 209.4825, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(34.68, 39.576, 46.92, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(34.68, 39.576, 46.92, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(34.68, 39.576, 46.92, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: var(--plyr-audio-progress-buffered-background, rgba(193.4175, 199.8435, 209.4825, 0.6));
}

.plyr--video {
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  border-radius: inherit;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(34.68, 39.576, 46.92, 0.15), 0 0 0 1px rgba(34.68, 39.576, 46.92, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads::after {
  background: hsl(216, 15%, 16%);
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty::after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: hsl(216, 15%, 79%);
  border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container::after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__image-container::after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}
.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}
.plyr__preview-thumb__time-container {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

.button {
  position: relative;
  display: inline-block;
  padding: 14px 32px 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.button-title {
  font-size: 0.813rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.button--c-white {
  color: #fff;
}
.button--c-black {
  color: #000;
}
.button--bg-transparent {
  border: 1px solid;
}
.button--bg-orange {
  color: #fff;
  background-color: #ff6420;
}
.button--bg-orange:hover {
  background-color: #eb4800;
}
.button--bg-black {
  color: #fff;
  background-color: #000;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: var(--side-margin);
  overflow: auto;
  transition: background-color 0.5s ease;
}
.modal-inner {
  padding: var(--side-margin);
  margin: auto;
  background-color: #FFF;
  color: #000;
  opacity: 0;
  transform: translateY(var(--side-margin));
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.modal[role=dialog] .modal-inner {
  width: 100%;
  max-width: 54rem;
}
.modal[role=alertdialog] .modal-inner {
  width: fit-content;
}
.modal[data-opened=true] {
  background-color: rgba(0, 0, 0, 0.9);
}
.modal[data-opened=true] .modal-inner {
  opacity: 1;
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  display: none;
}
.page-loader.active {
  display: flex;
}
.page-loader .item-content {
  width: 100%;
  height: 100vh;
  text-align: center;
}
.page-loader .item-content .block-logo {
  width: inherit;
}
.page-loader .item-content .block-logo img {
  height: 60px;
}
.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;
  animation: loadbar 1.2s cubic-bezier(0.92, 0, 0.09, 1);
  transform-origin: left top;
}

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

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

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

[data-kira-item=counter] {
  position: relative;
}
[data-kira-item=counter]::before {
  visibility: hidden;
  content: attr(data-counter-goal);
}
[data-kira-item=counter] .counter-value {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  white-space: nowrap;
}

body.menu-active {
  overflow: hidden;
}

/*
|
| Header
|---------
*/
#header {
  top: 0;
  width: 100%;
  z-index: 10;
  display: block;
  position: fixed;
  transition: all ease 0.5s;
  box-shadow: 0px 12px 56px rgba(6, 28, 61, 0.1);
  background: white;
}
@media (max-width: 63.98rem) {
  #header {
    padding: 17px 0;
  }
}
@media (max-width: 47.98rem) {
  #header {
    padding: 5px 0;
  }
}
#header .header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 79.98rem) {
  #header .header-container .btn {
    padding: 10px 10px;
    text-align: center;
  }
}
@media (max-width: 63.98rem) {
  #header .header-container .btn {
    position: absolute;
    right: 50px;
  }
}
@media (max-width: 47.98rem) {
  #header .header-container .btn {
    display: none;
  }
}
#header .header-container .item-logo {
  height: 60px;
}
@media (max-width: 47.98rem) {
  #header .header-container .item-logo {
    margin: auto;
  }
}
#header .header-container .item-logo img {
  height: 60px;
  width: 200px;
}
@media (max-width: 79.98rem) {
  #header .header-container .item-logo img {
    width: 150px;
  }
}
#header .header-container .item-nav {
  margin: auto;
  display: none;
}
#header .header-container .item-nav .item-menu {
  display: flex;
}
#header .header-container .item-nav .item-menu li {
  margin-right: 10px;
  margin-left: 10px;
  position: relative;
  cursor: pointer;
}
#header .header-container .item-nav .item-menu li .item-link {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a4965;
  padding: 34px 0;
  display: block;
}
@media (max-width: 79.98rem) {
  #header .header-container .item-nav .item-menu li .item-link {
    font-size: 12px;
  }
}
#header .header-container .item-nav .item-menu li .item-link:after {
  content: "";
  width: 0%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 30px;
  margin: auto;
  background-color: #ff6420;
  transition: all ease 0.3s;
}
#header .header-container .item-nav .item-menu li .item-link:hover {
  position: relative;
}
#header .header-container .item-nav .item-menu li .item-link:hover:after {
  content: "";
  bottom: 30px;
  width: 100%;
  transition: all ease 0.3s;
}
#header .header-container .item-nav .item-menu li.active {
  position: relative;
}
#header .header-container .item-nav .item-menu li.active .item-link:after {
  content: "";
  opacity: 1;
  left: 0;
  width: 100%;
  transition: all ease 0.3s;
}
#header .header-container .item-nav .item-menu li.besoins, #header .header-container .item-nav .item-menu li.savoirfaire, #header .header-container .item-nav .item-menu li.bureaux {
  position: relative;
}
#header .header-container .item-nav .item-menu li.besoins .item-link:before, #header .header-container .item-nav .item-menu li.savoirfaire .item-link:before, #header .header-container .item-nav .item-menu li.bureaux .item-link:before {
  content: "";
  background-image: url(../img/arr-menu.svg);
  height: 7px;
  width: 10px;
  display: block;
  transform: rotate(0deg);
  margin-top: 10px;
  margin-left: 6px;
  transition: all ease 0.3s;
  background-size: cover;
  float: right;
}
#header .header-container .item-nav .item-menu li.besoins.active .item-link:before, #header .header-container .item-nav .item-menu li.savoirfaire.active .item-link:before, #header .header-container .item-nav .item-menu li.bureaux.active .item-link:before {
  content: "";
  transform: rotate(-180deg);
  transition: all ease 0.3s;
}
#header .header-container .item-nav .item-menu li.savoirfaire .block-elem {
  min-height: 160px;
  transition: all ease 0.3s;
}
@media (max-width: 47.98rem) {
  #header .header-container .item-nav .item-menu li.savoirfaire .block-elem {
    min-height: initial;
  }
}
#header .header-container .item-nav .item-menu li.savoirfaire .block-elem:hover {
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.12) !important;
  transition: all ease 0.3s;
}
#header .header-container .item-nav .item-menu li.savoirfaire .block-elem .title {
  height: 100%;
}
#header .header-container .item-nav .item-menu li.savoirfaire .block-elem .title .tax-arr-menu {
  top: initial;
  bottom: 0;
}
#header .header-container .item-nav .item-menu li .sm-menu {
  border-radius: 0px;
  border: 0px;
  top: 92px;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  padding: 15px;
  background: #faf8f8;
  box-shadow: 0px 6px 8px -6px rgba(24, 39, 75, 0.12), 0px 8px 16px -6px rgba(24, 39, 75, 0.08);
  z-index: 9;
  display: none;
  top: 96px;
  position: fixed;
  overflow: hidden scroll;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu {
  padding-top: 10px;
  padding-bottom: 10px;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .intro .title {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a4965;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .intro .text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #2d3439;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem {
  background: white;
  padding: 30px 30px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem .title {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #19303d;
  display: block;
}
@media (max-width: 79.98rem) {
  #header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem .title {
    font-size: 16px;
  }
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem .text {
  display: block;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem .link {
  width: 90%;
  display: block;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li {
  margin: 0;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li a {
  padding: 12px 0;
  width: calc(100% - 15px);
  display: block;
  position: relative;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li a .arr {
  position: absolute;
  right: -15px;
  height: 40px;
  width: 40px;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li a .arr:before {
  content: "";
  background-position: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: block;
  transform: rotate(0deg);
  margin-left: 40px;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 0;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li a .arr:after {
  content: "";
  background-image: url(../img/arr-submenu.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li:after {
  content: "";
  opacity: 0.3;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: grey;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li:hover a .arr:before {
  content: "";
  background-color: #ff6420;
  transition: all ease 0.3s;
}
#header .header-container .item-nav .item-menu li .sm-menu .block-ss-menu .content .block-elem ul li:hover a .arr:after {
  transition: all ease 0.3s;
  background-image: url(../img/arr-submenu-w.svg);
}
#header .header-container .item-nav .item-menu li.besoins .sm-menu, #header .header-container .item-nav .item-menu li.bureaux .sm-menu {
  max-height: 730px;
  bottom: 0px;
}
@media (min-width: 64rem) {
  #header .header-container .item-nav {
    display: flex;
    align-items: center;
  }
}
#header .lang-container {
  position: relative;
  display: inline-flex;
  top: 1px;
  cursor: pointer;
}
#header .lang-container ul {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  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;
}
#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: #19303d;
  border-radius: 2px;
}
#header .btn-menu > .item-burger > span:nth-child(2) {
  margin: 6px 0;
}
@media (min-width: 64rem) {
  #header .btn-menu {
    display: none;
  }
}

/*
|
| Menu
|-------
*/
#mobile-menu {
  z-index: 9;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: auto;
  visibility: hidden;
  text-align: center;
  margin: auto;
  position: fixed;
}
#mobile-menu .item-container {
  padding-top: 94px;
  padding-bottom: 20px;
}
#mobile-menu .item-container .item-container-item {
  width: 100%;
  margin: auto;
  text-align: left;
}
#mobile-menu .item-container .item-container-item > li {
  position: relative;
}
#mobile-menu .item-container .item-container-item > li:not(:last-child) {
  margin-bottom: 2px;
}
#mobile-menu .item-container .item-container-item > li .item-link {
  text-transform: uppercase;
  color: #141414;
  font-size: 20px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  padding: 15px;
  width: 90%;
  display: block;
  cursor: pointer;
}
@media (max-width: 35.98rem) {
  #mobile-menu .item-container .item-container-item > li .item-link {
    padding: 5px 15px;
  }
}
#mobile-menu .item-container .item-container-item > li.active .arr-child {
  background-image: url(../img/bottom.svg);
  transform: rotate(-180deg);
  transition: all ease 0.3s;
}
#mobile-menu .item-container .item-link-block {
  position: relative;
  display: inline-block;
}
#mobile-menu .item-container .item-link-block .item-link {
  font-size: 20px;
  margin-top: 10px;
}
#mobile-menu .item-container .arr-child {
  background-image: url(../img/bottom.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all ease 0.3s;
  cursor: pointer;
  top: 25px;
  display: block;
  position: absolute;
  right: 15px;
  height: 12px;
  width: 25px;
}
@media (max-width: 35.98rem) {
  #mobile-menu .item-container .arr-child {
    top: 15px;
  }
}
#mobile-menu .item-container .nav-drop {
  position: relative;
}
#mobile-menu .item-container .nav-drop .title {
  padding: 10px 0 5px 0;
  margin-left: 15px;
  font-size: 19px;
  width: 90%;
  text-transform: uppercase;
}
#mobile-menu .item-container .nav-drop li a {
  padding: 5px 0;
  margin-left: 15px;
  text-transform: initial;
  font-size: 18px;
  width: 90%;
}
#mobile-menu .item-socials-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
#mobile-menu .item-socials-container .item-socials {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  margin-bottom: 15px;
}
#mobile-menu .item-socials-container .item-socials a {
  font-size: 25px;
}
#mobile-menu .item-socials-container .item-socials a:not(:last-child) {
  margin-right: 20px;
}
#mobile-menu .item-socials-container .item-socials a {
  font-size: 20px;
}
#mobile-menu .block-btn-mob {
  background: none !important;
}
#mobile-menu .block-btn-mob .btn-mob {
  color: #ff6420;
  font-size: 20px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}

#footer {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  background-color: #0d2533;
}
#footer .logos {
  display: flex;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 63.98rem) {
  #footer .logos {
    margin: auto;
    display: block;
    text-align: center;
  }
}
@media (max-width: 35.98rem) {
  #footer .logos img {
    max-width: 250px;
  }
}
#footer .question {
  background: #133549;
  border-radius: 8px;
  width: 100%;
  padding: 30px;
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 27px;
  color: white;
}
@media (max-width: 63.98rem) {
  #footer .question {
    text-align: center;
  }
  #footer .question a {
    margin: auto;
  }
}
#footer ul {
  display: flex;
  float: right;
}
@media (max-width: 79.98rem) {
  #footer ul {
    display: block;
    float: initial;
  }
}
@media (max-width: 63.98rem) {
  #footer ul {
    display: initial;
    text-align: center;
  }
}
#footer ul li {
  margin-right: 30px;
  display: inline-block;
}
@media (max-width: 63.98rem) {
  #footer ul li {
    margin-right: 0;
    display: block;
  }
}
#footer ul li a {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: white;
  text-transform: uppercase;
  transition: all ease 0.3s;
}
@media (max-width: 79.98rem) {
  #footer ul li a {
    font-size: 12px;
  }
}
@media (max-width: 63.98rem) {
  #footer ul li a {
    font-size: 14px;
  }
}
#footer ul li a:hover {
  color: #ff6420;
  transition: all ease 0.3s;
}
#footer ul li a img:hover {
  opacity: 0.6;
  transition: all ease 0.3s;
}
#footer ul li:last-child {
  margin-right: 0;
}
#footer .copy {
  border-top: 1px solid #e8f6fc;
}
@media (max-width: 63.98rem) {
  #footer .copy {
    border: none;
  }
}
#footer .copy .date {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #eef1f4;
}
@media (max-width: 63.98rem) {
  #footer .copy .date {
    text-align: center;
  }
}
#footer .copy .script-cookies button {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: white;
  text-transform: uppercase;
  border: none;
  padding: 0;
}
#footer .copy .script-cookies button:hover {
  background: none;
  color: #ff6420;
}

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

/*
|
| Custom card
|
| Use in news archive page
|--------------
*/
.custom-card {
  /*
  * 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);
}

.no-res {
  color: white;
  text-align: center;
}

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

/*
|
| 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-size: 32px;
  line-height: 40px;
}
@media (max-width: 47.98rem) {
  .cms h2 {
    font-size: 24px;
    line-height: 30px;
  }
}
.cms img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}
.cms img.aligncenter {
  margin: auto;
}
.cms p {
  color: #2d3439;
}
.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 {
  list-style: none;
}
.cms ul li {
  position: relative;
  list-style-type: none;
}
.cms ul li::before {
  content: "";
  background-color: #ff6420;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: -17px;
  font-size: 15px;
}
.cms ul li ul li {
  list-style: circle;
}
.cms ol li {
  list-style: decimal;
}
.cms a:not([class]) {
  text-decoration: underline;
}

#page-nous-connaitre.theme-alt .banner-hero-nous-connaitre .number-counter {
  color: #c0c9c9;
}
#page-nous-connaitre.theme-alt .banner-hero-nous-connaitre .unity:before {
  content: "";
  background: #c0c9c9;
}
#page-nous-connaitre.theme-alt .bloc_double_cols .col-left {
  color: #000;
  background: #e9b528;
}
#page-nous-connaitre.theme-alt .bloc_double_cols .col-left h2,
#page-nous-connaitre.theme-alt .bloc_double_cols .col-left p,
#page-nous-connaitre.theme-alt .bloc_double_cols .col-left .text {
  color: #000;
}
#page-nous-connaitre.theme-alt .bloc_colonnes {
  background-color: #c0c9c9;
}
#page-nous-connaitre.theme-alt .bloc_colonnes h2 {
  color: #000;
}
#page-nous-connaitre.theme-alt .bloc_colonnes .elem {
  background: #000;
  border-bottom: 2px solid #000;
}
#page-nous-connaitre.theme-alt .bloc_colonnes .elem li::before {
  content: "";
  background-color: #fff;
}

/*
|--------------------
|     PAGE HOME
|--------------------
*/
#page-home {
  overflow: hidden;
}

/*
|--------------------
|      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(45, 52, 57, 0.6);
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 35.98rem) {
  .post-date .date {
    display: block;
  }
}

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

.single .banner-hero img {
  max-width: 100%;
}

.single-bureaux .banner-hero .logo-header {
  max-width: 260px;
}

.single-savoirfaire .banner-hero img {
  width: 100%;
}

.single-besoins .block-image-text .text {
  padding-left: 0 !important;
}
.single-besoins .block-image-text .bg-img {
  margin-top: initial;
}

.terms-single {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  background: linear-gradient(180deg, #4ec1f1 0%, #cbebf9 0.01%, #d5eef8 100%);
  border-radius: 16px;
  text-align: left;
  padding: 4px 20px;
  color: #19303d;
  padding: 6px 20px;
  margin-right: 15px;
  margin-bottom: 10px;
  display: inline-block;
}

.block-list-anchor {
  width: 100%;
  position: relative;
  display: block;
  background: white;
  border-bottom: 1px solid rgba(228, 228, 228, 0.9);
}
@media (max-width: 63.98rem) {
  .block-list-anchor {
    display: none;
  }
}
.block-list-anchor.anchor-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all ease 0.3s;
}
@media (max-width: 63.98rem) {
  .block-list-anchor.anchor-fixed {
    top: 155px;
  }
}
.block-list-anchor .list-anchor .item {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #19303d;
  opacity: 0.6;
  transition: all ease 0.3s;
}
.block-list-anchor .list-anchor .item span {
  padding: 34px 0;
  display: inline-block;
  position: relative;
  margin-right: 40px;
}
@media (max-width: 79.98rem) {
  .block-list-anchor .list-anchor .item span {
    margin-right: 20px;
  }
}
.block-list-anchor .list-anchor .item span:before {
  content: "";
  height: 0;
  width: 100%;
  display: block;
  background-color: #ff6420;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
}
.block-list-anchor .list-anchor .item:hover span, .block-list-anchor .list-anchor .item.active span {
  opacity: 1;
  transition: all ease 0.3s;
}
.block-list-anchor .list-anchor .item:hover span:before, .block-list-anchor .list-anchor .item.active span:before {
  content: "";
  height: 2px;
}
.block-list-anchor .list-anchor .block-btn {
  position: relative;
}
.block-list-anchor .list-anchor .block-btn .btn {
  position: absolute;
  right: 0;
}

.back {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  display: flex;
  align-items: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.back:before {
  content: "<";
  height: 40px;
  width: 40px;
  padding: 5px;
  border-radius: 50px;
  background-color: #ff6420;
  margin-right: 15px;
  color: white;
  font-size: 20px;
  text-align: center;
  opacity: 1;
  transition: all ease 0.4s;
}
.back:hover:before {
  opacity: 0.7;
  transition: all ease 0.4s;
}

/*
|--------------------
|       Contact
|--------------------
*/
#page-contact .img-contact img {
  max-width: 100%;
}
@media (max-width: 63.98rem) {
  #page-contact .img-contact {
    display: none;
  }
}

/*
|--------------------
|       404
|--------------------
*/
#page-404 {
  height: 100vh;
  width: 100%;
  z-index: 1;
  display: block;
  position: relative;
}
#page-404 .section-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  color: black;
  text-align: center;
}
#page-404 .section-content .item-title {
  color: black;
  font-size: 3vw;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 63.98rem) {
  #page-404 .section-content .item-title {
    font-size: 32px;
  }
}
#page-404 .section-content .message {
  font-size: 24px;
  color: black;
}
#page-404 .section-content .btn {
  margin: auto;
}

/*
|--------------------
|   Nous rejoindre
|--------------------
*/
#page-nous-rejoindre .banner-hero-nous-connaitre {
  background-color: #fff;
}
#page-nous-rejoindre .bloc_colonnes {
  background: #faf8f8;
}
#page-nous-rejoindre .bloc_colonnes h2 {
  color: #2d3439;
}
#page-nous-rejoindre .bloc_colonnes .elem {
  background: white;
  color: #19303d;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: none;
}
#page-nous-rejoindre .bloc_colonnes .elem .title,
#page-nous-rejoindre .bloc_colonnes .elem .suptitle,
#page-nous-rejoindre .bloc_colonnes .elem p,
#page-nous-rejoindre .bloc_colonnes .elem li,
#page-nous-rejoindre .bloc_colonnes .elem a {
  color: #19303d;
}
#page-nous-rejoindre .bloc_colonnes .elem .icon {
  border-bottom: initial;
  border-radius: 8px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: block;
  margin-right: 15px;
  background-image: url(../img/flower.png);
}

/*
|--------------------
|      NEWS
|--------------------
*/
#page-actualites-archive,
.actus {
  background-color: #0d202d;
}
#page-actualites-archive h1,
.actus h1 {
  color: white;
}
#page-actualites-archive .block-filters,
.actus .block-filters {
  vertical-align: middle;
  align-items: center;
}
#page-actualites-archive .block-filters .desc,
.actus .block-filters .desc {
  font-size: 18px;
  line-height: 28px;
  color: #37425e;
}
#page-actualites-archive .block-filters .filters,
.actus .block-filters .filters {
  float: right;
  display: flex;
}
@media (max-width: 63.98rem) {
  #page-actualites-archive .block-filters .filters,
  .actus .block-filters .filters {
    float: left;
    width: 100%;
    display: block;
  }
}
#page-actualites-archive .block-filters .filters li,
.actus .block-filters .filters li {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 25px;
  cursor: pointer;
  color: white;
}
@media (max-width: 63.98rem) {
  #page-actualites-archive .block-filters .filters li,
  .actus .block-filters .filters li {
    float: left;
    text-align: center;
    width: 100%;
  }
}
#page-actualites-archive .block-filters .filters li::after,
.actus .block-filters .filters li::after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #133549;
}
#page-actualites-archive .block-filters .filters li:hover, #page-actualites-archive .block-filters .filters li.active,
.actus .block-filters .filters li:hover,
.actus .block-filters .filters li.active {
  color: #ff6420;
}
#page-actualites-archive .block-filters .filters li:hover::after, #page-actualites-archive .block-filters .filters li.active::after,
.actus .block-filters .filters li:hover::after,
.actus .block-filters .filters li.active::after {
  content: "";
  background-color: #ff6420;
}
#page-actualites-archive .custom-card,
.actus .custom-card {
  color: #e8f6fc;
  background: #133549;
  border-radius: 4px;
  transition: all ease 0.3s;
}
#page-actualites-archive .custom-card h2,
.actus .custom-card h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #e8f6fc;
  overflow: hidden;
  text-transform: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 85px;
}
@media (max-width: 47.98rem) {
  #page-actualites-archive .custom-card h2,
  .actus .custom-card h2 {
    font-size: 18px;
    line-height: 26px;
    min-height: initial;
  }
}
#page-actualites-archive .custom-card .date,
.actus .custom-card .date {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #e8f6fc;
}
#page-actualites-archive .custom-card .cat,
.actus .custom-card .cat {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #19303d;
  background: linear-gradient(180deg, #4ec1f1 0%, #cbebf9 0.01%, #d5eef8 100%);
  border-radius: 16px;
}
#page-actualites-archive .custom-card .link svg,
.actus .custom-card .link svg {
  height: 15px;
  width: 20px;
  display: block;
  margin-left: 15px;
  transition: all ease 0.3s;
}
#page-actualites-archive .custom-card .terms,
.actus .custom-card .terms {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  background: linear-gradient(180deg, #4ec1f1 0%, #cbebf9 0.01%, #d5eef8 100%);
  border-radius: 16px;
  text-align: left;
  padding: 4px 20px;
  color: #19303d;
  padding: 6px 20px;
  float: right;
}
@media (max-width: 63.98rem) {
  #page-actualites-archive .custom-card .terms,
  .actus .custom-card .terms {
    float: left;
  }
}
#page-actualites-archive .custom-card:hover,
.actus .custom-card:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}
#page-actualites-archive .custom-card:hover .link svg,
.actus .custom-card:hover .link svg {
  margin-left: 20px;
  transition: all ease 0.3s;
}
#page-actualites-archive .list-container.loading,
.actus .list-container.loading {
  position: relative;
  display: block;
  inset: 0;
  z-index: 2;
  opacity: 1;
  transition: all ease 0.3s;
}
#page-actualites-archive .list-container.loading .custom-card,
.actus .list-container.loading .custom-card {
  opacity: 0.5;
  transition: all ease 0.3s;
}
#page-actualites-archive .list-container.loading::before,
.actus .list-container.loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
#page-actualites-archive .list-container.loading::after,
.actus .list-container.loading::after {
  z-index: 3 !important;
  display: block;
  width: 3.5rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(50% - 1.75rem);
  left: calc(50% - 1.75rem);
  z-index: 10;
  background-image: url(../img/puff-white.svg);
  background-position: center;
  background-size: contain;
  content: "";
}

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

/*
|--------------------
|      NEWS
|--------------------
*/
#page-presse-archive {
  background-color: #0d202d;
}
#page-presse-archive h1 {
  color: white;
}
#page-presse-archive .block-filters {
  vertical-align: middle;
  align-items: center;
}
#page-presse-archive .block-filters .desc {
  font-size: 18px;
  line-height: 28px;
  color: #37425e;
}
#page-presse-archive .block-filters .filters {
  float: right;
  display: flex;
}
@media (max-width: 63.98rem) {
  #page-presse-archive .block-filters .filters {
    float: left;
    width: 100%;
    display: block;
  }
}
#page-presse-archive .block-filters .filters li {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 25px;
  cursor: pointer;
  color: white;
}
@media (max-width: 63.98rem) {
  #page-presse-archive .block-filters .filters li {
    float: left;
    text-align: center;
    width: 50%;
  }
}
#page-presse-archive .block-filters .filters li::after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #133549;
}
#page-presse-archive .block-filters .filters li:hover, #page-presse-archive .block-filters .filters li.active {
  color: #ff6420;
}
#page-presse-archive .block-filters .filters li:hover::after, #page-presse-archive .block-filters .filters li.active::after {
  content: "";
  background-color: #ff6420;
}
#page-presse-archive .list-container .custom-card {
  color: #e8f6fc;
  background: #133549;
  border-radius: 4px;
  transition: all ease 0.3s;
}
#page-presse-archive .list-container .custom-card img {
  height: 250px;
  margin-top: 10px;
}
#page-presse-archive .list-container .custom-card .bg {
  width: 144px;
  height: 193px;
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
  background-size: cover;
  background-position: center;
}
#page-presse-archive .list-container .custom-card h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #e8f6fc;
  overflow: hidden;
  text-transform: inherit;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 47.98rem) {
  #page-presse-archive .list-container .custom-card h2 {
    font-size: 18px;
    line-height: 26px;
  }
}
#page-presse-archive .list-container .custom-card .date {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #e8f6fc;
}
#page-presse-archive .list-container .custom-card .cat {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #19303d;
  background: linear-gradient(180deg, #4ec1f1 0%, #cbebf9 0.01%, #d5eef8 100%);
  border-radius: 16px;
}
#page-presse-archive .list-container .custom-card .link {
  border: 1px solid #eef1f4;
  border-radius: 8px;
  padding: 6px 12px;
  width: fit-content;
}
#page-presse-archive .list-container .custom-card .link svg {
  height: 24px;
  width: 24px;
  display: block;
  margin-left: 15px;
  transition: all ease 0.3s;
}
#page-presse-archive .list-container .custom-card .terms {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  background: linear-gradient(180deg, #4ec1f1 0%, #cbebf9 0.01%, #d5eef8 100%);
  border-radius: 16px;
  text-align: left;
  padding: 4px 20px;
  color: #19303d;
  padding: 6px 20px;
  float: right;
}
@media (max-width: 63.98rem) {
  #page-presse-archive .list-container .custom-card .terms {
    float: left;
  }
}
#page-presse-archive .list-container .custom-card:hover {
  opacity: 0.8;
  transition: all ease 0.3s;
}
#page-presse-archive .list-container .custom-card:hover .link svg {
  transition: all ease 0.3s;
}
#page-presse-archive .list-container.loading {
  position: relative;
  display: block;
  inset: 0;
  z-index: 2;
  opacity: 1;
  transition: all ease 0.3s;
}
#page-presse-archive .list-container.loading .custom-card {
  opacity: 0.5;
  transition: all ease 0.3s;
}
#page-presse-archive .list-container.loading::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
#page-presse-archive .list-container.loading::after {
  z-index: 3 !important;
  display: block;
  width: 3.5rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(50% - 1.75rem);
  left: calc(50% - 1.75rem);
  z-index: 10;
  background-image: url(../img/puff-white.svg);
  background-position: center;
  background-size: contain;
  content: "";
}

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

.home-banner {
  position: relative;
  height: 100vh;
}
.home-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(25, 48, 61, 0) 18.41%, #19303d 66.41%);
}
.home-banner h1 {
  font-size: 65px;
  line-height: 80px;
}
@media (max-width: 79.98rem) {
  .home-banner h1 {
    font-size: 58px;
    line-height: initial;
  }
}
@media (max-width: 63.98rem) {
  .home-banner h1 {
    font-size: 52px;
  }
}
@media (max-width: 47.98rem) {
  .home-banner h1 {
    font-size: 44px;
  }
}

.icons-titles {
  margin-top: -180px;
  z-index: 1;
  position: relative;
}
.icons-titles .item-icon-title {
  letter-spacing: 2px;
  line-height: 2;
  padding: 0 15px;
}
.icons-titles .item-icon-title .block-icon-img {
  width: 64px;
  height: 64px;
  margin: auto;
}
.icons-titles .item-icon-title .block-icon-img img {
  max-width: 64px;
  height: auto;
  margin: 0 auto;
}
.icons-titles .item-icon-title h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 80rem) {
  .icons-titles .item-icon-title.el-lines {
    position: relative;
  }
  .icons-titles .item-icon-title.el-lines:before, .icons-titles .item-icon-title.el-lines:after {
    position: absolute;
    content: "";
    top: 50%;
    width: 110px;
    height: 1px;
    background-image: linear-gradient(90deg, transparent, rgba(237, 242, 248, 0.5));
  }
  .icons-titles .item-icon-title.el-lines:before {
    left: -60%;
  }
  .icons-titles .item-icon-title.el-lines:after {
    right: -60%;
  }
}

.bloc_double_cols {
  position: relative;
  background-color: #fff;
}
.bloc_double_cols .block-left .col-left {
  color: white;
  margin-top: -40px;
  margin-bottom: 80px;
  background-color: #19303d;
}
@media (max-width: 63.98rem) {
  .bloc_double_cols .block-left .col-left {
    margin-bottom: 0px;
  }
}
.bloc_double_cols .block-left .col-left h2 {
  color: white;
}
.bloc_double_cols .block-left .col-left .text {
  color: #c9cfd4;
}
.bloc_double_cols .block-left .col-left .text p {
  color: #c9cfd4;
}
.bloc_double_cols .block-right {
  inset: 0;
  position: absolute;
}
@media (max-width: 63.98rem) {
  .bloc_double_cols .block-right {
    position: relative;
  }
}
.bloc_double_cols .block-right .col-right {
  margin-top: 40px;
}
@media (max-width: 63.98rem) {
  .bloc_double_cols .block-right .col-right {
    margin-top: 0px;
  }
}
.bloc_double_cols .block-right .col-right .suptitle {
  color: #ff6420;
}

.expertises {
  position: relative;
  overflow-x: hidden;
}
.expertises .block-elem {
  background: white;
  padding: 30px 30px;
  border-radius: 10px;
  position: relative;
  background: white;
  padding: 30px 30px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  transition: all ease 0.3s;
  border-radius: 10px;
}
@media (max-width: 63.98rem) {
  .expertises .block-elem {
    padding: 20px;
  }
}
.expertises .block-elem:hover {
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.12) !important;
  transition: all ease 0.3s;
}
.expertises .block-elem .section-element-container {
  overflow: hidden;
  width: 100%;
  height: 130px;
  position: relative;
}
@media (max-width: 47.98rem) {
  .expertises .block-elem .section-element-container {
    display: flex;
    vertical-align: middle;
    align-items: center;
    height: initial;
    min-height: 46px;
  }
}
.expertises .block-elem .section-element-container .title {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #19303d;
  margin: 0 0 15px 0;
  display: block;
  hyphens: auto;
}
@media (max-width: 79.98rem) {
  .expertises .block-elem .section-element-container .title {
    font-size: 19px;
    line-height: 24px;
  }
}
@media (max-width: 63.98rem) {
  .expertises .block-elem .section-element-container .title {
    margin: 0;
    width: calc(100% - 50px);
  }
}
.expertises .block-elem .section-element-container .text {
  display: block;
}
.expertises .block-elem .section-element-container ul li {
  margin: 0;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.expertises .block-elem .section-element-container ul li a {
  padding: 12px 0;
  width: calc(100% - 15px);
  display: block;
  position: relative;
}
.expertises .block-elem .section-element-container ul li a .arr {
  position: absolute;
  right: -15px;
  top: 4px;
  height: 40px;
  width: 40px;
}
.expertises .block-elem .section-element-container ul li a .arr:before {
  content: "";
  background-position: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: block;
  transform: rotate(0deg);
  margin-left: 40px;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 0;
}
.expertises .block-elem .section-element-container ul li a .arr:after {
  content: "";
  background-image: url(../img/arr-submenu.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}
.expertises .block-elem .section-element-container ul li:after {
  content: "";
  opacity: 0.3;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: grey;
}
.expertises .block-elem .section-element-container ul li:hover a .arr:before {
  content: "";
  background-color: #ff6420;
  transition: all ease 0.3s;
}
.expertises .block-elem .section-element-container ul li:hover a .arr:after {
  transition: all ease 0.3s;
  background-image: url(../img/arr-submenu-w.svg);
}
.expertises .swiper-arr {
  right: 0;
  width: 90px;
  top: 12px;
  position: absolute;
}
@media (max-width: 63.98rem) {
  .expertises .swiper-arr {
    position: relative;
  }
}
.expertises .swiper-arr .swiper-btn-arr {
  border-radius: 28px;
  background: #ff6420;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
.expertises .swiper-arr .swiper-btn-arr::after {
  content: "";
  background-image: url(../img/arr-submenu-w.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}
.expertises .swiper-arr .swiper-btn-arr.swiper-btn-prev {
  float: left;
}
.expertises .swiper-arr .swiper-btn-arr.swiper-btn-prev::after {
  content: "";
  transform: rotate(180deg);
}
.expertises .swiper-arr .swiper-btn-arr.swiper-btn-next {
  float: right;
}

.tax-link {
  padding: 12px 0;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 15px;
  transition: all ease 0.3s;
}
@media (max-width: 35.98rem) {
  .tax-link {
    bottom: initial;
  }
}
.tax-link:hover {
  opacity: 0.7;
  transition: all ease 0.3s;
}
.tax-link .arr {
  position: absolute;
  right: -15px;
  top: 4px;
  height: 40px;
  width: 40px;
}
.tax-link .arr:before {
  content: "";
  background-position: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: block;
  transform: rotate(0deg);
  margin-left: 40px;
  background-size: cover;
  position: absolute;
  right: 0;
  background-color: #ff6420;
  transition: all ease 0.3s;
}
.tax-link .arr:after {
  content: "";
  background-image: url(../img/arr-submenu-w.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}

.tax-arr-menu {
  position: absolute;
  right: 0;
  top: 0;
  height: 40px;
  width: 40px;
}
.tax-arr-menu:hover {
  opacity: 0.7;
  transition: all ease 0.3s;
}
.tax-arr-menu:before {
  content: "";
  background-position: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: block;
  transform: rotate(0deg);
  margin-left: 40px;
  background-size: cover;
  position: absolute;
  right: 0;
  background-color: #ff6420;
  transition: all ease 0.3s;
}
.tax-arr-menu:after {
  content: "";
  background-image: url(../img/arr-submenu-w.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}

.pinned-images-wrap {
  overflow: hidden;
}

.pinned-images-inner {
  display: flex;
  flex-wrap: nowrap;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pinned-images-inner .image {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: red;
  margin-right: 4rem;
  width: 800px;
  height: 500px;
}

#block-similar-actus {
  position: relative;
  overflow: hidden;
}
#block-similar-actus-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-left: 2vw;
  padding-right: 2vw;
}
@media (max-width: 63.98rem) {
  #block-similar-actus-container {
    flex-direction: column;
    gap: 64px;
    padding: 0 15px;
  }
}

.team h2 {
  text-align: center;
}
.team .elem {
  cursor: pointer;
}
@media (max-width: 63.98rem) {
  .team .elem {
    text-align: center;
    margin-bottom: 15px;
  }
}
@media (max-width: 63.98rem) {
  .team .elem img {
    margin: auto;
    width: 100%;
    max-width: 400px;
  }
}
.team .elem .bg-img {
  height: 545px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 79.98rem) {
  .team .elem .bg-img {
    height: 400px;
  }
}
.team .elem .name {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #19303d;
}
.team .elem .role {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #2d3439;
}
.team .elem .block-more {
  width: 100%;
  position: relative;
}
@media (min-width: 80rem) {
  .team .elem .block-more {
    display: flex !important;
    vertical-align: middle;
    align-items: center;
  }
}
.team .elem .block-more .more {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #19303d;
  position: relative;
}
.team .elem .block-more .more:after {
  content: "";
  background-image: url(../img/arr-submenu.svg);
  height: 8px;
  width: 18px;
  display: inline-block;
  transition: all ease 0.3s;
  background-size: cover;
  margin: 0 15px 0px 15px;
}
.team .elem .block-more .more:hover:after {
  content: "";
  margin: 0 10px 0px 20px;
  transition: all ease 0.3s;
}
@media (min-width: 80rem) {
  .team .elem .block-more .btn {
    position: absolute;
    right: 0;
  }
}
@media (max-width: 63.98rem) {
  .team .elem .block-more .btn {
    margin: 15px auto;
  }
}
.team .elem .rs {
  height: 33px;
  width: 32px;
  display: block;
  float: right;
  background-image: url(../img/in-ico.svg);
}
@media (max-width: 63.98rem) {
  .team .elem .rs {
    float: initial;
    margin: 10px auto 0 auto;
  }
}

.iziModal {
  border-radius: 10px !important;
  max-width: 70% !important;
  background-color: white !important;
}
@media (max-width: 47.98rem) {
  .iziModal {
    max-width: 95% !important;
  }
}
.iziModal .iziModal-content {
  padding: 40px 40px !important;
}
@media (max-width: 47.98rem) {
  .iziModal .iziModal-content {
    padding: 20px 0px !important;
  }
}
@media (max-width: 63.98rem) {
  .iziModal .iziModal-content .bloc-rs {
    display: contents;
  }
}
.iziModal .iziModal-content .bloc-rs .rs {
  height: 33px;
  width: 32px;
  display: block;
  background-image: url(../img/in-ico.svg);
}
.iziModal .iziModal-content img {
  width: 100%;
  display: block;
  max-width: initial;
}
@media (max-width: 47.98rem) {
  .iziModal .iziModal-content img {
    max-width: fit-content;
    height: 300px;
    width: initial;
  }
}
.iziModal .iziModal-content .photo-modal {
  height: 544px;
  background-size: cover;
  background-position: center;
}
.iziModal .close {
  position: absolute;
  right: 30px;
  top: 20px;
}
.iziModal .close:before {
  content: "";
  height: 25px;
  width: 3px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ff6420;
  transform: rotate(45deg);
}
.iziModal .close:after {
  content: "";
  height: 25px;
  width: 3px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ff6420;
  transform: rotate(-45deg);
}
.iziModal p {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #2d3439;
}
.iziModal p strong {
  font-weight: 400;
}
.iziModal h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #19303d;
}
.iziModal .role {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #2d3439;
}
.iziModal h3 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #19303d;
  text-transform: inherit;
  margin: 15px 0;
}
.iziModal ul,
.iziModal ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.iziModal ul li,
.iziModal ol li {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  padding: 3px 0;
  color: #2d3439;
}
.iziModal ul li:before,
.iziModal ol li:before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #ff6420;
  margin-right: 15px;
  margin-top: 8px;
  display: block;
  float: left;
}

.banner-hero {
  position: relative;
  min-height: 300px;
  background-color: #faf8f8;
}
.banner-hero h1 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 59px;
  line-height: 64px;
  text-transform: uppercase;
  color: #0d2533;
}
@media (max-width: 79.98rem) {
  .banner-hero h1 {
    font-size: 64px;
    line-height: initial;
  }
}
@media (max-width: 63.98rem) {
  .banner-hero h1 {
    font-size: 52px;
  }
}
@media (max-width: 47.98rem) {
  .banner-hero h1 {
    font-size: 44px;
  }
}
.banner-hero .text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.banner-hero .adr:before {
  content: "";
  height: 32px;
  width: 32px;
  display: block;
  float: left;
  margin-top: 4px;
  margin-right: 14px;
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  background-image: url(../img/adr.svg);
}
.banner-hero .adr span {
  display: block;
  float: left;
}
.banner-hero .logo-header {
  max-width: 220px;
}
@media (max-width: 63.98rem) {
  .banner-hero .gallery {
    text-align: center;
  }
}
.banner-hero .gallery .item {
  display: inline-block;
  margin-bottom: 20px;
}
.banner-hero .gallery .item img {
  height: 124px;
  display: inline-block;
  float: left;
}
@media (max-width: 47.98rem) {
  .banner-hero .gallery .item img {
    height: 85px;
  }
}
.banner-hero .gallery .item:not(:last-child) {
  margin-right: 70px;
}
@media (max-width: 79.98rem) {
  .banner-hero .gallery .item:not(:last-child) {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 47.98rem) {
  .banner-hero .gallery .item {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.banner-hero .gallery .item:a {
  cursor: pointer;
}

.icons-titles {
  margin-top: -180px;
  z-index: 1;
  position: relative;
}
.icons-titles .item-icon-title {
  letter-spacing: 2px;
  line-height: 2;
  padding: 0 15px;
}
.icons-titles .item-icon-title .block-icon-img {
  width: 64px;
  height: 64px;
  margin: auto;
}
.icons-titles .item-icon-title .block-icon-img img {
  max-width: 64px;
  height: auto;
  margin: 0 auto;
}
.icons-titles .item-icon-title h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 80rem) {
  .icons-titles .item-icon-title.el-lines {
    position: relative;
  }
  .icons-titles .item-icon-title.el-lines:before, .icons-titles .item-icon-title.el-lines:after {
    position: absolute;
    content: "";
    top: 50%;
    width: 110px;
    height: 1px;
    background-image: linear-gradient(90deg, transparent, rgba(237, 242, 248, 0.5));
  }
  .icons-titles .item-icon-title.el-lines:before {
    left: -60%;
  }
  .icons-titles .item-icon-title.el-lines:after {
    right: -60%;
  }
}

.home-banner {
  position: relative;
  height: 100vh;
  min-height: 890px;
}
.home-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(25, 48, 61, 0) 18.41%, #19303d 66.41%);
}
.home-banner h1 {
  font-size: 65px;
  line-height: 80px;
}
@media (max-width: 79.98rem) {
  .home-banner h1 {
    font-size: 58px;
    line-height: initial;
  }
}
@media (max-width: 63.98rem) {
  .home-banner h1 {
    font-size: 52px;
  }
}
@media (max-width: 47.98rem) {
  .home-banner h1 {
    font-size: 44px;
  }
}

.icons-titles {
  margin-top: -180px;
  z-index: 1;
  position: relative;
}
.icons-titles .item-icon-title {
  letter-spacing: 2px;
  line-height: 2;
  padding: 0 15px;
}
.icons-titles .item-icon-title .block-icon-img {
  width: 64px;
  height: 64px;
  margin: auto;
}
.icons-titles .item-icon-title .block-icon-img img {
  max-width: 64px;
  height: auto;
  margin: 0 auto;
}
.icons-titles .item-icon-title h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 80rem) {
  .icons-titles .item-icon-title.el-lines {
    position: relative;
  }
  .icons-titles .item-icon-title.el-lines:before, .icons-titles .item-icon-title.el-lines:after {
    position: absolute;
    content: "";
    top: 50%;
    width: 110px;
    height: 1px;
    background-image: linear-gradient(90deg, transparent, rgba(237, 242, 248, 0.5));
  }
  .icons-titles .item-icon-title.el-lines:before {
    left: -60%;
  }
  .icons-titles .item-icon-title.el-lines:after {
    right: -60%;
  }
}

.map_bureaux .list-bureaux {
  width: 50%;
  float: left;
  height: 700px;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 63.98rem) {
  .map_bureaux .list-bureaux {
    width: 100%;
    float: initial;
    height: 300px;
    margin-bottom: 50px;
  }
}
.map_bureaux .list-bureaux:after {
  content: "";
  background: linear-gradient(355.5deg, #ffffff 12.09%, rgba(255, 255, 255, 0) 92.43%);
  opacity: 0.7;
}
.map_bureaux .list-bureaux .elem {
  height: 215px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #19303d;
  border: 1px solid white;
  border-top: 1px solid #eaeaea;
  padding: 30px;
  background: white;
  transition: all ease 0.4s;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
@media (max-width: 47.98rem) {
  .map_bureaux .list-bureaux .elem {
    height: initial;
    padding: 15px;
  }
}
.map_bureaux .list-bureaux .elem.active, .map_bureaux .list-bureaux .elem:hover {
  z-index: 1;
  position: relative;
  transition: all ease 0.4s;
  border: 1px solid #ff6420;
  box-shadow: 0px 7px 29px rgba(85, 85, 85, 0.2);
}
.map_bureaux .list-bureaux .elem .block-adress {
  width: 50%;
  float: left;
  min-height: 120px;
  display: block;
}
@media (max-width: 47.98rem) {
  .map_bureaux .list-bureaux .elem .block-adress {
    width: 100%;
  }
}
.map_bureaux .list-bureaux .elem .block-adress .title {
  display: block;
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.map_bureaux .list-bureaux .elem .block-adress .adress {
  display: block;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.map_bureaux .list-bureaux .elem .schedule {
  width: 50%;
  float: right;
  display: block;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: right;
}
@media (max-width: 47.98rem) {
  .map_bureaux .list-bureaux .elem .schedule {
    text-align: left;
    width: 100%;
    float: left;
  }
}
.map_bureaux .list-bureaux .elem .cta {
  float: left;
  position: relative;
}
@media (max-width: 47.98rem) {
  .map_bureaux .list-bureaux .elem .cta {
    float: initial;
  }
}
.map_bureaux .list-bureaux .elem .cta .arr {
  height: 40px;
  width: 40px;
  margin-left: 5px;
}
.map_bureaux .list-bureaux .elem .cta .arr:before {
  content: "";
  background-position: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: block;
  transform: rotate(0deg);
  margin-left: 40px;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 0;
}
.map_bureaux .list-bureaux .elem .cta .arr:after {
  content: "";
  background-image: url(../img/arr-submenu.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}
.map_bureaux .list-bureaux .elem .cta:hover .arr:before {
  content: "";
  background-color: #ff6420;
  transition: all ease 0.3s;
}
.map_bureaux .list-bureaux .elem .cta:hover .arr:after {
  transition: all ease 0.3s;
  background-image: url(../img/arr-submenu-w.svg);
}
.map_bureaux .section-map {
  width: 50%;
  float: right;
  z-index: 0;
  position: relative;
}
@media (max-width: 63.98rem) {
  .map_bureaux .section-map {
    width: 100%;
    float: initial;
  }
}
.map_bureaux .section-map #map {
  position: relative;
  width: 100%;
  height: 700px;
  background-color: #000;
}
@media (max-width: 63.98rem) {
  .map_bureaux .section-map #map {
    height: 500px;
  }
}
.map_bureaux .section-map #map .leaflet-marker-icon {
  transition: all ease 0.2s;
  cursor: pointer;
}
.map_bureaux .section-map #map .leaflet-marker-icon:hover, .map_bureaux .section-map #map .leaflet-marker-icon.active {
  width: 40px !important;
  height: 52px !important;
  margin-left: -20px !important;
  margin-top: -45px !important;
  transition: all ease 0.2s;
}
.map_bureaux .section-map #map .marker-cluster-small div {
  background-color: #ff6420;
}
.map_bureaux .section-map #map .marker-cluster-small div span {
  color: #ffffff;
}
.map_bureaux .section-map #map .marker-cluster-small {
  background-color: rgba(250, 99, 33, 0.2);
}
.map_bureaux .legend {
  position: absolute;
  left: 20px;
  bottom: 20px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 8px 22px rgba(149, 157, 165, 0.2);
  z-index: 1000;
  display: block;
}
.map_bureaux .legend .office {
  float: left;
  padding: 10px 15px;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
}
@media (max-width: 35.98rem) {
  .map_bureaux .legend .office {
    float: initial;
    text-align: center;
  }
}
.map_bureaux .legend .office:first-child {
  border-right: 1px solid #e8e8e8;
}
.map_bureaux .legend .office img {
  display: block;
  margin: 0 auto 10px auto;
  height: 24px;
}

.banner-hero-nous-connaitre {
  position: relative;
  background-color: #faf8f8;
}
.banner-hero-nous-connaitre h1 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 59px;
  line-height: 64px;
  text-transform: uppercase;
  color: #0d2533;
}
@media (max-width: 79.98rem) {
  .banner-hero-nous-connaitre h1 {
    font-size: 54px;
    line-height: 57px;
  }
}
@media (max-width: 63.98rem) {
  .banner-hero-nous-connaitre h1 {
    font-size: 52px;
    line-height: initial;
  }
}
@media (max-width: 47.98rem) {
  .banner-hero-nous-connaitre h1 {
    font-size: 44px;
  }
}
.banner-hero-nous-connaitre .text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.banner-hero-nous-connaitre .bg-img {
  height: 370px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.banner-hero-nous-connaitre .bloc-img {
  height: 500px;
}
@media (max-width: 35.98rem) {
  .banner-hero-nous-connaitre .bloc-img {
    height: initial;
  }
}
.banner-hero-nous-connaitre .bloc-img img {
  height: 100%;
  position: relative;
  float: right;
}
@media (max-width: 63.98rem) {
  .banner-hero-nous-connaitre .bloc-img img {
    margin: auto;
    float: initial;
    display: block;
  }
}
@media (max-width: 35.98rem) {
  .banner-hero-nous-connaitre .bloc-img img {
    height: initial;
    width: 100%;
  }
}

.chiffre {
  overflow: hidden;
}
@media (max-width: 63.98rem) {
  .chiffre {
    text-align: center;
  }
}
.chiffre .nbr {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 120px;
  line-height: 90px;
  text-transform: uppercase;
  color: #ff6420;
  margin-bottom: 20px;
}
@media (max-width: 63.98rem) {
  .chiffre .nbr {
    font-size: 90px;
  }
}
@media (max-width: 47.98rem) {
  .chiffre .nbr {
    font-size: 60px;
    line-height: 60px;
  }
}
.chiffre .unity {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0d2533;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 63.98rem) {
  .chiffre .unity {
    font-size: 16px;
    line-height: 27px;
  }
}
@media (max-width: 47.98rem) {
  .chiffre .unity {
    font-size: 13px;
    line-height: 16px;
  }
}
.chiffre .unity::before {
  content: "";
  float: left;
  height: 2px;
  width: 27px;
  margin-right: 14px;
  margin-top: 12px;
  background: #ff6420;
}
@media (max-width: 79.98rem) {
  .chiffre .unity::before {
    content: initial;
  }
}

.banner-hero-nous-rejoindre {
  position: relative;
}
.banner-hero-nous-rejoindre h1 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 59px;
  line-height: 64px;
  text-transform: uppercase;
  color: #0d2533;
}
@media (max-width: 79.98rem) {
  .banner-hero-nous-rejoindre h1 {
    font-size: 54px;
    line-height: 57px;
  }
}
@media (max-width: 63.98rem) {
  .banner-hero-nous-rejoindre h1 {
    font-size: 52px;
    line-height: initial;
  }
}
@media (max-width: 47.98rem) {
  .banner-hero-nous-rejoindre h1 {
    font-size: 44px;
  }
}
.banner-hero-nous-rejoindre .text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}
.banner-hero-nous-rejoindre .bg-img {
  height: 370px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.banner-hero-nous-rejoindre .bloc-img {
  height: 500px;
}
@media (max-width: 35.98rem) {
  .banner-hero-nous-rejoindre .bloc-img {
    height: initial;
  }
}
.banner-hero-nous-rejoindre .bloc-img img {
  height: 100%;
  position: relative;
  float: right;
}
@media (max-width: 63.98rem) {
  .banner-hero-nous-rejoindre .bloc-img img {
    margin: auto;
    float: initial;
    display: block;
  }
}
@media (max-width: 35.98rem) {
  .banner-hero-nous-rejoindre .bloc-img img {
    height: initial;
    width: 100%;
  }
}

.chiffre {
  overflow: hidden;
}
@media (max-width: 63.98rem) {
  .chiffre {
    text-align: center;
  }
}
.chiffre .nbr {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 120px;
  line-height: 90px;
  text-transform: uppercase;
  color: #ff6420;
  margin-bottom: 20px;
}
@media (max-width: 63.98rem) {
  .chiffre .nbr {
    font-size: 90px;
  }
}
@media (max-width: 47.98rem) {
  .chiffre .nbr {
    font-size: 60px;
    line-height: 60px;
  }
}
.chiffre .unity {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0d2533;
  -webkit-hyphens: auto;
  hyphens: auto;
}
@media (max-width: 63.98rem) {
  .chiffre .unity {
    font-size: 16px;
    line-height: 27px;
  }
}
@media (max-width: 47.98rem) {
  .chiffre .unity {
    font-size: 13px;
    line-height: 16px;
  }
}
.chiffre .unity::before {
  content: "";
  float: left;
  height: 2px;
  width: 27px;
  margin-right: 14px;
  margin-top: 12px;
  background: #ff6420;
}
@media (max-width: 79.98rem) {
  .chiffre .unity::before {
    content: initial;
  }
}

.block_metiers h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-transform: uppercase;
  text-align: center;
  color: #19303d;
}
@media (max-width: 47.98rem) {
  .block_metiers h2 {
    font-size: 36px;
  }
}
@media (max-width: 47.98rem) {
  .block_metiers .item {
    text-align: center;
  }
}
.block_metiers .item .bg-img {
  height: 400px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 79.98rem) {
  .block_metiers .item .bg-img {
    height: 300px;
  }
}
@media (max-width: 63.98rem) {
  .block_metiers .item .bg-img {
    height: 200px;
  }
}
@media (max-width: 47.98rem) {
  .block_metiers .item .bg-img {
    max-width: 100%;
    margin: 15px auto;
  }
}
.block_metiers .item h3 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
}
.block_metiers .item .text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
}

#block-temoignages {
  overflow: hidden;
  position: relative;
  color: white;
}
#block-temoignages .swiper-temoignage {
  overflow: hidden;
  position: relative;
}
@media (max-width: 63.98rem) {
  #block-temoignages .swiper-temoignage {
    background: #133549;
  }
}
#block-temoignages .swiper-temoignage .item {
  color: white;
}
#block-temoignages .swiper-temoignage .item .detail .detail-infos {
  width: 33.33%;
  float: left;
  z-index: 1;
  display: block;
  position: relative;
  margin-top: -50px;
}
@media (max-width: 63.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-infos {
    display: none;
  }
}
#block-temoignages .swiper-temoignage .item .detail .detail-infos .bg-img {
  height: 545px;
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
}
@media (max-width: 47.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-infos .bg-img {
    height: 400px;
  }
}
#block-temoignages .swiper-temoignage .item .detail .detail-infos .name {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2d3439;
}
@media (max-width: 35.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-infos .name {
    margin-top: 8px;
    font-size: 16px;
    line-height: 22px;
  }
}
#block-temoignages .swiper-temoignage .item .detail .detail-infos .role {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #2d3439;
}
@media (max-width: 35.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-infos .role {
    font-size: 16px;
    line-height: 22px;
  }
}
#block-temoignages .swiper-temoignage .item .detail .detail-item {
  height: 415px;
  width: 66.66%;
  margin: auto;
  background: #133549;
  position: absolute;
  right: 0;
  padding: 30px 30px 140px 50px;
  display: flex;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 79.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-item {
    padding: 30px 10px 140px 20px;
  }
}
@media (max-width: 63.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-item {
    display: block;
    vertical-align: middle;
    align-items: center;
    width: 100%;
    height: initial;
    position: initial;
    padding: 0;
  }
}
#block-temoignages .swiper-temoignage .item .detail .detail-item .img-photo {
  height: 270px;
  padding: 20px;
  margin: auto;
}
#block-temoignages .swiper-temoignage .item .detail .detail-item .temoignage {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
  padding: 0 30px 0 100px;
}
@media (max-width: 63.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-item .temoignage {
    padding: 30px 30px 30px 30px;
  }
}
@media (max-width: 47.98rem) {
  #block-temoignages .swiper-temoignage .item .detail .detail-item .temoignage {
    font-size: 18px;
    line-height: 24px;
  }
}
#block-temoignages .swiper-temoignage .item .detail .detail-item .temoignage .quote {
  width: 80px;
  height: 52px;
  display: block;
}
#block-temoignages .swiper-temoignage .swiper-buttons {
  width: 120px;
  height: 40px;
  position: absolute;
  bottom: 110px;
  right: 30px;
  margin: 20px auto 0px auto;
  float: inherit;
  z-index: 2;
}
@media (max-width: 63.98rem) {
  #block-temoignages .swiper-temoignage .swiper-buttons {
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    position: relative;
  }
}
#block-temoignages .swiper-temoignage .swiper-buttons div {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #ff6420;
  float: left;
  margin: 0 5px;
  position: relative;
  cursor: pointer;
}
#block-temoignages .swiper-temoignage .swiper-buttons div.swiper-button-disabled {
  background: #d05b27;
}
#block-temoignages .swiper-temoignage .swiper-buttons div:before {
  content: "";
  height: 2px;
  width: 12px;
  display: block;
  background-color: #fff;
  z-index: 2;
  position: absolute;
  top: 15px;
  left: 15px;
  transform: rotate(45deg);
  border-radius: 5px;
}
#block-temoignages .swiper-temoignage .swiper-buttons div:after {
  content: "";
  height: 2px;
  width: 12px;
  display: block;
  background-color: #fff;
  z-index: 2;
  position: absolute;
  top: 22px;
  left: 15px;
  transform: rotate(-45deg);
  border-radius: 5px;
}
#block-temoignages .swiper-temoignage .swiper-buttons div.button-prev {
  transform: rotate(180deg);
}

.block_formulaire {
  color: #fff;
  background-color: #133549;
}
.block_formulaire h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 47.98rem) {
  .block_formulaire h2 {
    font-size: 36px;
  }
}

.nous_rejoindre .block-rejoindre {
  min-height: 320px;
  border-radius: 8px;
  background: #98c1d9;
  position: relative;
  overflow: hidden;
}
@media (max-width: 63.98rem) {
  .nous_rejoindre .block-rejoindre {
    display: block !important;
    text-align: center;
  }
}
.nous_rejoindre .block-rejoindre:after {
  content: "";
  inset: 0;
  z-index: 0;
  position: absolute;
  background: linear-gradient(88.52deg, #64a6cc 31.22%, rgba(137, 185, 213, 0.45) 82.95%, #98c1d9 104.18%);
}
.nous_rejoindre .block-rejoindre .block-content {
  position: relative;
  z-index: 1;
}
.nous_rejoindre .block-rejoindre .block-content h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  color: white;
  text-transform: uppercase;
}
@media (max-width: 47.98rem) {
  .nous_rejoindre .block-rejoindre .block-content h2 {
    font-size: 24px;
    line-height: 36px;
  }
}
.nous_rejoindre .block-rejoindre .block-content .text {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  color: white;
}
.nous_rejoindre .block-rejoindre .block-content .cta {
  display: flex !important;
  vertical-align: middle;
  align-items: center;
}
@media (max-width: 63.98rem) {
  .nous_rejoindre .block-rejoindre .block-content .cta {
    display: block !important;
  }
  .nous_rejoindre .block-rejoindre .block-content .cta a {
    margin: 0 auto 15px auto;
  }
}
.nous_rejoindre .block-rejoindre .deco-dots {
  right: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  background-image: url(../img/deco-dots.png);
  background-position: center;
  background-size: cover;
  width: 532px;
  height: 322px;
}

.besoins-tabs .tabs-nav {
  border-bottom: 1px solid #ababab;
  max-width: max-content;
}
@media (max-width: 79.98rem) {
  .besoins-tabs .tabs-nav {
    border-bottom: none;
  }
}
.besoins-tabs .tabs-nav .tabs-nav-item {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (max-width: 79.98rem) {
  .besoins-tabs .tabs-nav .tabs-nav-item {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 47.98rem) {
  .besoins-tabs .tabs-nav .tabs-nav-item {
    font-size: 20px;
    line-height: 28px;
    width: 45%;
    float: left;
    text-align: center;
  }
}
.besoins-tabs .tabs-nav .tabs-nav-item:hover {
  opacity: 1;
}
.besoins-tabs .tabs-nav .tabs-nav-item[aria-expanded=true] {
  position: relative;
  opacity: 1;
}
.besoins-tabs .tabs-nav .tabs-nav-item[aria-expanded=true]::after {
  display: inline-block;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ff6420;
  bottom: -1px;
  left: 0;
}
.besoins-tabs .tabs-container {
  min-height: 500px;
}
.besoins-tabs .tabs-container .tabs-item {
  display: none;
}
.besoins-tabs .tabs-container .tabs-item.\--active {
  display: flex;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-content .tabs-item-line {
  display: inherit;
  position: relative;
  padding: 25px 0;
  border-bottom: 1px solid #ababab;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-content .tabs-item-line .tabs-item-line-texts {
  font-weight: 500;
  display: block;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-content .tabs-item-line .tabs-item-line-texts .tabs-item-line-subtxt {
  font-weight: 400;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-content .tabs-item-line .svg {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 16px;
  height: auto;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-content .tabs-item-line .svg svg {
  width: 16px;
  height: auto;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-img {
  max-width: 569px;
}
.besoins-tabs .tabs-container .tabs-item .tabs-item-img img {
  max-width: 100%;
  height: auto;
}

.bloc_colonnes {
  position: relative;
  background-color: #19303d;
}
.bloc_colonnes h2 {
  text-align: center;
  color: white;
}
@media (max-width: 47.98rem) {
  .bloc_colonnes .row {
    display: block;
  }
}
.bloc_colonnes .elem {
  background: #196280;
  border-bottom: 2px solid #ff6420;
  border-radius: 8px 8px 0px 0px;
  color: white;
}
@media (max-width: 47.98rem) {
  .bloc_colonnes .elem {
    margin-bottom: 30px;
  }
}
.bloc_colonnes .elem .suptitle {
  color: white;
}
.bloc_colonnes .elem .text {
  color: white;
}
.bloc_colonnes .elem .text p {
  color: white;
}

.home-banner {
  position: relative;
  height: 100vh;
}
.home-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(25, 48, 61, 0) 18.41%, #19303d 66.41%);
}
.home-banner h1 {
  font-size: 65px;
  line-height: 80px;
}
@media (max-width: 79.98rem) {
  .home-banner h1 {
    font-size: 58px;
    line-height: initial;
  }
}
@media (max-width: 63.98rem) {
  .home-banner h1 {
    font-size: 52px;
  }
}
@media (max-width: 47.98rem) {
  .home-banner h1 {
    font-size: 44px;
  }
}

.icons-titles {
  margin-top: -180px;
  z-index: 1;
  position: relative;
}
.icons-titles .item-icon-title {
  letter-spacing: 2px;
  line-height: 2;
  padding: 0 15px;
}
.icons-titles .item-icon-title .block-icon-img {
  width: 64px;
  height: 64px;
  margin: auto;
}
.icons-titles .item-icon-title .block-icon-img img {
  max-width: 64px;
  height: auto;
  margin: 0 auto;
}
.icons-titles .item-icon-title h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 80rem) {
  .icons-titles .item-icon-title.el-lines {
    position: relative;
  }
  .icons-titles .item-icon-title.el-lines:before, .icons-titles .item-icon-title.el-lines:after {
    position: absolute;
    content: "";
    top: 50%;
    width: 110px;
    height: 1px;
    background-image: linear-gradient(90deg, transparent, rgba(237, 242, 248, 0.5));
  }
  .icons-titles .item-icon-title.el-lines:before {
    left: -60%;
  }
  .icons-titles .item-icon-title.el-lines:after {
    right: -60%;
  }
}

.block_title_text {
  position: relative;
}
.block_title_text .deco {
  width: 100%;
}
.block_title_text h2 {
  color: #19303d;
}
.block_title_text.nc-height {
  min-height: 700px;
  display: flex !important;
  vertical-align: middle;
  align-items: center;
}

.block-contact .elem {
  padding: 140px;
  border-radius: 24px;
  text-align: center;
  height: 330px;
  background-color: #133549;
}
@media (max-width: 47.98rem) {
  .block-contact .elem {
    padding: 30px;
    height: initial;
    border-radius: 8px;
  }
}
.block-contact .elem h2 {
  color: white;
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  text-transform: initial;
}
@media (max-width: 47.98rem) {
  .block-contact .elem h2 {
    font-size: 19px;
    line-height: 27px;
    letter-spacing: inherit;
    font-weight: 500;
  }
}
.block-contact .elem .btn {
  margin: auto;
}

.slider-city {
  margin: auto;
  display: inline-block;
  width: 100%;
  font-size: 30px;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.slider-city div {
  position: absolute;
  transform: translateY(-50%);
  min-width: 100%;
  overflow: hidden;
}
.slider-city div span {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-transform: uppercase;
  color: #19303d;
  left: 0;
}
@media (max-width: 47.98rem) {
  .slider-city div span {
    font-size: 38px;
    line-height: 42px;
  }
}
@media (max-width: 35.98rem) {
  .slider-city div span {
    font-size: 28px;
    line-height: 32px;
  }
}
.slider-city div span:first-child {
  animation: defilement 50s infinite linear;
}
.slider-city div span:last-child {
  position: absolute;
  animation: defilement2 50s infinite linear;
}
.slider-city div span b {
  width: 150px;
  position: relative;
  display: inline-block;
}
@media (max-width: 47.98rem) {
  .slider-city div span b {
    width: 60px;
  }
}
.slider-city div span a {
  transition: all ease 0.4s;
}
.slider-city div span a:hover {
  color: #ff6420;
  transition: all ease 0.4s;
}

@keyframes defilement {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -100%;
  }
}
@keyframes defilement2 {
  0% {
    margin-left: 100%;
  }
  100% {
    margin-left: 0%;
  }
}
.block-image-text {
  color: #19303d;
}
.block-image-text .suptitle {
  color: #ababab;
}
.block-image-text.rel-z1 {
  z-index: 1;
  position: relative;
}
.block-image-text h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-transform: uppercase;
  color: #19303d;
}
@media (max-width: 35.98rem) {
  .block-image-text h2 {
    font-size: 32px;
    line-height: 42px;
  }
}
.block-image-text h3 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-transform: initial;
  color: #19303d;
}
.block-image-text .bg-img {
  height: 740px;
  width: 90%;
  background-size: cover;
  background-position: center;
  margin-top: -120px;
}
@media (max-width: 63.98rem) {
  .block-image-text .bg-img {
    margin-top: 0px;
    height: 250px;
    width: 100%;
  }
}
.block-image-text.bg-blue {
  color: #eef1f4;
  background-color: #133549;
}
.block-image-text.bg-blue .suptitle {
  color: #eef1f4;
}
.block-image-text.bg-blue h2 {
  color: #eef1f4;
}
.block-image-text.bg-blue h3 {
  color: #eef1f4;
}
.block-image-text.bg-blue p {
  color: #eef1f4;
}

.autres-expertises {
  position: relative;
  z-index: 1;
}
.autres-expertises .block-elem {
  background: white;
  padding: 30px 30px;
  border-radius: 10px;
  position: relative;
  background: white;
  padding: 30px 30px;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  transition: all ease 0.3s;
  border-radius: 10px;
}
@media (max-width: 63.98rem) {
  .autres-expertises .block-elem {
    padding: 20px;
  }
}
.autres-expertises .block-elem:hover {
  box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.12) !important;
  transition: all ease 0.3s;
}
.autres-expertises .block-elem .section-element-container {
  display: flex;
  width: 100%;
  height: 130px;
  position: relative;
}
@media (max-width: 63.98rem) {
  .autres-expertises .block-elem .section-element-container {
    display: flex;
    vertical-align: middle;
    align-items: center;
    height: initial;
    min-height: 46px;
  }
}
.autres-expertises .block-elem .section-element-container .title {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #19303d;
  margin: 0 0 15px 0;
  display: block;
  hyphens: auto;
  height: 130px;
}
@media (max-width: 79.98rem) {
  .autres-expertises .block-elem .section-element-container .title {
    font-size: 19px;
    line-height: 24px;
  }
}
@media (max-width: 63.98rem) {
  .autres-expertises .block-elem .section-element-container .title {
    margin: 0;
    display: flex;
    vertical-align: middle;
    align-items: center;
    height: initial;
    min-height: 46px;
  }
}
.autres-expertises .block-elem .section-element-container .title .tax-arr-menu {
  top: initial;
  bottom: 0;
}
@media (max-width: 47.98rem) {
  .autres-expertises .block-elem .section-element-container .title .tax-arr-menu {
    bottom: initial;
  }
}
.autres-expertises .block-elem .section-element-container .text {
  display: block;
}
.autres-expertises .block-elem .section-element-container ul li {
  margin: 0;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  position: relative;
}
.autres-expertises .block-elem .section-element-container ul li a {
  padding: 12px 0;
  width: calc(100% - 15px);
  display: block;
  position: relative;
}
.autres-expertises .block-elem .section-element-container ul li a .arr {
  position: absolute;
  right: -15px;
  top: 4px;
  height: 40px;
  width: 40px;
}
.autres-expertises .block-elem .section-element-container ul li a .arr:before {
  content: "";
  background-position: center;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: block;
  transform: rotate(0deg);
  margin-left: 40px;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 0;
}
.autres-expertises .block-elem .section-element-container ul li a .arr:after {
  content: "";
  background-image: url(../img/arr-submenu.svg);
  height: 8px;
  width: 18px;
  display: block;
  transition: all ease 0.3s;
  background-size: cover;
  position: absolute;
  right: 11px;
  top: calc(50% - 4px);
}
.autres-expertises .block-elem .section-element-container ul li:after {
  content: "";
  opacity: 0.3;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: grey;
}
.autres-expertises .block-elem .section-element-container ul li:hover a .arr:before {
  content: "";
  background-color: #ff6420;
  transition: all ease 0.3s;
}
.autres-expertises .block-elem .section-element-container ul li:hover a .arr:after {
  transition: all ease 0.3s;
  background-image: url(../img/arr-submenu-w.svg);
}
.autres-expertises .block-elem .section-element-container .w100 {
  width: 100%;
}

.block-notre-difference {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-image: url(../img/bg-sf.png);
}
@media (max-width: 63.98rem) {
  .block-notre-difference {
    height: initial;
  }
}
.block-notre-difference h2 {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 54px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #edf2f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.block-notre-difference .elem {
  min-height: 235px;
  width: 400px;
  float: right;
  padding: 30px;
  background: #196280;
  border-bottom: 2px solid #ff6420;
  border-radius: 8px 8px 0px 0px;
}
@media (max-width: 63.98rem) {
  .block-notre-difference .elem {
    width: 100%;
  }
}
.block-notre-difference .elem.elem0 {
  margin-right: 100px;
}
@media (max-width: 63.98rem) {
  .block-notre-difference .elem.elem0 {
    margin-right: initial;
  }
}
.block-notre-difference .elem.elem1 {
  margin-right: 0px;
}
.block-notre-difference .elem.elem2 {
  margin-right: 200px;
}
@media (max-width: 79.98rem) {
  .block-notre-difference .elem.elem2 {
    margin-right: 130px;
  }
}
@media (max-width: 63.98rem) {
  .block-notre-difference .elem.elem2 {
    margin-right: initial;
  }
}
.block-notre-difference .elem .icon {
  content: "";
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: block;
  margin-right: 15px;
  background-image: url(../img/icon.svg);
}
.block-notre-difference .elem .text {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  background: linear-gradient(180deg, #4ec1f1 0%, #cbebf9 0.01%, #d5eef8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.block_title_buttom {
  position: relative;
}

.block-text-boxs .elem {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  line-height: 26px;
  background: white;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 20px;
  height: 310px;
}
@media (max-width: 63.98rem) {
  .block-text-boxs .elem {
    height: inherit;
  }
}
.block-text-boxs .elem.even {
  margin-top: -40px;
}
@media (max-width: 63.98rem) {
  .block-text-boxs .elem.even {
    margin-top: initial;
  }
}
.block-text-boxs .mt-40 {
  margin-top: 40px;
}

/* Plyr */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-container .video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
}
.video-container .video-cover img {
  width: 100%;
  height: auto;
}
.video-container .video-cover .play-button {
  position: absolute;
  font-size: 3em;
  color: white;
}

.videoyt {
  width: 100%;
  position: relative;
}
.videoyt .plyr .item-poster {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
  opacity: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.videoyt .plyr__control--overlaid {
  background-image: linear-gradient(90deg, black 0%, black 49%, black 100%);
  padding: 30px;
}
@media (max-width: 47.98rem) {
  .videoyt .plyr__control--overlaid {
    padding: 20px;
  }
}
.videoyt .plyr__control--overlaid svg {
  color: white !important;
  height: 18px;
  width: 18px;
}
.videoyt .plyr__control--overlaid:hover {
  background-image: linear-gradient(90deg, black 0%, black 49%, black 100%);
}
.videoyt .plyr__control--overlaid:hover svg {
  color: white !important;
}
.videoyt .plyr--video {
  border-radius: 20px;
  background: transparent !important;
  filter: drop-shadow(0px 8px 22px rgba(149, 157, 165, 0.2));
  border-radius: 4px;
}
.videoyt .plyr__video-wrapper {
  background: transparent !important;
}
.videoyt .plyr--full-ui input[type=range] {
  color: #ff6420;
}
.videoyt .plyr__poster {
  background-size: cover;
  z-index: 2;
}
.videoyt .plyr__controls {
  z-index: 4;
}
.videoyt .plyr__control--overlaid {
  background: white;
  z-index: 3;
}
.videoyt .plyr--video .plyr__control.plyr__tab-focus,
.videoyt .plyr--video .plyr__control:hover,
.videoyt .plyr--video .plyr__control[aria-expanded=true] {
  background: grey;
}
.videoyt .plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.5);
}
.videoyt .plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: white;
}

/* Custom */
.videoyt .custom-plyr-video {
  width: 100%;
}
.videoyt .plyr__control--overlaid {
  background-color: #ff6420;
  opacity: 1 !important;
}
.videoyt .plyr__control--overlaid svg {
  color: white !important;
}
.videoyt .plyr__control--overlaid:hover {
  opacity: 0.7 !important;
  background-color: white !important;
}
.videoyt .plyr__control--overlaid:hover svg {
  color: #ff6420 !important;
}

/* Gravity form */
.gform_confirmation_message {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #fff;
  min-height: 600px;
}

.gravity-theme .gform_title {
  display: none;
}
.gravity-theme h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 20px 0;
}
.gravity-theme .validation_message {
  font-family: inherit;
  text-transform: inherit;
}
.gravity-theme .validation_message {
  padding: 3px 10px;
}
.gravity-theme .gform_ajax_spinner {
  position: absolute;
  margin-top: 5px;
}
.gravity-theme .gform_submission_error {
  text-transform: initial;
  font-size: 15px;
  font-weight: 700;
}
.gravity-theme .gform_submission_error:after {
  content: none;
}
.gravity-theme .gform_submission_error span {
  display: none;
}
.gravity-theme .gform_validation_errors {
  margin: 50px 50px 0px 50px;
  position: relative;
  width: calc(100% - 60px);
  padding: 10px;
  box-shadow: none;
  border: 1px solid black;
  border-radius: initial;
  display: none;
}
.gravity-theme .gform_heading {
  display: none;
}
.gravity-theme .gform-icon {
  display: none !important;
}
.gravity-theme .gform_title {
  display: none;
}
@media (max-width: 79.98rem) {
  .gravity-theme .gform_body h2 {
    font-size: 38px;
    line-height: 43px;
  }
}
.gravity-theme .gform_body h2:after {
  content: none;
}
.gravity-theme .gform_body .gfield_required {
  color: #ff6420 !important;
}
.gravity-theme .gform_body .gform_required_legend {
  display: none;
}
.gravity-theme .gform_body .gfield {
  margin-bottom: 30px;
  font-style: normal;
  font-size: 17px;
  line-height: 22px;
  color: #fff;
}
.gravity-theme .gform_body .gfield_label,
.gravity-theme .gform_body .gform-field-label--type-sub {
  font-family: "General Sans";
  font-style: normal;
  font-weight: 400 !important;
  font-size: 13px;
  line-height: 27px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8f6fc;
}
.gravity-theme .gform_body .ginput_container_date .datepicker {
  width: 100%;
}
.gravity-theme .gform_body input[type=file]::file-selector-button {
  background-color: #133549;
  border: 1px solid white;
  color: #fff !important;
  padding: 5px 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.gravity-theme .gform_body .gfield_date_dropdown_day,
.gravity-theme .gform_body .gfield_date_dropdown_month,
.gravity-theme .gform_body .gfield_date_dropdown_year {
  max-width: 33.33%;
}
.gravity-theme .gform_body input[type=text],
.gravity-theme .gform_body input[type=email],
.gravity-theme .gform_body input[type=tel],
.gravity-theme .gform_body select,
.gravity-theme .gform_body textarea {
  font-size: 16px !important;
  line-height: initial;
  padding: 15px 0 !important;
  border-bottom: 1px solid #aab2b7;
  color: #fff;
}
.gravity-theme .gform_body input[type=text]:focus,
.gravity-theme .gform_body input[type=email]:focus,
.gravity-theme .gform_body input[type=tel]:focus,
.gravity-theme .gform_body select:focus,
.gravity-theme .gform_body textarea:focus {
  border-bottom: 1px solid #ff6420;
}
.gravity-theme .gform_body input[type=text]::placeholder,
.gravity-theme .gform_body input[type=email]::placeholder,
.gravity-theme .gform_body input[type=tel]::placeholder,
.gravity-theme .gform_body select::placeholder,
.gravity-theme .gform_body textarea::placeholder {
  opacity: 0.6;
  color: #fff;
}
.gravity-theme .gform_body [data-form-type] {
  border-bottom: 1px solid #aab2b7;
  color: #fff;
  padding: 15px 0 !important;
}
.gravity-theme .gform_body [data-form-type]:focus {
  border-bottom: 1px solid #ff6420;
}
.gravity-theme .gform_body [data-form-type]::placeholder {
  opacity: 0.6;
  color: #fff;
}
.gravity-theme .gform_body .spacer {
  margin-bottom: 0px;
}
.gravity-theme .gform_body select {
  position: relative;
  background-color: #0c202d;
  background-repeat: no-repeat;
  background-size: 8px;
  background-position: calc(100% - 20px) center;
  background-image: url(../img/arr-form.svg);
}
.gravity-theme .gform_body .ginput_container .gfield_consent_label {
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  margin-left: 28px;
}
.gravity-theme .gform_body .ginput_container .gfield_consent_label a {
  text-decoration: underline;
}
.gravity-theme .gform_body .ginput_container_consent {
  position: relative;
}
.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;
}
.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 #fff;
  border-radius: 5px;
  background-color: transparent;
}
.gravity-theme .gform_body .ginput_container_consent input[type=checkbox]:checked:before {
  border: 1px solid #ff6420;
}
.gravity-theme .gform_body .ginput_container_consent input[type=checkbox]:checked {
  background-color: #ff6420;
  height: 20px;
  width: 20px;
  border-radius: 5px;
}
.gravity-theme .gform_body .ginput_container_consent input[type=checkbox]:checked:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 7px;
  border: solid white;
  border-width: 0px 2px 2px 0;
  display: inline-block;
  padding: 3px 2px 8px 3px;
  transform: rotate(45deg);
}
.gravity-theme .gform_body iframe[data-form-type] {
  border-bottom: none;
  color: #fff;
  padding: 0 !important;
}
.gravity-theme .gform_footer {
  padding: 0 !important;
  position: relative;
  display: inline-block !important;
}
.gravity-theme .gform_footer input[type=submit] {
  display: block;
  width: fit-content;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  background: #ff6420;
  border: 1px solid #ff6420;
  transition: all ease 0.3s;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 20px;
}
.gravity-theme .gform_footer input[type=submit]:hover {
  color: #ff6420;
  border: 1px solid #ff6420;
  transition: all ease 0.3s;
  cursor: pointer;
  background: transparent;
}
.gravity-theme .iti.iti--allow-dropdown input {
  border: none !important;
}

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  padding: 15px !important;
}

/* Custom */
.gform_wrapper .gravity-theme .gfield_label {
  font-family: "Neue Haas Grotesk Display Pro";
  font-style: normal;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 25px;
  color: #060f23;
}

.gform_fileupload_rules {
  color: white;
}

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